blob: cda3a593ae77b36ba90d2118f6bc92e2c977082e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Peng Fanfcdbde72018-01-10 13:20:37 +08002/*
Ye Li70487ff2020-05-03 22:19:52 +08003 * Copyright 2017-2019 NXP
Peng Fanfcdbde72018-01-10 13:20:37 +08004 *
5 * Peng Fan <peng.fan@nxp.com>
Peng Fanfcdbde72018-01-10 13:20:37 +08006 */
7
8#include <common.h>
Simon Glass9edefc22019-11-14 12:57:37 -07009#include <cpu_func.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Peng Fanfcdbde72018-01-10 13:20:37 +080012#include <asm/arch/imx-regs.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Peng Fanfcdbde72018-01-10 13:20:37 +080014#include <asm/io.h>
15#include <asm/arch/clock.h>
16#include <asm/arch/sys_proto.h>
17#include <asm/mach-imx/hab.h>
18#include <asm/mach-imx/boot_mode.h>
19#include <asm/mach-imx/syscounter.h>
Peng Fan2f3c9202020-07-09 13:39:26 +080020#include <asm/ptrace.h>
Peng Fanfcdbde72018-01-10 13:20:37 +080021#include <asm/armv8/mmu.h>
Peng Fane663c702019-08-27 06:25:58 +000022#include <dm/uclass.h>
Peng Fan2f3c9202020-07-09 13:39:26 +080023#include <efi_loader.h>
Ye Li2707faf2019-07-15 01:16:46 -070024#include <env.h>
25#include <env_internal.h>
Peng Fanfcdbde72018-01-10 13:20:37 +080026#include <errno.h>
27#include <fdt_support.h>
28#include <fsl_wdog.h>
29#include <imx_sip.h>
Peng Fana2f143e2020-05-11 15:14:04 +080030#include <linux/arm-smccc.h>
Simon Glasscd93d622020-05-10 11:40:13 -060031#include <linux/bitops.h>
Peng Fanfcdbde72018-01-10 13:20:37 +080032
33DECLARE_GLOBAL_DATA_PTR;
34
Stefano Babicd714a752019-09-20 08:47:53 +020035#if defined(CONFIG_IMX_HAB)
Peng Fanfcdbde72018-01-10 13:20:37 +080036struct imx_sec_config_fuse_t const imx_sec_config_fuse = {
37 .bank = 1,
38 .word = 3,
39};
40#endif
41
42int timer_init(void)
43{
44#ifdef CONFIG_SPL_BUILD
45 struct sctr_regs *sctr = (struct sctr_regs *)SYSCNT_CTRL_BASE_ADDR;
46 unsigned long freq = readl(&sctr->cntfid0);
47
48 /* Update with accurate clock frequency */
49 asm volatile("msr cntfrq_el0, %0" : : "r" (freq) : "memory");
50
51 clrsetbits_le32(&sctr->cntcr, SC_CNTCR_FREQ0 | SC_CNTCR_FREQ1,
52 SC_CNTCR_FREQ0 | SC_CNTCR_ENABLE | SC_CNTCR_HDBG);
53#endif
54
55 gd->arch.tbl = 0;
56 gd->arch.tbu = 0;
57
58 return 0;
59}
60
61void enable_tzc380(void)
62{
63 struct iomuxc_gpr_base_regs *gpr =
64 (struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR;
65
66 /* Enable TZASC and lock setting */
67 setbits_le32(&gpr->gpr[10], GPR_TZASC_EN);
68 setbits_le32(&gpr->gpr[10], GPR_TZASC_EN_LOCK);
Peng Fana07c7182019-12-27 10:19:42 +080069 if (is_imx8mm() || is_imx8mn() || is_imx8mp())
Peng Fandbb2b7e2019-08-27 06:25:30 +000070 setbits_le32(&gpr->gpr[10], BIT(1));
Ye Lib3cf0a82019-08-27 06:25:34 +000071 /*
72 * set Region 0 attribute to allow secure and non-secure
73 * read/write permission. Found some masters like usb dwc3
74 * controllers can't work with secure memory.
75 */
76 writel(0xf0000000, TZASC_BASE_ADDR + 0x108);
Peng Fanfcdbde72018-01-10 13:20:37 +080077}
78
79void set_wdog_reset(struct wdog_regs *wdog)
80{
81 /*
82 * Output WDOG_B signal to reset external pmic or POR_B decided by
83 * the board design. Without external reset, the peripherals/DDR/
84 * PMIC are not reset, that may cause system working abnormal.
85 * WDZST bit is write-once only bit. Align this bit in kernel,
86 * otherwise kernel code will have no chance to set this bit.
87 */
88 setbits_le16(&wdog->wcr, WDOG_WDT_MASK | WDOG_WDZST_MASK);
89}
90
91static struct mm_region imx8m_mem_map[] = {
92 {
93 /* ROM */
94 .virt = 0x0UL,
95 .phys = 0x0UL,
96 .size = 0x100000UL,
97 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
98 PTE_BLOCK_OUTER_SHARE
99 }, {
Gary Bissoncb158852018-11-14 17:55:28 +0100100 /* CAAM */
101 .virt = 0x100000UL,
102 .phys = 0x100000UL,
103 .size = 0x8000UL,
104 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
105 PTE_BLOCK_NON_SHARE |
106 PTE_BLOCK_PXN | PTE_BLOCK_UXN
107 }, {
108 /* TCM */
109 .virt = 0x7C0000UL,
110 .phys = 0x7C0000UL,
111 .size = 0x80000UL,
112 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
113 PTE_BLOCK_NON_SHARE |
114 PTE_BLOCK_PXN | PTE_BLOCK_UXN
115 }, {
Peng Fanfcdbde72018-01-10 13:20:37 +0800116 /* OCRAM */
117 .virt = 0x900000UL,
118 .phys = 0x900000UL,
119 .size = 0x200000UL,
120 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
121 PTE_BLOCK_OUTER_SHARE
122 }, {
123 /* AIPS */
124 .virt = 0xB00000UL,
125 .phys = 0xB00000UL,
126 .size = 0x3f500000UL,
127 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
128 PTE_BLOCK_NON_SHARE |
129 PTE_BLOCK_PXN | PTE_BLOCK_UXN
130 }, {
131 /* DRAM1 */
132 .virt = 0x40000000UL,
133 .phys = 0x40000000UL,
Peng Fan59efa6b2019-08-27 06:25:27 +0000134 .size = PHYS_SDRAM_SIZE,
Peng Fanfcdbde72018-01-10 13:20:37 +0800135 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
136 PTE_BLOCK_OUTER_SHARE
Peng Fan59efa6b2019-08-27 06:25:27 +0000137#ifdef PHYS_SDRAM_2_SIZE
Peng Fanfcdbde72018-01-10 13:20:37 +0800138 }, {
139 /* DRAM2 */
140 .virt = 0x100000000UL,
141 .phys = 0x100000000UL,
Peng Fan59efa6b2019-08-27 06:25:27 +0000142 .size = PHYS_SDRAM_2_SIZE,
Peng Fanfcdbde72018-01-10 13:20:37 +0800143 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
144 PTE_BLOCK_OUTER_SHARE
Peng Fan59efa6b2019-08-27 06:25:27 +0000145#endif
Peng Fanfcdbde72018-01-10 13:20:37 +0800146 }, {
Peng Fan3c417282020-07-09 15:26:06 +0800147 /* empty entrie to split table entry 5 if needed when TEEs are used */
148 0,
149 }, {
Peng Fanfcdbde72018-01-10 13:20:37 +0800150 /* List terminator */
151 0,
152 }
153};
154
155struct mm_region *mem_map = imx8m_mem_map;
156
Marek Vasut076dc922021-02-27 14:59:00 +0100157static unsigned int imx8m_find_dram_entry_in_mem_map(void)
158{
159 int i;
160
161 for (i = 0; i < ARRAY_SIZE(imx8m_mem_map); i++)
162 if (imx8m_mem_map[i].phys == CONFIG_SYS_SDRAM_BASE)
163 return i;
164
165 hang(); /* Entry not found, this must never happen. */
166}
167
Peng Fan59efa6b2019-08-27 06:25:27 +0000168void enable_caches(void)
169{
Peng Fan3c417282020-07-09 15:26:06 +0800170 /* If OPTEE runs, remove OPTEE memory from MMU table to avoid speculative prefetch */
171 if (rom_pointer[1]) {
172 /*
173 * TEE are loaded, So the ddr bank structures
174 * have been modified update mmu table accordingly
175 */
176 int i = 0;
177 /*
178 * please make sure that entry initial value matches
179 * imx8m_mem_map for DRAM1
180 */
Marek Vasut076dc922021-02-27 14:59:00 +0100181 int entry = imx8m_find_dram_entry_in_mem_map();
Peng Fan3c417282020-07-09 15:26:06 +0800182 u64 attrs = imx8m_mem_map[entry].attrs;
183
Marek Vasut076dc922021-02-27 14:59:00 +0100184 while (i < CONFIG_NR_DRAM_BANKS &&
185 entry < ARRAY_SIZE(imx8m_mem_map)) {
Peng Fan3c417282020-07-09 15:26:06 +0800186 if (gd->bd->bi_dram[i].start == 0)
187 break;
188 imx8m_mem_map[entry].phys = gd->bd->bi_dram[i].start;
189 imx8m_mem_map[entry].virt = gd->bd->bi_dram[i].start;
190 imx8m_mem_map[entry].size = gd->bd->bi_dram[i].size;
191 imx8m_mem_map[entry].attrs = attrs;
192 debug("Added memory mapping (%d): %llx %llx\n", entry,
193 imx8m_mem_map[entry].phys, imx8m_mem_map[entry].size);
194 i++; entry++;
195 }
196 }
Peng Fan59efa6b2019-08-27 06:25:27 +0000197
198 icache_enable();
199 dcache_enable();
200}
201
Peng Fan3c417282020-07-09 15:26:06 +0800202__weak int board_phys_sdram_size(phys_size_t *size)
203{
204 if (!size)
205 return -EINVAL;
206
207 *size = PHYS_SDRAM_SIZE;
208 return 0;
209}
210
211int dram_init(void)
212{
Marek Vasut076dc922021-02-27 14:59:00 +0100213 unsigned int entry = imx8m_find_dram_entry_in_mem_map();
Peng Fan3c417282020-07-09 15:26:06 +0800214 phys_size_t sdram_size;
215 int ret;
216
217 ret = board_phys_sdram_size(&sdram_size);
218 if (ret)
219 return ret;
220
221 /* rom_pointer[1] contains the size of TEE occupies */
222 if (rom_pointer[1])
223 gd->ram_size = sdram_size - rom_pointer[1];
224 else
225 gd->ram_size = sdram_size;
226
Tim Harveybc479b22020-09-25 08:08:35 -0700227 /* also update the SDRAM size in the mem_map used externally */
Marek Vasut076dc922021-02-27 14:59:00 +0100228 imx8m_mem_map[entry].size = sdram_size;
Tim Harveybc479b22020-09-25 08:08:35 -0700229
Peng Fan3c417282020-07-09 15:26:06 +0800230#ifdef PHYS_SDRAM_2_SIZE
231 gd->ram_size += PHYS_SDRAM_2_SIZE;
232#endif
233
234 return 0;
235}
236
237int dram_init_banksize(void)
238{
239 int bank = 0;
240 int ret;
241 phys_size_t sdram_size;
242
243 ret = board_phys_sdram_size(&sdram_size);
244 if (ret)
245 return ret;
246
247 gd->bd->bi_dram[bank].start = PHYS_SDRAM;
248 if (rom_pointer[1]) {
249 phys_addr_t optee_start = (phys_addr_t)rom_pointer[0];
250 phys_size_t optee_size = (size_t)rom_pointer[1];
251
252 gd->bd->bi_dram[bank].size = optee_start - gd->bd->bi_dram[bank].start;
253 if ((optee_start + optee_size) < (PHYS_SDRAM + sdram_size)) {
254 if (++bank >= CONFIG_NR_DRAM_BANKS) {
255 puts("CONFIG_NR_DRAM_BANKS is not enough\n");
256 return -1;
257 }
258
259 gd->bd->bi_dram[bank].start = optee_start + optee_size;
260 gd->bd->bi_dram[bank].size = PHYS_SDRAM +
261 sdram_size - gd->bd->bi_dram[bank].start;
262 }
263 } else {
264 gd->bd->bi_dram[bank].size = sdram_size;
265 }
266
267#ifdef PHYS_SDRAM_2_SIZE
268 if (++bank >= CONFIG_NR_DRAM_BANKS) {
269 puts("CONFIG_NR_DRAM_BANKS is not enough for SDRAM_2\n");
270 return -1;
271 }
272 gd->bd->bi_dram[bank].start = PHYS_SDRAM_2;
273 gd->bd->bi_dram[bank].size = PHYS_SDRAM_2_SIZE;
274#endif
275
276 return 0;
277}
278
279phys_size_t get_effective_memsize(void)
280{
281 /* return the first bank as effective memory */
282 if (rom_pointer[1])
283 return ((phys_addr_t)rom_pointer[0] - PHYS_SDRAM);
284
285#ifdef PHYS_SDRAM_2_SIZE
286 return gd->ram_size - PHYS_SDRAM_2_SIZE;
287#else
288 return gd->ram_size;
289#endif
290}
291
Peng Fan78db9a52019-08-27 06:25:17 +0000292static u32 get_cpu_variant_type(u32 type)
293{
294 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
295 struct fuse_bank *bank = &ocotp->bank[1];
296 struct fuse_bank1_regs *fuse =
297 (struct fuse_bank1_regs *)bank->fuse_regs;
298
299 u32 value = readl(&fuse->tester4);
300
Peng Fancb1a1de2020-02-05 17:34:54 +0800301 if (type == MXC_CPU_IMX8MQ) {
302 if ((value & 0x3) == 0x2)
303 return MXC_CPU_IMX8MD;
304 else if (value & 0x200000)
305 return MXC_CPU_IMX8MQL;
306
307 } else if (type == MXC_CPU_IMX8MM) {
Peng Fan78db9a52019-08-27 06:25:17 +0000308 switch (value & 0x3) {
309 case 2:
310 if (value & 0x1c0000)
311 return MXC_CPU_IMX8MMDL;
312 else
313 return MXC_CPU_IMX8MMD;
314 case 3:
315 if (value & 0x1c0000)
316 return MXC_CPU_IMX8MMSL;
317 else
318 return MXC_CPU_IMX8MMS;
319 default:
320 if (value & 0x1c0000)
321 return MXC_CPU_IMX8MML;
322 break;
323 }
Peng Fanc9154032020-02-05 17:39:27 +0800324 } else if (type == MXC_CPU_IMX8MN) {
325 switch (value & 0x3) {
326 case 2:
Ye Lic4f78cb2021-03-19 15:57:11 +0800327 if (value & 0x1000000) {
328 if (value & 0x10000000) /* MIPI DSI */
329 return MXC_CPU_IMX8MNUD;
330 else
331 return MXC_CPU_IMX8MNDL;
332 } else {
Peng Fanc9154032020-02-05 17:39:27 +0800333 return MXC_CPU_IMX8MND;
Ye Lic4f78cb2021-03-19 15:57:11 +0800334 }
Peng Fanc9154032020-02-05 17:39:27 +0800335 case 3:
Ye Lic4f78cb2021-03-19 15:57:11 +0800336 if (value & 0x1000000) {
337 if (value & 0x10000000) /* MIPI DSI */
338 return MXC_CPU_IMX8MNUS;
339 else
340 return MXC_CPU_IMX8MNSL;
341 } else {
Peng Fanc9154032020-02-05 17:39:27 +0800342 return MXC_CPU_IMX8MNS;
Ye Lic4f78cb2021-03-19 15:57:11 +0800343 }
Peng Fanc9154032020-02-05 17:39:27 +0800344 default:
Ye Lic4f78cb2021-03-19 15:57:11 +0800345 if (value & 0x1000000) {
346 if (value & 0x10000000) /* MIPI DSI */
347 return MXC_CPU_IMX8MNUQ;
348 else
349 return MXC_CPU_IMX8MNL;
350 }
Peng Fanc9154032020-02-05 17:39:27 +0800351 break;
352 }
Ye Lid1eee7e2020-04-20 20:12:54 -0700353 } else if (type == MXC_CPU_IMX8MP) {
354 u32 value0 = readl(&fuse->tester3);
355 u32 flag = 0;
356
357 if ((value0 & 0xc0000) == 0x80000)
358 return MXC_CPU_IMX8MPD;
359
360 /* vpu disabled */
361 if ((value0 & 0x43000000) == 0x43000000)
362 flag = 1;
363
364 /* npu disabled*/
365 if ((value & 0x8) == 0x8)
366 flag |= (1 << 1);
367
368 /* isp disabled */
369 if ((value & 0x3) == 0x3)
370 flag |= (1 << 2);
371
372 switch (flag) {
373 case 7:
374 return MXC_CPU_IMX8MPL;
Ye Lid1eee7e2020-04-20 20:12:54 -0700375 case 2:
376 return MXC_CPU_IMX8MP6;
Ye Lid1eee7e2020-04-20 20:12:54 -0700377 default:
378 break;
379 }
380
Peng Fan78db9a52019-08-27 06:25:17 +0000381 }
382
383 return type;
384}
385
Peng Fanfcdbde72018-01-10 13:20:37 +0800386u32 get_cpu_rev(void)
387{
388 struct anamix_pll *ana_pll = (struct anamix_pll *)ANATOP_BASE_ADDR;
389 u32 reg = readl(&ana_pll->digprog);
390 u32 type = (reg >> 16) & 0xff;
Peng Fan78db9a52019-08-27 06:25:17 +0000391 u32 major_low = (reg >> 8) & 0xff;
Peng Fanfcdbde72018-01-10 13:20:37 +0800392 u32 rom_version;
393
394 reg &= 0xff;
395
Peng Fan625b03d2019-12-27 10:14:02 +0800396 /* iMX8MP */
397 if (major_low == 0x43) {
Ye Lid1eee7e2020-04-20 20:12:54 -0700398 type = get_cpu_variant_type(MXC_CPU_IMX8MP);
Peng Fan625b03d2019-12-27 10:14:02 +0800399 } else if (major_low == 0x42) {
400 /* iMX8MN */
Peng Fanc9154032020-02-05 17:39:27 +0800401 type = get_cpu_variant_type(MXC_CPU_IMX8MN);
Peng Fan24341312019-06-27 17:23:49 +0800402 } else if (major_low == 0x41) {
Peng Fan78db9a52019-08-27 06:25:17 +0000403 type = get_cpu_variant_type(MXC_CPU_IMX8MM);
404 } else {
405 if (reg == CHIP_REV_1_0) {
406 /*
Peng Fan9e094452019-10-16 10:24:17 +0000407 * For B0 chip, the DIGPROG is not updated,
408 * it is still TO1.0. we have to check ROM
409 * version or OCOTP_READ_FUSE_DATA.
410 * 0xff0055aa is magic number for B1.
Peng Fan78db9a52019-08-27 06:25:17 +0000411 */
Peng Fan9e094452019-10-16 10:24:17 +0000412 if (readl((void __iomem *)(OCOTP_BASE_ADDR + 0x40)) == 0xff0055aa) {
413 reg = CHIP_REV_2_1;
414 } else {
415 rom_version =
416 readl((void __iomem *)ROM_VERSION_A0);
417 if (rom_version != CHIP_REV_1_0) {
418 rom_version = readl((void __iomem *)ROM_VERSION_B0);
Patrick Wildt6a4b07e2019-11-19 09:42:06 +0100419 rom_version &= 0xff;
Peng Fan9e094452019-10-16 10:24:17 +0000420 if (rom_version == CHIP_REV_2_0)
421 reg = CHIP_REV_2_0;
422 }
Peng Fan78db9a52019-08-27 06:25:17 +0000423 }
Peng Fanfcdbde72018-01-10 13:20:37 +0800424 }
Peng Fancb1a1de2020-02-05 17:34:54 +0800425
426 type = get_cpu_variant_type(type);
Peng Fanfcdbde72018-01-10 13:20:37 +0800427 }
428
429 return (type << 12) | reg;
430}
431
432static void imx_set_wdog_powerdown(bool enable)
433{
434 struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
435 struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
436 struct wdog_regs *wdog3 = (struct wdog_regs *)WDOG3_BASE_ADDR;
437
438 /* Write to the PDE (Power Down Enable) bit */
439 writew(enable, &wdog1->wmcr);
440 writew(enable, &wdog2->wmcr);
441 writew(enable, &wdog3->wmcr);
442}
443
Peng Fane663c702019-08-27 06:25:58 +0000444int arch_cpu_init_dm(void)
445{
446 struct udevice *dev;
447 int ret;
448
Peng Fancd7c8062019-10-16 03:01:51 +0000449 if (CONFIG_IS_ENABLED(CLK)) {
450 ret = uclass_get_device_by_name(UCLASS_CLK,
451 "clock-controller@30380000",
452 &dev);
453 if (ret < 0) {
454 printf("Failed to find clock node. Check device tree\n");
455 return ret;
456 }
Peng Fane663c702019-08-27 06:25:58 +0000457 }
458
459 return 0;
460}
461
Peng Fanfcdbde72018-01-10 13:20:37 +0800462int arch_cpu_init(void)
463{
Peng Fan702339b2019-04-17 09:41:16 +0000464 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
Peng Fanfcdbde72018-01-10 13:20:37 +0800465 /*
Peng Fan0528ba02019-08-27 06:25:37 +0000466 * ROM might disable clock for SCTR,
467 * enable the clock before timer_init.
468 */
469 if (IS_ENABLED(CONFIG_SPL_BUILD))
470 clock_enable(CCGR_SCTR, 1);
471 /*
Peng Fanfcdbde72018-01-10 13:20:37 +0800472 * Init timer at very early state, because sscg pll setting
473 * will use it
474 */
475 timer_init();
476
477 if (IS_ENABLED(CONFIG_SPL_BUILD)) {
478 clock_init();
479 imx_set_wdog_powerdown(false);
Peng Fan7a42bf02020-07-09 13:52:41 +0800480
481 if (is_imx8md() || is_imx8mmd() || is_imx8mmdl() || is_imx8mms() ||
482 is_imx8mmsl() || is_imx8mnd() || is_imx8mndl() || is_imx8mns() ||
Ye Lic4f78cb2021-03-19 15:57:11 +0800483 is_imx8mnsl() || is_imx8mpd() || is_imx8mnud() || is_imx8mnus()) {
Peng Fan7a42bf02020-07-09 13:52:41 +0800484 /* Power down cpu core 1, 2 and 3 for iMX8M Dual core or Single core */
485 struct pgc_reg *pgc_core1 = (struct pgc_reg *)(GPC_BASE_ADDR + 0x840);
486 struct pgc_reg *pgc_core2 = (struct pgc_reg *)(GPC_BASE_ADDR + 0x880);
487 struct pgc_reg *pgc_core3 = (struct pgc_reg *)(GPC_BASE_ADDR + 0x8C0);
488 struct gpc_reg *gpc = (struct gpc_reg *)GPC_BASE_ADDR;
489
490 writel(0x1, &pgc_core2->pgcr);
491 writel(0x1, &pgc_core3->pgcr);
Ye Lic4f78cb2021-03-19 15:57:11 +0800492 if (is_imx8mms() || is_imx8mmsl() || is_imx8mns() || is_imx8mnsl() || is_imx8mnus()) {
Peng Fan7a42bf02020-07-09 13:52:41 +0800493 writel(0x1, &pgc_core1->pgcr);
494 writel(0xE, &gpc->cpu_pgc_dn_trg);
495 } else {
496 writel(0xC, &gpc->cpu_pgc_dn_trg);
497 }
498 }
Peng Fanfcdbde72018-01-10 13:20:37 +0800499 }
500
Peng Fan702339b2019-04-17 09:41:16 +0000501 if (is_imx8mq()) {
502 clock_enable(CCGR_OCOTP, 1);
503 if (readl(&ocotp->ctrl) & 0x200)
504 writel(0x200, &ocotp->ctrl_clr);
505 }
506
Peng Fanfcdbde72018-01-10 13:20:37 +0800507 return 0;
508}
509
Peng Fanb1821372019-09-16 03:09:36 +0000510#if defined(CONFIG_IMX8MN) || defined(CONFIG_IMX8MP)
511struct rom_api *g_rom_api = (struct rom_api *)0x980;
512
513enum boot_device get_boot_device(void)
514{
515 volatile gd_t *pgd = gd;
516 int ret;
517 u32 boot;
518 u16 boot_type;
519 u8 boot_instance;
520 enum boot_device boot_dev = SD1_BOOT;
521
522 ret = g_rom_api->query_boot_infor(QUERY_BT_DEV, &boot,
523 ((uintptr_t)&boot) ^ QUERY_BT_DEV);
524 gd = pgd;
525
526 if (ret != ROM_API_OKAY) {
527 puts("ROMAPI: failure at query_boot_info\n");
528 return -1;
529 }
530
531 boot_type = boot >> 16;
532 boot_instance = (boot >> 8) & 0xff;
533
534 switch (boot_type) {
535 case BT_DEV_TYPE_SD:
536 boot_dev = boot_instance + SD1_BOOT;
537 break;
538 case BT_DEV_TYPE_MMC:
539 boot_dev = boot_instance + MMC1_BOOT;
540 break;
541 case BT_DEV_TYPE_NAND:
542 boot_dev = NAND_BOOT;
543 break;
544 case BT_DEV_TYPE_FLEXSPINOR:
545 boot_dev = QSPI_BOOT;
546 break;
547 case BT_DEV_TYPE_USB:
548 boot_dev = USB_BOOT;
549 break;
550 default:
551 break;
552 }
553
554 return boot_dev;
555}
556#endif
557
Peng Fanfcdbde72018-01-10 13:20:37 +0800558bool is_usb_boot(void)
559{
560 return get_boot_device() == USB_BOOT;
561}
562
563#ifdef CONFIG_OF_SYSTEM_SETUP
Peng Fan6036dba2020-07-09 14:06:49 +0800564bool check_fdt_new_path(void *blob)
565{
566 const char *soc_path = "/soc@0";
567 int nodeoff;
568
569 nodeoff = fdt_path_offset(blob, soc_path);
570 if (nodeoff < 0)
571 return false;
572
573 return true;
574}
575
576static int disable_fdt_nodes(void *blob, const char *const nodes_path[], int size_array)
Peng Fanfcdbde72018-01-10 13:20:37 +0800577{
578 int i = 0;
579 int rc;
580 int nodeoff;
Peng Fan6036dba2020-07-09 14:06:49 +0800581 const char *status = "disabled";
582
583 for (i = 0; i < size_array; i++) {
584 nodeoff = fdt_path_offset(blob, nodes_path[i]);
585 if (nodeoff < 0)
586 continue; /* Not found, skip it */
587
588 printf("Found %s node\n", nodes_path[i]);
589
590add_status:
591 rc = fdt_setprop(blob, nodeoff, "status", status, strlen(status) + 1);
592 if (rc) {
593 if (rc == -FDT_ERR_NOSPACE) {
594 rc = fdt_increase_size(blob, 512);
595 if (!rc)
596 goto add_status;
597 }
598 printf("Unable to update property %s:%s, err=%s\n",
599 nodes_path[i], "status", fdt_strerror(rc));
600 } else {
601 printf("Modify %s:%s disabled\n",
602 nodes_path[i], "status");
603 }
604 }
605
606 return 0;
607}
608
609#ifdef CONFIG_IMX8MQ
610bool check_dcss_fused(void)
611{
612 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
613 struct fuse_bank *bank = &ocotp->bank[1];
614 struct fuse_bank1_regs *fuse =
615 (struct fuse_bank1_regs *)bank->fuse_regs;
616 u32 value = readl(&fuse->tester4);
617
618 if (value & 0x4000000)
619 return true;
620
621 return false;
622}
623
624static int disable_mipi_dsi_nodes(void *blob)
625{
626 static const char * const nodes_path[] = {
627 "/mipi_dsi@30A00000",
628 "/mipi_dsi_bridge@30A00000",
629 "/dsi_phy@30A00300",
630 "/soc@0/bus@30800000/mipi_dsi@30a00000",
631 "/soc@0/bus@30800000/dphy@30a00300"
632 };
633
634 return disable_fdt_nodes(blob, nodes_path, ARRAY_SIZE(nodes_path));
635}
636
637static int disable_dcss_nodes(void *blob)
638{
639 static const char * const nodes_path[] = {
640 "/dcss@0x32e00000",
641 "/dcss@32e00000",
642 "/hdmi@32c00000",
643 "/hdmi_cec@32c33800",
644 "/hdmi_drm@32c00000",
645 "/display-subsystem",
646 "/sound-hdmi",
647 "/sound-hdmi-arc",
648 "/soc@0/bus@32c00000/display-controller@32e00000",
649 "/soc@0/bus@32c00000/hdmi@32c00000",
650 };
651
652 return disable_fdt_nodes(blob, nodes_path, ARRAY_SIZE(nodes_path));
653}
654
655static int check_mipi_dsi_nodes(void *blob)
656{
657 static const char * const lcdif_path[] = {
658 "/lcdif@30320000",
659 "/soc@0/bus@30000000/lcdif@30320000"
660 };
661 static const char * const mipi_dsi_path[] = {
662 "/mipi_dsi@30A00000",
663 "/soc@0/bus@30800000/mipi_dsi@30a00000"
664 };
665 static const char * const lcdif_ep_path[] = {
666 "/lcdif@30320000/port@0/mipi-dsi-endpoint",
667 "/soc@0/bus@30000000/lcdif@30320000/port@0/endpoint"
668 };
669 static const char * const mipi_dsi_ep_path[] = {
670 "/mipi_dsi@30A00000/port@1/endpoint",
671 "/soc@0/bus@30800000/mipi_dsi@30a00000/ports/port@0/endpoint"
672 };
673
674 int lookup_node;
675 int nodeoff;
676 bool new_path = check_fdt_new_path(blob);
677 int i = new_path ? 1 : 0;
678
679 nodeoff = fdt_path_offset(blob, lcdif_path[i]);
680 if (nodeoff < 0 || !fdtdec_get_is_enabled(blob, nodeoff)) {
681 /*
682 * If can't find lcdif node or lcdif node is disabled,
683 * then disable all mipi dsi, since they only can input
684 * from DCSS
685 */
686 return disable_mipi_dsi_nodes(blob);
687 }
688
689 nodeoff = fdt_path_offset(blob, mipi_dsi_path[i]);
690 if (nodeoff < 0 || !fdtdec_get_is_enabled(blob, nodeoff))
691 return 0;
692
693 nodeoff = fdt_path_offset(blob, lcdif_ep_path[i]);
694 if (nodeoff < 0) {
695 /*
696 * If can't find lcdif endpoint, then disable all mipi dsi,
697 * since they only can input from DCSS
698 */
699 return disable_mipi_dsi_nodes(blob);
700 }
701
702 lookup_node = fdtdec_lookup_phandle(blob, nodeoff, "remote-endpoint");
703 nodeoff = fdt_path_offset(blob, mipi_dsi_ep_path[i]);
704
705 if (nodeoff > 0 && nodeoff == lookup_node)
706 return 0;
707
708 return disable_mipi_dsi_nodes(blob);
709}
710#endif
711
712int disable_vpu_nodes(void *blob)
713{
714 static const char * const nodes_path_8mq[] = {
715 "/vpu@38300000",
716 "/soc@0/vpu@38300000"
717 };
718
719 static const char * const nodes_path_8mm[] = {
720 "/vpu_g1@38300000",
721 "/vpu_g2@38310000",
722 "/vpu_h1@38320000"
723 };
724
725 static const char * const nodes_path_8mp[] = {
726 "/vpu_g1@38300000",
727 "/vpu_g2@38310000",
728 "/vpu_vc8000e@38320000"
729 };
730
731 if (is_imx8mq())
732 return disable_fdt_nodes(blob, nodes_path_8mq, ARRAY_SIZE(nodes_path_8mq));
733 else if (is_imx8mm())
734 return disable_fdt_nodes(blob, nodes_path_8mm, ARRAY_SIZE(nodes_path_8mm));
735 else if (is_imx8mp())
736 return disable_fdt_nodes(blob, nodes_path_8mp, ARRAY_SIZE(nodes_path_8mp));
737 else
738 return -EPERM;
739}
740
Ye Li98bcdf12021-03-19 15:57:09 +0800741#ifdef CONFIG_IMX8MN_LOW_DRIVE_MODE
742static int low_drive_gpu_freq(void *blob)
743{
744 static const char *nodes_path_8mn[] = {
745 "/gpu@38000000",
746 "/soc@0/gpu@38000000"
747 };
748
749 int nodeoff, cnt, i;
750 u32 assignedclks[7];
751
752 nodeoff = fdt_path_offset(blob, nodes_path_8mn[0]);
753 if (nodeoff < 0)
754 return nodeoff;
755
756 cnt = fdtdec_get_int_array_count(blob, nodeoff, "assigned-clock-rates", assignedclks, 7);
757 if (cnt < 0)
758 return cnt;
759
760 if (cnt != 7)
761 printf("Warning: %s, assigned-clock-rates count %d\n", nodes_path_8mn[0], cnt);
762
763 assignedclks[cnt - 1] = 200000000;
764 assignedclks[cnt - 2] = 200000000;
765
766 for (i = 0; i < cnt; i++) {
767 debug("<%u>, ", assignedclks[i]);
768 assignedclks[i] = cpu_to_fdt32(assignedclks[i]);
769 }
770 debug("\n");
771
772 return fdt_setprop(blob, nodeoff, "assigned-clock-rates", &assignedclks, sizeof(assignedclks));
773}
774#endif
775
Peng Fan6036dba2020-07-09 14:06:49 +0800776int disable_gpu_nodes(void *blob)
777{
778 static const char * const nodes_path_8mn[] = {
779 "/gpu@38000000"
780 };
781
782 return disable_fdt_nodes(blob, nodes_path_8mn, ARRAY_SIZE(nodes_path_8mn));
783}
784
785int disable_npu_nodes(void *blob)
786{
787 static const char * const nodes_path_8mp[] = {
788 "/vipsi@38500000"
789 };
790
791 return disable_fdt_nodes(blob, nodes_path_8mp, ARRAY_SIZE(nodes_path_8mp));
792}
793
794int disable_isp_nodes(void *blob)
795{
796 static const char * const nodes_path_8mp[] = {
797 "/soc@0/bus@32c00000/camera/isp@32e10000",
798 "/soc@0/bus@32c00000/camera/isp@32e20000"
799 };
800
801 return disable_fdt_nodes(blob, nodes_path_8mp, ARRAY_SIZE(nodes_path_8mp));
802}
803
804int disable_dsp_nodes(void *blob)
805{
806 static const char * const nodes_path_8mp[] = {
807 "/dsp@3b6e8000"
808 };
809
810 return disable_fdt_nodes(blob, nodes_path_8mp, ARRAY_SIZE(nodes_path_8mp));
811}
812
813static int disable_cpu_nodes(void *blob, u32 disabled_cores)
814{
815 static const char * const nodes_path[] = {
816 "/cpus/cpu@1",
817 "/cpus/cpu@2",
818 "/cpus/cpu@3",
819 };
820 u32 i = 0;
821 int rc;
822 int nodeoff;
823
824 if (disabled_cores > 3)
825 return -EINVAL;
826
827 i = 3 - disabled_cores;
828
829 for (; i < 3; i++) {
830 nodeoff = fdt_path_offset(blob, nodes_path[i]);
831 if (nodeoff < 0)
832 continue; /* Not found, skip it */
833
834 debug("Found %s node\n", nodes_path[i]);
835
836 rc = fdt_del_node(blob, nodeoff);
837 if (rc < 0) {
838 printf("Unable to delete node %s, err=%s\n",
839 nodes_path[i], fdt_strerror(rc));
840 } else {
841 printf("Delete node %s\n", nodes_path[i]);
842 }
843 }
844
845 return 0;
846}
847
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900848int ft_system_setup(void *blob, struct bd_info *bd)
Peng Fan6036dba2020-07-09 14:06:49 +0800849{
850#ifdef CONFIG_IMX8MQ
851 int i = 0;
852 int rc;
853 int nodeoff;
854
855 if (get_boot_device() == USB_BOOT) {
856 disable_dcss_nodes(blob);
857
858 bool new_path = check_fdt_new_path(blob);
859 int v = new_path ? 1 : 0;
860 static const char * const usb_dwc3_path[] = {
861 "/usb@38100000/dwc3",
862 "/soc@0/usb@38100000"
863 };
864
865 nodeoff = fdt_path_offset(blob, usb_dwc3_path[v]);
866 if (nodeoff >= 0) {
867 const char *speed = "high-speed";
868
869 printf("Found %s node\n", usb_dwc3_path[v]);
870
871usb_modify_speed:
872
873 rc = fdt_setprop(blob, nodeoff, "maximum-speed", speed, strlen(speed) + 1);
874 if (rc) {
875 if (rc == -FDT_ERR_NOSPACE) {
876 rc = fdt_increase_size(blob, 512);
877 if (!rc)
878 goto usb_modify_speed;
879 }
880 printf("Unable to set property %s:%s, err=%s\n",
881 usb_dwc3_path[v], "maximum-speed", fdt_strerror(rc));
882 } else {
883 printf("Modify %s:%s = %s\n",
884 usb_dwc3_path[v], "maximum-speed", speed);
885 }
886 } else {
887 printf("Can't found %s node\n", usb_dwc3_path[v]);
888 }
889 }
Peng Fanfcdbde72018-01-10 13:20:37 +0800890
891 /* Disable the CPU idle for A0 chip since the HW does not support it */
892 if (is_soc_rev(CHIP_REV_1_0)) {
893 static const char * const nodes_path[] = {
894 "/cpus/cpu@0",
895 "/cpus/cpu@1",
896 "/cpus/cpu@2",
897 "/cpus/cpu@3",
898 };
899
900 for (i = 0; i < ARRAY_SIZE(nodes_path); i++) {
901 nodeoff = fdt_path_offset(blob, nodes_path[i]);
902 if (nodeoff < 0)
903 continue; /* Not found, skip it */
904
Marek Vasutdabaabd2020-04-24 21:37:33 +0200905 debug("Found %s node\n", nodes_path[i]);
Peng Fanfcdbde72018-01-10 13:20:37 +0800906
907 rc = fdt_delprop(blob, nodeoff, "cpu-idle-states");
Marek Vasutdabaabd2020-04-24 21:37:33 +0200908 if (rc == -FDT_ERR_NOTFOUND)
909 continue;
Peng Fanfcdbde72018-01-10 13:20:37 +0800910 if (rc) {
911 printf("Unable to update property %s:%s, err=%s\n",
912 nodes_path[i], "status", fdt_strerror(rc));
913 return rc;
914 }
915
Marek Vasutdabaabd2020-04-24 21:37:33 +0200916 debug("Remove %s:%s\n", nodes_path[i],
Peng Fanfcdbde72018-01-10 13:20:37 +0800917 "cpu-idle-states");
918 }
919 }
920
Peng Fan6036dba2020-07-09 14:06:49 +0800921 if (is_imx8mql()) {
922 disable_vpu_nodes(blob);
923 if (check_dcss_fused()) {
924 printf("DCSS is fused\n");
925 disable_dcss_nodes(blob);
926 check_mipi_dsi_nodes(blob);
927 }
928 }
929
930 if (is_imx8md())
931 disable_cpu_nodes(blob, 2);
932
933#elif defined(CONFIG_IMX8MM)
934 if (is_imx8mml() || is_imx8mmdl() || is_imx8mmsl())
935 disable_vpu_nodes(blob);
936
937 if (is_imx8mmd() || is_imx8mmdl())
938 disable_cpu_nodes(blob, 2);
939 else if (is_imx8mms() || is_imx8mmsl())
940 disable_cpu_nodes(blob, 3);
941
942#elif defined(CONFIG_IMX8MN)
943 if (is_imx8mnl() || is_imx8mndl() || is_imx8mnsl())
944 disable_gpu_nodes(blob);
Ye Li98bcdf12021-03-19 15:57:09 +0800945#ifdef CONFIG_IMX8MN_LOW_DRIVE_MODE
946 else {
947 int ldm_gpu = low_drive_gpu_freq(blob);
948
949 if (ldm_gpu < 0)
950 printf("Update GPU node assigned-clock-rates failed\n");
951 else
952 printf("Update GPU node assigned-clock-rates ok\n");
953 }
954#endif
Peng Fan6036dba2020-07-09 14:06:49 +0800955
Ye Lic4f78cb2021-03-19 15:57:11 +0800956 if (is_imx8mnd() || is_imx8mndl() || is_imx8mnud())
Peng Fan6036dba2020-07-09 14:06:49 +0800957 disable_cpu_nodes(blob, 2);
Ye Lic4f78cb2021-03-19 15:57:11 +0800958 else if (is_imx8mns() || is_imx8mnsl() || is_imx8mnus())
Peng Fan6036dba2020-07-09 14:06:49 +0800959 disable_cpu_nodes(blob, 3);
960
961#elif defined(CONFIG_IMX8MP)
Peng Fan00982222020-09-16 15:17:22 +0800962 if (is_imx8mpl())
Peng Fan6036dba2020-07-09 14:06:49 +0800963 disable_vpu_nodes(blob);
964
Peng Fan00982222020-09-16 15:17:22 +0800965 if (is_imx8mpl() || is_imx8mp6())
Peng Fan6036dba2020-07-09 14:06:49 +0800966 disable_npu_nodes(blob);
967
Peng Fan00982222020-09-16 15:17:22 +0800968 if (is_imx8mpl())
Peng Fan6036dba2020-07-09 14:06:49 +0800969 disable_isp_nodes(blob);
970
Peng Fan00982222020-09-16 15:17:22 +0800971 if (is_imx8mpl() || is_imx8mp6())
Peng Fan6036dba2020-07-09 14:06:49 +0800972 disable_dsp_nodes(blob);
973
974 if (is_imx8mpd())
975 disable_cpu_nodes(blob, 2);
976#endif
977
Peng Fanfcdbde72018-01-10 13:20:37 +0800978 return 0;
979}
980#endif
981
Marek Vasutefa1a622020-04-29 15:04:21 +0200982#if !CONFIG_IS_ENABLED(SYSRESET)
Harald Seiler35b65dd2020-12-15 16:47:52 +0100983void reset_cpu(void)
Peng Fanfcdbde72018-01-10 13:20:37 +0800984{
Claudius Heinec5635a02020-04-29 15:04:23 +0200985 struct watchdog_regs *wdog = (struct watchdog_regs *)WDOG1_BASE_ADDR;
Peng Fanfcdbde72018-01-10 13:20:37 +0800986
Ye Li72479742019-12-09 00:47:18 -0800987 /* Clear WDA to trigger WDOG_B immediately */
988 writew((SET_WCR_WT(1) | WCR_WDT | WCR_WDE | WCR_SRS), &wdog->wcr);
Peng Fand2041722019-08-27 06:25:41 +0000989
Ye Li72479742019-12-09 00:47:18 -0800990 while (1) {
991 /*
Harald Seiler568af922020-04-29 15:04:22 +0200992 * spin for .5 seconds before reset
Ye Li72479742019-12-09 00:47:18 -0800993 */
994 }
Peng Fanfcdbde72018-01-10 13:20:37 +0800995}
Peng Fand2041722019-08-27 06:25:41 +0000996#endif
Peng Fana07bcec2020-04-22 10:51:13 +0800997
998#if defined(CONFIG_ARCH_MISC_INIT)
999static void acquire_buildinfo(void)
1000{
1001 u64 atf_commit = 0;
Peng Fana2f143e2020-05-11 15:14:04 +08001002 struct arm_smccc_res res;
Peng Fana07bcec2020-04-22 10:51:13 +08001003
1004 /* Get ARM Trusted Firmware commit id */
Peng Fana2f143e2020-05-11 15:14:04 +08001005 arm_smccc_smc(IMX_SIP_BUILDINFO, IMX_SIP_BUILDINFO_GET_COMMITHASH,
Fabio Estevam68a699e2020-07-17 16:36:54 -03001006 0, 0, 0, 0, 0, 0, &res);
Peng Fana2f143e2020-05-11 15:14:04 +08001007 atf_commit = res.a0;
Peng Fana07bcec2020-04-22 10:51:13 +08001008 if (atf_commit == 0xffffffff) {
1009 debug("ATF does not support build info\n");
1010 atf_commit = 0x30; /* Display 0, 0 ascii is 0x30 */
1011 }
1012
1013 printf("\n BuildInfo:\n - ATF %s\n\n", (char *)&atf_commit);
1014}
1015
1016int arch_misc_init(void)
1017{
1018 acquire_buildinfo();
1019
1020 return 0;
1021}
1022#endif
Ye Li70487ff2020-05-03 22:19:52 +08001023
1024void imx_tmu_arch_init(void *reg_base)
1025{
Ye Li94c693d2020-05-03 22:19:53 +08001026 if (is_imx8mm() || is_imx8mn()) {
Ye Li70487ff2020-05-03 22:19:52 +08001027 /* Load TCALIV and TASR from fuses */
1028 struct ocotp_regs *ocotp =
1029 (struct ocotp_regs *)OCOTP_BASE_ADDR;
1030 struct fuse_bank *bank = &ocotp->bank[3];
1031 struct fuse_bank3_regs *fuse =
1032 (struct fuse_bank3_regs *)bank->fuse_regs;
1033
1034 u32 tca_rt, tca_hr, tca_en;
1035 u32 buf_vref, buf_slope;
1036
1037 tca_rt = fuse->ana0 & 0xFF;
1038 tca_hr = (fuse->ana0 & 0xFF00) >> 8;
1039 tca_en = (fuse->ana0 & 0x2000000) >> 25;
1040
1041 buf_vref = (fuse->ana0 & 0x1F00000) >> 20;
1042 buf_slope = (fuse->ana0 & 0xF0000) >> 16;
1043
1044 writel(buf_vref | (buf_slope << 16), (ulong)reg_base + 0x28);
1045 writel((tca_en << 31) | (tca_hr << 16) | tca_rt,
1046 (ulong)reg_base + 0x30);
1047 }
Ye Liebb9aab2020-05-03 22:19:54 +08001048#ifdef CONFIG_IMX8MP
1049 /* Load TCALIV0/1/m40 and TRIM from fuses */
1050 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
1051 struct fuse_bank *bank = &ocotp->bank[38];
1052 struct fuse_bank38_regs *fuse =
1053 (struct fuse_bank38_regs *)bank->fuse_regs;
1054 struct fuse_bank *bank2 = &ocotp->bank[39];
1055 struct fuse_bank39_regs *fuse2 =
1056 (struct fuse_bank39_regs *)bank2->fuse_regs;
1057 u32 buf_vref, buf_slope, bjt_cur, vlsb, bgr;
1058 u32 reg;
1059 u32 tca40[2], tca25[2], tca105[2];
1060
1061 /* For blank sample */
1062 if (!fuse->ana_trim2 && !fuse->ana_trim3 &&
1063 !fuse->ana_trim4 && !fuse2->ana_trim5) {
1064 /* Use a default 25C binary codes */
1065 tca25[0] = 1596;
Ye Li3462b552020-05-03 22:19:55 +08001066 tca25[1] = 1596;
Ye Liebb9aab2020-05-03 22:19:54 +08001067 writel(tca25[0], (ulong)reg_base + 0x30);
Ye Li3462b552020-05-03 22:19:55 +08001068 writel(tca25[1], (ulong)reg_base + 0x34);
Ye Liebb9aab2020-05-03 22:19:54 +08001069 return;
1070 }
1071
1072 buf_vref = (fuse->ana_trim2 & 0xc0) >> 6;
1073 buf_slope = (fuse->ana_trim2 & 0xF00) >> 8;
1074 bjt_cur = (fuse->ana_trim2 & 0xF000) >> 12;
1075 bgr = (fuse->ana_trim2 & 0xF0000) >> 16;
1076 vlsb = (fuse->ana_trim2 & 0xF00000) >> 20;
1077 writel(buf_vref | (buf_slope << 16), (ulong)reg_base + 0x28);
1078
1079 reg = (bgr << 28) | (bjt_cur << 20) | (vlsb << 12) | (1 << 7);
1080 writel(reg, (ulong)reg_base + 0x3c);
1081
1082 tca40[0] = (fuse->ana_trim3 & 0xFFF0000) >> 16;
1083 tca25[0] = (fuse->ana_trim3 & 0xF0000000) >> 28;
1084 tca25[0] |= ((fuse->ana_trim4 & 0xFF) << 4);
1085 tca105[0] = (fuse->ana_trim4 & 0xFFF00) >> 8;
1086 tca40[1] = (fuse->ana_trim4 & 0xFFF00000) >> 20;
1087 tca25[1] = fuse2->ana_trim5 & 0xFFF;
1088 tca105[1] = (fuse2->ana_trim5 & 0xFFF000) >> 12;
1089
1090 /* use 25c for 1p calibration */
1091 writel(tca25[0] | (tca105[0] << 16), (ulong)reg_base + 0x30);
1092 writel(tca25[1] | (tca105[1] << 16), (ulong)reg_base + 0x34);
1093 writel(tca40[0] | (tca40[1] << 16), (ulong)reg_base + 0x38);
1094#endif
Ye Li70487ff2020-05-03 22:19:52 +08001095}
Peng Fan2f3c9202020-07-09 13:39:26 +08001096
1097#if defined(CONFIG_SPL_BUILD)
1098#if defined(CONFIG_IMX8MQ) || defined(CONFIG_IMX8MM) || defined(CONFIG_IMX8MN)
1099bool serror_need_skip = true;
1100
1101void do_error(struct pt_regs *pt_regs, unsigned int esr)
1102{
1103 /*
1104 * If stack is still in ROM reserved OCRAM not switch to SPL,
1105 * it is the ROM SError
1106 */
1107 ulong sp;
1108
1109 asm volatile("mov %0, sp" : "=r"(sp) : );
1110
1111 if (serror_need_skip && sp < 0x910000 && sp >= 0x900000) {
1112 /* Check for ERR050342, imx8mq HDCP enabled parts */
1113 if (is_imx8mq() && !(readl(OCOTP_BASE_ADDR + 0x450) & 0x08000000)) {
1114 serror_need_skip = false;
1115 return; /* Do nothing skip the SError in ROM */
1116 }
1117
1118 /* Check for ERR050350, field return mode for imx8mq, mm and mn */
1119 if (readl(OCOTP_BASE_ADDR + 0x630) & 0x1) {
1120 serror_need_skip = false;
1121 return; /* Do nothing skip the SError in ROM */
1122 }
1123 }
1124
1125 efi_restore_gd();
1126 printf("\"Error\" handler, esr 0x%08x\n", esr);
1127 show_regs(pt_regs);
1128 panic("Resetting CPU ...\n");
1129}
1130#endif
1131#endif
Ye Li2707faf2019-07-15 01:16:46 -07001132
1133#if defined(CONFIG_IMX8MN) || defined(CONFIG_IMX8MP)
1134enum env_location env_get_location(enum env_operation op, int prio)
1135{
1136 enum boot_device dev = get_boot_device();
1137 enum env_location env_loc = ENVL_UNKNOWN;
1138
1139 if (prio)
1140 return env_loc;
1141
1142 switch (dev) {
1143#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
1144 case QSPI_BOOT:
1145 env_loc = ENVL_SPI_FLASH;
1146 break;
1147#endif
1148#ifdef CONFIG_ENV_IS_IN_NAND
1149 case NAND_BOOT:
1150 env_loc = ENVL_NAND;
1151 break;
1152#endif
1153#ifdef CONFIG_ENV_IS_IN_MMC
1154 case SD1_BOOT:
1155 case SD2_BOOT:
1156 case SD3_BOOT:
1157 case MMC1_BOOT:
1158 case MMC2_BOOT:
1159 case MMC3_BOOT:
1160 env_loc = ENVL_MMC;
1161 break;
1162#endif
1163 default:
1164#if defined(CONFIG_ENV_IS_NOWHERE)
1165 env_loc = ENVL_NOWHERE;
1166#endif
1167 break;
1168 }
1169
1170 return env_loc;
1171}
1172
1173#ifndef ENV_IS_EMBEDDED
1174long long env_get_offset(long long defautl_offset)
1175{
1176 enum boot_device dev = get_boot_device();
1177
1178 switch (dev) {
1179 case NAND_BOOT:
1180 return (60 << 20); /* 60MB offset for NAND */
1181 default:
1182 break;
1183 }
1184
1185 return defautl_offset;
1186}
1187#endif
1188#endif