xref: /linux/drivers/clk/samsung/clk-exynos7.c (revision f5e127cd5ee52b3f0edaeeb7a40c0b9599f4e691)
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  * Author: Naveen Krishna Ch <naveenkrishna.ch@gmail.com>
4  *
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.
8  *
9 */
10 
11 #include <linux/clk.h>
12 #include <linux/clkdev.h>
13 #include <linux/clk-provider.h>
14 #include <linux/of.h>
15 
16 #include "clk.h"
17 #include <dt-bindings/clock/exynos7-clk.h>
18 
19 /* Register Offset definitions for CMU_TOPC (0x10570000) */
20 #define CC_PLL_LOCK		0x0000
21 #define BUS0_PLL_LOCK		0x0004
22 #define BUS1_DPLL_LOCK		0x0008
23 #define MFC_PLL_LOCK		0x000C
24 #define AUD_PLL_LOCK		0x0010
25 #define CC_PLL_CON0		0x0100
26 #define BUS0_PLL_CON0		0x0110
27 #define BUS1_DPLL_CON0		0x0120
28 #define MFC_PLL_CON0		0x0130
29 #define AUD_PLL_CON0		0x0140
30 #define MUX_SEL_TOPC0		0x0200
31 #define MUX_SEL_TOPC1		0x0204
32 #define MUX_SEL_TOPC2		0x0208
33 #define MUX_SEL_TOPC3		0x020C
34 #define DIV_TOPC0		0x0600
35 #define DIV_TOPC1		0x0604
36 #define DIV_TOPC3		0x060C
37 
38 static struct samsung_fixed_factor_clock topc_fixed_factor_clks[] __initdata = {
39 	FFACTOR(0, "ffac_topc_bus0_pll_div2", "mout_bus0_pll_ctrl", 1, 2, 0),
40 	FFACTOR(0, "ffac_topc_bus0_pll_div4",
41 		"ffac_topc_bus0_pll_div2", 1, 2, 0),
42 	FFACTOR(0, "ffac_topc_bus1_pll_div2", "mout_bus1_pll_ctrl", 1, 2, 0),
43 	FFACTOR(0, "ffac_topc_cc_pll_div2", "mout_cc_pll_ctrl", 1, 2, 0),
44 	FFACTOR(0, "ffac_topc_mfc_pll_div2", "mout_mfc_pll_ctrl", 1, 2, 0),
45 };
46 
47 /* List of parent clocks for Muxes in CMU_TOPC */
48 PNAME(mout_bus0_pll_ctrl_p)	= { "fin_pll", "fout_bus0_pll" };
49 PNAME(mout_bus1_pll_ctrl_p)	= { "fin_pll", "fout_bus1_pll" };
50 PNAME(mout_cc_pll_ctrl_p)	= { "fin_pll", "fout_cc_pll" };
51 PNAME(mout_mfc_pll_ctrl_p)	= { "fin_pll", "fout_mfc_pll" };
52 
53 PNAME(mout_topc_group2) = { "mout_sclk_bus0_pll_cmuc",
54 	"mout_sclk_bus1_pll_cmuc", "mout_sclk_cc_pll_cmuc",
55 	"mout_sclk_mfc_pll_cmuc" };
56 
57 PNAME(mout_sclk_bus0_pll_cmuc_p) = { "mout_bus0_pll_ctrl",
58 	"ffac_topc_bus0_pll_div2", "ffac_topc_bus0_pll_div4"};
59 PNAME(mout_sclk_bus1_pll_cmuc_p) = { "mout_bus1_pll_ctrl",
60 	"ffac_topc_bus1_pll_div2"};
61 PNAME(mout_sclk_cc_pll_cmuc_p) = { "mout_cc_pll_ctrl",
62 	"ffac_topc_cc_pll_div2"};
63 PNAME(mout_sclk_mfc_pll_cmuc_p) = { "mout_mfc_pll_ctrl",
64 	"ffac_topc_mfc_pll_div2"};
65 
66 
67 PNAME(mout_sclk_bus0_pll_out_p) = {"mout_bus0_pll_ctrl",
68 	"ffac_topc_bus0_pll_div2"};
69 
70 static unsigned long topc_clk_regs[] __initdata = {
71 	CC_PLL_LOCK,
72 	BUS0_PLL_LOCK,
73 	BUS1_DPLL_LOCK,
74 	MFC_PLL_LOCK,
75 	AUD_PLL_LOCK,
76 	CC_PLL_CON0,
77 	BUS0_PLL_CON0,
78 	BUS1_DPLL_CON0,
79 	MFC_PLL_CON0,
80 	AUD_PLL_CON0,
81 	MUX_SEL_TOPC0,
82 	MUX_SEL_TOPC1,
83 	MUX_SEL_TOPC2,
84 	MUX_SEL_TOPC3,
85 	DIV_TOPC0,
86 	DIV_TOPC1,
87 	DIV_TOPC3,
88 };
89 
90 static struct samsung_mux_clock topc_mux_clks[] __initdata = {
91 	MUX(0, "mout_bus0_pll_ctrl", mout_bus0_pll_ctrl_p, MUX_SEL_TOPC0, 0, 1),
92 	MUX(0, "mout_bus1_pll_ctrl", mout_bus1_pll_ctrl_p, MUX_SEL_TOPC0, 4, 1),
93 	MUX(0, "mout_cc_pll_ctrl", mout_cc_pll_ctrl_p, MUX_SEL_TOPC0, 8, 1),
94 	MUX(0, "mout_mfc_pll_ctrl", mout_mfc_pll_ctrl_p, MUX_SEL_TOPC0, 12, 1),
95 
96 	MUX(0, "mout_sclk_bus0_pll_cmuc", mout_sclk_bus0_pll_cmuc_p,
97 		MUX_SEL_TOPC0, 16, 2),
98 	MUX(0, "mout_sclk_bus1_pll_cmuc", mout_sclk_bus1_pll_cmuc_p,
99 		MUX_SEL_TOPC0, 20, 1),
100 	MUX(0, "mout_sclk_cc_pll_cmuc", mout_sclk_cc_pll_cmuc_p,
101 		MUX_SEL_TOPC0, 24, 1),
102 	MUX(0, "mout_sclk_mfc_pll_cmuc", mout_sclk_mfc_pll_cmuc_p,
103 		MUX_SEL_TOPC0, 28, 1),
104 
105 	MUX(0, "mout_sclk_bus0_pll_out", mout_sclk_bus0_pll_out_p,
106 		MUX_SEL_TOPC1, 16, 1),
107 
108 	MUX(0, "mout_aclk_ccore_133", mout_topc_group2,	MUX_SEL_TOPC2, 4, 2),
109 
110 	MUX(0, "mout_aclk_peris_66", mout_topc_group2, MUX_SEL_TOPC3, 24, 2),
111 };
112 
113 static struct samsung_div_clock topc_div_clks[] __initdata = {
114 	DIV(DOUT_ACLK_CCORE_133, "dout_aclk_ccore_133", "mout_aclk_ccore_133",
115 		DIV_TOPC0, 4, 4),
116 
117 	DIV(DOUT_ACLK_PERIS, "dout_aclk_peris_66", "mout_aclk_peris_66",
118 		DIV_TOPC1, 24, 4),
119 
120 	DIV(DOUT_SCLK_BUS0_PLL, "dout_sclk_bus0_pll", "mout_sclk_bus0_pll_out",
121 		DIV_TOPC3, 0, 3),
122 	DIV(DOUT_SCLK_BUS1_PLL, "dout_sclk_bus1_pll", "mout_bus1_pll_ctrl",
123 		DIV_TOPC3, 8, 3),
124 	DIV(DOUT_SCLK_CC_PLL, "dout_sclk_cc_pll", "mout_cc_pll_ctrl",
125 		DIV_TOPC3, 12, 3),
126 	DIV(DOUT_SCLK_MFC_PLL, "dout_sclk_mfc_pll", "mout_mfc_pll_ctrl",
127 		DIV_TOPC3, 16, 3),
128 };
129 
130 static struct samsung_pll_clock topc_pll_clks[] __initdata = {
131 	PLL(pll_1451x, 0, "fout_bus0_pll", "fin_pll", BUS0_PLL_LOCK,
132 		BUS0_PLL_CON0, NULL),
133 	PLL(pll_1452x, 0, "fout_cc_pll", "fin_pll", CC_PLL_LOCK,
134 		CC_PLL_CON0, NULL),
135 	PLL(pll_1452x, 0, "fout_bus1_pll", "fin_pll", BUS1_DPLL_LOCK,
136 		BUS1_DPLL_CON0, NULL),
137 	PLL(pll_1452x, 0, "fout_mfc_pll", "fin_pll", MFC_PLL_LOCK,
138 		MFC_PLL_CON0, NULL),
139 	PLL(pll_1460x, 0, "fout_aud_pll", "fin_pll", AUD_PLL_LOCK,
140 		AUD_PLL_CON0, NULL),
141 };
142 
143 static struct samsung_cmu_info topc_cmu_info __initdata = {
144 	.pll_clks		= topc_pll_clks,
145 	.nr_pll_clks		= ARRAY_SIZE(topc_pll_clks),
146 	.mux_clks		= topc_mux_clks,
147 	.nr_mux_clks		= ARRAY_SIZE(topc_mux_clks),
148 	.div_clks		= topc_div_clks,
149 	.nr_div_clks		= ARRAY_SIZE(topc_div_clks),
150 	.fixed_factor_clks	= topc_fixed_factor_clks,
151 	.nr_fixed_factor_clks	= ARRAY_SIZE(topc_fixed_factor_clks),
152 	.nr_clk_ids		= TOPC_NR_CLK,
153 	.clk_regs		= topc_clk_regs,
154 	.nr_clk_regs		= ARRAY_SIZE(topc_clk_regs),
155 };
156 
157 static void __init exynos7_clk_topc_init(struct device_node *np)
158 {
159 	samsung_cmu_register_one(np, &topc_cmu_info);
160 }
161 
162 CLK_OF_DECLARE(exynos7_clk_topc, "samsung,exynos7-clock-topc",
163 	exynos7_clk_topc_init);
164 
165 /* Register Offset definitions for CMU_TOP0 (0x105D0000) */
166 #define MUX_SEL_TOP00			0x0200
167 #define MUX_SEL_TOP01			0x0204
168 #define MUX_SEL_TOP03			0x020C
169 #define MUX_SEL_TOP0_PERIC3		0x023C
170 #define DIV_TOP03			0x060C
171 #define DIV_TOP0_PERIC3			0x063C
172 #define ENABLE_SCLK_TOP0_PERIC3		0x0A3C
173 
174 /* List of parent clocks for Muxes in CMU_TOP0 */
175 PNAME(mout_bus0_pll_p)	= { "fin_pll", "dout_sclk_bus0_pll" };
176 PNAME(mout_bus1_pll_p)	= { "fin_pll", "dout_sclk_bus1_pll" };
177 PNAME(mout_cc_pll_p)	= { "fin_pll", "dout_sclk_cc_pll" };
178 PNAME(mout_mfc_pll_p)	= { "fin_pll", "dout_sclk_mfc_pll" };
179 
180 PNAME(mout_top0_half_bus0_pll_p) = {"mout_top0_bus0_pll",
181 	"ffac_top0_bus0_pll_div2"};
182 PNAME(mout_top0_half_bus1_pll_p) = {"mout_top0_bus1_pll",
183 	"ffac_top0_bus1_pll_div2"};
184 PNAME(mout_top0_half_cc_pll_p) = {"mout_top0_cc_pll",
185 	"ffac_top0_cc_pll_div2"};
186 PNAME(mout_top0_half_mfc_pll_p) = {"mout_top0_mfc_pll",
187 	"ffac_top0_mfc_pll_div2"};
188 
189 PNAME(mout_top0_group1) = {"mout_top0_half_bus0_pll",
190 	"mout_top0_half_bus1_pll", "mout_top0_half_cc_pll",
191 	"mout_top0_half_mfc_pll"};
192 
193 static unsigned long top0_clk_regs[] __initdata = {
194 	MUX_SEL_TOP00,
195 	MUX_SEL_TOP01,
196 	MUX_SEL_TOP03,
197 	MUX_SEL_TOP0_PERIC3,
198 	DIV_TOP03,
199 	DIV_TOP0_PERIC3,
200 	ENABLE_SCLK_TOP0_PERIC3,
201 };
202 
203 static struct samsung_mux_clock top0_mux_clks[] __initdata = {
204 	MUX(0, "mout_top0_mfc_pll", mout_mfc_pll_p, MUX_SEL_TOP00, 4, 1),
205 	MUX(0, "mout_top0_cc_pll", mout_cc_pll_p, MUX_SEL_TOP00, 8, 1),
206 	MUX(0, "mout_top0_bus1_pll", mout_bus1_pll_p, MUX_SEL_TOP00, 12, 1),
207 	MUX(0, "mout_top0_bus0_pll", mout_bus0_pll_p, MUX_SEL_TOP00, 16, 1),
208 
209 	MUX(0, "mout_top0_half_mfc_pll", mout_top0_half_mfc_pll_p,
210 		MUX_SEL_TOP01, 4, 1),
211 	MUX(0, "mout_top0_half_cc_pll", mout_top0_half_cc_pll_p,
212 		MUX_SEL_TOP01, 8, 1),
213 	MUX(0, "mout_top0_half_bus1_pll", mout_top0_half_bus1_pll_p,
214 		MUX_SEL_TOP01, 12, 1),
215 	MUX(0, "mout_top0_half_bus0_pll", mout_top0_half_bus0_pll_p,
216 		MUX_SEL_TOP01, 16, 1),
217 
218 	MUX(0, "mout_aclk_peric1_66", mout_top0_group1, MUX_SEL_TOP03, 12, 2),
219 	MUX(0, "mout_aclk_peric0_66", mout_top0_group1, MUX_SEL_TOP03, 20, 2),
220 
221 	MUX(0, "mout_sclk_uart3", mout_top0_group1, MUX_SEL_TOP0_PERIC3, 4, 2),
222 	MUX(0, "mout_sclk_uart2", mout_top0_group1, MUX_SEL_TOP0_PERIC3, 8, 2),
223 	MUX(0, "mout_sclk_uart1", mout_top0_group1, MUX_SEL_TOP0_PERIC3, 12, 2),
224 	MUX(0, "mout_sclk_uart0", mout_top0_group1, MUX_SEL_TOP0_PERIC3, 16, 2),
225 };
226 
227 static struct samsung_div_clock top0_div_clks[] __initdata = {
228 	DIV(DOUT_ACLK_PERIC1, "dout_aclk_peric1_66", "mout_aclk_peric1_66",
229 		DIV_TOP03, 12, 6),
230 	DIV(DOUT_ACLK_PERIC0, "dout_aclk_peric0_66", "mout_aclk_peric0_66",
231 		DIV_TOP03, 20, 6),
232 
233 	DIV(0, "dout_sclk_uart3", "mout_sclk_uart3", DIV_TOP0_PERIC3, 4, 4),
234 	DIV(0, "dout_sclk_uart2", "mout_sclk_uart2", DIV_TOP0_PERIC3, 8, 4),
235 	DIV(0, "dout_sclk_uart1", "mout_sclk_uart1", DIV_TOP0_PERIC3, 12, 4),
236 	DIV(0, "dout_sclk_uart0", "mout_sclk_uart0", DIV_TOP0_PERIC3, 16, 4),
237 };
238 
239 static struct samsung_gate_clock top0_gate_clks[] __initdata = {
240 	GATE(CLK_SCLK_UART3, "sclk_uart3", "dout_sclk_uart3",
241 		ENABLE_SCLK_TOP0_PERIC3, 4, 0, 0),
242 	GATE(CLK_SCLK_UART2, "sclk_uart2", "dout_sclk_uart2",
243 		ENABLE_SCLK_TOP0_PERIC3, 8, 0, 0),
244 	GATE(CLK_SCLK_UART1, "sclk_uart1", "dout_sclk_uart1",
245 		ENABLE_SCLK_TOP0_PERIC3, 12, 0, 0),
246 	GATE(CLK_SCLK_UART0, "sclk_uart0", "dout_sclk_uart0",
247 		ENABLE_SCLK_TOP0_PERIC3, 16, 0, 0),
248 };
249 
250 static struct samsung_fixed_factor_clock top0_fixed_factor_clks[] __initdata = {
251 	FFACTOR(0, "ffac_top0_bus0_pll_div2", "mout_top0_bus0_pll", 1, 2, 0),
252 	FFACTOR(0, "ffac_top0_bus1_pll_div2", "mout_top0_bus1_pll", 1, 2, 0),
253 	FFACTOR(0, "ffac_top0_cc_pll_div2", "mout_top0_cc_pll", 1, 2, 0),
254 	FFACTOR(0, "ffac_top0_mfc_pll_div2", "mout_top0_mfc_pll", 1, 2, 0),
255 };
256 
257 static struct samsung_cmu_info top0_cmu_info __initdata = {
258 	.mux_clks		= top0_mux_clks,
259 	.nr_mux_clks		= ARRAY_SIZE(top0_mux_clks),
260 	.div_clks		= top0_div_clks,
261 	.nr_div_clks		= ARRAY_SIZE(top0_div_clks),
262 	.gate_clks		= top0_gate_clks,
263 	.nr_gate_clks		= ARRAY_SIZE(top0_gate_clks),
264 	.fixed_factor_clks	= top0_fixed_factor_clks,
265 	.nr_fixed_factor_clks	= ARRAY_SIZE(top0_fixed_factor_clks),
266 	.nr_clk_ids		= TOP0_NR_CLK,
267 	.clk_regs		= top0_clk_regs,
268 	.nr_clk_regs		= ARRAY_SIZE(top0_clk_regs),
269 };
270 
271 static void __init exynos7_clk_top0_init(struct device_node *np)
272 {
273 	samsung_cmu_register_one(np, &top0_cmu_info);
274 }
275 
276 CLK_OF_DECLARE(exynos7_clk_top0, "samsung,exynos7-clock-top0",
277 	exynos7_clk_top0_init);
278 
279 /* Register Offset definitions for CMU_TOP1 (0x105E0000) */
280 #define MUX_SEL_TOP10			0x0200
281 #define MUX_SEL_TOP11			0x0204
282 #define MUX_SEL_TOP13			0x020C
283 #define MUX_SEL_TOP1_FSYS0		0x0224
284 #define MUX_SEL_TOP1_FSYS1		0x0228
285 #define DIV_TOP13			0x060C
286 #define DIV_TOP1_FSYS0			0x0624
287 #define DIV_TOP1_FSYS1			0x0628
288 #define ENABLE_ACLK_TOP13		0x080C
289 #define ENABLE_SCLK_TOP1_FSYS0		0x0A24
290 #define ENABLE_SCLK_TOP1_FSYS1		0x0A28
291 
292 /* List of parent clocks for Muxes in CMU_TOP1 */
293 PNAME(mout_top1_bus0_pll_p)	= { "fin_pll", "dout_sclk_bus0_pll" };
294 PNAME(mout_top1_bus1_pll_p)	= { "fin_pll", "dout_sclk_bus1_pll_b" };
295 PNAME(mout_top1_cc_pll_p)	= { "fin_pll", "dout_sclk_cc_pll_b" };
296 PNAME(mout_top1_mfc_pll_p)	= { "fin_pll", "dout_sclk_mfc_pll_b" };
297 
298 PNAME(mout_top1_half_bus0_pll_p) = {"mout_top1_bus0_pll",
299 	"ffac_top1_bus0_pll_div2"};
300 PNAME(mout_top1_half_bus1_pll_p) = {"mout_top1_bus1_pll",
301 	"ffac_top1_bus1_pll_div2"};
302 PNAME(mout_top1_half_cc_pll_p) = {"mout_top1_cc_pll",
303 	"ffac_top1_cc_pll_div2"};
304 PNAME(mout_top1_half_mfc_pll_p) = {"mout_top1_mfc_pll",
305 	"ffac_top1_mfc_pll_div2"};
306 
307 PNAME(mout_top1_group1) = {"mout_top1_half_bus0_pll",
308 	"mout_top1_half_bus1_pll", "mout_top1_half_cc_pll",
309 	"mout_top1_half_mfc_pll"};
310 
311 static unsigned long top1_clk_regs[] __initdata = {
312 	MUX_SEL_TOP10,
313 	MUX_SEL_TOP11,
314 	MUX_SEL_TOP13,
315 	MUX_SEL_TOP1_FSYS0,
316 	MUX_SEL_TOP1_FSYS1,
317 	DIV_TOP13,
318 	DIV_TOP1_FSYS0,
319 	DIV_TOP1_FSYS1,
320 	ENABLE_ACLK_TOP13,
321 	ENABLE_SCLK_TOP1_FSYS0,
322 	ENABLE_SCLK_TOP1_FSYS1,
323 };
324 
325 static struct samsung_mux_clock top1_mux_clks[] __initdata = {
326 	MUX(0, "mout_top1_mfc_pll", mout_top1_mfc_pll_p, MUX_SEL_TOP10, 4, 1),
327 	MUX(0, "mout_top1_cc_pll", mout_top1_cc_pll_p, MUX_SEL_TOP10, 8, 1),
328 	MUX(0, "mout_top1_bus1_pll", mout_top1_bus1_pll_p,
329 		MUX_SEL_TOP10, 12, 1),
330 	MUX(0, "mout_top1_bus0_pll", mout_top1_bus0_pll_p,
331 		MUX_SEL_TOP10, 16, 1),
332 
333 	MUX(0, "mout_top1_half_mfc_pll", mout_top1_half_mfc_pll_p,
334 		MUX_SEL_TOP11, 4, 1),
335 	MUX(0, "mout_top1_half_cc_pll", mout_top1_half_cc_pll_p,
336 		MUX_SEL_TOP11, 8, 1),
337 	MUX(0, "mout_top1_half_bus1_pll", mout_top1_half_bus1_pll_p,
338 		MUX_SEL_TOP11, 12, 1),
339 	MUX(0, "mout_top1_half_bus0_pll", mout_top1_half_bus0_pll_p,
340 		MUX_SEL_TOP11, 16, 1),
341 
342 	MUX(0, "mout_aclk_fsys1_200", mout_top1_group1, MUX_SEL_TOP13, 24, 2),
343 	MUX(0, "mout_aclk_fsys0_200", mout_top1_group1, MUX_SEL_TOP13, 28, 2),
344 
345 	MUX(0, "mout_sclk_mmc2", mout_top1_group1, MUX_SEL_TOP1_FSYS0, 24, 2),
346 
347 	MUX(0, "mout_sclk_mmc1", mout_top1_group1, MUX_SEL_TOP1_FSYS1, 24, 2),
348 	MUX(0, "mout_sclk_mmc0", mout_top1_group1, MUX_SEL_TOP1_FSYS1, 28, 2),
349 };
350 
351 static struct samsung_div_clock top1_div_clks[] __initdata = {
352 	DIV(DOUT_ACLK_FSYS1_200, "dout_aclk_fsys1_200", "mout_aclk_fsys1_200",
353 		DIV_TOP13, 24, 4),
354 	DIV(DOUT_ACLK_FSYS0_200, "dout_aclk_fsys0_200", "mout_aclk_fsys0_200",
355 		DIV_TOP13, 28, 4),
356 
357 	DIV(DOUT_SCLK_MMC2, "dout_sclk_mmc2", "mout_sclk_mmc2",
358 		DIV_TOP1_FSYS0, 24, 4),
359 
360 	DIV(DOUT_SCLK_MMC1, "dout_sclk_mmc1", "mout_sclk_mmc1",
361 		DIV_TOP1_FSYS1, 24, 4),
362 	DIV(DOUT_SCLK_MMC0, "dout_sclk_mmc0", "mout_sclk_mmc0",
363 		DIV_TOP1_FSYS1, 28, 4),
364 };
365 
366 static struct samsung_gate_clock top1_gate_clks[] __initdata = {
367 	GATE(CLK_SCLK_MMC2, "sclk_mmc2", "dout_sclk_mmc2",
368 		ENABLE_SCLK_TOP1_FSYS0, 24, CLK_SET_RATE_PARENT, 0),
369 
370 	GATE(CLK_SCLK_MMC1, "sclk_mmc1", "dout_sclk_mmc1",
371 		ENABLE_SCLK_TOP1_FSYS1, 24, CLK_SET_RATE_PARENT, 0),
372 	GATE(CLK_SCLK_MMC0, "sclk_mmc0", "dout_sclk_mmc0",
373 		ENABLE_SCLK_TOP1_FSYS1, 28, CLK_SET_RATE_PARENT, 0),
374 };
375 
376 static struct samsung_fixed_factor_clock top1_fixed_factor_clks[] __initdata = {
377 	FFACTOR(0, "ffac_top1_bus0_pll_div2", "mout_top1_bus0_pll", 1, 2, 0),
378 	FFACTOR(0, "ffac_top1_bus1_pll_div2", "mout_top1_bus1_pll", 1, 2, 0),
379 	FFACTOR(0, "ffac_top1_cc_pll_div2", "mout_top1_cc_pll", 1, 2, 0),
380 	FFACTOR(0, "ffac_top1_mfc_pll_div2", "mout_top1_mfc_pll", 1, 2, 0),
381 };
382 
383 static struct samsung_cmu_info top1_cmu_info __initdata = {
384 	.mux_clks		= top1_mux_clks,
385 	.nr_mux_clks		= ARRAY_SIZE(top1_mux_clks),
386 	.div_clks		= top1_div_clks,
387 	.nr_div_clks		= ARRAY_SIZE(top1_div_clks),
388 	.gate_clks		= top1_gate_clks,
389 	.nr_gate_clks		= ARRAY_SIZE(top1_gate_clks),
390 	.fixed_factor_clks	= top1_fixed_factor_clks,
391 	.nr_fixed_factor_clks	= ARRAY_SIZE(top1_fixed_factor_clks),
392 	.nr_clk_ids		= TOP1_NR_CLK,
393 	.clk_regs		= top1_clk_regs,
394 	.nr_clk_regs		= ARRAY_SIZE(top1_clk_regs),
395 };
396 
397 static void __init exynos7_clk_top1_init(struct device_node *np)
398 {
399 	samsung_cmu_register_one(np, &top1_cmu_info);
400 }
401 
402 CLK_OF_DECLARE(exynos7_clk_top1, "samsung,exynos7-clock-top1",
403 	exynos7_clk_top1_init);
404 
405 /* Register Offset definitions for CMU_CCORE (0x105B0000) */
406 #define MUX_SEL_CCORE			0x0200
407 #define DIV_CCORE			0x0600
408 #define ENABLE_ACLK_CCORE0		0x0800
409 #define ENABLE_ACLK_CCORE1		0x0804
410 #define ENABLE_PCLK_CCORE		0x0900
411 
412 /*
413  * List of parent clocks for Muxes in CMU_CCORE
414  */
415 PNAME(mout_aclk_ccore_133_p)	= { "fin_pll", "dout_aclk_ccore_133" };
416 
417 static unsigned long ccore_clk_regs[] __initdata = {
418 	MUX_SEL_CCORE,
419 	ENABLE_PCLK_CCORE,
420 };
421 
422 static struct samsung_mux_clock ccore_mux_clks[] __initdata = {
423 	MUX(0, "mout_aclk_ccore_133_user", mout_aclk_ccore_133_p,
424 		MUX_SEL_CCORE, 1, 1),
425 };
426 
427 static struct samsung_gate_clock ccore_gate_clks[] __initdata = {
428 	GATE(PCLK_RTC, "pclk_rtc", "mout_aclk_ccore_133_user",
429 		ENABLE_PCLK_CCORE, 8, 0, 0),
430 };
431 
432 static struct samsung_cmu_info ccore_cmu_info __initdata = {
433 	.mux_clks		= ccore_mux_clks,
434 	.nr_mux_clks		= ARRAY_SIZE(ccore_mux_clks),
435 	.gate_clks		= ccore_gate_clks,
436 	.nr_gate_clks		= ARRAY_SIZE(ccore_gate_clks),
437 	.nr_clk_ids		= CCORE_NR_CLK,
438 	.clk_regs		= ccore_clk_regs,
439 	.nr_clk_regs		= ARRAY_SIZE(ccore_clk_regs),
440 };
441 
442 static void __init exynos7_clk_ccore_init(struct device_node *np)
443 {
444 	samsung_cmu_register_one(np, &ccore_cmu_info);
445 }
446 
447 CLK_OF_DECLARE(exynos7_clk_ccore, "samsung,exynos7-clock-ccore",
448 	exynos7_clk_ccore_init);
449 
450 /* Register Offset definitions for CMU_PERIC0 (0x13610000) */
451 #define MUX_SEL_PERIC0			0x0200
452 #define ENABLE_PCLK_PERIC0		0x0900
453 #define ENABLE_SCLK_PERIC0		0x0A00
454 
455 /* List of parent clocks for Muxes in CMU_PERIC0 */
456 PNAME(mout_aclk_peric0_66_p)	= { "fin_pll", "dout_aclk_peric0_66" };
457 PNAME(mout_sclk_uart0_p)	= { "fin_pll", "sclk_uart0" };
458 
459 static unsigned long peric0_clk_regs[] __initdata = {
460 	MUX_SEL_PERIC0,
461 	ENABLE_PCLK_PERIC0,
462 	ENABLE_SCLK_PERIC0,
463 };
464 
465 static struct samsung_mux_clock peric0_mux_clks[] __initdata = {
466 	MUX(0, "mout_aclk_peric0_66_user", mout_aclk_peric0_66_p,
467 		MUX_SEL_PERIC0, 0, 1),
468 	MUX(0, "mout_sclk_uart0_user", mout_sclk_uart0_p,
469 		MUX_SEL_PERIC0, 16, 1),
470 };
471 
472 static struct samsung_gate_clock peric0_gate_clks[] __initdata = {
473 	GATE(PCLK_HSI2C0, "pclk_hsi2c0", "mout_aclk_peric0_66_user",
474 		ENABLE_PCLK_PERIC0, 8, 0, 0),
475 	GATE(PCLK_HSI2C1, "pclk_hsi2c1", "mout_aclk_peric0_66_user",
476 		ENABLE_PCLK_PERIC0, 9, 0, 0),
477 	GATE(PCLK_HSI2C4, "pclk_hsi2c4", "mout_aclk_peric0_66_user",
478 		ENABLE_PCLK_PERIC0, 10, 0, 0),
479 	GATE(PCLK_HSI2C5, "pclk_hsi2c5", "mout_aclk_peric0_66_user",
480 		ENABLE_PCLK_PERIC0, 11, 0, 0),
481 	GATE(PCLK_HSI2C9, "pclk_hsi2c9", "mout_aclk_peric0_66_user",
482 		ENABLE_PCLK_PERIC0, 12, 0, 0),
483 	GATE(PCLK_HSI2C10, "pclk_hsi2c10", "mout_aclk_peric0_66_user",
484 		ENABLE_PCLK_PERIC0, 13, 0, 0),
485 	GATE(PCLK_HSI2C11, "pclk_hsi2c11", "mout_aclk_peric0_66_user",
486 		ENABLE_PCLK_PERIC0, 14, 0, 0),
487 	GATE(PCLK_UART0, "pclk_uart0", "mout_aclk_peric0_66_user",
488 		ENABLE_PCLK_PERIC0, 16, 0, 0),
489 
490 	GATE(SCLK_UART0, "sclk_uart0_user", "mout_sclk_uart0_user",
491 		ENABLE_SCLK_PERIC0, 16, 0, 0),
492 };
493 
494 static struct samsung_cmu_info peric0_cmu_info __initdata = {
495 	.mux_clks		= peric0_mux_clks,
496 	.nr_mux_clks		= ARRAY_SIZE(peric0_mux_clks),
497 	.gate_clks		= peric0_gate_clks,
498 	.nr_gate_clks		= ARRAY_SIZE(peric0_gate_clks),
499 	.nr_clk_ids		= PERIC0_NR_CLK,
500 	.clk_regs		= peric0_clk_regs,
501 	.nr_clk_regs		= ARRAY_SIZE(peric0_clk_regs),
502 };
503 
504 static void __init exynos7_clk_peric0_init(struct device_node *np)
505 {
506 	samsung_cmu_register_one(np, &peric0_cmu_info);
507 }
508 
509 /* Register Offset definitions for CMU_PERIC1 (0x14C80000) */
510 #define MUX_SEL_PERIC10			0x0200
511 #define MUX_SEL_PERIC11			0x0204
512 #define ENABLE_PCLK_PERIC1		0x0900
513 #define ENABLE_SCLK_PERIC10		0x0A00
514 
515 CLK_OF_DECLARE(exynos7_clk_peric0, "samsung,exynos7-clock-peric0",
516 	exynos7_clk_peric0_init);
517 
518 /* List of parent clocks for Muxes in CMU_PERIC1 */
519 PNAME(mout_aclk_peric1_66_p)	= { "fin_pll", "dout_aclk_peric1_66" };
520 PNAME(mout_sclk_uart1_p)	= { "fin_pll", "sclk_uart1" };
521 PNAME(mout_sclk_uart2_p)	= { "fin_pll", "sclk_uart2" };
522 PNAME(mout_sclk_uart3_p)	= { "fin_pll", "sclk_uart3" };
523 
524 static unsigned long peric1_clk_regs[] __initdata = {
525 	MUX_SEL_PERIC10,
526 	MUX_SEL_PERIC11,
527 	ENABLE_PCLK_PERIC1,
528 	ENABLE_SCLK_PERIC10,
529 };
530 
531 static struct samsung_mux_clock peric1_mux_clks[] __initdata = {
532 	MUX(0, "mout_aclk_peric1_66_user", mout_aclk_peric1_66_p,
533 		MUX_SEL_PERIC10, 0, 1),
534 
535 	MUX(0, "mout_sclk_uart1_user", mout_sclk_uart1_p,
536 		MUX_SEL_PERIC11, 20, 1),
537 	MUX(0, "mout_sclk_uart2_user", mout_sclk_uart2_p,
538 		MUX_SEL_PERIC11, 24, 1),
539 	MUX(0, "mout_sclk_uart3_user", mout_sclk_uart3_p,
540 		MUX_SEL_PERIC11, 28, 1),
541 };
542 
543 static struct samsung_gate_clock peric1_gate_clks[] __initdata = {
544 	GATE(PCLK_HSI2C2, "pclk_hsi2c2", "mout_aclk_peric1_66_user",
545 		ENABLE_PCLK_PERIC1, 4, 0, 0),
546 	GATE(PCLK_HSI2C3, "pclk_hsi2c3", "mout_aclk_peric1_66_user",
547 		ENABLE_PCLK_PERIC1, 5, 0, 0),
548 	GATE(PCLK_HSI2C6, "pclk_hsi2c6", "mout_aclk_peric1_66_user",
549 		ENABLE_PCLK_PERIC1, 6, 0, 0),
550 	GATE(PCLK_HSI2C7, "pclk_hsi2c7", "mout_aclk_peric1_66_user",
551 		ENABLE_PCLK_PERIC1, 7, 0, 0),
552 	GATE(PCLK_HSI2C8, "pclk_hsi2c8", "mout_aclk_peric1_66_user",
553 		ENABLE_PCLK_PERIC1, 8, 0, 0),
554 	GATE(PCLK_UART1, "pclk_uart1", "mout_aclk_peric1_66_user",
555 		ENABLE_PCLK_PERIC1, 9, 0, 0),
556 	GATE(PCLK_UART2, "pclk_uart2", "mout_aclk_peric1_66_user",
557 		ENABLE_PCLK_PERIC1, 10, 0, 0),
558 	GATE(PCLK_UART3, "pclk_uart3", "mout_aclk_peric1_66_user",
559 		ENABLE_PCLK_PERIC1, 11, 0, 0),
560 
561 	GATE(SCLK_UART1, "sclk_uart1_user", "mout_sclk_uart1_user",
562 		ENABLE_SCLK_PERIC10, 9, 0, 0),
563 	GATE(SCLK_UART2, "sclk_uart2_user", "mout_sclk_uart2_user",
564 		ENABLE_SCLK_PERIC10, 10, 0, 0),
565 	GATE(SCLK_UART3, "sclk_uart3_user", "mout_sclk_uart3_user",
566 		ENABLE_SCLK_PERIC10, 11, 0, 0),
567 };
568 
569 static struct samsung_cmu_info peric1_cmu_info __initdata = {
570 	.mux_clks		= peric1_mux_clks,
571 	.nr_mux_clks		= ARRAY_SIZE(peric1_mux_clks),
572 	.gate_clks		= peric1_gate_clks,
573 	.nr_gate_clks		= ARRAY_SIZE(peric1_gate_clks),
574 	.nr_clk_ids		= PERIC1_NR_CLK,
575 	.clk_regs		= peric1_clk_regs,
576 	.nr_clk_regs		= ARRAY_SIZE(peric1_clk_regs),
577 };
578 
579 static void __init exynos7_clk_peric1_init(struct device_node *np)
580 {
581 	samsung_cmu_register_one(np, &peric1_cmu_info);
582 }
583 
584 CLK_OF_DECLARE(exynos7_clk_peric1, "samsung,exynos7-clock-peric1",
585 	exynos7_clk_peric1_init);
586 
587 /* Register Offset definitions for CMU_PERIS (0x10040000) */
588 #define MUX_SEL_PERIS			0x0200
589 #define ENABLE_PCLK_PERIS_SECURE_CHIPID	0x0910
590 #define ENABLE_SCLK_PERIS_SECURE_CHIPID	0x0A10
591 
592 /* List of parent clocks for Muxes in CMU_PERIS */
593 PNAME(mout_aclk_peris_66_p) = { "fin_pll", "dout_aclk_peris_66" };
594 
595 static unsigned long peris_clk_regs[] __initdata = {
596 	MUX_SEL_PERIS,
597 	ENABLE_PCLK_PERIS_SECURE_CHIPID,
598 	ENABLE_SCLK_PERIS_SECURE_CHIPID,
599 };
600 
601 static struct samsung_mux_clock peris_mux_clks[] __initdata = {
602 	MUX(0, "mout_aclk_peris_66_user",
603 		mout_aclk_peris_66_p, MUX_SEL_PERIS, 0, 1),
604 };
605 
606 static struct samsung_gate_clock peris_gate_clks[] __initdata = {
607 	GATE(PCLK_CHIPID, "pclk_chipid", "mout_aclk_peris_66_user",
608 		ENABLE_PCLK_PERIS_SECURE_CHIPID, 0, 0, 0),
609 	GATE(SCLK_CHIPID, "sclk_chipid", "fin_pll",
610 		ENABLE_SCLK_PERIS_SECURE_CHIPID, 0, 0, 0),
611 };
612 
613 static struct samsung_cmu_info peris_cmu_info __initdata = {
614 	.mux_clks		= peris_mux_clks,
615 	.nr_mux_clks		= ARRAY_SIZE(peris_mux_clks),
616 	.gate_clks		= peris_gate_clks,
617 	.nr_gate_clks		= ARRAY_SIZE(peris_gate_clks),
618 	.nr_clk_ids		= PERIS_NR_CLK,
619 	.clk_regs		= peris_clk_regs,
620 	.nr_clk_regs		= ARRAY_SIZE(peris_clk_regs),
621 };
622 
623 static void __init exynos7_clk_peris_init(struct device_node *np)
624 {
625 	samsung_cmu_register_one(np, &peris_cmu_info);
626 }
627 
628 CLK_OF_DECLARE(exynos7_clk_peris, "samsung,exynos7-clock-peris",
629 	exynos7_clk_peris_init);
630 
631 /* Register Offset definitions for CMU_FSYS0 (0x10E90000) */
632 #define MUX_SEL_FSYS00			0x0200
633 #define MUX_SEL_FSYS01			0x0204
634 #define ENABLE_ACLK_FSYS01		0x0804
635 
636 /*
637  * List of parent clocks for Muxes in CMU_FSYS0
638  */
639 PNAME(mout_aclk_fsys0_200_p)	= { "fin_pll", "dout_aclk_fsys0_200" };
640 PNAME(mout_sclk_mmc2_p)		= { "fin_pll", "sclk_mmc2" };
641 
642 static unsigned long fsys0_clk_regs[] __initdata = {
643 	MUX_SEL_FSYS00,
644 	MUX_SEL_FSYS01,
645 	ENABLE_ACLK_FSYS01,
646 };
647 
648 static struct samsung_mux_clock fsys0_mux_clks[] __initdata = {
649 	MUX(0, "mout_aclk_fsys0_200_user", mout_aclk_fsys0_200_p,
650 		MUX_SEL_FSYS00, 24, 1),
651 
652 	MUX(0, "mout_sclk_mmc2_user", mout_sclk_mmc2_p, MUX_SEL_FSYS01, 24, 1),
653 };
654 
655 static struct samsung_gate_clock fsys0_gate_clks[] __initdata = {
656 	GATE(ACLK_MMC2, "aclk_mmc2", "mout_aclk_fsys0_200_user",
657 		ENABLE_ACLK_FSYS01, 31, 0, 0),
658 };
659 
660 static struct samsung_cmu_info fsys0_cmu_info __initdata = {
661 	.mux_clks		= fsys0_mux_clks,
662 	.nr_mux_clks		= ARRAY_SIZE(fsys0_mux_clks),
663 	.gate_clks		= fsys0_gate_clks,
664 	.nr_gate_clks		= ARRAY_SIZE(fsys0_gate_clks),
665 	.nr_clk_ids		= TOP1_NR_CLK,
666 	.clk_regs		= fsys0_clk_regs,
667 	.nr_clk_regs		= ARRAY_SIZE(fsys0_clk_regs),
668 };
669 
670 static void __init exynos7_clk_fsys0_init(struct device_node *np)
671 {
672 	samsung_cmu_register_one(np, &fsys0_cmu_info);
673 }
674 
675 CLK_OF_DECLARE(exynos7_clk_fsys0, "samsung,exynos7-clock-fsys0",
676 	exynos7_clk_fsys0_init);
677 
678 /* Register Offset definitions for CMU_FSYS1 (0x156E0000) */
679 #define MUX_SEL_FSYS10			0x0200
680 #define MUX_SEL_FSYS11			0x0204
681 #define ENABLE_ACLK_FSYS1		0x0800
682 
683 /*
684  * List of parent clocks for Muxes in CMU_FSYS1
685  */
686 PNAME(mout_aclk_fsys1_200_p)	= { "fin_pll",  "dout_aclk_fsys1_200" };
687 PNAME(mout_sclk_mmc0_p)		= { "fin_pll", "sclk_mmc0" };
688 PNAME(mout_sclk_mmc1_p)		= { "fin_pll", "sclk_mmc1" };
689 
690 static unsigned long fsys1_clk_regs[] __initdata = {
691 	MUX_SEL_FSYS10,
692 	MUX_SEL_FSYS11,
693 	ENABLE_ACLK_FSYS1,
694 };
695 
696 static struct samsung_mux_clock fsys1_mux_clks[] __initdata = {
697 	MUX(0, "mout_aclk_fsys1_200_user", mout_aclk_fsys1_200_p,
698 		MUX_SEL_FSYS10, 28, 1),
699 
700 	MUX(0, "mout_sclk_mmc1_user", mout_sclk_mmc1_p, MUX_SEL_FSYS11, 24, 1),
701 	MUX(0, "mout_sclk_mmc0_user", mout_sclk_mmc0_p, MUX_SEL_FSYS11, 28, 1),
702 };
703 
704 static struct samsung_gate_clock fsys1_gate_clks[] __initdata = {
705 	GATE(ACLK_MMC1, "aclk_mmc1", "mout_aclk_fsys1_200_user",
706 		ENABLE_ACLK_FSYS1, 29, 0, 0),
707 	GATE(ACLK_MMC0, "aclk_mmc0", "mout_aclk_fsys1_200_user",
708 		ENABLE_ACLK_FSYS1, 30, 0, 0),
709 };
710 
711 static struct samsung_cmu_info fsys1_cmu_info __initdata = {
712 	.mux_clks		= fsys1_mux_clks,
713 	.nr_mux_clks		= ARRAY_SIZE(fsys1_mux_clks),
714 	.gate_clks		= fsys1_gate_clks,
715 	.nr_gate_clks		= ARRAY_SIZE(fsys1_gate_clks),
716 	.nr_clk_ids		= TOP1_NR_CLK,
717 	.clk_regs		= fsys1_clk_regs,
718 	.nr_clk_regs		= ARRAY_SIZE(fsys1_clk_regs),
719 };
720 
721 static void __init exynos7_clk_fsys1_init(struct device_node *np)
722 {
723 	samsung_cmu_register_one(np, &fsys1_cmu_info);
724 }
725 
726 CLK_OF_DECLARE(exynos7_clk_fsys1, "samsung,exynos7-clock-fsys1",
727 	exynos7_clk_fsys1_init);
728