]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
media: hantro: allow arbitrary number of clocks
authorPhilipp Zabel <p.zabel@pengutronix.de>
Wed, 12 Jun 2019 09:39:12 +0000 (05:39 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Wed, 12 Jun 2019 14:41:03 +0000 (10:41 -0400)
Dynamically allocate clocks and move clock names out of struct
hantro_variant. This lifts the four clock limit and allows to use
ARRAY_SIZE() to fill .num_clocks to reduce the risk of mismatches.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/staging/media/hantro/hantro.h
drivers/staging/media/hantro/hantro_drv.c
drivers/staging/media/hantro/rk3288_vpu_hw.c
drivers/staging/media/hantro/rk3399_vpu_hw.c

index 5c2f87272ce2648e2670cd685e4c3354fc7dd192..62dcca9ff19c8f645b7f1ff6a077378e954c418d 100644 (file)
@@ -25,8 +25,6 @@
 
 #include "hantro_hw.h"
 
-#define HANTRO_MAX_CLOCKS              4
-
 #define MPEG2_MB_DIM                   16
 #define MPEG2_MB_WIDTH(w)              DIV_ROUND_UP(w, MPEG2_MB_DIM)
 #define MPEG2_MB_HEIGHT(h)             DIV_ROUND_UP(h, MPEG2_MB_DIM)
@@ -88,7 +86,7 @@ struct hantro_variant {
        int (*runtime_resume)(struct hantro_dev *vpu);
        const struct hantro_irq *irqs;
        int num_irqs;
-       const char *clk_names[HANTRO_MAX_CLOCKS];
+       const char * const *clk_names;
        int num_clocks;
        const char * const *reg_names;
        int num_regs;
@@ -182,7 +180,7 @@ struct hantro_dev {
        struct hantro_func *decoder;
        struct platform_device *pdev;
        struct device *dev;
-       struct clk_bulk_data clocks[HANTRO_MAX_CLOCKS];
+       struct clk_bulk_data *clocks;
        void __iomem **reg_bases;
        void __iomem *enc_base;
        void __iomem *dec_base;
index fc8f3ed8e80c56da173b5e5f59e77e42d62b3b95..1d3af881d088a8260121c2a9cfafa60102caa31e 100644 (file)
@@ -687,6 +687,11 @@ static int hantro_probe(struct platform_device *pdev)
 
        INIT_DELAYED_WORK(&vpu->watchdog_work, hantro_watchdog);
 
+       vpu->clocks = devm_kcalloc(&pdev->dev, vpu->variant->num_clocks,
+                                  sizeof(*vpu->clocks), GFP_KERNEL);
+       if (!vpu->clocks)
+               return -ENOMEM;
+
        for (i = 0; i < vpu->variant->num_clocks; i++)
                vpu->clocks[i].id = vpu->variant->clk_names[i];
        ret = devm_clk_bulk_get(&pdev->dev, vpu->variant->num_clocks,
index c5473bc1ac295c91ad6844c680f006897beeca38..bcacc4f510932dd4c335fefe2551a59dcda27809 100644 (file)
@@ -166,6 +166,10 @@ static const struct hantro_irq rk3288_irqs[] = {
        { "vdpu", rk3288_vdpu_irq },
 };
 
+static const char * const rk3288_clk_names[] = {
+       "aclk", "hclk"
+};
+
 const struct hantro_variant rk3288_vpu_variant = {
        .enc_offset = 0x0,
        .enc_fmts = rk3288_vpu_enc_fmts,
@@ -178,6 +182,6 @@ const struct hantro_variant rk3288_vpu_variant = {
        .irqs = rk3288_irqs,
        .num_irqs = ARRAY_SIZE(rk3288_irqs),
        .init = rk3288_vpu_hw_init,
-       .clk_names = {"aclk", "hclk"},
-       .num_clocks = 2
+       .clk_names = rk3288_clk_names,
+       .num_clocks = ARRAY_SIZE(rk3288_clk_names)
 };
index 965030e21ea9b1e3baf23ebafc05255ad6a4390c..5718f8063542e30973c0f44081de56ecdfda5cde 100644 (file)
@@ -165,6 +165,10 @@ static const struct hantro_irq rk3399_irqs[] = {
        { "vdpu", rk3399_vdpu_irq },
 };
 
+static const char * const rk3399_clk_names[] = {
+       "aclk", "hclk"
+};
+
 const struct hantro_variant rk3399_vpu_variant = {
        .enc_offset = 0x0,
        .enc_fmts = rk3399_vpu_enc_fmts,
@@ -177,6 +181,6 @@ const struct hantro_variant rk3399_vpu_variant = {
        .irqs = rk3399_irqs,
        .num_irqs = ARRAY_SIZE(rk3399_irqs),
        .init = rk3399_vpu_hw_init,
-       .clk_names = {"aclk", "hclk"},
-       .num_clocks = 2
+       .clk_names = rk3399_clk_names,
+       .num_clocks = ARRAY_SIZE(rk3399_clk_names)
 };