blob: f2dee76941bc195f1cbb3f4e6a38aaebbb37a606 [file] [log] [blame]
Jason Liu23608e22011-11-25 00:18:02 +00001/*
2 * (C) Copyright 2007
3 * Sascha Hauer, Pengutronix
4 *
5 * (C) Copyright 2009 Freescale Semiconductor, Inc.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Jason Liu23608e22011-11-25 00:18:02 +00008 */
9
10#include <common.h>
Fabio Estevam6d73c232014-01-29 17:39:49 -020011#include <asm/armv7.h>
12#include <asm/pl310.h>
Jason Liu23608e22011-11-25 00:18:02 +000013#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>
Troy Kisky124a06d2012-08-15 10:31:20 +000018#include <asm/imx-common/boot_mode.h>
Stefan Roeseae695b12013-04-15 21:14:12 +000019#include <asm/imx-common/dma.h>
Fabio Estevam76c91e62013-02-07 06:45:23 +000020#include <stdbool.h>
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -050021#include <asm/arch/mxc_hdmi.h>
22#include <asm/arch/crm_regs.h>
Jason Liu23608e22011-11-25 00:18:02 +000023
Fabio Estevam3d622b72013-12-26 14:51:33 -020024enum ldo_reg {
25 LDO_ARM,
26 LDO_SOC,
27 LDO_PU,
28};
29
Troy Kisky20332a02012-10-23 10:57:46 +000030struct scu_regs {
31 u32 ctrl;
32 u32 config;
33 u32 status;
34 u32 invalidate;
35 u32 fpga_rev;
36};
37
Jason Liu23608e22011-11-25 00:18:02 +000038u32 get_cpu_rev(void)
39{
Fabio Estevama7683862012-03-20 04:21:45 +000040 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Troy Kisky20332a02012-10-23 10:57:46 +000041 u32 reg = readl(&anatop->digprog_sololite);
42 u32 type = ((reg >> 16) & 0xff);
Fabio Estevama7683862012-03-20 04:21:45 +000043
Troy Kisky20332a02012-10-23 10:57:46 +000044 if (type != MXC_CPU_MX6SL) {
45 reg = readl(&anatop->digprog);
Fabio Estevam94db6652014-01-26 15:06:41 -020046 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
47 u32 cfg = readl(&scu->config) & 3;
Troy Kisky20332a02012-10-23 10:57:46 +000048 type = ((reg >> 16) & 0xff);
49 if (type == MXC_CPU_MX6DL) {
Troy Kisky20332a02012-10-23 10:57:46 +000050 if (!cfg)
51 type = MXC_CPU_MX6SOLO;
52 }
Fabio Estevam94db6652014-01-26 15:06:41 -020053
54 if (type == MXC_CPU_MX6Q) {
55 if (cfg == 1)
56 type = MXC_CPU_MX6D;
57 }
58
Troy Kisky20332a02012-10-23 10:57:46 +000059 }
60 reg &= 0xff; /* mx6 silicon revision */
61 return (type << 12) | (reg + 0x10);
Jason Liu23608e22011-11-25 00:18:02 +000062}
63
Fabio Estevam38e70072013-03-27 07:36:55 +000064#ifdef CONFIG_REVISION_TAG
65u32 __weak get_board_rev(void)
66{
67 u32 cpurev = get_cpu_rev();
68 u32 type = ((cpurev >> 12) & 0xff);
69 if (type == MXC_CPU_MX6SOLO)
70 cpurev = (MXC_CPU_MX6DL) << 12 | (cpurev & 0xFFF);
71
Fabio Estevam94db6652014-01-26 15:06:41 -020072 if (type == MXC_CPU_MX6D)
73 cpurev = (MXC_CPU_MX6Q) << 12 | (cpurev & 0xFFF);
74
Fabio Estevam38e70072013-03-27 07:36:55 +000075 return cpurev;
76}
77#endif
78
Jason Liu23608e22011-11-25 00:18:02 +000079void init_aips(void)
80{
Jason Liuf2f77452012-01-10 00:52:59 +000081 struct aipstz_regs *aips1, *aips2;
Fabio Estevam05d54b82014-06-24 17:40:58 -030082#ifdef CONFIG_MX6SX
83 struct aipstz_regs *aips3;
84#endif
Jason Liuf2f77452012-01-10 00:52:59 +000085
86 aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
87 aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
Fabio Estevam05d54b82014-06-24 17:40:58 -030088#ifdef CONFIG_MX6SX
89 aips3 = (struct aipstz_regs *)AIPS3_BASE_ADDR;
90#endif
Jason Liu23608e22011-11-25 00:18:02 +000091
92 /*
93 * Set all MPROTx to be non-bufferable, trusted for R/W,
94 * not forced to user-mode.
95 */
Jason Liuf2f77452012-01-10 00:52:59 +000096 writel(0x77777777, &aips1->mprot0);
97 writel(0x77777777, &aips1->mprot1);
98 writel(0x77777777, &aips2->mprot0);
99 writel(0x77777777, &aips2->mprot1);
Jason Liu23608e22011-11-25 00:18:02 +0000100
Jason Liuf2f77452012-01-10 00:52:59 +0000101 /*
102 * Set all OPACRx to be non-bufferable, not require
103 * supervisor privilege level for access,allow for
104 * write access and untrusted master access.
105 */
106 writel(0x00000000, &aips1->opacr0);
107 writel(0x00000000, &aips1->opacr1);
108 writel(0x00000000, &aips1->opacr2);
109 writel(0x00000000, &aips1->opacr3);
110 writel(0x00000000, &aips1->opacr4);
111 writel(0x00000000, &aips2->opacr0);
112 writel(0x00000000, &aips2->opacr1);
113 writel(0x00000000, &aips2->opacr2);
114 writel(0x00000000, &aips2->opacr3);
115 writel(0x00000000, &aips2->opacr4);
Fabio Estevam05d54b82014-06-24 17:40:58 -0300116
117#ifdef CONFIG_MX6SX
118 /*
119 * Set all MPROTx to be non-bufferable, trusted for R/W,
120 * not forced to user-mode.
121 */
122 writel(0x77777777, &aips3->mprot0);
123 writel(0x77777777, &aips3->mprot1);
124
125 /*
126 * Set all OPACRx to be non-bufferable, not require
127 * supervisor privilege level for access,allow for
128 * write access and untrusted master access.
129 */
130 writel(0x00000000, &aips3->opacr0);
131 writel(0x00000000, &aips3->opacr1);
132 writel(0x00000000, &aips3->opacr2);
133 writel(0x00000000, &aips3->opacr3);
134 writel(0x00000000, &aips3->opacr4);
135#endif
Jason Liu23608e22011-11-25 00:18:02 +0000136}
137
Fabio Estevame113fd12013-12-26 14:51:31 -0200138static void clear_ldo_ramp(void)
139{
140 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
141 int reg;
142
143 /* ROM may modify LDO ramp up time according to fuse setting, so in
144 * order to be in the safe side we neeed to reset these settings to
145 * match the reset value: 0'b00
146 */
147 reg = readl(&anatop->ana_misc2);
148 reg &= ~(0x3f << 24);
149 writel(reg, &anatop->ana_misc2);
150}
151
Dirk Behmecac833a2012-05-02 02:12:17 +0000152/*
Fabio Estevam157f45d2014-06-13 01:42:37 -0300153 * Set the PMU_REG_CORE register
Dirk Behmecac833a2012-05-02 02:12:17 +0000154 *
Fabio Estevam157f45d2014-06-13 01:42:37 -0300155 * Set LDO_SOC/PU/ARM regulators to the specified millivolt level.
Dirk Behmecac833a2012-05-02 02:12:17 +0000156 * Possible values are from 0.725V to 1.450V in steps of
157 * 0.025V (25mV).
158 */
Fabio Estevam3d622b72013-12-26 14:51:33 -0200159static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
Dirk Behmecac833a2012-05-02 02:12:17 +0000160{
161 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200162 u32 val, step, old, reg = readl(&anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200163 u8 shift;
Dirk Behmecac833a2012-05-02 02:12:17 +0000164
165 if (mv < 725)
166 val = 0x00; /* Power gated off */
167 else if (mv > 1450)
168 val = 0x1F; /* Power FET switched full on. No regulation */
169 else
170 val = (mv - 700) / 25;
171
Fabio Estevame113fd12013-12-26 14:51:31 -0200172 clear_ldo_ramp();
173
Fabio Estevam3d622b72013-12-26 14:51:33 -0200174 switch (ldo) {
175 case LDO_SOC:
176 shift = 18;
177 break;
178 case LDO_PU:
179 shift = 9;
180 break;
181 case LDO_ARM:
182 shift = 0;
183 break;
184 default:
185 return -EINVAL;
186 }
187
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200188 old = (reg & (0x1F << shift)) >> shift;
189 step = abs(val - old);
190 if (step == 0)
191 return 0;
192
Fabio Estevam3d622b72013-12-26 14:51:33 -0200193 reg = (reg & ~(0x1F << shift)) | (val << shift);
Dirk Behmecac833a2012-05-02 02:12:17 +0000194 writel(reg, &anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200195
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200196 /*
197 * The LDO ramp-up is based on 64 clock cycles of 24 MHz = 2.6 us per
198 * step
199 */
200 udelay(3 * step);
201
Fabio Estevam3d622b72013-12-26 14:51:33 -0200202 return 0;
Dirk Behmecac833a2012-05-02 02:12:17 +0000203}
204
Fabio Estevam76c91e62013-02-07 06:45:23 +0000205static void imx_set_wdog_powerdown(bool enable)
206{
207 struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
208 struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
209
210 /* Write to the PDE (Power Down Enable) bit */
211 writew(enable, &wdog1->wmcr);
212 writew(enable, &wdog2->wmcr);
213}
214
Anson Huang5c92edc2014-01-23 14:00:18 +0800215static void set_ahb_rate(u32 val)
216{
217 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
218 u32 reg, div;
219
220 div = get_periph_clk() / val - 1;
221 reg = readl(&mxc_ccm->cbcdr);
222
223 writel((reg & (~MXC_CCM_CBCDR_AHB_PODF_MASK)) |
224 (div << MXC_CCM_CBCDR_AHB_PODF_OFFSET), &mxc_ccm->cbcdr);
225}
226
Anson Huang16197bb2014-01-23 14:00:19 +0800227static void clear_mmdc_ch_mask(void)
228{
229 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
230
231 /* Clear MMDC channel mask */
232 writel(0, &mxc_ccm->ccdr);
233}
234
Jason Liu23608e22011-11-25 00:18:02 +0000235int arch_cpu_init(void)
236{
237 init_aips();
238
Anson Huang16197bb2014-01-23 14:00:19 +0800239 /* Need to clear MMDC_CHx_MASK to make warm reset work. */
240 clear_mmdc_ch_mask();
241
Anson Huang5c92edc2014-01-23 14:00:18 +0800242 /*
243 * When low freq boot is enabled, ROM will not set AHB
244 * freq, so we need to ensure AHB freq is 132MHz in such
245 * scenario.
246 */
247 if (mxc_get_clock(MXC_ARM_CLK) == 396000000)
248 set_ahb_rate(132000000);
249
Fabio Estevam76c91e62013-02-07 06:45:23 +0000250 imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
Stefan Roeseae695b12013-04-15 21:14:12 +0000251
252#ifdef CONFIG_APBH_DMA
253 /* Start APBH DMA */
254 mxs_dma_init();
255#endif
256
Jason Liu23608e22011-11-25 00:18:02 +0000257 return 0;
258}
Jason Liu23608e22011-11-25 00:18:02 +0000259
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200260int board_postclk_init(void)
261{
262 set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */
263
264 return 0;
265}
266
Eric Nelson4d422fe2012-03-04 11:47:38 +0000267#ifndef CONFIG_SYS_DCACHE_OFF
268void enable_caches(void)
269{
Frank Liebaf6b22013-11-14 00:58:46 +0800270 /* Avoid random hang when download by usb */
271 invalidate_dcache_all();
Eric Nelson4d422fe2012-03-04 11:47:38 +0000272 /* Enable D-cache. I-cache is already enabled in start.S */
273 dcache_enable();
274}
275#endif
276
Jason Liu23608e22011-11-25 00:18:02 +0000277#if defined(CONFIG_FEC_MXC)
Fabio Estevambe252b62011-12-20 05:46:31 +0000278void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
Jason Liu23608e22011-11-25 00:18:02 +0000279{
Benoît Thébaudeau8f3ff112013-04-23 10:17:38 +0000280 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
281 struct fuse_bank *bank = &ocotp->bank[4];
Jason Liu23608e22011-11-25 00:18:02 +0000282 struct fuse_bank4_regs *fuse =
283 (struct fuse_bank4_regs *)bank->fuse_regs;
284
Jason Liubd2e27c2011-12-19 02:38:13 +0000285 u32 value = readl(&fuse->mac_addr_high);
286 mac[0] = (value >> 8);
287 mac[1] = value ;
Jason Liu23608e22011-11-25 00:18:02 +0000288
Jason Liubd2e27c2011-12-19 02:38:13 +0000289 value = readl(&fuse->mac_addr_low);
290 mac[2] = value >> 24 ;
291 mac[3] = value >> 16 ;
292 mac[4] = value >> 8 ;
293 mac[5] = value ;
Jason Liu23608e22011-11-25 00:18:02 +0000294
295}
296#endif
Troy Kisky124a06d2012-08-15 10:31:20 +0000297
298void boot_mode_apply(unsigned cfg_val)
299{
300 unsigned reg;
Eric Nelson2af7e812012-09-18 15:26:32 +0000301 struct src *psrc = (struct src *)SRC_BASE_ADDR;
Troy Kisky124a06d2012-08-15 10:31:20 +0000302 writel(cfg_val, &psrc->gpr9);
303 reg = readl(&psrc->gpr10);
304 if (cfg_val)
305 reg |= 1 << 28;
306 else
307 reg &= ~(1 << 28);
308 writel(reg, &psrc->gpr10);
309}
310/*
311 * cfg_val will be used for
312 * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
313 * After reset, if GPR10[28] is 1, ROM will copy GPR9[25:0]
314 * to SBMR1, which will determine the boot device.
315 */
316const struct boot_mode soc_boot_modes[] = {
317 {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
318 /* reserved value should start rom usb */
319 {"usb", MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
320 {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
321 {"escpi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
322 {"escpi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
323 {"escpi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
324 {"escpi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
325 /* 4 bit bus width */
326 {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
327 {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
328 {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
329 {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
330 {NULL, 0},
331};
Stephen Warren8f393772013-02-26 12:28:29 +0000332
333void s_init(void)
334{
Eric Nelson8467fae2013-08-29 12:41:46 -0700335 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
336 int is_6q = is_cpu_type(MXC_CPU_MX6Q);
337 u32 mask480;
338 u32 mask528;
339
Fabio Estevama3df99b2014-07-09 16:13:29 -0300340
341 if (is_cpu_type(MXC_CPU_MX6SX))
342 return;
343
Eric Nelson8467fae2013-08-29 12:41:46 -0700344 /* Due to hardware limitation, on MX6Q we need to gate/ungate all PFDs
345 * to make sure PFD is working right, otherwise, PFDs may
346 * not output clock after reset, MX6DL and MX6SL have added 396M pfd
347 * workaround in ROM code, as bus clock need it
348 */
349
350 mask480 = ANATOP_PFD_CLKGATE_MASK(0) |
351 ANATOP_PFD_CLKGATE_MASK(1) |
352 ANATOP_PFD_CLKGATE_MASK(2) |
353 ANATOP_PFD_CLKGATE_MASK(3);
354 mask528 = ANATOP_PFD_CLKGATE_MASK(0) |
355 ANATOP_PFD_CLKGATE_MASK(1) |
356 ANATOP_PFD_CLKGATE_MASK(3);
357
358 /*
359 * Don't reset PFD2 on DL/S
360 */
361 if (is_6q)
362 mask528 |= ANATOP_PFD_CLKGATE_MASK(2);
363 writel(mask480, &anatop->pfd_480_set);
364 writel(mask528, &anatop->pfd_528_set);
365 writel(mask480, &anatop->pfd_480_clr);
366 writel(mask528, &anatop->pfd_528_clr);
Stephen Warren8f393772013-02-26 12:28:29 +0000367}
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500368
369#ifdef CONFIG_IMX_HDMI
370void imx_enable_hdmi_phy(void)
371{
372 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
373 u8 reg;
374 reg = readb(&hdmi->phy_conf0);
375 reg |= HDMI_PHY_CONF0_PDZ_MASK;
376 writeb(reg, &hdmi->phy_conf0);
377 udelay(3000);
378 reg |= HDMI_PHY_CONF0_ENTMDS_MASK;
379 writeb(reg, &hdmi->phy_conf0);
380 udelay(3000);
381 reg |= HDMI_PHY_CONF0_GEN2_TXPWRON_MASK;
382 writeb(reg, &hdmi->phy_conf0);
383 writeb(HDMI_MC_PHYRSTZ_ASSERT, &hdmi->mc_phyrstz);
384}
385
386void imx_setup_hdmi(void)
387{
388 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
389 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
390 int reg;
391
392 /* Turn on HDMI PHY clock */
393 reg = readl(&mxc_ccm->CCGR2);
394 reg |= MXC_CCM_CCGR2_HDMI_TX_IAHBCLK_MASK|
395 MXC_CCM_CCGR2_HDMI_TX_ISFRCLK_MASK;
396 writel(reg, &mxc_ccm->CCGR2);
397 writeb(HDMI_MC_PHYRSTZ_DEASSERT, &hdmi->mc_phyrstz);
398 reg = readl(&mxc_ccm->chsccdr);
399 reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_MASK|
400 MXC_CCM_CHSCCDR_IPU1_DI0_PODF_MASK|
401 MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_MASK);
402 reg |= (CHSCCDR_PODF_DIVIDE_BY_3
403 << MXC_CCM_CHSCCDR_IPU1_DI0_PODF_OFFSET)
404 |(CHSCCDR_IPU_PRE_CLK_540M_PFD
405 << MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_OFFSET);
406 writel(reg, &mxc_ccm->chsccdr);
407}
408#endif
Fabio Estevam6d73c232014-01-29 17:39:49 -0200409
410#ifndef CONFIG_SYS_L2CACHE_OFF
411#define IOMUXC_GPR11_L2CACHE_AS_OCRAM 0x00000002
412void v7_outer_cache_enable(void)
413{
414 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
415 unsigned int val;
416
417#if defined CONFIG_MX6SL
418 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
419 val = readl(&iomux->gpr[11]);
420 if (val & IOMUXC_GPR11_L2CACHE_AS_OCRAM) {
421 /* L2 cache configured as OCRAM, reset it */
422 val &= ~IOMUXC_GPR11_L2CACHE_AS_OCRAM;
423 writel(val, &iomux->gpr[11]);
424 }
425#endif
426
427 writel(0x132, &pl310->pl310_tag_latency_ctrl);
428 writel(0x132, &pl310->pl310_data_latency_ctrl);
429
430 val = readl(&pl310->pl310_prefetch_ctrl);
431
432 /* Turn on the L2 I/D prefetch */
433 val |= 0x30000000;
434
435 /*
436 * The L2 cache controller(PL310) version on the i.MX6D/Q is r3p1-50rel0
437 * The L2 cache controller(PL310) version on the i.MX6DL/SOLO/SL is r3p2
438 * But according to ARM PL310 errata: 752271
439 * ID: 752271: Double linefill feature can cause data corruption
440 * Fault Status: Present in: r3p0, r3p1, r3p1-50rel0. Fixed in r3p2
441 * Workaround: The only workaround to this erratum is to disable the
442 * double linefill feature. This is the default behavior.
443 */
444
445#ifndef CONFIG_MX6Q
446 val |= 0x40800000;
447#endif
448 writel(val, &pl310->pl310_prefetch_ctrl);
449
450 val = readl(&pl310->pl310_power_ctrl);
451 val |= L2X0_DYNAMIC_CLK_GATING_EN;
452 val |= L2X0_STNDBY_MODE_EN;
453 writel(val, &pl310->pl310_power_ctrl);
454
455 setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
456}
457
458void v7_outer_cache_disable(void)
459{
460 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
461
462 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
463}
464#endif /* !CONFIG_SYS_L2CACHE_OFF */