Skip to content

Commit 1303270

Browse files
committed
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 <[email protected]> Signed-off-by: Enric Balletbo i Serra <[email protected]> Reviewed-by: CK Hu <[email protected]> Reviewed-by: Stephen Boyd <[email protected]> Signed-off-by: Matthias Brugger <[email protected]>
1 parent 1a680aa commit 1303270

File tree

7 files changed

+213
-104
lines changed

7 files changed

+213
-104
lines changed

drivers/clk/mediatek/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,13 @@ config COMMON_CLK_MT8173
274274
---help---
275275
This driver supports MediaTek MT8173 clocks.
276276

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+
277284
config COMMON_CLK_MT8183
278285
bool "Clock driver for MediaTek MT8183"
279286
depends on (ARCH_MEDIATEK && ARM64) || COMPILE_TEST

drivers/clk/mediatek/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ obj-$(CONFIG_COMMON_CLK_MT7629_ETHSYS) += clk-mt7629-eth.o
4141
obj-$(CONFIG_COMMON_CLK_MT7629_HIFSYS) += clk-mt7629-hif.o
4242
obj-$(CONFIG_COMMON_CLK_MT8135) += clk-mt8135.o
4343
obj-$(CONFIG_COMMON_CLK_MT8173) += clk-mt8173.o
44+
obj-$(CONFIG_COMMON_CLK_MT8173_MMSYS) += clk-mt8173-mm.o
4445
obj-$(CONFIG_COMMON_CLK_MT8183) += clk-mt8183.o
4546
obj-$(CONFIG_COMMON_CLK_MT8183_AUDIOSYS) += clk-mt8183-audio.o
4647
obj-$(CONFIG_COMMON_CLK_MT8183_CAMSYS) += clk-mt8183-cam.o

drivers/clk/mediatek/clk-mt8173-mm.c

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
// SPDX-License-Identifier: GPL-2.0-only
2+
/*
3+
* Copyright (c) 2014 MediaTek Inc.
4+
* Author: James Liao <[email protected]>
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);

drivers/clk/mediatek/clk-mt8173.c

Lines changed: 0 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -753,93 +753,6 @@ static const struct mtk_gate img_clks[] __initconst = {
753753
GATE_IMG(CLK_IMG_FD, "img_fd", "mm_sel", 11),
754754
};
755755

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-
843756
static const struct mtk_gate_regs vdec0_cg_regs __initconst = {
844757
.set_ofs = 0x0000,
845758
.clr_ofs = 0x0004,
@@ -1144,23 +1057,6 @@ static void __init mtk_imgsys_init(struct device_node *node)
11441057
}
11451058
CLK_OF_DECLARE(mtk_imgsys, "mediatek,mt8173-imgsys", mtk_imgsys_init);
11461059

1147-
static void __init mtk_mmsys_init(struct device_node *node)
1148-
{
1149-
struct clk_onecell_data *clk_data;
1150-
int r;
1151-
1152-
clk_data = mtk_alloc_clk_data(CLK_MM_NR_CLK);
1153-
1154-
mtk_clk_register_gates(node, mm_clks, ARRAY_SIZE(mm_clks),
1155-
clk_data);
1156-
1157-
r = of_clk_add_provider(node, of_clk_src_onecell_get, clk_data);
1158-
if (r)
1159-
pr_err("%s(): could not register clock provider: %d\n",
1160-
__func__, r);
1161-
}
1162-
CLK_OF_DECLARE(mtk_mmsys, "mediatek,mt8173-mmsys", mtk_mmsys_init);
1163-
11641060
static void __init mtk_vdecsys_init(struct device_node *node)
11651061
{
11661062
struct clk_onecell_data *clk_data;

drivers/soc/mediatek/Kconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,12 @@ config MTK_SCPSYS
4444
Say yes here to add support for the MediaTek SCPSYS power domain
4545
driver.
4646

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+
4755
endmenu

drivers/soc/mediatek/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ obj-$(CONFIG_MTK_CMDQ) += mtk-cmdq-helper.o
33
obj-$(CONFIG_MTK_INFRACFG) += mtk-infracfg.o
44
obj-$(CONFIG_MTK_PMIC_WRAP) += mtk-pmic-wrap.o
55
obj-$(CONFIG_MTK_SCPSYS) += mtk-scpsys.o
6+
obj-$(CONFIG_MTK_MMSYS) += mtk-mmsys.o

drivers/soc/mediatek/mtk-mmsys.c

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// SPDX-License-Identifier: GPL-2.0-only
2+
/*
3+
* Copyright (c) 2014 MediaTek Inc.
4+
* Author: James Liao <[email protected]>
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);

0 commit comments

Comments
 (0)