media: rockchip: rkisp1: add support for px30 isp version
authorHeiko Stuebner <heiko.stuebner@theobroma-systems.com>
Fri, 23 Jul 2021 07:32:21 +0000 (09:32 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 30 Sep 2021 08:07:37 +0000 (10:07 +0200)
The px30 uses a V12 isp block so add compatible and matchdata
for it.

Signed-off-by: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
Reviewed-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c

index b5e35b1..50b166c 100644 (file)
@@ -406,6 +406,27 @@ static irqreturn_t rkisp1_isr(int irq, void *ctx)
        return IRQ_HANDLED;
 }
 
+static const char * const px30_isp_clks[] = {
+       "isp",
+       "aclk",
+       "hclk",
+       "pclk",
+};
+
+static const struct rkisp1_isr_data px30_isp_isrs[] = {
+       { "isp", rkisp1_isp_isr },
+       { "mi", rkisp1_capture_isr },
+       { "mipi", rkisp1_mipi_isr },
+};
+
+static const struct rkisp1_match_data px30_isp_match_data = {
+       .clks = px30_isp_clks,
+       .clk_size = ARRAY_SIZE(px30_isp_clks),
+       .isrs = px30_isp_isrs,
+       .isr_size = ARRAY_SIZE(px30_isp_isrs),
+       .isp_ver = RKISP1_V12,
+};
+
 static const char * const rk3399_isp_clks[] = {
        "isp",
        "aclk",
@@ -426,6 +447,10 @@ static const struct rkisp1_match_data rk3399_isp_match_data = {
 
 static const struct of_device_id rkisp1_of_match[] = {
        {
+               .compatible = "rockchip,px30-cif-isp",
+               .data = &px30_isp_match_data,
+       },
+       {
                .compatible = "rockchip,rk3399-cif-isp",
                .data = &rk3399_isp_match_data,
        },