public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
To: "Niklas Söderlund" <niklas.soderlund+renesas@ragnatech.se>
Cc: Jai Luthra <jai.luthra+renesas@ideasonboard.com>,
	 Mauro Carvalho Chehab <mchehab@kernel.org>,
	Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
	 Jacopo Mondi <jacopo.mondi@ideasonboard.com>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	 linux-media@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	 Jai Luthra <jai.luthra@ideasonboard.com>
Subject: Re: [v8 14/14] media: rppx1: lin: Add support for gamma sensor linearization
Date: Wed, 6 May 2026 17:57:49 +0200	[thread overview]
Message-ID: <aftkY_BuG0E_e0qC@zed> (raw)
In-Reply-To: <20260504010556.2796398-15-niklas.soderlund+renesas@ragnatech.se>

Hi Niklas,

On Mon, May 04, 2026 at 03:05:56AM +0200, Niklas Söderlund wrote:
> From: Jai Luthra <jai.luthra@ideasonboard.com>
>
> Extend the RPPX1 driver to allow setting the gamma sensor linearization
> configuration parameters. It uses the RPPX1 framework for parameters and
> its writer abstraction to allow the user to control how, and when,
> configuration is applied to the RPPX1.
>
> Signed-off-by: Jai Luthra <jai.luthra@ideasonboard.com>
> Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> ---
>  .../platform/dreamchip/rppx1/rpp_module.h     |  1 +
>  .../platform/dreamchip/rppx1/rpp_params.c     |  5 ++
>  .../platform/dreamchip/rppx1/rppx1_lin.c      | 55 +++++++++++++++++++
>  .../uapi/linux/media/dreamchip/rppx1-config.h | 48 +++++++++++++++-
>  4 files changed, 108 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/platform/dreamchip/rppx1/rpp_module.h b/drivers/media/platform/dreamchip/rppx1/rpp_module.h
> index 136ec4d48054..27235fdfb749 100644
> --- a/drivers/media/platform/dreamchip/rppx1/rpp_module.h
> +++ b/drivers/media/platform/dreamchip/rppx1/rpp_module.h
> @@ -86,6 +86,7 @@ void rpp_module_clrset(struct rpp_module *mod, u32 offset, u32 mask, u32 value);
>  union rppx1_params_block {
>  	struct v4l2_isp_params_block_header header;
>  	struct rppx1_bls_params bls;
> +	struct rppx1_lin_params lin;
>  	struct rppx1_lsc_params lsc;
>  	struct rppx1_awbg_params awbg;
>  	struct rppx1_bd_params bd;
> diff --git a/drivers/media/platform/dreamchip/rppx1/rpp_params.c b/drivers/media/platform/dreamchip/rppx1/rpp_params.c
> index edea25293d64..1995a80890f4 100644
> --- a/drivers/media/platform/dreamchip/rppx1/rpp_params.c
> +++ b/drivers/media/platform/dreamchip/rppx1/rpp_params.c
> @@ -18,6 +18,8 @@ static const struct v4l2_isp_block_type_info
>  rppx1_ext_params_blocks_info[] = {
>  	RPPX1_PARAMS_BLOCK_INFO(BLS_PRE1, bls),
>  	RPPX1_PARAMS_BLOCK_INFO(BLS_PRE2, bls),
> +	RPPX1_PARAMS_BLOCK_INFO(LIN_PRE1, lin),
> +	RPPX1_PARAMS_BLOCK_INFO(LIN_PRE2, lin),
>  	RPPX1_PARAMS_BLOCK_INFO(LSC_PRE1, lsc),
>  	RPPX1_PARAMS_BLOCK_INFO(LSC_PRE2, lsc),
>  	RPPX1_PARAMS_BLOCK_INFO(AWBG_PRE1, awbg),
> @@ -72,6 +74,9 @@ int rppx1_params(struct rppx1 *rpp, struct vb2_buffer *vb, size_t max_size,
>  		case RPPX1_PARAMS_BLOCK_TYPE_BLS_PRE1:
>  			module = &rpp->pre1.bls;
>  			break;
> +		case RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE1:
> +			module = &rpp->pre1.lin;
> +			break;
>  		case RPPX1_PARAMS_BLOCK_TYPE_LSC_PRE1:
>  			module = &rpp->pre1.lsc;
>  			break;
> diff --git a/drivers/media/platform/dreamchip/rppx1/rppx1_lin.c b/drivers/media/platform/dreamchip/rppx1/rppx1_lin.c
> index f595f56a292e..cc8efe3b3f2c 100644
> --- a/drivers/media/platform/dreamchip/rppx1/rppx1_lin.c
> +++ b/drivers/media/platform/dreamchip/rppx1/rppx1_lin.c
> @@ -24,6 +24,11 @@
>  #define LIN_B_Y_REG_NUM				17
>  #define LIN_B_Y_REG(n)				(0x0098 + (4 * (n)))
>
> +#define LIN_PRE1_DEGAMMA_CURVE_MASK		GENMASK(23, 0)
> +#define LIN_PRE1_SAMPLE_POINTS_MASK		GENMASK(3, 0)
> +#define LIN_PRE2_DEGAMMA_CURVE_MASK		GENMASK(11, 0)
> +#define LIN_PRE2_SAMPLE_POINTS_MASK		GENMASK(2, 0)
> +
>  static int rppx1_lin_probe(struct rpp_module *mod)
>  {
>  	/* Version check. */
> @@ -52,7 +57,57 @@ static int rppx1_lin_start(struct rpp_module *mod,
>  	return 0;
>  }
>
> +static int rppx1_lin_fill_params(struct rpp_module *mod,
> +				 const union rppx1_params_block *block,
> +				 rppx1_reg_write write, void *priv)
> +{
> +	const struct rppx1_lin_params *cfg = &block->lin;
> +	u8 sample_mask;
> +	u32 mask;
> +
> +	if (cfg->header.flags & V4L2_ISP_PARAMS_FL_BLOCK_DISABLE) {
> +		write(priv, mod->base + LIN_ENABLE_REG, 0);
> +		return 0;
> +	}
> +
> +	switch (cfg->header.type) {
> +	case RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE1:
> +		mask = LIN_PRE1_DEGAMMA_CURVE_MASK;
> +		sample_mask = LIN_PRE1_SAMPLE_POINTS_MASK;
> +		break;
> +	case RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE2:
> +		mask = LIN_PRE2_DEGAMMA_CURVE_MASK;
> +		sample_mask = LIN_PRE2_SAMPLE_POINTS_MASK;
> +		break;
> +	default:
> +		return -EINVAL;
> +	}
> +
> +	u32 dx_lo = 0;
> +	u32 dx_hi = 0;

I was clearly over-excited by the modernity of C99 that allows mixing
declarations and code. However this is still a discouraged practice
unless there are good reasons to do so. Probably in this case there
aren't enough.

> +
> +	for (unsigned int i = 0; i < 8; ++i) {
> +		dx_lo |= (cfg->dx[i] & sample_mask) << 4 * i;
> +		dx_hi |= (cfg->dx[i + 8] & sample_mask) << 4 * i;
> +	}
> +
> +	write(priv, mod->base + LIN_DX_LO_REG, dx_lo);
> +	write(priv, mod->base + LIN_DX_HI_REG, dx_hi);
> +
> +	for (unsigned int i = 0; i < RPPX1_LIN_DEGAMMA_CURVE_NUM; i++) {
> +		write(priv, mod->base + LIN_R_Y_REG(i), cfg->curve_r[i] & mask);
> +		write(priv, mod->base + LIN_G_Y_REG(i), cfg->curve_g[i] & mask);
> +		write(priv, mod->base + LIN_B_Y_REG(i), cfg->curve_b[i] & mask);
> +	}
> +
> +	if ((cfg->header.flags & V4L2_ISP_PARAMS_FL_BLOCK_ENABLE))
> +		write(priv, mod->base + LIN_ENABLE_REG, LIN_ENABLE_GAMMA_IN_EN);
> +
> +	return 0;
> +}
> +
>  const struct rpp_module_ops rppx1_lin_ops = {
>  	.probe = rppx1_lin_probe,
>  	.start = rppx1_lin_start,
> +	.fill_params = rppx1_lin_fill_params,
>  };
> diff --git a/include/uapi/linux/media/dreamchip/rppx1-config.h b/include/uapi/linux/media/dreamchip/rppx1-config.h
> index 0246e9af1d1d..e743e11d11e9 100644
> --- a/include/uapi/linux/media/dreamchip/rppx1-config.h
> +++ b/include/uapi/linux/media/dreamchip/rppx1-config.h
> @@ -95,6 +95,8 @@ enum rppx1_meas_chan {
>   * @RPPX1_PARAMS_BLOCK_TYPE_DB_FILTER_POST: Debayer filtering
>   * @RPPX1_PARAMS_BLOCK_TYPE_BD_PRE1: PRE1 pipe De-noise Pre-Filter
>   * @RPPX1_PARAMS_BLOCK_TYPE_BD_PRE2: PRE2 pipe De-noise Pre-Filter
> + * @RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE1: PRE1 pipe Linearization (Sensor De-gamma)
> + * @RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE2: PRE2 pipe Linearization (Sensor De-gamma)
>   */
>  enum rppx1_params_block_type {
>  	RPPX1_PARAMS_BLOCK_TYPE_WBMEAS_POST,
> @@ -117,6 +119,8 @@ enum rppx1_params_block_type {
>  	RPPX1_PARAMS_BLOCK_TYPE_DB_FILTER_POST,
>  	RPPX1_PARAMS_BLOCK_TYPE_BD_PRE1,
>  	RPPX1_PARAMS_BLOCK_TYPE_BD_PRE2,
> +	RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE1,
> +	RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE2,
>  };
>
>  /**
> @@ -735,6 +739,46 @@ struct rppx1_bd_params {
>  	struct rppx1_bd_nll nll;
>  };
>
> +/* Linearization (Sensor De-gamma) */
> +#define RPPX1_LIN_SAMPLE_POINTS_NUM 16
> +#define RPPX1_LIN_DEGAMMA_CURVE_NUM 17
> +
> +/**
> + * struct rppx1_lin_params - Linearization (Sensor De-gamma) configuration
> + *
> + * The RPP-X1 linearization module is available on the PRE1 and PRE2 pre-fusion
> + * pipes. Userspace selects which pipe to operate by setting the @header.type
> + * field to RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE1 or
> + * RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE2.
> + *
> + * The LIN module applies the per-color channel de-gamma linearization curves
> + * @curve_r, @curve_g and @curve_b defined on the input sampling points @dx.
> + *
> + * For the PRE1 pipe the de-gamma curves values are 24-bits, for the PRE2 pipe
> + * the de-gamma curve values are 12-bits.
> + *
> + * For the PRE1 pipe de-gamma module sampling points @dx values are in the range
> + * [0, 15] (4 bits). For the PRE2 pipe de-gamma module sampling points values
> + * are in the range [0, 7] (3 bits).
> + *
> + * Userspace is expected to provide the curve values and sampling points with a
> + * bit-depth matching the one of pipe in use.
> + *
> + * @header: block header (type = RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE1 or
> + *	    RPPX1_PARAMS_BLOCK_TYPE_LIN_PRE2)
> + * @curve_r: de-gamma linearization curve for red channel
> + * @curve_g: de-gamma linearization curve for green channel
> + * @curve_b: de-gamma linearization curve for blue channel
> + * @dx: input sampling points
> + */
> +struct rppx1_lin_params {
> +	struct v4l2_isp_params_block_header header;
> +	__u32 curve_r[RPPX1_LIN_DEGAMMA_CURVE_NUM];
> +	__u32 curve_g[RPPX1_LIN_DEGAMMA_CURVE_NUM];
> +	__u32 curve_b[RPPX1_LIN_DEGAMMA_CURVE_NUM];
> +	__u8 dx[RPPX1_LIN_SAMPLE_POINTS_NUM];
> +};
> +
>  /**
>   * RPPX1_PARAMS_MAX_SIZE - Maximum size of all RPP-X1 parameter blocks
>   *
> @@ -761,7 +805,9 @@ struct rppx1_bd_params {
>  	sizeof(struct rppx1_db_demosaic_params)			+	\
>  	sizeof(struct rppx1_db_filter_params)			+	\
>  	sizeof(struct rppx1_bd_params)				+	\
> -	sizeof(struct rppx1_bd_params))
> +	sizeof(struct rppx1_bd_params)				+	\
> +	sizeof(struct rppx1_lin_params)				+	\
> +	sizeof(struct rppx1_lin_params))
>
>  /* ---------------------------------------------------------------------------
>   * Statistics Structures
> --
> 2.54.0
>
>

  reply	other threads:[~2026-05-06 15:57 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-04  1:05 [v8 00/14] media: Add support for R-Car ISP using Dreamchip RPPX1 ISP Niklas Söderlund
2026-05-04  1:05 ` [v8 01/14] media: Add RPP_X1_PARAMS and RPP_X1_STATS meta formats Niklas Söderlund
2026-05-06  7:45   ` Jacopo Mondi
2026-05-04  1:05 ` [v8 02/14] media: rppx1: Add framework to support Dreamchip RPPX1 ISP Niklas Söderlund
2026-05-06  8:53   ` Jacopo Mondi
2026-05-04  1:05 ` [v8 03/14] media: rcar-isp: Add support for ISPCORE Niklas Söderlund
2026-05-06 15:02   ` Jacopo Mondi
2026-05-04  1:05 ` [v8 04/14] media: rppx1: wbmeas: Add support for white balance measurement Niklas Söderlund
2026-05-06 13:58   ` Antoine Bouyer
2026-05-06 14:22     ` Jacopo Mondi
2026-05-04  1:05 ` [v8 05/14] media: rppx1: awbg: Add support for white balance gain settings Niklas Söderlund
2026-05-04  1:05 ` [v8 06/14] media: rppx1: exm: Add support for exposure measurement Niklas Söderlund
2026-05-04  1:05 ` [v8 07/14] media: rppx1: hist: Add support histogram measurement Niklas Söderlund
2026-05-06 15:51   ` Jacopo Mondi
2026-05-04  1:05 ` [v8 08/14] media: rppx1: bls: Add support for black level compensation Niklas Söderlund
2026-05-06 15:25   ` Jacopo Mondi
2026-05-04  1:05 ` [v8 09/14] media: rppx1: ccor: Add support for color correction matrix Niklas Söderlund
2026-05-04  1:05 ` [v8 10/14] media: rppx1: lsc: Add support for lens shade correction Niklas Söderlund
2026-05-04  1:05 ` [v8 11/14] media: rppx1: ga: Add support for gamma out correction Niklas Söderlund
2026-05-04  1:05 ` [v8 12/14] media: rppx1: db: Add support for debayering filters Niklas Söderlund
2026-05-06 15:54   ` Jacopo Mondi
2026-05-04  1:05 ` [v8 13/14] media: rppx1: bd: Add support for bilateral denoising Niklas Söderlund
2026-05-04  1:05 ` [v8 14/14] media: rppx1: lin: Add support for gamma sensor linearization Niklas Söderlund
2026-05-06 15:57   ` Jacopo Mondi [this message]
2026-05-06 12:19 ` [v8 00/14] media: Add support for R-Car ISP using Dreamchip RPPX1 ISP Geert Uytterhoeven
2026-05-06 12:29   ` Niklas Söderlund
2026-05-06 12:49     ` Jacopo Mondi
2026-05-06 12:56       ` Geert Uytterhoeven

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=aftkY_BuG0E_e0qC@zed \
    --to=jacopo.mondi@ideasonboard.com \
    --cc=jai.luthra+renesas@ideasonboard.com \
    --cc=jai.luthra@ideasonboard.com \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=niklas.soderlund+renesas@ragnatech.se \
    /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