Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk / soc: mediatek: Move mt8173 MMSYS to platform driver

There is no strong reason for this to use CLK_OF_DECLARE instead of
being a platform driver. Plus, MMSYS provides clocks but also a shared
register space for the mediatek-drm and the mediatek-mdp
driver. So move the MMSYS clocks to a new platform driver and also
create a new MMSYS platform driver in drivers/soc/mediatek that
instantiates the clock driver.

Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Reviewed-by: CK Hu <ck.hu@mediatek.com>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>

authored by

Matthias Brugger and committed by
Matthias Brugger
13032709 1a680aa8

+213 -104
+7
drivers/clk/mediatek/Kconfig
··· 274 274 ---help--- 275 275 This driver supports MediaTek MT8173 clocks. 276 276 277 + config COMMON_CLK_MT8173_MMSYS 278 + bool "Clock driver for MediaTek MT8173 mmsys" 279 + depends on COMMON_CLK_MT8173 280 + default COMMON_CLK_MT8173 281 + help 282 + This driver supports MediaTek MT8173 mmsys clocks. 283 + 277 284 config COMMON_CLK_MT8183 278 285 bool "Clock driver for MediaTek MT8183" 279 286 depends on (ARCH_MEDIATEK && ARM64) || COMPILE_TEST
+1
drivers/clk/mediatek/Makefile
··· 41 41 obj-$(CONFIG_COMMON_CLK_MT7629_HIFSYS) += clk-mt7629-hif.o 42 42 obj-$(CONFIG_COMMON_CLK_MT8135) += clk-mt8135.o 43 43 obj-$(CONFIG_COMMON_CLK_MT8173) += clk-mt8173.o 44 + obj-$(CONFIG_COMMON_CLK_MT8173_MMSYS) += clk-mt8173-mm.o 44 45 obj-$(CONFIG_COMMON_CLK_MT8183) += clk-mt8183.o 45 46 obj-$(CONFIG_COMMON_CLK_MT8183_AUDIOSYS) += clk-mt8183-audio.o 46 47 obj-$(CONFIG_COMMON_CLK_MT8183_CAMSYS) += clk-mt8183-cam.o
+146
drivers/clk/mediatek/clk-mt8173-mm.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 2 + /* 3 + * Copyright (c) 2014 MediaTek Inc. 4 + * Author: James Liao <jamesjj.liao@mediatek.com> 5 + */ 6 + 7 + #include <linux/clk-provider.h> 8 + #include <linux/of_device.h> 9 + #include <linux/platform_device.h> 10 + 11 + #include "clk-gate.h" 12 + #include "clk-mtk.h" 13 + 14 + #include <dt-bindings/clock/mt8173-clk.h> 15 + 16 + static const struct mtk_gate_regs mm0_cg_regs = { 17 + .set_ofs = 0x0104, 18 + .clr_ofs = 0x0108, 19 + .sta_ofs = 0x0100, 20 + }; 21 + 22 + static const struct mtk_gate_regs mm1_cg_regs = { 23 + .set_ofs = 0x0114, 24 + .clr_ofs = 0x0118, 25 + .sta_ofs = 0x0110, 26 + }; 27 + 28 + #define GATE_MM0(_id, _name, _parent, _shift) { \ 29 + .id = _id, \ 30 + .name = _name, \ 31 + .parent_name = _parent, \ 32 + .regs = &mm0_cg_regs, \ 33 + .shift = _shift, \ 34 + .ops = &mtk_clk_gate_ops_setclr, \ 35 + } 36 + 37 + #define GATE_MM1(_id, _name, _parent, _shift) { \ 38 + .id = _id, \ 39 + .name = _name, \ 40 + .parent_name = _parent, \ 41 + .regs = &mm1_cg_regs, \ 42 + .shift = _shift, \ 43 + .ops = &mtk_clk_gate_ops_setclr, \ 44 + } 45 + 46 + static const struct mtk_gate mt8173_mm_clks[] = { 47 + /* MM0 */ 48 + GATE_MM0(CLK_MM_SMI_COMMON, "mm_smi_common", "mm_sel", 0), 49 + GATE_MM0(CLK_MM_SMI_LARB0, "mm_smi_larb0", "mm_sel", 1), 50 + GATE_MM0(CLK_MM_CAM_MDP, "mm_cam_mdp", "mm_sel", 2), 51 + GATE_MM0(CLK_MM_MDP_RDMA0, "mm_mdp_rdma0", "mm_sel", 3), 52 + GATE_MM0(CLK_MM_MDP_RDMA1, "mm_mdp_rdma1", "mm_sel", 4), 53 + GATE_MM0(CLK_MM_MDP_RSZ0, "mm_mdp_rsz0", "mm_sel", 5), 54 + GATE_MM0(CLK_MM_MDP_RSZ1, "mm_mdp_rsz1", "mm_sel", 6), 55 + GATE_MM0(CLK_MM_MDP_RSZ2, "mm_mdp_rsz2", "mm_sel", 7), 56 + GATE_MM0(CLK_MM_MDP_TDSHP0, "mm_mdp_tdshp0", "mm_sel", 8), 57 + GATE_MM0(CLK_MM_MDP_TDSHP1, "mm_mdp_tdshp1", "mm_sel", 9), 58 + GATE_MM0(CLK_MM_MDP_WDMA, "mm_mdp_wdma", "mm_sel", 11), 59 + GATE_MM0(CLK_MM_MDP_WROT0, "mm_mdp_wrot0", "mm_sel", 12), 60 + GATE_MM0(CLK_MM_MDP_WROT1, "mm_mdp_wrot1", "mm_sel", 13), 61 + GATE_MM0(CLK_MM_FAKE_ENG, "mm_fake_eng", "mm_sel", 14), 62 + GATE_MM0(CLK_MM_MUTEX_32K, "mm_mutex_32k", "rtc_sel", 15), 63 + GATE_MM0(CLK_MM_DISP_OVL0, "mm_disp_ovl0", "mm_sel", 16), 64 + GATE_MM0(CLK_MM_DISP_OVL1, "mm_disp_ovl1", "mm_sel", 17), 65 + GATE_MM0(CLK_MM_DISP_RDMA0, "mm_disp_rdma0", "mm_sel", 18), 66 + GATE_MM0(CLK_MM_DISP_RDMA1, "mm_disp_rdma1", "mm_sel", 19), 67 + GATE_MM0(CLK_MM_DISP_RDMA2, "mm_disp_rdma2", "mm_sel", 20), 68 + GATE_MM0(CLK_MM_DISP_WDMA0, "mm_disp_wdma0", "mm_sel", 21), 69 + GATE_MM0(CLK_MM_DISP_WDMA1, "mm_disp_wdma1", "mm_sel", 22), 70 + GATE_MM0(CLK_MM_DISP_COLOR0, "mm_disp_color0", "mm_sel", 23), 71 + GATE_MM0(CLK_MM_DISP_COLOR1, "mm_disp_color1", "mm_sel", 24), 72 + GATE_MM0(CLK_MM_DISP_AAL, "mm_disp_aal", "mm_sel", 25), 73 + GATE_MM0(CLK_MM_DISP_GAMMA, "mm_disp_gamma", "mm_sel", 26), 74 + GATE_MM0(CLK_MM_DISP_UFOE, "mm_disp_ufoe", "mm_sel", 27), 75 + GATE_MM0(CLK_MM_DISP_SPLIT0, "mm_disp_split0", "mm_sel", 28), 76 + GATE_MM0(CLK_MM_DISP_SPLIT1, "mm_disp_split1", "mm_sel", 29), 77 + GATE_MM0(CLK_MM_DISP_MERGE, "mm_disp_merge", "mm_sel", 30), 78 + GATE_MM0(CLK_MM_DISP_OD, "mm_disp_od", "mm_sel", 31), 79 + /* MM1 */ 80 + GATE_MM1(CLK_MM_DISP_PWM0MM, "mm_disp_pwm0mm", "mm_sel", 0), 81 + GATE_MM1(CLK_MM_DISP_PWM026M, "mm_disp_pwm026m", "pwm_sel", 1), 82 + GATE_MM1(CLK_MM_DISP_PWM1MM, "mm_disp_pwm1mm", "mm_sel", 2), 83 + GATE_MM1(CLK_MM_DISP_PWM126M, "mm_disp_pwm126m", "pwm_sel", 3), 84 + GATE_MM1(CLK_MM_DSI0_ENGINE, "mm_dsi0_engine", "mm_sel", 4), 85 + GATE_MM1(CLK_MM_DSI0_DIGITAL, "mm_dsi0_digital", "dsi0_dig", 5), 86 + GATE_MM1(CLK_MM_DSI1_ENGINE, "mm_dsi1_engine", "mm_sel", 6), 87 + GATE_MM1(CLK_MM_DSI1_DIGITAL, "mm_dsi1_digital", "dsi1_dig", 7), 88 + GATE_MM1(CLK_MM_DPI_PIXEL, "mm_dpi_pixel", "dpi0_sel", 8), 89 + GATE_MM1(CLK_MM_DPI_ENGINE, "mm_dpi_engine", "mm_sel", 9), 90 + GATE_MM1(CLK_MM_DPI1_PIXEL, "mm_dpi1_pixel", "lvds_pxl", 10), 91 + GATE_MM1(CLK_MM_DPI1_ENGINE, "mm_dpi1_engine", "mm_sel", 11), 92 + GATE_MM1(CLK_MM_HDMI_PIXEL, "mm_hdmi_pixel", "dpi0_sel", 12), 93 + GATE_MM1(CLK_MM_HDMI_PLLCK, "mm_hdmi_pllck", "hdmi_sel", 13), 94 + GATE_MM1(CLK_MM_HDMI_AUDIO, "mm_hdmi_audio", "apll1", 14), 95 + GATE_MM1(CLK_MM_HDMI_SPDIF, "mm_hdmi_spdif", "apll2", 15), 96 + GATE_MM1(CLK_MM_LVDS_PIXEL, "mm_lvds_pixel", "lvds_pxl", 16), 97 + GATE_MM1(CLK_MM_LVDS_CTS, "mm_lvds_cts", "lvds_cts", 17), 98 + GATE_MM1(CLK_MM_SMI_LARB4, "mm_smi_larb4", "mm_sel", 18), 99 + GATE_MM1(CLK_MM_HDMI_HDCP, "mm_hdmi_hdcp", "hdcp_sel", 19), 100 + GATE_MM1(CLK_MM_HDMI_HDCP24M, "mm_hdmi_hdcp24m", "hdcp_24m_sel", 20), 101 + }; 102 + 103 + struct clk_mt8173_mm_driver_data { 104 + const struct mtk_gate *gates_clk; 105 + int gates_num; 106 + }; 107 + 108 + static const struct clk_mt8173_mm_driver_data mt8173_mmsys_driver_data = { 109 + .gates_clk = mt8173_mm_clks, 110 + .gates_num = ARRAY_SIZE(mt8173_mm_clks), 111 + }; 112 + 113 + static int clk_mt8173_mm_probe(struct platform_device *pdev) 114 + { 115 + struct device *dev = &pdev->dev; 116 + struct device_node *node = dev->parent->of_node; 117 + const struct clk_mt8173_mm_driver_data *data; 118 + struct clk_onecell_data *clk_data; 119 + int ret; 120 + 121 + clk_data = mtk_alloc_clk_data(CLK_MM_NR_CLK); 122 + if (!clk_data) 123 + return -ENOMEM; 124 + 125 + data = &mt8173_mmsys_driver_data; 126 + 127 + ret = mtk_clk_register_gates(node, data->gates_clk, data->gates_num, 128 + clk_data); 129 + if (ret) 130 + return ret; 131 + 132 + ret = of_clk_add_provider(node, of_clk_src_onecell_get, clk_data); 133 + if (ret) 134 + return ret; 135 + 136 + return 0; 137 + } 138 + 139 + static struct platform_driver clk_mt8173_mm_drv = { 140 + .driver = { 141 + .name = "clk-mt8173-mm", 142 + }, 143 + .probe = clk_mt8173_mm_probe, 144 + }; 145 + 146 + builtin_platform_driver(clk_mt8173_mm_drv);
-104
drivers/clk/mediatek/clk-mt8173.c
··· 753 753 GATE_IMG(CLK_IMG_FD, "img_fd", "mm_sel", 11), 754 754 }; 755 755 756 - static const struct mtk_gate_regs mm0_cg_regs __initconst = { 757 - .set_ofs = 0x0104, 758 - .clr_ofs = 0x0108, 759 - .sta_ofs = 0x0100, 760 - }; 761 - 762 - static const struct mtk_gate_regs mm1_cg_regs __initconst = { 763 - .set_ofs = 0x0114, 764 - .clr_ofs = 0x0118, 765 - .sta_ofs = 0x0110, 766 - }; 767 - 768 - #define GATE_MM0(_id, _name, _parent, _shift) { \ 769 - .id = _id, \ 770 - .name = _name, \ 771 - .parent_name = _parent, \ 772 - .regs = &mm0_cg_regs, \ 773 - .shift = _shift, \ 774 - .ops = &mtk_clk_gate_ops_setclr, \ 775 - } 776 - 777 - #define GATE_MM1(_id, _name, _parent, _shift) { \ 778 - .id = _id, \ 779 - .name = _name, \ 780 - .parent_name = _parent, \ 781 - .regs = &mm1_cg_regs, \ 782 - .shift = _shift, \ 783 - .ops = &mtk_clk_gate_ops_setclr, \ 784 - } 785 - 786 - static const struct mtk_gate mm_clks[] __initconst = { 787 - /* MM0 */ 788 - GATE_MM0(CLK_MM_SMI_COMMON, "mm_smi_common", "mm_sel", 0), 789 - GATE_MM0(CLK_MM_SMI_LARB0, "mm_smi_larb0", "mm_sel", 1), 790 - GATE_MM0(CLK_MM_CAM_MDP, "mm_cam_mdp", "mm_sel", 2), 791 - GATE_MM0(CLK_MM_MDP_RDMA0, "mm_mdp_rdma0", "mm_sel", 3), 792 - GATE_MM0(CLK_MM_MDP_RDMA1, "mm_mdp_rdma1", "mm_sel", 4), 793 - GATE_MM0(CLK_MM_MDP_RSZ0, "mm_mdp_rsz0", "mm_sel", 5), 794 - GATE_MM0(CLK_MM_MDP_RSZ1, "mm_mdp_rsz1", "mm_sel", 6), 795 - GATE_MM0(CLK_MM_MDP_RSZ2, "mm_mdp_rsz2", "mm_sel", 7), 796 - GATE_MM0(CLK_MM_MDP_TDSHP0, "mm_mdp_tdshp0", "mm_sel", 8), 797 - GATE_MM0(CLK_MM_MDP_TDSHP1, "mm_mdp_tdshp1", "mm_sel", 9), 798 - GATE_MM0(CLK_MM_MDP_WDMA, "mm_mdp_wdma", "mm_sel", 11), 799 - GATE_MM0(CLK_MM_MDP_WROT0, "mm_mdp_wrot0", "mm_sel", 12), 800 - GATE_MM0(CLK_MM_MDP_WROT1, "mm_mdp_wrot1", "mm_sel", 13), 801 - GATE_MM0(CLK_MM_FAKE_ENG, "mm_fake_eng", "mm_sel", 14), 802 - GATE_MM0(CLK_MM_MUTEX_32K, "mm_mutex_32k", "rtc_sel", 15), 803 - GATE_MM0(CLK_MM_DISP_OVL0, "mm_disp_ovl0", "mm_sel", 16), 804 - GATE_MM0(CLK_MM_DISP_OVL1, "mm_disp_ovl1", "mm_sel", 17), 805 - GATE_MM0(CLK_MM_DISP_RDMA0, "mm_disp_rdma0", "mm_sel", 18), 806 - GATE_MM0(CLK_MM_DISP_RDMA1, "mm_disp_rdma1", "mm_sel", 19), 807 - GATE_MM0(CLK_MM_DISP_RDMA2, "mm_disp_rdma2", "mm_sel", 20), 808 - GATE_MM0(CLK_MM_DISP_WDMA0, "mm_disp_wdma0", "mm_sel", 21), 809 - GATE_MM0(CLK_MM_DISP_WDMA1, "mm_disp_wdma1", "mm_sel", 22), 810 - GATE_MM0(CLK_MM_DISP_COLOR0, "mm_disp_color0", "mm_sel", 23), 811 - GATE_MM0(CLK_MM_DISP_COLOR1, "mm_disp_color1", "mm_sel", 24), 812 - GATE_MM0(CLK_MM_DISP_AAL, "mm_disp_aal", "mm_sel", 25), 813 - GATE_MM0(CLK_MM_DISP_GAMMA, "mm_disp_gamma", "mm_sel", 26), 814 - GATE_MM0(CLK_MM_DISP_UFOE, "mm_disp_ufoe", "mm_sel", 27), 815 - GATE_MM0(CLK_MM_DISP_SPLIT0, "mm_disp_split0", "mm_sel", 28), 816 - GATE_MM0(CLK_MM_DISP_SPLIT1, "mm_disp_split1", "mm_sel", 29), 817 - GATE_MM0(CLK_MM_DISP_MERGE, "mm_disp_merge", "mm_sel", 30), 818 - GATE_MM0(CLK_MM_DISP_OD, "mm_disp_od", "mm_sel", 31), 819 - /* MM1 */ 820 - GATE_MM1(CLK_MM_DISP_PWM0MM, "mm_disp_pwm0mm", "mm_sel", 0), 821 - GATE_MM1(CLK_MM_DISP_PWM026M, "mm_disp_pwm026m", "pwm_sel", 1), 822 - GATE_MM1(CLK_MM_DISP_PWM1MM, "mm_disp_pwm1mm", "mm_sel", 2), 823 - GATE_MM1(CLK_MM_DISP_PWM126M, "mm_disp_pwm126m", "pwm_sel", 3), 824 - GATE_MM1(CLK_MM_DSI0_ENGINE, "mm_dsi0_engine", "mm_sel", 4), 825 - GATE_MM1(CLK_MM_DSI0_DIGITAL, "mm_dsi0_digital", "dsi0_dig", 5), 826 - GATE_MM1(CLK_MM_DSI1_ENGINE, "mm_dsi1_engine", "mm_sel", 6), 827 - GATE_MM1(CLK_MM_DSI1_DIGITAL, "mm_dsi1_digital", "dsi1_dig", 7), 828 - GATE_MM1(CLK_MM_DPI_PIXEL, "mm_dpi_pixel", "dpi0_sel", 8), 829 - GATE_MM1(CLK_MM_DPI_ENGINE, "mm_dpi_engine", "mm_sel", 9), 830 - GATE_MM1(CLK_MM_DPI1_PIXEL, "mm_dpi1_pixel", "lvds_pxl", 10), 831 - GATE_MM1(CLK_MM_DPI1_ENGINE, "mm_dpi1_engine", "mm_sel", 11), 832 - GATE_MM1(CLK_MM_HDMI_PIXEL, "mm_hdmi_pixel", "dpi0_sel", 12), 833 - GATE_MM1(CLK_MM_HDMI_PLLCK, "mm_hdmi_pllck", "hdmi_sel", 13), 834 - GATE_MM1(CLK_MM_HDMI_AUDIO, "mm_hdmi_audio", "apll1", 14), 835 - GATE_MM1(CLK_MM_HDMI_SPDIF, "mm_hdmi_spdif", "apll2", 15), 836 - GATE_MM1(CLK_MM_LVDS_PIXEL, "mm_lvds_pixel", "lvds_pxl", 16), 837 - GATE_MM1(CLK_MM_LVDS_CTS, "mm_lvds_cts", "lvds_cts", 17), 838 - GATE_MM1(CLK_MM_SMI_LARB4, "mm_smi_larb4", "mm_sel", 18), 839 - GATE_MM1(CLK_MM_HDMI_HDCP, "mm_hdmi_hdcp", "hdcp_sel", 19), 840 - GATE_MM1(CLK_MM_HDMI_HDCP24M, "mm_hdmi_hdcp24m", "hdcp_24m_sel", 20), 841 - }; 842 - 843 756 static const struct mtk_gate_regs vdec0_cg_regs __initconst = { 844 757 .set_ofs = 0x0000, 845 758 .clr_ofs = 0x0004, ··· 1056 1143 __func__, r); 1057 1144 } 1058 1145 CLK_OF_DECLARE(mtk_imgsys, "mediatek,mt8173-imgsys", mtk_imgsys_init); 1059 - 1060 - static void __init mtk_mmsys_init(struct device_node *node) 1061 - { 1062 - struct clk_onecell_data *clk_data; 1063 - int r; 1064 - 1065 - clk_data = mtk_alloc_clk_data(CLK_MM_NR_CLK); 1066 - 1067 - mtk_clk_register_gates(node, mm_clks, ARRAY_SIZE(mm_clks), 1068 - clk_data); 1069 - 1070 - r = of_clk_add_provider(node, of_clk_src_onecell_get, clk_data); 1071 - if (r) 1072 - pr_err("%s(): could not register clock provider: %d\n", 1073 - __func__, r); 1074 - } 1075 - CLK_OF_DECLARE(mtk_mmsys, "mediatek,mt8173-mmsys", mtk_mmsys_init); 1076 1146 1077 1147 static void __init mtk_vdecsys_init(struct device_node *node) 1078 1148 {
+8
drivers/soc/mediatek/Kconfig
··· 44 44 Say yes here to add support for the MediaTek SCPSYS power domain 45 45 driver. 46 46 47 + config MTK_MMSYS 48 + bool "MediaTek MMSYS Support" 49 + depends on COMMON_CLK_MT8173_MMSYS 50 + default COMMON_CLK_MT8173_MMSYS 51 + help 52 + Say yes here to add support for the MediaTek Multimedia 53 + Subsystem (MMSYS). 54 + 47 55 endmenu
+1
drivers/soc/mediatek/Makefile
··· 3 3 obj-$(CONFIG_MTK_INFRACFG) += mtk-infracfg.o 4 4 obj-$(CONFIG_MTK_PMIC_WRAP) += mtk-pmic-wrap.o 5 5 obj-$(CONFIG_MTK_SCPSYS) += mtk-scpsys.o 6 + obj-$(CONFIG_MTK_MMSYS) += mtk-mmsys.o
+50
drivers/soc/mediatek/mtk-mmsys.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 2 + /* 3 + * Copyright (c) 2014 MediaTek Inc. 4 + * Author: James Liao <jamesjj.liao@mediatek.com> 5 + */ 6 + 7 + #include <linux/clk-provider.h> 8 + #include <linux/of_device.h> 9 + #include <linux/platform_device.h> 10 + 11 + struct mtk_mmsys_driver_data { 12 + const char *clk_driver; 13 + }; 14 + 15 + static const struct mtk_mmsys_driver_data mt8173_mmsys_driver_data = { 16 + .clk_driver = "clk-mt8173-mm", 17 + }; 18 + 19 + static int mtk_mmsys_probe(struct platform_device *pdev) 20 + { 21 + const struct mtk_mmsys_driver_data *data; 22 + struct platform_device *clks; 23 + 24 + data = of_device_get_match_data(&pdev->dev); 25 + 26 + clks = platform_device_register_data(&pdev->dev, data->clk_driver, 27 + PLATFORM_DEVID_AUTO, NULL, 0); 28 + if (IS_ERR(clks)) 29 + return PTR_ERR(clks); 30 + 31 + return 0; 32 + } 33 + 34 + static const struct of_device_id of_match_mtk_mmsys[] = { 35 + { 36 + .compatible = "mediatek,mt8173-mmsys", 37 + .data = &mt8173_mmsys_driver_data, 38 + }, 39 + { } 40 + }; 41 + 42 + static struct platform_driver mtk_mmsys_drv = { 43 + .driver = { 44 + .name = "mtk-mmsys", 45 + .of_match_table = of_match_mtk_mmsys, 46 + }, 47 + .probe = mtk_mmsys_probe, 48 + }; 49 + 50 + builtin_platform_driver(mtk_mmsys_drv);