blob: f20bdebf3fa655042813e1dd563c7fca94bddb6b [file] [log] [blame]
Jason Liudec11122011-11-25 00:18:02 +00001/*
2 * (C) Copyright 2007
3 * Sascha Hauer, Pengutronix
4 *
5 * (C) Copyright 2009 Freescale Semiconductor, Inc.
6 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Jason Liudec11122011-11-25 00:18:02 +00008 */
9
10#include <common.h>
Fabio Estevam13409292014-01-29 17:39:49 -020011#include <asm/armv7.h>
12#include <asm/pl310.h>
Jason Liudec11122011-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 Kisky0ca618c2012-08-15 10:31:20 +000018#include <asm/imx-common/boot_mode.h>
Stefan Roese8338d1d2013-04-15 21:14:12 +000019#include <asm/imx-common/dma.h>
Fabio Estevam48e65b02013-02-07 06:45:23 +000020#include <stdbool.h>
Pardeep Kumar Singlac1fa1302013-07-25 12:12:13 -050021#include <asm/arch/mxc_hdmi.h>
22#include <asm/arch/crm_regs.h>
Jason Liudec11122011-11-25 00:18:02 +000023
Fabio Estevama47ec522013-12-26 14:51:33 -020024enum ldo_reg {
25 LDO_ARM,
26 LDO_SOC,
27 LDO_PU,
28};
29
Troy Kisky58394932012-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 Liudec11122011-11-25 00:18:02 +000038u32 get_cpu_rev(void)
39{
Fabio Estevam46e97332012-03-20 04:21:45 +000040 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Troy Kisky58394932012-10-23 10:57:46 +000041 u32 reg = readl(&anatop->digprog_sololite);
42 u32 type = ((reg >> 16) & 0xff);
Fabio Estevam46e97332012-03-20 04:21:45 +000043
Troy Kisky58394932012-10-23 10:57:46 +000044 if (type != MXC_CPU_MX6SL) {
45 reg = readl(&anatop->digprog);
Fabio Estevamf3d5a2c2014-01-26 15:06:41 -020046 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
47 u32 cfg = readl(&scu->config) & 3;
Troy Kisky58394932012-10-23 10:57:46 +000048 type = ((reg >> 16) & 0xff);
49 if (type == MXC_CPU_MX6DL) {
Troy Kisky58394932012-10-23 10:57:46 +000050 if (!cfg)
51 type = MXC_CPU_MX6SOLO;
52 }
Fabio Estevamf3d5a2c2014-01-26 15:06:41 -020053
54 if (type == MXC_CPU_MX6Q) {
55 if (cfg == 1)
56 type = MXC_CPU_MX6D;
57 }
58
Troy Kisky58394932012-10-23 10:57:46 +000059 }
60 reg &= 0xff; /* mx6 silicon revision */
61 return (type << 12) | (reg + 0x10);
Jason Liudec11122011-11-25 00:18:02 +000062}
63
Fabio Estevam435998b2013-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 Estevamf3d5a2c2014-01-26 15:06:41 -020072 if (type == MXC_CPU_MX6D)
73 cpurev = (MXC_CPU_MX6Q) << 12 | (cpurev & 0xFFF);
74
Fabio Estevam435998b2013-03-27 07:36:55 +000075 return cpurev;
76}
77#endif
78
Jason Liudec11122011-11-25 00:18:02 +000079void init_aips(void)
80{
Jason Liubb25e072012-01-10 00:52:59 +000081 struct aipstz_regs *aips1, *aips2;
82
83 aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
84 aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
Jason Liudec11122011-11-25 00:18:02 +000085
86 /*
87 * Set all MPROTx to be non-bufferable, trusted for R/W,
88 * not forced to user-mode.
89 */
Jason Liubb25e072012-01-10 00:52:59 +000090 writel(0x77777777, &aips1->mprot0);
91 writel(0x77777777, &aips1->mprot1);
92 writel(0x77777777, &aips2->mprot0);
93 writel(0x77777777, &aips2->mprot1);
Jason Liudec11122011-11-25 00:18:02 +000094
Jason Liubb25e072012-01-10 00:52:59 +000095 /*
96 * Set all OPACRx to be non-bufferable, not require
97 * supervisor privilege level for access,allow for
98 * write access and untrusted master access.
99 */
100 writel(0x00000000, &aips1->opacr0);
101 writel(0x00000000, &aips1->opacr1);
102 writel(0x00000000, &aips1->opacr2);
103 writel(0x00000000, &aips1->opacr3);
104 writel(0x00000000, &aips1->opacr4);
105 writel(0x00000000, &aips2->opacr0);
106 writel(0x00000000, &aips2->opacr1);
107 writel(0x00000000, &aips2->opacr2);
108 writel(0x00000000, &aips2->opacr3);
109 writel(0x00000000, &aips2->opacr4);
Jason Liudec11122011-11-25 00:18:02 +0000110}
111
Fabio Estevamcf621ff2013-12-26 14:51:31 -0200112static void clear_ldo_ramp(void)
113{
114 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
115 int reg;
116
117 /* ROM may modify LDO ramp up time according to fuse setting, so in
118 * order to be in the safe side we neeed to reset these settings to
119 * match the reset value: 0'b00
120 */
121 reg = readl(&anatop->ana_misc2);
122 reg &= ~(0x3f << 24);
123 writel(reg, &anatop->ana_misc2);
124}
125
Dirk Behme8c465942012-05-02 02:12:17 +0000126/*
Fabio Estevam2e95fe12014-06-13 01:42:37 -0300127 * Set the PMU_REG_CORE register
Dirk Behme8c465942012-05-02 02:12:17 +0000128 *
Fabio Estevam2e95fe12014-06-13 01:42:37 -0300129 * Set LDO_SOC/PU/ARM regulators to the specified millivolt level.
Dirk Behme8c465942012-05-02 02:12:17 +0000130 * Possible values are from 0.725V to 1.450V in steps of
131 * 0.025V (25mV).
132 */
Fabio Estevama47ec522013-12-26 14:51:33 -0200133static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
Dirk Behme8c465942012-05-02 02:12:17 +0000134{
135 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Fabio Estevam99b370b2013-12-26 14:51:34 -0200136 u32 val, step, old, reg = readl(&anatop->reg_core);
Fabio Estevama47ec522013-12-26 14:51:33 -0200137 u8 shift;
Dirk Behme8c465942012-05-02 02:12:17 +0000138
139 if (mv < 725)
140 val = 0x00; /* Power gated off */
141 else if (mv > 1450)
142 val = 0x1F; /* Power FET switched full on. No regulation */
143 else
144 val = (mv - 700) / 25;
145
Fabio Estevamcf621ff2013-12-26 14:51:31 -0200146 clear_ldo_ramp();
147
Fabio Estevama47ec522013-12-26 14:51:33 -0200148 switch (ldo) {
149 case LDO_SOC:
150 shift = 18;
151 break;
152 case LDO_PU:
153 shift = 9;
154 break;
155 case LDO_ARM:
156 shift = 0;
157 break;
158 default:
159 return -EINVAL;
160 }
161
Fabio Estevam99b370b2013-12-26 14:51:34 -0200162 old = (reg & (0x1F << shift)) >> shift;
163 step = abs(val - old);
164 if (step == 0)
165 return 0;
166
Fabio Estevama47ec522013-12-26 14:51:33 -0200167 reg = (reg & ~(0x1F << shift)) | (val << shift);
Dirk Behme8c465942012-05-02 02:12:17 +0000168 writel(reg, &anatop->reg_core);
Fabio Estevama47ec522013-12-26 14:51:33 -0200169
Fabio Estevam99b370b2013-12-26 14:51:34 -0200170 /*
171 * The LDO ramp-up is based on 64 clock cycles of 24 MHz = 2.6 us per
172 * step
173 */
174 udelay(3 * step);
175
Fabio Estevama47ec522013-12-26 14:51:33 -0200176 return 0;
Dirk Behme8c465942012-05-02 02:12:17 +0000177}
178
Fabio Estevam48e65b02013-02-07 06:45:23 +0000179static void imx_set_wdog_powerdown(bool enable)
180{
181 struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
182 struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
183
184 /* Write to the PDE (Power Down Enable) bit */
185 writew(enable, &wdog1->wmcr);
186 writew(enable, &wdog2->wmcr);
187}
188
Anson Huang05a464f2014-01-23 14:00:18 +0800189static void set_ahb_rate(u32 val)
190{
191 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
192 u32 reg, div;
193
194 div = get_periph_clk() / val - 1;
195 reg = readl(&mxc_ccm->cbcdr);
196
197 writel((reg & (~MXC_CCM_CBCDR_AHB_PODF_MASK)) |
198 (div << MXC_CCM_CBCDR_AHB_PODF_OFFSET), &mxc_ccm->cbcdr);
199}
200
Anson Huang9a149bc2014-01-23 14:00:19 +0800201static void clear_mmdc_ch_mask(void)
202{
203 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
204
205 /* Clear MMDC channel mask */
206 writel(0, &mxc_ccm->ccdr);
207}
208
Jason Liudec11122011-11-25 00:18:02 +0000209int arch_cpu_init(void)
210{
211 init_aips();
212
Anson Huang9a149bc2014-01-23 14:00:19 +0800213 /* Need to clear MMDC_CHx_MASK to make warm reset work. */
214 clear_mmdc_ch_mask();
215
Anson Huang05a464f2014-01-23 14:00:18 +0800216 /*
217 * When low freq boot is enabled, ROM will not set AHB
218 * freq, so we need to ensure AHB freq is 132MHz in such
219 * scenario.
220 */
221 if (mxc_get_clock(MXC_ARM_CLK) == 396000000)
222 set_ahb_rate(132000000);
223
Fabio Estevam48e65b02013-02-07 06:45:23 +0000224 imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
Stefan Roese8338d1d2013-04-15 21:14:12 +0000225
226#ifdef CONFIG_APBH_DMA
227 /* Start APBH DMA */
228 mxs_dma_init();
229#endif
230
Jason Liudec11122011-11-25 00:18:02 +0000231 return 0;
232}
Jason Liudec11122011-11-25 00:18:02 +0000233
Fabio Estevam99b370b2013-12-26 14:51:34 -0200234int board_postclk_init(void)
235{
236 set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */
237
238 return 0;
239}
240
Eric Nelsonc94ce4a2012-03-04 11:47:38 +0000241#ifndef CONFIG_SYS_DCACHE_OFF
242void enable_caches(void)
243{
Frank Li40c41002013-11-14 00:58:46 +0800244 /* Avoid random hang when download by usb */
245 invalidate_dcache_all();
Eric Nelsonc94ce4a2012-03-04 11:47:38 +0000246 /* Enable D-cache. I-cache is already enabled in start.S */
247 dcache_enable();
248}
249#endif
250
Jason Liudec11122011-11-25 00:18:02 +0000251#if defined(CONFIG_FEC_MXC)
Fabio Estevam04fc1282011-12-20 05:46:31 +0000252void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
Jason Liudec11122011-11-25 00:18:02 +0000253{
Benoît Thébaudeaufa7e3952013-04-23 10:17:38 +0000254 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
255 struct fuse_bank *bank = &ocotp->bank[4];
Jason Liudec11122011-11-25 00:18:02 +0000256 struct fuse_bank4_regs *fuse =
257 (struct fuse_bank4_regs *)bank->fuse_regs;
258
Jason Liubf651aa2011-12-19 02:38:13 +0000259 u32 value = readl(&fuse->mac_addr_high);
260 mac[0] = (value >> 8);
261 mac[1] = value ;
Jason Liudec11122011-11-25 00:18:02 +0000262
Jason Liubf651aa2011-12-19 02:38:13 +0000263 value = readl(&fuse->mac_addr_low);
264 mac[2] = value >> 24 ;
265 mac[3] = value >> 16 ;
266 mac[4] = value >> 8 ;
267 mac[5] = value ;
Jason Liudec11122011-11-25 00:18:02 +0000268
269}
270#endif
Troy Kisky0ca618c2012-08-15 10:31:20 +0000271
272void boot_mode_apply(unsigned cfg_val)
273{
274 unsigned reg;
Eric Nelson7b8731a2012-09-18 15:26:32 +0000275 struct src *psrc = (struct src *)SRC_BASE_ADDR;
Troy Kisky0ca618c2012-08-15 10:31:20 +0000276 writel(cfg_val, &psrc->gpr9);
277 reg = readl(&psrc->gpr10);
278 if (cfg_val)
279 reg |= 1 << 28;
280 else
281 reg &= ~(1 << 28);
282 writel(reg, &psrc->gpr10);
283}
284/*
285 * cfg_val will be used for
286 * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
287 * After reset, if GPR10[28] is 1, ROM will copy GPR9[25:0]
288 * to SBMR1, which will determine the boot device.
289 */
290const struct boot_mode soc_boot_modes[] = {
291 {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
292 /* reserved value should start rom usb */
293 {"usb", MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
294 {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
295 {"escpi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
296 {"escpi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
297 {"escpi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
298 {"escpi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
299 /* 4 bit bus width */
300 {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
301 {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
302 {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
303 {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
304 {NULL, 0},
305};
Stephen Warren57ab23f2013-02-26 12:28:29 +0000306
307void s_init(void)
308{
Eric Nelson2c37d3b2013-08-29 12:41:46 -0700309 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
310 int is_6q = is_cpu_type(MXC_CPU_MX6Q);
311 u32 mask480;
312 u32 mask528;
313
314 /* Due to hardware limitation, on MX6Q we need to gate/ungate all PFDs
315 * to make sure PFD is working right, otherwise, PFDs may
316 * not output clock after reset, MX6DL and MX6SL have added 396M pfd
317 * workaround in ROM code, as bus clock need it
318 */
319
320 mask480 = ANATOP_PFD_CLKGATE_MASK(0) |
321 ANATOP_PFD_CLKGATE_MASK(1) |
322 ANATOP_PFD_CLKGATE_MASK(2) |
323 ANATOP_PFD_CLKGATE_MASK(3);
324 mask528 = ANATOP_PFD_CLKGATE_MASK(0) |
325 ANATOP_PFD_CLKGATE_MASK(1) |
326 ANATOP_PFD_CLKGATE_MASK(3);
327
328 /*
329 * Don't reset PFD2 on DL/S
330 */
331 if (is_6q)
332 mask528 |= ANATOP_PFD_CLKGATE_MASK(2);
333 writel(mask480, &anatop->pfd_480_set);
334 writel(mask528, &anatop->pfd_528_set);
335 writel(mask480, &anatop->pfd_480_clr);
336 writel(mask528, &anatop->pfd_528_clr);
Stephen Warren57ab23f2013-02-26 12:28:29 +0000337}
Pardeep Kumar Singlac1fa1302013-07-25 12:12:13 -0500338
339#ifdef CONFIG_IMX_HDMI
340void imx_enable_hdmi_phy(void)
341{
342 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
343 u8 reg;
344 reg = readb(&hdmi->phy_conf0);
345 reg |= HDMI_PHY_CONF0_PDZ_MASK;
346 writeb(reg, &hdmi->phy_conf0);
347 udelay(3000);
348 reg |= HDMI_PHY_CONF0_ENTMDS_MASK;
349 writeb(reg, &hdmi->phy_conf0);
350 udelay(3000);
351 reg |= HDMI_PHY_CONF0_GEN2_TXPWRON_MASK;
352 writeb(reg, &hdmi->phy_conf0);
353 writeb(HDMI_MC_PHYRSTZ_ASSERT, &hdmi->mc_phyrstz);
354}
355
356void imx_setup_hdmi(void)
357{
358 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
359 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
360 int reg;
361
362 /* Turn on HDMI PHY clock */
363 reg = readl(&mxc_ccm->CCGR2);
364 reg |= MXC_CCM_CCGR2_HDMI_TX_IAHBCLK_MASK|
365 MXC_CCM_CCGR2_HDMI_TX_ISFRCLK_MASK;
366 writel(reg, &mxc_ccm->CCGR2);
367 writeb(HDMI_MC_PHYRSTZ_DEASSERT, &hdmi->mc_phyrstz);
368 reg = readl(&mxc_ccm->chsccdr);
369 reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_MASK|
370 MXC_CCM_CHSCCDR_IPU1_DI0_PODF_MASK|
371 MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_MASK);
372 reg |= (CHSCCDR_PODF_DIVIDE_BY_3
373 << MXC_CCM_CHSCCDR_IPU1_DI0_PODF_OFFSET)
374 |(CHSCCDR_IPU_PRE_CLK_540M_PFD
375 << MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_OFFSET);
376 writel(reg, &mxc_ccm->chsccdr);
377}
378#endif
Fabio Estevam13409292014-01-29 17:39:49 -0200379
380#ifndef CONFIG_SYS_L2CACHE_OFF
381#define IOMUXC_GPR11_L2CACHE_AS_OCRAM 0x00000002
382void v7_outer_cache_enable(void)
383{
384 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
385 unsigned int val;
386
387#if defined CONFIG_MX6SL
388 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
389 val = readl(&iomux->gpr[11]);
390 if (val & IOMUXC_GPR11_L2CACHE_AS_OCRAM) {
391 /* L2 cache configured as OCRAM, reset it */
392 val &= ~IOMUXC_GPR11_L2CACHE_AS_OCRAM;
393 writel(val, &iomux->gpr[11]);
394 }
395#endif
396
397 writel(0x132, &pl310->pl310_tag_latency_ctrl);
398 writel(0x132, &pl310->pl310_data_latency_ctrl);
399
400 val = readl(&pl310->pl310_prefetch_ctrl);
401
402 /* Turn on the L2 I/D prefetch */
403 val |= 0x30000000;
404
405 /*
406 * The L2 cache controller(PL310) version on the i.MX6D/Q is r3p1-50rel0
407 * The L2 cache controller(PL310) version on the i.MX6DL/SOLO/SL is r3p2
408 * But according to ARM PL310 errata: 752271
409 * ID: 752271: Double linefill feature can cause data corruption
410 * Fault Status: Present in: r3p0, r3p1, r3p1-50rel0. Fixed in r3p2
411 * Workaround: The only workaround to this erratum is to disable the
412 * double linefill feature. This is the default behavior.
413 */
414
415#ifndef CONFIG_MX6Q
416 val |= 0x40800000;
417#endif
418 writel(val, &pl310->pl310_prefetch_ctrl);
419
420 val = readl(&pl310->pl310_power_ctrl);
421 val |= L2X0_DYNAMIC_CLK_GATING_EN;
422 val |= L2X0_STNDBY_MODE_EN;
423 writel(val, &pl310->pl310_power_ctrl);
424
425 setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
426}
427
428void v7_outer_cache_disable(void)
429{
430 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
431
432 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
433}
434#endif /* !CONFIG_SYS_L2CACHE_OFF */