media: atmel: atmel-isc: add CBC to the reg offsets struct
authorEugen Hristev <eugen.hristev@microchip.com>
Tue, 13 Apr 2021 10:57:08 +0000 (12:57 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 8 Jun 2021 10:57:55 +0000 (12:57 +0200)
The CBC submodule is a part of the atmel-isc pipeline, and stands for
Contrast Brightness Control. It is used to apply gains and offsets to the
luma (Y) and chroma (U, V) components of the YUV elements.
Add cbc to the reg offsets struct. This will allow different products
to have a different reg offset for this particular module.

Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/atmel/atmel-isc-base.c
drivers/media/platform/atmel/atmel-isc-regs.h
drivers/media/platform/atmel/atmel-isc.h
drivers/media/platform/atmel/atmel-sama5d2-isc.c

index 865410e10e70af20ada427c002a183898f7c6f93..b7728914fda8f88fc1f14f1eacf539f31a62d5c2 100644 (file)
@@ -2325,7 +2325,7 @@ int isc_pipeline_init(struct isc_device *isc)
                REG_FIELD(ISC_GAM_CTRL, 2, 2),
                REG_FIELD(ISC_GAM_CTRL, 3, 3),
                REG_FIELD(ISC_CSC_CTRL + isc->offsets.csc, 0, 0),
-               REG_FIELD(ISC_CBC_CTRL, 0, 0),
+               REG_FIELD(ISC_CBC_CTRL + isc->offsets.cbc, 0, 0),
                REG_FIELD(ISC_SUB422_CTRL, 0, 0),
                REG_FIELD(ISC_SUB420_CTRL, 0, 0),
        };
index 5a65600c5f8837d86156f1034de2a066cc912e67..a5e2fe01ba9fd29abb09d2fbd3073783a3c03237 100644 (file)
 /* Color Space Conversion CRB OCR Register */
 #define ISC_CSC_CRB_OCR        0x000003b0
 
+/* Offset for CBC register specific to sama5d2 product */
+#define ISC_SAMA5D2_CBC_OFFSET 0
+
 /* Contrast And Brightness Control Register */
 #define ISC_CBC_CTRL    0x000003b4
 
index cb47932197b1544de6112eca5fcc042dd53e6b56..b1fe93c93c613359e81032dc17b8dee8f5eadad8 100644 (file)
@@ -147,9 +147,11 @@ struct isc_ctrls {
 /*
  * struct isc_reg_offsets - ISC device register offsets
  * @csc:               Offset for the CSC register
+ * @cbc:               Offset for the CBC register
  */
 struct isc_reg_offsets {
        u32 csc;
+       u32 cbc;
 };
 
 /*
index b5f654f263cc600463a8edb3a6fb06ac677b736c..657d50ae9fa818ef10865991999501a0e803d78c 100644 (file)
@@ -77,8 +77,10 @@ static void isc_sama5d2_config_cbc(struct isc_device *isc)
 {
        struct regmap *regmap = isc->regmap;
 
-       regmap_write(regmap, ISC_CBC_BRIGHT, isc->ctrls.brightness);
-       regmap_write(regmap, ISC_CBC_CONTRAST, isc->ctrls.contrast);
+       regmap_write(regmap, ISC_CBC_BRIGHT + isc->offsets.cbc,
+                    isc->ctrls.brightness);
+       regmap_write(regmap, ISC_CBC_CONTRAST + isc->offsets.cbc,
+                    isc->ctrls.contrast);
 }
 
 /* Gamma table with gamma 1/2.2 */
@@ -229,6 +231,7 @@ static int atmel_isc_probe(struct platform_device *pdev)
        isc->config_cbc = isc_sama5d2_config_cbc;
 
        isc->offsets.csc = ISC_SAMA5D2_CSC_OFFSET;
+       isc->offsets.cbc = ISC_SAMA5D2_CBC_OFFSET;
 
        /* sama5d2-isc - 8 bits per beat */
        isc->dcfg = ISC_DCFG_YMBSIZE_BEATS8 | ISC_DCFG_CMBSIZE_BEATS8;