1*0558676dSIcenowy Zheng #include <common.h>
2*0558676dSIcenowy Zheng #include <asm/io.h>
3*0558676dSIcenowy Zheng #include <asm/arch/cpu.h>
4*0558676dSIcenowy Zheng #include <asm/arch/clock.h>
5*0558676dSIcenowy Zheng
6*0558676dSIcenowy Zheng #ifdef CONFIG_SPL_BUILD
clock_init_safe(void)7*0558676dSIcenowy Zheng void clock_init_safe(void)
8*0558676dSIcenowy Zheng {
9*0558676dSIcenowy Zheng struct sunxi_ccm_reg *const ccm =
10*0558676dSIcenowy Zheng (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
11*0558676dSIcenowy Zheng clock_set_pll1(408000000);
12*0558676dSIcenowy Zheng
13*0558676dSIcenowy Zheng writel(CCM_PLL6_DEFAULT, &ccm->pll6_cfg);
14*0558676dSIcenowy Zheng while (!(readl(&ccm->pll6_cfg) & CCM_PLL6_LOCK))
15*0558676dSIcenowy Zheng ;
16*0558676dSIcenowy Zheng
17*0558676dSIcenowy Zheng clrsetbits_le32(&ccm->cpu_axi_cfg, CCM_CPU_AXI_APB_MASK | CCM_CPU_AXI_AXI_MASK,
18*0558676dSIcenowy Zheng CCM_CPU_AXI_DEFAULT_FACTORS);
19*0558676dSIcenowy Zheng
20*0558676dSIcenowy Zheng writel(CCM_PSI_AHB1_AHB2_DEFAULT, &ccm->psi_ahb1_ahb2_cfg);
21*0558676dSIcenowy Zheng writel(CCM_AHB3_DEFAULT, &ccm->ahb3_cfg);
22*0558676dSIcenowy Zheng writel(CCM_APB1_DEFAULT, &ccm->apb1_cfg);
23*0558676dSIcenowy Zheng
24*0558676dSIcenowy Zheng /*
25*0558676dSIcenowy Zheng * The mux and factor are set, but the clock will be enabled in
26*0558676dSIcenowy Zheng * DRAM initialization code.
27*0558676dSIcenowy Zheng */
28*0558676dSIcenowy Zheng writel(MBUS_CLK_SRC_PLL6X2 | MBUS_CLK_M(3), &ccm->mbus_cfg);
29*0558676dSIcenowy Zheng }
30*0558676dSIcenowy Zheng #endif
31*0558676dSIcenowy Zheng
clock_init_uart(void)32*0558676dSIcenowy Zheng void clock_init_uart(void)
33*0558676dSIcenowy Zheng {
34*0558676dSIcenowy Zheng struct sunxi_ccm_reg *const ccm =
35*0558676dSIcenowy Zheng (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
36*0558676dSIcenowy Zheng
37*0558676dSIcenowy Zheng /* uart clock source is apb2 */
38*0558676dSIcenowy Zheng writel(APB2_CLK_SRC_OSC24M|
39*0558676dSIcenowy Zheng APB2_CLK_RATE_N_1|
40*0558676dSIcenowy Zheng APB2_CLK_RATE_M(1),
41*0558676dSIcenowy Zheng &ccm->apb2_cfg);
42*0558676dSIcenowy Zheng
43*0558676dSIcenowy Zheng /* open the clock for uart */
44*0558676dSIcenowy Zheng setbits_le32(&ccm->uart_gate_reset,
45*0558676dSIcenowy Zheng 1 << (CONFIG_CONS_INDEX - 1));
46*0558676dSIcenowy Zheng
47*0558676dSIcenowy Zheng /* deassert uart reset */
48*0558676dSIcenowy Zheng setbits_le32(&ccm->uart_gate_reset,
49*0558676dSIcenowy Zheng 1 << (RESET_SHIFT + CONFIG_CONS_INDEX - 1));
50*0558676dSIcenowy Zheng }
51*0558676dSIcenowy Zheng
52*0558676dSIcenowy Zheng #ifdef CONFIG_SPL_BUILD
clock_set_pll1(unsigned int clk)53*0558676dSIcenowy Zheng void clock_set_pll1(unsigned int clk)
54*0558676dSIcenowy Zheng {
55*0558676dSIcenowy Zheng struct sunxi_ccm_reg * const ccm =
56*0558676dSIcenowy Zheng (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
57*0558676dSIcenowy Zheng u32 val;
58*0558676dSIcenowy Zheng
59*0558676dSIcenowy Zheng /* Do not support clocks < 288MHz as they need factor P */
60*0558676dSIcenowy Zheng if (clk < 288000000) clk = 288000000;
61*0558676dSIcenowy Zheng
62*0558676dSIcenowy Zheng /* Switch to 24MHz clock while changing PLL1 */
63*0558676dSIcenowy Zheng val = readl(&ccm->cpu_axi_cfg);
64*0558676dSIcenowy Zheng val &= ~CCM_CPU_AXI_MUX_MASK;
65*0558676dSIcenowy Zheng val |= CCM_CPU_AXI_MUX_OSC24M;
66*0558676dSIcenowy Zheng writel(val, &ccm->cpu_axi_cfg);
67*0558676dSIcenowy Zheng
68*0558676dSIcenowy Zheng /* clk = 24*n/p, p is ignored if clock is >288MHz */
69*0558676dSIcenowy Zheng writel(CCM_PLL1_CTRL_EN | CCM_PLL1_LOCK_EN | CCM_PLL1_CLOCK_TIME_2 |
70*0558676dSIcenowy Zheng CCM_PLL1_CTRL_N(clk / 24000000), &ccm->pll1_cfg);
71*0558676dSIcenowy Zheng while (!(readl(&ccm->pll1_cfg) & CCM_PLL1_LOCK)) {}
72*0558676dSIcenowy Zheng
73*0558676dSIcenowy Zheng /* Switch CPU to PLL1 */
74*0558676dSIcenowy Zheng val = readl(&ccm->cpu_axi_cfg);
75*0558676dSIcenowy Zheng val &= ~CCM_CPU_AXI_MUX_MASK;
76*0558676dSIcenowy Zheng val |= CCM_CPU_AXI_MUX_PLL_CPUX;
77*0558676dSIcenowy Zheng writel(val, &ccm->cpu_axi_cfg);
78*0558676dSIcenowy Zheng }
79*0558676dSIcenowy Zheng #endif
80*0558676dSIcenowy Zheng
clock_get_pll6(void)81*0558676dSIcenowy Zheng unsigned int clock_get_pll6(void)
82*0558676dSIcenowy Zheng {
83*0558676dSIcenowy Zheng struct sunxi_ccm_reg *const ccm =
84*0558676dSIcenowy Zheng (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
85*0558676dSIcenowy Zheng
86*0558676dSIcenowy Zheng uint32_t rval = readl(&ccm->pll6_cfg);
87*0558676dSIcenowy Zheng int n = ((rval & CCM_PLL6_CTRL_N_MASK) >> CCM_PLL6_CTRL_N_SHIFT);
88*0558676dSIcenowy Zheng int div1 = ((rval & CCM_PLL6_CTRL_DIV1_MASK) >>
89*0558676dSIcenowy Zheng CCM_PLL6_CTRL_DIV1_SHIFT) + 1;
90*0558676dSIcenowy Zheng int div2 = ((rval & CCM_PLL6_CTRL_DIV2_MASK) >>
91*0558676dSIcenowy Zheng CCM_PLL6_CTRL_DIV2_SHIFT) + 1;
92*0558676dSIcenowy Zheng /* The register defines PLL6-4X, not plain PLL6 */
93*0558676dSIcenowy Zheng return 24000000 / 4 * n / div1 / div2;
94*0558676dSIcenowy Zheng }
95