From: Vincenzo Frascino <vincenzo.frascino@arm.com>
To: Jacopo Mondi <jacopo.mondi@ideasonboard.com>,
Nayden.Kanchev@arm.com,
Konstantin Babin <Konstantin.Babin@arm.com>,
Anthony McGivern <anthony.mcgivern@arm.com>,
linus.walleij@arm.com, laurent.pinchart@ideasonboard.com,
Daniel Scally <dan.scally@ideasonboard.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com>
Subject: Re: [PATCH v3 2/4] media: mali-c55: Implement CCM block validation
Date: Mon, 29 Jun 2026 08:52:09 +0100 [thread overview]
Message-ID: <7afdc0fa-343b-4159-a357-180d692c9dd2@arm.com> (raw)
In-Reply-To: <20260627-mali-c55-ccm-gamma-v3-2-113584c05174@ideasonboard.com>
Hi Jacopo,
thank you for your patch.
On 27/06/2026 15:29, Jacopo Mondi wrote:
> From: Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com>
>
> Implement validation of CCM block parameters.
>
> CCM coefficients are expressed as 13 bits signed Q4.8 format and their
> raw value cannot be higher than 8191 (BIT(13) - 1).
>
> CCM gains are expressed as unsigned 12 bits Q4.8 format and their raw
> value cannot be higher than 4095 (BIT(12) - 1).
>
> CCM offsets are 12 bits unsigned integers and their value cannot be
> higher than 4095 (BIT(12) - 1).
>
> 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>
>
I have a couple of comments. With this:
Reviewed-by: Vincenzo Frascino <vincenzo.frascino@arm.com>
> ---
> v3:
> - new patch
> ---
> .../media/platform/arm/mali-c55/mali-c55-params.c | 36 ++++++++++++++++++++++
> 1 file changed, 36 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 0da5215c52c3..333e66ee3923 100644
> --- a/drivers/media/platform/arm/mali-c55/mali-c55-params.c
> +++ b/drivers/media/platform/arm/mali-c55/mali-c55-params.c
> @@ -477,6 +477,41 @@ static const mali_c55_params_handler mali_c55_params_handlers[] = {
> [MALI_C55_PARAM_BLOCK_CCM] = &mali_c55_params_ccm,
> };
>
> +static int mali_c55_ccm_validate(struct device *dev,
> + const struct v4l2_isp_block_header *block)
> +{
> + const struct mali_c55_params_ccm *ccm =
> + (const struct mali_c55_params_ccm *)(block);
> +
> + for (unsigned int i = 0; i < 3; i++) {
> +
Nit: extra blank line after the for opening brace, kernel style usually avoids this.
> + for (unsigned int j = 0; j < 3; j++) {
> + /* Coefficients are 13 bits signed Q4.8. */
> + if (ccm->coeffs[i][j] > 8191) {
No magic numbers please :) Maybe use GENMASK(12, 0) or BIT(13) - 1 for
readability and consistency with the commit message, and similarly GENMASK(11,
0) or BIT(12) - 1 for gains and offsets. This also avoids magic numbers in
validation. The same could be applied to the other cases in this patch.
> + dev_dbg(dev, "Invalid ccm coefficient %u\n",
> + ccm->coeffs[i][j]);
> + return -EINVAL;
> + }
> + }
> +
> + /* Gains are 12 bits unsigned Q4.8. */
> + if (ccm->gains[i] > 4095) {
> + dev_dbg(dev, "Invalid ccm gain %u\n",
> + ccm->gains[i]);
> + return -EINVAL;
> + }
> +
> + /* Offsets are 12 bits unsigned integers. */
> + if (ccm->offs[i] > 4095) {
> + dev_dbg(dev, "Invalid ccm offset %u\n",
> + ccm->offs[i]);
> + return -EINVAL;
> + }
> + }
> +
> + return 0;
> +}
> +
> static const struct v4l2_isp_params_block_type_info
> mali_c55_params_block_types_info[] = {
> [MALI_C55_PARAM_BLOCK_SENSOR_OFFS] = {
> @@ -514,6 +549,7 @@ mali_c55_params_block_types_info[] = {
> },
> [MALI_C55_PARAM_BLOCK_CCM] = {
> .size = sizeof(struct mali_c55_params_ccm),
> + .block_validate = mali_c55_ccm_validate,
> },
> };
>
>
--
Regards,
Vincenzo
next prev parent reply other threads:[~2026-06-29 7:52 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 [this message]
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
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=7afdc0fa-343b-4159-a357-180d692c9dd2@arm.com \
--to=vincenzo.frascino@arm.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=laurent.pinchart@ideasonboard.com \
--cc=linus.walleij@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
/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