]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/mx6/soc.c
imx: mx6sl: Set the preclk clock source to OSC 24Mhz
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / mx6 / soc.c
1 /*
2  * (C) Copyright 2007
3  * Sascha Hauer, Pengutronix
4  *
5  * (C) Copyright 2009 Freescale Semiconductor, Inc.
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #include <common.h>
11 #include <asm/armv7.h>
12 #include <asm/pl310.h>
13 #include <asm/errno.h>
14 #include <asm/io.h>
15 #include <asm/arch/imx-regs.h>
16 #include <asm/arch/clock.h>
17 #include <asm/arch/sys_proto.h>
18 #include <asm/imx-common/boot_mode.h>
19 #include <asm/imx-common/dma.h>
20 #include <stdbool.h>
21 #include <asm/arch/mxc_hdmi.h>
22 #include <asm/arch/crm_regs.h>
23 #include <asm/bootm.h>
24
25 enum ldo_reg {
26         LDO_ARM,
27         LDO_SOC,
28         LDO_PU,
29 };
30
31 struct scu_regs {
32         u32     ctrl;
33         u32     config;
34         u32     status;
35         u32     invalidate;
36         u32     fpga_rev;
37 };
38
39 u32 get_nr_cpus(void)
40 {
41         struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
42         return readl(&scu->config) & 3;
43 }
44
45 u32 get_cpu_rev(void)
46 {
47         struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
48         u32 reg = readl(&anatop->digprog_sololite);
49         u32 type = ((reg >> 16) & 0xff);
50
51         if (type != MXC_CPU_MX6SL) {
52                 reg = readl(&anatop->digprog);
53                 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
54                 u32 cfg = readl(&scu->config) & 3;
55                 type = ((reg >> 16) & 0xff);
56                 if (type == MXC_CPU_MX6DL) {
57                         if (!cfg)
58                                 type = MXC_CPU_MX6SOLO;
59                 }
60
61                 if (type == MXC_CPU_MX6Q) {
62                         if (cfg == 1)
63                                 type = MXC_CPU_MX6D;
64                 }
65
66         }
67         reg &= 0xff;            /* mx6 silicon revision */
68         return (type << 12) | (reg + 0x10);
69 }
70
71 #ifdef CONFIG_REVISION_TAG
72 u32 __weak get_board_rev(void)
73 {
74         u32 cpurev = get_cpu_rev();
75         u32 type = ((cpurev >> 12) & 0xff);
76         if (type == MXC_CPU_MX6SOLO)
77                 cpurev = (MXC_CPU_MX6DL) << 12 | (cpurev & 0xFFF);
78
79         if (type == MXC_CPU_MX6D)
80                 cpurev = (MXC_CPU_MX6Q) << 12 | (cpurev & 0xFFF);
81
82         return cpurev;
83 }
84 #endif
85
86 void init_aips(void)
87 {
88         struct aipstz_regs *aips1, *aips2;
89 #ifdef CONFIG_MX6SX
90         struct aipstz_regs *aips3;
91 #endif
92
93         aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
94         aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
95 #ifdef CONFIG_MX6SX
96         aips3 = (struct aipstz_regs *)AIPS3_BASE_ADDR;
97 #endif
98
99         /*
100          * Set all MPROTx to be non-bufferable, trusted for R/W,
101          * not forced to user-mode.
102          */
103         writel(0x77777777, &aips1->mprot0);
104         writel(0x77777777, &aips1->mprot1);
105         writel(0x77777777, &aips2->mprot0);
106         writel(0x77777777, &aips2->mprot1);
107
108         /*
109          * Set all OPACRx to be non-bufferable, not require
110          * supervisor privilege level for access,allow for
111          * write access and untrusted master access.
112          */
113         writel(0x00000000, &aips1->opacr0);
114         writel(0x00000000, &aips1->opacr1);
115         writel(0x00000000, &aips1->opacr2);
116         writel(0x00000000, &aips1->opacr3);
117         writel(0x00000000, &aips1->opacr4);
118         writel(0x00000000, &aips2->opacr0);
119         writel(0x00000000, &aips2->opacr1);
120         writel(0x00000000, &aips2->opacr2);
121         writel(0x00000000, &aips2->opacr3);
122         writel(0x00000000, &aips2->opacr4);
123
124 #ifdef CONFIG_MX6SX
125         /*
126          * Set all MPROTx to be non-bufferable, trusted for R/W,
127          * not forced to user-mode.
128          */
129         writel(0x77777777, &aips3->mprot0);
130         writel(0x77777777, &aips3->mprot1);
131
132         /*
133          * Set all OPACRx to be non-bufferable, not require
134          * supervisor privilege level for access,allow for
135          * write access and untrusted master access.
136          */
137         writel(0x00000000, &aips3->opacr0);
138         writel(0x00000000, &aips3->opacr1);
139         writel(0x00000000, &aips3->opacr2);
140         writel(0x00000000, &aips3->opacr3);
141         writel(0x00000000, &aips3->opacr4);
142 #endif
143 }
144
145 static void clear_ldo_ramp(void)
146 {
147         struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
148         int reg;
149
150         /* ROM may modify LDO ramp up time according to fuse setting, so in
151          * order to be in the safe side we neeed to reset these settings to
152          * match the reset value: 0'b00
153          */
154         reg = readl(&anatop->ana_misc2);
155         reg &= ~(0x3f << 24);
156         writel(reg, &anatop->ana_misc2);
157 }
158
159 /*
160  * Set the PMU_REG_CORE register
161  *
162  * Set LDO_SOC/PU/ARM regulators to the specified millivolt level.
163  * Possible values are from 0.725V to 1.450V in steps of
164  * 0.025V (25mV).
165  */
166 static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
167 {
168         struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
169         u32 val, step, old, reg = readl(&anatop->reg_core);
170         u8 shift;
171
172         if (mv < 725)
173                 val = 0x00;     /* Power gated off */
174         else if (mv > 1450)
175                 val = 0x1F;     /* Power FET switched full on. No regulation */
176         else
177                 val = (mv - 700) / 25;
178
179         clear_ldo_ramp();
180
181         switch (ldo) {
182         case LDO_SOC:
183                 shift = 18;
184                 break;
185         case LDO_PU:
186                 shift = 9;
187                 break;
188         case LDO_ARM:
189                 shift = 0;
190                 break;
191         default:
192                 return -EINVAL;
193         }
194
195         old = (reg & (0x1F << shift)) >> shift;
196         step = abs(val - old);
197         if (step == 0)
198                 return 0;
199
200         reg = (reg & ~(0x1F << shift)) | (val << shift);
201         writel(reg, &anatop->reg_core);
202
203         /*
204          * The LDO ramp-up is based on 64 clock cycles of 24 MHz = 2.6 us per
205          * step
206          */
207         udelay(3 * step);
208
209         return 0;
210 }
211
212 static void imx_set_wdog_powerdown(bool enable)
213 {
214         struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
215         struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
216
217         /* Write to the PDE (Power Down Enable) bit */
218         writew(enable, &wdog1->wmcr);
219         writew(enable, &wdog2->wmcr);
220 }
221
222 static void set_ahb_rate(u32 val)
223 {
224         struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
225         u32 reg, div;
226
227         div = get_periph_clk() / val - 1;
228         reg = readl(&mxc_ccm->cbcdr);
229
230         writel((reg & (~MXC_CCM_CBCDR_AHB_PODF_MASK)) |
231                 (div << MXC_CCM_CBCDR_AHB_PODF_OFFSET), &mxc_ccm->cbcdr);
232 }
233
234 static void clear_mmdc_ch_mask(void)
235 {
236         struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
237
238         /* Clear MMDC channel mask */
239         writel(0, &mxc_ccm->ccdr);
240 }
241
242 #ifdef CONFIG_MX6SL
243 static void set_preclk_from_osc(void)
244 {
245         struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
246         u32 reg;
247
248         reg = readl(&mxc_ccm->cscmr1);
249         reg |= MXC_CCM_CSCMR1_PER_CLK_SEL_MASK;
250         writel(reg, &mxc_ccm->cscmr1);
251 }
252 #endif
253
254 int arch_cpu_init(void)
255 {
256         init_aips();
257
258         /* Need to clear MMDC_CHx_MASK to make warm reset work. */
259         clear_mmdc_ch_mask();
260
261         /*
262          * When low freq boot is enabled, ROM will not set AHB
263          * freq, so we need to ensure AHB freq is 132MHz in such
264          * scenario.
265          */
266         if (mxc_get_clock(MXC_ARM_CLK) == 396000000)
267                 set_ahb_rate(132000000);
268
269                 /* Set perclk to source from OSC 24MHz */
270 #if defined(CONFIG_MX6SL)
271         set_preclk_from_osc();
272 #endif
273
274         imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
275
276 #ifdef CONFIG_APBH_DMA
277         /* Start APBH DMA */
278         mxs_dma_init();
279 #endif
280
281         return 0;
282 }
283
284 int board_postclk_init(void)
285 {
286         set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */
287
288         return 0;
289 }
290
291 #ifndef CONFIG_SYS_DCACHE_OFF
292 void enable_caches(void)
293 {
294 #if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH)
295         enum dcache_option option = DCACHE_WRITETHROUGH;
296 #else
297         enum dcache_option option = DCACHE_WRITEBACK;
298 #endif
299
300         /* Avoid random hang when download by usb */
301         invalidate_dcache_all();
302
303         /* Enable D-cache. I-cache is already enabled in start.S */
304         dcache_enable();
305
306         /* Enable caching on OCRAM and ROM */
307         mmu_set_region_dcache_behaviour(ROMCP_ARB_BASE_ADDR,
308                                         ROMCP_ARB_END_ADDR,
309                                         option);
310         mmu_set_region_dcache_behaviour(IRAM_BASE_ADDR,
311                                         IRAM_SIZE,
312                                         option);
313 }
314 #endif
315
316 #if defined(CONFIG_FEC_MXC)
317 void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
318 {
319         struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
320         struct fuse_bank *bank = &ocotp->bank[4];
321         struct fuse_bank4_regs *fuse =
322                         (struct fuse_bank4_regs *)bank->fuse_regs;
323
324         u32 value = readl(&fuse->mac_addr_high);
325         mac[0] = (value >> 8);
326         mac[1] = value ;
327
328         value = readl(&fuse->mac_addr_low);
329         mac[2] = value >> 24 ;
330         mac[3] = value >> 16 ;
331         mac[4] = value >> 8 ;
332         mac[5] = value ;
333
334 }
335 #endif
336
337 void boot_mode_apply(unsigned cfg_val)
338 {
339         unsigned reg;
340         struct src *psrc = (struct src *)SRC_BASE_ADDR;
341         writel(cfg_val, &psrc->gpr9);
342         reg = readl(&psrc->gpr10);
343         if (cfg_val)
344                 reg |= 1 << 28;
345         else
346                 reg &= ~(1 << 28);
347         writel(reg, &psrc->gpr10);
348 }
349 /*
350  * cfg_val will be used for
351  * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
352  * After reset, if GPR10[28] is 1, ROM will copy GPR9[25:0]
353  * to SBMR1, which will determine the boot device.
354  */
355 const struct boot_mode soc_boot_modes[] = {
356         {"normal",      MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
357         /* reserved value should start rom usb */
358         {"usb",         MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
359         {"sata",        MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
360         {"ecspi1:0",    MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
361         {"ecspi1:1",    MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
362         {"ecspi1:2",    MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
363         {"ecspi1:3",    MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
364         /* 4 bit bus width */
365         {"esdhc1",      MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
366         {"esdhc2",      MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
367         {"esdhc3",      MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
368         {"esdhc4",      MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
369         {NULL,          0},
370 };
371
372 void s_init(void)
373 {
374         struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
375         struct mxc_ccm_reg *ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
376         u32 mask480;
377         u32 mask528;
378         u32 reg, periph1, periph2;
379
380         if (is_cpu_type(MXC_CPU_MX6SX))
381                 return;
382
383         /* Due to hardware limitation, on MX6Q we need to gate/ungate all PFDs
384          * to make sure PFD is working right, otherwise, PFDs may
385          * not output clock after reset, MX6DL and MX6SL have added 396M pfd
386          * workaround in ROM code, as bus clock need it
387          */
388
389         mask480 = ANATOP_PFD_CLKGATE_MASK(0) |
390                 ANATOP_PFD_CLKGATE_MASK(1) |
391                 ANATOP_PFD_CLKGATE_MASK(2) |
392                 ANATOP_PFD_CLKGATE_MASK(3);
393         mask528 = ANATOP_PFD_CLKGATE_MASK(1) |
394                 ANATOP_PFD_CLKGATE_MASK(3);
395
396         reg = readl(&ccm->cbcmr);
397         periph2 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_MASK)
398                 >> MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_OFFSET);
399         periph1 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_MASK)
400                 >> MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_OFFSET);
401
402         /* Checking if PLL2 PFD0 or PLL2 PFD2 is using for periph clock */
403         if ((periph2 != 0x2) && (periph1 != 0x2))
404                 mask528 |= ANATOP_PFD_CLKGATE_MASK(0);
405
406         if ((periph2 != 0x1) && (periph1 != 0x1) &&
407                 (periph2 != 0x3) && (periph1 != 0x3))
408                 mask528 |= ANATOP_PFD_CLKGATE_MASK(2);
409
410         writel(mask480, &anatop->pfd_480_set);
411         writel(mask528, &anatop->pfd_528_set);
412         writel(mask480, &anatop->pfd_480_clr);
413         writel(mask528, &anatop->pfd_528_clr);
414 }
415
416 #ifdef CONFIG_IMX_HDMI
417 void imx_enable_hdmi_phy(void)
418 {
419         struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
420         u8 reg;
421         reg = readb(&hdmi->phy_conf0);
422         reg |= HDMI_PHY_CONF0_PDZ_MASK;
423         writeb(reg, &hdmi->phy_conf0);
424         udelay(3000);
425         reg |= HDMI_PHY_CONF0_ENTMDS_MASK;
426         writeb(reg, &hdmi->phy_conf0);
427         udelay(3000);
428         reg |= HDMI_PHY_CONF0_GEN2_TXPWRON_MASK;
429         writeb(reg, &hdmi->phy_conf0);
430         writeb(HDMI_MC_PHYRSTZ_ASSERT, &hdmi->mc_phyrstz);
431 }
432
433 void imx_setup_hdmi(void)
434 {
435         struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
436         struct hdmi_regs *hdmi  = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
437         int reg;
438
439         /* Turn on HDMI PHY clock */
440         reg = readl(&mxc_ccm->CCGR2);
441         reg |=  MXC_CCM_CCGR2_HDMI_TX_IAHBCLK_MASK|
442                  MXC_CCM_CCGR2_HDMI_TX_ISFRCLK_MASK;
443         writel(reg, &mxc_ccm->CCGR2);
444         writeb(HDMI_MC_PHYRSTZ_DEASSERT, &hdmi->mc_phyrstz);
445         reg = readl(&mxc_ccm->chsccdr);
446         reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_MASK|
447                  MXC_CCM_CHSCCDR_IPU1_DI0_PODF_MASK|
448                  MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_MASK);
449         reg |= (CHSCCDR_PODF_DIVIDE_BY_3
450                  << MXC_CCM_CHSCCDR_IPU1_DI0_PODF_OFFSET)
451                  |(CHSCCDR_IPU_PRE_CLK_540M_PFD
452                  << MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_OFFSET);
453         writel(reg, &mxc_ccm->chsccdr);
454 }
455 #endif
456
457 #ifndef CONFIG_SYS_L2CACHE_OFF
458 #define IOMUXC_GPR11_L2CACHE_AS_OCRAM 0x00000002
459 void v7_outer_cache_enable(void)
460 {
461         struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
462         unsigned int val;
463
464 #if defined CONFIG_MX6SL
465         struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
466         val = readl(&iomux->gpr[11]);
467         if (val & IOMUXC_GPR11_L2CACHE_AS_OCRAM) {
468                 /* L2 cache configured as OCRAM, reset it */
469                 val &= ~IOMUXC_GPR11_L2CACHE_AS_OCRAM;
470                 writel(val, &iomux->gpr[11]);
471         }
472 #endif
473
474         /* Must disable the L2 before changing the latency parameters */
475         clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
476
477         writel(0x132, &pl310->pl310_tag_latency_ctrl);
478         writel(0x132, &pl310->pl310_data_latency_ctrl);
479
480         val = readl(&pl310->pl310_prefetch_ctrl);
481
482         /* Turn on the L2 I/D prefetch */
483         val |= 0x30000000;
484
485         /*
486          * The L2 cache controller(PL310) version on the i.MX6D/Q is r3p1-50rel0
487          * The L2 cache controller(PL310) version on the i.MX6DL/SOLO/SL is r3p2
488          * But according to ARM PL310 errata: 752271
489          * ID: 752271: Double linefill feature can cause data corruption
490          * Fault Status: Present in: r3p0, r3p1, r3p1-50rel0. Fixed in r3p2
491          * Workaround: The only workaround to this erratum is to disable the
492          * double linefill feature. This is the default behavior.
493          */
494
495 #ifndef CONFIG_MX6Q
496         val |= 0x40800000;
497 #endif
498         writel(val, &pl310->pl310_prefetch_ctrl);
499
500         val = readl(&pl310->pl310_power_ctrl);
501         val |= L2X0_DYNAMIC_CLK_GATING_EN;
502         val |= L2X0_STNDBY_MODE_EN;
503         writel(val, &pl310->pl310_power_ctrl);
504
505         setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
506 }
507
508 void v7_outer_cache_disable(void)
509 {
510         struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
511
512         clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
513 }
514 #endif /* !CONFIG_SYS_L2CACHE_OFF */