From: Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>
To: Tarang Raval <tarang.raval@siliconsignals.io>,
sakari.ailus@linux.intel.com, mehdi.djait@linux.intel.com
Cc: Himanshu Bhavani <himanshu.bhavani@siliconsignals.io>,
Elgin Perumbilly <elgin.perumbilly@siliconsignals.io>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Hans Verkuil <hverkuil+cisco@kernel.org>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 08/17] media: i2c: os05b10: add 12-bit RAW mode support
Date: Fri, 24 Jul 2026 17:08:38 +0300 [thread overview]
Message-ID: <f9ba3d84-2bda-40ec-8715-fa8d7ca2880b@linaro.org> (raw)
In-Reply-To: <20260718200912.16001-9-tarang.raval@siliconsignals.io>
On 7/18/26 23:08, Tarang Raval wrote:
> Expose a 12-bit Bayer output option in the OS05B10 V4L2 sub-device driver.
>
> Add a 12-bit mode table alongside the existing 10-bit mode, extend the
> enumerated mbus codes to include RAW12, and select the correct mode table
> based on the requested mbus format in enum_frame_size and stream enable.
>
> Also move OS05B10_REG_MIPI_SC_CTRL_1 programming out of the common register
> list and program it at stream-on depending on the selected mode bpp (10/12).
>
> Signed-off-by: Tarang Raval <tarang.raval@siliconsignals.io>
> ---
> drivers/media/i2c/os05b10.c | 112 ++++++++++++++++++++++++++++++------
> 1 file changed, 96 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/media/i2c/os05b10.c b/drivers/media/i2c/os05b10.c
> index 4e177eacc815..e11a3c308299 100644
> --- a/drivers/media/i2c/os05b10.c
> +++ b/drivers/media/i2c/os05b10.c
> @@ -146,7 +146,6 @@ static const struct cci_reg_sequence os05b10_common_regs[] = {
> { CCI_REG8(0x301e), 0xb4 },
> { CCI_REG8(0x301f), 0xd0 },
> { CCI_REG8(0x3021), 0x03 },
> - { OS05B10_REG_MIPI_SC_CTRL_1, 0x01 },
> { CCI_REG8(0x3107), 0xa1 },
> { CCI_REG8(0x3108), 0x7d },
> { CCI_REG8(0x3109), 0xfc },
> @@ -500,6 +499,21 @@ struct os05b10_mode {
> struct os05b10_reg_list reg_list;
> };
>
> +static const struct os05b10_mode supported_modes_12bit[] = {
> + {
> + .width = 2592,
> + .height = 1944,
> + .vts = 2007,
> + .hts = 1744,
It's unusual to see .hts < .width and .vts < .height. Will is cause
errors in hblank/vblank computations in os05b10_set_framing_limits()?
> + .exp = 1900,
> + .bpp = 12,
> + .reg_list = {
> + .num_of_regs = ARRAY_SIZE(mode_2592_1944_regs),
> + .regs = mode_2592_1944_regs,
> + },
> + },
> +};
> +
> static const struct os05b10_mode supported_modes_10bit[] = {
> {
> .width = 2592,
> @@ -521,6 +535,7 @@ static const s64 link_frequencies[] = {
>
> static const u32 os05b10_mbus_codes[] = {
> MEDIA_BUS_FMT_SBGGR10_1X10,
> + MEDIA_BUS_FMT_SBGGR12_1X12,
> };
>
> static const char * const os05b10_test_pattern_menu[] = {
> @@ -552,14 +567,20 @@ static inline struct os05b10 *to_os05b10(struct v4l2_subdev *sd)
> return container_of_const(sd, struct os05b10, sd);
> };
>
> -static u32 os05b10_get_format_code(struct os05b10 *os05b10)
> +static u32 os05b10_get_format_code(struct os05b10 *os05b10, u8 bpp)
> {
> - static const u32 codes[2][2] = {
> - { MEDIA_BUS_FMT_SBGGR10_1X10, MEDIA_BUS_FMT_SGBRG10_1X10, },
> - { MEDIA_BUS_FMT_SGRBG10_1X10, MEDIA_BUS_FMT_SRGGB10_1X10, },
> + static const u32 codes[2][2][2] = {
> + { /* 10 bpp */
> + { MEDIA_BUS_FMT_SBGGR10_1X10, MEDIA_BUS_FMT_SGBRG10_1X10 },
> + { MEDIA_BUS_FMT_SGRBG10_1X10, MEDIA_BUS_FMT_SRGGB10_1X10 },
> + },
> + { /* 12 bpp */
> + { MEDIA_BUS_FMT_SBGGR12_1X12, MEDIA_BUS_FMT_SGBRG12_1X12 },
> + { MEDIA_BUS_FMT_SGRBG12_1X12, MEDIA_BUS_FMT_SRGGB12_1X12 },
> + },
> };
>
> - return codes[os05b10->vflip->val][os05b10->hflip->val];
> + return codes[bpp == 12][os05b10->vflip->val][os05b10->hflip->val];
> }
>
> static int os05b10_update_test_pattern(struct os05b10 *os05b10, u32 pattern)
> @@ -571,6 +592,34 @@ static int os05b10_update_test_pattern(struct os05b10 *os05b10, u32 pattern)
> os05b10_tp_val[pattern], NULL);
> }
>
> +static int get_mode_table(struct os05b10 *os05b10, unsigned int code,
> + const struct os05b10_mode **mode_list,
> + unsigned int *num_modes)
> +{
> + switch (code) {
> + case MEDIA_BUS_FMT_SBGGR12_1X12:
> + case MEDIA_BUS_FMT_SGBRG12_1X12:
> + case MEDIA_BUS_FMT_SGRBG12_1X12:
> + case MEDIA_BUS_FMT_SRGGB12_1X12:
> + *mode_list = supported_modes_12bit;
> + *num_modes = ARRAY_SIZE(supported_modes_12bit);
> + return 0;
> +
> + case MEDIA_BUS_FMT_SBGGR10_1X10:
> + case MEDIA_BUS_FMT_SGBRG10_1X10:
> + case MEDIA_BUS_FMT_SGRBG10_1X10:
> + case MEDIA_BUS_FMT_SRGGB10_1X10:
> + *mode_list = supported_modes_10bit;
> + *num_modes = ARRAY_SIZE(supported_modes_10bit);
> + return 0;
> +
> + default:
> + dev_err(os05b10->dev,
> + "Unsupported media bus format: %#x\n", code);
> + return -EINVAL;
> + }
> +}
> +
> static int os05b10_set_ctrl(struct v4l2_ctrl *ctrl)
> {
> struct os05b10 *os05b10 = container_of_const(ctrl->handler,
> @@ -650,8 +699,8 @@ static int os05b10_enum_mbus_code(struct v4l2_subdev *sd,
> if (code->index >= ARRAY_SIZE(os05b10_mbus_codes))
> return -EINVAL;
>
> - code->code = os05b10_get_format_code(os05b10);
> -
> + code->code = os05b10_get_format_code(os05b10,
> + (code->index == 1) ? 12 : 10);
os05b10_mbus_codes[code->index] == MEDIA_BUS_FMT_SBGGR12_1X12 is more
verbose, but seems to be a better and more reliable check.
Probably a simple inline function to get bpp from code->index can be added.
Another option is to change the second argument of os05b10_get_format_code()
from bpp to just media bus format, so you can write
os05b10_get_format_code(os05b10, os05b10_mbus_codes[code->index]);
> return 0;
> }
>
> @@ -684,11 +733,20 @@ static int os05b10_set_pad_format(struct v4l2_subdev *sd,
> struct v4l2_subdev_state *sd_state,
> struct v4l2_subdev_format *fmt)
> {
> - const struct os05b10_mode *mode = &supported_modes_10bit[0];
> struct os05b10 *os05b10 = to_os05b10(sd);
> + const struct os05b10_mode *mode_list;
> struct v4l2_mbus_framefmt *format;
> + const struct os05b10_mode *mode;
> + unsigned int num_modes;
> int ret;
>
> + ret = get_mode_table(os05b10, fmt->format.code, &mode_list, &num_modes);
> + if (ret)
> + return ret;
> +
> + mode = v4l2_find_nearest_size(mode_list, num_modes, width, height,
> + fmt->format.width, fmt->format.height);
> +
> fmt->format.width = mode->width;
> fmt->format.height = mode->height;
> fmt->format.field = V4L2_FIELD_NONE;
> @@ -731,12 +789,21 @@ static int os05b10_enum_frame_size(struct v4l2_subdev *sd,
> struct v4l2_subdev_state *sd_state,
> struct v4l2_subdev_frame_size_enum *fse)
> {
> - if (fse->index >= ARRAY_SIZE(supported_modes_10bit))
> + struct os05b10 *os05b10 = to_os05b10(sd);
> + const struct os05b10_mode *mode_list;
> + unsigned int num_modes;
> + int ret;
> +
> + ret = get_mode_table(os05b10, fse->code, &mode_list, &num_modes);
> + if (ret)
> + return ret;
> +
> + if (fse->index >= num_modes)
> return -EINVAL;
>
> - fse->min_width = supported_modes_10bit[fse->index].width;
> + fse->min_width = mode_list[fse->index].width;
> fse->max_width = fse->min_width;
> - fse->min_height = supported_modes_10bit[fse->index].height;
> + fse->min_height = mode_list[fse->index].height;
> fse->max_height = fse->min_height;
>
> return 0;
> @@ -749,13 +816,18 @@ static int os05b10_enable_streams(struct v4l2_subdev *sd,
> struct os05b10 *os05b10 = to_os05b10(sd);
> const struct os05b10_reg_list *reg_list;
> const struct v4l2_mbus_framefmt *fmt;
> + const struct os05b10_mode *mode_list;
> const struct os05b10_mode *mode;
> + unsigned int num_modes;
> int ret;
>
> fmt = v4l2_subdev_state_get_format(state, 0);
> - mode = v4l2_find_nearest_size(supported_modes_10bit,
> - ARRAY_SIZE(supported_modes_10bit), width,
> - height, fmt->width, fmt->height);
> + ret = get_mode_table(os05b10, fmt->code, &mode_list, &num_modes);
> + if (ret)
> + return ret;
> +
> + mode = v4l2_find_nearest_size(mode_list, num_modes, width, height,
> + fmt->width, fmt->height);
>
> ret = pm_runtime_resume_and_get(os05b10->dev);
> if (ret < 0)
> @@ -769,6 +841,14 @@ static int os05b10_enable_streams(struct v4l2_subdev *sd,
> goto err_rpm_put;
> }
>
> + ret = cci_write(os05b10->cci, OS05B10_REG_MIPI_SC_CTRL_1,
> + (mode->bpp == 12) ? OS05B10_12BIT_MODE :
> + OS05B10_10BIT_MODE, NULL);
> + if (ret) {
> + dev_err(os05b10->dev, "failed to write pixel bit registers\n");
> + goto err_rpm_put;
> + }
> +
> /* Write sensor mode registers */
> reg_list = &mode->reg_list;
> ret = cci_multi_reg_write(os05b10->cci, reg_list->regs,
> @@ -831,7 +911,7 @@ static int os05b10_init_state(struct v4l2_subdev *sd,
> format = v4l2_subdev_state_get_format(state, 0);
>
> mode = &supported_modes_10bit[0];
> - format->code = os05b10_get_format_code(os05b10);
> + format->code = os05b10_get_format_code(os05b10, 10);
If the type of the second argument of os05b10_get_format_code() is changed,
it'd be needed to change it to a clearer
os05b10_get_format_code(os05b10, os05b10_mbus_codes[0]);
>
> /* Update image pad formate */
> format->width = mode->width;
--
Best wishes,
Vladimir
next prev parent reply other threads:[~2026-07-24 14:08 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-18 20:08 [PATCH v3 00/17] media: i2c: os05b10: Refactor driver and Add new features Tarang Raval
2026-07-18 20:08 ` [PATCH v3 01/17] media: i2c: os05b10: Use pm_runtime_get_if_active() when applying controls Tarang Raval
2026-07-22 5:58 ` Jai Luthra
2026-07-24 6:47 ` Tarang Raval
2026-07-18 20:08 ` [PATCH v3 02/17] media: i2c: os05b10: drop unused group-hold programming Tarang Raval
2026-07-18 20:08 ` [PATCH v3 03/17] media: i2c: os05b10: add register definitions and use them in init table Tarang Raval
2026-07-21 17:25 ` Mehdi Djait
2026-07-24 13:09 ` Vladimir Zapolskiy
2026-07-18 20:08 ` [PATCH v3 04/17] media: i2c: os05b10: split common and mode-specific init registers Tarang Raval
2026-07-21 17:40 ` Mehdi Djait
2026-07-24 13:15 ` Vladimir Zapolskiy
2026-07-18 20:08 ` [PATCH v3 05/17] media: i2c: os05b10: add V4L2 digital gain control Tarang Raval
2026-07-24 13:19 ` Vladimir Zapolskiy
2026-07-24 14:15 ` Tarang Raval
2026-07-18 20:08 ` [PATCH v3 06/17] media: i2c: os05b10: Add H/V flip support Tarang Raval
2026-07-21 17:43 ` Mehdi Djait
2026-07-22 5:51 ` Jai Luthra
2026-07-24 7:01 ` Tarang Raval
2026-07-24 13:27 ` Vladimir Zapolskiy
2026-07-18 20:08 ` [PATCH v3 07/17] media: i2c: os05b10: Add test pattern options Tarang Raval
2026-07-21 17:50 ` Mehdi Djait
2026-07-24 13:43 ` Vladimir Zapolskiy
2026-07-18 20:08 ` [PATCH v3 08/17] media: i2c: os05b10: add 12-bit RAW mode support Tarang Raval
2026-07-24 14:08 ` Vladimir Zapolskiy [this message]
2026-07-24 14:30 ` Tarang Raval
2026-07-24 15:03 ` Vladimir Zapolskiy
2026-07-18 20:09 ` [PATCH v3 09/17] media: i2c: os05b10: update pixel rate on 10/12-bit mode switch Tarang Raval
2026-07-22 6:17 ` Jai Luthra
2026-07-22 6:19 ` Jai Luthra
2026-07-24 9:08 ` Tarang Raval
2026-07-25 7:26 ` Vladimir Zapolskiy
2026-07-18 20:09 ` [PATCH v3 10/17] media: i2c: os05b10: Add 1080p and 2x2 binning 720p modes Tarang Raval
2026-07-22 6:05 ` Jai Luthra
2026-07-24 6:44 ` Tarang Raval
2026-07-18 20:09 ` [PATCH v3 11/17] media: i2c: os05b10: keep vblank and exposure range in sync on mode switch Tarang Raval
2026-07-25 7:30 ` Vladimir Zapolskiy
2026-07-18 20:09 ` [PATCH v3 12/17] media: i2c: os05b10: Update active format before adjusting framing controls Tarang Raval
2026-07-25 7:32 ` Vladimir Zapolskiy
2026-07-18 20:09 ` [PATCH v3 13/17] media: i2c: os05b10: Rename vmax variable in VBLANK control Tarang Raval
2026-07-25 7:33 ` Vladimir Zapolskiy
2026-07-18 20:09 ` [PATCH v3 14/17] media: i2c: os05b10: add 2-lane support Tarang Raval
2026-07-25 7:38 ` Vladimir Zapolskiy
2026-07-18 20:09 ` [PATCH v3 15/17] media: i2c: os05b10: fix negative hblank calculation Tarang Raval
2026-07-22 6:14 ` Jai Luthra
2026-07-24 8:14 ` Tarang Raval
2026-07-18 20:09 ` [PATCH v3 16/17] media: i2c: os05b10: Enable runtime PM autosuspend Tarang Raval
2026-07-22 6:08 ` Jai Luthra
2026-07-24 7:02 ` Tarang Raval
2026-07-24 9:58 ` Jai Luthra
2026-07-18 20:09 ` [PATCH v3 17/17] media: i2c: os05b10: remove unused control fields, simplify error handling Tarang Raval
2026-07-25 11:33 ` Vladimir Zapolskiy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f9ba3d84-2bda-40ec-8715-fa8d7ca2880b@linaro.org \
--to=vladimir.zapolskiy@linaro.org \
--cc=elgin.perumbilly@siliconsignals.io \
--cc=himanshu.bhavani@siliconsignals.io \
--cc=hverkuil+cisco@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=mehdi.djait@linux.intel.com \
--cc=sakari.ailus@linux.intel.com \
--cc=tarang.raval@siliconsignals.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®