x86/mm: Add TLB purge to free pmd/pte page interfaces
[linux/fpc-iii.git] / drivers / clk / sirf / clk-common.c
blob77e1e2491689b9c37e943c43e8fabf5778a561aa
1 /*
2 * common clks module for all SiRF SoCs
4 * Copyright (c) 2011 - 2014 Cambridge Silicon Radio Limited, a CSR plc group
5 * company.
7 * Licensed under GPLv2 or later.
8 */
10 #include <linux/clk.h>
12 #define KHZ 1000
13 #define MHZ (KHZ * KHZ)
15 static void __iomem *sirfsoc_clk_vbase;
16 static void __iomem *sirfsoc_rsc_vbase;
17 static struct clk_onecell_data clk_data;
20 * SiRFprimaII clock controller
21 * - 2 oscillators: osc-26MHz, rtc-32.768KHz
22 * - 3 standard configurable plls: pll1, pll2 & pll3
23 * - 2 exclusive plls: usb phy pll and sata phy pll
24 * - 8 clock domains: cpu/cpudiv, mem/memdiv, sys/io, dsp, graphic, multimedia,
25 * display and sdphy.
26 * Each clock domain can select its own clock source from five clock sources,
27 * X_XIN, X_XINW, PLL1, PLL2 and PLL3. The domain clock is used as the source
28 * clock of the group clock.
29 * - dsp domain: gps, mf
30 * - io domain: dmac, nand, audio, uart, i2c, spi, usp, pwm, pulse
31 * - sys domain: security
34 struct clk_pll {
35 struct clk_hw hw;
36 unsigned short regofs; /* register offset */
39 #define to_pllclk(_hw) container_of(_hw, struct clk_pll, hw)
41 struct clk_dmn {
42 struct clk_hw hw;
43 signed char enable_bit; /* enable bit: 0 ~ 63 */
44 unsigned short regofs; /* register offset */
47 #define to_dmnclk(_hw) container_of(_hw, struct clk_dmn, hw)
49 struct clk_std {
50 struct clk_hw hw;
51 signed char enable_bit; /* enable bit: 0 ~ 63 */
54 #define to_stdclk(_hw) container_of(_hw, struct clk_std, hw)
56 static int std_clk_is_enabled(struct clk_hw *hw);
57 static int std_clk_enable(struct clk_hw *hw);
58 static void std_clk_disable(struct clk_hw *hw);
60 static inline unsigned long clkc_readl(unsigned reg)
62 return readl(sirfsoc_clk_vbase + reg);
65 static inline void clkc_writel(u32 val, unsigned reg)
67 writel(val, sirfsoc_clk_vbase + reg);
71 * std pll
74 static unsigned long pll_clk_recalc_rate(struct clk_hw *hw,
75 unsigned long parent_rate)
77 unsigned long fin = parent_rate;
78 struct clk_pll *clk = to_pllclk(hw);
79 u32 regcfg2 = clk->regofs + SIRFSOC_CLKC_PLL1_CFG2 -
80 SIRFSOC_CLKC_PLL1_CFG0;
82 if (clkc_readl(regcfg2) & BIT(2)) {
83 /* pll bypass mode */
84 return fin;
85 } else {
86 /* fout = fin * nf / nr / od */
87 u32 cfg0 = clkc_readl(clk->regofs);
88 u32 nf = (cfg0 & (BIT(13) - 1)) + 1;
89 u32 nr = ((cfg0 >> 13) & (BIT(6) - 1)) + 1;
90 u32 od = ((cfg0 >> 19) & (BIT(4) - 1)) + 1;
91 WARN_ON(fin % MHZ);
92 return fin / MHZ * nf / nr / od * MHZ;
96 static long pll_clk_round_rate(struct clk_hw *hw, unsigned long rate,
97 unsigned long *parent_rate)
99 unsigned long fin, nf, nr, od;
100 u64 dividend;
103 * fout = fin * nf / (nr * od);
104 * set od = 1, nr = fin/MHz, so fout = nf * MHz
106 rate = rate - rate % MHZ;
108 nf = rate / MHZ;
109 if (nf > BIT(13))
110 nf = BIT(13);
111 if (nf < 1)
112 nf = 1;
114 fin = *parent_rate;
116 nr = fin / MHZ;
117 if (nr > BIT(6))
118 nr = BIT(6);
119 od = 1;
121 dividend = (u64)fin * nf;
122 do_div(dividend, nr * od);
124 return (long)dividend;
127 static int pll_clk_set_rate(struct clk_hw *hw, unsigned long rate,
128 unsigned long parent_rate)
130 struct clk_pll *clk = to_pllclk(hw);
131 unsigned long fin, nf, nr, od, reg;
134 * fout = fin * nf / (nr * od);
135 * set od = 1, nr = fin/MHz, so fout = nf * MHz
138 nf = rate / MHZ;
139 if (unlikely((rate % MHZ) || nf > BIT(13) || nf < 1))
140 return -EINVAL;
142 fin = parent_rate;
143 BUG_ON(fin < MHZ);
145 nr = fin / MHZ;
146 BUG_ON((fin % MHZ) || nr > BIT(6));
148 od = 1;
150 reg = (nf - 1) | ((nr - 1) << 13) | ((od - 1) << 19);
151 clkc_writel(reg, clk->regofs);
153 reg = clk->regofs + SIRFSOC_CLKC_PLL1_CFG1 - SIRFSOC_CLKC_PLL1_CFG0;
154 clkc_writel((nf >> 1) - 1, reg);
156 reg = clk->regofs + SIRFSOC_CLKC_PLL1_CFG2 - SIRFSOC_CLKC_PLL1_CFG0;
157 while (!(clkc_readl(reg) & BIT(6)))
158 cpu_relax();
160 return 0;
163 static long cpu_clk_round_rate(struct clk_hw *hw, unsigned long rate,
164 unsigned long *parent_rate)
167 * SiRF SoC has not cpu clock control,
168 * So bypass to it's parent pll.
170 struct clk_hw *parent_clk = clk_hw_get_parent(hw);
171 struct clk_hw *pll_parent_clk = clk_hw_get_parent(parent_clk);
172 unsigned long pll_parent_rate = clk_hw_get_rate(pll_parent_clk);
173 return pll_clk_round_rate(parent_clk, rate, &pll_parent_rate);
176 static unsigned long cpu_clk_recalc_rate(struct clk_hw *hw,
177 unsigned long parent_rate)
180 * SiRF SoC has not cpu clock control,
181 * So return the parent pll rate.
183 struct clk_hw *parent_clk = clk_hw_get_parent(hw);
184 return clk_hw_get_rate(parent_clk);
187 static struct clk_ops std_pll_ops = {
188 .recalc_rate = pll_clk_recalc_rate,
189 .round_rate = pll_clk_round_rate,
190 .set_rate = pll_clk_set_rate,
193 static const char * const pll_clk_parents[] = {
194 "osc",
197 static struct clk_init_data clk_pll1_init = {
198 .name = "pll1",
199 .ops = &std_pll_ops,
200 .parent_names = pll_clk_parents,
201 .num_parents = ARRAY_SIZE(pll_clk_parents),
204 static struct clk_init_data clk_pll2_init = {
205 .name = "pll2",
206 .ops = &std_pll_ops,
207 .parent_names = pll_clk_parents,
208 .num_parents = ARRAY_SIZE(pll_clk_parents),
211 static struct clk_init_data clk_pll3_init = {
212 .name = "pll3",
213 .ops = &std_pll_ops,
214 .parent_names = pll_clk_parents,
215 .num_parents = ARRAY_SIZE(pll_clk_parents),
218 static struct clk_pll clk_pll1 = {
219 .regofs = SIRFSOC_CLKC_PLL1_CFG0,
220 .hw = {
221 .init = &clk_pll1_init,
225 static struct clk_pll clk_pll2 = {
226 .regofs = SIRFSOC_CLKC_PLL2_CFG0,
227 .hw = {
228 .init = &clk_pll2_init,
232 static struct clk_pll clk_pll3 = {
233 .regofs = SIRFSOC_CLKC_PLL3_CFG0,
234 .hw = {
235 .init = &clk_pll3_init,
240 * usb uses specified pll
243 static int usb_pll_clk_enable(struct clk_hw *hw)
245 u32 reg = readl(sirfsoc_rsc_vbase + SIRFSOC_USBPHY_PLL_CTRL);
246 reg &= ~(SIRFSOC_USBPHY_PLL_POWERDOWN | SIRFSOC_USBPHY_PLL_BYPASS);
247 writel(reg, sirfsoc_rsc_vbase + SIRFSOC_USBPHY_PLL_CTRL);
248 while (!(readl(sirfsoc_rsc_vbase + SIRFSOC_USBPHY_PLL_CTRL) &
249 SIRFSOC_USBPHY_PLL_LOCK))
250 cpu_relax();
252 return 0;
255 static void usb_pll_clk_disable(struct clk_hw *clk)
257 u32 reg = readl(sirfsoc_rsc_vbase + SIRFSOC_USBPHY_PLL_CTRL);
258 reg |= (SIRFSOC_USBPHY_PLL_POWERDOWN | SIRFSOC_USBPHY_PLL_BYPASS);
259 writel(reg, sirfsoc_rsc_vbase + SIRFSOC_USBPHY_PLL_CTRL);
262 static unsigned long usb_pll_clk_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
264 u32 reg = readl(sirfsoc_rsc_vbase + SIRFSOC_USBPHY_PLL_CTRL);
265 return (reg & SIRFSOC_USBPHY_PLL_BYPASS) ? parent_rate : 48*MHZ;
268 static struct clk_ops usb_pll_ops = {
269 .enable = usb_pll_clk_enable,
270 .disable = usb_pll_clk_disable,
271 .recalc_rate = usb_pll_clk_recalc_rate,
274 static struct clk_init_data clk_usb_pll_init = {
275 .name = "usb_pll",
276 .ops = &usb_pll_ops,
277 .parent_names = pll_clk_parents,
278 .num_parents = ARRAY_SIZE(pll_clk_parents),
281 static struct clk_hw usb_pll_clk_hw = {
282 .init = &clk_usb_pll_init,
286 * clock domains - cpu, mem, sys/io, dsp, gfx
289 static const char * const dmn_clk_parents[] = {
290 "rtc",
291 "osc",
292 "pll1",
293 "pll2",
294 "pll3",
297 static u8 dmn_clk_get_parent(struct clk_hw *hw)
299 struct clk_dmn *clk = to_dmnclk(hw);
300 u32 cfg = clkc_readl(clk->regofs);
302 /* parent of io domain can only be pll3 */
303 if (strcmp(hw->init->name, "io") == 0)
304 return 4;
306 WARN_ON((cfg & (BIT(3) - 1)) > 4);
308 return cfg & (BIT(3) - 1);
311 static int dmn_clk_set_parent(struct clk_hw *hw, u8 parent)
313 struct clk_dmn *clk = to_dmnclk(hw);
314 u32 cfg = clkc_readl(clk->regofs);
316 /* parent of io domain can only be pll3 */
317 if (strcmp(hw->init->name, "io") == 0)
318 return -EINVAL;
320 cfg &= ~(BIT(3) - 1);
321 clkc_writel(cfg | parent, clk->regofs);
322 /* BIT(3) - switching status: 1 - busy, 0 - done */
323 while (clkc_readl(clk->regofs) & BIT(3))
324 cpu_relax();
326 return 0;
329 static unsigned long dmn_clk_recalc_rate(struct clk_hw *hw,
330 unsigned long parent_rate)
333 unsigned long fin = parent_rate;
334 struct clk_dmn *clk = to_dmnclk(hw);
336 u32 cfg = clkc_readl(clk->regofs);
338 if (cfg & BIT(24)) {
339 /* fcd bypass mode */
340 return fin;
341 } else {
343 * wait count: bit[19:16], hold count: bit[23:20]
345 u32 wait = (cfg >> 16) & (BIT(4) - 1);
346 u32 hold = (cfg >> 20) & (BIT(4) - 1);
348 return fin / (wait + hold + 2);
352 static long dmn_clk_round_rate(struct clk_hw *hw, unsigned long rate,
353 unsigned long *parent_rate)
355 unsigned long fin;
356 unsigned ratio, wait, hold;
357 unsigned bits = (strcmp(hw->init->name, "mem") == 0) ? 3 : 4;
359 fin = *parent_rate;
360 ratio = fin / rate;
362 if (ratio < 2)
363 ratio = 2;
364 if (ratio > BIT(bits + 1))
365 ratio = BIT(bits + 1);
367 wait = (ratio >> 1) - 1;
368 hold = ratio - wait - 2;
370 return fin / (wait + hold + 2);
373 static int dmn_clk_set_rate(struct clk_hw *hw, unsigned long rate,
374 unsigned long parent_rate)
376 struct clk_dmn *clk = to_dmnclk(hw);
377 unsigned long fin;
378 unsigned ratio, wait, hold, reg;
379 unsigned bits = (strcmp(hw->init->name, "mem") == 0) ? 3 : 4;
381 fin = parent_rate;
382 ratio = fin / rate;
384 if (unlikely(ratio < 2 || ratio > BIT(bits + 1)))
385 return -EINVAL;
387 WARN_ON(fin % rate);
389 wait = (ratio >> 1) - 1;
390 hold = ratio - wait - 2;
392 reg = clkc_readl(clk->regofs);
393 reg &= ~(((BIT(bits) - 1) << 16) | ((BIT(bits) - 1) << 20));
394 reg |= (wait << 16) | (hold << 20) | BIT(25);
395 clkc_writel(reg, clk->regofs);
397 /* waiting FCD been effective */
398 while (clkc_readl(clk->regofs) & BIT(25))
399 cpu_relax();
401 return 0;
404 static int cpu_clk_set_rate(struct clk_hw *hw, unsigned long rate,
405 unsigned long parent_rate)
407 int ret1, ret2;
408 struct clk *cur_parent;
410 if (rate == clk_get_rate(clk_pll1.hw.clk)) {
411 ret1 = clk_set_parent(hw->clk, clk_pll1.hw.clk);
412 return ret1;
415 if (rate == clk_get_rate(clk_pll2.hw.clk)) {
416 ret1 = clk_set_parent(hw->clk, clk_pll2.hw.clk);
417 return ret1;
420 if (rate == clk_get_rate(clk_pll3.hw.clk)) {
421 ret1 = clk_set_parent(hw->clk, clk_pll3.hw.clk);
422 return ret1;
425 cur_parent = clk_get_parent(hw->clk);
427 /* switch to tmp pll before setting parent clock's rate */
428 if (cur_parent == clk_pll1.hw.clk) {
429 ret1 = clk_set_parent(hw->clk, clk_pll2.hw.clk);
430 BUG_ON(ret1);
433 ret2 = clk_set_rate(clk_pll1.hw.clk, rate);
435 ret1 = clk_set_parent(hw->clk, clk_pll1.hw.clk);
437 return ret2 ? ret2 : ret1;
440 static struct clk_ops msi_ops = {
441 .set_rate = dmn_clk_set_rate,
442 .round_rate = dmn_clk_round_rate,
443 .recalc_rate = dmn_clk_recalc_rate,
444 .set_parent = dmn_clk_set_parent,
445 .get_parent = dmn_clk_get_parent,
448 static struct clk_init_data clk_mem_init = {
449 .name = "mem",
450 .ops = &msi_ops,
451 .parent_names = dmn_clk_parents,
452 .num_parents = ARRAY_SIZE(dmn_clk_parents),
455 static struct clk_dmn clk_mem = {
456 .regofs = SIRFSOC_CLKC_MEM_CFG,
457 .hw = {
458 .init = &clk_mem_init,
462 static struct clk_init_data clk_sys_init = {
463 .name = "sys",
464 .ops = &msi_ops,
465 .parent_names = dmn_clk_parents,
466 .num_parents = ARRAY_SIZE(dmn_clk_parents),
467 .flags = CLK_SET_RATE_GATE,
470 static struct clk_dmn clk_sys = {
471 .regofs = SIRFSOC_CLKC_SYS_CFG,
472 .hw = {
473 .init = &clk_sys_init,
477 static struct clk_init_data clk_io_init = {
478 .name = "io",
479 .ops = &msi_ops,
480 .parent_names = dmn_clk_parents,
481 .num_parents = ARRAY_SIZE(dmn_clk_parents),
484 static struct clk_dmn clk_io = {
485 .regofs = SIRFSOC_CLKC_IO_CFG,
486 .hw = {
487 .init = &clk_io_init,
491 static struct clk_ops cpu_ops = {
492 .set_parent = dmn_clk_set_parent,
493 .get_parent = dmn_clk_get_parent,
494 .set_rate = cpu_clk_set_rate,
495 .round_rate = cpu_clk_round_rate,
496 .recalc_rate = cpu_clk_recalc_rate,
499 static struct clk_init_data clk_cpu_init = {
500 .name = "cpu",
501 .ops = &cpu_ops,
502 .parent_names = dmn_clk_parents,
503 .num_parents = ARRAY_SIZE(dmn_clk_parents),
504 .flags = CLK_SET_RATE_PARENT,
507 static struct clk_dmn clk_cpu = {
508 .regofs = SIRFSOC_CLKC_CPU_CFG,
509 .hw = {
510 .init = &clk_cpu_init,
514 static struct clk_ops dmn_ops = {
515 .is_enabled = std_clk_is_enabled,
516 .enable = std_clk_enable,
517 .disable = std_clk_disable,
518 .set_rate = dmn_clk_set_rate,
519 .round_rate = dmn_clk_round_rate,
520 .recalc_rate = dmn_clk_recalc_rate,
521 .set_parent = dmn_clk_set_parent,
522 .get_parent = dmn_clk_get_parent,
525 /* dsp, gfx, mm, lcd and vpp domain */
527 static struct clk_init_data clk_dsp_init = {
528 .name = "dsp",
529 .ops = &dmn_ops,
530 .parent_names = dmn_clk_parents,
531 .num_parents = ARRAY_SIZE(dmn_clk_parents),
534 static struct clk_dmn clk_dsp = {
535 .regofs = SIRFSOC_CLKC_DSP_CFG,
536 .enable_bit = 0,
537 .hw = {
538 .init = &clk_dsp_init,
542 static struct clk_init_data clk_gfx_init = {
543 .name = "gfx",
544 .ops = &dmn_ops,
545 .parent_names = dmn_clk_parents,
546 .num_parents = ARRAY_SIZE(dmn_clk_parents),
549 static struct clk_dmn clk_gfx = {
550 .regofs = SIRFSOC_CLKC_GFX_CFG,
551 .enable_bit = 8,
552 .hw = {
553 .init = &clk_gfx_init,
557 static struct clk_init_data clk_mm_init = {
558 .name = "mm",
559 .ops = &dmn_ops,
560 .parent_names = dmn_clk_parents,
561 .num_parents = ARRAY_SIZE(dmn_clk_parents),
564 static struct clk_dmn clk_mm = {
565 .regofs = SIRFSOC_CLKC_MM_CFG,
566 .enable_bit = 9,
567 .hw = {
568 .init = &clk_mm_init,
573 * for atlas6, gfx2d holds the bit of prima2's clk_mm
575 #define clk_gfx2d clk_mm
577 static struct clk_init_data clk_lcd_init = {
578 .name = "lcd",
579 .ops = &dmn_ops,
580 .parent_names = dmn_clk_parents,
581 .num_parents = ARRAY_SIZE(dmn_clk_parents),
584 static struct clk_dmn clk_lcd = {
585 .regofs = SIRFSOC_CLKC_LCD_CFG,
586 .enable_bit = 10,
587 .hw = {
588 .init = &clk_lcd_init,
592 static struct clk_init_data clk_vpp_init = {
593 .name = "vpp",
594 .ops = &dmn_ops,
595 .parent_names = dmn_clk_parents,
596 .num_parents = ARRAY_SIZE(dmn_clk_parents),
599 static struct clk_dmn clk_vpp = {
600 .regofs = SIRFSOC_CLKC_LCD_CFG,
601 .enable_bit = 11,
602 .hw = {
603 .init = &clk_vpp_init,
607 static struct clk_init_data clk_mmc01_init = {
608 .name = "mmc01",
609 .ops = &dmn_ops,
610 .parent_names = dmn_clk_parents,
611 .num_parents = ARRAY_SIZE(dmn_clk_parents),
614 static struct clk_init_data clk_mmc23_init = {
615 .name = "mmc23",
616 .ops = &dmn_ops,
617 .parent_names = dmn_clk_parents,
618 .num_parents = ARRAY_SIZE(dmn_clk_parents),
621 static struct clk_init_data clk_mmc45_init = {
622 .name = "mmc45",
623 .ops = &dmn_ops,
624 .parent_names = dmn_clk_parents,
625 .num_parents = ARRAY_SIZE(dmn_clk_parents),
629 * peripheral controllers in io domain
632 static int std_clk_is_enabled(struct clk_hw *hw)
634 u32 reg;
635 int bit;
636 struct clk_std *clk = to_stdclk(hw);
638 bit = clk->enable_bit % 32;
639 reg = clk->enable_bit / 32;
640 reg = SIRFSOC_CLKC_CLK_EN0 + reg * sizeof(reg);
642 return !!(clkc_readl(reg) & BIT(bit));
645 static int std_clk_enable(struct clk_hw *hw)
647 u32 val, reg;
648 int bit;
649 struct clk_std *clk = to_stdclk(hw);
651 BUG_ON(clk->enable_bit < 0 || clk->enable_bit > 63);
653 bit = clk->enable_bit % 32;
654 reg = clk->enable_bit / 32;
655 reg = SIRFSOC_CLKC_CLK_EN0 + reg * sizeof(reg);
657 val = clkc_readl(reg) | BIT(bit);
658 clkc_writel(val, reg);
659 return 0;
662 static void std_clk_disable(struct clk_hw *hw)
664 u32 val, reg;
665 int bit;
666 struct clk_std *clk = to_stdclk(hw);
668 BUG_ON(clk->enable_bit < 0 || clk->enable_bit > 63);
670 bit = clk->enable_bit % 32;
671 reg = clk->enable_bit / 32;
672 reg = SIRFSOC_CLKC_CLK_EN0 + reg * sizeof(reg);
674 val = clkc_readl(reg) & ~BIT(bit);
675 clkc_writel(val, reg);
678 static const char * const std_clk_io_parents[] = {
679 "io",
682 static struct clk_ops ios_ops = {
683 .is_enabled = std_clk_is_enabled,
684 .enable = std_clk_enable,
685 .disable = std_clk_disable,
688 static struct clk_init_data clk_cphif_init = {
689 .name = "cphif",
690 .ops = &ios_ops,
691 .parent_names = std_clk_io_parents,
692 .num_parents = ARRAY_SIZE(std_clk_io_parents),
695 static struct clk_std clk_cphif = {
696 .enable_bit = 20,
697 .hw = {
698 .init = &clk_cphif_init,
702 static struct clk_init_data clk_dmac0_init = {
703 .name = "dmac0",
704 .ops = &ios_ops,
705 .parent_names = std_clk_io_parents,
706 .num_parents = ARRAY_SIZE(std_clk_io_parents),
709 static struct clk_std clk_dmac0 = {
710 .enable_bit = 32,
711 .hw = {
712 .init = &clk_dmac0_init,
716 static struct clk_init_data clk_dmac1_init = {
717 .name = "dmac1",
718 .ops = &ios_ops,
719 .parent_names = std_clk_io_parents,
720 .num_parents = ARRAY_SIZE(std_clk_io_parents),
723 static struct clk_std clk_dmac1 = {
724 .enable_bit = 33,
725 .hw = {
726 .init = &clk_dmac1_init,
730 static struct clk_init_data clk_audio_init = {
731 .name = "audio",
732 .ops = &ios_ops,
733 .parent_names = std_clk_io_parents,
734 .num_parents = ARRAY_SIZE(std_clk_io_parents),
737 static struct clk_std clk_audio = {
738 .enable_bit = 35,
739 .hw = {
740 .init = &clk_audio_init,
744 static struct clk_init_data clk_uart0_init = {
745 .name = "uart0",
746 .ops = &ios_ops,
747 .parent_names = std_clk_io_parents,
748 .num_parents = ARRAY_SIZE(std_clk_io_parents),
751 static struct clk_std clk_uart0 = {
752 .enable_bit = 36,
753 .hw = {
754 .init = &clk_uart0_init,
758 static struct clk_init_data clk_uart1_init = {
759 .name = "uart1",
760 .ops = &ios_ops,
761 .parent_names = std_clk_io_parents,
762 .num_parents = ARRAY_SIZE(std_clk_io_parents),
765 static struct clk_std clk_uart1 = {
766 .enable_bit = 37,
767 .hw = {
768 .init = &clk_uart1_init,
772 static struct clk_init_data clk_uart2_init = {
773 .name = "uart2",
774 .ops = &ios_ops,
775 .parent_names = std_clk_io_parents,
776 .num_parents = ARRAY_SIZE(std_clk_io_parents),
779 static struct clk_std clk_uart2 = {
780 .enable_bit = 38,
781 .hw = {
782 .init = &clk_uart2_init,
786 static struct clk_init_data clk_usp0_init = {
787 .name = "usp0",
788 .ops = &ios_ops,
789 .parent_names = std_clk_io_parents,
790 .num_parents = ARRAY_SIZE(std_clk_io_parents),
793 static struct clk_std clk_usp0 = {
794 .enable_bit = 39,
795 .hw = {
796 .init = &clk_usp0_init,
800 static struct clk_init_data clk_usp1_init = {
801 .name = "usp1",
802 .ops = &ios_ops,
803 .parent_names = std_clk_io_parents,
804 .num_parents = ARRAY_SIZE(std_clk_io_parents),
807 static struct clk_std clk_usp1 = {
808 .enable_bit = 40,
809 .hw = {
810 .init = &clk_usp1_init,
814 static struct clk_init_data clk_usp2_init = {
815 .name = "usp2",
816 .ops = &ios_ops,
817 .parent_names = std_clk_io_parents,
818 .num_parents = ARRAY_SIZE(std_clk_io_parents),
821 static struct clk_std clk_usp2 = {
822 .enable_bit = 41,
823 .hw = {
824 .init = &clk_usp2_init,
828 static struct clk_init_data clk_vip_init = {
829 .name = "vip",
830 .ops = &ios_ops,
831 .parent_names = std_clk_io_parents,
832 .num_parents = ARRAY_SIZE(std_clk_io_parents),
835 static struct clk_std clk_vip = {
836 .enable_bit = 42,
837 .hw = {
838 .init = &clk_vip_init,
842 static struct clk_init_data clk_spi0_init = {
843 .name = "spi0",
844 .ops = &ios_ops,
845 .parent_names = std_clk_io_parents,
846 .num_parents = ARRAY_SIZE(std_clk_io_parents),
849 static struct clk_std clk_spi0 = {
850 .enable_bit = 43,
851 .hw = {
852 .init = &clk_spi0_init,
856 static struct clk_init_data clk_spi1_init = {
857 .name = "spi1",
858 .ops = &ios_ops,
859 .parent_names = std_clk_io_parents,
860 .num_parents = ARRAY_SIZE(std_clk_io_parents),
863 static struct clk_std clk_spi1 = {
864 .enable_bit = 44,
865 .hw = {
866 .init = &clk_spi1_init,
870 static struct clk_init_data clk_tsc_init = {
871 .name = "tsc",
872 .ops = &ios_ops,
873 .parent_names = std_clk_io_parents,
874 .num_parents = ARRAY_SIZE(std_clk_io_parents),
877 static struct clk_std clk_tsc = {
878 .enable_bit = 45,
879 .hw = {
880 .init = &clk_tsc_init,
884 static struct clk_init_data clk_i2c0_init = {
885 .name = "i2c0",
886 .ops = &ios_ops,
887 .parent_names = std_clk_io_parents,
888 .num_parents = ARRAY_SIZE(std_clk_io_parents),
891 static struct clk_std clk_i2c0 = {
892 .enable_bit = 46,
893 .hw = {
894 .init = &clk_i2c0_init,
898 static struct clk_init_data clk_i2c1_init = {
899 .name = "i2c1",
900 .ops = &ios_ops,
901 .parent_names = std_clk_io_parents,
902 .num_parents = ARRAY_SIZE(std_clk_io_parents),
905 static struct clk_std clk_i2c1 = {
906 .enable_bit = 47,
907 .hw = {
908 .init = &clk_i2c1_init,
912 static struct clk_init_data clk_pwmc_init = {
913 .name = "pwmc",
914 .ops = &ios_ops,
915 .parent_names = std_clk_io_parents,
916 .num_parents = ARRAY_SIZE(std_clk_io_parents),
919 static struct clk_std clk_pwmc = {
920 .enable_bit = 48,
921 .hw = {
922 .init = &clk_pwmc_init,
926 static struct clk_init_data clk_efuse_init = {
927 .name = "efuse",
928 .ops = &ios_ops,
929 .parent_names = std_clk_io_parents,
930 .num_parents = ARRAY_SIZE(std_clk_io_parents),
933 static struct clk_std clk_efuse = {
934 .enable_bit = 49,
935 .hw = {
936 .init = &clk_efuse_init,
940 static struct clk_init_data clk_pulse_init = {
941 .name = "pulse",
942 .ops = &ios_ops,
943 .parent_names = std_clk_io_parents,
944 .num_parents = ARRAY_SIZE(std_clk_io_parents),
947 static struct clk_std clk_pulse = {
948 .enable_bit = 50,
949 .hw = {
950 .init = &clk_pulse_init,
954 static const char * const std_clk_dsp_parents[] = {
955 "dsp",
958 static struct clk_init_data clk_gps_init = {
959 .name = "gps",
960 .ops = &ios_ops,
961 .parent_names = std_clk_dsp_parents,
962 .num_parents = ARRAY_SIZE(std_clk_dsp_parents),
965 static struct clk_std clk_gps = {
966 .enable_bit = 1,
967 .hw = {
968 .init = &clk_gps_init,
972 static struct clk_init_data clk_mf_init = {
973 .name = "mf",
974 .ops = &ios_ops,
975 .parent_names = std_clk_io_parents,
976 .num_parents = ARRAY_SIZE(std_clk_io_parents),
979 static struct clk_std clk_mf = {
980 .enable_bit = 2,
981 .hw = {
982 .init = &clk_mf_init,
986 static const char * const std_clk_sys_parents[] = {
987 "sys",
990 static struct clk_init_data clk_security_init = {
991 .name = "security",
992 .ops = &ios_ops,
993 .parent_names = std_clk_sys_parents,
994 .num_parents = ARRAY_SIZE(std_clk_sys_parents),
997 static struct clk_std clk_security = {
998 .enable_bit = 19,
999 .hw = {
1000 .init = &clk_security_init,
1004 static const char * const std_clk_usb_parents[] = {
1005 "usb_pll",
1008 static struct clk_init_data clk_usb0_init = {
1009 .name = "usb0",
1010 .ops = &ios_ops,
1011 .parent_names = std_clk_usb_parents,
1012 .num_parents = ARRAY_SIZE(std_clk_usb_parents),
1015 static struct clk_std clk_usb0 = {
1016 .enable_bit = 16,
1017 .hw = {
1018 .init = &clk_usb0_init,
1022 static struct clk_init_data clk_usb1_init = {
1023 .name = "usb1",
1024 .ops = &ios_ops,
1025 .parent_names = std_clk_usb_parents,
1026 .num_parents = ARRAY_SIZE(std_clk_usb_parents),
1029 static struct clk_std clk_usb1 = {
1030 .enable_bit = 17,
1031 .hw = {
1032 .init = &clk_usb1_init,