2 * Copyright (c) 2014 MediaTek Inc.
3 * Author: Shunli Wang <shunli.wang@mediatek.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/clk-provider.h>
17 #include <linux/of_address.h>
18 #include <linux/of_device.h>
19 #include <linux/platform_device.h>
23 #include "clk-cpumux.h"
25 #include <dt-bindings/clock/mt2701-clk.h>
28 * For some clocks, we don't care what their actual rates are. And these
29 * clocks may change their rate on different products or different scenarios.
30 * So we model these clocks' rate as 0, to denote it's not an actual rate.
34 static DEFINE_SPINLOCK(mt2701_clk_lock
);
36 static const struct mtk_fixed_clk top_fixed_clks
[] = {
37 FIXED_CLK(CLK_TOP_DPI
, "dpi_ck", "clk26m",
39 FIXED_CLK(CLK_TOP_DMPLL
, "dmpll_ck", "clk26m",
41 FIXED_CLK(CLK_TOP_VENCPLL
, "vencpll_ck", "clk26m",
43 FIXED_CLK(CLK_TOP_HDMI_0_PIX340M
, "hdmi_0_pix340m", "clk26m",
45 FIXED_CLK(CLK_TOP_HDMI_0_DEEP340M
, "hdmi_0_deep340m", "clk26m",
47 FIXED_CLK(CLK_TOP_HDMI_0_PLL340M
, "hdmi_0_pll340m", "clk26m",
49 FIXED_CLK(CLK_TOP_HADDS2_FB
, "hadds2_fbclk", "clk26m",
51 FIXED_CLK(CLK_TOP_WBG_DIG_416M
, "wbg_dig_ck_416m", "clk26m",
53 FIXED_CLK(CLK_TOP_DSI0_LNTC_DSI
, "dsi0_lntc_dsi", "clk26m",
55 FIXED_CLK(CLK_TOP_HDMI_SCL_RX
, "hdmi_scl_rx", "clk26m",
57 FIXED_CLK(CLK_TOP_AUD_EXT1
, "aud_ext1", "clk26m",
59 FIXED_CLK(CLK_TOP_AUD_EXT2
, "aud_ext2", "clk26m",
61 FIXED_CLK(CLK_TOP_NFI1X_PAD
, "nfi1x_pad", "clk26m",
65 static const struct mtk_fixed_factor top_fixed_divs
[] = {
66 FACTOR(CLK_TOP_SYSPLL
, "syspll_ck", "mainpll", 1, 1),
67 FACTOR(CLK_TOP_SYSPLL_D2
, "syspll_d2", "mainpll", 1, 2),
68 FACTOR(CLK_TOP_SYSPLL_D3
, "syspll_d3", "mainpll", 1, 3),
69 FACTOR(CLK_TOP_SYSPLL_D5
, "syspll_d5", "mainpll", 1, 5),
70 FACTOR(CLK_TOP_SYSPLL_D7
, "syspll_d7", "mainpll", 1, 7),
71 FACTOR(CLK_TOP_SYSPLL1_D2
, "syspll1_d2", "syspll_d2", 1, 2),
72 FACTOR(CLK_TOP_SYSPLL1_D4
, "syspll1_d4", "syspll_d2", 1, 4),
73 FACTOR(CLK_TOP_SYSPLL1_D8
, "syspll1_d8", "syspll_d2", 1, 8),
74 FACTOR(CLK_TOP_SYSPLL1_D16
, "syspll1_d16", "syspll_d2", 1, 16),
75 FACTOR(CLK_TOP_SYSPLL2_D2
, "syspll2_d2", "syspll_d3", 1, 2),
76 FACTOR(CLK_TOP_SYSPLL2_D4
, "syspll2_d4", "syspll_d3", 1, 4),
77 FACTOR(CLK_TOP_SYSPLL2_D8
, "syspll2_d8", "syspll_d3", 1, 8),
78 FACTOR(CLK_TOP_SYSPLL3_D2
, "syspll3_d2", "syspll_d5", 1, 2),
79 FACTOR(CLK_TOP_SYSPLL3_D4
, "syspll3_d4", "syspll_d5", 1, 4),
80 FACTOR(CLK_TOP_SYSPLL4_D2
, "syspll4_d2", "syspll_d7", 1, 2),
81 FACTOR(CLK_TOP_SYSPLL4_D4
, "syspll4_d4", "syspll_d7", 1, 4),
83 FACTOR(CLK_TOP_UNIVPLL
, "univpll_ck", "univpll", 1, 1),
84 FACTOR(CLK_TOP_UNIVPLL_D2
, "univpll_d2", "univpll", 1, 2),
85 FACTOR(CLK_TOP_UNIVPLL_D3
, "univpll_d3", "univpll", 1, 3),
86 FACTOR(CLK_TOP_UNIVPLL_D5
, "univpll_d5", "univpll", 1, 5),
87 FACTOR(CLK_TOP_UNIVPLL_D7
, "univpll_d7", "univpll", 1, 7),
88 FACTOR(CLK_TOP_UNIVPLL_D26
, "univpll_d26", "univpll", 1, 26),
89 FACTOR(CLK_TOP_UNIVPLL_D52
, "univpll_d52", "univpll", 1, 52),
90 FACTOR(CLK_TOP_UNIVPLL_D108
, "univpll_d108", "univpll", 1, 108),
91 FACTOR(CLK_TOP_USB_PHY48M
, "usb_phy48m_ck", "univpll", 1, 26),
92 FACTOR(CLK_TOP_UNIVPLL1_D2
, "univpll1_d2", "univpll_d2", 1, 2),
93 FACTOR(CLK_TOP_UNIVPLL1_D4
, "univpll1_d4", "univpll_d2", 1, 4),
94 FACTOR(CLK_TOP_UNIVPLL1_D8
, "univpll1_d8", "univpll_d2", 1, 8),
95 FACTOR(CLK_TOP_8BDAC
, "8bdac_ck", "univpll_d2", 1, 1),
96 FACTOR(CLK_TOP_UNIVPLL2_D2
, "univpll2_d2", "univpll_d3", 1, 2),
97 FACTOR(CLK_TOP_UNIVPLL2_D4
, "univpll2_d4", "univpll_d3", 1, 4),
98 FACTOR(CLK_TOP_UNIVPLL2_D8
, "univpll2_d8", "univpll_d3", 1, 8),
99 FACTOR(CLK_TOP_UNIVPLL2_D16
, "univpll2_d16", "univpll_d3", 1, 16),
100 FACTOR(CLK_TOP_UNIVPLL2_D32
, "univpll2_d32", "univpll_d3", 1, 32),
101 FACTOR(CLK_TOP_UNIVPLL3_D2
, "univpll3_d2", "univpll_d5", 1, 2),
102 FACTOR(CLK_TOP_UNIVPLL3_D4
, "univpll3_d4", "univpll_d5", 1, 4),
103 FACTOR(CLK_TOP_UNIVPLL3_D8
, "univpll3_d8", "univpll_d5", 1, 8),
105 FACTOR(CLK_TOP_MSDCPLL
, "msdcpll_ck", "msdcpll", 1, 1),
106 FACTOR(CLK_TOP_MSDCPLL_D2
, "msdcpll_d2", "msdcpll", 1, 2),
107 FACTOR(CLK_TOP_MSDCPLL_D4
, "msdcpll_d4", "msdcpll", 1, 4),
108 FACTOR(CLK_TOP_MSDCPLL_D8
, "msdcpll_d8", "msdcpll", 1, 8),
110 FACTOR(CLK_TOP_MMPLL
, "mmpll_ck", "mmpll", 1, 1),
111 FACTOR(CLK_TOP_MMPLL_D2
, "mmpll_d2", "mmpll", 1, 2),
113 FACTOR(CLK_TOP_DMPLL_D2
, "dmpll_d2", "dmpll_ck", 1, 2),
114 FACTOR(CLK_TOP_DMPLL_D4
, "dmpll_d4", "dmpll_ck", 1, 4),
115 FACTOR(CLK_TOP_DMPLL_X2
, "dmpll_x2", "dmpll_ck", 1, 1),
117 FACTOR(CLK_TOP_TVDPLL
, "tvdpll_ck", "tvdpll", 1, 1),
118 FACTOR(CLK_TOP_TVDPLL_D2
, "tvdpll_d2", "tvdpll", 1, 2),
119 FACTOR(CLK_TOP_TVDPLL_D4
, "tvdpll_d4", "tvdpll", 1, 4),
121 FACTOR(CLK_TOP_VDECPLL
, "vdecpll_ck", "vdecpll", 1, 1),
122 FACTOR(CLK_TOP_TVD2PLL
, "tvd2pll_ck", "tvd2pll", 1, 1),
123 FACTOR(CLK_TOP_TVD2PLL_D2
, "tvd2pll_d2", "tvd2pll", 1, 2),
125 FACTOR(CLK_TOP_MIPIPLL
, "mipipll", "dpi_ck", 1, 1),
126 FACTOR(CLK_TOP_MIPIPLL_D2
, "mipipll_d2", "dpi_ck", 1, 2),
127 FACTOR(CLK_TOP_MIPIPLL_D4
, "mipipll_d4", "dpi_ck", 1, 4),
129 FACTOR(CLK_TOP_HDMIPLL
, "hdmipll_ck", "hdmitx_dig_cts", 1, 1),
130 FACTOR(CLK_TOP_HDMIPLL_D2
, "hdmipll_d2", "hdmitx_dig_cts", 1, 2),
131 FACTOR(CLK_TOP_HDMIPLL_D3
, "hdmipll_d3", "hdmitx_dig_cts", 1, 3),
133 FACTOR(CLK_TOP_ARMPLL_1P3G
, "armpll_1p3g_ck", "armpll", 1, 1),
135 FACTOR(CLK_TOP_AUDPLL
, "audpll", "audpll_sel", 1, 1),
136 FACTOR(CLK_TOP_AUDPLL_D4
, "audpll_d4", "audpll_sel", 1, 4),
137 FACTOR(CLK_TOP_AUDPLL_D8
, "audpll_d8", "audpll_sel", 1, 8),
138 FACTOR(CLK_TOP_AUDPLL_D16
, "audpll_d16", "audpll_sel", 1, 16),
139 FACTOR(CLK_TOP_AUDPLL_D24
, "audpll_d24", "audpll_sel", 1, 24),
141 FACTOR(CLK_TOP_AUD1PLL_98M
, "aud1pll_98m_ck", "aud1pll", 1, 3),
142 FACTOR(CLK_TOP_AUD2PLL_90M
, "aud2pll_90m_ck", "aud2pll", 1, 3),
143 FACTOR(CLK_TOP_HADDS2PLL_98M
, "hadds2pll_98m", "hadds2pll", 1, 3),
144 FACTOR(CLK_TOP_HADDS2PLL_294M
, "hadds2pll_294m", "hadds2pll", 1, 1),
145 FACTOR(CLK_TOP_ETHPLL_500M
, "ethpll_500m_ck", "ethpll", 1, 1),
146 FACTOR(CLK_TOP_CLK26M_D8
, "clk26m_d8", "clk26m", 1, 8),
147 FACTOR(CLK_TOP_32K_INTERNAL
, "32k_internal", "clk26m", 1, 793),
148 FACTOR(CLK_TOP_32K_EXTERNAL
, "32k_external", "rtc32k", 1, 1),
149 FACTOR(CLK_TOP_AXISEL_D4
, "axisel_d4", "axi_sel", 1, 4),
152 static const char * const axi_parents
[] = {
163 static const char * const mem_parents
[] = {
168 static const char * const ddrphycfg_parents
[] = {
173 static const char * const mm_parents
[] = {
184 static const char * const pwm_parents
[] = {
191 static const char * const vdec_parents
[] = {
203 static const char * const mfg_parents
[] = {
214 static const char * const camtg_parents
[] = {
224 static const char * const uart_parents
[] = {
229 static const char * const spi_parents
[] = {
237 static const char * const usb20_parents
[] = {
243 static const char * const msdc30_parents
[] = {
252 static const char * const audio_parents
[] = {
257 static const char * const aud_intbus_parents
[] = {
266 static const char * const pmicspi_parents
[] = {
280 static const char * const scp_parents
[] = {
287 static const char * const dpi0_parents
[] = {
298 static const char * const dpi1_parents
[] = {
305 static const char * const tve_parents
[] = {
316 static const char * const hdmi_parents
[] = {
323 static const char * const apll_parents
[] = {
334 static const char * const rtc_parents
[] = {
341 static const char * const nfi2x_parents
[] = {
352 static const char * const emmc_hclk_parents
[] = {
359 static const char * const flash_parents
[] = {
370 static const char * const di_parents
[] = {
377 static const char * const nr_osd_parents
[] = {
388 static const char * const hdmirx_bist_parents
[] = {
399 static const char * const intdir_parents
[] = {
406 static const char * const asm_parents
[] = {
413 static const char * const ms_card_parents
[] = {
419 static const char * const ethif_parents
[] = {
430 static const char * const hdmirx_parents
[] = {
435 static const char * const cmsys_parents
[] = {
453 static const char * const clk_8bdac_parents
[] = {
460 static const char * const aud2dvd_parents
[] = {
465 static const char * const padmclk_parents
[] = {
475 static const char * const aud_mux_parents
[] = {
484 static const char * const aud_src_parents
[] = {
489 static const char * const cpu_parents
[] = {
496 static const struct mtk_composite cpu_muxes
[] __initconst
= {
497 MUX(CLK_INFRA_CPUSEL
, "infra_cpu_sel", cpu_parents
, 0x0000, 2, 2),
500 static const struct mtk_composite top_muxes
[] = {
501 MUX_GATE_FLAGS(CLK_TOP_AXI_SEL
, "axi_sel", axi_parents
,
502 0x0040, 0, 3, 7, CLK_IS_CRITICAL
),
503 MUX_GATE_FLAGS(CLK_TOP_MEM_SEL
, "mem_sel", mem_parents
,
504 0x0040, 8, 1, 15, CLK_IS_CRITICAL
),
505 MUX_GATE_FLAGS(CLK_TOP_DDRPHYCFG_SEL
, "ddrphycfg_sel",
506 ddrphycfg_parents
, 0x0040, 16, 1, 23, CLK_IS_CRITICAL
),
507 MUX_GATE(CLK_TOP_MM_SEL
, "mm_sel", mm_parents
,
510 MUX_GATE(CLK_TOP_PWM_SEL
, "pwm_sel", pwm_parents
,
512 MUX_GATE(CLK_TOP_VDEC_SEL
, "vdec_sel", vdec_parents
,
514 MUX_GATE(CLK_TOP_MFG_SEL
, "mfg_sel", mfg_parents
,
516 MUX_GATE(CLK_TOP_CAMTG_SEL
, "camtg_sel", camtg_parents
,
518 MUX_GATE(CLK_TOP_UART_SEL
, "uart_sel", uart_parents
,
521 MUX_GATE(CLK_TOP_SPI0_SEL
, "spi0_sel", spi_parents
,
523 MUX_GATE(CLK_TOP_USB20_SEL
, "usb20_sel", usb20_parents
,
525 MUX_GATE(CLK_TOP_MSDC30_0_SEL
, "msdc30_0_sel", msdc30_parents
,
528 MUX_GATE(CLK_TOP_MSDC30_1_SEL
, "msdc30_1_sel", msdc30_parents
,
530 MUX_GATE(CLK_TOP_MSDC30_2_SEL
, "msdc30_2_sel", msdc30_parents
,
532 MUX_GATE(CLK_TOP_AUDIO_SEL
, "audio_sel", msdc30_parents
,
534 MUX_GATE(CLK_TOP_AUDINTBUS_SEL
, "aud_intbus_sel", aud_intbus_parents
,
537 MUX_GATE(CLK_TOP_PMICSPI_SEL
, "pmicspi_sel", pmicspi_parents
,
539 MUX_GATE(CLK_TOP_SCP_SEL
, "scp_sel", scp_parents
,
541 MUX_GATE(CLK_TOP_DPI0_SEL
, "dpi0_sel", dpi0_parents
,
543 MUX_GATE(CLK_TOP_DPI1_SEL
, "dpi1_sel", dpi1_parents
,
546 MUX_GATE(CLK_TOP_TVE_SEL
, "tve_sel", tve_parents
,
548 MUX_GATE(CLK_TOP_HDMI_SEL
, "hdmi_sel", hdmi_parents
,
550 MUX_GATE(CLK_TOP_APLL_SEL
, "apll_sel", apll_parents
,
553 MUX_GATE_FLAGS(CLK_TOP_RTC_SEL
, "rtc_sel", rtc_parents
,
554 0x00A0, 0, 2, 7, CLK_IS_CRITICAL
),
555 MUX_GATE(CLK_TOP_NFI2X_SEL
, "nfi2x_sel", nfi2x_parents
,
557 MUX_GATE(CLK_TOP_EMMC_HCLK_SEL
, "emmc_hclk_sel", emmc_hclk_parents
,
560 MUX_GATE(CLK_TOP_FLASH_SEL
, "flash_sel", flash_parents
,
562 MUX_GATE(CLK_TOP_DI_SEL
, "di_sel", di_parents
,
564 MUX_GATE(CLK_TOP_NR_SEL
, "nr_sel", nr_osd_parents
,
566 MUX_GATE(CLK_TOP_OSD_SEL
, "osd_sel", nr_osd_parents
,
569 MUX_GATE(CLK_TOP_HDMIRX_BIST_SEL
, "hdmirx_bist_sel",
570 hdmirx_bist_parents
, 0x00C0, 0, 3, 7),
571 MUX_GATE(CLK_TOP_INTDIR_SEL
, "intdir_sel", intdir_parents
,
573 MUX_GATE(CLK_TOP_ASM_I_SEL
, "asm_i_sel", asm_parents
,
575 MUX_GATE(CLK_TOP_ASM_M_SEL
, "asm_m_sel", asm_parents
,
578 MUX_GATE(CLK_TOP_ASM_H_SEL
, "asm_h_sel", asm_parents
,
580 MUX_GATE(CLK_TOP_MS_CARD_SEL
, "ms_card_sel", ms_card_parents
,
582 MUX_GATE(CLK_TOP_ETHIF_SEL
, "ethif_sel", ethif_parents
,
585 MUX_GATE(CLK_TOP_HDMIRX26_24_SEL
, "hdmirx26_24_sel", hdmirx_parents
,
587 MUX_GATE(CLK_TOP_MSDC30_3_SEL
, "msdc30_3_sel", msdc30_parents
,
589 MUX_GATE(CLK_TOP_CMSYS_SEL
, "cmsys_sel", cmsys_parents
,
592 MUX_GATE(CLK_TOP_SPI1_SEL
, "spi2_sel", spi_parents
,
594 MUX_GATE(CLK_TOP_SPI2_SEL
, "spi1_sel", spi_parents
,
596 MUX_GATE(CLK_TOP_8BDAC_SEL
, "8bdac_sel", clk_8bdac_parents
,
598 MUX_GATE(CLK_TOP_AUD2DVD_SEL
, "aud2dvd_sel", aud2dvd_parents
,
601 MUX(CLK_TOP_PADMCLK_SEL
, "padmclk_sel", padmclk_parents
,
604 MUX(CLK_TOP_AUD_MUX1_SEL
, "aud_mux1_sel", aud_mux_parents
,
606 MUX(CLK_TOP_AUD_MUX2_SEL
, "aud_mux2_sel", aud_mux_parents
,
608 MUX(CLK_TOP_AUDPLL_MUX_SEL
, "audpll_sel", aud_mux_parents
,
610 MUX_GATE(CLK_TOP_AUD_K1_SRC_SEL
, "aud_k1_src_sel", aud_src_parents
,
612 MUX_GATE(CLK_TOP_AUD_K2_SRC_SEL
, "aud_k2_src_sel", aud_src_parents
,
614 MUX_GATE(CLK_TOP_AUD_K3_SRC_SEL
, "aud_k3_src_sel", aud_src_parents
,
616 MUX_GATE(CLK_TOP_AUD_K4_SRC_SEL
, "aud_k4_src_sel", aud_src_parents
,
618 MUX_GATE(CLK_TOP_AUD_K5_SRC_SEL
, "aud_k5_src_sel", aud_src_parents
,
620 MUX_GATE(CLK_TOP_AUD_K6_SRC_SEL
, "aud_k6_src_sel", aud_src_parents
,
624 static const struct mtk_clk_divider top_adj_divs
[] = {
625 DIV_ADJ(CLK_TOP_AUD_EXTCK1_DIV
, "audio_ext1_ck", "aud_ext1",
627 DIV_ADJ(CLK_TOP_AUD_EXTCK2_DIV
, "audio_ext2_ck", "aud_ext2",
629 DIV_ADJ(CLK_TOP_AUD_MUX1_DIV
, "aud_mux1_div", "aud_mux1_sel",
631 DIV_ADJ(CLK_TOP_AUD_MUX2_DIV
, "aud_mux2_div", "aud_mux2_sel",
633 DIV_ADJ(CLK_TOP_AUD_K1_SRC_DIV
, "aud_k1_src_div", "aud_k1_src_sel",
635 DIV_ADJ(CLK_TOP_AUD_K2_SRC_DIV
, "aud_k2_src_div", "aud_k2_src_sel",
637 DIV_ADJ(CLK_TOP_AUD_K3_SRC_DIV
, "aud_k3_src_div", "aud_k3_src_sel",
639 DIV_ADJ(CLK_TOP_AUD_K4_SRC_DIV
, "aud_k4_src_div", "aud_k4_src_sel",
641 DIV_ADJ(CLK_TOP_AUD_K5_SRC_DIV
, "aud_k5_src_div", "aud_k5_src_sel",
643 DIV_ADJ(CLK_TOP_AUD_K6_SRC_DIV
, "aud_k6_src_div", "aud_k6_src_sel",
647 static const struct mtk_gate_regs top_aud_cg_regs
= {
651 #define GATE_TOP_AUD(_id, _name, _parent, _shift) { \
654 .parent_name = _parent, \
655 .regs = &top_aud_cg_regs, \
657 .ops = &mtk_clk_gate_ops_no_setclr, \
660 static const struct mtk_gate top_clks
[] = {
661 GATE_TOP_AUD(CLK_TOP_AUD_48K_TIMING
, "a1sys_hp_ck", "aud_mux1_div",
663 GATE_TOP_AUD(CLK_TOP_AUD_44K_TIMING
, "a2sys_hp_ck", "aud_mux2_div",
665 GATE_TOP_AUD(CLK_TOP_AUD_I2S1_MCLK
, "aud_i2s1_mclk", "aud_k1_src_div",
667 GATE_TOP_AUD(CLK_TOP_AUD_I2S2_MCLK
, "aud_i2s2_mclk", "aud_k2_src_div",
669 GATE_TOP_AUD(CLK_TOP_AUD_I2S3_MCLK
, "aud_i2s3_mclk", "aud_k3_src_div",
671 GATE_TOP_AUD(CLK_TOP_AUD_I2S4_MCLK
, "aud_i2s4_mclk", "aud_k4_src_div",
673 GATE_TOP_AUD(CLK_TOP_AUD_I2S5_MCLK
, "aud_i2s5_mclk", "aud_k5_src_div",
675 GATE_TOP_AUD(CLK_TOP_AUD_I2S6_MCLK
, "aud_i2s6_mclk", "aud_k6_src_div",
679 static int mtk_topckgen_init(struct platform_device
*pdev
)
681 struct clk_onecell_data
*clk_data
;
683 struct device_node
*node
= pdev
->dev
.of_node
;
684 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
686 base
= devm_ioremap_resource(&pdev
->dev
, res
);
688 return PTR_ERR(base
);
690 clk_data
= mtk_alloc_clk_data(CLK_TOP_NR
);
692 mtk_clk_register_fixed_clks(top_fixed_clks
, ARRAY_SIZE(top_fixed_clks
),
695 mtk_clk_register_factors(top_fixed_divs
, ARRAY_SIZE(top_fixed_divs
),
698 mtk_clk_register_composites(top_muxes
, ARRAY_SIZE(top_muxes
),
699 base
, &mt2701_clk_lock
, clk_data
);
701 mtk_clk_register_dividers(top_adj_divs
, ARRAY_SIZE(top_adj_divs
),
702 base
, &mt2701_clk_lock
, clk_data
);
704 mtk_clk_register_gates(node
, top_clks
, ARRAY_SIZE(top_clks
),
707 return of_clk_add_provider(node
, of_clk_src_onecell_get
, clk_data
);
710 static const struct mtk_gate_regs infra_cg_regs
= {
716 #define GATE_ICG(_id, _name, _parent, _shift) { \
719 .parent_name = _parent, \
720 .regs = &infra_cg_regs, \
722 .ops = &mtk_clk_gate_ops_setclr, \
725 static const struct mtk_gate infra_clks
[] = {
726 GATE_ICG(CLK_INFRA_DBG
, "dbgclk", "axi_sel", 0),
727 GATE_ICG(CLK_INFRA_SMI
, "smi_ck", "mm_sel", 1),
728 GATE_ICG(CLK_INFRA_QAXI_CM4
, "cm4_ck", "axi_sel", 2),
729 GATE_ICG(CLK_INFRA_AUD_SPLIN_B
, "audio_splin_bck", "hadds2pll_294m", 4),
730 GATE_ICG(CLK_INFRA_AUDIO
, "audio_ck", "clk26m", 5),
731 GATE_ICG(CLK_INFRA_EFUSE
, "efuse_ck", "clk26m", 6),
732 GATE_ICG(CLK_INFRA_L2C_SRAM
, "l2c_sram_ck", "mm_sel", 7),
733 GATE_ICG(CLK_INFRA_M4U
, "m4u_ck", "mem_sel", 8),
734 GATE_ICG(CLK_INFRA_CONNMCU
, "connsys_bus", "wbg_dig_ck_416m", 12),
735 GATE_ICG(CLK_INFRA_TRNG
, "trng_ck", "axi_sel", 13),
736 GATE_ICG(CLK_INFRA_RAMBUFIF
, "rambufif_ck", "mem_sel", 14),
737 GATE_ICG(CLK_INFRA_CPUM
, "cpum_ck", "mem_sel", 15),
738 GATE_ICG(CLK_INFRA_KP
, "kp_ck", "axi_sel", 16),
739 GATE_ICG(CLK_INFRA_CEC
, "cec_ck", "rtc_sel", 18),
740 GATE_ICG(CLK_INFRA_IRRX
, "irrx_ck", "axi_sel", 19),
741 GATE_ICG(CLK_INFRA_PMICSPI
, "pmicspi_ck", "pmicspi_sel", 22),
742 GATE_ICG(CLK_INFRA_PMICWRAP
, "pmicwrap_ck", "axi_sel", 23),
743 GATE_ICG(CLK_INFRA_DDCCI
, "ddcci_ck", "axi_sel", 24),
746 static const struct mtk_fixed_factor infra_fixed_divs
[] = {
747 FACTOR(CLK_INFRA_CLK_13M
, "clk13m", "clk26m", 1, 2),
750 static struct clk_onecell_data
*infra_clk_data
;
752 static void __init
mtk_infrasys_init_early(struct device_node
*node
)
756 if (!infra_clk_data
) {
757 infra_clk_data
= mtk_alloc_clk_data(CLK_INFRA_NR
);
759 for (i
= 0; i
< CLK_INFRA_NR
; i
++)
760 infra_clk_data
->clks
[i
] = ERR_PTR(-EPROBE_DEFER
);
763 mtk_clk_register_factors(infra_fixed_divs
, ARRAY_SIZE(infra_fixed_divs
),
766 mtk_clk_register_cpumuxes(node
, cpu_muxes
, ARRAY_SIZE(cpu_muxes
),
769 r
= of_clk_add_provider(node
, of_clk_src_onecell_get
, infra_clk_data
);
771 pr_err("%s(): could not register clock provider: %d\n",
774 CLK_OF_DECLARE_DRIVER(mtk_infra
, "mediatek,mt2701-infracfg",
775 mtk_infrasys_init_early
);
777 static int mtk_infrasys_init(struct platform_device
*pdev
)
780 struct device_node
*node
= pdev
->dev
.of_node
;
782 if (!infra_clk_data
) {
783 infra_clk_data
= mtk_alloc_clk_data(CLK_INFRA_NR
);
785 for (i
= 0; i
< CLK_INFRA_NR
; i
++) {
786 if (infra_clk_data
->clks
[i
] == ERR_PTR(-EPROBE_DEFER
))
787 infra_clk_data
->clks
[i
] = ERR_PTR(-ENOENT
);
791 mtk_clk_register_gates(node
, infra_clks
, ARRAY_SIZE(infra_clks
),
793 mtk_clk_register_factors(infra_fixed_divs
, ARRAY_SIZE(infra_fixed_divs
),
796 r
= of_clk_add_provider(node
, of_clk_src_onecell_get
, infra_clk_data
);
800 mtk_register_reset_controller(node
, 2, 0x30);
805 static const struct mtk_gate_regs peri0_cg_regs
= {
811 static const struct mtk_gate_regs peri1_cg_regs
= {
817 #define GATE_PERI0(_id, _name, _parent, _shift) { \
820 .parent_name = _parent, \
821 .regs = &peri0_cg_regs, \
823 .ops = &mtk_clk_gate_ops_setclr, \
826 #define GATE_PERI1(_id, _name, _parent, _shift) { \
829 .parent_name = _parent, \
830 .regs = &peri1_cg_regs, \
832 .ops = &mtk_clk_gate_ops_setclr, \
835 static const struct mtk_gate peri_clks
[] = {
836 GATE_PERI0(CLK_PERI_USB0_MCU
, "usb0_mcu_ck", "axi_sel", 31),
837 GATE_PERI0(CLK_PERI_ETH
, "eth_ck", "clk26m", 30),
838 GATE_PERI0(CLK_PERI_SPI0
, "spi0_ck", "spi0_sel", 29),
839 GATE_PERI0(CLK_PERI_AUXADC
, "auxadc_ck", "clk26m", 28),
840 GATE_PERI0(CLK_PERI_I2C3
, "i2c3_ck", "clk26m", 27),
841 GATE_PERI0(CLK_PERI_I2C2
, "i2c2_ck", "axi_sel", 26),
842 GATE_PERI0(CLK_PERI_I2C1
, "i2c1_ck", "axi_sel", 25),
843 GATE_PERI0(CLK_PERI_I2C0
, "i2c0_ck", "axi_sel", 24),
844 GATE_PERI0(CLK_PERI_BTIF
, "bitif_ck", "axi_sel", 23),
845 GATE_PERI0(CLK_PERI_UART3
, "uart3_ck", "axi_sel", 22),
846 GATE_PERI0(CLK_PERI_UART2
, "uart2_ck", "axi_sel", 21),
847 GATE_PERI0(CLK_PERI_UART1
, "uart1_ck", "axi_sel", 20),
848 GATE_PERI0(CLK_PERI_UART0
, "uart0_ck", "axi_sel", 19),
849 GATE_PERI0(CLK_PERI_NLI
, "nli_ck", "axi_sel", 18),
850 GATE_PERI0(CLK_PERI_MSDC50_3
, "msdc50_3_ck", "emmc_hclk_sel", 17),
851 GATE_PERI0(CLK_PERI_MSDC30_3
, "msdc30_3_ck", "msdc30_3_sel", 16),
852 GATE_PERI0(CLK_PERI_MSDC30_2
, "msdc30_2_ck", "msdc30_2_sel", 15),
853 GATE_PERI0(CLK_PERI_MSDC30_1
, "msdc30_1_ck", "msdc30_1_sel", 14),
854 GATE_PERI0(CLK_PERI_MSDC30_0
, "msdc30_0_ck", "msdc30_0_sel", 13),
855 GATE_PERI0(CLK_PERI_AP_DMA
, "ap_dma_ck", "axi_sel", 12),
856 GATE_PERI0(CLK_PERI_USB1
, "usb1_ck", "usb20_sel", 11),
857 GATE_PERI0(CLK_PERI_USB0
, "usb0_ck", "usb20_sel", 10),
858 GATE_PERI0(CLK_PERI_PWM
, "pwm_ck", "axi_sel", 9),
859 GATE_PERI0(CLK_PERI_PWM7
, "pwm7_ck", "axisel_d4", 8),
860 GATE_PERI0(CLK_PERI_PWM6
, "pwm6_ck", "axisel_d4", 7),
861 GATE_PERI0(CLK_PERI_PWM5
, "pwm5_ck", "axisel_d4", 6),
862 GATE_PERI0(CLK_PERI_PWM4
, "pwm4_ck", "axisel_d4", 5),
863 GATE_PERI0(CLK_PERI_PWM3
, "pwm3_ck", "axisel_d4", 4),
864 GATE_PERI0(CLK_PERI_PWM2
, "pwm2_ck", "axisel_d4", 3),
865 GATE_PERI0(CLK_PERI_PWM1
, "pwm1_ck", "axisel_d4", 2),
866 GATE_PERI0(CLK_PERI_THERM
, "therm_ck", "axi_sel", 1),
867 GATE_PERI0(CLK_PERI_NFI
, "nfi_ck", "nfi2x_sel", 0),
869 GATE_PERI1(CLK_PERI_FCI
, "fci_ck", "ms_card_sel", 11),
870 GATE_PERI1(CLK_PERI_SPI2
, "spi2_ck", "spi2_sel", 10),
871 GATE_PERI1(CLK_PERI_SPI1
, "spi1_ck", "spi1_sel", 9),
872 GATE_PERI1(CLK_PERI_HOST89_DVD
, "host89_dvd_ck", "aud2dvd_sel", 8),
873 GATE_PERI1(CLK_PERI_HOST89_SPI
, "host89_spi_ck", "spi0_sel", 7),
874 GATE_PERI1(CLK_PERI_HOST89_INT
, "host89_int_ck", "axi_sel", 6),
875 GATE_PERI1(CLK_PERI_FLASH
, "flash_ck", "nfi2x_sel", 5),
876 GATE_PERI1(CLK_PERI_NFI_PAD
, "nfi_pad_ck", "nfi1x_pad", 4),
877 GATE_PERI1(CLK_PERI_NFI_ECC
, "nfi_ecc_ck", "nfi1x_pad", 3),
878 GATE_PERI1(CLK_PERI_GCPU
, "gcpu_ck", "axi_sel", 2),
879 GATE_PERI1(CLK_PERI_USB_SLV
, "usbslv_ck", "axi_sel", 1),
880 GATE_PERI1(CLK_PERI_USB1_MCU
, "usb1_mcu_ck", "axi_sel", 0),
883 static const char * const uart_ck_sel_parents
[] = {
888 static const struct mtk_composite peri_muxs
[] = {
889 MUX(CLK_PERI_UART0_SEL
, "uart0_ck_sel", uart_ck_sel_parents
,
891 MUX(CLK_PERI_UART1_SEL
, "uart1_ck_sel", uart_ck_sel_parents
,
893 MUX(CLK_PERI_UART2_SEL
, "uart2_ck_sel", uart_ck_sel_parents
,
895 MUX(CLK_PERI_UART3_SEL
, "uart3_ck_sel", uart_ck_sel_parents
,
899 static int mtk_pericfg_init(struct platform_device
*pdev
)
901 struct clk_onecell_data
*clk_data
;
904 struct device_node
*node
= pdev
->dev
.of_node
;
905 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
907 base
= devm_ioremap_resource(&pdev
->dev
, res
);
909 return PTR_ERR(base
);
911 clk_data
= mtk_alloc_clk_data(CLK_PERI_NR
);
913 mtk_clk_register_gates(node
, peri_clks
, ARRAY_SIZE(peri_clks
),
916 mtk_clk_register_composites(peri_muxs
, ARRAY_SIZE(peri_muxs
), base
,
917 &mt2701_clk_lock
, clk_data
);
919 r
= of_clk_add_provider(node
, of_clk_src_onecell_get
, clk_data
);
923 mtk_register_reset_controller(node
, 2, 0x0);
928 #define MT8590_PLL_FMAX (2000 * MHZ)
929 #define CON0_MT8590_RST_BAR BIT(27)
931 #define PLL(_id, _name, _reg, _pwr_reg, _en_mask, _flags, _pcwbits, _pd_reg, \
932 _pd_shift, _tuner_reg, _pcw_reg, _pcw_shift) { \
936 .pwr_reg = _pwr_reg, \
937 .en_mask = _en_mask, \
939 .rst_bar_mask = CON0_MT8590_RST_BAR, \
940 .fmax = MT8590_PLL_FMAX, \
941 .pcwbits = _pcwbits, \
943 .pd_shift = _pd_shift, \
944 .tuner_reg = _tuner_reg, \
945 .pcw_reg = _pcw_reg, \
946 .pcw_shift = _pcw_shift, \
949 static const struct mtk_pll_data apmixed_plls
[] = {
950 PLL(CLK_APMIXED_ARMPLL
, "armpll", 0x200, 0x20c, 0x80000001,
951 PLL_AO
, 21, 0x204, 24, 0x0, 0x204, 0),
952 PLL(CLK_APMIXED_MAINPLL
, "mainpll", 0x210, 0x21c, 0xf0000001,
953 HAVE_RST_BAR
, 21, 0x210, 4, 0x0, 0x214, 0),
954 PLL(CLK_APMIXED_UNIVPLL
, "univpll", 0x220, 0x22c, 0xf3000001,
955 HAVE_RST_BAR
, 7, 0x220, 4, 0x0, 0x224, 14),
956 PLL(CLK_APMIXED_MMPLL
, "mmpll", 0x230, 0x23c, 0x00000001, 0,
957 21, 0x230, 4, 0x0, 0x234, 0),
958 PLL(CLK_APMIXED_MSDCPLL
, "msdcpll", 0x240, 0x24c, 0x00000001, 0,
959 21, 0x240, 4, 0x0, 0x244, 0),
960 PLL(CLK_APMIXED_TVDPLL
, "tvdpll", 0x250, 0x25c, 0x00000001, 0,
961 21, 0x250, 4, 0x0, 0x254, 0),
962 PLL(CLK_APMIXED_AUD1PLL
, "aud1pll", 0x270, 0x27c, 0x00000001, 0,
963 31, 0x270, 4, 0x0, 0x274, 0),
964 PLL(CLK_APMIXED_TRGPLL
, "trgpll", 0x280, 0x28c, 0x00000001, 0,
965 31, 0x280, 4, 0x0, 0x284, 0),
966 PLL(CLK_APMIXED_ETHPLL
, "ethpll", 0x290, 0x29c, 0x00000001, 0,
967 31, 0x290, 4, 0x0, 0x294, 0),
968 PLL(CLK_APMIXED_VDECPLL
, "vdecpll", 0x2a0, 0x2ac, 0x00000001, 0,
969 31, 0x2a0, 4, 0x0, 0x2a4, 0),
970 PLL(CLK_APMIXED_HADDS2PLL
, "hadds2pll", 0x2b0, 0x2bc, 0x00000001, 0,
971 31, 0x2b0, 4, 0x0, 0x2b4, 0),
972 PLL(CLK_APMIXED_AUD2PLL
, "aud2pll", 0x2c0, 0x2cc, 0x00000001, 0,
973 31, 0x2c0, 4, 0x0, 0x2c4, 0),
974 PLL(CLK_APMIXED_TVD2PLL
, "tvd2pll", 0x2d0, 0x2dc, 0x00000001, 0,
975 21, 0x2d0, 4, 0x0, 0x2d4, 0),
978 static const struct mtk_fixed_factor apmixed_fixed_divs
[] = {
979 FACTOR(CLK_APMIXED_HDMI_REF
, "hdmi_ref", "tvdpll", 1, 1),
982 static int mtk_apmixedsys_init(struct platform_device
*pdev
)
984 struct clk_onecell_data
*clk_data
;
985 struct device_node
*node
= pdev
->dev
.of_node
;
987 clk_data
= mtk_alloc_clk_data(CLK_APMIXED_NR
);
991 mtk_clk_register_plls(node
, apmixed_plls
, ARRAY_SIZE(apmixed_plls
),
993 mtk_clk_register_factors(apmixed_fixed_divs
, ARRAY_SIZE(apmixed_fixed_divs
),
996 return of_clk_add_provider(node
, of_clk_src_onecell_get
, clk_data
);
999 static const struct of_device_id of_match_clk_mt2701
[] = {
1001 .compatible
= "mediatek,mt2701-topckgen",
1002 .data
= mtk_topckgen_init
,
1004 .compatible
= "mediatek,mt2701-infracfg",
1005 .data
= mtk_infrasys_init
,
1007 .compatible
= "mediatek,mt2701-pericfg",
1008 .data
= mtk_pericfg_init
,
1010 .compatible
= "mediatek,mt2701-apmixedsys",
1011 .data
= mtk_apmixedsys_init
,
1017 static int clk_mt2701_probe(struct platform_device
*pdev
)
1019 int (*clk_init
)(struct platform_device
*);
1022 clk_init
= of_device_get_match_data(&pdev
->dev
);
1029 "could not register clock provider: %s: %d\n",
1035 static struct platform_driver clk_mt2701_drv
= {
1036 .probe
= clk_mt2701_probe
,
1038 .name
= "clk-mt2701",
1039 .of_match_table
= of_match_clk_mt2701
,
1043 static int __init
clk_mt2701_init(void)
1045 return platform_driver_register(&clk_mt2701_drv
);
1048 arch_initcall(clk_mt2701_init
);