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