Commit 348d32d3 authored by Benoit Parrot's avatar Benoit Parrot Committed by Mauro Carvalho Chehab

media: ti-vpe: cal: Properly calculate max resolution boundary

Currently we were using an arbitrarily small maximum resolution mostly
based on available sensor capabilities. However the hardware DMA limits
are much higher than the statically define maximum resolution we were
using.

There we rework the boundary check code to handle the maximum width and
height based on the maximum line width in bytes and re-calculating the
pixel width based on the given pixel format.
Signed-off-by: default avatarBenoit Parrot <bparrot@ti.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 04d766ac
...@@ -34,8 +34,8 @@ ...@@ -34,8 +34,8 @@
#define CAL_MODULE_NAME "cal" #define CAL_MODULE_NAME "cal"
#define MAX_WIDTH 1920 #define MAX_WIDTH_BYTES (8192 * 8)
#define MAX_HEIGHT 1200 #define MAX_HEIGHT_LINES 16383
#define CAL_VERSION "0.1.0" #define CAL_VERSION "0.1.0"
...@@ -1330,15 +1330,21 @@ static int cal_calc_format_size(struct cal_ctx *ctx, ...@@ -1330,15 +1330,21 @@ static int cal_calc_format_size(struct cal_ctx *ctx,
const struct cal_fmt *fmt, const struct cal_fmt *fmt,
struct v4l2_format *f) struct v4l2_format *f)
{ {
u32 bpl; u32 bpl, max_width;
if (!fmt) { if (!fmt) {
ctx_dbg(3, ctx, "No cal_fmt provided!\n"); ctx_dbg(3, ctx, "No cal_fmt provided!\n");
return -EINVAL; return -EINVAL;
} }
v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2, /*
&f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0); * Maximum width is bound by the DMA max width in bytes.
* We need to recalculate the actual maxi width depending on the
* number of bytes per pixels required.
*/
max_width = MAX_WIDTH_BYTES / (ALIGN(fmt->bpp, 8) >> 3);
v4l_bound_align_image(&f->fmt.pix.width, 48, max_width, 2,
&f->fmt.pix.height, 32, MAX_HEIGHT_LINES, 0, 0);
bpl = (f->fmt.pix.width * ALIGN(fmt->bpp, 8)) >> 3; bpl = (f->fmt.pix.width * ALIGN(fmt->bpp, 8)) >> 3;
f->fmt.pix.bytesperline = ALIGN(bpl, 16); f->fmt.pix.bytesperline = ALIGN(bpl, 16);
......
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