1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2022 MediaTek Inc.
4 * Author: Garmin Chang <garmin.chang@mediatek.com>
7 #include <dt-bindings/clock/mediatek,mt8188-clk.h>
8 #include <linux/clk-provider.h>
9 #include <linux/platform_device.h>
14 static const struct mtk_gate_regs ccu_cg_regs
= {
20 #define GATE_CCU(_id, _name, _parent, _shift) \
21 GATE_MTK(_id, _name, _parent, &ccu_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
23 static const struct mtk_gate ccu_clks
[] = {
24 GATE_CCU(CLK_CCU_LARB27
, "ccu_larb27", "top_ccu", 0),
25 GATE_CCU(CLK_CCU_AHB
, "ccu_ahb", "top_ccu", 1),
26 GATE_CCU(CLK_CCU_CCU0
, "ccu_ccu0", "top_ccu", 2),
29 static const struct mtk_clk_desc ccu_desc
= {
31 .num_clks
= ARRAY_SIZE(ccu_clks
),
34 static const struct of_device_id of_match_clk_mt8188_ccu
[] = {
35 { .compatible
= "mediatek,mt8188-ccusys", .data
= &ccu_desc
},
38 MODULE_DEVICE_TABLE(of
, of_match_clk_mt8188_ccu
);
40 static struct platform_driver clk_mt8188_ccu_drv
= {
41 .probe
= mtk_clk_simple_probe
,
42 .remove
= mtk_clk_simple_remove
,
44 .name
= "clk-mt8188-ccu",
45 .of_match_table
= of_match_clk_mt8188_ccu
,
48 module_platform_driver(clk_mt8188_ccu_drv
);
50 MODULE_DESCRIPTION("MediaTek MT8188 Camera Control Unit clocks driver");
51 MODULE_LICENSE("GPL");