// 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 afe0_cg_regs = { .set_ofs = 0x0, .clr_ofs = 0x0, .sta_ofs = 0x0, }; static const struct mtk_gate_regs afe1_cg_regs = { .set_ofs = 0x4, .clr_ofs = 0x4, .sta_ofs = 0x4, }; static const struct mtk_gate_regs afe2_cg_regs = { .set_ofs = 0x8, .clr_ofs = 0x8, .sta_ofs = 0x8, }; #define GATE_AFE0(_id, _name, _parent, _shift) { \ .id = _id, \ .name = _name, \ .parent_name = _parent, \ .regs = &afe0_cg_regs, \ .shift = _shift, \ .ops = &mtk_clk_gate_ops_no_setclr, \ } #define GATE_AFE1(_id, _name, _parent, _shift) { \ .id = _id, \ .name = _name, \ .parent_name = _parent, \ .regs = &afe1_cg_regs, \ .shift = _shift, \ .ops = &mtk_clk_gate_ops_no_setclr, \ } #define GATE_AFE2(_id, _name, _parent, _shift) { \ .id = _id, \ .name = _name, \ .parent_name = _parent, \ .regs = &afe2_cg_regs, \ .shift = _shift, \ .ops = &mtk_clk_gate_ops_no_setclr, \ } static const struct mtk_gate afe_clks[] = { /* AFE0 */ GATE_AFE0(CLK_AFE_AFE, "afe_afe", "audio_ck"/* parent */, 2), GATE_AFE0(CLK_AFE_22M, "afe_22m", "aud_engen1_ck"/* parent */, 8), GATE_AFE0(CLK_AFE_24M, "afe_24m", "aud_engen2_ck"/* parent */, 9), GATE_AFE0(CLK_AFE_APLL2_TUNER, "afe_apll2_tuner", "aud_engen2_ck"/* parent */, 18), GATE_AFE0(CLK_AFE_APLL_TUNER, "afe_apll_tuner", "aud_engen1_ck"/* parent */, 19), GATE_AFE0(CLK_AFE_ADC, "afe_adc", "audio_ck"/* parent */, 24), GATE_AFE0(CLK_AFE_DAC, "afe_dac", "audio_ck"/* parent */, 25), GATE_AFE0(CLK_AFE_DAC_PREDIS, "afe_dac_predis", "audio_ck"/* parent */, 26), GATE_AFE0(CLK_AFE_TML, "afe_tml", "audio_ck"/* parent */, 27), GATE_AFE0(CLK_AFE_NLE, "afe_nle", "audio_ck"/* parent */, 28), /* AFE1 */ GATE_AFE1(CLK_AFE_GENERAL3_ASRC, "afe_general3_asrc", "audio_ck"/* parent */, 11), GATE_AFE1(CLK_AFE_CONNSYS_I2S_ASRC, "afe_connsys_i2s_asrc", "audio_ck"/* parent */, 12), GATE_AFE1(CLK_AFE_GENERAL1_ASRC, "afe_general1_asrc", "audio_ck"/* parent */, 13), GATE_AFE1(CLK_AFE_GENERAL2_ASRC, "afe_general2_asrc", "audio_ck"/* parent */, 14), GATE_AFE1(CLK_AFE_DAC_HIRES, "afe_dac_hires", "audio_h_ck"/* parent */, 15), GATE_AFE1(CLK_AFE_ADC_HIRES, "afe_adc_hires", "audio_h_ck"/* parent */, 16), GATE_AFE1(CLK_AFE_ADC_HIRES_TML, "afe_adc_hires_tml", "audio_h_ck"/* parent */, 17), /* AFE2 */ GATE_AFE2(CLK_AFE_I2S5_BCLK, "afe_i2s5_bclk", "audio_ck"/* parent */, 0), GATE_AFE2(CLK_AFE_I2S1_BCLK, "afe_i2s1_bclk", "audio_ck"/* parent */, 7), GATE_AFE2(CLK_AFE_I2S2_BCLK, "afe_i2s2_bclk", "audio_ck"/* parent */, 8), GATE_AFE2(CLK_AFE_I2S3_BCLK, "afe_i2s3_bclk", "audio_ck"/* parent */, 9), GATE_AFE2(CLK_AFE_I2S4_BCLK, "afe_i2s4_bclk", "audio_ck"/* parent */, 10), }; static const struct mtk_clk_desc afe_mcd = { .clks = afe_clks, .num_clks = CLK_AFE_NR_CLK, }; static const struct of_device_id of_match_clk_mt6835_adsp[] = { { .compatible = "mediatek,mt6835-afe", .data = &afe_mcd, }, { /* sentinel */ } }; static int clk_mt6835_adsp_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_adsp_drv = { .probe = clk_mt6835_adsp_grp_probe, .driver = { .name = "clk-mt6835-adsp", .of_match_table = of_match_clk_mt6835_adsp, }, }; module_platform_driver(clk_mt6835_adsp_drv); MODULE_LICENSE("GPL");