]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
media: rzg2l-cru: Pass resolution limits via OF data
authorLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Fri, 11 Apr 2025 17:05:40 +0000 (19:05 +0200)
committerHans Verkuil <hverkuil@xs4all.nl>
Wed, 23 Apr 2025 08:55:53 +0000 (10:55 +0200)
Pass `max_width` and `max_height` as part of the OF data to facilitate the
addition of support for RZ/G3E and RZ/V2H(P) SoCs. These SoCs have a
maximum resolution of 4096x4096 as compared to 2800x4095 on RZ/G2L SoC.
This change prepares the driver for easier integration of these SoCs by
defining the resolution limits in the `rzg2l_cru_info` structure.

Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Signed-off-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
Link: https://lore.kernel.org/r/20250411170624.472257-13-tommaso.merciai.xr@bp.renesas.com
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
drivers/media/platform/renesas/rzg2l-cru/rzg2l-core.c
drivers/media/platform/renesas/rzg2l-cru/rzg2l-cru.h
drivers/media/platform/renesas/rzg2l-cru/rzg2l-ip.c
drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c

index 2da416f914490e844a2c479ce781ab3f6d1e04e5..e179f8d29038f09e0ae11ad7f1386bd526996c1e 100644 (file)
@@ -352,6 +352,8 @@ static const u16 rzg2l_cru_regs[] = {
 };
 
 static const struct rzg2l_cru_info rzgl2_cru_info = {
+       .max_width = 2800,
+       .max_height = 4095,
        .regs = rzg2l_cru_regs,
 };
 
index 00c3f7458e20a5757ca39ad5c75a256f72b20ab5..6a621073948aa84eaa1e2dc4fdd199e9345dc0f8 100644 (file)
@@ -27,9 +27,7 @@
 #define RZG2L_CRU_CSI2_VCHANNEL                4
 
 #define RZG2L_CRU_MIN_INPUT_WIDTH      320
-#define RZG2L_CRU_MAX_INPUT_WIDTH      2800
 #define RZG2L_CRU_MIN_INPUT_HEIGHT     240
-#define RZG2L_CRU_MAX_INPUT_HEIGHT     4095
 
 enum rzg2l_csi2_pads {
        RZG2L_CRU_IP_SINK = 0,
@@ -81,6 +79,8 @@ struct rzg2l_cru_ip_format {
 };
 
 struct rzg2l_cru_info {
+       unsigned int max_width;
+       unsigned int max_height;
        const u16 *regs;
 };
 
index 76a2b451f1daf0a72fd6606ba44372681960c9d5..7836c7cd53dc3ff9a2c8c5e53be0265a20956e30 100644 (file)
@@ -148,6 +148,8 @@ static int rzg2l_cru_ip_set_format(struct v4l2_subdev *sd,
                                   struct v4l2_subdev_state *state,
                                   struct v4l2_subdev_format *fmt)
 {
+       struct rzg2l_cru_dev *cru = v4l2_get_subdevdata(sd);
+       const struct rzg2l_cru_info *info = cru->info;
        struct v4l2_mbus_framefmt *src_format;
        struct v4l2_mbus_framefmt *sink_format;
 
@@ -170,9 +172,9 @@ static int rzg2l_cru_ip_set_format(struct v4l2_subdev *sd,
        sink_format->ycbcr_enc = fmt->format.ycbcr_enc;
        sink_format->quantization = fmt->format.quantization;
        sink_format->width = clamp_t(u32, fmt->format.width,
-                                    RZG2L_CRU_MIN_INPUT_WIDTH, RZG2L_CRU_MAX_INPUT_WIDTH);
+                                    RZG2L_CRU_MIN_INPUT_WIDTH, info->max_width);
        sink_format->height = clamp_t(u32, fmt->format.height,
-                                     RZG2L_CRU_MIN_INPUT_HEIGHT, RZG2L_CRU_MAX_INPUT_HEIGHT);
+                                     RZG2L_CRU_MIN_INPUT_HEIGHT, info->max_height);
 
        fmt->format = *sink_format;
 
@@ -197,6 +199,9 @@ static int rzg2l_cru_ip_enum_frame_size(struct v4l2_subdev *sd,
                                        struct v4l2_subdev_state *state,
                                        struct v4l2_subdev_frame_size_enum *fse)
 {
+       struct rzg2l_cru_dev *cru = v4l2_get_subdevdata(sd);
+       const struct rzg2l_cru_info *info = cru->info;
+
        if (fse->index != 0)
                return -EINVAL;
 
@@ -205,8 +210,8 @@ static int rzg2l_cru_ip_enum_frame_size(struct v4l2_subdev *sd,
 
        fse->min_width = RZG2L_CRU_MIN_INPUT_WIDTH;
        fse->min_height = RZG2L_CRU_MIN_INPUT_HEIGHT;
-       fse->max_width = RZG2L_CRU_MAX_INPUT_WIDTH;
-       fse->max_height = RZG2L_CRU_MAX_INPUT_HEIGHT;
+       fse->max_width = info->max_width;
+       fse->max_height = info->max_height;
 
        return 0;
 }
index c82db80c3355278abec5820456d7152ad0706855..395c4d3d0f0faaf79563098b6c4e6a03bff9b9fe 100644 (file)
@@ -736,6 +736,7 @@ error:
 static void rzg2l_cru_format_align(struct rzg2l_cru_dev *cru,
                                   struct v4l2_pix_format *pix)
 {
+       const struct rzg2l_cru_info *info = cru->info;
        const struct rzg2l_cru_ip_format *fmt;
 
        fmt = rzg2l_cru_ip_format_to_fmt(pix->pixelformat);
@@ -758,8 +759,8 @@ static void rzg2l_cru_format_align(struct rzg2l_cru_dev *cru,
        }
 
        /* Limit to CRU capabilities */
-       v4l_bound_align_image(&pix->width, 320, RZG2L_CRU_MAX_INPUT_WIDTH, 1,
-                             &pix->height, 240, RZG2L_CRU_MAX_INPUT_HEIGHT, 2, 0);
+       v4l_bound_align_image(&pix->width, 320, info->max_width, 1,
+                             &pix->height, 240, info->max_height, 2, 0);
 
        pix->bytesperline = pix->width * fmt->bpp;
        pix->sizeimage = pix->bytesperline * pix->height;