blob: d8ccf3a18aa6e9babc142986dc20192557fb58be [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>
11#include <asm/errno.h>
12#include <asm/io.h>
13#include <asm/arch/imx-regs.h>
14#include <asm/arch/clock.h>
15#include <asm/arch/sys_proto.h>
Troy Kisky0ca618c2012-08-15 10:31:20 +000016#include <asm/imx-common/boot_mode.h>
Stefan Roese8338d1d2013-04-15 21:14:12 +000017#include <asm/imx-common/dma.h>
Fabio Estevam48e65b02013-02-07 06:45:23 +000018#include <stdbool.h>
Pardeep Kumar Singlac1fa1302013-07-25 12:12:13 -050019#include <asm/arch/mxc_hdmi.h>
20#include <asm/arch/crm_regs.h>
Jason Liudec11122011-11-25 00:18:02 +000021
Fabio Estevama47ec522013-12-26 14:51:33 -020022enum ldo_reg {
23 LDO_ARM,
24 LDO_SOC,
25 LDO_PU,
26};
27
Troy Kisky58394932012-10-23 10:57:46 +000028struct scu_regs {
29 u32 ctrl;
30 u32 config;
31 u32 status;
32 u32 invalidate;
33 u32 fpga_rev;
34};
35
Jason Liudec11122011-11-25 00:18:02 +000036u32 get_cpu_rev(void)
37{
Fabio Estevam46e97332012-03-20 04:21:45 +000038 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Troy Kisky58394932012-10-23 10:57:46 +000039 u32 reg = readl(&anatop->digprog_sololite);
40 u32 type = ((reg >> 16) & 0xff);
Fabio Estevam46e97332012-03-20 04:21:45 +000041
Troy Kisky58394932012-10-23 10:57:46 +000042 if (type != MXC_CPU_MX6SL) {
43 reg = readl(&anatop->digprog);
44 type = ((reg >> 16) & 0xff);
45 if (type == MXC_CPU_MX6DL) {
46 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
47 u32 cfg = readl(&scu->config) & 3;
Jason Liudec11122011-11-25 00:18:02 +000048
Troy Kisky58394932012-10-23 10:57:46 +000049 if (!cfg)
50 type = MXC_CPU_MX6SOLO;
51 }
52 }
53 reg &= 0xff; /* mx6 silicon revision */
54 return (type << 12) | (reg + 0x10);
Jason Liudec11122011-11-25 00:18:02 +000055}
56
Fabio Estevam435998b2013-03-27 07:36:55 +000057#ifdef CONFIG_REVISION_TAG
58u32 __weak get_board_rev(void)
59{
60 u32 cpurev = get_cpu_rev();
61 u32 type = ((cpurev >> 12) & 0xff);
62 if (type == MXC_CPU_MX6SOLO)
63 cpurev = (MXC_CPU_MX6DL) << 12 | (cpurev & 0xFFF);
64
65 return cpurev;
66}
67#endif
68
Jason Liudec11122011-11-25 00:18:02 +000069void init_aips(void)
70{
Jason Liubb25e072012-01-10 00:52:59 +000071 struct aipstz_regs *aips1, *aips2;
72
73 aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
74 aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
Jason Liudec11122011-11-25 00:18:02 +000075
76 /*
77 * Set all MPROTx to be non-bufferable, trusted for R/W,
78 * not forced to user-mode.
79 */
Jason Liubb25e072012-01-10 00:52:59 +000080 writel(0x77777777, &aips1->mprot0);
81 writel(0x77777777, &aips1->mprot1);
82 writel(0x77777777, &aips2->mprot0);
83 writel(0x77777777, &aips2->mprot1);
Jason Liudec11122011-11-25 00:18:02 +000084
Jason Liubb25e072012-01-10 00:52:59 +000085 /*
86 * Set all OPACRx to be non-bufferable, not require
87 * supervisor privilege level for access,allow for
88 * write access and untrusted master access.
89 */
90 writel(0x00000000, &aips1->opacr0);
91 writel(0x00000000, &aips1->opacr1);
92 writel(0x00000000, &aips1->opacr2);
93 writel(0x00000000, &aips1->opacr3);
94 writel(0x00000000, &aips1->opacr4);
95 writel(0x00000000, &aips2->opacr0);
96 writel(0x00000000, &aips2->opacr1);
97 writel(0x00000000, &aips2->opacr2);
98 writel(0x00000000, &aips2->opacr3);
99 writel(0x00000000, &aips2->opacr4);
Jason Liudec11122011-11-25 00:18:02 +0000100}
101
Fabio Estevamcf621ff2013-12-26 14:51:31 -0200102static void clear_ldo_ramp(void)
103{
104 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
105 int reg;
106
107 /* ROM may modify LDO ramp up time according to fuse setting, so in
108 * order to be in the safe side we neeed to reset these settings to
109 * match the reset value: 0'b00
110 */
111 reg = readl(&anatop->ana_misc2);
112 reg &= ~(0x3f << 24);
113 writel(reg, &anatop->ana_misc2);
114}
115
Dirk Behme8c465942012-05-02 02:12:17 +0000116/*
117 * Set the VDDSOC
118 *
119 * Mask out the REG_CORE[22:18] bits (REG2_TRIG) and set
120 * them to the specified millivolt level.
121 * Possible values are from 0.725V to 1.450V in steps of
122 * 0.025V (25mV).
123 */
Fabio Estevama47ec522013-12-26 14:51:33 -0200124static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
Dirk Behme8c465942012-05-02 02:12:17 +0000125{
126 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
127 u32 val, reg = readl(&anatop->reg_core);
Fabio Estevama47ec522013-12-26 14:51:33 -0200128 u8 shift;
Dirk Behme8c465942012-05-02 02:12:17 +0000129
130 if (mv < 725)
131 val = 0x00; /* Power gated off */
132 else if (mv > 1450)
133 val = 0x1F; /* Power FET switched full on. No regulation */
134 else
135 val = (mv - 700) / 25;
136
Fabio Estevamcf621ff2013-12-26 14:51:31 -0200137 clear_ldo_ramp();
138
Fabio Estevama47ec522013-12-26 14:51:33 -0200139 switch (ldo) {
140 case LDO_SOC:
141 shift = 18;
142 break;
143 case LDO_PU:
144 shift = 9;
145 break;
146 case LDO_ARM:
147 shift = 0;
148 break;
149 default:
150 return -EINVAL;
151 }
152
153 reg = (reg & ~(0x1F << shift)) | (val << shift);
Dirk Behme8c465942012-05-02 02:12:17 +0000154 writel(reg, &anatop->reg_core);
Fabio Estevama47ec522013-12-26 14:51:33 -0200155
156 return 0;
Dirk Behme8c465942012-05-02 02:12:17 +0000157}
158
Fabio Estevam48e65b02013-02-07 06:45:23 +0000159static void imx_set_wdog_powerdown(bool enable)
160{
161 struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
162 struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
163
164 /* Write to the PDE (Power Down Enable) bit */
165 writew(enable, &wdog1->wmcr);
166 writew(enable, &wdog2->wmcr);
167}
168
Jason Liudec11122011-11-25 00:18:02 +0000169int arch_cpu_init(void)
170{
171 init_aips();
172
Fabio Estevama47ec522013-12-26 14:51:33 -0200173 set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */
Dirk Behme8c465942012-05-02 02:12:17 +0000174
Fabio Estevam48e65b02013-02-07 06:45:23 +0000175 imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
Stefan Roese8338d1d2013-04-15 21:14:12 +0000176
177#ifdef CONFIG_APBH_DMA
178 /* Start APBH DMA */
179 mxs_dma_init();
180#endif
181
Jason Liudec11122011-11-25 00:18:02 +0000182 return 0;
183}
Jason Liudec11122011-11-25 00:18:02 +0000184
Eric Nelsonc94ce4a2012-03-04 11:47:38 +0000185#ifndef CONFIG_SYS_DCACHE_OFF
186void enable_caches(void)
187{
Frank Li40c41002013-11-14 00:58:46 +0800188 /* Avoid random hang when download by usb */
189 invalidate_dcache_all();
Eric Nelsonc94ce4a2012-03-04 11:47:38 +0000190 /* Enable D-cache. I-cache is already enabled in start.S */
191 dcache_enable();
192}
193#endif
194
Jason Liudec11122011-11-25 00:18:02 +0000195#if defined(CONFIG_FEC_MXC)
Fabio Estevam04fc1282011-12-20 05:46:31 +0000196void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
Jason Liudec11122011-11-25 00:18:02 +0000197{
Benoît Thébaudeaufa7e3952013-04-23 10:17:38 +0000198 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
199 struct fuse_bank *bank = &ocotp->bank[4];
Jason Liudec11122011-11-25 00:18:02 +0000200 struct fuse_bank4_regs *fuse =
201 (struct fuse_bank4_regs *)bank->fuse_regs;
202
Jason Liubf651aa2011-12-19 02:38:13 +0000203 u32 value = readl(&fuse->mac_addr_high);
204 mac[0] = (value >> 8);
205 mac[1] = value ;
Jason Liudec11122011-11-25 00:18:02 +0000206
Jason Liubf651aa2011-12-19 02:38:13 +0000207 value = readl(&fuse->mac_addr_low);
208 mac[2] = value >> 24 ;
209 mac[3] = value >> 16 ;
210 mac[4] = value >> 8 ;
211 mac[5] = value ;
Jason Liudec11122011-11-25 00:18:02 +0000212
213}
214#endif
Troy Kisky0ca618c2012-08-15 10:31:20 +0000215
216void boot_mode_apply(unsigned cfg_val)
217{
218 unsigned reg;
Eric Nelson7b8731a2012-09-18 15:26:32 +0000219 struct src *psrc = (struct src *)SRC_BASE_ADDR;
Troy Kisky0ca618c2012-08-15 10:31:20 +0000220 writel(cfg_val, &psrc->gpr9);
221 reg = readl(&psrc->gpr10);
222 if (cfg_val)
223 reg |= 1 << 28;
224 else
225 reg &= ~(1 << 28);
226 writel(reg, &psrc->gpr10);
227}
228/*
229 * cfg_val will be used for
230 * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
231 * After reset, if GPR10[28] is 1, ROM will copy GPR9[25:0]
232 * to SBMR1, which will determine the boot device.
233 */
234const struct boot_mode soc_boot_modes[] = {
235 {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
236 /* reserved value should start rom usb */
237 {"usb", MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
238 {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
239 {"escpi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
240 {"escpi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
241 {"escpi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
242 {"escpi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
243 /* 4 bit bus width */
244 {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
245 {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
246 {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
247 {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
248 {NULL, 0},
249};
Stephen Warren57ab23f2013-02-26 12:28:29 +0000250
251void s_init(void)
252{
Eric Nelson2c37d3b2013-08-29 12:41:46 -0700253 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
254 int is_6q = is_cpu_type(MXC_CPU_MX6Q);
255 u32 mask480;
256 u32 mask528;
257
258 /* Due to hardware limitation, on MX6Q we need to gate/ungate all PFDs
259 * to make sure PFD is working right, otherwise, PFDs may
260 * not output clock after reset, MX6DL and MX6SL have added 396M pfd
261 * workaround in ROM code, as bus clock need it
262 */
263
264 mask480 = ANATOP_PFD_CLKGATE_MASK(0) |
265 ANATOP_PFD_CLKGATE_MASK(1) |
266 ANATOP_PFD_CLKGATE_MASK(2) |
267 ANATOP_PFD_CLKGATE_MASK(3);
268 mask528 = ANATOP_PFD_CLKGATE_MASK(0) |
269 ANATOP_PFD_CLKGATE_MASK(1) |
270 ANATOP_PFD_CLKGATE_MASK(3);
271
272 /*
273 * Don't reset PFD2 on DL/S
274 */
275 if (is_6q)
276 mask528 |= ANATOP_PFD_CLKGATE_MASK(2);
277 writel(mask480, &anatop->pfd_480_set);
278 writel(mask528, &anatop->pfd_528_set);
279 writel(mask480, &anatop->pfd_480_clr);
280 writel(mask528, &anatop->pfd_528_clr);
Stephen Warren57ab23f2013-02-26 12:28:29 +0000281}
Pardeep Kumar Singlac1fa1302013-07-25 12:12:13 -0500282
283#ifdef CONFIG_IMX_HDMI
284void imx_enable_hdmi_phy(void)
285{
286 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
287 u8 reg;
288 reg = readb(&hdmi->phy_conf0);
289 reg |= HDMI_PHY_CONF0_PDZ_MASK;
290 writeb(reg, &hdmi->phy_conf0);
291 udelay(3000);
292 reg |= HDMI_PHY_CONF0_ENTMDS_MASK;
293 writeb(reg, &hdmi->phy_conf0);
294 udelay(3000);
295 reg |= HDMI_PHY_CONF0_GEN2_TXPWRON_MASK;
296 writeb(reg, &hdmi->phy_conf0);
297 writeb(HDMI_MC_PHYRSTZ_ASSERT, &hdmi->mc_phyrstz);
298}
299
300void imx_setup_hdmi(void)
301{
302 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
303 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
304 int reg;
305
306 /* Turn on HDMI PHY clock */
307 reg = readl(&mxc_ccm->CCGR2);
308 reg |= MXC_CCM_CCGR2_HDMI_TX_IAHBCLK_MASK|
309 MXC_CCM_CCGR2_HDMI_TX_ISFRCLK_MASK;
310 writel(reg, &mxc_ccm->CCGR2);
311 writeb(HDMI_MC_PHYRSTZ_DEASSERT, &hdmi->mc_phyrstz);
312 reg = readl(&mxc_ccm->chsccdr);
313 reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_MASK|
314 MXC_CCM_CHSCCDR_IPU1_DI0_PODF_MASK|
315 MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_MASK);
316 reg |= (CHSCCDR_PODF_DIVIDE_BY_3
317 << MXC_CCM_CHSCCDR_IPU1_DI0_PODF_OFFSET)
318 |(CHSCCDR_IPU_PRE_CLK_540M_PFD
319 << MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_OFFSET);
320 writel(reg, &mxc_ccm->chsccdr);
321}
322#endif