1 // SPDX-License-Identifier: GPL-2.0
3 * Nuvoton NPCM7xx Clock Generator
4 * All the clocks are initialized by the bootloader, so this driver allow only
5 * reading of current settings directly from the hardware.
7 * Copyright (C) 2018 Nuvoton Technologies tali.perry@nuvoton.com
10 #include <linux/module.h>
11 #include <linux/clk-provider.h>
13 #include <linux/kernel.h>
15 #include <linux/of_address.h>
16 #include <linux/slab.h>
17 #include <linux/err.h>
18 #include <linux/bitfield.h>
20 #include <dt-bindings/clock/nuvoton,npcm7xx-clock.h>
22 struct npcm7xx_clk_pll
{
28 #define to_npcm7xx_clk_pll(_hw) container_of(_hw, struct npcm7xx_clk_pll, hw)
30 #define PLLCON_LOKI BIT(31)
31 #define PLLCON_LOKS BIT(30)
32 #define PLLCON_FBDV GENMASK(27, 16)
33 #define PLLCON_OTDV2 GENMASK(15, 13)
34 #define PLLCON_PWDEN BIT(12)
35 #define PLLCON_OTDV1 GENMASK(10, 8)
36 #define PLLCON_INDV GENMASK(5, 0)
38 static unsigned long npcm7xx_clk_pll_recalc_rate(struct clk_hw
*hw
,
39 unsigned long parent_rate
)
41 struct npcm7xx_clk_pll
*pll
= to_npcm7xx_clk_pll(hw
);
42 unsigned long fbdv
, indv
, otdv1
, otdv2
;
46 if (parent_rate
== 0) {
47 pr_err("%s: parent rate is zero", __func__
);
51 val
= readl_relaxed(pll
->pllcon
);
53 indv
= FIELD_GET(PLLCON_INDV
, val
);
54 fbdv
= FIELD_GET(PLLCON_FBDV
, val
);
55 otdv1
= FIELD_GET(PLLCON_OTDV1
, val
);
56 otdv2
= FIELD_GET(PLLCON_OTDV2
, val
);
58 ret
= (u64
)parent_rate
* fbdv
;
59 do_div(ret
, indv
* otdv1
* otdv2
);
64 static const struct clk_ops npcm7xx_clk_pll_ops
= {
65 .recalc_rate
= npcm7xx_clk_pll_recalc_rate
,
68 static struct clk_hw
*
69 npcm7xx_clk_register_pll(void __iomem
*pllcon
, const char *name
,
70 const char *parent_name
, unsigned long flags
)
72 struct npcm7xx_clk_pll
*pll
;
73 struct clk_init_data init
;
77 pll
= kzalloc(sizeof(*pll
), GFP_KERNEL
);
79 return ERR_PTR(-ENOMEM
);
81 pr_debug("%s reg, name=%s, p=%s\n", __func__
, name
, parent_name
);
84 init
.ops
= &npcm7xx_clk_pll_ops
;
85 init
.parent_names
= &parent_name
;
94 ret
= clk_hw_register(NULL
, hw
);
103 #define NPCM7XX_CLKEN1 (0x00)
104 #define NPCM7XX_CLKEN2 (0x28)
105 #define NPCM7XX_CLKEN3 (0x30)
106 #define NPCM7XX_CLKSEL (0x04)
107 #define NPCM7XX_CLKDIV1 (0x08)
108 #define NPCM7XX_CLKDIV2 (0x2C)
109 #define NPCM7XX_CLKDIV3 (0x58)
110 #define NPCM7XX_PLLCON0 (0x0C)
111 #define NPCM7XX_PLLCON1 (0x10)
112 #define NPCM7XX_PLLCON2 (0x54)
113 #define NPCM7XX_SWRSTR (0x14)
114 #define NPCM7XX_IRQWAKECON (0x18)
115 #define NPCM7XX_IRQWAKEFLAG (0x1C)
116 #define NPCM7XX_IPSRST1 (0x20)
117 #define NPCM7XX_IPSRST2 (0x24)
118 #define NPCM7XX_IPSRST3 (0x34)
119 #define NPCM7XX_WD0RCR (0x38)
120 #define NPCM7XX_WD1RCR (0x3C)
121 #define NPCM7XX_WD2RCR (0x40)
122 #define NPCM7XX_SWRSTC1 (0x44)
123 #define NPCM7XX_SWRSTC2 (0x48)
124 #define NPCM7XX_SWRSTC3 (0x4C)
125 #define NPCM7XX_SWRSTC4 (0x50)
126 #define NPCM7XX_CORSTC (0x5C)
127 #define NPCM7XX_PLLCONG (0x60)
128 #define NPCM7XX_AHBCKFI (0x64)
129 #define NPCM7XX_SECCNT (0x68)
130 #define NPCM7XX_CNTR25M (0x6C)
132 struct npcm7xx_clk_gate_data
{
136 const char *parent_name
;
139 * If this clock is exported via DT, set onecell_idx to constant
140 * defined in include/dt-bindings/clock/nuvoton, NPCM7XX-clock.h for
141 * this specific clock. Otherwise, set to -1.
146 struct npcm7xx_clk_mux_data
{
151 const char * const *parent_names
;
155 * If this clock is exported via DT, set onecell_idx to constant
156 * defined in include/dt-bindings/clock/nuvoton, NPCM7XX-clock.h for
157 * this specific clock. Otherwise, set to -1.
163 struct npcm7xx_clk_div_fixed_data
{
167 const char *parent_name
;
168 u8 clk_divider_flags
;
170 * If this clock is exported via DT, set onecell_idx to constant
171 * defined in include/dt-bindings/clock/nuvoton, NPCM7XX-clock.h for
172 * this specific clock. Otherwise, set to -1.
178 struct npcm7xx_clk_div_data
{
183 const char *parent_name
;
184 u8 clk_divider_flags
;
187 * If this clock is exported via DT, set onecell_idx to constant
188 * defined in include/dt-bindings/clock/nuvoton, NPCM7XX-clock.h for
189 * this specific clock. Otherwise, set to -1.
194 struct npcm7xx_clk_pll_data
{
197 const char *parent_name
;
200 * If this clock is exported via DT, set onecell_idx to constant
201 * defined in include/dt-bindings/clock/nuvoton, NPCM7XX-clock.h for
202 * this specific clock. Otherwise, set to -1.
208 * Single copy of strings used to refer to clocks within this driver indexed by
211 #define NPCM7XX_CLK_S_REFCLK "refclk"
212 #define NPCM7XX_CLK_S_SYSBYPCK "sysbypck"
213 #define NPCM7XX_CLK_S_MCBYPCK "mcbypck"
214 #define NPCM7XX_CLK_S_GFXBYPCK "gfxbypck"
215 #define NPCM7XX_CLK_S_PLL0 "pll0"
216 #define NPCM7XX_CLK_S_PLL1 "pll1"
217 #define NPCM7XX_CLK_S_PLL1_DIV2 "pll1_div2"
218 #define NPCM7XX_CLK_S_PLL2 "pll2"
219 #define NPCM7XX_CLK_S_PLL_GFX "pll_gfx"
220 #define NPCM7XX_CLK_S_PLL2_DIV2 "pll2_div2"
221 #define NPCM7XX_CLK_S_PIX_MUX "gfx_pixel"
222 #define NPCM7XX_CLK_S_GPRFSEL_MUX "gprfsel_mux"
223 #define NPCM7XX_CLK_S_MC_MUX "mc_phy"
224 #define NPCM7XX_CLK_S_CPU_MUX "cpu" /*AKA system clock.*/
225 #define NPCM7XX_CLK_S_MC "mc"
226 #define NPCM7XX_CLK_S_AXI "axi" /*AKA CLK2*/
227 #define NPCM7XX_CLK_S_AHB "ahb" /*AKA CLK4*/
228 #define NPCM7XX_CLK_S_CLKOUT_MUX "clkout_mux"
229 #define NPCM7XX_CLK_S_UART_MUX "uart_mux"
230 #define NPCM7XX_CLK_S_TIM_MUX "timer_mux"
231 #define NPCM7XX_CLK_S_SD_MUX "sd_mux"
232 #define NPCM7XX_CLK_S_GFXM_MUX "gfxm_mux"
233 #define NPCM7XX_CLK_S_SU_MUX "serial_usb_mux"
234 #define NPCM7XX_CLK_S_DVC_MUX "dvc_mux"
235 #define NPCM7XX_CLK_S_GFX_MUX "gfx_mux"
236 #define NPCM7XX_CLK_S_GFX_PIXEL "gfx_pixel"
237 #define NPCM7XX_CLK_S_SPI0 "spi0"
238 #define NPCM7XX_CLK_S_SPI3 "spi3"
239 #define NPCM7XX_CLK_S_SPIX "spix"
240 #define NPCM7XX_CLK_S_APB1 "apb1"
241 #define NPCM7XX_CLK_S_APB2 "apb2"
242 #define NPCM7XX_CLK_S_APB3 "apb3"
243 #define NPCM7XX_CLK_S_APB4 "apb4"
244 #define NPCM7XX_CLK_S_APB5 "apb5"
245 #define NPCM7XX_CLK_S_TOCK "tock"
246 #define NPCM7XX_CLK_S_CLKOUT "clkout"
247 #define NPCM7XX_CLK_S_UART "uart"
248 #define NPCM7XX_CLK_S_TIMER "timer"
249 #define NPCM7XX_CLK_S_MMC "mmc"
250 #define NPCM7XX_CLK_S_SDHC "sdhc"
251 #define NPCM7XX_CLK_S_ADC "adc"
252 #define NPCM7XX_CLK_S_GFX "gfx0_gfx1_mem"
253 #define NPCM7XX_CLK_S_USBIF "serial_usbif"
254 #define NPCM7XX_CLK_S_USB_HOST "usb_host"
255 #define NPCM7XX_CLK_S_USB_BRIDGE "usb_bridge"
256 #define NPCM7XX_CLK_S_PCI "pci"
258 static u32 pll_mux_table
[] = {0, 1, 2, 3};
259 static const char * const pll_mux_parents
[] __initconst
= {
261 NPCM7XX_CLK_S_PLL1_DIV2
,
262 NPCM7XX_CLK_S_REFCLK
,
263 NPCM7XX_CLK_S_PLL2_DIV2
,
266 static u32 cpuck_mux_table
[] = {0, 1, 2, 3};
267 static const char * const cpuck_mux_parents
[] __initconst
= {
269 NPCM7XX_CLK_S_PLL1_DIV2
,
270 NPCM7XX_CLK_S_REFCLK
,
271 NPCM7XX_CLK_S_SYSBYPCK
,
274 static u32 pixcksel_mux_table
[] = {0, 2};
275 static const char * const pixcksel_mux_parents
[] __initconst
= {
276 NPCM7XX_CLK_S_PLL_GFX
,
277 NPCM7XX_CLK_S_REFCLK
,
280 static u32 sucksel_mux_table
[] = {2, 3};
281 static const char * const sucksel_mux_parents
[] __initconst
= {
282 NPCM7XX_CLK_S_REFCLK
,
283 NPCM7XX_CLK_S_PLL2_DIV2
,
286 static u32 mccksel_mux_table
[] = {0, 2, 3};
287 static const char * const mccksel_mux_parents
[] __initconst
= {
288 NPCM7XX_CLK_S_PLL1_DIV2
,
289 NPCM7XX_CLK_S_REFCLK
,
290 NPCM7XX_CLK_S_MCBYPCK
,
293 static u32 clkoutsel_mux_table
[] = {0, 1, 2, 3, 4};
294 static const char * const clkoutsel_mux_parents
[] __initconst
= {
296 NPCM7XX_CLK_S_PLL1_DIV2
,
297 NPCM7XX_CLK_S_REFCLK
,
298 NPCM7XX_CLK_S_PLL_GFX
, // divided by 2
299 NPCM7XX_CLK_S_PLL2_DIV2
,
302 static u32 gfxmsel_mux_table
[] = {2, 3};
303 static const char * const gfxmsel_mux_parents
[] __initconst
= {
304 NPCM7XX_CLK_S_REFCLK
,
305 NPCM7XX_CLK_S_PLL2_DIV2
,
308 static u32 dvcssel_mux_table
[] = {2, 3};
309 static const char * const dvcssel_mux_parents
[] __initconst
= {
310 NPCM7XX_CLK_S_REFCLK
,
314 static const struct npcm7xx_clk_pll_data npcm7xx_plls
[] __initconst
= {
315 {NPCM7XX_PLLCON0
, NPCM7XX_CLK_S_PLL0
, NPCM7XX_CLK_S_REFCLK
, 0, -1},
317 {NPCM7XX_PLLCON1
, NPCM7XX_CLK_S_PLL1
,
318 NPCM7XX_CLK_S_REFCLK
, 0, -1},
320 {NPCM7XX_PLLCON2
, NPCM7XX_CLK_S_PLL2
,
321 NPCM7XX_CLK_S_REFCLK
, 0, -1},
323 {NPCM7XX_PLLCONG
, NPCM7XX_CLK_S_PLL_GFX
,
324 NPCM7XX_CLK_S_REFCLK
, 0, -1},
327 static const struct npcm7xx_clk_mux_data npcm7xx_muxes
[] __initconst
= {
328 {0, GENMASK(1, 0), cpuck_mux_table
, NPCM7XX_CLK_S_CPU_MUX
,
329 cpuck_mux_parents
, ARRAY_SIZE(cpuck_mux_parents
), CLK_IS_CRITICAL
,
332 {4, GENMASK(1, 0), pixcksel_mux_table
, NPCM7XX_CLK_S_PIX_MUX
,
333 pixcksel_mux_parents
, ARRAY_SIZE(pixcksel_mux_parents
), 0,
334 NPCM7XX_CLK_GFX_PIXEL
},
336 {6, GENMASK(1, 0), pll_mux_table
, NPCM7XX_CLK_S_SD_MUX
,
337 pll_mux_parents
, ARRAY_SIZE(pll_mux_parents
), 0, -1},
339 {8, GENMASK(1, 0), pll_mux_table
, NPCM7XX_CLK_S_UART_MUX
,
340 pll_mux_parents
, ARRAY_SIZE(pll_mux_parents
), 0, -1},
342 {10, GENMASK(1, 0), sucksel_mux_table
, NPCM7XX_CLK_S_SU_MUX
,
343 sucksel_mux_parents
, ARRAY_SIZE(sucksel_mux_parents
), 0, -1},
345 {12, GENMASK(1, 0), mccksel_mux_table
, NPCM7XX_CLK_S_MC_MUX
,
346 mccksel_mux_parents
, ARRAY_SIZE(mccksel_mux_parents
), 0, -1},
348 {14, GENMASK(1, 0), pll_mux_table
, NPCM7XX_CLK_S_TIM_MUX
,
349 pll_mux_parents
, ARRAY_SIZE(pll_mux_parents
), 0, -1},
351 {16, GENMASK(1, 0), pll_mux_table
, NPCM7XX_CLK_S_GFX_MUX
,
352 pll_mux_parents
, ARRAY_SIZE(pll_mux_parents
), 0, -1},
354 {18, GENMASK(2, 0), clkoutsel_mux_table
, NPCM7XX_CLK_S_CLKOUT_MUX
,
355 clkoutsel_mux_parents
, ARRAY_SIZE(clkoutsel_mux_parents
), 0, -1},
357 {21, GENMASK(1, 0), gfxmsel_mux_table
, NPCM7XX_CLK_S_GFXM_MUX
,
358 gfxmsel_mux_parents
, ARRAY_SIZE(gfxmsel_mux_parents
), 0, -1},
360 {23, GENMASK(1, 0), dvcssel_mux_table
, NPCM7XX_CLK_S_DVC_MUX
,
361 dvcssel_mux_parents
, ARRAY_SIZE(dvcssel_mux_parents
), 0, -1},
364 /* fixed ratio dividers (no register): */
365 static const struct npcm7xx_clk_div_fixed_data npcm7xx_divs_fx
[] __initconst
= {
366 { 1, 2, NPCM7XX_CLK_S_MC
, NPCM7XX_CLK_S_MC_MUX
, 0, NPCM7XX_CLK_MC
},
367 { 1, 2, NPCM7XX_CLK_S_PLL1_DIV2
, NPCM7XX_CLK_S_PLL1
, 0, -1},
368 { 1, 2, NPCM7XX_CLK_S_PLL2_DIV2
, NPCM7XX_CLK_S_PLL2
, 0, -1},
371 /* configurable dividers: */
372 static const struct npcm7xx_clk_div_data npcm7xx_divs
[] __initconst
= {
373 {NPCM7XX_CLKDIV1
, 28, 3, NPCM7XX_CLK_S_ADC
,
374 NPCM7XX_CLK_S_TIMER
, CLK_DIVIDER_POWER_OF_TWO
, 0, NPCM7XX_CLK_ADC
},
376 {NPCM7XX_CLKDIV1
, 26, 2, NPCM7XX_CLK_S_AHB
,
377 NPCM7XX_CLK_S_AXI
, 0, CLK_IS_CRITICAL
, NPCM7XX_CLK_AHB
},
379 {NPCM7XX_CLKDIV1
, 21, 5, NPCM7XX_CLK_S_TIMER
,
380 NPCM7XX_CLK_S_TIM_MUX
, 0, 0, NPCM7XX_CLK_TIMER
},
382 {NPCM7XX_CLKDIV1
, 16, 5, NPCM7XX_CLK_S_UART
,
383 NPCM7XX_CLK_S_UART_MUX
, 0, 0, NPCM7XX_CLK_UART
},
385 {NPCM7XX_CLKDIV1
, 11, 5, NPCM7XX_CLK_S_MMC
,
386 NPCM7XX_CLK_S_SD_MUX
, 0, 0, NPCM7XX_CLK_MMC
},
388 {NPCM7XX_CLKDIV1
, 6, 5, NPCM7XX_CLK_S_SPI3
,
389 NPCM7XX_CLK_S_AHB
, 0, 0, NPCM7XX_CLK_SPI3
},
391 {NPCM7XX_CLKDIV1
, 2, 4, NPCM7XX_CLK_S_PCI
,
392 NPCM7XX_CLK_S_GFX_MUX
, 0, 0, NPCM7XX_CLK_PCI
},
394 {NPCM7XX_CLKDIV1
, 0, 1, NPCM7XX_CLK_S_AXI
,
395 NPCM7XX_CLK_S_CPU_MUX
, CLK_DIVIDER_POWER_OF_TWO
, CLK_IS_CRITICAL
,
396 NPCM7XX_CLK_AXI
},/*0 CLK2DIV*/
398 {NPCM7XX_CLKDIV2
, 30, 2, NPCM7XX_CLK_S_APB4
,
399 NPCM7XX_CLK_S_AHB
, CLK_DIVIDER_POWER_OF_TWO
, 0, NPCM7XX_CLK_APB4
},
401 {NPCM7XX_CLKDIV2
, 28, 2, NPCM7XX_CLK_S_APB3
,
402 NPCM7XX_CLK_S_AHB
, CLK_DIVIDER_POWER_OF_TWO
, 0, NPCM7XX_CLK_APB3
},
404 {NPCM7XX_CLKDIV2
, 26, 2, NPCM7XX_CLK_S_APB2
,
405 NPCM7XX_CLK_S_AHB
, CLK_DIVIDER_POWER_OF_TWO
, 0, NPCM7XX_CLK_APB2
},
407 {NPCM7XX_CLKDIV2
, 24, 2, NPCM7XX_CLK_S_APB1
,
408 NPCM7XX_CLK_S_AHB
, CLK_DIVIDER_POWER_OF_TWO
, 0, NPCM7XX_CLK_APB1
},
410 {NPCM7XX_CLKDIV2
, 22, 2, NPCM7XX_CLK_S_APB5
,
411 NPCM7XX_CLK_S_AHB
, CLK_DIVIDER_POWER_OF_TWO
, 0, NPCM7XX_CLK_APB5
},
413 {NPCM7XX_CLKDIV2
, 16, 5, NPCM7XX_CLK_S_CLKOUT
,
414 NPCM7XX_CLK_S_CLKOUT_MUX
, 0, 0, NPCM7XX_CLK_CLKOUT
},
416 {NPCM7XX_CLKDIV2
, 13, 3, NPCM7XX_CLK_S_GFX
,
417 NPCM7XX_CLK_S_GFX_MUX
, 0, 0, NPCM7XX_CLK_GFX
},
419 {NPCM7XX_CLKDIV2
, 8, 5, NPCM7XX_CLK_S_USB_BRIDGE
,
420 NPCM7XX_CLK_S_SU_MUX
, 0, 0, NPCM7XX_CLK_SU
},
422 {NPCM7XX_CLKDIV2
, 4, 4, NPCM7XX_CLK_S_USB_HOST
,
423 NPCM7XX_CLK_S_SU_MUX
, 0, 0, NPCM7XX_CLK_SU48
},
425 {NPCM7XX_CLKDIV2
, 0, 4, NPCM7XX_CLK_S_SDHC
,
426 NPCM7XX_CLK_S_SD_MUX
, 0, 0, NPCM7XX_CLK_SDHC
}
429 {NPCM7XX_CLKDIV3
, 6, 5, NPCM7XX_CLK_S_SPI0
,
430 NPCM7XX_CLK_S_AHB
, 0, 0, NPCM7XX_CLK_SPI0
},
432 {NPCM7XX_CLKDIV3
, 1, 5, NPCM7XX_CLK_S_SPIX
,
433 NPCM7XX_CLK_S_AHB
, 0, 0, NPCM7XX_CLK_SPIX
},
438 static const struct npcm7xx_clk_gate_data npcm7xx_gates
[] __initconst
= {
439 {NPCM7XX_CLKEN1
, 31, "smb1-gate", NPCM7XX_CLK_S_APB2
, 0},
440 {NPCM7XX_CLKEN1
, 30, "smb0-gate", NPCM7XX_CLK_S_APB2
, 0},
441 {NPCM7XX_CLKEN1
, 29, "smb7-gate", NPCM7XX_CLK_S_APB2
, 0},
442 {NPCM7XX_CLKEN1
, 28, "smb6-gate", NPCM7XX_CLK_S_APB2
, 0},
443 {NPCM7XX_CLKEN1
, 27, "adc-gate", NPCM7XX_CLK_S_APB1
, 0},
444 {NPCM7XX_CLKEN1
, 26, "wdt-gate", NPCM7XX_CLK_S_TIMER
, 0},
445 {NPCM7XX_CLKEN1
, 25, "usbdev3-gate", NPCM7XX_CLK_S_AHB
, 0},
446 {NPCM7XX_CLKEN1
, 24, "usbdev6-gate", NPCM7XX_CLK_S_AHB
, 0},
447 {NPCM7XX_CLKEN1
, 23, "usbdev5-gate", NPCM7XX_CLK_S_AHB
, 0},
448 {NPCM7XX_CLKEN1
, 22, "usbdev4-gate", NPCM7XX_CLK_S_AHB
, 0},
449 {NPCM7XX_CLKEN1
, 21, "emc2-gate", NPCM7XX_CLK_S_AHB
, 0},
450 {NPCM7XX_CLKEN1
, 20, "timer5_9-gate", NPCM7XX_CLK_S_APB1
, 0},
451 {NPCM7XX_CLKEN1
, 19, "timer0_4-gate", NPCM7XX_CLK_S_APB1
, 0},
452 {NPCM7XX_CLKEN1
, 18, "pwmm0-gate", NPCM7XX_CLK_S_APB3
, 0},
453 {NPCM7XX_CLKEN1
, 17, "huart-gate", NPCM7XX_CLK_S_UART
, 0},
454 {NPCM7XX_CLKEN1
, 16, "smb5-gate", NPCM7XX_CLK_S_APB2
, 0},
455 {NPCM7XX_CLKEN1
, 15, "smb4-gate", NPCM7XX_CLK_S_APB2
, 0},
456 {NPCM7XX_CLKEN1
, 14, "smb3-gate", NPCM7XX_CLK_S_APB2
, 0},
457 {NPCM7XX_CLKEN1
, 13, "smb2-gate", NPCM7XX_CLK_S_APB2
, 0},
458 {NPCM7XX_CLKEN1
, 12, "mc-gate", NPCM7XX_CLK_S_MC
, 0},
459 {NPCM7XX_CLKEN1
, 11, "uart01-gate", NPCM7XX_CLK_S_APB1
, 0},
460 {NPCM7XX_CLKEN1
, 10, "aes-gate", NPCM7XX_CLK_S_AHB
, 0},
461 {NPCM7XX_CLKEN1
, 9, "peci-gate", NPCM7XX_CLK_S_APB3
, 0},
462 {NPCM7XX_CLKEN1
, 8, "usbdev2-gate", NPCM7XX_CLK_S_AHB
, 0},
463 {NPCM7XX_CLKEN1
, 7, "uart23-gate", NPCM7XX_CLK_S_APB1
, 0},
464 {NPCM7XX_CLKEN1
, 6, "emc1-gate", NPCM7XX_CLK_S_AHB
, 0},
465 {NPCM7XX_CLKEN1
, 5, "usbdev1-gate", NPCM7XX_CLK_S_AHB
, 0},
466 {NPCM7XX_CLKEN1
, 4, "shm-gate", NPCM7XX_CLK_S_AHB
, 0},
467 /* bit 3 is reserved */
468 {NPCM7XX_CLKEN1
, 2, "kcs-gate", NPCM7XX_CLK_S_APB1
, 0},
469 {NPCM7XX_CLKEN1
, 1, "spi3-gate", NPCM7XX_CLK_S_AHB
, 0},
470 {NPCM7XX_CLKEN1
, 0, "spi0-gate", NPCM7XX_CLK_S_AHB
, 0},
472 {NPCM7XX_CLKEN2
, 31, "cp-gate", NPCM7XX_CLK_S_AHB
, 0},
473 {NPCM7XX_CLKEN2
, 30, "tock-gate", NPCM7XX_CLK_S_TOCK
, 0},
474 /* bit 29 is reserved */
475 {NPCM7XX_CLKEN2
, 28, "gmac1-gate", NPCM7XX_CLK_S_AHB
, 0},
476 {NPCM7XX_CLKEN2
, 27, "usbif-gate", NPCM7XX_CLK_S_USBIF
, 0},
477 {NPCM7XX_CLKEN2
, 26, "usbhost-gate", NPCM7XX_CLK_S_AHB
, 0},
478 {NPCM7XX_CLKEN2
, 25, "gmac2-gate", NPCM7XX_CLK_S_AHB
, 0},
479 /* bit 24 is reserved */
480 {NPCM7XX_CLKEN2
, 23, "pspi2-gate", NPCM7XX_CLK_S_APB5
, 0},
481 {NPCM7XX_CLKEN2
, 22, "pspi1-gate", NPCM7XX_CLK_S_APB5
, 0},
482 {NPCM7XX_CLKEN2
, 21, "3des-gate", NPCM7XX_CLK_S_AHB
, 0},
483 /* bit 20 is reserved */
484 {NPCM7XX_CLKEN2
, 19, "siox2-gate", NPCM7XX_CLK_S_APB3
, 0},
485 {NPCM7XX_CLKEN2
, 18, "siox1-gate", NPCM7XX_CLK_S_APB3
, 0},
486 /* bit 17 is reserved */
487 {NPCM7XX_CLKEN2
, 16, "fuse-gate", NPCM7XX_CLK_S_APB4
, 0},
488 /* bit 15 is reserved */
489 {NPCM7XX_CLKEN2
, 14, "vcd-gate", NPCM7XX_CLK_S_AHB
, 0},
490 {NPCM7XX_CLKEN2
, 13, "ece-gate", NPCM7XX_CLK_S_AHB
, 0},
491 {NPCM7XX_CLKEN2
, 12, "vdma-gate", NPCM7XX_CLK_S_AHB
, 0},
492 {NPCM7XX_CLKEN2
, 11, "ahbpcibrg-gate", NPCM7XX_CLK_S_AHB
, 0},
493 {NPCM7XX_CLKEN2
, 10, "gfxsys-gate", NPCM7XX_CLK_S_APB1
, 0},
494 {NPCM7XX_CLKEN2
, 9, "sdhc-gate", NPCM7XX_CLK_S_AHB
, 0},
495 {NPCM7XX_CLKEN2
, 8, "mmc-gate", NPCM7XX_CLK_S_AHB
, 0},
496 {NPCM7XX_CLKEN2
, 7, "mft7-gate", NPCM7XX_CLK_S_APB4
, 0},
497 {NPCM7XX_CLKEN2
, 6, "mft6-gate", NPCM7XX_CLK_S_APB4
, 0},
498 {NPCM7XX_CLKEN2
, 5, "mft5-gate", NPCM7XX_CLK_S_APB4
, 0},
499 {NPCM7XX_CLKEN2
, 4, "mft4-gate", NPCM7XX_CLK_S_APB4
, 0},
500 {NPCM7XX_CLKEN2
, 3, "mft3-gate", NPCM7XX_CLK_S_APB4
, 0},
501 {NPCM7XX_CLKEN2
, 2, "mft2-gate", NPCM7XX_CLK_S_APB4
, 0},
502 {NPCM7XX_CLKEN2
, 1, "mft1-gate", NPCM7XX_CLK_S_APB4
, 0},
503 {NPCM7XX_CLKEN2
, 0, "mft0-gate", NPCM7XX_CLK_S_APB4
, 0},
505 {NPCM7XX_CLKEN3
, 31, "gpiom7-gate", NPCM7XX_CLK_S_APB1
, 0},
506 {NPCM7XX_CLKEN3
, 30, "gpiom6-gate", NPCM7XX_CLK_S_APB1
, 0},
507 {NPCM7XX_CLKEN3
, 29, "gpiom5-gate", NPCM7XX_CLK_S_APB1
, 0},
508 {NPCM7XX_CLKEN3
, 28, "gpiom4-gate", NPCM7XX_CLK_S_APB1
, 0},
509 {NPCM7XX_CLKEN3
, 27, "gpiom3-gate", NPCM7XX_CLK_S_APB1
, 0},
510 {NPCM7XX_CLKEN3
, 26, "gpiom2-gate", NPCM7XX_CLK_S_APB1
, 0},
511 {NPCM7XX_CLKEN3
, 25, "gpiom1-gate", NPCM7XX_CLK_S_APB1
, 0},
512 {NPCM7XX_CLKEN3
, 24, "gpiom0-gate", NPCM7XX_CLK_S_APB1
, 0},
513 {NPCM7XX_CLKEN3
, 23, "espi-gate", NPCM7XX_CLK_S_APB2
, 0},
514 {NPCM7XX_CLKEN3
, 22, "smb11-gate", NPCM7XX_CLK_S_APB2
, 0},
515 {NPCM7XX_CLKEN3
, 21, "smb10-gate", NPCM7XX_CLK_S_APB2
, 0},
516 {NPCM7XX_CLKEN3
, 20, "smb9-gate", NPCM7XX_CLK_S_APB2
, 0},
517 {NPCM7XX_CLKEN3
, 19, "smb8-gate", NPCM7XX_CLK_S_APB2
, 0},
518 {NPCM7XX_CLKEN3
, 18, "smb15-gate", NPCM7XX_CLK_S_APB2
, 0},
519 {NPCM7XX_CLKEN3
, 17, "rng-gate", NPCM7XX_CLK_S_APB1
, 0},
520 {NPCM7XX_CLKEN3
, 16, "timer10_14-gate", NPCM7XX_CLK_S_APB1
, 0},
521 {NPCM7XX_CLKEN3
, 15, "pcirc-gate", NPCM7XX_CLK_S_AHB
, 0},
522 {NPCM7XX_CLKEN3
, 14, "sececc-gate", NPCM7XX_CLK_S_AHB
, 0},
523 {NPCM7XX_CLKEN3
, 13, "sha-gate", NPCM7XX_CLK_S_AHB
, 0},
524 {NPCM7XX_CLKEN3
, 12, "smb14-gate", NPCM7XX_CLK_S_APB2
, 0},
525 /* bit 11 is reserved */
526 /* bit 10 is reserved */
527 {NPCM7XX_CLKEN3
, 9, "pcimbx-gate", NPCM7XX_CLK_S_AHB
, 0},
528 /* bit 8 is reserved */
529 {NPCM7XX_CLKEN3
, 7, "usbdev9-gate", NPCM7XX_CLK_S_AHB
, 0},
530 {NPCM7XX_CLKEN3
, 6, "usbdev8-gate", NPCM7XX_CLK_S_AHB
, 0},
531 {NPCM7XX_CLKEN3
, 5, "usbdev7-gate", NPCM7XX_CLK_S_AHB
, 0},
532 {NPCM7XX_CLKEN3
, 4, "usbdev0-gate", NPCM7XX_CLK_S_AHB
, 0},
533 {NPCM7XX_CLKEN3
, 3, "smb13-gate", NPCM7XX_CLK_S_APB2
, 0},
534 {NPCM7XX_CLKEN3
, 2, "spix-gate", NPCM7XX_CLK_S_AHB
, 0},
535 {NPCM7XX_CLKEN3
, 1, "smb12-gate", NPCM7XX_CLK_S_APB2
, 0},
536 {NPCM7XX_CLKEN3
, 0, "pwmm1-gate", NPCM7XX_CLK_S_APB3
, 0},
539 static DEFINE_SPINLOCK(npcm7xx_clk_lock
);
541 static void __init
npcm7xx_clk_init(struct device_node
*clk_np
)
543 struct clk_hw_onecell_data
*npcm7xx_clk_data
;
544 void __iomem
*clk_base
;
550 ret
= of_address_to_resource(clk_np
, 0, &res
);
552 pr_err("%s: failed to get resource, ret %d\n", clk_np
->name
,
557 clk_base
= ioremap(res
.start
, resource_size(&res
));
559 goto npcm7xx_init_error
;
561 npcm7xx_clk_data
= kzalloc(sizeof(*npcm7xx_clk_data
->hws
) *
562 NPCM7XX_NUM_CLOCKS
+ sizeof(npcm7xx_clk_data
), GFP_KERNEL
);
563 if (!npcm7xx_clk_data
)
564 goto npcm7xx_init_np_err
;
566 npcm7xx_clk_data
->num
= NPCM7XX_NUM_CLOCKS
;
568 for (i
= 0; i
< NPCM7XX_NUM_CLOCKS
; i
++)
569 npcm7xx_clk_data
->hws
[i
] = ERR_PTR(-EPROBE_DEFER
);
572 for (i
= 0; i
< ARRAY_SIZE(npcm7xx_plls
); i
++) {
573 const struct npcm7xx_clk_pll_data
*pll_data
= &npcm7xx_plls
[i
];
575 hw
= npcm7xx_clk_register_pll(clk_base
+ pll_data
->reg
,
576 pll_data
->name
, pll_data
->parent_name
, pll_data
->flags
);
578 pr_err("npcm7xx_clk: Can't register pll\n");
579 goto npcm7xx_init_fail
;
582 if (pll_data
->onecell_idx
>= 0)
583 npcm7xx_clk_data
->hws
[pll_data
->onecell_idx
] = hw
;
586 /* Register fixed dividers */
587 hw
= clk_hw_register_fixed_factor(NULL
, NPCM7XX_CLK_S_PLL1_DIV2
,
588 NPCM7XX_CLK_S_PLL1
, 0, 1, 2);
590 pr_err("npcm7xx_clk: Can't register fixed div\n");
591 goto npcm7xx_init_fail
;
594 hw
= clk_hw_register_fixed_factor(NULL
, NPCM7XX_CLK_S_PLL2_DIV2
,
595 NPCM7XX_CLK_S_PLL2
, 0, 1, 2);
597 pr_err("npcm7xx_clk: Can't register div2\n");
598 goto npcm7xx_init_fail
;
602 for (i
= 0; i
< ARRAY_SIZE(npcm7xx_muxes
); i
++) {
603 const struct npcm7xx_clk_mux_data
*mux_data
= &npcm7xx_muxes
[i
];
605 hw
= clk_hw_register_mux_table(NULL
,
607 mux_data
->parent_names
, mux_data
->num_parents
,
608 mux_data
->flags
, clk_base
+ NPCM7XX_CLKSEL
,
609 mux_data
->shift
, mux_data
->mask
, 0,
610 mux_data
->table
, &npcm7xx_clk_lock
);
613 pr_err("npcm7xx_clk: Can't register mux\n");
614 goto npcm7xx_init_fail
;
617 if (mux_data
->onecell_idx
>= 0)
618 npcm7xx_clk_data
->hws
[mux_data
->onecell_idx
] = hw
;
621 /* Register clock dividers specified in npcm7xx_divs */
622 for (i
= 0; i
< ARRAY_SIZE(npcm7xx_divs
); i
++) {
623 const struct npcm7xx_clk_div_data
*div_data
= &npcm7xx_divs
[i
];
625 hw
= clk_hw_register_divider(NULL
, div_data
->name
,
626 div_data
->parent_name
,
628 clk_base
+ div_data
->reg
,
629 div_data
->shift
, div_data
->width
,
630 div_data
->clk_divider_flags
, &npcm7xx_clk_lock
);
632 pr_err("npcm7xx_clk: Can't register div table\n");
633 goto npcm7xx_init_fail
;
636 if (div_data
->onecell_idx
>= 0)
637 npcm7xx_clk_data
->hws
[div_data
->onecell_idx
] = hw
;
640 ret
= of_clk_add_hw_provider(clk_np
, of_clk_hw_onecell_get
,
643 pr_err("failed to add DT provider: %d\n", ret
);
650 kfree(npcm7xx_clk_data
->hws
);
656 CLK_OF_DECLARE(npcm7xx_clk_init
, "nuvoton,npcm750-clk", npcm7xx_clk_init
);