]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
clk / soc: mediatek: Bind clock and gpu driver for mt2701
authorEnric Balletbo i Serra <enric.balletbo@collabora.com>
Wed, 1 Apr 2020 20:17:35 +0000 (22:17 +0200)
committerMatthias Brugger <matthias.bgg@gmail.com>
Wed, 20 May 2020 10:47:02 +0000 (12:47 +0200)
Now that the mmsys driver is the top-level entry point for the
multimedia subsystem, we could bind the clock and the gpu driver on
those devices that is expected to work, so the drm driver is
intantiated by the mmsys driver and display, hopefully, working again.

Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Reviewed-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
Acked-by: Stephen Boyd <sboyd@kernel.org>
Link: https://lore.kernel.org/r/20200401201736.2980433-3-enric.balletbo@collabora.com
Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
drivers/clk/mediatek/clk-mt2701-mm.c
drivers/soc/mediatek/mtk-mmsys.c

index 054b597d4a7351f89758c3142c1fd11989f2a355..cb18e1849492cc612f951978f22dce7ca6a90cbf 100644 (file)
@@ -79,16 +79,12 @@ static const struct mtk_gate mm_clks[] = {
        GATE_DISP1(CLK_MM_TVE_FMM, "mm_tve_fmm", "mm_sel", 14),
 };
 
-static const struct of_device_id of_match_clk_mt2701_mm[] = {
-       { .compatible = "mediatek,mt2701-mmsys", },
-       {}
-};
-
 static int clk_mt2701_mm_probe(struct platform_device *pdev)
 {
+       struct device *dev = &pdev->dev;
+       struct device_node *node = dev->parent->of_node;
        struct clk_onecell_data *clk_data;
        int r;
-       struct device_node *node = pdev->dev.of_node;
 
        clk_data = mtk_alloc_clk_data(CLK_MM_NR);
 
@@ -108,7 +104,6 @@ static struct platform_driver clk_mt2701_mm_drv = {
        .probe = clk_mt2701_mm_probe,
        .driver = {
                .name = "clk-mt2701-mm",
-               .of_match_table = of_match_clk_mt2701_mm,
        },
 };
 
index da9039185aace9f20c545780c604d389e8e41865..e1084ef268256a2468711ef0866eacd0fe1e9e31 100644 (file)
@@ -79,6 +79,10 @@ struct mtk_mmsys_driver_data {
        const char *clk_driver;
 };
 
+static const struct mtk_mmsys_driver_data mt2701_mmsys_driver_data = {
+       .clk_driver = "clk-mt2701-mm",
+};
+
 static const struct mtk_mmsys_driver_data mt2712_mmsys_driver_data = {
        .clk_driver = "clk-mt2712-mm",
 };
@@ -324,6 +328,10 @@ static int mtk_mmsys_probe(struct platform_device *pdev)
 }
 
 static const struct of_device_id of_match_mtk_mmsys[] = {
+       {
+               .compatible = "mediatek,mt2701-mmsys",
+               .data = &mt2701_mmsys_driver_data,
+       },
        {
                .compatible = "mediatek,mt2712-mmsys",
                .data = &mt2712_mmsys_driver_data,