From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Cc: Nayden.Kanchev@arm.com,
Konstantin Babin <Konstantin.Babin@arm.com>,
Anthony McGivern <anthony.mcgivern@arm.com>,
vincenzo.frascino@arm.com, linus.walleij@arm.com,
Daniel Scally <dan.scally@ideasonboard.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com>
Subject: Re: [PATCH v3 4/4] media: mali-c55: Implement Gamma block validation
Date: Mon, 29 Jun 2026 13:20:46 +0300 [thread overview]
Message-ID: <20260629102046.GD3054459@killaraus.ideasonboard.com> (raw)
In-Reply-To: <20260627-mali-c55-ccm-gamma-v3-4-113584c05174@ideasonboard.com>
On Sat, Jun 27, 2026 at 04:29:16PM +0200, Jacopo Mondi wrote:
> From: Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com>
>
> Implement validation of Gamma block parameters.
>
> Gamma gains are expressed as unsigned 12 bits Q4.8 format and their raw
> value cannot be higher than 4095 (BIT(12) - 1).
>
> Gamma offsets are 12 bits unsigned integers and their value cannot be
> higher than 4095 (BIT(12) - 1).
>
> The Gamma LUT table is expected to have 0 as first member and 0xfff
> as last member.
>
> Validate the parameters provided by userspace using the .block_validate
> callback of struct v4l2_isp_params_block_type_info.
>
> Signed-off-by: Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com>
For the same reasons as 3/4, I'd drop this patch.
> ---
> v3:
> - new patch
> ---
> .../media/platform/arm/mali-c55/mali-c55-params.c | 34 ++++++++++++++++++++++
> 1 file changed, 34 insertions(+)
>
> diff --git a/drivers/media/platform/arm/mali-c55/mali-c55-params.c b/drivers/media/platform/arm/mali-c55/mali-c55-params.c
> index 5857e9c2daf7..e9ab0e2dee15 100644
> --- a/drivers/media/platform/arm/mali-c55/mali-c55-params.c
> +++ b/drivers/media/platform/arm/mali-c55/mali-c55-params.c
> @@ -581,6 +581,38 @@ static int mali_c55_ccm_validate(struct device *dev,
> return 0;
> }
>
> +static int mali_c55_gamma_validate(struct device *dev,
> + const struct v4l2_isp_block_header *block)
> +{
> + const struct mali_c55_params_gamma *gamma =
> + (const struct mali_c55_params_gamma *)(block);
> +
> + for (unsigned int i = 0; i < 3; i++) {
> + /* Gains are 12 bits unsigned Q4.8. */
> + if (gamma->gains[i] > 4095) {
> + dev_dbg(dev, "Invalid gain value %u\n",
> + gamma->gains[i]);
> + return -EINVAL;
> + }
> +
> + /* Offsets are 12 bits unsigned integers. */
> + if (gamma->offs[i] > 4095) {
> + dev_dbg(dev, "Invalid offset value %u\n",
> + gamma->offs[i]);
> + return -EINVAL;
> + }
> + }
> +
> + /* Check the first and last gamma lut entries match the expectations. */
> + if (gamma->lut[0] != 0 ||
> + gamma->lut[MALI_C55_NUM_GAMMA_LUT_ELEMENTS - 1] != 0xfff) {
> + dev_dbg(dev, "Invalid Gamma LUT table\n");
> + return -EINVAL;
> + }
You can possibly hardcode the first and last values to 0 and 0xfff
respectively in mali_c55_params_gamma() if you want to guard against
invalid values being programmed in registers.
> +
> + return 0;
> +}
> +
> static const struct v4l2_isp_params_block_type_info
> mali_c55_params_block_types_info[] = {
> [MALI_C55_PARAM_BLOCK_SENSOR_OFFS] = {
> @@ -622,9 +654,11 @@ mali_c55_params_block_types_info[] = {
> },
> [MALI_C55_PARAM_BLOCK_GAMMA_FR] = {
> .size = sizeof(struct mali_c55_params_gamma),
> + .block_validate = mali_c55_gamma_validate,
> },
> [MALI_C55_PARAM_BLOCK_GAMMA_DS] = {
> .size = sizeof(struct mali_c55_params_gamma),
> + .block_validate = mali_c55_gamma_validate,
> },
> };
>
--
Regards,
Laurent Pinchart
prev parent reply other threads:[~2026-06-29 10:20 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-27 14:29 [PATCH v3 0/4] media: mali-c55: Add support for CCM and Gamma Jacopo Mondi
2026-06-27 14:29 ` [PATCH v3 1/4] media: mali-c55: Add support for CCM Jacopo Mondi
2026-06-27 14:29 ` [PATCH v3 2/4] media: mali-c55: Implement CCM block validation Jacopo Mondi
2026-06-29 7:52 ` Vincenzo Frascino
2026-06-29 9:15 ` Jacopo Mondi
2026-06-29 9:57 ` Laurent Pinchart
2026-06-29 11:08 ` Vincenzo Frascino
2026-06-29 11:33 ` Jacopo Mondi
2026-06-29 13:07 ` Vincenzo Frascino
2026-06-29 12:05 ` Laurent Pinchart
2026-06-29 13:17 ` Vincenzo Frascino
2026-06-29 13:32 ` Laurent Pinchart
2026-06-29 13:42 ` Vincenzo Frascino
2026-06-27 14:29 ` [PATCH v3 3/4] media: mali-c55: Add support for RGB Gamma Jacopo Mondi
2026-06-27 14:29 ` [PATCH v3 4/4] media: mali-c55: Implement Gamma block validation Jacopo Mondi
2026-06-29 8:10 ` Vincenzo Frascino
2026-06-29 9:19 ` Jacopo Mondi
2026-06-29 10:14 ` Vincenzo Frascino
2026-06-29 10:20 ` Laurent Pinchart [this message]
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=20260629102046.GD3054459@killaraus.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=Konstantin.Babin@arm.com \
--cc=Nayden.Kanchev@arm.com \
--cc=anthony.mcgivern@arm.com \
--cc=dan.scally@ideasonboard.com \
--cc=jacopo.mondi+renesas@ideasonboard.com \
--cc=jacopo.mondi@ideasonboard.com \
--cc=linus.walleij@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=vincenzo.frascino@arm.com \
/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