blob: 926718b49c0e452e1e798b565a01a4e40fb1bbca [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jason Liu23608e22011-11-25 00:18:02 +00002/*
3 * (C) Copyright 2007
4 * Sascha Hauer, Pengutronix
5 *
6 * (C) Copyright 2009 Freescale Semiconductor, Inc.
Jason Liu23608e22011-11-25 00:18:02 +00007 */
8
9#include <common.h>
Simon Glass52559322019-11-14 12:57:46 -070010#include <init.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>
Diego Dortac49fa342017-09-27 13:12:37 -030016#include <asm/bootm.h>
Stefano Babic552a8482017-06-29 10:16:06 +020017#include <asm/mach-imx/boot_mode.h>
18#include <asm/mach-imx/dma.h>
19#include <asm/mach-imx/hab.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>
Ye.Li7a264162014-11-20 21:14:14 +080023#include <dm.h>
24#include <imx_thermal.h>
Soeren Moch1a43dc12016-02-04 14:41:15 +010025#include <mmc.h>
Jason Liu23608e22011-11-25 00:18:02 +000026
Fabio Estevam3d622b72013-12-26 14:51:33 -020027enum ldo_reg {
28 LDO_ARM,
29 LDO_SOC,
30 LDO_PU,
31};
32
Troy Kisky20332a02012-10-23 10:57:46 +000033struct scu_regs {
34 u32 ctrl;
35 u32 config;
36 u32 status;
37 u32 invalidate;
38 u32 fpga_rev;
39};
40
Adrian Alonso1368f992015-09-02 13:54:13 -050041#if defined(CONFIG_IMX_THERMAL)
Ye.Li7a264162014-11-20 21:14:14 +080042static const struct imx_thermal_plat imx6_thermal_plat = {
43 .regs = (void *)ANATOP_BASE_ADDR,
44 .fuse_bank = 1,
45 .fuse_word = 6,
46};
47
48U_BOOT_DEVICE(imx6_thermal) = {
49 .name = "imx_thermal",
50 .platdata = &imx6_thermal_plat,
51};
52#endif
53
Stefano Babicd714a752019-09-20 08:47:53 +020054#if defined(CONFIG_IMX_HAB)
Adrian Alonso6b50bfe2015-10-12 13:48:12 -050055struct imx_sec_config_fuse_t const imx_sec_config_fuse = {
56 .bank = 0,
57 .word = 6,
58};
59#endif
60
Gabriel Huaua76df702014-07-26 11:35:43 -070061u32 get_nr_cpus(void)
62{
63 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
64 return readl(&scu->config) & 3;
65}
66
Jason Liu23608e22011-11-25 00:18:02 +000067u32 get_cpu_rev(void)
68{
Fabio Estevama7683862012-03-20 04:21:45 +000069 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Troy Kisky20332a02012-10-23 10:57:46 +000070 u32 reg = readl(&anatop->digprog_sololite);
71 u32 type = ((reg >> 16) & 0xff);
Peng Fand0acd992015-07-11 11:38:42 +080072 u32 major, cfg = 0;
Fabio Estevama7683862012-03-20 04:21:45 +000073
Troy Kisky20332a02012-10-23 10:57:46 +000074 if (type != MXC_CPU_MX6SL) {
75 reg = readl(&anatop->digprog);
Fabio Estevam94db6652014-01-26 15:06:41 -020076 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
Peng Fand0acd992015-07-11 11:38:42 +080077 cfg = readl(&scu->config) & 3;
Troy Kisky20332a02012-10-23 10:57:46 +000078 type = ((reg >> 16) & 0xff);
79 if (type == MXC_CPU_MX6DL) {
Troy Kisky20332a02012-10-23 10:57:46 +000080 if (!cfg)
81 type = MXC_CPU_MX6SOLO;
82 }
Fabio Estevam94db6652014-01-26 15:06:41 -020083
84 if (type == MXC_CPU_MX6Q) {
85 if (cfg == 1)
86 type = MXC_CPU_MX6D;
87 }
88
Peng Fan81ae46c2019-08-08 09:55:52 +000089 if (type == MXC_CPU_MX6ULL) {
90 if (readl(SRC_BASE_ADDR + 0x1c) & (1 << 6))
91 type = MXC_CPU_MX6ULZ;
92 }
Troy Kisky20332a02012-10-23 10:57:46 +000093 }
Peng Fandfd48612015-06-11 18:30:36 +080094 major = ((reg >> 8) & 0xff);
Peng Fand0acd992015-07-11 11:38:42 +080095 if ((major >= 1) &&
96 ((type == MXC_CPU_MX6Q) || (type == MXC_CPU_MX6D))) {
97 major--;
98 type = MXC_CPU_MX6QP;
99 if (cfg == 1)
100 type = MXC_CPU_MX6DP;
101 }
Troy Kisky20332a02012-10-23 10:57:46 +0000102 reg &= 0xff; /* mx6 silicon revision */
Ye Li5fdef6c2019-07-10 10:38:37 +0000103
104 /* For 6DQ, the value 0x00630005 is Silicon revision 1.3*/
105 if (((type == MXC_CPU_MX6Q) || (type == MXC_CPU_MX6D)) && (reg == 0x5))
106 reg = 0x3;
107
Peng Fandfd48612015-06-11 18:30:36 +0800108 return (type << 12) | (reg + (0x10 * (major + 1)));
Jason Liu23608e22011-11-25 00:18:02 +0000109}
110
Tim Harvey9b9449c2015-05-18 07:02:24 -0700111/*
112 * OCOTP_CFG3[17:16] (see Fusemap Description Table offset 0x440)
113 * defines a 2-bit SPEED_GRADING
114 */
115#define OCOTP_CFG3_SPEED_SHIFT 16
116#define OCOTP_CFG3_SPEED_800MHZ 0
117#define OCOTP_CFG3_SPEED_850MHZ 1
118#define OCOTP_CFG3_SPEED_1GHZ 2
119#define OCOTP_CFG3_SPEED_1P2GHZ 3
120
Peng Fand15a2442016-05-03 11:13:04 +0800121/*
122 * For i.MX6UL
123 */
124#define OCOTP_CFG3_SPEED_528MHZ 1
125#define OCOTP_CFG3_SPEED_696MHZ 2
126
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200127/*
128 * For i.MX6ULL
129 */
130#define OCOTP_CFG3_SPEED_792MHZ 2
131#define OCOTP_CFG3_SPEED_900MHZ 3
132
Tim Harvey9b9449c2015-05-18 07:02:24 -0700133u32 get_cpu_speed_grade_hz(void)
134{
135 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
136 struct fuse_bank *bank = &ocotp->bank[0];
137 struct fuse_bank0_regs *fuse =
138 (struct fuse_bank0_regs *)bank->fuse_regs;
139 uint32_t val;
140
141 val = readl(&fuse->cfg3);
142 val >>= OCOTP_CFG3_SPEED_SHIFT;
143 val &= 0x3;
144
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200145 if (is_mx6ul()) {
Peng Fand15a2442016-05-03 11:13:04 +0800146 if (val == OCOTP_CFG3_SPEED_528MHZ)
147 return 528000000;
148 else if (val == OCOTP_CFG3_SPEED_696MHZ)
Sébastien Szymanski44e67052017-08-02 17:05:26 +0200149 return 696000000;
Peng Fand15a2442016-05-03 11:13:04 +0800150 else
151 return 0;
152 }
153
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200154 if (is_mx6ull()) {
155 if (val == OCOTP_CFG3_SPEED_528MHZ)
156 return 528000000;
157 else if (val == OCOTP_CFG3_SPEED_792MHZ)
158 return 792000000;
159 else if (val == OCOTP_CFG3_SPEED_900MHZ)
160 return 900000000;
161 else
162 return 0;
163 }
164
Tim Harvey9b9449c2015-05-18 07:02:24 -0700165 switch (val) {
166 /* Valid for IMX6DQ */
167 case OCOTP_CFG3_SPEED_1P2GHZ:
Peng Fan04cb3c02016-05-23 18:35:58 +0800168 if (is_mx6dq() || is_mx6dqp())
Tim Harvey9b9449c2015-05-18 07:02:24 -0700169 return 1200000000;
170 /* Valid for IMX6SX/IMX6SDL/IMX6DQ */
171 case OCOTP_CFG3_SPEED_1GHZ:
172 return 996000000;
173 /* Valid for IMX6DQ */
174 case OCOTP_CFG3_SPEED_850MHZ:
Peng Fan04cb3c02016-05-23 18:35:58 +0800175 if (is_mx6dq() || is_mx6dqp())
Tim Harvey9b9449c2015-05-18 07:02:24 -0700176 return 852000000;
177 /* Valid for IMX6SX/IMX6SDL/IMX6DQ */
178 case OCOTP_CFG3_SPEED_800MHZ:
179 return 792000000;
180 }
181 return 0;
182}
183
Tim Harveyf0e8e892015-05-18 06:56:45 -0700184/*
185 * OCOTP_MEM0[7:6] (see Fusemap Description Table offset 0x480)
186 * defines a 2-bit Temperature Grade
187 *
Fabio Estevam65496a32017-06-22 10:50:05 -0300188 * return temperature grade and min/max temperature in Celsius
Tim Harveyf0e8e892015-05-18 06:56:45 -0700189 */
190#define OCOTP_MEM0_TEMP_SHIFT 6
191
192u32 get_cpu_temp_grade(int *minc, int *maxc)
193{
194 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
195 struct fuse_bank *bank = &ocotp->bank[1];
196 struct fuse_bank1_regs *fuse =
197 (struct fuse_bank1_regs *)bank->fuse_regs;
198 uint32_t val;
199
200 val = readl(&fuse->mem0);
201 val >>= OCOTP_MEM0_TEMP_SHIFT;
202 val &= 0x3;
203
204 if (minc && maxc) {
205 if (val == TEMP_AUTOMOTIVE) {
206 *minc = -40;
207 *maxc = 125;
208 } else if (val == TEMP_INDUSTRIAL) {
209 *minc = -40;
210 *maxc = 105;
211 } else if (val == TEMP_EXTCOMMERCIAL) {
212 *minc = -20;
213 *maxc = 105;
214 } else {
215 *minc = 0;
216 *maxc = 95;
217 }
218 }
219 return val;
220}
221
Fabio Estevam38e70072013-03-27 07:36:55 +0000222#ifdef CONFIG_REVISION_TAG
223u32 __weak get_board_rev(void)
224{
225 u32 cpurev = get_cpu_rev();
226 u32 type = ((cpurev >> 12) & 0xff);
227 if (type == MXC_CPU_MX6SOLO)
228 cpurev = (MXC_CPU_MX6DL) << 12 | (cpurev & 0xFFF);
229
Fabio Estevam94db6652014-01-26 15:06:41 -0200230 if (type == MXC_CPU_MX6D)
231 cpurev = (MXC_CPU_MX6Q) << 12 | (cpurev & 0xFFF);
232
Fabio Estevam38e70072013-03-27 07:36:55 +0000233 return cpurev;
234}
235#endif
236
Fabio Estevame113fd12013-12-26 14:51:31 -0200237static void clear_ldo_ramp(void)
238{
239 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
240 int reg;
241
242 /* ROM may modify LDO ramp up time according to fuse setting, so in
243 * order to be in the safe side we neeed to reset these settings to
244 * match the reset value: 0'b00
245 */
246 reg = readl(&anatop->ana_misc2);
247 reg &= ~(0x3f << 24);
248 writel(reg, &anatop->ana_misc2);
249}
250
Dirk Behmecac833a2012-05-02 02:12:17 +0000251/*
Fabio Estevam157f45d2014-06-13 01:42:37 -0300252 * Set the PMU_REG_CORE register
Dirk Behmecac833a2012-05-02 02:12:17 +0000253 *
Fabio Estevam157f45d2014-06-13 01:42:37 -0300254 * Set LDO_SOC/PU/ARM regulators to the specified millivolt level.
Dirk Behmecac833a2012-05-02 02:12:17 +0000255 * Possible values are from 0.725V to 1.450V in steps of
256 * 0.025V (25mV).
257 */
Fabio Estevam3d622b72013-12-26 14:51:33 -0200258static int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
Dirk Behmecac833a2012-05-02 02:12:17 +0000259{
260 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200261 u32 val, step, old, reg = readl(&anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200262 u8 shift;
Dirk Behmecac833a2012-05-02 02:12:17 +0000263
Peng Fan79a57b52017-08-08 16:21:35 +0800264 /* No LDO_SOC/PU/ARM */
265 if (is_mx6sll())
266 return 0;
267
Dirk Behmecac833a2012-05-02 02:12:17 +0000268 if (mv < 725)
269 val = 0x00; /* Power gated off */
270 else if (mv > 1450)
271 val = 0x1F; /* Power FET switched full on. No regulation */
272 else
273 val = (mv - 700) / 25;
274
Fabio Estevame113fd12013-12-26 14:51:31 -0200275 clear_ldo_ramp();
276
Fabio Estevam3d622b72013-12-26 14:51:33 -0200277 switch (ldo) {
278 case LDO_SOC:
279 shift = 18;
280 break;
281 case LDO_PU:
282 shift = 9;
283 break;
284 case LDO_ARM:
285 shift = 0;
286 break;
287 default:
288 return -EINVAL;
289 }
290
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200291 old = (reg & (0x1F << shift)) >> shift;
292 step = abs(val - old);
293 if (step == 0)
294 return 0;
295
Fabio Estevam3d622b72013-12-26 14:51:33 -0200296 reg = (reg & ~(0x1F << shift)) | (val << shift);
Dirk Behmecac833a2012-05-02 02:12:17 +0000297 writel(reg, &anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200298
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200299 /*
300 * The LDO ramp-up is based on 64 clock cycles of 24 MHz = 2.6 us per
301 * step
302 */
303 udelay(3 * step);
304
Fabio Estevam3d622b72013-12-26 14:51:33 -0200305 return 0;
Dirk Behmecac833a2012-05-02 02:12:17 +0000306}
307
Anson Huang5c92edc2014-01-23 14:00:18 +0800308static void set_ahb_rate(u32 val)
309{
310 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
311 u32 reg, div;
312
313 div = get_periph_clk() / val - 1;
314 reg = readl(&mxc_ccm->cbcdr);
315
316 writel((reg & (~MXC_CCM_CBCDR_AHB_PODF_MASK)) |
317 (div << MXC_CCM_CBCDR_AHB_PODF_OFFSET), &mxc_ccm->cbcdr);
318}
319
Anson Huang16197bb2014-01-23 14:00:19 +0800320static void clear_mmdc_ch_mask(void)
321{
322 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
Peng Fane1c2d682015-07-11 11:38:43 +0800323 u32 reg;
324 reg = readl(&mxc_ccm->ccdr);
Anson Huang16197bb2014-01-23 14:00:19 +0800325
326 /* Clear MMDC channel mask */
Peng Fan79a57b52017-08-08 16:21:35 +0800327 if (is_mx6sx() || is_mx6ul() || is_mx6ull() || is_mx6sl() || is_mx6sll())
Ye Lib7777892016-03-09 16:13:48 +0800328 reg &= ~(MXC_CCM_CCDR_MMDC_CH1_HS_MASK);
329 else
330 reg &= ~(MXC_CCM_CCDR_MMDC_CH1_HS_MASK | MXC_CCM_CCDR_MMDC_CH0_HS_MASK);
Peng Fane1c2d682015-07-11 11:38:43 +0800331 writel(reg, &mxc_ccm->ccdr);
Anson Huang16197bb2014-01-23 14:00:19 +0800332}
333
Peng Fan97c16dc2016-10-08 17:03:00 +0800334#define OCOTP_MEM0_REFTOP_TRIM_SHIFT 8
335
Peng Fan1f516fa2015-01-15 14:22:32 +0800336static void init_bandgap(void)
337{
338 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Peng Fan97c16dc2016-10-08 17:03:00 +0800339 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
340 struct fuse_bank *bank = &ocotp->bank[1];
341 struct fuse_bank1_regs *fuse =
342 (struct fuse_bank1_regs *)bank->fuse_regs;
343 uint32_t val;
344
Peng Fan1f516fa2015-01-15 14:22:32 +0800345 /*
346 * Ensure the bandgap has stabilized.
347 */
348 while (!(readl(&anatop->ana_misc0) & 0x80))
349 ;
350 /*
351 * For best noise performance of the analog blocks using the
352 * outputs of the bandgap, the reftop_selfbiasoff bit should
353 * be set.
354 */
355 writel(BM_ANADIG_ANA_MISC0_REFTOP_SELBIASOFF, &anatop->ana_misc0_set);
Peng Fan5b664822016-08-11 14:02:50 +0800356 /*
Peng Fan97c16dc2016-10-08 17:03:00 +0800357 * On i.MX6ULL,we need to set VBGADJ bits according to the
358 * REFTOP_TRIM[3:0] in fuse table
359 * 000 - set REFTOP_VBGADJ[2:0] to 3b'110,
360 * 110 - set REFTOP_VBGADJ[2:0] to 3b'000,
361 * 001 - set REFTOP_VBGADJ[2:0] to 3b'001,
362 * 010 - set REFTOP_VBGADJ[2:0] to 3b'010,
363 * 011 - set REFTOP_VBGADJ[2:0] to 3b'011,
364 * 100 - set REFTOP_VBGADJ[2:0] to 3b'100,
365 * 101 - set REFTOP_VBGADJ[2:0] to 3b'101,
366 * 111 - set REFTOP_VBGADJ[2:0] to 3b'111,
Peng Fan5b664822016-08-11 14:02:50 +0800367 */
Peng Fan97c16dc2016-10-08 17:03:00 +0800368 if (is_mx6ull()) {
369 val = readl(&fuse->mem0);
370 val >>= OCOTP_MEM0_REFTOP_TRIM_SHIFT;
371 val &= 0x7;
Peng Fan1f516fa2015-01-15 14:22:32 +0800372
Peng Fan97c16dc2016-10-08 17:03:00 +0800373 writel(val << BM_ANADIG_ANA_MISC0_REFTOP_VBGADJ_SHIFT,
374 &anatop->ana_misc0_set);
375 }
376}
Peng Fan1f516fa2015-01-15 14:22:32 +0800377
Jason Liu23608e22011-11-25 00:18:02 +0000378int arch_cpu_init(void)
379{
Peng Fan72362972017-08-08 16:21:38 +0800380 struct mxc_ccm_reg *ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
381
Jason Liu23608e22011-11-25 00:18:02 +0000382 init_aips();
383
Anson Huang16197bb2014-01-23 14:00:19 +0800384 /* Need to clear MMDC_CHx_MASK to make warm reset work. */
385 clear_mmdc_ch_mask();
386
Anson Huang5c92edc2014-01-23 14:00:18 +0800387 /*
Peng Fan1f516fa2015-01-15 14:22:32 +0800388 * Disable self-bias circuit in the analog bandap.
389 * The self-bias circuit is used by the bandgap during startup.
390 * This bit should be set after the bandgap has initialized.
391 */
392 init_bandgap();
393
Peng Fancdf33c92016-08-11 14:02:43 +0800394 if (!is_mx6ul() && !is_mx6ull()) {
Peng Fane4dc3fc2016-03-09 16:44:36 +0800395 /*
396 * When low freq boot is enabled, ROM will not set AHB
397 * freq, so we need to ensure AHB freq is 132MHz in such
398 * scenario.
399 *
400 * To i.MX6UL, when power up, default ARM core and
401 * AHB rate is 396M and 132M.
402 */
403 if (mxc_get_clock(MXC_ARM_CLK) == 396000000)
404 set_ahb_rate(132000000);
405 }
Anson Huang5c92edc2014-01-23 14:00:18 +0800406
Peng Fanf15ece32016-09-28 09:40:27 +0800407 if (is_mx6ul()) {
408 if (is_soc_rev(CHIP_REV_1_0) == 0) {
409 /*
410 * According to the design team's requirement on
411 * i.MX6UL,the PMIC_STBY_REQ PAD should be configured
412 * as open drain 100K (0x0000b8a0).
413 * Only exists on TO1.0
414 */
415 writel(0x0000b8a0, IOMUXC_BASE_ADDR + 0x29c);
416 } else {
417 /*
418 * From TO1.1, SNVS adds internal pull up control
419 * for POR_B, the register filed is GPBIT[1:0],
420 * after system boot up, it can be set to 2b'01
421 * to disable internal pull up.It can save about
422 * 30uA power in SNVS mode.
423 */
424 writel((readl(MX6UL_SNVS_LP_BASE_ADDR + 0x10) &
425 (~0x1400)) | 0x400,
426 MX6UL_SNVS_LP_BASE_ADDR + 0x10);
427 }
Peng Fan7082d872016-03-09 16:44:37 +0800428 }
429
Peng Fanb4714612016-08-11 14:02:46 +0800430 if (is_mx6ull()) {
431 /*
432 * GPBIT[1:0] is suggested to set to 2'b11:
433 * 2'b00 : always PUP100K
434 * 2'b01 : PUP100K when PMIC_ON_REQ or SOC_NOT_FAIL
435 * 2'b10 : always disable PUP100K
436 * 2'b11 : PDN100K when SOC_FAIL, PUP100K when SOC_NOT_FAIL
437 * register offset is different from i.MX6UL, since
438 * i.MX6UL is fixed by ECO.
439 */
440 writel(readl(MX6UL_SNVS_LP_BASE_ADDR) |
441 0x3, MX6UL_SNVS_LP_BASE_ADDR);
442 }
443
Peng Fan7082d872016-03-09 16:44:37 +0800444 /* Set perclk to source from OSC 24MHz */
Peng Fan9402caf2017-08-08 16:21:39 +0800445 if (is_mx6sl())
446 setbits_le32(&ccm->cscmr1, MXC_CCM_CSCMR1_PER_CLK_SEL_MASK);
Ye.Li0f8ec142014-10-30 18:20:58 +0800447
Fabio Estevame2162d72017-11-23 10:55:33 -0200448 imx_wdog_disable_powerdown(); /* Disable PDE bit of WMCR register */
Stefan Roeseae695b12013-04-15 21:14:12 +0000449
Peng Fan72362972017-08-08 16:21:38 +0800450 if (is_mx6sx())
451 setbits_le32(&ccm->cscdr1, MXC_CCM_CSCDR1_UART_CLK_SEL);
452
Dirk Behme9d16c522015-03-09 14:48:48 +0100453 init_src();
454
Jason Liu23608e22011-11-25 00:18:02 +0000455 return 0;
456}
Jason Liu23608e22011-11-25 00:18:02 +0000457
Peng Fan216d2862016-01-28 16:51:26 +0800458#ifdef CONFIG_ENV_IS_IN_MMC
459__weak int board_mmc_get_env_dev(int devno)
460{
461 return CONFIG_SYS_MMC_ENV_DEV;
462}
463
Soeren Moch1a43dc12016-02-04 14:41:15 +0100464static int mmc_get_boot_dev(void)
Peng Fan216d2862016-01-28 16:51:26 +0800465{
466 struct src *src_regs = (struct src *)SRC_BASE_ADDR;
467 u32 soc_sbmr = readl(&src_regs->sbmr1);
468 u32 bootsel;
469 int devno;
470
471 /*
472 * Refer to
473 * "i.MX 6Dual/6Quad Applications Processor Reference Manual"
474 * Chapter "8.5.3.1 Expansion Device eFUSE Configuration"
475 * i.MX6SL/SX/UL has same layout.
476 */
477 bootsel = (soc_sbmr & 0x000000FF) >> 6;
478
Soeren Moch1a43dc12016-02-04 14:41:15 +0100479 /* No boot from sd/mmc */
Peng Fan216d2862016-01-28 16:51:26 +0800480 if (bootsel != 1)
Soeren Moch1a43dc12016-02-04 14:41:15 +0100481 return -1;
Peng Fan216d2862016-01-28 16:51:26 +0800482
483 /* BOOT_CFG2[3] and BOOT_CFG2[4] */
484 devno = (soc_sbmr & 0x00001800) >> 11;
485
Soeren Moch1a43dc12016-02-04 14:41:15 +0100486 return devno;
487}
488
489int mmc_get_env_dev(void)
490{
491 int devno = mmc_get_boot_dev();
492
493 /* If not boot from sd/mmc, use default value */
494 if (devno < 0)
495 return CONFIG_SYS_MMC_ENV_DEV;
496
Peng Fan216d2862016-01-28 16:51:26 +0800497 return board_mmc_get_env_dev(devno);
498}
Soeren Moch1a43dc12016-02-04 14:41:15 +0100499
500#ifdef CONFIG_SYS_MMC_ENV_PART
501__weak int board_mmc_get_env_part(int devno)
502{
503 return CONFIG_SYS_MMC_ENV_PART;
504}
505
506uint mmc_get_env_part(struct mmc *mmc)
507{
508 int devno = mmc_get_boot_dev();
509
510 /* If not boot from sd/mmc, use default value */
511 if (devno < 0)
512 return CONFIG_SYS_MMC_ENV_PART;
513
514 return board_mmc_get_env_part(devno);
515}
516#endif
Peng Fan216d2862016-01-28 16:51:26 +0800517#endif
518
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200519int board_postclk_init(void)
520{
Peng Fan79a57b52017-08-08 16:21:35 +0800521 /* NO LDO SOC on i.MX6SLL */
522 if (is_mx6sll())
523 return 0;
524
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200525 set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */
526
527 return 0;
528}
529
Anatolij Gustschinffc36f52017-08-28 17:51:33 +0200530#ifndef CONFIG_SPL_BUILD
Troy Kisky124a06d2012-08-15 10:31:20 +0000531/*
532 * cfg_val will be used for
533 * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
Nikita Kiryanovf2863ff2014-10-29 19:28:33 +0200534 * After reset, if GPR10[28] is 1, ROM will use GPR9[25:0]
535 * instead of SBMR1 to determine the boot device.
Troy Kisky124a06d2012-08-15 10:31:20 +0000536 */
537const struct boot_mode soc_boot_modes[] = {
538 {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
539 /* reserved value should start rom usb */
Stefan Agner3fd95792017-06-09 13:13:12 -0700540#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
541 {"usb", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
542#else
Stefan Agner81c4ecc2016-09-15 15:04:39 -0700543 {"usb", MAKE_CFGVAL(0x10, 0x00, 0x00, 0x00)},
Stefan Agner3fd95792017-06-09 13:13:12 -0700544#endif
Troy Kisky124a06d2012-08-15 10:31:20 +0000545 {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
Nikolay Dimitrov2d59e3e2014-08-10 20:03:07 +0300546 {"ecspi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
547 {"ecspi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
548 {"ecspi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
549 {"ecspi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
Troy Kisky124a06d2012-08-15 10:31:20 +0000550 /* 4 bit bus width */
551 {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
552 {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
553 {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
554 {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
555 {NULL, 0},
556};
Anatolij Gustschinffc36f52017-08-28 17:51:33 +0200557#endif
Stephen Warren8f393772013-02-26 12:28:29 +0000558
Peng Faneb111bb2015-10-29 15:54:50 +0800559void reset_misc(void)
560{
Michael Trimarchi92362692018-06-20 23:27:54 +0200561#ifndef CONFIG_SPL_BUILD
Igor Opaniuk9de5eb22019-06-19 11:47:08 +0300562#if defined(CONFIG_VIDEO_MXS) && !defined(CONFIG_DM_VIDEO)
Peng Faneb111bb2015-10-29 15:54:50 +0800563 lcdif_power_down();
564#endif
Michael Trimarchi92362692018-06-20 23:27:54 +0200565#endif
Peng Faneb111bb2015-10-29 15:54:50 +0800566}
567
Stephen Warren8f393772013-02-26 12:28:29 +0000568void s_init(void)
569{
Eric Nelson8467fae2013-08-29 12:41:46 -0700570 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Ye.Li9293d7f2014-09-09 10:17:00 +0800571 struct mxc_ccm_reg *ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
Eric Nelson8467fae2013-08-29 12:41:46 -0700572 u32 mask480;
573 u32 mask528;
Ye.Li9293d7f2014-09-09 10:17:00 +0800574 u32 reg, periph1, periph2;
Fabio Estevama3df99b2014-07-09 16:13:29 -0300575
Peng Fan79a57b52017-08-08 16:21:35 +0800576 if (is_mx6sx() || is_mx6ul() || is_mx6ull() || is_mx6sll())
Fabio Estevama3df99b2014-07-09 16:13:29 -0300577 return;
578
Eric Nelson8467fae2013-08-29 12:41:46 -0700579 /* Due to hardware limitation, on MX6Q we need to gate/ungate all PFDs
580 * to make sure PFD is working right, otherwise, PFDs may
581 * not output clock after reset, MX6DL and MX6SL have added 396M pfd
582 * workaround in ROM code, as bus clock need it
583 */
584
585 mask480 = ANATOP_PFD_CLKGATE_MASK(0) |
586 ANATOP_PFD_CLKGATE_MASK(1) |
587 ANATOP_PFD_CLKGATE_MASK(2) |
588 ANATOP_PFD_CLKGATE_MASK(3);
Ye.Li9293d7f2014-09-09 10:17:00 +0800589 mask528 = ANATOP_PFD_CLKGATE_MASK(1) |
Eric Nelson8467fae2013-08-29 12:41:46 -0700590 ANATOP_PFD_CLKGATE_MASK(3);
591
Ye.Li9293d7f2014-09-09 10:17:00 +0800592 reg = readl(&ccm->cbcmr);
593 periph2 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_MASK)
594 >> MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_OFFSET);
595 periph1 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_MASK)
596 >> MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_OFFSET);
597
598 /* Checking if PLL2 PFD0 or PLL2 PFD2 is using for periph clock */
599 if ((periph2 != 0x2) && (periph1 != 0x2))
600 mask528 |= ANATOP_PFD_CLKGATE_MASK(0);
601
602 if ((periph2 != 0x1) && (periph1 != 0x1) &&
603 (periph2 != 0x3) && (periph1 != 0x3))
Eric Nelson8467fae2013-08-29 12:41:46 -0700604 mask528 |= ANATOP_PFD_CLKGATE_MASK(2);
Ye.Li9293d7f2014-09-09 10:17:00 +0800605
Eric Nelson8467fae2013-08-29 12:41:46 -0700606 writel(mask480, &anatop->pfd_480_set);
607 writel(mask528, &anatop->pfd_528_set);
608 writel(mask480, &anatop->pfd_480_clr);
609 writel(mask528, &anatop->pfd_528_clr);
Stephen Warren8f393772013-02-26 12:28:29 +0000610}
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500611
612#ifdef CONFIG_IMX_HDMI
613void imx_enable_hdmi_phy(void)
614{
615 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
616 u8 reg;
617 reg = readb(&hdmi->phy_conf0);
618 reg |= HDMI_PHY_CONF0_PDZ_MASK;
619 writeb(reg, &hdmi->phy_conf0);
620 udelay(3000);
621 reg |= HDMI_PHY_CONF0_ENTMDS_MASK;
622 writeb(reg, &hdmi->phy_conf0);
623 udelay(3000);
624 reg |= HDMI_PHY_CONF0_GEN2_TXPWRON_MASK;
625 writeb(reg, &hdmi->phy_conf0);
626 writeb(HDMI_MC_PHYRSTZ_ASSERT, &hdmi->mc_phyrstz);
627}
628
629void imx_setup_hdmi(void)
630{
631 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
632 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
Peng Fan00b1d2d2016-03-09 16:07:23 +0800633 int reg, count;
634 u8 val;
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500635
636 /* Turn on HDMI PHY clock */
637 reg = readl(&mxc_ccm->CCGR2);
638 reg |= MXC_CCM_CCGR2_HDMI_TX_IAHBCLK_MASK|
639 MXC_CCM_CCGR2_HDMI_TX_ISFRCLK_MASK;
640 writel(reg, &mxc_ccm->CCGR2);
641 writeb(HDMI_MC_PHYRSTZ_DEASSERT, &hdmi->mc_phyrstz);
642 reg = readl(&mxc_ccm->chsccdr);
643 reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_MASK|
644 MXC_CCM_CHSCCDR_IPU1_DI0_PODF_MASK|
645 MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_MASK);
646 reg |= (CHSCCDR_PODF_DIVIDE_BY_3
647 << MXC_CCM_CHSCCDR_IPU1_DI0_PODF_OFFSET)
648 |(CHSCCDR_IPU_PRE_CLK_540M_PFD
649 << MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_OFFSET);
650 writel(reg, &mxc_ccm->chsccdr);
Peng Fan00b1d2d2016-03-09 16:07:23 +0800651
652 /* Clear the overflow condition */
653 if (readb(&hdmi->ih_fc_stat2) & HDMI_IH_FC_STAT2_OVERFLOW_MASK) {
654 /* TMDS software reset */
655 writeb((u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ, &hdmi->mc_swrstz);
656 val = readb(&hdmi->fc_invidconf);
657 /* Need minimum 3 times to write to clear the register */
658 for (count = 0 ; count < 5 ; count++)
659 writeb(val, &hdmi->fc_invidconf);
660 }
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500661}
662#endif
Peng Fan0623d372016-01-28 16:55:05 +0800663
Michael Trimarchi4a72abc2018-06-23 16:10:06 +0200664
665/*
666 * gpr_init() function is common for boards using MX6S, MX6DL, MX6D,
667 * MX6Q and MX6QP processors
668 */
Breno Lima3aa4b702017-08-24 10:00:16 -0300669void gpr_init(void)
670{
671 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
672
Christoph Niedermaier19bbd092018-10-19 17:40:54 +0200673 /*
674 * If this function is used in a common MX6 spl implementation
675 * we have to ensure that it is only called for suitable cpu types,
676 * otherwise it breaks hardware parts like enet1, can1, can2, etc.
677 */
678 if (!is_mx6dqp() && !is_mx6dq() && !is_mx6sdl())
679 return;
680
Breno Lima3aa4b702017-08-24 10:00:16 -0300681 /* enable AXI cache for VDOA/VPU/IPU */
682 writel(0xF00000CF, &iomux->gpr[4]);
683 if (is_mx6dqp()) {
684 /* set IPU AXI-id1 Qos=0x1 AXI-id0/2/3 Qos=0x7 */
685 writel(0x77177717, &iomux->gpr[6]);
686 writel(0x77177717, &iomux->gpr[7]);
687 } else {
688 /* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
689 writel(0x007F007F, &iomux->gpr[6]);
690 writel(0x007F007F, &iomux->gpr[7]);
691 }
692}