blob: 5fd2a63a1db73b8af3de43cee0852be78716345c [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>
Jeroen Hofstee5624c6b2014-10-08 22:57:52 +020012#include <asm/bootm.h>
Fabio Estevam6d73c232014-01-29 17:39:49 -020013#include <asm/pl310.h>
Jason Liu23608e22011-11-25 00:18:02 +000014#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>
Troy Kisky124a06d2012-08-15 10:31:20 +000019#include <asm/imx-common/boot_mode.h>
Stefan Roeseae695b12013-04-15 21:14:12 +000020#include <asm/imx-common/dma.h>
Fabio Estevam76c91e62013-02-07 06:45:23 +000021#include <stdbool.h>
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -050022#include <asm/arch/mxc_hdmi.h>
23#include <asm/arch/crm_regs.h>
Eric Nelsonf6d48b22014-09-30 15:40:02 -070024#include <asm/bootm.h>
Jason Liu23608e22011-11-25 00:18:02 +000025
Fabio Estevam3d622b72013-12-26 14:51:33 -020026enum ldo_reg {
27 LDO_ARM,
28 LDO_SOC,
29 LDO_PU,
30};
31
Troy Kisky20332a02012-10-23 10:57:46 +000032struct scu_regs {
33 u32 ctrl;
34 u32 config;
35 u32 status;
36 u32 invalidate;
37 u32 fpga_rev;
38};
39
Gabriel Huaua76df702014-07-26 11:35:43 -070040u32 get_nr_cpus(void)
41{
42 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
43 return readl(&scu->config) & 3;
44}
45
Jason Liu23608e22011-11-25 00:18:02 +000046u32 get_cpu_rev(void)
47{
Fabio Estevama7683862012-03-20 04:21:45 +000048 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Troy Kisky20332a02012-10-23 10:57:46 +000049 u32 reg = readl(&anatop->digprog_sololite);
50 u32 type = ((reg >> 16) & 0xff);
Fabio Estevama7683862012-03-20 04:21:45 +000051
Troy Kisky20332a02012-10-23 10:57:46 +000052 if (type != MXC_CPU_MX6SL) {
53 reg = readl(&anatop->digprog);
Fabio Estevam94db6652014-01-26 15:06:41 -020054 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
55 u32 cfg = readl(&scu->config) & 3;
Troy Kisky20332a02012-10-23 10:57:46 +000056 type = ((reg >> 16) & 0xff);
57 if (type == MXC_CPU_MX6DL) {
Troy Kisky20332a02012-10-23 10:57:46 +000058 if (!cfg)
59 type = MXC_CPU_MX6SOLO;
60 }
Fabio Estevam94db6652014-01-26 15:06:41 -020061
62 if (type == MXC_CPU_MX6Q) {
63 if (cfg == 1)
64 type = MXC_CPU_MX6D;
65 }
66
Troy Kisky20332a02012-10-23 10:57:46 +000067 }
68 reg &= 0xff; /* mx6 silicon revision */
69 return (type << 12) | (reg + 0x10);
Jason Liu23608e22011-11-25 00:18:02 +000070}
71
Fabio Estevam38e70072013-03-27 07:36:55 +000072#ifdef CONFIG_REVISION_TAG
73u32 __weak get_board_rev(void)
74{
75 u32 cpurev = get_cpu_rev();
76 u32 type = ((cpurev >> 12) & 0xff);
77 if (type == MXC_CPU_MX6SOLO)
78 cpurev = (MXC_CPU_MX6DL) << 12 | (cpurev & 0xFFF);
79
Fabio Estevam94db6652014-01-26 15:06:41 -020080 if (type == MXC_CPU_MX6D)
81 cpurev = (MXC_CPU_MX6Q) << 12 | (cpurev & 0xFFF);
82
Fabio Estevam38e70072013-03-27 07:36:55 +000083 return cpurev;
84}
85#endif
86
Jason Liu23608e22011-11-25 00:18:02 +000087void init_aips(void)
88{
Jason Liuf2f77452012-01-10 00:52:59 +000089 struct aipstz_regs *aips1, *aips2;
Fabio Estevam05d54b82014-06-24 17:40:58 -030090#ifdef CONFIG_MX6SX
91 struct aipstz_regs *aips3;
92#endif
Jason Liuf2f77452012-01-10 00:52:59 +000093
94 aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
95 aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
Fabio Estevam05d54b82014-06-24 17:40:58 -030096#ifdef CONFIG_MX6SX
97 aips3 = (struct aipstz_regs *)AIPS3_BASE_ADDR;
98#endif
Jason Liu23608e22011-11-25 00:18:02 +000099
100 /*
101 * Set all MPROTx to be non-bufferable, trusted for R/W,
102 * not forced to user-mode.
103 */
Jason Liuf2f77452012-01-10 00:52:59 +0000104 writel(0x77777777, &aips1->mprot0);
105 writel(0x77777777, &aips1->mprot1);
106 writel(0x77777777, &aips2->mprot0);
107 writel(0x77777777, &aips2->mprot1);
Jason Liu23608e22011-11-25 00:18:02 +0000108
Jason Liuf2f77452012-01-10 00:52:59 +0000109 /*
110 * Set all OPACRx to be non-bufferable, not require
111 * supervisor privilege level for access,allow for
112 * write access and untrusted master access.
113 */
114 writel(0x00000000, &aips1->opacr0);
115 writel(0x00000000, &aips1->opacr1);
116 writel(0x00000000, &aips1->opacr2);
117 writel(0x00000000, &aips1->opacr3);
118 writel(0x00000000, &aips1->opacr4);
119 writel(0x00000000, &aips2->opacr0);
120 writel(0x00000000, &aips2->opacr1);
121 writel(0x00000000, &aips2->opacr2);
122 writel(0x00000000, &aips2->opacr3);
123 writel(0x00000000, &aips2->opacr4);
Fabio Estevam05d54b82014-06-24 17:40:58 -0300124
125#ifdef CONFIG_MX6SX
126 /*
127 * Set all MPROTx to be non-bufferable, trusted for R/W,
128 * not forced to user-mode.
129 */
130 writel(0x77777777, &aips3->mprot0);
131 writel(0x77777777, &aips3->mprot1);
132
133 /*
134 * Set all OPACRx to be non-bufferable, not require
135 * supervisor privilege level for access,allow for
136 * write access and untrusted master access.
137 */
138 writel(0x00000000, &aips3->opacr0);
139 writel(0x00000000, &aips3->opacr1);
140 writel(0x00000000, &aips3->opacr2);
141 writel(0x00000000, &aips3->opacr3);
142 writel(0x00000000, &aips3->opacr4);
143#endif
Jason Liu23608e22011-11-25 00:18:02 +0000144}
145
Fabio Estevame113fd12013-12-26 14:51:31 -0200146static void clear_ldo_ramp(void)
147{
148 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
149 int reg;
150
151 /* ROM may modify LDO ramp up time according to fuse setting, so in
152 * order to be in the safe side we neeed to reset these settings to
153 * match the reset value: 0'b00
154 */
155 reg = readl(&anatop->ana_misc2);
156 reg &= ~(0x3f << 24);
157 writel(reg, &anatop->ana_misc2);
158}
159
Dirk Behmecac833a2012-05-02 02:12:17 +0000160/*
Fabio Estevam157f45d2014-06-13 01:42:37 -0300161 * Set the PMU_REG_CORE register
Dirk Behmecac833a2012-05-02 02:12:17 +0000162 *
Fabio Estevam157f45d2014-06-13 01:42:37 -0300163 * Set LDO_SOC/PU/ARM regulators to the specified millivolt level.
Dirk Behmecac833a2012-05-02 02:12:17 +0000164 * Possible values are from 0.725V to 1.450V in steps of
165 * 0.025V (25mV).
166 */
Fabio Estevam3d622b72013-12-26 14:51:33 -0200167static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
Dirk Behmecac833a2012-05-02 02:12:17 +0000168{
169 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200170 u32 val, step, old, reg = readl(&anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200171 u8 shift;
Dirk Behmecac833a2012-05-02 02:12:17 +0000172
173 if (mv < 725)
174 val = 0x00; /* Power gated off */
175 else if (mv > 1450)
176 val = 0x1F; /* Power FET switched full on. No regulation */
177 else
178 val = (mv - 700) / 25;
179
Fabio Estevame113fd12013-12-26 14:51:31 -0200180 clear_ldo_ramp();
181
Fabio Estevam3d622b72013-12-26 14:51:33 -0200182 switch (ldo) {
183 case LDO_SOC:
184 shift = 18;
185 break;
186 case LDO_PU:
187 shift = 9;
188 break;
189 case LDO_ARM:
190 shift = 0;
191 break;
192 default:
193 return -EINVAL;
194 }
195
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200196 old = (reg & (0x1F << shift)) >> shift;
197 step = abs(val - old);
198 if (step == 0)
199 return 0;
200
Fabio Estevam3d622b72013-12-26 14:51:33 -0200201 reg = (reg & ~(0x1F << shift)) | (val << shift);
Dirk Behmecac833a2012-05-02 02:12:17 +0000202 writel(reg, &anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200203
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200204 /*
205 * The LDO ramp-up is based on 64 clock cycles of 24 MHz = 2.6 us per
206 * step
207 */
208 udelay(3 * step);
209
Fabio Estevam3d622b72013-12-26 14:51:33 -0200210 return 0;
Dirk Behmecac833a2012-05-02 02:12:17 +0000211}
212
Fabio Estevam76c91e62013-02-07 06:45:23 +0000213static void imx_set_wdog_powerdown(bool enable)
214{
215 struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
216 struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
217
218 /* Write to the PDE (Power Down Enable) bit */
219 writew(enable, &wdog1->wmcr);
220 writew(enable, &wdog2->wmcr);
221}
222
Anson Huang5c92edc2014-01-23 14:00:18 +0800223static void set_ahb_rate(u32 val)
224{
225 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
226 u32 reg, div;
227
228 div = get_periph_clk() / val - 1;
229 reg = readl(&mxc_ccm->cbcdr);
230
231 writel((reg & (~MXC_CCM_CBCDR_AHB_PODF_MASK)) |
232 (div << MXC_CCM_CBCDR_AHB_PODF_OFFSET), &mxc_ccm->cbcdr);
233}
234
Anson Huang16197bb2014-01-23 14:00:19 +0800235static void clear_mmdc_ch_mask(void)
236{
237 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
238
239 /* Clear MMDC channel mask */
240 writel(0, &mxc_ccm->ccdr);
241}
242
Ye.Li0f8ec142014-10-30 18:20:58 +0800243#ifdef CONFIG_MX6SL
244static void set_preclk_from_osc(void)
245{
246 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
247 u32 reg;
248
249 reg = readl(&mxc_ccm->cscmr1);
250 reg |= MXC_CCM_CSCMR1_PER_CLK_SEL_MASK;
251 writel(reg, &mxc_ccm->cscmr1);
252}
253#endif
254
Jason Liu23608e22011-11-25 00:18:02 +0000255int arch_cpu_init(void)
256{
257 init_aips();
258
Anson Huang16197bb2014-01-23 14:00:19 +0800259 /* Need to clear MMDC_CHx_MASK to make warm reset work. */
260 clear_mmdc_ch_mask();
261
Anson Huang5c92edc2014-01-23 14:00:18 +0800262 /*
263 * When low freq boot is enabled, ROM will not set AHB
264 * freq, so we need to ensure AHB freq is 132MHz in such
265 * scenario.
266 */
267 if (mxc_get_clock(MXC_ARM_CLK) == 396000000)
268 set_ahb_rate(132000000);
269
Ye.Li0f8ec142014-10-30 18:20:58 +0800270 /* Set perclk to source from OSC 24MHz */
271#if defined(CONFIG_MX6SL)
272 set_preclk_from_osc();
273#endif
274
Fabio Estevam76c91e62013-02-07 06:45:23 +0000275 imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
Stefan Roeseae695b12013-04-15 21:14:12 +0000276
277#ifdef CONFIG_APBH_DMA
278 /* Start APBH DMA */
279 mxs_dma_init();
280#endif
281
Jason Liu23608e22011-11-25 00:18:02 +0000282 return 0;
283}
Jason Liu23608e22011-11-25 00:18:02 +0000284
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200285int board_postclk_init(void)
286{
287 set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */
288
289 return 0;
290}
291
Eric Nelson4d422fe2012-03-04 11:47:38 +0000292#ifndef CONFIG_SYS_DCACHE_OFF
293void enable_caches(void)
294{
Nitin Garg36c1ca42014-09-16 13:33:25 -0500295#if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH)
296 enum dcache_option option = DCACHE_WRITETHROUGH;
297#else
298 enum dcache_option option = DCACHE_WRITEBACK;
299#endif
300
Frank Liebaf6b22013-11-14 00:58:46 +0800301 /* Avoid random hang when download by usb */
302 invalidate_dcache_all();
Nitin Garg36c1ca42014-09-16 13:33:25 -0500303
Eric Nelson4d422fe2012-03-04 11:47:38 +0000304 /* Enable D-cache. I-cache is already enabled in start.S */
305 dcache_enable();
Nitin Garg36c1ca42014-09-16 13:33:25 -0500306
307 /* Enable caching on OCRAM and ROM */
308 mmu_set_region_dcache_behaviour(ROMCP_ARB_BASE_ADDR,
309 ROMCP_ARB_END_ADDR,
310 option);
311 mmu_set_region_dcache_behaviour(IRAM_BASE_ADDR,
312 IRAM_SIZE,
313 option);
Eric Nelson4d422fe2012-03-04 11:47:38 +0000314}
315#endif
316
Jason Liu23608e22011-11-25 00:18:02 +0000317#if defined(CONFIG_FEC_MXC)
Fabio Estevambe252b62011-12-20 05:46:31 +0000318void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
Jason Liu23608e22011-11-25 00:18:02 +0000319{
Benoît Thébaudeau8f3ff112013-04-23 10:17:38 +0000320 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
321 struct fuse_bank *bank = &ocotp->bank[4];
Jason Liu23608e22011-11-25 00:18:02 +0000322 struct fuse_bank4_regs *fuse =
323 (struct fuse_bank4_regs *)bank->fuse_regs;
324
Jason Liubd2e27c2011-12-19 02:38:13 +0000325 u32 value = readl(&fuse->mac_addr_high);
326 mac[0] = (value >> 8);
327 mac[1] = value ;
Jason Liu23608e22011-11-25 00:18:02 +0000328
Jason Liubd2e27c2011-12-19 02:38:13 +0000329 value = readl(&fuse->mac_addr_low);
330 mac[2] = value >> 24 ;
331 mac[3] = value >> 16 ;
332 mac[4] = value >> 8 ;
333 mac[5] = value ;
Jason Liu23608e22011-11-25 00:18:02 +0000334
335}
336#endif
Troy Kisky124a06d2012-08-15 10:31:20 +0000337
338void boot_mode_apply(unsigned cfg_val)
339{
340 unsigned reg;
Eric Nelson2af7e812012-09-18 15:26:32 +0000341 struct src *psrc = (struct src *)SRC_BASE_ADDR;
Troy Kisky124a06d2012-08-15 10:31:20 +0000342 writel(cfg_val, &psrc->gpr9);
343 reg = readl(&psrc->gpr10);
344 if (cfg_val)
345 reg |= 1 << 28;
346 else
347 reg &= ~(1 << 28);
348 writel(reg, &psrc->gpr10);
349}
350/*
351 * cfg_val will be used for
352 * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
Nikita Kiryanovf2863ff2014-10-29 19:28:33 +0200353 * After reset, if GPR10[28] is 1, ROM will use GPR9[25:0]
354 * instead of SBMR1 to determine the boot device.
Troy Kisky124a06d2012-08-15 10:31:20 +0000355 */
356const struct boot_mode soc_boot_modes[] = {
357 {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
358 /* reserved value should start rom usb */
359 {"usb", MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
360 {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
Nikolay Dimitrov2d59e3e2014-08-10 20:03:07 +0300361 {"ecspi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
362 {"ecspi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
363 {"ecspi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
364 {"ecspi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
Troy Kisky124a06d2012-08-15 10:31:20 +0000365 /* 4 bit bus width */
366 {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
367 {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
368 {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
369 {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
370 {NULL, 0},
371};
Stephen Warren8f393772013-02-26 12:28:29 +0000372
373void s_init(void)
374{
Eric Nelson8467fae2013-08-29 12:41:46 -0700375 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Ye.Li9293d7f2014-09-09 10:17:00 +0800376 struct mxc_ccm_reg *ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
Eric Nelson8467fae2013-08-29 12:41:46 -0700377 u32 mask480;
378 u32 mask528;
Ye.Li9293d7f2014-09-09 10:17:00 +0800379 u32 reg, periph1, periph2;
Fabio Estevama3df99b2014-07-09 16:13:29 -0300380
381 if (is_cpu_type(MXC_CPU_MX6SX))
382 return;
383
Eric Nelson8467fae2013-08-29 12:41:46 -0700384 /* Due to hardware limitation, on MX6Q we need to gate/ungate all PFDs
385 * to make sure PFD is working right, otherwise, PFDs may
386 * not output clock after reset, MX6DL and MX6SL have added 396M pfd
387 * workaround in ROM code, as bus clock need it
388 */
389
390 mask480 = ANATOP_PFD_CLKGATE_MASK(0) |
391 ANATOP_PFD_CLKGATE_MASK(1) |
392 ANATOP_PFD_CLKGATE_MASK(2) |
393 ANATOP_PFD_CLKGATE_MASK(3);
Ye.Li9293d7f2014-09-09 10:17:00 +0800394 mask528 = ANATOP_PFD_CLKGATE_MASK(1) |
Eric Nelson8467fae2013-08-29 12:41:46 -0700395 ANATOP_PFD_CLKGATE_MASK(3);
396
Ye.Li9293d7f2014-09-09 10:17:00 +0800397 reg = readl(&ccm->cbcmr);
398 periph2 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_MASK)
399 >> MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_OFFSET);
400 periph1 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_MASK)
401 >> MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_OFFSET);
402
403 /* Checking if PLL2 PFD0 or PLL2 PFD2 is using for periph clock */
404 if ((periph2 != 0x2) && (periph1 != 0x2))
405 mask528 |= ANATOP_PFD_CLKGATE_MASK(0);
406
407 if ((periph2 != 0x1) && (periph1 != 0x1) &&
408 (periph2 != 0x3) && (periph1 != 0x3))
Eric Nelson8467fae2013-08-29 12:41:46 -0700409 mask528 |= ANATOP_PFD_CLKGATE_MASK(2);
Ye.Li9293d7f2014-09-09 10:17:00 +0800410
Eric Nelson8467fae2013-08-29 12:41:46 -0700411 writel(mask480, &anatop->pfd_480_set);
412 writel(mask528, &anatop->pfd_528_set);
413 writel(mask480, &anatop->pfd_480_clr);
414 writel(mask528, &anatop->pfd_528_clr);
Stephen Warren8f393772013-02-26 12:28:29 +0000415}
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500416
417#ifdef CONFIG_IMX_HDMI
418void imx_enable_hdmi_phy(void)
419{
420 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
421 u8 reg;
422 reg = readb(&hdmi->phy_conf0);
423 reg |= HDMI_PHY_CONF0_PDZ_MASK;
424 writeb(reg, &hdmi->phy_conf0);
425 udelay(3000);
426 reg |= HDMI_PHY_CONF0_ENTMDS_MASK;
427 writeb(reg, &hdmi->phy_conf0);
428 udelay(3000);
429 reg |= HDMI_PHY_CONF0_GEN2_TXPWRON_MASK;
430 writeb(reg, &hdmi->phy_conf0);
431 writeb(HDMI_MC_PHYRSTZ_ASSERT, &hdmi->mc_phyrstz);
432}
433
434void imx_setup_hdmi(void)
435{
436 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
437 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
438 int reg;
439
440 /* Turn on HDMI PHY clock */
441 reg = readl(&mxc_ccm->CCGR2);
442 reg |= MXC_CCM_CCGR2_HDMI_TX_IAHBCLK_MASK|
443 MXC_CCM_CCGR2_HDMI_TX_ISFRCLK_MASK;
444 writel(reg, &mxc_ccm->CCGR2);
445 writeb(HDMI_MC_PHYRSTZ_DEASSERT, &hdmi->mc_phyrstz);
446 reg = readl(&mxc_ccm->chsccdr);
447 reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_MASK|
448 MXC_CCM_CHSCCDR_IPU1_DI0_PODF_MASK|
449 MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_MASK);
450 reg |= (CHSCCDR_PODF_DIVIDE_BY_3
451 << MXC_CCM_CHSCCDR_IPU1_DI0_PODF_OFFSET)
452 |(CHSCCDR_IPU_PRE_CLK_540M_PFD
453 << MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_OFFSET);
454 writel(reg, &mxc_ccm->chsccdr);
455}
456#endif
Fabio Estevam6d73c232014-01-29 17:39:49 -0200457
458#ifndef CONFIG_SYS_L2CACHE_OFF
459#define IOMUXC_GPR11_L2CACHE_AS_OCRAM 0x00000002
460void v7_outer_cache_enable(void)
461{
462 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
463 unsigned int val;
464
465#if defined CONFIG_MX6SL
466 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
467 val = readl(&iomux->gpr[11]);
468 if (val & IOMUXC_GPR11_L2CACHE_AS_OCRAM) {
469 /* L2 cache configured as OCRAM, reset it */
470 val &= ~IOMUXC_GPR11_L2CACHE_AS_OCRAM;
471 writel(val, &iomux->gpr[11]);
472 }
473#endif
474
Ye.Li4aa7ac32014-08-20 17:18:24 +0800475 /* Must disable the L2 before changing the latency parameters */
476 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
477
Fabio Estevam6d73c232014-01-29 17:39:49 -0200478 writel(0x132, &pl310->pl310_tag_latency_ctrl);
479 writel(0x132, &pl310->pl310_data_latency_ctrl);
480
481 val = readl(&pl310->pl310_prefetch_ctrl);
482
483 /* Turn on the L2 I/D prefetch */
484 val |= 0x30000000;
485
486 /*
487 * The L2 cache controller(PL310) version on the i.MX6D/Q is r3p1-50rel0
488 * The L2 cache controller(PL310) version on the i.MX6DL/SOLO/SL is r3p2
489 * But according to ARM PL310 errata: 752271
490 * ID: 752271: Double linefill feature can cause data corruption
491 * Fault Status: Present in: r3p0, r3p1, r3p1-50rel0. Fixed in r3p2
492 * Workaround: The only workaround to this erratum is to disable the
493 * double linefill feature. This is the default behavior.
494 */
495
496#ifndef CONFIG_MX6Q
497 val |= 0x40800000;
498#endif
499 writel(val, &pl310->pl310_prefetch_ctrl);
500
501 val = readl(&pl310->pl310_power_ctrl);
502 val |= L2X0_DYNAMIC_CLK_GATING_EN;
503 val |= L2X0_STNDBY_MODE_EN;
504 writel(val, &pl310->pl310_power_ctrl);
505
506 setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
507}
508
509void v7_outer_cache_disable(void)
510{
511 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
512
513 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
514}
515#endif /* !CONFIG_SYS_L2CACHE_OFF */