blob: f43a2460f904b8a2758e6cb09d2cf5aa54c31e18 [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>
Simon Glassc05ed002020-05-10 11:40:11 -060011#include <linux/delay.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090012#include <linux/errno.h>
Jason Liu23608e22011-11-25 00:18:02 +000013#include <asm/io.h>
14#include <asm/arch/imx-regs.h>
15#include <asm/arch/clock.h>
16#include <asm/arch/sys_proto.h>
Diego Dortac49fa342017-09-27 13:12:37 -030017#include <asm/bootm.h>
Stefano Babic552a8482017-06-29 10:16:06 +020018#include <asm/mach-imx/boot_mode.h>
19#include <asm/mach-imx/dma.h>
20#include <asm/mach-imx/hab.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>
Ye.Li7a264162014-11-20 21:14:14 +080024#include <dm.h>
Heinrich Schuchardt90865612020-06-26 19:57:55 +020025#include <fsl_sec.h>
Ye.Li7a264162014-11-20 21:14:14 +080026#include <imx_thermal.h>
Soeren Moch1a43dc12016-02-04 14:41:15 +010027#include <mmc.h>
Jason Liu23608e22011-11-25 00:18:02 +000028
Jorge Ramirez-Ortiz74a03942020-10-23 21:18:41 +020029#define has_err007805() \
30 (is_mx6sl() || is_mx6dl() || is_mx6solo() || is_mx6ull())
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
Simon Glass4e28a252020-10-29 11:08:25 -060040#if !defined(CONFIG_SPL_BUILD) && 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
Stefano Babicd714a752019-09-20 08:47:53 +020053#if defined(CONFIG_IMX_HAB)
Adrian Alonso6b50bfe2015-10-12 13:48:12 -050054struct 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
Peng Fan81ae46c2019-08-08 09:55:52 +000088 if (type == MXC_CPU_MX6ULL) {
89 if (readl(SRC_BASE_ADDR + 0x1c) & (1 << 6))
90 type = MXC_CPU_MX6ULZ;
91 }
Troy Kisky20332a02012-10-23 10:57:46 +000092 }
Peng Fandfd48612015-06-11 18:30:36 +080093 major = ((reg >> 8) & 0xff);
Peng Fand0acd992015-07-11 11:38:42 +080094 if ((major >= 1) &&
95 ((type == MXC_CPU_MX6Q) || (type == MXC_CPU_MX6D))) {
96 major--;
97 type = MXC_CPU_MX6QP;
98 if (cfg == 1)
99 type = MXC_CPU_MX6DP;
100 }
Troy Kisky20332a02012-10-23 10:57:46 +0000101 reg &= 0xff; /* mx6 silicon revision */
Ye Li5fdef6c2019-07-10 10:38:37 +0000102
103 /* For 6DQ, the value 0x00630005 is Silicon revision 1.3*/
104 if (((type == MXC_CPU_MX6Q) || (type == MXC_CPU_MX6D)) && (reg == 0x5))
105 reg = 0x3;
106
Peng Fandfd48612015-06-11 18:30:36 +0800107 return (type << 12) | (reg + (0x10 * (major + 1)));
Jason Liu23608e22011-11-25 00:18:02 +0000108}
109
Tim Harvey9b9449c2015-05-18 07:02:24 -0700110/*
111 * OCOTP_CFG3[17:16] (see Fusemap Description Table offset 0x440)
112 * defines a 2-bit SPEED_GRADING
113 */
114#define OCOTP_CFG3_SPEED_SHIFT 16
115#define OCOTP_CFG3_SPEED_800MHZ 0
116#define OCOTP_CFG3_SPEED_850MHZ 1
117#define OCOTP_CFG3_SPEED_1GHZ 2
118#define OCOTP_CFG3_SPEED_1P2GHZ 3
119
Peng Fand15a2442016-05-03 11:13:04 +0800120/*
121 * For i.MX6UL
122 */
123#define OCOTP_CFG3_SPEED_528MHZ 1
124#define OCOTP_CFG3_SPEED_696MHZ 2
125
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200126/*
127 * For i.MX6ULL
128 */
129#define OCOTP_CFG3_SPEED_792MHZ 2
130#define OCOTP_CFG3_SPEED_900MHZ 3
131
Tim Harvey9b9449c2015-05-18 07:02:24 -0700132u32 get_cpu_speed_grade_hz(void)
133{
134 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
135 struct fuse_bank *bank = &ocotp->bank[0];
136 struct fuse_bank0_regs *fuse =
137 (struct fuse_bank0_regs *)bank->fuse_regs;
138 uint32_t val;
139
140 val = readl(&fuse->cfg3);
141 val >>= OCOTP_CFG3_SPEED_SHIFT;
142 val &= 0x3;
143
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200144 if (is_mx6ul()) {
Peng Fand15a2442016-05-03 11:13:04 +0800145 if (val == OCOTP_CFG3_SPEED_528MHZ)
146 return 528000000;
147 else if (val == OCOTP_CFG3_SPEED_696MHZ)
Sébastien Szymanski44e67052017-08-02 17:05:26 +0200148 return 696000000;
Peng Fand15a2442016-05-03 11:13:04 +0800149 else
150 return 0;
151 }
152
Sébastien Szymanski0c7c6fb2017-08-02 17:05:27 +0200153 if (is_mx6ull()) {
154 if (val == OCOTP_CFG3_SPEED_528MHZ)
155 return 528000000;
156 else if (val == OCOTP_CFG3_SPEED_792MHZ)
157 return 792000000;
158 else if (val == OCOTP_CFG3_SPEED_900MHZ)
159 return 900000000;
160 else
161 return 0;
162 }
163
Tim Harvey9b9449c2015-05-18 07:02:24 -0700164 switch (val) {
165 /* Valid for IMX6DQ */
166 case OCOTP_CFG3_SPEED_1P2GHZ:
Peng Fan04cb3c02016-05-23 18:35:58 +0800167 if (is_mx6dq() || is_mx6dqp())
Tim Harvey9b9449c2015-05-18 07:02:24 -0700168 return 1200000000;
169 /* Valid for IMX6SX/IMX6SDL/IMX6DQ */
170 case OCOTP_CFG3_SPEED_1GHZ:
171 return 996000000;
172 /* Valid for IMX6DQ */
173 case OCOTP_CFG3_SPEED_850MHZ:
Peng Fan04cb3c02016-05-23 18:35:58 +0800174 if (is_mx6dq() || is_mx6dqp())
Tim Harvey9b9449c2015-05-18 07:02:24 -0700175 return 852000000;
176 /* Valid for IMX6SX/IMX6SDL/IMX6DQ */
177 case OCOTP_CFG3_SPEED_800MHZ:
178 return 792000000;
179 }
180 return 0;
181}
182
Tim Harveyf0e8e892015-05-18 06:56:45 -0700183/*
184 * OCOTP_MEM0[7:6] (see Fusemap Description Table offset 0x480)
185 * defines a 2-bit Temperature Grade
186 *
Fabio Estevam65496a32017-06-22 10:50:05 -0300187 * return temperature grade and min/max temperature in Celsius
Tim Harveyf0e8e892015-05-18 06:56:45 -0700188 */
189#define OCOTP_MEM0_TEMP_SHIFT 6
190
191u32 get_cpu_temp_grade(int *minc, int *maxc)
192{
193 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
194 struct fuse_bank *bank = &ocotp->bank[1];
195 struct fuse_bank1_regs *fuse =
196 (struct fuse_bank1_regs *)bank->fuse_regs;
197 uint32_t val;
198
199 val = readl(&fuse->mem0);
200 val >>= OCOTP_MEM0_TEMP_SHIFT;
201 val &= 0x3;
202
203 if (minc && maxc) {
204 if (val == TEMP_AUTOMOTIVE) {
205 *minc = -40;
206 *maxc = 125;
207 } else if (val == TEMP_INDUSTRIAL) {
208 *minc = -40;
209 *maxc = 105;
210 } else if (val == TEMP_EXTCOMMERCIAL) {
211 *minc = -20;
212 *maxc = 105;
213 } else {
214 *minc = 0;
215 *maxc = 95;
216 }
217 }
218 return val;
219}
220
Fabio Estevam38e70072013-03-27 07:36:55 +0000221#ifdef CONFIG_REVISION_TAG
222u32 __weak get_board_rev(void)
223{
224 u32 cpurev = get_cpu_rev();
225 u32 type = ((cpurev >> 12) & 0xff);
226 if (type == MXC_CPU_MX6SOLO)
227 cpurev = (MXC_CPU_MX6DL) << 12 | (cpurev & 0xFFF);
228
Fabio Estevam94db6652014-01-26 15:06:41 -0200229 if (type == MXC_CPU_MX6D)
230 cpurev = (MXC_CPU_MX6Q) << 12 | (cpurev & 0xFFF);
231
Fabio Estevam38e70072013-03-27 07:36:55 +0000232 return cpurev;
233}
234#endif
235
Fabio Estevame113fd12013-12-26 14:51:31 -0200236static void clear_ldo_ramp(void)
237{
238 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
239 int reg;
240
241 /* ROM may modify LDO ramp up time according to fuse setting, so in
242 * order to be in the safe side we neeed to reset these settings to
243 * match the reset value: 0'b00
244 */
245 reg = readl(&anatop->ana_misc2);
246 reg &= ~(0x3f << 24);
247 writel(reg, &anatop->ana_misc2);
248}
249
Dirk Behmecac833a2012-05-02 02:12:17 +0000250/*
Fabio Estevam157f45d2014-06-13 01:42:37 -0300251 * Set the PMU_REG_CORE register
Dirk Behmecac833a2012-05-02 02:12:17 +0000252 *
Fabio Estevam157f45d2014-06-13 01:42:37 -0300253 * Set LDO_SOC/PU/ARM regulators to the specified millivolt level.
Dirk Behmecac833a2012-05-02 02:12:17 +0000254 * Possible values are from 0.725V to 1.450V in steps of
255 * 0.025V (25mV).
256 */
Marek Vasutdf1b7212019-11-26 09:35:32 +0100257int set_ldo_voltage(enum ldo_reg ldo, u32 mv)
Dirk Behmecac833a2012-05-02 02:12:17 +0000258{
259 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200260 u32 val, step, old, reg = readl(&anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200261 u8 shift;
Dirk Behmecac833a2012-05-02 02:12:17 +0000262
Peng Fan79a57b52017-08-08 16:21:35 +0800263 /* No LDO_SOC/PU/ARM */
264 if (is_mx6sll())
265 return 0;
266
Dirk Behmecac833a2012-05-02 02:12:17 +0000267 if (mv < 725)
268 val = 0x00; /* Power gated off */
269 else if (mv > 1450)
270 val = 0x1F; /* Power FET switched full on. No regulation */
271 else
272 val = (mv - 700) / 25;
273
Fabio Estevame113fd12013-12-26 14:51:31 -0200274 clear_ldo_ramp();
275
Fabio Estevam3d622b72013-12-26 14:51:33 -0200276 switch (ldo) {
277 case LDO_SOC:
278 shift = 18;
279 break;
280 case LDO_PU:
281 shift = 9;
282 break;
283 case LDO_ARM:
284 shift = 0;
285 break;
286 default:
287 return -EINVAL;
288 }
289
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200290 old = (reg & (0x1F << shift)) >> shift;
291 step = abs(val - old);
292 if (step == 0)
293 return 0;
294
Fabio Estevam3d622b72013-12-26 14:51:33 -0200295 reg = (reg & ~(0x1F << shift)) | (val << shift);
Dirk Behmecac833a2012-05-02 02:12:17 +0000296 writel(reg, &anatop->reg_core);
Fabio Estevam3d622b72013-12-26 14:51:33 -0200297
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200298 /*
299 * The LDO ramp-up is based on 64 clock cycles of 24 MHz = 2.6 us per
300 * step
301 */
302 udelay(3 * step);
303
Fabio Estevam3d622b72013-12-26 14:51:33 -0200304 return 0;
Dirk Behmecac833a2012-05-02 02:12:17 +0000305}
306
Anson Huang5c92edc2014-01-23 14:00:18 +0800307static void set_ahb_rate(u32 val)
308{
309 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
310 u32 reg, div;
311
312 div = get_periph_clk() / val - 1;
313 reg = readl(&mxc_ccm->cbcdr);
314
315 writel((reg & (~MXC_CCM_CBCDR_AHB_PODF_MASK)) |
316 (div << MXC_CCM_CBCDR_AHB_PODF_OFFSET), &mxc_ccm->cbcdr);
317}
318
Anson Huang16197bb2014-01-23 14:00:19 +0800319static void clear_mmdc_ch_mask(void)
320{
321 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
Peng Fane1c2d682015-07-11 11:38:43 +0800322 u32 reg;
323 reg = readl(&mxc_ccm->ccdr);
Anson Huang16197bb2014-01-23 14:00:19 +0800324
325 /* Clear MMDC channel mask */
Peng Fan79a57b52017-08-08 16:21:35 +0800326 if (is_mx6sx() || is_mx6ul() || is_mx6ull() || is_mx6sl() || is_mx6sll())
Ye Lib7777892016-03-09 16:13:48 +0800327 reg &= ~(MXC_CCM_CCDR_MMDC_CH1_HS_MASK);
328 else
329 reg &= ~(MXC_CCM_CCDR_MMDC_CH1_HS_MASK | MXC_CCM_CCDR_MMDC_CH0_HS_MASK);
Peng Fane1c2d682015-07-11 11:38:43 +0800330 writel(reg, &mxc_ccm->ccdr);
Anson Huang16197bb2014-01-23 14:00:19 +0800331}
332
Peng Fan97c16dc2016-10-08 17:03:00 +0800333#define OCOTP_MEM0_REFTOP_TRIM_SHIFT 8
334
Peng Fan1f516fa2015-01-15 14:22:32 +0800335static void init_bandgap(void)
336{
337 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Peng Fan97c16dc2016-10-08 17:03:00 +0800338 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
339 struct fuse_bank *bank = &ocotp->bank[1];
340 struct fuse_bank1_regs *fuse =
341 (struct fuse_bank1_regs *)bank->fuse_regs;
342 uint32_t val;
343
Peng Fan1f516fa2015-01-15 14:22:32 +0800344 /*
345 * Ensure the bandgap has stabilized.
346 */
347 while (!(readl(&anatop->ana_misc0) & 0x80))
348 ;
349 /*
350 * For best noise performance of the analog blocks using the
351 * outputs of the bandgap, the reftop_selfbiasoff bit should
352 * be set.
353 */
354 writel(BM_ANADIG_ANA_MISC0_REFTOP_SELBIASOFF, &anatop->ana_misc0_set);
Peng Fan5b664822016-08-11 14:02:50 +0800355 /*
Peng Fan97c16dc2016-10-08 17:03:00 +0800356 * On i.MX6ULL,we need to set VBGADJ bits according to the
357 * REFTOP_TRIM[3:0] in fuse table
358 * 000 - set REFTOP_VBGADJ[2:0] to 3b'110,
359 * 110 - set REFTOP_VBGADJ[2:0] to 3b'000,
360 * 001 - set REFTOP_VBGADJ[2:0] to 3b'001,
361 * 010 - set REFTOP_VBGADJ[2:0] to 3b'010,
362 * 011 - set REFTOP_VBGADJ[2:0] to 3b'011,
363 * 100 - set REFTOP_VBGADJ[2:0] to 3b'100,
364 * 101 - set REFTOP_VBGADJ[2:0] to 3b'101,
365 * 111 - set REFTOP_VBGADJ[2:0] to 3b'111,
Peng Fan5b664822016-08-11 14:02:50 +0800366 */
Peng Fan97c16dc2016-10-08 17:03:00 +0800367 if (is_mx6ull()) {
368 val = readl(&fuse->mem0);
369 val >>= OCOTP_MEM0_REFTOP_TRIM_SHIFT;
370 val &= 0x7;
Peng Fan1f516fa2015-01-15 14:22:32 +0800371
Peng Fan97c16dc2016-10-08 17:03:00 +0800372 writel(val << BM_ANADIG_ANA_MISC0_REFTOP_VBGADJ_SHIFT,
373 &anatop->ana_misc0_set);
374 }
375}
Peng Fan1f516fa2015-01-15 14:22:32 +0800376
Fabio Estevamd396f132019-11-04 09:44:34 -0300377#if defined(CONFIG_MX6Q) || defined(CONFIG_MX6QDL)
378static void noc_setup(void)
379{
380 enable_ipu_clock();
381
382 writel(0x80000201, 0xbb0608);
383 /* Bypass IPU1 QoS generator */
384 writel(0x00000002, 0x00bb048c);
385 /* Bypass IPU2 QoS generator */
386 writel(0x00000002, 0x00bb050c);
387 /* Bandwidth THR for of PRE0 */
388 writel(0x00000200, 0x00bb0690);
389 /* Bandwidth THR for of PRE1 */
390 writel(0x00000200, 0x00bb0710);
391 /* Bandwidth THR for of PRE2 */
392 writel(0x00000200, 0x00bb0790);
393 /* Bandwidth THR for of PRE3 */
394 writel(0x00000200, 0x00bb0810);
395 /* Saturation THR for of PRE0 */
396 writel(0x00000010, 0x00bb0694);
397 /* Saturation THR for of PRE1 */
398 writel(0x00000010, 0x00bb0714);
399 /* Saturation THR for of PRE2 */
400 writel(0x00000010, 0x00bb0794);
401 /* Saturation THR for of PRE */
402 writel(0x00000010, 0x00bb0814);
403
404 disable_ipu_clock();
405}
406#endif
407
Jason Liu23608e22011-11-25 00:18:02 +0000408int arch_cpu_init(void)
409{
Peng Fan72362972017-08-08 16:21:38 +0800410 struct mxc_ccm_reg *ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
411
Jason Liu23608e22011-11-25 00:18:02 +0000412 init_aips();
413
Anson Huang16197bb2014-01-23 14:00:19 +0800414 /* Need to clear MMDC_CHx_MASK to make warm reset work. */
415 clear_mmdc_ch_mask();
416
Anson Huang5c92edc2014-01-23 14:00:18 +0800417 /*
Peng Fan1f516fa2015-01-15 14:22:32 +0800418 * Disable self-bias circuit in the analog bandap.
419 * The self-bias circuit is used by the bandgap during startup.
420 * This bit should be set after the bandgap has initialized.
421 */
422 init_bandgap();
423
Peng Fancdf33c92016-08-11 14:02:43 +0800424 if (!is_mx6ul() && !is_mx6ull()) {
Peng Fane4dc3fc2016-03-09 16:44:36 +0800425 /*
426 * When low freq boot is enabled, ROM will not set AHB
427 * freq, so we need to ensure AHB freq is 132MHz in such
428 * scenario.
429 *
430 * To i.MX6UL, when power up, default ARM core and
431 * AHB rate is 396M and 132M.
432 */
433 if (mxc_get_clock(MXC_ARM_CLK) == 396000000)
434 set_ahb_rate(132000000);
435 }
Anson Huang5c92edc2014-01-23 14:00:18 +0800436
Peng Fanf15ece32016-09-28 09:40:27 +0800437 if (is_mx6ul()) {
438 if (is_soc_rev(CHIP_REV_1_0) == 0) {
439 /*
440 * According to the design team's requirement on
441 * i.MX6UL,the PMIC_STBY_REQ PAD should be configured
442 * as open drain 100K (0x0000b8a0).
443 * Only exists on TO1.0
444 */
445 writel(0x0000b8a0, IOMUXC_BASE_ADDR + 0x29c);
446 } else {
447 /*
448 * From TO1.1, SNVS adds internal pull up control
449 * for POR_B, the register filed is GPBIT[1:0],
450 * after system boot up, it can be set to 2b'01
451 * to disable internal pull up.It can save about
452 * 30uA power in SNVS mode.
453 */
454 writel((readl(MX6UL_SNVS_LP_BASE_ADDR + 0x10) &
455 (~0x1400)) | 0x400,
456 MX6UL_SNVS_LP_BASE_ADDR + 0x10);
457 }
Peng Fan7082d872016-03-09 16:44:37 +0800458 }
459
Peng Fanb4714612016-08-11 14:02:46 +0800460 if (is_mx6ull()) {
461 /*
462 * GPBIT[1:0] is suggested to set to 2'b11:
463 * 2'b00 : always PUP100K
464 * 2'b01 : PUP100K when PMIC_ON_REQ or SOC_NOT_FAIL
465 * 2'b10 : always disable PUP100K
466 * 2'b11 : PDN100K when SOC_FAIL, PUP100K when SOC_NOT_FAIL
467 * register offset is different from i.MX6UL, since
468 * i.MX6UL is fixed by ECO.
469 */
470 writel(readl(MX6UL_SNVS_LP_BASE_ADDR) |
471 0x3, MX6UL_SNVS_LP_BASE_ADDR);
472 }
473
Peng Fan7082d872016-03-09 16:44:37 +0800474 /* Set perclk to source from OSC 24MHz */
Jorge Ramirez-Ortiz74a03942020-10-23 21:18:41 +0200475 if (has_err007805())
Peng Fan9402caf2017-08-08 16:21:39 +0800476 setbits_le32(&ccm->cscmr1, MXC_CCM_CSCMR1_PER_CLK_SEL_MASK);
Ye.Li0f8ec142014-10-30 18:20:58 +0800477
Fabio Estevame2162d72017-11-23 10:55:33 -0200478 imx_wdog_disable_powerdown(); /* Disable PDE bit of WMCR register */
Stefan Roeseae695b12013-04-15 21:14:12 +0000479
Peng Fan72362972017-08-08 16:21:38 +0800480 if (is_mx6sx())
481 setbits_le32(&ccm->cscdr1, MXC_CCM_CSCDR1_UART_CLK_SEL);
482
Dirk Behme9d16c522015-03-09 14:48:48 +0100483 init_src();
484
Fabio Estevamd396f132019-11-04 09:44:34 -0300485#if defined(CONFIG_MX6Q) || defined(CONFIG_MX6QDL)
486 if (is_mx6dqp())
487 noc_setup();
488#endif
Jason Liu23608e22011-11-25 00:18:02 +0000489 return 0;
490}
Jason Liu23608e22011-11-25 00:18:02 +0000491
Peng Fan216d2862016-01-28 16:51:26 +0800492#ifdef CONFIG_ENV_IS_IN_MMC
493__weak int board_mmc_get_env_dev(int devno)
494{
495 return CONFIG_SYS_MMC_ENV_DEV;
496}
497
Soeren Moch1a43dc12016-02-04 14:41:15 +0100498static int mmc_get_boot_dev(void)
Peng Fan216d2862016-01-28 16:51:26 +0800499{
500 struct src *src_regs = (struct src *)SRC_BASE_ADDR;
501 u32 soc_sbmr = readl(&src_regs->sbmr1);
502 u32 bootsel;
503 int devno;
504
505 /*
506 * Refer to
507 * "i.MX 6Dual/6Quad Applications Processor Reference Manual"
508 * Chapter "8.5.3.1 Expansion Device eFUSE Configuration"
509 * i.MX6SL/SX/UL has same layout.
510 */
511 bootsel = (soc_sbmr & 0x000000FF) >> 6;
512
Soeren Moch1a43dc12016-02-04 14:41:15 +0100513 /* No boot from sd/mmc */
Peng Fan216d2862016-01-28 16:51:26 +0800514 if (bootsel != 1)
Soeren Moch1a43dc12016-02-04 14:41:15 +0100515 return -1;
Peng Fan216d2862016-01-28 16:51:26 +0800516
517 /* BOOT_CFG2[3] and BOOT_CFG2[4] */
518 devno = (soc_sbmr & 0x00001800) >> 11;
519
Soeren Moch1a43dc12016-02-04 14:41:15 +0100520 return devno;
521}
522
523int mmc_get_env_dev(void)
524{
525 int devno = mmc_get_boot_dev();
526
527 /* If not boot from sd/mmc, use default value */
528 if (devno < 0)
529 return CONFIG_SYS_MMC_ENV_DEV;
530
Peng Fan216d2862016-01-28 16:51:26 +0800531 return board_mmc_get_env_dev(devno);
532}
Soeren Moch1a43dc12016-02-04 14:41:15 +0100533
534#ifdef CONFIG_SYS_MMC_ENV_PART
535__weak int board_mmc_get_env_part(int devno)
536{
537 return CONFIG_SYS_MMC_ENV_PART;
538}
539
540uint mmc_get_env_part(struct mmc *mmc)
541{
542 int devno = mmc_get_boot_dev();
543
544 /* If not boot from sd/mmc, use default value */
545 if (devno < 0)
546 return CONFIG_SYS_MMC_ENV_PART;
547
548 return board_mmc_get_env_part(devno);
549}
550#endif
Peng Fan216d2862016-01-28 16:51:26 +0800551#endif
552
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200553int board_postclk_init(void)
554{
Peng Fan79a57b52017-08-08 16:21:35 +0800555 /* NO LDO SOC on i.MX6SLL */
556 if (is_mx6sll())
557 return 0;
558
Fabio Estevam39f0ac92013-12-26 14:51:34 -0200559 set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */
560
561 return 0;
562}
563
Anatolij Gustschinffc36f52017-08-28 17:51:33 +0200564#ifndef CONFIG_SPL_BUILD
Troy Kisky124a06d2012-08-15 10:31:20 +0000565/*
566 * cfg_val will be used for
567 * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
Nikita Kiryanovf2863ff2014-10-29 19:28:33 +0200568 * After reset, if GPR10[28] is 1, ROM will use GPR9[25:0]
569 * instead of SBMR1 to determine the boot device.
Troy Kisky124a06d2012-08-15 10:31:20 +0000570 */
571const struct boot_mode soc_boot_modes[] = {
572 {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
573 /* reserved value should start rom usb */
Stefan Agner3fd95792017-06-09 13:13:12 -0700574#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
575 {"usb", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
576#else
Stefan Agner81c4ecc2016-09-15 15:04:39 -0700577 {"usb", MAKE_CFGVAL(0x10, 0x00, 0x00, 0x00)},
Stefan Agner3fd95792017-06-09 13:13:12 -0700578#endif
Troy Kisky124a06d2012-08-15 10:31:20 +0000579 {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
Nikolay Dimitrov2d59e3e2014-08-10 20:03:07 +0300580 {"ecspi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
581 {"ecspi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
582 {"ecspi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
583 {"ecspi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
Troy Kisky124a06d2012-08-15 10:31:20 +0000584 /* 4 bit bus width */
585 {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
586 {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
587 {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
588 {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
589 {NULL, 0},
590};
Anatolij Gustschinffc36f52017-08-28 17:51:33 +0200591#endif
Stephen Warren8f393772013-02-26 12:28:29 +0000592
Peng Faneb111bb2015-10-29 15:54:50 +0800593void reset_misc(void)
594{
Michael Trimarchi92362692018-06-20 23:27:54 +0200595#ifndef CONFIG_SPL_BUILD
Igor Opaniuk9de5eb22019-06-19 11:47:08 +0300596#if defined(CONFIG_VIDEO_MXS) && !defined(CONFIG_DM_VIDEO)
Peng Faneb111bb2015-10-29 15:54:50 +0800597 lcdif_power_down();
598#endif
Michael Trimarchi92362692018-06-20 23:27:54 +0200599#endif
Peng Faneb111bb2015-10-29 15:54:50 +0800600}
601
Stephen Warren8f393772013-02-26 12:28:29 +0000602void s_init(void)
603{
Eric Nelson8467fae2013-08-29 12:41:46 -0700604 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Ye.Li9293d7f2014-09-09 10:17:00 +0800605 struct mxc_ccm_reg *ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
Eric Nelson8467fae2013-08-29 12:41:46 -0700606 u32 mask480;
607 u32 mask528;
Ye.Li9293d7f2014-09-09 10:17:00 +0800608 u32 reg, periph1, periph2;
Fabio Estevama3df99b2014-07-09 16:13:29 -0300609
Peng Fan79a57b52017-08-08 16:21:35 +0800610 if (is_mx6sx() || is_mx6ul() || is_mx6ull() || is_mx6sll())
Fabio Estevama3df99b2014-07-09 16:13:29 -0300611 return;
612
Eric Nelson8467fae2013-08-29 12:41:46 -0700613 /* Due to hardware limitation, on MX6Q we need to gate/ungate all PFDs
614 * to make sure PFD is working right, otherwise, PFDs may
615 * not output clock after reset, MX6DL and MX6SL have added 396M pfd
616 * workaround in ROM code, as bus clock need it
617 */
618
619 mask480 = ANATOP_PFD_CLKGATE_MASK(0) |
620 ANATOP_PFD_CLKGATE_MASK(1) |
621 ANATOP_PFD_CLKGATE_MASK(2) |
622 ANATOP_PFD_CLKGATE_MASK(3);
Ye.Li9293d7f2014-09-09 10:17:00 +0800623 mask528 = ANATOP_PFD_CLKGATE_MASK(1) |
Eric Nelson8467fae2013-08-29 12:41:46 -0700624 ANATOP_PFD_CLKGATE_MASK(3);
625
Ye.Li9293d7f2014-09-09 10:17:00 +0800626 reg = readl(&ccm->cbcmr);
627 periph2 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_MASK)
628 >> MXC_CCM_CBCMR_PRE_PERIPH2_CLK_SEL_OFFSET);
629 periph1 = ((reg & MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_MASK)
630 >> MXC_CCM_CBCMR_PRE_PERIPH_CLK_SEL_OFFSET);
631
632 /* Checking if PLL2 PFD0 or PLL2 PFD2 is using for periph clock */
633 if ((periph2 != 0x2) && (periph1 != 0x2))
634 mask528 |= ANATOP_PFD_CLKGATE_MASK(0);
635
636 if ((periph2 != 0x1) && (periph1 != 0x1) &&
637 (periph2 != 0x3) && (periph1 != 0x3))
Eric Nelson8467fae2013-08-29 12:41:46 -0700638 mask528 |= ANATOP_PFD_CLKGATE_MASK(2);
Ye.Li9293d7f2014-09-09 10:17:00 +0800639
Eric Nelson8467fae2013-08-29 12:41:46 -0700640 writel(mask480, &anatop->pfd_480_set);
641 writel(mask528, &anatop->pfd_528_set);
642 writel(mask480, &anatop->pfd_480_clr);
643 writel(mask528, &anatop->pfd_528_clr);
Stephen Warren8f393772013-02-26 12:28:29 +0000644}
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500645
646#ifdef CONFIG_IMX_HDMI
647void imx_enable_hdmi_phy(void)
648{
649 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
650 u8 reg;
651 reg = readb(&hdmi->phy_conf0);
652 reg |= HDMI_PHY_CONF0_PDZ_MASK;
653 writeb(reg, &hdmi->phy_conf0);
654 udelay(3000);
655 reg |= HDMI_PHY_CONF0_ENTMDS_MASK;
656 writeb(reg, &hdmi->phy_conf0);
657 udelay(3000);
658 reg |= HDMI_PHY_CONF0_GEN2_TXPWRON_MASK;
659 writeb(reg, &hdmi->phy_conf0);
660 writeb(HDMI_MC_PHYRSTZ_ASSERT, &hdmi->mc_phyrstz);
661}
662
663void imx_setup_hdmi(void)
664{
665 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
666 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
Peng Fan00b1d2d2016-03-09 16:07:23 +0800667 int reg, count;
668 u8 val;
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500669
670 /* Turn on HDMI PHY clock */
671 reg = readl(&mxc_ccm->CCGR2);
672 reg |= MXC_CCM_CCGR2_HDMI_TX_IAHBCLK_MASK|
673 MXC_CCM_CCGR2_HDMI_TX_ISFRCLK_MASK;
674 writel(reg, &mxc_ccm->CCGR2);
675 writeb(HDMI_MC_PHYRSTZ_DEASSERT, &hdmi->mc_phyrstz);
676 reg = readl(&mxc_ccm->chsccdr);
677 reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_MASK|
678 MXC_CCM_CHSCCDR_IPU1_DI0_PODF_MASK|
679 MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_MASK);
680 reg |= (CHSCCDR_PODF_DIVIDE_BY_3
681 << MXC_CCM_CHSCCDR_IPU1_DI0_PODF_OFFSET)
682 |(CHSCCDR_IPU_PRE_CLK_540M_PFD
683 << MXC_CCM_CHSCCDR_IPU1_DI0_PRE_CLK_SEL_OFFSET);
684 writel(reg, &mxc_ccm->chsccdr);
Peng Fan00b1d2d2016-03-09 16:07:23 +0800685
686 /* Clear the overflow condition */
687 if (readb(&hdmi->ih_fc_stat2) & HDMI_IH_FC_STAT2_OVERFLOW_MASK) {
688 /* TMDS software reset */
689 writeb((u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ, &hdmi->mc_swrstz);
690 val = readb(&hdmi->fc_invidconf);
691 /* Need minimum 3 times to write to clear the register */
692 for (count = 0 ; count < 5 ; count++)
693 writeb(val, &hdmi->fc_invidconf);
694 }
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500695}
696#endif
Peng Fan0623d372016-01-28 16:55:05 +0800697
Heinrich Schuchardt90865612020-06-26 19:57:55 +0200698#ifdef CONFIG_ARCH_MISC_INIT
699int arch_misc_init(void)
700{
701#ifdef CONFIG_FSL_CAAM
702 sec_init();
703#endif
704 return 0;
705}
706#endif
Michael Trimarchi4a72abc2018-06-23 16:10:06 +0200707
708/*
709 * gpr_init() function is common for boards using MX6S, MX6DL, MX6D,
710 * MX6Q and MX6QP processors
711 */
Breno Lima3aa4b702017-08-24 10:00:16 -0300712void gpr_init(void)
713{
714 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
715
Christoph Niedermaier19bbd092018-10-19 17:40:54 +0200716 /*
717 * If this function is used in a common MX6 spl implementation
718 * we have to ensure that it is only called for suitable cpu types,
719 * otherwise it breaks hardware parts like enet1, can1, can2, etc.
720 */
721 if (!is_mx6dqp() && !is_mx6dq() && !is_mx6sdl())
722 return;
723
Breno Lima3aa4b702017-08-24 10:00:16 -0300724 /* enable AXI cache for VDOA/VPU/IPU */
725 writel(0xF00000CF, &iomux->gpr[4]);
726 if (is_mx6dqp()) {
727 /* set IPU AXI-id1 Qos=0x1 AXI-id0/2/3 Qos=0x7 */
728 writel(0x77177717, &iomux->gpr[6]);
729 writel(0x77177717, &iomux->gpr[7]);
730 } else {
731 /* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
732 writel(0x007F007F, &iomux->gpr[6]);
733 writel(0x007F007F, &iomux->gpr[7]);
734 }
735}