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
Subject: Re: [v8 07/14] media: rppx1: hist: Add support histogram measurement
Date: Wed, 6 May 2026 17:51:30 +0200 [thread overview]
Message-ID: <afti_-asx3ssZLuN@zed> (raw)
In-Reply-To: <20260504010556.2796398-8-niklas.soderlund+renesas@ragnatech.se>
Hi Niklas
On Mon, May 04, 2026 at 03:05:49AM +0200, Niklas Söderlund wrote:
> Extend the RPPX1 driver to allow setting the histogram measurement
> configuration and consuming the resulting statistics. 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: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> Co-developed-by: Jai Luthra <jai.luthra+renesas@ideasonboard.com>
> Signed-off-by: Jai Luthra <jai.luthra+renesas@ideasonboard.com>
> ---
> .../platform/dreamchip/rppx1/rpp_module.h | 2 +
> .../platform/dreamchip/rppx1/rpp_params.c | 6 +
> .../platform/dreamchip/rppx1/rpp_stats.c | 10 ++
> .../platform/dreamchip/rppx1/rppx1_hist.c | 115 +++++++++++++++++-
> .../uapi/linux/media/dreamchip/rppx1-config.h | 115 +++++++++++++++++-
> 5 files changed, 245 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/media/platform/dreamchip/rppx1/rpp_module.h b/drivers/media/platform/dreamchip/rppx1/rpp_module.h
> index 2dc9e54027e1..5725243d0119 100644
> --- a/drivers/media/platform/dreamchip/rppx1/rpp_module.h
> +++ b/drivers/media/platform/dreamchip/rppx1/rpp_module.h
> @@ -86,12 +86,14 @@ 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_awbg_params awbg;
> + struct rppx1_hist_params hist;
> struct rppx1_exm_params exm;
> struct rppx1_wbmeas_params wbmeas;
> };
>
> union rppx1_stats_block {
> struct v4l2_isp_params_block_header header;
> + struct rppx1_hist_stats hist;
> struct rppx1_exm_stats exm;
> struct rppx1_wbmeas_stats wbmeas;
> };
> diff --git a/drivers/media/platform/dreamchip/rppx1/rpp_params.c b/drivers/media/platform/dreamchip/rppx1/rpp_params.c
> index 23094e8ce3a7..6472bec6fba3 100644
> --- a/drivers/media/platform/dreamchip/rppx1/rpp_params.c
> +++ b/drivers/media/platform/dreamchip/rppx1/rpp_params.c
> @@ -18,6 +18,9 @@ static const struct v4l2_isp_block_type_info
> rppx1_ext_params_blocks_info[] = {
> RPPX1_PARAMS_BLOCK_INFO(AWBG_PRE1, awbg),
> RPPX1_PARAMS_BLOCK_INFO(AWBG_PRE2, awbg),
> + RPPX1_PARAMS_BLOCK_INFO(HIST_PRE1, hist),
> + RPPX1_PARAMS_BLOCK_INFO(HIST_PRE2, hist),
> + RPPX1_PARAMS_BLOCK_INFO(HIST_POST, hist),
> RPPX1_PARAMS_BLOCK_INFO(EXM_PRE1, exm),
> RPPX1_PARAMS_BLOCK_INFO(EXM_PRE2, exm),
> RPPX1_PARAMS_BLOCK_INFO(WBMEAS_POST, wbmeas),
> @@ -58,6 +61,9 @@ int rppx1_params(struct rppx1 *rpp, struct vb2_buffer *vb, size_t max_size,
> case RPPX1_PARAMS_BLOCK_TYPE_AWBG_PRE1:
> module = &rpp->pre1.awbg;
> break;
> + case RPPX1_PARAMS_BLOCK_TYPE_HIST_POST:
> + module = &rpp->post.hist;
> + break;
> case RPPX1_PARAMS_BLOCK_TYPE_EXM_PRE1:
> module = &rpp->pre1.exm;
> break;
> diff --git a/drivers/media/platform/dreamchip/rppx1/rpp_stats.c b/drivers/media/platform/dreamchip/rppx1/rpp_stats.c
> index 0fddf50f7222..b265e858cfd1 100644
> --- a/drivers/media/platform/dreamchip/rppx1/rpp_stats.c
> +++ b/drivers/media/platform/dreamchip/rppx1/rpp_stats.c
> @@ -16,6 +16,7 @@
>
> static const struct v4l2_isp_block_type_info
> rppx1_stats_blocks_info[] = {
> + RPPX1_STATS_BLOCK_INFO(HIST_POST, hist),
> RPPX1_STATS_BLOCK_INFO(EXM_PRE1, exm),
> RPPX1_STATS_BLOCK_INFO(WBMEAS_POST, wbmeas),
> };
> @@ -34,6 +35,15 @@ void rppx1_stats_fill_isr(struct rppx1 *rpp, u32 isc, void *buf)
>
> v4l2_isp_stats_init_buffer(stats);
>
> + if (isc & RPPX1_IRQ_ID_POST_HIST_MEAS) {
> + block = rppx1_init_stats_block(rpp, stats,
> + RPPX1_STATS_BLOCK_TYPE_HIST_POST);
> + if (!block)
> + return;
> +
> + rpp_module_call(&rpp->post.hist, fill_stats, block);
> + }
> +
> if (isc & RPPX1_IRQ_ID_PRE1_EXM) {
> block = rppx1_init_stats_block(rpp, stats,
> RPPX1_STATS_BLOCK_TYPE_EXM_PRE1);
> diff --git a/drivers/media/platform/dreamchip/rppx1/rppx1_hist.c b/drivers/media/platform/dreamchip/rppx1/rppx1_hist.c
> index cab498ece5a8..99044dc6c115 100644
> --- a/drivers/media/platform/dreamchip/rppx1/rppx1_hist.c
> +++ b/drivers/media/platform/dreamchip/rppx1/rppx1_hist.c
> @@ -25,6 +25,9 @@
>
> #define HIST_LAST_MEAS_LINE_REG 0x0010
> #define HIST_SUBSAMPLING_REG 0x0014
> +#define HIST_SUBSAMPLING_V_STEPSIZE(x) (((x) & 0x7f) << 24)
> +#define HIST_SUBSAMPLING_H_STEP_INC(x) (((x) & 0x1ffff))
> +
> #define HIST_COEFF_R_REG 0x0018
> #define HIST_COEFF_G_REG 0x001c
> #define HIST_COEFF_B_REG 0x0020
> @@ -48,7 +51,6 @@
> #define HIST_FORCED_UPDATE_REG 0x0058
> #define HIST_VSTART_STATUS_REG 0x005c
>
> -#define HIST_BIN_REG_NUM 32
> #define HIST_BIN_REG(n) (0x0060 + (4 * (n)))
>
> static int rppx1_hist_probe(struct rpp_module *mod)
> @@ -71,6 +73,117 @@ static int rppx1_hist_probe(struct rpp_module *mod)
> return 0;
> }
>
> +#define RPPX1_HIST_WEIGHT(v0, v1, v2, v3) \
> + (((v0) & 0x1f) | (((v1) & 0x1f) << 8) | \
> + (((v2) & 0x1f) << 16) | \
> + (((v3) & 0x1f) << 24))
> +
> +static int rppx1_hist_fill_params(struct rpp_module *mod,
> + const union rppx1_params_block *block,
> + rppx1_reg_write write, void *priv)
> +{
> + const struct rppx1_hist_params *cfg = &block->hist;
> + u32 h_offs, v_offs, h_size, v_size;
> +
> + /* If the modules is disabled, simply bypass it. */
> + if (cfg->header.flags & V4L2_ISP_PARAMS_FL_BLOCK_DISABLE) {
> + write(priv, mod->base + HIST_MODE_REG,
> + HIST_MODE_HIST_MODE_DISABLE);
> + return 0;
> + }
> +
> + /* Select sample point */
> + write(priv, mod->base + HIST_CHANNEL_SEL_REG,
> + cfg->channel_sel & HIST_CHANNEL_SEL_CHANNEL_SELECT_MASK);
> +
> + /*
> + * Configure the input subsampling.
> + *
> + * v_stepsize controls which lines are processed. In Bayer mode the
> + * effective value is double to account for the 2x2 macro-pixel size.
> + *
> + * h_step_inc is the horizontal pixel increment counter. The subsampling
> + * counter is incremented by h_step_inc. When the result of the
> + * increment overflows 2^16 a sampling is performed. In Bayer mode the
> + * subsampling counter is only incremented for color channels selected
> + * by hist_mode.
> + */
> + write(priv, mod->base + HIST_SUBSAMPLING_REG,
> + HIST_SUBSAMPLING_V_STEPSIZE(cfg->v_stepsize) |
> + HIST_SUBSAMPLING_H_STEP_INC(cfg->h_step_inc));
> +
> + /*
> + * Adjust and set measurement window to hardware limitations,
> + * - Offsets must be even.
> + * - Width and height must be divisible by 10.
> + */
> + h_offs = cfg->wnd.h_offs & 0x1ffe;
> + v_offs = cfg->wnd.v_offs & 0x1ffe;
> + h_size = cfg->wnd.h_size - cfg->wnd.h_size % 10;
> + v_size = cfg->wnd.v_size - cfg->wnd.v_size % 10;
I didn't modify this, but I might have missed where the divisible by
10 comes from (even and divisile by 5 maybe ?)
> +
> + write(priv, mod->base + HIST_H_OFFS_REG, h_offs);
> + write(priv, mod->base + HIST_V_OFFS_REG, v_offs);
> + write(priv, mod->base + HIST_H_SIZE_REG, h_size / 5);
> + write(priv, mod->base + HIST_V_SIZE_REG, v_size / 5);
We discussed with Jai if it was better to ask userspace to provide the
size of one window, or provide instead the size of the whole area to
cover and divide in the driver. I think your opinion is clear from the
above /5 but I just want to re-check.
> +
> + /*
> + * Set last measurement line for ready interrupt. Ignore the value
> + * from the parameters as it is only useful for fast-channel switching.
> + */
> + write(priv, mod->base + HIST_LAST_MEAS_LINE_REG, v_offs + v_size + 1);
> +
> + /* Set measurement window weights. */
> + write(priv, mod->base + HIST_WEIGHT_00TO30_REG,
> + RPPX1_HIST_WEIGHT(cfg->weights[0], cfg->weights[1],
> + cfg->weights[2], cfg->weights[3]));
> + write(priv, mod->base + HIST_WEIGHT_40TO21_REG,
> + RPPX1_HIST_WEIGHT(cfg->weights[4], cfg->weights[5],
> + cfg->weights[6], cfg->weights[7]));
> + write(priv, mod->base + HIST_WEIGHT_31TO12_REG,
> + RPPX1_HIST_WEIGHT(cfg->weights[8], cfg->weights[9],
> + cfg->weights[10], cfg->weights[11]));
> + write(priv, mod->base + HIST_WEIGHT_22TO03_REG,
> + RPPX1_HIST_WEIGHT(cfg->weights[12], cfg->weights[13],
> + cfg->weights[14], cfg->weights[15]));
> + write(priv, mod->base + HIST_WEIGHT_13TO43_REG,
> + RPPX1_HIST_WEIGHT(cfg->weights[16], cfg->weights[17],
> + cfg->weights[18], cfg->weights[19]));
> + write(priv, mod->base + HIST_WEIGHT_04TO34_REG,
> + RPPX1_HIST_WEIGHT(cfg->weights[20], cfg->weights[21],
> + cfg->weights[22], cfg->weights[23]));
> + write(priv, mod->base + HIST_WEIGHT_44_REG,
> + RPPX1_HIST_WEIGHT(cfg->weights[24], 0, 0, 0));
> +
> + write(priv, mod->base + HIST_MODE_REG, cfg->mode);
> + write(priv, mod->base + HIST_COEFF_R_REG, cfg->coeff[0]);
> + write(priv, mod->base + HIST_COEFF_G_REG, cfg->coeff[1]);
> + write(priv, mod->base + HIST_COEFF_B_REG, cfg->coeff[2]);
> +
> + u32 sample_reg = FIELD_PREP(HIST_SAMPLE_RANGE_SAMPLE_SHIFT_MASK,
> + cfg->sample_shift) |
> + FIELD_PREP(HIST_SAMPLE_RANGE_SAMPLE_OFFSET_MASK,
> + cfg->sample_offs);
> + write(priv, mod->base + HIST_SAMPLE_RANGE_REG, sample_reg);
> +
> + write(priv, mod->base + HIST_FORCED_UPDATE_REG, 1);
> +
> + return 0;
> +}
> +
> +static int rppx1_hist_fill_stats(struct rpp_module *mod,
> + union rppx1_stats_block *block)
> +{
> + struct rppx1_hist_stats *stats = &block->hist;
> +
> + for (unsigned int i = 0; i < RPPX1_HIST_NUM_BINS; i++)
> + stats->hist_bins[i] = rpp_module_read(mod, HIST_BIN_REG(i)) & 0xfffff;
> +
> + return 0;
> +}
> +
> const struct rpp_module_ops rppx1_hist_ops = {
> .probe = rppx1_hist_probe,
> + .fill_params = rppx1_hist_fill_params,
> + .fill_stats = rppx1_hist_fill_stats,
> };
> diff --git a/include/uapi/linux/media/dreamchip/rppx1-config.h b/include/uapi/linux/media/dreamchip/rppx1-config.h
> index 18e718d43f80..909a10935772 100644
> --- a/include/uapi/linux/media/dreamchip/rppx1-config.h
> +++ b/include/uapi/linux/media/dreamchip/rppx1-config.h
> @@ -81,6 +81,9 @@ enum rppx1_meas_chan {
> * @RPPX1_PARAMS_BLOCK_TYPE_AWBG_POST: MAIN_POST White Balance Gains
> * @RPPX1_PARAMS_BLOCK_TYPE_EXM_PRE1: PRE1 pipe Exposure Measurement
> * @RPPX1_PARAMS_BLOCK_TYPE_EXM_PRE2: PRE2 pipe Exposure Measurement
> + * @RPPX1_PARAMS_BLOCK_TYPE_HIST_PRE1: PRE1 pipe Histogram Measurement
> + * @RPPX1_PARAMS_BLOCK_TYPE_HIST_PRE2: PRE2 pipe Histogram Measurement
> + * @RPPX1_PARAMS_BLOCK_TYPE_HIST_POST: POST pipe Histogram Measurement
> */
> enum rppx1_params_block_type {
> RPPX1_PARAMS_BLOCK_TYPE_WBMEAS_POST,
> @@ -89,6 +92,9 @@ enum rppx1_params_block_type {
> RPPX1_PARAMS_BLOCK_TYPE_AWBG_POST,
> RPPX1_PARAMS_BLOCK_TYPE_EXM_PRE1,
> RPPX1_PARAMS_BLOCK_TYPE_EXM_PRE2,
> + RPPX1_PARAMS_BLOCK_TYPE_HIST_PRE1,
> + RPPX1_PARAMS_BLOCK_TYPE_HIST_PRE2,
> + RPPX1_PARAMS_BLOCK_TYPE_HIST_POST,
> };
>
> /**
> @@ -234,6 +240,85 @@ struct rppx1_exm_params {
> __u8 coeff_gb;
> };
>
> +/* Histogram */
> +#define RPPX1_HIST_WEIGHT_GRIDS_SIZE 25
> +
> +/**
> + * enum rppx1_hist_mode - Histogram measurement mode
> + *
> + * Histogram measurement mode. Select which channel or combination of channels
> + * the histogram measurement is performed on.
> + *
> + * @RPPX1_HIST_MODE_DISABLE: histogram disabled
> + * @RPPX1_HIST_MODE_RGB_COMBINED: combined RGB histogram
> + * @RPPX1_HIST_MODE_R_HISTOGRAM: red channel histogram
> + * @RPPX1_HIST_MODE_GR_HISTOGRAM: green/red channel histogram
> + * @RPPX1_HIST_MODE_B_HISTOGRAM: blue channel histogram
> + * @RPPX1_HIST_MODE_GB_HISTOGRAM: green/blue histogram
> + */
> +enum rppx1_hist_mode {
> + RPPX1_HIST_MODE_DISABLE,
> + RPPX1_HIST_MODE_RGB_COMBINED,
> + RPPX1_HIST_MODE_R_HISTOGRAM,
> + RPPX1_HIST_MODE_GR_HISTOGRAM,
> + RPPX1_HIST_MODE_B_HISTOGRAM,
> + RPPX1_HIST_MODE_GB_HISTOGRAM,
> +};
> +
> +/**
> + * struct rppx1_hist_params - Histogram measurement configuration
> + *
> + * The RPP-X1 Histogram measurement unit is available on the PRE1, PRE2 and
> + * MAIN_POST pipes. Userspace selects which pipe to operate by setting the
> + * @header.type field to RPPX1_PARAMS_BLOCK_TYPE_HIST_PRE1,
> + * RPPX1_PARAMS_BLOCK_TYPE_HIST_PRE2 or
> + * RPPX1_PARAMS_BLOCK_TYPE_HIST_POST.
> + *
> + * The histogram measurement point is selected using the @channel field while
> + * histogram measurement mode is selected using the @mode field.
> + *
> + * Histogram measurement is performed by programming subsampling factors using
> + * the @v_stepsize and @h_step_inc fields and by weighted windowing, by
> + * programming the size of the measurement window @wnd with @weights associated
> + * to each cell of the 5x5 measurement grid. Weights are represented as 5 bits
> + * integer values ranging from 0 to 16.
> + *
> + * The @last_line fields controls when the histogram measurement completes. It
> + * is usually programmed to the value of (@wnd.v_offs + @wnd.v_size - 1).
> + *
> + * Histogram values are calculated by applying a per-color channel coefficient
> + * represented as an 8 bits unsigned Q1.7 integer value. The @sample_offs and
> + * @sample_shift fields allow to reduce the color dynamic range on which
> + * histogram data are produced.
> + *
> + * @header: block header (type = RPPX1_PARAMS_BLOCK_TYPE_HIST_PRE1,
> + * type = RPPX1_PARAMS_BLOCK_TYPE_HIST_PRE2 or
> + * type = RPPX1_PARAMS_BLOCK_TYPE_HIST_POST)
> + * @mode: histogram measurement mode (from enum rppx1_hist_mode)
> + * @channel_sel: histogram measurement point (see enum rppx1_meas_chan)
> + * @wnd: measurement window coordinates
> + * @weights: weighting factors for each sub-window (5x5 grid)
> + * @last_line: line number for which the histogram measurement completes
> + * @v_stepsize: vertical subsampling divider, 7 bits
> + * @h_step_inc: horizontal subsampling step counter, 17 bits
> + * @coeff: R-G-B coefficients, 8 bits unsigned Q1.7
> + * @sample_offs: sample offset, 24 bits
> + * @sample_shift: sample shift, 4 bits
> + */
> +struct rppx1_hist_params {
> + struct v4l2_isp_params_block_header header;
> + __u8 mode;
> + __u8 channel_sel;
> + struct rppx1_window wnd;
> + __u8 weights[RPPX1_HIST_WEIGHT_GRIDS_SIZE];
> + __u32 last_line;
> + __u32 v_stepsize;
> + __u32 h_step_inc;
> + __u8 coeff[3];
> + __u32 sample_offs;
> + __u8 sample_shift;
> +};
> +
> /**
> * RPPX1_PARAMS_MAX_SIZE - Maximum size of all RPP-X1 parameter blocks
> *
> @@ -246,7 +331,10 @@ struct rppx1_exm_params {
> sizeof(struct rppx1_awbg_params) + \
> sizeof(struct rppx1_awbg_params) + \
> sizeof(struct rppx1_exm_params) + \
> - sizeof(struct rppx1_exm_params))
> + sizeof(struct rppx1_exm_params) + \
> + sizeof(struct rppx1_hist_params) + \
> + sizeof(struct rppx1_hist_params) + \
> + sizeof(struct rppx1_hist_params))
>
> /* ---------------------------------------------------------------------------
> * Statistics Structures
> @@ -263,11 +351,17 @@ struct rppx1_exm_params {
> * @RPPX1_STATS_BLOCK_TYPE_WBMEAS_POST: post-fusion white-balance measurement
> * @RPPX1_STATS_BLOCK_TYPE_EXM_PRE1: pre-fusion pipe1 exposure measurement
> * @RPPX1_STATS_BLOCK_TYPE_EXM_PRE2: pre-fusion pipe2 exposure measurement
> + * @RPPX1_STATS_BLOCK_TYPE_HIST_PRE1: pre-fusion pipe1 histogram
> + * @RPPX1_STATS_BLOCK_TYPE_HIST_PRE2: pre-fusion pipe2 histogram
> + * @RPPX1_STATS_BLOCK_TYPE_HIST_POST: post-fusion histogram
> */
> enum rppx1_stats_block_type {
> RPPX1_STATS_BLOCK_TYPE_WBMEAS_POST,
> RPPX1_STATS_BLOCK_TYPE_EXM_PRE1,
> RPPX1_STATS_BLOCK_TYPE_EXM_PRE2,
> + RPPX1_STATS_BLOCK_TYPE_HIST_PRE1,
> + RPPX1_STATS_BLOCK_TYPE_HIST_PRE2,
> + RPPX1_STATS_BLOCK_TYPE_HIST_POST,
> };
>
> /**
> @@ -304,6 +398,20 @@ struct rppx1_exm_stats {
> __u32 exp_mean[RPPX1_EXM_NUM_WIN];
> };
>
> +/* Histogram */
> +#define RPPX1_HIST_NUM_BINS 32
> +
> +/**
> + * struct rppx1_hist_stats - Histogram statistics
> + *
> + * @header: block header (type = RPPX1_STATS_BLOCK_TYPE_HIST_POST)
> + * @hist_bins: accumulation histogram results in unsigned 20-bit Q16.4 format
> + */
> +struct rppx1_hist_stats {
> + struct v4l2_isp_block_header header;
> + __u32 hist_bins[RPPX1_HIST_NUM_BINS];
> +};
> +
> /**
> * RPPX1_STATS_MAX_SIZE - Maximum size of all RPP-X1 statistics
> *
> @@ -313,6 +421,9 @@ struct rppx1_exm_stats {
> #define RPPX1_STATS_MAX_SIZE \
> (sizeof(struct rppx1_wbmeas_stats) + \
> sizeof(struct rppx1_exm_stats) + \
> - sizeof(struct rppx1_exm_stats))
> + sizeof(struct rppx1_exm_stats) + \
> + sizeof(struct rppx1_hist_stats) + \
> + sizeof(struct rppx1_hist_stats) + \
> + sizeof(struct rppx1_hist_stats))
>
> #endif /* __UAPI_RPP_X1_CONFIG_H */
> --
> 2.54.0
>
>
next prev parent reply other threads:[~2026-05-06 15:51 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 [this message]
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
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=afti_-asx3ssZLuN@zed \
--to=jacopo.mondi@ideasonboard.com \
--cc=jai.luthra+renesas@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