media: staging: media: ipu3: Fix AWB x_start position when rightmost stripe is used
authorKate Hsuan <hpa@redhat.com>
Fri, 8 Apr 2022 10:42:22 +0000 (11:42 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Sun, 24 Apr 2022 07:28:44 +0000 (08:28 +0100)
An not calibrated x_start setting would result in an incorrect AWB grid
configuration on a sensor when only the rightmost stripe is used.

If the AWB grid coordinate is set to the rightmost stripe, for example,
x_start is greater than 640, the AWB grid will be at the rightmost edge of
the sensor. The AWB statistic will be fetched from the wrong place of the
sensor and results in an incorrect AWB estimation result. Therefore,
stripe offset should subtract from x_start to have a correct grid
configuration for the rightmost stripe.

Signed-off-by: Kate Hsuan <hpa@redhat.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/staging/media/ipu3/ipu3-css-params.c

index f84cf11358a892ea1fed5e6def2e83b7fa5c32a1..76ad802d694e1132b64351df6fb91cf91739a895 100644 (file)
@@ -2636,6 +2636,17 @@ int imgu_css_cfg_acc(struct imgu_css *css, unsigned int pipe,
            acc->stripe.down_scaled_stripes[1].offset + min_overlap) {
                /* Enable only for rightmost stripe, disable left */
                acc->awb.stripes[0].rgbs_thr_b &= ~IPU3_UAPI_AWB_RGBS_THR_B_EN;
+
+               acc->awb.stripes[1].grid.x_start =
+                       (acc->awb.stripes[1].grid.x_start -
+                        acc->stripe.down_scaled_stripes[1].offset) &
+                       IPU3_UAPI_GRID_START_MASK;
+
+               b_w_log2 = acc->awb.stripes[1].grid.block_width_log2;
+               acc->awb.stripes[1].grid.x_end =
+                       imgu_css_grid_end(acc->awb.stripes[1].grid.x_start,
+                                         acc->awb.stripes[1].grid.width,
+                                         b_w_log2);
        } else if (acc->awb.config.grid.x_end <=
                   acc->stripe.bds_out_stripes[0].width - min_overlap) {
                /* Enable only for leftmost stripe, disable right */