Commit bfe75f76 authored by Hugues Fruchet's avatar Hugues Fruchet Committed by Mauro Carvalho Chehab

media: stm32-dcmi: increase max width/height to 2592

DCMI can capture 5Mp raw frames, increase limit accordingly.
Signed-off-by: default avatarHugues Fruchet <hugues.fruchet@st.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent aa2f8871
...@@ -89,14 +89,9 @@ enum state { ...@@ -89,14 +89,9 @@ enum state {
}; };
#define MIN_WIDTH 16U #define MIN_WIDTH 16U
#define MAX_WIDTH 2048U #define MAX_WIDTH 2592U
#define MIN_HEIGHT 16U #define MIN_HEIGHT 16U
#define MAX_HEIGHT 2048U #define MAX_HEIGHT 2592U
#define MIN_JPEG_WIDTH 16U
#define MAX_JPEG_WIDTH 2592U
#define MIN_JPEG_HEIGHT 16U
#define MAX_JPEG_HEIGHT 2592U
#define TIMEOUT_MS 1000 #define TIMEOUT_MS 1000
...@@ -843,14 +838,8 @@ static int dcmi_try_fmt(struct stm32_dcmi *dcmi, struct v4l2_format *f, ...@@ -843,14 +838,8 @@ static int dcmi_try_fmt(struct stm32_dcmi *dcmi, struct v4l2_format *f,
} }
/* Limit to hardware capabilities */ /* Limit to hardware capabilities */
if (pix->pixelformat == V4L2_PIX_FMT_JPEG) { pix->width = clamp(pix->width, MIN_WIDTH, MAX_WIDTH);
pix->width = clamp(pix->width, MIN_JPEG_WIDTH, MAX_JPEG_WIDTH); pix->height = clamp(pix->height, MIN_HEIGHT, MAX_HEIGHT);
pix->height =
clamp(pix->height, MIN_JPEG_HEIGHT, MAX_JPEG_HEIGHT);
} else {
pix->width = clamp(pix->width, MIN_WIDTH, MAX_WIDTH);
pix->height = clamp(pix->height, MIN_HEIGHT, MAX_HEIGHT);
}
/* No crop if JPEG is requested */ /* No crop if JPEG is requested */
do_crop = dcmi->do_crop && (pix->pixelformat != V4L2_PIX_FMT_JPEG); do_crop = dcmi->do_crop && (pix->pixelformat != V4L2_PIX_FMT_JPEG);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment