mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] media: imx283: Add 3/3 binning mode
@ 2024-08-13  5:52 Umang Jain
  2024-08-15 10:50 ` Kieran Bingham
  0 siblings, 1 reply; 2+ messages in thread
From: Umang Jain @ 2024-08-13  5:52 UTC (permalink / raw)
  To: Kieran Bingham, Sakari Ailus, Mauro Carvalho Chehab, Laurent Pinchart
  Cc: linux-media, linux-kernel, Umang Jain

IMX283 supports 12-bit 3/3 binning mode with 1824x1216 resolution.
Introduce the mode config for the same.

Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
---
Patch to introduce 3/3 binning mode - 1824x1216 12-bit output.
---
 drivers/media/i2c/imx283.c | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/drivers/media/i2c/imx283.c b/drivers/media/i2c/imx283.c
index 8490618c5071..94276f4f2d83 100644
--- a/drivers/media/i2c/imx283.c
+++ b/drivers/media/i2c/imx283.c
@@ -465,6 +465,39 @@ static const struct imx283_mode supported_modes_12bit[] = {
 		.horizontal_ob = 48,
 		.vertical_ob = 4,
 
+		.crop = {
+			.top = 40,
+			.left = 108,
+			.width = 5472,
+			.height = 3648,
+		},
+	},
+	{
+		/*
+		 * Readout mode 3 : 3/3 binned mode (1824x1216)
+		 */
+		.mode = IMX283_MODE_3,
+		.bpp = 12,
+		.width = 1824,
+		.height = 1216,
+		.min_hmax = 1894, /* Pixels (284 * 480MHz/72MHz + padding) */
+		.min_vmax = 4200, /* Lines */
+
+		/* 60.00 fps */
+		.default_hmax = 1900, /* 285 @ 480MHz/72Mhz */
+		.default_vmax = 4200,
+
+		.veff = 1234,
+		.vst = 0,
+		.vct = 0,
+
+		.hbin_ratio = 3,
+		.vbin_ratio = 3,
+
+		.min_shr = 16,
+		.horizontal_ob = 32,
+		.vertical_ob = 4,
+
 		.crop = {
 			.top = 40,
 			.left = 108,

---
base-commit: 68a72104cbcf38ad16500216e213fa4eb21c4be2
change-id: 20240813-imx335-binned-mode-98b2b7ee5ba0

Best regards,
-- 
Umang Jain <umang.jain@ideasonboard.com>


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] media: imx283: Add 3/3 binning mode
  2024-08-13  5:52 [PATCH] media: imx283: Add 3/3 binning mode Umang Jain
@ 2024-08-15 10:50 ` Kieran Bingham
  0 siblings, 0 replies; 2+ messages in thread
From: Kieran Bingham @ 2024-08-15 10:50 UTC (permalink / raw)
  To: Laurent Pinchart, Mauro Carvalho Chehab, Sakari Ailus, Umang Jain
  Cc: linux-media, linux-kernel, Umang Jain

Quoting Umang Jain (2024-08-13 06:52:00)
> IMX283 supports 12-bit 3/3 binning mode with 1824x1216 resolution.
> Introduce the mode config for the same.
> 
> Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
> ---
> Patch to introduce 3/3 binning mode - 1824x1216 12-bit output.
> ---
>  drivers/media/i2c/imx283.c | 33 +++++++++++++++++++++++++++++++++
>  1 file changed, 33 insertions(+)
> 
> diff --git a/drivers/media/i2c/imx283.c b/drivers/media/i2c/imx283.c
> index 8490618c5071..94276f4f2d83 100644
> --- a/drivers/media/i2c/imx283.c
> +++ b/drivers/media/i2c/imx283.c
> @@ -465,6 +465,39 @@ static const struct imx283_mode supported_modes_12bit[] = {
>                 .horizontal_ob = 48,
>                 .vertical_ob = 4,
>  
> +               .crop = {

I still wonder if these crops for full resolution mode can be set as:

 	.crop = imx283_active_area,

But that's a separate patch/discussion.


> +                       .top = 40,
> +                       .left = 108,
> +                       .width = 5472,
> +                       .height = 3648,
> +               },
> +       },
> +       {
> +               /*
> +                * Readout mode 3 : 3/3 binned mode (1824x1216)
> +                */
> +               .mode = IMX283_MODE_3,
> +               .bpp = 12,
> +               .width = 1824,
> +               .height = 1216,
> +               .min_hmax = 1894, /* Pixels (284 * 480MHz/72MHz + padding) */
> +               .min_vmax = 4200, /* Lines */
> +
> +               /* 60.00 fps */
> +               .default_hmax = 1900, /* 285 @ 480MHz/72Mhz */
> +               .default_vmax = 4200,
> +
> +               .veff = 1234,
> +               .vst = 0,
> +               .vct = 0,
> +
> +               .hbin_ratio = 3,
> +               .vbin_ratio = 3,
> +
> +               .min_shr = 16,
> +               .horizontal_ob = 32,
> +               .vertical_ob = 4,
> +

Everything there matches my expectations and the datasheet:


Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>

>                 .crop = {
>                         .top = 40,
>                         .left = 108,
> 
> ---
> base-commit: 68a72104cbcf38ad16500216e213fa4eb21c4be2
> change-id: 20240813-imx335-binned-mode-98b2b7ee5ba0
> 
> Best regards,
> -- 
> Umang Jain <umang.jain@ideasonboard.com>
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-08-15 10:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-13  5:52 [PATCH] media: imx283: Add 3/3 binning mode Umang Jain
2024-08-15 10:50 ` Kieran Bingham

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®