1 // SPDX-License-Identifier: GPL-2.0
3 * Marvell Dove SoC clocks
5 * Copyright (C) 2012 Marvell
7 * Gregory CLEMENT <gregory.clement@free-electrons.com>
8 * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9 * Andrew Lunn <andrew@lunn.ch>
13 #include <linux/kernel.h>
14 #include <linux/clk-provider.h>
18 #include "dove-divider.h"
23 * Dove PLL sample-at-reset configuration
25 * SAR0[8:5] : CPU frequency
39 * SAR0[11:9] : CPU to L2 Clock divider ratio
46 * SAR0[15:12] : CPU to DDR DRAM Clock divider ratio
59 * SAR0[24:23] : TCLK frequency
65 #define SAR_DOVE_CPU_FREQ 5
66 #define SAR_DOVE_CPU_FREQ_MASK 0xf
67 #define SAR_DOVE_L2_RATIO 9
68 #define SAR_DOVE_L2_RATIO_MASK 0x7
69 #define SAR_DOVE_DDR_RATIO 12
70 #define SAR_DOVE_DDR_RATIO_MASK 0xf
71 #define SAR_DOVE_TCLK_FREQ 23
72 #define SAR_DOVE_TCLK_FREQ_MASK 0x3
74 enum { DOVE_CPU_TO_L2
, DOVE_CPU_TO_DDR
};
76 static const struct coreclk_ratio dove_coreclk_ratios
[] __initconst
= {
77 { .id
= DOVE_CPU_TO_L2
, .name
= "l2clk", },
78 { .id
= DOVE_CPU_TO_DDR
, .name
= "ddrclk", }
81 static const u32 dove_tclk_freqs
[] __initconst
= {
87 static u32 __init
dove_get_tclk_freq(void __iomem
*sar
)
89 u32 opt
= (readl(sar
) >> SAR_DOVE_TCLK_FREQ
) &
90 SAR_DOVE_TCLK_FREQ_MASK
;
91 return dove_tclk_freqs
[opt
];
94 static const u32 dove_cpu_freqs
[] __initconst
= {
98 800000000, 800000000, 800000000,
106 static u32 __init
dove_get_cpu_freq(void __iomem
*sar
)
108 u32 opt
= (readl(sar
) >> SAR_DOVE_CPU_FREQ
) &
109 SAR_DOVE_CPU_FREQ_MASK
;
110 return dove_cpu_freqs
[opt
];
113 static const int dove_cpu_l2_ratios
[8][2] __initconst
= {
114 { 1, 1 }, { 0, 1 }, { 1, 2 }, { 0, 1 },
115 { 1, 3 }, { 0, 1 }, { 1, 4 }, { 0, 1 }
118 static const int dove_cpu_ddr_ratios
[16][2] __initconst
= {
119 { 1, 1 }, { 0, 1 }, { 1, 2 }, { 2, 5 },
120 { 1, 3 }, { 0, 1 }, { 1, 4 }, { 0, 1 },
121 { 1, 5 }, { 0, 1 }, { 1, 6 }, { 0, 1 },
122 { 1, 7 }, { 0, 1 }, { 1, 8 }, { 1, 10 }
125 static void __init
dove_get_clk_ratio(
126 void __iomem
*sar
, int id
, int *mult
, int *div
)
131 u32 opt
= (readl(sar
) >> SAR_DOVE_L2_RATIO
) &
132 SAR_DOVE_L2_RATIO_MASK
;
133 *mult
= dove_cpu_l2_ratios
[opt
][0];
134 *div
= dove_cpu_l2_ratios
[opt
][1];
137 case DOVE_CPU_TO_DDR
:
139 u32 opt
= (readl(sar
) >> SAR_DOVE_DDR_RATIO
) &
140 SAR_DOVE_DDR_RATIO_MASK
;
141 *mult
= dove_cpu_ddr_ratios
[opt
][0];
142 *div
= dove_cpu_ddr_ratios
[opt
][1];
148 static const struct coreclk_soc_desc dove_coreclks
= {
149 .get_tclk_freq
= dove_get_tclk_freq
,
150 .get_cpu_freq
= dove_get_cpu_freq
,
151 .get_clk_ratio
= dove_get_clk_ratio
,
152 .ratios
= dove_coreclk_ratios
,
153 .num_ratios
= ARRAY_SIZE(dove_coreclk_ratios
),
157 * Clock Gating Control
160 static const struct clk_gating_soc_desc dove_gating_desc
[] __initconst
= {
161 { "usb0", NULL
, 0, 0 },
162 { "usb1", NULL
, 1, 0 },
163 { "ge", "gephy", 2, 0 },
164 { "sata", NULL
, 3, 0 },
165 { "pex0", NULL
, 4, 0 },
166 { "pex1", NULL
, 5, 0 },
167 { "sdio0", NULL
, 8, 0 },
168 { "sdio1", NULL
, 9, 0 },
169 { "nand", NULL
, 10, 0 },
170 { "camera", NULL
, 11, 0 },
171 { "i2s0", NULL
, 12, 0 },
172 { "i2s1", NULL
, 13, 0 },
173 { "crypto", NULL
, 15, 0 },
174 { "ac97", NULL
, 21, 0 },
175 { "pdma", NULL
, 22, 0 },
176 { "xor0", NULL
, 23, 0 },
177 { "xor1", NULL
, 24, 0 },
178 { "gephy", NULL
, 30, 0 },
182 static void __init
dove_clk_init(struct device_node
*np
)
184 struct device_node
*cgnp
=
185 of_find_compatible_node(NULL
, NULL
, "marvell,dove-gating-clock");
186 struct device_node
*ddnp
=
187 of_find_compatible_node(NULL
, NULL
, "marvell,dove-divider-clock");
189 mvebu_coreclk_setup(np
, &dove_coreclks
);
192 dove_divider_clk_init(ddnp
);
197 mvebu_clk_gating_setup(cgnp
, dove_gating_desc
);
201 CLK_OF_DECLARE(dove_clk
, "marvell,dove-core-clock", dove_clk_init
);