blob: c15b9cb8e2f937ac8346d0f15ecf3485154d578e [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>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090011#include <linux/errno.h>
Jason Liu23608e22011-11-25 00:18:02 +000012#include <asm/io.h>
13#include <asm/arch/imx-regs.h>
14#include <asm/arch/clock.h>
15#include <asm/arch/sys_proto.h>
Stefano Babic552a8482017-06-29 10:16:06 +020016#include <asm/mach-imx/boot_mode.h>
17#include <asm/mach-imx/dma.h>
18#include <asm/mach-imx/hab.h>
Fabio Estevam76c91e62013-02-07 06:45:23 +000019#include <stdbool.h>
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -050020#include <asm/arch/mxc_hdmi.h>
21#include <asm/arch/crm_regs.h>
Ye.Li7a264162014-11-20 21:14:14 +080022#include <dm.h>
23#include <imx_thermal.h>
Soeren Moch1a43dc12016-02-04 14:41:15 +010024#include <mmc.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
Adrian Alonso1368f992015-09-02 13:54:13 -050040#if defined(CONFIG_IMX_THERMAL)
Ye.Li7a264162014-11-20 21:14:14 +080041static const struct imx_thermal_plat imx6_thermal_plat = {
42 .regs = (void *)ANATOP_BASE_ADDR,
43 .fuse_bank = 1,
44 .fuse_word = 6,
45};
46
47U_BOOT_DEVICE(imx6_thermal) = {
48 .name = "imx_thermal",
49 .platdata = &imx6_thermal_plat,
50};
51#endif
52
Adrian Alonso6b50bfe2015-10-12 13:48:12 -050053#if defined(CONFIG_SECURE_BOOT)
54struct imx_sec_config_fuse_t const imx_sec_config_fuse = {
55 .bank = 0,
56 .word = 6,
57};
58#endif
59
Gabriel Huaua76df702014-07-26 11:35:43 -070060u32 get_nr_cpus(void)
61{
62 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
63 return readl(&scu->config) & 3;
64}
65
Jason Liu23608e22011-11-25 00:18:02 +000066u32 get_cpu_rev(void)
67{
Fabio Estevama7683862012-03-20 04:21:45 +000068 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Troy Kisky20332a02012-10-23 10:57:46 +000069 u32 reg = readl(&anatop->digprog_sololite);
70 u32 type = ((reg >> 16) & 0xff);
Peng Fand0acd992015-07-11 11:38:42 +080071 u32 major, cfg = 0;
Fabio Estevama7683862012-03-20 04:21:45 +000072
Troy Kisky20332a02012-10-23 10:57:46 +000073 if (type != MXC_CPU_MX6SL) {
74 reg = readl(&anatop->digprog);
Fabio Estevam94db6652014-01-26 15:06:41 -020075 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
Peng Fand0acd992015-07-11 11:38:42 +080076 cfg = readl(&scu->config) & 3;
Troy Kisky20332a02012-10-23 10:57:46 +000077 type = ((reg >> 16) & 0xff);
78 if (type == MXC_CPU_MX6DL) {
Troy Kisky20332a02012-10-23 10:57:46 +000079 if (!cfg)
80 type = MXC_CPU_MX6SOLO;
81 }
Fabio Estevam94db6652014-01-26 15:06:41 -020082
83 if (type == MXC_CPU_MX6Q) {
84 if (cfg == 1)
85 type = MXC_CPU_MX6D;
86 }
87
Troy Kisky20332a02012-10-23 10:57:46 +000088 }
Peng Fandfd48612015-06-11 18:30:36 +080089 major = ((reg >> 8) & 0xff);
Peng Fand0acd992015-07-11 11:38:42 +080090 if ((major >= 1) &&
91 ((type == MXC_CPU_MX6Q) || (type == MXC_CPU_MX6D))) {
92 major--;
93 type = MXC_CPU_MX6QP;
94 if (cfg == 1)
95 type = MXC_CPU_MX6DP;
96 }
Troy Kisky20332a02012-10-23 10:57:46 +000097 reg &= 0xff; /* mx6 silicon revision */
Peng Fandfd48612015-06-11 18:30:36 +080098 return (type << 12) | (reg + (0x10 * (major + 1)));
Jason Liu23608e22011-11-25 00:18:02 +000099}
100
Tim Harvey9b9449c2015-05-18 07:02:24 -0700101/*
102 * OCOTP_CFG3[17:16] (see Fusemap Description Table offset 0x440)
103 * defines a 2-bit SPEED_GRADING
104 */
105#define OCOTP_CFG3_SPEED_SHIFT 16
106#define OCOTP_CFG3_SPEED_800MHZ 0
107#define OCOTP_CFG3_SPEED_850MHZ 1
108#define OCOTP_CFG3_SPEED_1GHZ 2
109#define OCOTP_CFG3_SPEED_1P2GHZ 3
110
Peng Fand15a2442016-05-03 11:13:04 +0800111/*
112 * For i.MX6UL
113 */
114#define OCOTP_CFG3_SPEED_528MHZ 1
115#define OCOTP_CFG3_SPEED_696MHZ 2
116
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200117/*
118 * For i.MX6ULL
119 */
120#define OCOTP_CFG3_SPEED_792MHZ 2
121#define OCOTP_CFG3_SPEED_900MHZ 3
122
Tim Harvey9b9449c2015-05-18 07:02:24 -0700123u32 get_cpu_speed_grade_hz(void)
124{
125 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
126 struct fuse_bank *bank = &ocotp->bank[0];
127 struct fuse_bank0_regs *fuse =
128 (struct fuse_bank0_regs *)bank->fuse_regs;
129 uint32_t val;
130
131 val = readl(&fuse->cfg3);
132 val >>= OCOTP_CFG3_SPEED_SHIFT;
133 val &= 0x3;
134
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200135 if (is_mx6ul()) {
Peng Fand15a2442016-05-03 11:13:04 +0800136 if (val == OCOTP_CFG3_SPEED_528MHZ)
137 return 528000000;
138 else if (val == OCOTP_CFG3_SPEED_696MHZ)
Sébastien Szymanski44e67052017-08-02 17:05:26 +0200139 return 696000000;
Peng Fand15a2442016-05-03 11:13:04 +0800140 else
141 return 0;
142 }
143
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200144 if (is_mx6ull()) {
145 if (val == OCOTP_CFG3_SPEED_528MHZ)
146 return 528000000;
147 else if (val == OCOTP_CFG3_SPEED_792MHZ)
148 return 792000000;
149 else if (val == OCOTP_CFG3_SPEED_900MHZ)
150 return 900000000;
151 else
152 return 0;
153 }
154
Tim Harvey9b9449c2015-05-18 07:02:24 -0700155 switch (val) {
156 /* Valid for IMX6DQ */
157 case OCOTP_CFG3_SPEED_1P2GHZ:
Peng Fan04cb3c02016-05-23 18:35:58 +0800158 if (is_mx6dq() || is_mx6dqp())
Tim Harvey9b9449c2015-05-18 07:02:24 -0700159 return 1200000000;
160 /* Valid for IMX6SX/IMX6SDL/IMX6DQ */
161 case OCOTP_CFG3_SPEED_1GHZ:
162 return 996000000;
163 /* Valid for IMX6DQ */
164 case OCOTP_CFG3_SPEED_850MHZ:
Peng Fan04cb3c02016-05-23 18:35:58 +0800165 if (is_mx6dq() || is_mx6dqp())
Tim Harvey9b9449c2015-05-18 07:02:24 -0700166 return 852000000;
167 /* Valid for IMX6SX/IMX6SDL/IMX6DQ */
168 case OCOTP_CFG3_SPEED_800MHZ:
169 return 792000000;
170 }
171 return 0;
172}
173
Tim Harveyf0e8e892015-05-18 06:56:45 -0700174/*
175 * OCOTP_MEM0[7:6] (see Fusemap Description Table offset 0x480)
176 * defines a 2-bit Temperature Grade
177 *
Fabio Estevam65496a32017-06-22 10:50:05 -0300178 * return temperature grade and min/max temperature in Celsius
Tim Harveyf0e8e892015-05-18 06:56:45 -0700179 */
180#define OCOTP_MEM0_TEMP_SHIFT 6
181
182u32 get_cpu_temp_grade(int *minc, int *maxc)
183{
184 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
185 struct fuse_bank *bank = &ocotp->bank[1];
186 struct fuse_bank1_regs *fuse =
187 (struct fuse_bank1_regs *)bank->fuse_regs;
188 uint32_t val;
189
190 val = readl(&fuse->mem0);
191 val >>= OCOTP_MEM0_TEMP_SHIFT;
192 val &= 0x3;
193
194 if (minc && maxc) {
195 if (val == TEMP_AUTOMOTIVE) {
196 *minc = -40;
197 *maxc = 125;
198 } else if (val == TEMP_INDUSTRIAL) {
199 *minc = -40;
200 *maxc = 105;
201 } else if (val == TEMP_EXTCOMMERCIAL) {
202 *minc = -20;
203 *maxc = 105;
204 } else {
205 *minc = 0;
206 *maxc = 95;
207 }
208 }
209 return val;
210}
211
Fabio Estevam38e70072013-03-27 07:36:55 +0000212#ifdef CONFIG_REVISION_TAG
213u32 __weak get_board_rev(void)
214{
215 u32 cpurev = get_cpu_rev();
216 u32 type = ((cpurev >> 12) & 0xff);
217 if (type == MXC_CPU_MX6SOLO)
218 cpurev = (MXC_CPU_MX6DL) << 12 | (cpurev & 0xFFF);
219
Fabio Estevam94db6652014-01-26 15:06:41 -0200220 if (type == MXC_CPU_MX6D)
221 cpurev = (MXC_CPU_MX6Q) << 12 | (cpurev & 0xFFF);
222
Fabio Estevam38e70072013-03-27 07:36:55 +0000223 return cpurev;
224}
225#endif
226
Fabio Estevame113fd12013-12-26 14:51:31 -0200227static void clear_ldo_ramp(void)
228{
229 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
230 int reg;
231
232 /* ROM may modify LDO ramp up time according to fuse setting, so in
233 * order to be in the safe side we neeed to reset these settings to
234 * match the reset value: 0'b00
235 */
236 reg = readl(&anatop->ana_misc2);
237 reg &= ~(0x3f << 24);
238 writel(reg, &anatop->ana_misc2);
239}
240
Dirk Behmecac833a2012-05-02 02:12:17 +0000241/*
Fabio Estevam157f45d2014-06-13 01:42:37 -0300242 * Set the PMU_REG_CORE register
Dirk Behmecac833a2012-05-02 02:12:17 +0000243 *
Fabio Estevam157f45d2014-06-13 01:42:37 -0300244 * Set LDO_SOC/PU/ARM regulators to the specified millivolt level.
Dirk Behmecac833a2012-05-02 02:12:17 +0000245 * Possible values are from 0.725V to 1.450V in steps of
246 * 0.025V (25mV).
247 */
Fabio Estevam3d622b72013-12-26 14:51:33 -0200248static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
Dirk Behmecac833a2012-05-02 02:12:17 +0000249{
250 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200251 u32 val, step, old, reg = readl(&anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200252 u8 shift;
Dirk Behmecac833a2012-05-02 02:12:17 +0000253
254 if (mv < 725)
255 val = 0x00; /* Power gated off */
256 else if (mv > 1450)
257 val = 0x1F; /* Power FET switched full on. No regulation */
258 else
259 val = (mv - 700) / 25;
260
Fabio Estevame113fd12013-12-26 14:51:31 -0200261 clear_ldo_ramp();
262
Fabio Estevam3d622b72013-12-26 14:51:33 -0200263 switch (ldo) {
264 case LDO_SOC:
265 shift = 18;
266 break;
267 case LDO_PU:
268 shift = 9;
269 break;
270 case LDO_ARM:
271 shift = 0;
272 break;
273 default:
274 return -EINVAL;
275 }
276
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200277 old = (reg & (0x1F << shift)) >> shift;
278 step = abs(val - old);
279 if (step == 0)
280 return 0;
281
Fabio Estevam3d622b72013-12-26 14:51:33 -0200282 reg = (reg & ~(0x1F << shift)) | (val << shift);
Dirk Behmecac833a2012-05-02 02:12:17 +0000283 writel(reg, &anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200284
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200285 /*
286 * The LDO ramp-up is based on 64 clock cycles of 24 MHz = 2.6 us per
287 * step
288 */
289 udelay(3 * step);
290
Fabio Estevam3d622b72013-12-26 14:51:33 -0200291 return 0;
Dirk Behmecac833a2012-05-02 02:12:17 +0000292}
293
Anson Huang5c92edc2014-01-23 14:00:18 +0800294static void set_ahb_rate(u32 val)
295{
296 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
297 u32 reg, div;
298
299 div = get_periph_clk() / val - 1;
300 reg = readl(&mxc_ccm->cbcdr);
301
302 writel((reg & (~MXC_CCM_CBCDR_AHB_PODF_MASK)) |
303 (div << MXC_CCM_CBCDR_AHB_PODF_OFFSET), &mxc_ccm->cbcdr);
304}
305
Anson Huang16197bb2014-01-23 14:00:19 +0800306static void clear_mmdc_ch_mask(void)
307{
308 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
Peng Fane1c2d682015-07-11 11:38:43 +0800309 u32 reg;
310 reg = readl(&mxc_ccm->ccdr);
Anson Huang16197bb2014-01-23 14:00:19 +0800311
312 /* Clear MMDC channel mask */
Peng Fan6615da42016-08-11 14:02:45 +0800313 if (is_mx6sx() || is_mx6ul() || is_mx6ull() || is_mx6sl())
Ye Lib7777892016-03-09 16:13:48 +0800314 reg &= ~(MXC_CCM_CCDR_MMDC_CH1_HS_MASK);
315 else
316 reg &= ~(MXC_CCM_CCDR_MMDC_CH1_HS_MASK | MXC_CCM_CCDR_MMDC_CH0_HS_MASK);
Peng Fane1c2d682015-07-11 11:38:43 +0800317 writel(reg, &mxc_ccm->ccdr);
Anson Huang16197bb2014-01-23 14:00:19 +0800318}
319
Peng Fan97c16dc2016-10-08 17:03:00 +0800320#define OCOTP_MEM0_REFTOP_TRIM_SHIFT 8
321
Peng Fan1f516fa2015-01-15 14:22:32 +0800322static void init_bandgap(void)
323{
324 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Peng Fan97c16dc2016-10-08 17:03:00 +0800325 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
326 struct fuse_bank *bank = &ocotp->bank[1];
327 struct fuse_bank1_regs *fuse =
328 (struct fuse_bank1_regs *)bank->fuse_regs;
329 uint32_t val;
330
Peng Fan1f516fa2015-01-15 14:22:32 +0800331 /*
332 * Ensure the bandgap has stabilized.
333 */
334 while (!(readl(&anatop->ana_misc0) & 0x80))
335 ;
336 /*
337 * For best noise performance of the analog blocks using the
338 * outputs of the bandgap, the reftop_selfbiasoff bit should
339 * be set.
340 */
341 writel(BM_ANADIG_ANA_MISC0_REFTOP_SELBIASOFF, &anatop->ana_misc0_set);
Peng Fan5b664822016-08-11 14:02:50 +0800342 /*
Peng Fan97c16dc2016-10-08 17:03:00 +0800343 * On i.MX6ULL,we need to set VBGADJ bits according to the
344 * REFTOP_TRIM[3:0] in fuse table
345 * 000 - set REFTOP_VBGADJ[2:0] to 3b'110,
346 * 110 - set REFTOP_VBGADJ[2:0] to 3b'000,
347 * 001 - set REFTOP_VBGADJ[2:0] to 3b'001,
348 * 010 - set REFTOP_VBGADJ[2:0] to 3b'010,
349 * 011 - set REFTOP_VBGADJ[2:0] to 3b'011,
350 * 100 - set REFTOP_VBGADJ[2:0] to 3b'100,
351 * 101 - set REFTOP_VBGADJ[2:0] to 3b'101,
352 * 111 - set REFTOP_VBGADJ[2:0] to 3b'111,
Peng Fan5b664822016-08-11 14:02:50 +0800353 */
Peng Fan97c16dc2016-10-08 17:03:00 +0800354 if (is_mx6ull()) {
355 val = readl(&fuse->mem0);
356 val >>= OCOTP_MEM0_REFTOP_TRIM_SHIFT;
357 val &= 0x7;
Peng Fan1f516fa2015-01-15 14:22:32 +0800358
Peng Fan97c16dc2016-10-08 17:03:00 +0800359 writel(val << BM_ANADIG_ANA_MISC0_REFTOP_VBGADJ_SHIFT,
360 &anatop->ana_misc0_set);
361 }
362}
Peng Fan1f516fa2015-01-15 14:22:32 +0800363
Ye.Li0f8ec142014-10-30 18:20:58 +0800364#ifdef CONFIG_MX6SL
365static void set_preclk_from_osc(void)
366{
367 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
368 u32 reg;
369
370 reg = readl(&mxc_ccm->cscmr1);
371 reg |= MXC_CCM_CSCMR1_PER_CLK_SEL_MASK;
372 writel(reg, &mxc_ccm->cscmr1);
373}
374#endif
375
Jason Liu23608e22011-11-25 00:18:02 +0000376int arch_cpu_init(void)
377{
378 init_aips();
379
Anson Huang16197bb2014-01-23 14:00:19 +0800380 /* Need to clear MMDC_CHx_MASK to make warm reset work. */
381 clear_mmdc_ch_mask();
382
Anson Huang5c92edc2014-01-23 14:00:18 +0800383 /*
Peng Fan1f516fa2015-01-15 14:22:32 +0800384 * Disable self-bias circuit in the analog bandap.
385 * The self-bias circuit is used by the bandgap during startup.
386 * This bit should be set after the bandgap has initialized.
387 */
388 init_bandgap();
389
Peng Fancdf33c92016-08-11 14:02:43 +0800390 if (!is_mx6ul() && !is_mx6ull()) {
Peng Fane4dc3fc2016-03-09 16:44:36 +0800391 /*
392 * When low freq boot is enabled, ROM will not set AHB
393 * freq, so we need to ensure AHB freq is 132MHz in such
394 * scenario.
395 *
396 * To i.MX6UL, when power up, default ARM core and
397 * AHB rate is 396M and 132M.
398 */
399 if (mxc_get_clock(MXC_ARM_CLK) == 396000000)
400 set_ahb_rate(132000000);
401 }
Anson Huang5c92edc2014-01-23 14:00:18 +0800402
Peng Fanf15ece32016-09-28 09:40:27 +0800403 if (is_mx6ul()) {
404 if (is_soc_rev(CHIP_REV_1_0) == 0) {
405 /*
406 * According to the design team's requirement on
407 * i.MX6UL,the PMIC_STBY_REQ PAD should be configured
408 * as open drain 100K (0x0000b8a0).
409 * Only exists on TO1.0
410 */
411 writel(0x0000b8a0, IOMUXC_BASE_ADDR + 0x29c);
412 } else {
413 /*
414 * From TO1.1, SNVS adds internal pull up control
415 * for POR_B, the register filed is GPBIT[1:0],
416 * after system boot up, it can be set to 2b'01
417 * to disable internal pull up.It can save about
418 * 30uA power in SNVS mode.
419 */
420 writel((readl(MX6UL_SNVS_LP_BASE_ADDR + 0x10) &
421 (~0x1400)) | 0x400,
422 MX6UL_SNVS_LP_BASE_ADDR + 0x10);
423 }
Peng Fan7082d872016-03-09 16:44:37 +0800424 }
425
Peng Fanb4714612016-08-11 14:02:46 +0800426 if (is_mx6ull()) {
427 /*
428 * GPBIT[1:0] is suggested to set to 2'b11:
429 * 2'b00 : always PUP100K
430 * 2'b01 : PUP100K when PMIC_ON_REQ or SOC_NOT_FAIL
431 * 2'b10 : always disable PUP100K
432 * 2'b11 : PDN100K when SOC_FAIL, PUP100K when SOC_NOT_FAIL
433 * register offset is different from i.MX6UL, since
434 * i.MX6UL is fixed by ECO.
435 */
436 writel(readl(MX6UL_SNVS_LP_BASE_ADDR) |
437 0x3, MX6UL_SNVS_LP_BASE_ADDR);
438 }
439
Peng Fan7082d872016-03-09 16:44:37 +0800440 /* Set perclk to source from OSC 24MHz */
Ye.Li0f8ec142014-10-30 18:20:58 +0800441#if defined(CONFIG_MX6SL)
442 set_preclk_from_osc();
443#endif
444
Fabio Estevam76c91e62013-02-07 06:45:23 +0000445 imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
Stefan Roeseae695b12013-04-15 21:14:12 +0000446
Dirk Behme9d16c522015-03-09 14:48:48 +0100447 init_src();
448
Jason Liu23608e22011-11-25 00:18:02 +0000449 return 0;
450}
Jason Liu23608e22011-11-25 00:18:02 +0000451
Peng Fan216d2862016-01-28 16:51:26 +0800452#ifdef CONFIG_ENV_IS_IN_MMC
453__weak int board_mmc_get_env_dev(int devno)
454{
455 return CONFIG_SYS_MMC_ENV_DEV;
456}
457
Soeren Moch1a43dc12016-02-04 14:41:15 +0100458static int mmc_get_boot_dev(void)
Peng Fan216d2862016-01-28 16:51:26 +0800459{
460 struct src *src_regs = (struct src *)SRC_BASE_ADDR;
461 u32 soc_sbmr = readl(&src_regs->sbmr1);
462 u32 bootsel;
463 int devno;
464
465 /*
466 * Refer to
467 * "i.MX 6Dual/6Quad Applications Processor Reference Manual"
468 * Chapter "8.5.3.1 Expansion Device eFUSE Configuration"
469 * i.MX6SL/SX/UL has same layout.
470 */
471 bootsel = (soc_sbmr & 0x000000FF) >> 6;
472
Soeren Moch1a43dc12016-02-04 14:41:15 +0100473 /* No boot from sd/mmc */
Peng Fan216d2862016-01-28 16:51:26 +0800474 if (bootsel != 1)
Soeren Moch1a43dc12016-02-04 14:41:15 +0100475 return -1;
Peng Fan216d2862016-01-28 16:51:26 +0800476
477 /* BOOT_CFG2[3] and BOOT_CFG2[4] */
478 devno = (soc_sbmr & 0x00001800) >> 11;
479
Soeren Moch1a43dc12016-02-04 14:41:15 +0100480 return devno;
481}
482
483int mmc_get_env_dev(void)
484{
485 int devno = mmc_get_boot_dev();
486
487 /* If not boot from sd/mmc, use default value */
488 if (devno < 0)
489 return CONFIG_SYS_MMC_ENV_DEV;
490
Peng Fan216d2862016-01-28 16:51:26 +0800491 return board_mmc_get_env_dev(devno);
492}
Soeren Moch1a43dc12016-02-04 14:41:15 +0100493
494#ifdef CONFIG_SYS_MMC_ENV_PART
495__weak int board_mmc_get_env_part(int devno)
496{
497 return CONFIG_SYS_MMC_ENV_PART;
498}
499
500uint mmc_get_env_part(struct mmc *mmc)
501{
502 int devno = mmc_get_boot_dev();
503
504 /* If not boot from sd/mmc, use default value */
505 if (devno < 0)
506 return CONFIG_SYS_MMC_ENV_PART;
507
508 return board_mmc_get_env_part(devno);
509}
510#endif
Peng Fan216d2862016-01-28 16:51:26 +0800511#endif
512
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200513int board_postclk_init(void)
514{
515 set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */
516
517 return 0;
518}
519
Jason Liu23608e22011-11-25 00:18:02 +0000520#if defined(CONFIG_FEC_MXC)
Fabio Estevambe252b62011-12-20 05:46:31 +0000521void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
Jason Liu23608e22011-11-25 00:18:02 +0000522{
Benoît Thébaudeau8f3ff112013-04-23 10:17:38 +0000523 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
524 struct fuse_bank *bank = &ocotp->bank[4];
Jason Liu23608e22011-11-25 00:18:02 +0000525 struct fuse_bank4_regs *fuse =
526 (struct fuse_bank4_regs *)bank->fuse_regs;
527
Peng Fan6615da42016-08-11 14:02:45 +0800528 if ((is_mx6sx() || is_mx6ul() || is_mx6ull()) && dev_id == 1) {
Ye Lid4d1dd62016-02-01 10:41:31 +0800529 u32 value = readl(&fuse->mac_addr2);
530 mac[0] = value >> 24 ;
531 mac[1] = value >> 16 ;
532 mac[2] = value >> 8 ;
533 mac[3] = value ;
Jason Liu23608e22011-11-25 00:18:02 +0000534
Ye Lid4d1dd62016-02-01 10:41:31 +0800535 value = readl(&fuse->mac_addr1);
536 mac[4] = value >> 24 ;
537 mac[5] = value >> 16 ;
538
539 } else {
540 u32 value = readl(&fuse->mac_addr1);
541 mac[0] = (value >> 8);
542 mac[1] = value ;
543
544 value = readl(&fuse->mac_addr0);
545 mac[2] = value >> 24 ;
546 mac[3] = value >> 16 ;
547 mac[4] = value >> 8 ;
548 mac[5] = value ;
549 }
Jason Liu23608e22011-11-25 00:18:02 +0000550
551}
552#endif
Troy Kisky124a06d2012-08-15 10:31:20 +0000553
Troy Kisky124a06d2012-08-15 10:31:20 +0000554/*
555 * cfg_val will be used for
556 * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
Nikita Kiryanovf2863ff2014-10-29 19:28:33 +0200557 * After reset, if GPR10[28] is 1, ROM will use GPR9[25:0]
558 * instead of SBMR1 to determine the boot device.
Troy Kisky124a06d2012-08-15 10:31:20 +0000559 */
560const struct boot_mode soc_boot_modes[] = {
561 {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
562 /* reserved value should start rom usb */
Stefan Agner3fd95792017-06-09 13:13:12 -0700563#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
564 {"usb", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
565#else
Stefan Agner81c4ecc2016-09-15 15:04:39 -0700566 {"usb", MAKE_CFGVAL(0x10, 0x00, 0x00, 0x00)},
Stefan Agner3fd95792017-06-09 13:13:12 -0700567#endif
Troy Kisky124a06d2012-08-15 10:31:20 +0000568 {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
Nikolay Dimitrov2d59e3e2014-08-10 20:03:07 +0300569 {"ecspi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
570 {"ecspi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
571 {"ecspi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
572 {"ecspi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
Troy Kisky124a06d2012-08-15 10:31:20 +0000573 /* 4 bit bus width */
574 {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
575 {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
576 {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
577 {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
578 {NULL, 0},
579};
Stephen Warren8f393772013-02-26 12:28:29 +0000580
Peng Faneb111bb2015-10-29 15:54:50 +0800581void reset_misc(void)
582{
583#ifdef CONFIG_VIDEO_MXS
584 lcdif_power_down();
585#endif
586}
587
Stephen Warren8f393772013-02-26 12:28:29 +0000588void s_init(void)
589{
Eric Nelson8467fae2013-08-29 12:41:46 -0700590 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Ye.Li9293d7f2014-09-09 10:17:00 +0800591 struct mxc_ccm_reg *ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
Eric Nelson8467fae2013-08-29 12:41:46 -0700592 u32 mask480;
593 u32 mask528;
Ye.Li9293d7f2014-09-09 10:17:00 +0800594 u32 reg, periph1, periph2;
Fabio Estevama3df99b2014-07-09 16:13:29 -0300595
Peng Fan6615da42016-08-11 14:02:45 +0800596 if (is_mx6sx() || is_mx6ul() || is_mx6ull())
Fabio Estevama3df99b2014-07-09 16:13:29 -0300597 return;
598
Eric Nelson8467fae2013-08-29 12:41:46 -0700599 /* Due to hardware limitation, on MX6Q we need to gate/ungate all PFDs
600 * to make sure PFD is working right, otherwise, PFDs may
601 * not output clock after reset, MX6DL and MX6SL have added 396M pfd
602 * workaround in ROM code, as bus clock need it
603 */
604
605 mask480 = ANATOP_PFD_CLKGATE_MASK(0) |
606 ANATOP_PFD_CLKGATE_MASK(1) |
607 ANATOP_PFD_CLKGATE_MASK(2) |
608 ANATOP_PFD_CLKGATE_MASK(3);
Ye.Li9293d7f2014-09-09 10:17:00 +0800609 mask528 = ANATOP_PFD_CLKGATE_MASK(1) |
Eric Nelson8467fae2013-08-29 12:41:46 -0700610 ANATOP_PFD_CLKGATE_MASK(3);
611
Ye.Li9293d7f2014-09-09 10:17:00 +0800612 reg = readl(&ccm->cbcmr);
613 periph2 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_MASK)
614 >> MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_OFFSET);
615 periph1 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_MASK)
616 >> MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_OFFSET);
617
618 /* Checking if PLL2 PFD0 or PLL2 PFD2 is using for periph clock */
619 if ((periph2 != 0x2) && (periph1 != 0x2))
620 mask528 |= ANATOP_PFD_CLKGATE_MASK(0);
621
622 if ((periph2 != 0x1) && (periph1 != 0x1) &&
623 (periph2 != 0x3) && (periph1 != 0x3))
Eric Nelson8467fae2013-08-29 12:41:46 -0700624 mask528 |= ANATOP_PFD_CLKGATE_MASK(2);
Ye.Li9293d7f2014-09-09 10:17:00 +0800625
Eric Nelson8467fae2013-08-29 12:41:46 -0700626 writel(mask480, &anatop->pfd_480_set);
627 writel(mask528, &anatop->pfd_528_set);
628 writel(mask480, &anatop->pfd_480_clr);
629 writel(mask528, &anatop->pfd_528_clr);
Stephen Warren8f393772013-02-26 12:28:29 +0000630}
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500631
632#ifdef CONFIG_IMX_HDMI
633void imx_enable_hdmi_phy(void)
634{
635 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
636 u8 reg;
637 reg = readb(&hdmi->phy_conf0);
638 reg |= HDMI_PHY_CONF0_PDZ_MASK;
639 writeb(reg, &hdmi->phy_conf0);
640 udelay(3000);
641 reg |= HDMI_PHY_CONF0_ENTMDS_MASK;
642 writeb(reg, &hdmi->phy_conf0);
643 udelay(3000);
644 reg |= HDMI_PHY_CONF0_GEN2_TXPWRON_MASK;
645 writeb(reg, &hdmi->phy_conf0);
646 writeb(HDMI_MC_PHYRSTZ_ASSERT, &hdmi->mc_phyrstz);
647}
648
649void imx_setup_hdmi(void)
650{
651 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
652 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
Peng Fan00b1d2d2016-03-09 16:07:23 +0800653 int reg, count;
654 u8 val;
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500655
656 /* Turn on HDMI PHY clock */
657 reg = readl(&mxc_ccm->CCGR2);
658 reg |= MXC_CCM_CCGR2_HDMI_TX_IAHBCLK_MASK|
659 MXC_CCM_CCGR2_HDMI_TX_ISFRCLK_MASK;
660 writel(reg, &mxc_ccm->CCGR2);
661 writeb(HDMI_MC_PHYRSTZ_DEASSERT, &hdmi->mc_phyrstz);
662 reg = readl(&mxc_ccm->chsccdr);
663 reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_MASK|
664 MXC_CCM_CHSCCDR_IPU1_DI0_PODF_MASK|
665 MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_MASK);
666 reg |= (CHSCCDR_PODF_DIVIDE_BY_3
667 << MXC_CCM_CHSCCDR_IPU1_DI0_PODF_OFFSET)
668 |(CHSCCDR_IPU_PRE_CLK_540M_PFD
669 << MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_OFFSET);
670 writel(reg, &mxc_ccm->chsccdr);
Peng Fan00b1d2d2016-03-09 16:07:23 +0800671
672 /* Clear the overflow condition */
673 if (readb(&hdmi->ih_fc_stat2) & HDMI_IH_FC_STAT2_OVERFLOW_MASK) {
674 /* TMDS software reset */
675 writeb((u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ, &hdmi->mc_swrstz);
676 val = readb(&hdmi->fc_invidconf);
677 /* Need minimum 3 times to write to clear the register */
678 for (count = 0 ; count < 5 ; count++)
679 writeb(val, &hdmi->fc_invidconf);
680 }
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500681}
682#endif
Peng Fan0623d372016-01-28 16:55:05 +0800683
684#ifdef CONFIG_IMX_BOOTAUX
685int arch_auxiliary_core_up(u32 core_id, u32 boot_private_data)
686{
687 struct src *src_reg;
688 u32 stack, pc;
689
690 if (!boot_private_data)
691 return -EINVAL;
692
693 stack = *(u32 *)boot_private_data;
694 pc = *(u32 *)(boot_private_data + 4);
695
696 /* Set the stack and pc to M4 bootROM */
697 writel(stack, M4_BOOTROM_BASE_ADDR);
698 writel(pc, M4_BOOTROM_BASE_ADDR + 4);
699
700 /* Enable M4 */
701 src_reg = (struct src *)SRC_BASE_ADDR;
702 clrsetbits_le32(&src_reg->scr, SRC_SCR_M4C_NON_SCLR_RST_MASK,
703 SRC_SCR_M4_ENABLE_MASK);
704
705 return 0;
706}
707
708int arch_auxiliary_core_check_up(u32 core_id)
709{
710 struct src *src_reg = (struct src *)SRC_BASE_ADDR;
711 unsigned val;
712
713 val = readl(&src_reg->scr);
714
715 if (val & SRC_SCR_M4C_NON_SCLR_RST_MASK)
716 return 0; /* assert in reset */
717
718 return 1;
719}
720#endif