// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2022 MediaTek Inc. * Author: Chuan-Wen Chen */ #include #include #include #include #include "clk-mtk.h" #include "clk-gate.h" #include #define MT_CCF_BRINGUP 1 /* Regular Number Definition */ #define INV_OFS -1 #define INV_BIT -1 static const struct mtk_gate_regs ipe_cg_regs = { .set_ofs = 0x4, .clr_ofs = 0x8, .sta_ofs = 0x0, }; #define GATE_IPE(_id, _name, _parent, _shift) { \ .id = _id, \ .name = _name, \ .parent_name = _parent, \ .regs = &ipe_cg_regs, \ .shift = _shift, \ .ops = &mtk_clk_gate_ops_setclr, \ } static const struct mtk_gate ipe_clks[] = { GATE_IPE(CLK_IPE_LARB19, "ipe_larb19", "ipe_ck"/* parent */, 0), GATE_IPE(CLK_IPE_LARB20, "ipe_larb20", "ipe_ck"/* parent */, 1), GATE_IPE(CLK_IPE_SMI_SUBCOM, "ipe_smi_subcom", "ipe_ck"/* parent */, 2), GATE_IPE(CLK_IPE_FD, "ipe_fd", "ipe_ck"/* parent */, 3), GATE_IPE(CLK_IPE_FE, "ipe_fe", "ipe_ck"/* parent */, 4), GATE_IPE(CLK_IPE_RSC, "ipe_rsc", "ipe_ck"/* parent */, 5), GATE_IPE(CLK_IPE_GALS, "ipe_gals", "ipe_ck"/* parent */, 8), }; static const struct mtk_clk_desc ipe_mcd = { .clks = ipe_clks, .num_clks = CLK_IPE_NR_CLK, }; static const struct of_device_id of_match_clk_mt6835_img[] = { { .compatible = "mediatek,mt6835-ipesys", .data = &ipe_mcd, }, { /* sentinel */ } }; static int clk_mt6835_img_grp_probe(struct platform_device *pdev) { int r; #if MT_CCF_BRINGUP pr_notice("%s: %s init begin\n", __func__, pdev->name); #endif r = mtk_clk_simple_probe(pdev); if (r) dev_err(&pdev->dev, "could not register clock provider: %s: %d\n", pdev->name, r); #if MT_CCF_BRINGUP pr_notice("%s: %s init end\n", __func__, pdev->name); #endif return r; } static struct platform_driver clk_mt6835_img_drv = { .probe = clk_mt6835_img_grp_probe, .driver = { .name = "clk-mt6835-img", .of_match_table = of_match_clk_mt6835_img, }, }; module_platform_driver(clk_mt6835_img_drv); MODULE_LICENSE("GPL");