Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 2 | /* |
Ye Li | 70487ff | 2020-05-03 22:19:52 +0800 | [diff] [blame] | 3 | * Copyright 2017-2019 NXP |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 4 | * |
| 5 | * Peng Fan <peng.fan@nxp.com> |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 9 | #include <cpu_func.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 10 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 12 | #include <asm/arch/imx-regs.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 14 | #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 Fan | 2f3c920 | 2020-07-09 13:39:26 +0800 | [diff] [blame] | 20 | #include <asm/ptrace.h> |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 21 | #include <asm/armv8/mmu.h> |
Peng Fan | e663c70 | 2019-08-27 06:25:58 +0000 | [diff] [blame] | 22 | #include <dm/uclass.h> |
Peng Fan | 2f3c920 | 2020-07-09 13:39:26 +0800 | [diff] [blame] | 23 | #include <efi_loader.h> |
Ye Li | 2707faf | 2019-07-15 01:16:46 -0700 | [diff] [blame] | 24 | #include <env.h> |
| 25 | #include <env_internal.h> |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 26 | #include <errno.h> |
| 27 | #include <fdt_support.h> |
| 28 | #include <fsl_wdog.h> |
| 29 | #include <imx_sip.h> |
Peng Fan | a2f143e | 2020-05-11 15:14:04 +0800 | [diff] [blame] | 30 | #include <linux/arm-smccc.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 31 | #include <linux/bitops.h> |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 32 | |
| 33 | DECLARE_GLOBAL_DATA_PTR; |
| 34 | |
Stefano Babic | d714a75 | 2019-09-20 08:47:53 +0200 | [diff] [blame] | 35 | #if defined(CONFIG_IMX_HAB) |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 36 | struct imx_sec_config_fuse_t const imx_sec_config_fuse = { |
| 37 | .bank = 1, |
| 38 | .word = 3, |
| 39 | }; |
| 40 | #endif |
| 41 | |
| 42 | int 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 | |
| 61 | void 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 Fan | a07c718 | 2019-12-27 10:19:42 +0800 | [diff] [blame] | 69 | if (is_imx8mm() || is_imx8mn() || is_imx8mp()) |
Peng Fan | dbb2b7e | 2019-08-27 06:25:30 +0000 | [diff] [blame] | 70 | setbits_le32(&gpr->gpr[10], BIT(1)); |
Ye Li | b3cf0a8 | 2019-08-27 06:25:34 +0000 | [diff] [blame] | 71 | /* |
| 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 Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | void 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 | |
| 91 | static 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 Bisson | cb15885 | 2018-11-14 17:55:28 +0100 | [diff] [blame] | 100 | /* 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 Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 116 | /* 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 Fan | 59efa6b | 2019-08-27 06:25:27 +0000 | [diff] [blame] | 134 | .size = PHYS_SDRAM_SIZE, |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 135 | .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | |
| 136 | PTE_BLOCK_OUTER_SHARE |
Peng Fan | 59efa6b | 2019-08-27 06:25:27 +0000 | [diff] [blame] | 137 | #ifdef PHYS_SDRAM_2_SIZE |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 138 | }, { |
| 139 | /* DRAM2 */ |
| 140 | .virt = 0x100000000UL, |
| 141 | .phys = 0x100000000UL, |
Peng Fan | 59efa6b | 2019-08-27 06:25:27 +0000 | [diff] [blame] | 142 | .size = PHYS_SDRAM_2_SIZE, |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 143 | .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | |
| 144 | PTE_BLOCK_OUTER_SHARE |
Peng Fan | 59efa6b | 2019-08-27 06:25:27 +0000 | [diff] [blame] | 145 | #endif |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 146 | }, { |
Peng Fan | 3c41728 | 2020-07-09 15:26:06 +0800 | [diff] [blame] | 147 | /* empty entrie to split table entry 5 if needed when TEEs are used */ |
| 148 | 0, |
| 149 | }, { |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 150 | /* List terminator */ |
| 151 | 0, |
| 152 | } |
| 153 | }; |
| 154 | |
| 155 | struct mm_region *mem_map = imx8m_mem_map; |
| 156 | |
Marek Vasut | 076dc92 | 2021-02-27 14:59:00 +0100 | [diff] [blame] | 157 | static 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 Fan | 59efa6b | 2019-08-27 06:25:27 +0000 | [diff] [blame] | 168 | void enable_caches(void) |
| 169 | { |
Peng Fan | 3c41728 | 2020-07-09 15:26:06 +0800 | [diff] [blame] | 170 | /* 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 Vasut | 076dc92 | 2021-02-27 14:59:00 +0100 | [diff] [blame] | 181 | int entry = imx8m_find_dram_entry_in_mem_map(); |
Peng Fan | 3c41728 | 2020-07-09 15:26:06 +0800 | [diff] [blame] | 182 | u64 attrs = imx8m_mem_map[entry].attrs; |
| 183 | |
Marek Vasut | 076dc92 | 2021-02-27 14:59:00 +0100 | [diff] [blame] | 184 | while (i < CONFIG_NR_DRAM_BANKS && |
| 185 | entry < ARRAY_SIZE(imx8m_mem_map)) { |
Peng Fan | 3c41728 | 2020-07-09 15:26:06 +0800 | [diff] [blame] | 186 | 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 Fan | 59efa6b | 2019-08-27 06:25:27 +0000 | [diff] [blame] | 197 | |
| 198 | icache_enable(); |
| 199 | dcache_enable(); |
| 200 | } |
| 201 | |
Peng Fan | 3c41728 | 2020-07-09 15:26:06 +0800 | [diff] [blame] | 202 | __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 | |
| 211 | int dram_init(void) |
| 212 | { |
Marek Vasut | 076dc92 | 2021-02-27 14:59:00 +0100 | [diff] [blame] | 213 | unsigned int entry = imx8m_find_dram_entry_in_mem_map(); |
Peng Fan | 3c41728 | 2020-07-09 15:26:06 +0800 | [diff] [blame] | 214 | 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 Harvey | bc479b2 | 2020-09-25 08:08:35 -0700 | [diff] [blame] | 227 | /* also update the SDRAM size in the mem_map used externally */ |
Marek Vasut | 076dc92 | 2021-02-27 14:59:00 +0100 | [diff] [blame] | 228 | imx8m_mem_map[entry].size = sdram_size; |
Tim Harvey | bc479b2 | 2020-09-25 08:08:35 -0700 | [diff] [blame] | 229 | |
Peng Fan | 3c41728 | 2020-07-09 15:26:06 +0800 | [diff] [blame] | 230 | #ifdef PHYS_SDRAM_2_SIZE |
| 231 | gd->ram_size += PHYS_SDRAM_2_SIZE; |
| 232 | #endif |
| 233 | |
| 234 | return 0; |
| 235 | } |
| 236 | |
| 237 | int 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 | |
| 279 | phys_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 Fan | 78db9a5 | 2019-08-27 06:25:17 +0000 | [diff] [blame] | 292 | static 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 Fan | cb1a1de | 2020-02-05 17:34:54 +0800 | [diff] [blame] | 301 | 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 Fan | 78db9a5 | 2019-08-27 06:25:17 +0000 | [diff] [blame] | 308 | 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 Fan | c915403 | 2020-02-05 17:39:27 +0800 | [diff] [blame] | 324 | } else if (type == MXC_CPU_IMX8MN) { |
| 325 | switch (value & 0x3) { |
| 326 | case 2: |
Ye Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 327 | if (value & 0x1000000) { |
| 328 | if (value & 0x10000000) /* MIPI DSI */ |
| 329 | return MXC_CPU_IMX8MNUD; |
| 330 | else |
| 331 | return MXC_CPU_IMX8MNDL; |
| 332 | } else { |
Peng Fan | c915403 | 2020-02-05 17:39:27 +0800 | [diff] [blame] | 333 | return MXC_CPU_IMX8MND; |
Ye Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 334 | } |
Peng Fan | c915403 | 2020-02-05 17:39:27 +0800 | [diff] [blame] | 335 | case 3: |
Ye Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 336 | if (value & 0x1000000) { |
| 337 | if (value & 0x10000000) /* MIPI DSI */ |
| 338 | return MXC_CPU_IMX8MNUS; |
| 339 | else |
| 340 | return MXC_CPU_IMX8MNSL; |
| 341 | } else { |
Peng Fan | c915403 | 2020-02-05 17:39:27 +0800 | [diff] [blame] | 342 | return MXC_CPU_IMX8MNS; |
Ye Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 343 | } |
Peng Fan | c915403 | 2020-02-05 17:39:27 +0800 | [diff] [blame] | 344 | default: |
Ye Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 345 | if (value & 0x1000000) { |
| 346 | if (value & 0x10000000) /* MIPI DSI */ |
| 347 | return MXC_CPU_IMX8MNUQ; |
| 348 | else |
| 349 | return MXC_CPU_IMX8MNL; |
| 350 | } |
Peng Fan | c915403 | 2020-02-05 17:39:27 +0800 | [diff] [blame] | 351 | break; |
| 352 | } |
Ye Li | d1eee7e | 2020-04-20 20:12:54 -0700 | [diff] [blame] | 353 | } 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 Li | d1eee7e | 2020-04-20 20:12:54 -0700 | [diff] [blame] | 375 | case 2: |
| 376 | return MXC_CPU_IMX8MP6; |
Ye Li | d1eee7e | 2020-04-20 20:12:54 -0700 | [diff] [blame] | 377 | default: |
| 378 | break; |
| 379 | } |
| 380 | |
Peng Fan | 78db9a5 | 2019-08-27 06:25:17 +0000 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | return type; |
| 384 | } |
| 385 | |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 386 | u32 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 Fan | 78db9a5 | 2019-08-27 06:25:17 +0000 | [diff] [blame] | 391 | u32 major_low = (reg >> 8) & 0xff; |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 392 | u32 rom_version; |
| 393 | |
| 394 | reg &= 0xff; |
| 395 | |
Peng Fan | 625b03d | 2019-12-27 10:14:02 +0800 | [diff] [blame] | 396 | /* iMX8MP */ |
| 397 | if (major_low == 0x43) { |
Ye Li | d1eee7e | 2020-04-20 20:12:54 -0700 | [diff] [blame] | 398 | type = get_cpu_variant_type(MXC_CPU_IMX8MP); |
Peng Fan | 625b03d | 2019-12-27 10:14:02 +0800 | [diff] [blame] | 399 | } else if (major_low == 0x42) { |
| 400 | /* iMX8MN */ |
Peng Fan | c915403 | 2020-02-05 17:39:27 +0800 | [diff] [blame] | 401 | type = get_cpu_variant_type(MXC_CPU_IMX8MN); |
Peng Fan | 2434131 | 2019-06-27 17:23:49 +0800 | [diff] [blame] | 402 | } else if (major_low == 0x41) { |
Peng Fan | 78db9a5 | 2019-08-27 06:25:17 +0000 | [diff] [blame] | 403 | type = get_cpu_variant_type(MXC_CPU_IMX8MM); |
| 404 | } else { |
| 405 | if (reg == CHIP_REV_1_0) { |
| 406 | /* |
Peng Fan | 9e09445 | 2019-10-16 10:24:17 +0000 | [diff] [blame] | 407 | * 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 Fan | 78db9a5 | 2019-08-27 06:25:17 +0000 | [diff] [blame] | 411 | */ |
Peng Fan | 9e09445 | 2019-10-16 10:24:17 +0000 | [diff] [blame] | 412 | 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 Wildt | 6a4b07e | 2019-11-19 09:42:06 +0100 | [diff] [blame] | 419 | rom_version &= 0xff; |
Peng Fan | 9e09445 | 2019-10-16 10:24:17 +0000 | [diff] [blame] | 420 | if (rom_version == CHIP_REV_2_0) |
| 421 | reg = CHIP_REV_2_0; |
| 422 | } |
Peng Fan | 78db9a5 | 2019-08-27 06:25:17 +0000 | [diff] [blame] | 423 | } |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 424 | } |
Peng Fan | cb1a1de | 2020-02-05 17:34:54 +0800 | [diff] [blame] | 425 | |
| 426 | type = get_cpu_variant_type(type); |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | return (type << 12) | reg; |
| 430 | } |
| 431 | |
| 432 | static 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 Fan | e663c70 | 2019-08-27 06:25:58 +0000 | [diff] [blame] | 444 | int arch_cpu_init_dm(void) |
| 445 | { |
| 446 | struct udevice *dev; |
| 447 | int ret; |
| 448 | |
Peng Fan | cd7c806 | 2019-10-16 03:01:51 +0000 | [diff] [blame] | 449 | 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 Fan | e663c70 | 2019-08-27 06:25:58 +0000 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | return 0; |
| 460 | } |
| 461 | |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 462 | int arch_cpu_init(void) |
| 463 | { |
Peng Fan | 702339b | 2019-04-17 09:41:16 +0000 | [diff] [blame] | 464 | struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR; |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 465 | /* |
Peng Fan | 0528ba0 | 2019-08-27 06:25:37 +0000 | [diff] [blame] | 466 | * 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 Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 472 | * 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 Fan | 7a42bf0 | 2020-07-09 13:52:41 +0800 | [diff] [blame] | 480 | |
| 481 | if (is_imx8md() || is_imx8mmd() || is_imx8mmdl() || is_imx8mms() || |
| 482 | is_imx8mmsl() || is_imx8mnd() || is_imx8mndl() || is_imx8mns() || |
Ye Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 483 | is_imx8mnsl() || is_imx8mpd() || is_imx8mnud() || is_imx8mnus()) { |
Peng Fan | 7a42bf0 | 2020-07-09 13:52:41 +0800 | [diff] [blame] | 484 | /* 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 Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 492 | if (is_imx8mms() || is_imx8mmsl() || is_imx8mns() || is_imx8mnsl() || is_imx8mnus()) { |
Peng Fan | 7a42bf0 | 2020-07-09 13:52:41 +0800 | [diff] [blame] | 493 | 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 Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 499 | } |
| 500 | |
Peng Fan | 702339b | 2019-04-17 09:41:16 +0000 | [diff] [blame] | 501 | if (is_imx8mq()) { |
| 502 | clock_enable(CCGR_OCOTP, 1); |
| 503 | if (readl(&ocotp->ctrl) & 0x200) |
| 504 | writel(0x200, &ocotp->ctrl_clr); |
| 505 | } |
| 506 | |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 507 | return 0; |
| 508 | } |
| 509 | |
Peng Fan | b182137 | 2019-09-16 03:09:36 +0000 | [diff] [blame] | 510 | #if defined(CONFIG_IMX8MN) || defined(CONFIG_IMX8MP) |
| 511 | struct rom_api *g_rom_api = (struct rom_api *)0x980; |
| 512 | |
| 513 | enum 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 Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 558 | bool is_usb_boot(void) |
| 559 | { |
| 560 | return get_boot_device() == USB_BOOT; |
| 561 | } |
| 562 | |
| 563 | #ifdef CONFIG_OF_SYSTEM_SETUP |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 564 | bool 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 | |
| 576 | static int disable_fdt_nodes(void *blob, const char *const nodes_path[], int size_array) |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 577 | { |
| 578 | int i = 0; |
| 579 | int rc; |
| 580 | int nodeoff; |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 581 | 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 | |
| 590 | add_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 |
| 610 | bool 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 | |
| 624 | static 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", |
Peng Fan | c0e2f76 | 2021-03-19 15:57:13 +0800 | [diff] [blame^] | 631 | "/soc@0/bus@30800000/dphy@30a00300", |
| 632 | "/soc@0/bus@30800000/mipi-dsi@30a00000", |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 633 | }; |
| 634 | |
| 635 | return disable_fdt_nodes(blob, nodes_path, ARRAY_SIZE(nodes_path)); |
| 636 | } |
| 637 | |
| 638 | static int disable_dcss_nodes(void *blob) |
| 639 | { |
| 640 | static const char * const nodes_path[] = { |
| 641 | "/dcss@0x32e00000", |
| 642 | "/dcss@32e00000", |
| 643 | "/hdmi@32c00000", |
| 644 | "/hdmi_cec@32c33800", |
| 645 | "/hdmi_drm@32c00000", |
| 646 | "/display-subsystem", |
| 647 | "/sound-hdmi", |
| 648 | "/sound-hdmi-arc", |
| 649 | "/soc@0/bus@32c00000/display-controller@32e00000", |
| 650 | "/soc@0/bus@32c00000/hdmi@32c00000", |
| 651 | }; |
| 652 | |
| 653 | return disable_fdt_nodes(blob, nodes_path, ARRAY_SIZE(nodes_path)); |
| 654 | } |
| 655 | |
| 656 | static int check_mipi_dsi_nodes(void *blob) |
| 657 | { |
| 658 | static const char * const lcdif_path[] = { |
| 659 | "/lcdif@30320000", |
Peng Fan | c0e2f76 | 2021-03-19 15:57:13 +0800 | [diff] [blame^] | 660 | "/soc@0/bus@30000000/lcdif@30320000", |
| 661 | "/soc@0/bus@30000000/lcd-controller@30320000" |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 662 | }; |
| 663 | static const char * const mipi_dsi_path[] = { |
| 664 | "/mipi_dsi@30A00000", |
| 665 | "/soc@0/bus@30800000/mipi_dsi@30a00000" |
| 666 | }; |
| 667 | static const char * const lcdif_ep_path[] = { |
| 668 | "/lcdif@30320000/port@0/mipi-dsi-endpoint", |
Peng Fan | c0e2f76 | 2021-03-19 15:57:13 +0800 | [diff] [blame^] | 669 | "/soc@0/bus@30000000/lcdif@30320000/port@0/endpoint", |
| 670 | "/soc@0/bus@30000000/lcd-controller@30320000/port@0/endpoint" |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 671 | }; |
| 672 | static const char * const mipi_dsi_ep_path[] = { |
| 673 | "/mipi_dsi@30A00000/port@1/endpoint", |
Peng Fan | c0e2f76 | 2021-03-19 15:57:13 +0800 | [diff] [blame^] | 674 | "/soc@0/bus@30800000/mipi_dsi@30a00000/ports/port@0/endpoint", |
| 675 | "/soc@0/bus@30800000/mipi-dsi@30a00000/ports/port@0/endpoint@0" |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 676 | }; |
| 677 | |
| 678 | int lookup_node; |
| 679 | int nodeoff; |
| 680 | bool new_path = check_fdt_new_path(blob); |
| 681 | int i = new_path ? 1 : 0; |
| 682 | |
| 683 | nodeoff = fdt_path_offset(blob, lcdif_path[i]); |
| 684 | if (nodeoff < 0 || !fdtdec_get_is_enabled(blob, nodeoff)) { |
| 685 | /* |
| 686 | * If can't find lcdif node or lcdif node is disabled, |
| 687 | * then disable all mipi dsi, since they only can input |
| 688 | * from DCSS |
| 689 | */ |
| 690 | return disable_mipi_dsi_nodes(blob); |
| 691 | } |
| 692 | |
| 693 | nodeoff = fdt_path_offset(blob, mipi_dsi_path[i]); |
| 694 | if (nodeoff < 0 || !fdtdec_get_is_enabled(blob, nodeoff)) |
| 695 | return 0; |
| 696 | |
| 697 | nodeoff = fdt_path_offset(blob, lcdif_ep_path[i]); |
| 698 | if (nodeoff < 0) { |
| 699 | /* |
| 700 | * If can't find lcdif endpoint, then disable all mipi dsi, |
| 701 | * since they only can input from DCSS |
| 702 | */ |
| 703 | return disable_mipi_dsi_nodes(blob); |
| 704 | } |
| 705 | |
| 706 | lookup_node = fdtdec_lookup_phandle(blob, nodeoff, "remote-endpoint"); |
| 707 | nodeoff = fdt_path_offset(blob, mipi_dsi_ep_path[i]); |
| 708 | |
| 709 | if (nodeoff > 0 && nodeoff == lookup_node) |
| 710 | return 0; |
| 711 | |
| 712 | return disable_mipi_dsi_nodes(blob); |
| 713 | } |
| 714 | #endif |
| 715 | |
| 716 | int disable_vpu_nodes(void *blob) |
| 717 | { |
| 718 | static const char * const nodes_path_8mq[] = { |
| 719 | "/vpu@38300000", |
| 720 | "/soc@0/vpu@38300000" |
| 721 | }; |
| 722 | |
| 723 | static const char * const nodes_path_8mm[] = { |
| 724 | "/vpu_g1@38300000", |
| 725 | "/vpu_g2@38310000", |
| 726 | "/vpu_h1@38320000" |
| 727 | }; |
| 728 | |
| 729 | static const char * const nodes_path_8mp[] = { |
| 730 | "/vpu_g1@38300000", |
| 731 | "/vpu_g2@38310000", |
| 732 | "/vpu_vc8000e@38320000" |
| 733 | }; |
| 734 | |
| 735 | if (is_imx8mq()) |
| 736 | return disable_fdt_nodes(blob, nodes_path_8mq, ARRAY_SIZE(nodes_path_8mq)); |
| 737 | else if (is_imx8mm()) |
| 738 | return disable_fdt_nodes(blob, nodes_path_8mm, ARRAY_SIZE(nodes_path_8mm)); |
| 739 | else if (is_imx8mp()) |
| 740 | return disable_fdt_nodes(blob, nodes_path_8mp, ARRAY_SIZE(nodes_path_8mp)); |
| 741 | else |
| 742 | return -EPERM; |
| 743 | } |
| 744 | |
Ye Li | 98bcdf1 | 2021-03-19 15:57:09 +0800 | [diff] [blame] | 745 | #ifdef CONFIG_IMX8MN_LOW_DRIVE_MODE |
| 746 | static int low_drive_gpu_freq(void *blob) |
| 747 | { |
| 748 | static const char *nodes_path_8mn[] = { |
| 749 | "/gpu@38000000", |
| 750 | "/soc@0/gpu@38000000" |
| 751 | }; |
| 752 | |
| 753 | int nodeoff, cnt, i; |
| 754 | u32 assignedclks[7]; |
| 755 | |
| 756 | nodeoff = fdt_path_offset(blob, nodes_path_8mn[0]); |
| 757 | if (nodeoff < 0) |
| 758 | return nodeoff; |
| 759 | |
| 760 | cnt = fdtdec_get_int_array_count(blob, nodeoff, "assigned-clock-rates", assignedclks, 7); |
| 761 | if (cnt < 0) |
| 762 | return cnt; |
| 763 | |
| 764 | if (cnt != 7) |
| 765 | printf("Warning: %s, assigned-clock-rates count %d\n", nodes_path_8mn[0], cnt); |
| 766 | |
| 767 | assignedclks[cnt - 1] = 200000000; |
| 768 | assignedclks[cnt - 2] = 200000000; |
| 769 | |
| 770 | for (i = 0; i < cnt; i++) { |
| 771 | debug("<%u>, ", assignedclks[i]); |
| 772 | assignedclks[i] = cpu_to_fdt32(assignedclks[i]); |
| 773 | } |
| 774 | debug("\n"); |
| 775 | |
| 776 | return fdt_setprop(blob, nodeoff, "assigned-clock-rates", &assignedclks, sizeof(assignedclks)); |
| 777 | } |
| 778 | #endif |
| 779 | |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 780 | int disable_gpu_nodes(void *blob) |
| 781 | { |
| 782 | static const char * const nodes_path_8mn[] = { |
Peng Fan | c0e2f76 | 2021-03-19 15:57:13 +0800 | [diff] [blame^] | 783 | "/gpu@38000000", |
| 784 | "/soc@/gpu@38000000" |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 785 | }; |
| 786 | |
| 787 | return disable_fdt_nodes(blob, nodes_path_8mn, ARRAY_SIZE(nodes_path_8mn)); |
| 788 | } |
| 789 | |
| 790 | int disable_npu_nodes(void *blob) |
| 791 | { |
| 792 | static const char * const nodes_path_8mp[] = { |
| 793 | "/vipsi@38500000" |
| 794 | }; |
| 795 | |
| 796 | return disable_fdt_nodes(blob, nodes_path_8mp, ARRAY_SIZE(nodes_path_8mp)); |
| 797 | } |
| 798 | |
| 799 | int disable_isp_nodes(void *blob) |
| 800 | { |
| 801 | static const char * const nodes_path_8mp[] = { |
| 802 | "/soc@0/bus@32c00000/camera/isp@32e10000", |
| 803 | "/soc@0/bus@32c00000/camera/isp@32e20000" |
| 804 | }; |
| 805 | |
| 806 | return disable_fdt_nodes(blob, nodes_path_8mp, ARRAY_SIZE(nodes_path_8mp)); |
| 807 | } |
| 808 | |
| 809 | int disable_dsp_nodes(void *blob) |
| 810 | { |
| 811 | static const char * const nodes_path_8mp[] = { |
| 812 | "/dsp@3b6e8000" |
| 813 | }; |
| 814 | |
| 815 | return disable_fdt_nodes(blob, nodes_path_8mp, ARRAY_SIZE(nodes_path_8mp)); |
| 816 | } |
| 817 | |
Ye Li | 4e83c05 | 2021-03-19 15:57:12 +0800 | [diff] [blame] | 818 | static void disable_thermal_cpu_nodes(void *blob, u32 disabled_cores) |
| 819 | { |
| 820 | static const char * const thermal_path[] = { |
| 821 | "/thermal-zones/cpu-thermal/cooling-maps/map0" |
| 822 | }; |
| 823 | |
| 824 | int nodeoff, cnt, i, ret, j; |
| 825 | u32 cooling_dev[12]; |
| 826 | |
| 827 | for (i = 0; i < ARRAY_SIZE(thermal_path); i++) { |
| 828 | nodeoff = fdt_path_offset(blob, thermal_path[i]); |
| 829 | if (nodeoff < 0) |
| 830 | continue; /* Not found, skip it */ |
| 831 | |
| 832 | cnt = fdtdec_get_int_array_count(blob, nodeoff, "cooling-device", cooling_dev, 12); |
| 833 | if (cnt < 0) |
| 834 | continue; |
| 835 | |
| 836 | if (cnt != 12) |
| 837 | printf("Warning: %s, cooling-device count %d\n", thermal_path[i], cnt); |
| 838 | |
| 839 | for (j = 0; j < cnt; j++) |
| 840 | cooling_dev[j] = cpu_to_fdt32(cooling_dev[j]); |
| 841 | |
| 842 | ret = fdt_setprop(blob, nodeoff, "cooling-device", &cooling_dev, |
| 843 | sizeof(u32) * (12 - disabled_cores * 3)); |
| 844 | if (ret < 0) { |
| 845 | printf("Warning: %s, cooling-device setprop failed %d\n", |
| 846 | thermal_path[i], ret); |
| 847 | continue; |
| 848 | } |
| 849 | |
| 850 | printf("Update node %s, cooling-device prop\n", thermal_path[i]); |
| 851 | } |
| 852 | } |
| 853 | |
| 854 | static void disable_pmu_cpu_nodes(void *blob, u32 disabled_cores) |
| 855 | { |
| 856 | static const char * const pmu_path[] = { |
| 857 | "/pmu" |
| 858 | }; |
| 859 | |
| 860 | int nodeoff, cnt, i, ret, j; |
| 861 | u32 irq_affinity[4]; |
| 862 | |
| 863 | for (i = 0; i < ARRAY_SIZE(pmu_path); i++) { |
| 864 | nodeoff = fdt_path_offset(blob, pmu_path[i]); |
| 865 | if (nodeoff < 0) |
| 866 | continue; /* Not found, skip it */ |
| 867 | |
| 868 | cnt = fdtdec_get_int_array_count(blob, nodeoff, "interrupt-affinity", |
| 869 | irq_affinity, 4); |
| 870 | if (cnt < 0) |
| 871 | continue; |
| 872 | |
| 873 | if (cnt != 4) |
| 874 | printf("Warning: %s, interrupt-affinity count %d\n", pmu_path[i], cnt); |
| 875 | |
| 876 | for (j = 0; j < cnt; j++) |
| 877 | irq_affinity[j] = cpu_to_fdt32(irq_affinity[j]); |
| 878 | |
| 879 | ret = fdt_setprop(blob, nodeoff, "interrupt-affinity", &irq_affinity, |
| 880 | sizeof(u32) * (4 - disabled_cores)); |
| 881 | if (ret < 0) { |
| 882 | printf("Warning: %s, interrupt-affinity setprop failed %d\n", |
| 883 | pmu_path[i], ret); |
| 884 | continue; |
| 885 | } |
| 886 | |
| 887 | printf("Update node %s, interrupt-affinity prop\n", pmu_path[i]); |
| 888 | } |
| 889 | } |
| 890 | |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 891 | static int disable_cpu_nodes(void *blob, u32 disabled_cores) |
| 892 | { |
| 893 | static const char * const nodes_path[] = { |
| 894 | "/cpus/cpu@1", |
| 895 | "/cpus/cpu@2", |
| 896 | "/cpus/cpu@3", |
| 897 | }; |
| 898 | u32 i = 0; |
| 899 | int rc; |
| 900 | int nodeoff; |
| 901 | |
| 902 | if (disabled_cores > 3) |
| 903 | return -EINVAL; |
| 904 | |
| 905 | i = 3 - disabled_cores; |
| 906 | |
| 907 | for (; i < 3; i++) { |
| 908 | nodeoff = fdt_path_offset(blob, nodes_path[i]); |
| 909 | if (nodeoff < 0) |
| 910 | continue; /* Not found, skip it */ |
| 911 | |
| 912 | debug("Found %s node\n", nodes_path[i]); |
| 913 | |
| 914 | rc = fdt_del_node(blob, nodeoff); |
| 915 | if (rc < 0) { |
| 916 | printf("Unable to delete node %s, err=%s\n", |
| 917 | nodes_path[i], fdt_strerror(rc)); |
| 918 | } else { |
| 919 | printf("Delete node %s\n", nodes_path[i]); |
| 920 | } |
| 921 | } |
| 922 | |
Ye Li | 4e83c05 | 2021-03-19 15:57:12 +0800 | [diff] [blame] | 923 | disable_thermal_cpu_nodes(blob, disabled_cores); |
| 924 | disable_pmu_cpu_nodes(blob, disabled_cores); |
| 925 | |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 926 | return 0; |
| 927 | } |
| 928 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 929 | int ft_system_setup(void *blob, struct bd_info *bd) |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 930 | { |
| 931 | #ifdef CONFIG_IMX8MQ |
| 932 | int i = 0; |
| 933 | int rc; |
| 934 | int nodeoff; |
| 935 | |
| 936 | if (get_boot_device() == USB_BOOT) { |
| 937 | disable_dcss_nodes(blob); |
| 938 | |
| 939 | bool new_path = check_fdt_new_path(blob); |
| 940 | int v = new_path ? 1 : 0; |
| 941 | static const char * const usb_dwc3_path[] = { |
| 942 | "/usb@38100000/dwc3", |
| 943 | "/soc@0/usb@38100000" |
| 944 | }; |
| 945 | |
| 946 | nodeoff = fdt_path_offset(blob, usb_dwc3_path[v]); |
| 947 | if (nodeoff >= 0) { |
| 948 | const char *speed = "high-speed"; |
| 949 | |
| 950 | printf("Found %s node\n", usb_dwc3_path[v]); |
| 951 | |
| 952 | usb_modify_speed: |
| 953 | |
| 954 | rc = fdt_setprop(blob, nodeoff, "maximum-speed", speed, strlen(speed) + 1); |
| 955 | if (rc) { |
| 956 | if (rc == -FDT_ERR_NOSPACE) { |
| 957 | rc = fdt_increase_size(blob, 512); |
| 958 | if (!rc) |
| 959 | goto usb_modify_speed; |
| 960 | } |
| 961 | printf("Unable to set property %s:%s, err=%s\n", |
| 962 | usb_dwc3_path[v], "maximum-speed", fdt_strerror(rc)); |
| 963 | } else { |
| 964 | printf("Modify %s:%s = %s\n", |
| 965 | usb_dwc3_path[v], "maximum-speed", speed); |
| 966 | } |
| 967 | } else { |
| 968 | printf("Can't found %s node\n", usb_dwc3_path[v]); |
| 969 | } |
| 970 | } |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 971 | |
| 972 | /* Disable the CPU idle for A0 chip since the HW does not support it */ |
| 973 | if (is_soc_rev(CHIP_REV_1_0)) { |
| 974 | static const char * const nodes_path[] = { |
| 975 | "/cpus/cpu@0", |
| 976 | "/cpus/cpu@1", |
| 977 | "/cpus/cpu@2", |
| 978 | "/cpus/cpu@3", |
| 979 | }; |
| 980 | |
| 981 | for (i = 0; i < ARRAY_SIZE(nodes_path); i++) { |
| 982 | nodeoff = fdt_path_offset(blob, nodes_path[i]); |
| 983 | if (nodeoff < 0) |
| 984 | continue; /* Not found, skip it */ |
| 985 | |
Marek Vasut | dabaabd | 2020-04-24 21:37:33 +0200 | [diff] [blame] | 986 | debug("Found %s node\n", nodes_path[i]); |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 987 | |
| 988 | rc = fdt_delprop(blob, nodeoff, "cpu-idle-states"); |
Marek Vasut | dabaabd | 2020-04-24 21:37:33 +0200 | [diff] [blame] | 989 | if (rc == -FDT_ERR_NOTFOUND) |
| 990 | continue; |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 991 | if (rc) { |
| 992 | printf("Unable to update property %s:%s, err=%s\n", |
| 993 | nodes_path[i], "status", fdt_strerror(rc)); |
| 994 | return rc; |
| 995 | } |
| 996 | |
Marek Vasut | dabaabd | 2020-04-24 21:37:33 +0200 | [diff] [blame] | 997 | debug("Remove %s:%s\n", nodes_path[i], |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 998 | "cpu-idle-states"); |
| 999 | } |
| 1000 | } |
| 1001 | |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 1002 | if (is_imx8mql()) { |
| 1003 | disable_vpu_nodes(blob); |
| 1004 | if (check_dcss_fused()) { |
| 1005 | printf("DCSS is fused\n"); |
| 1006 | disable_dcss_nodes(blob); |
| 1007 | check_mipi_dsi_nodes(blob); |
| 1008 | } |
| 1009 | } |
| 1010 | |
| 1011 | if (is_imx8md()) |
| 1012 | disable_cpu_nodes(blob, 2); |
| 1013 | |
| 1014 | #elif defined(CONFIG_IMX8MM) |
| 1015 | if (is_imx8mml() || is_imx8mmdl() || is_imx8mmsl()) |
| 1016 | disable_vpu_nodes(blob); |
| 1017 | |
| 1018 | if (is_imx8mmd() || is_imx8mmdl()) |
| 1019 | disable_cpu_nodes(blob, 2); |
| 1020 | else if (is_imx8mms() || is_imx8mmsl()) |
| 1021 | disable_cpu_nodes(blob, 3); |
| 1022 | |
| 1023 | #elif defined(CONFIG_IMX8MN) |
| 1024 | if (is_imx8mnl() || is_imx8mndl() || is_imx8mnsl()) |
| 1025 | disable_gpu_nodes(blob); |
Ye Li | 98bcdf1 | 2021-03-19 15:57:09 +0800 | [diff] [blame] | 1026 | #ifdef CONFIG_IMX8MN_LOW_DRIVE_MODE |
| 1027 | else { |
| 1028 | int ldm_gpu = low_drive_gpu_freq(blob); |
| 1029 | |
| 1030 | if (ldm_gpu < 0) |
| 1031 | printf("Update GPU node assigned-clock-rates failed\n"); |
| 1032 | else |
| 1033 | printf("Update GPU node assigned-clock-rates ok\n"); |
| 1034 | } |
| 1035 | #endif |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 1036 | |
Ye Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 1037 | if (is_imx8mnd() || is_imx8mndl() || is_imx8mnud()) |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 1038 | disable_cpu_nodes(blob, 2); |
Ye Li | c4f78cb | 2021-03-19 15:57:11 +0800 | [diff] [blame] | 1039 | else if (is_imx8mns() || is_imx8mnsl() || is_imx8mnus()) |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 1040 | disable_cpu_nodes(blob, 3); |
| 1041 | |
| 1042 | #elif defined(CONFIG_IMX8MP) |
Peng Fan | 0098222 | 2020-09-16 15:17:22 +0800 | [diff] [blame] | 1043 | if (is_imx8mpl()) |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 1044 | disable_vpu_nodes(blob); |
| 1045 | |
Peng Fan | 0098222 | 2020-09-16 15:17:22 +0800 | [diff] [blame] | 1046 | if (is_imx8mpl() || is_imx8mp6()) |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 1047 | disable_npu_nodes(blob); |
| 1048 | |
Peng Fan | 0098222 | 2020-09-16 15:17:22 +0800 | [diff] [blame] | 1049 | if (is_imx8mpl()) |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 1050 | disable_isp_nodes(blob); |
| 1051 | |
Peng Fan | 0098222 | 2020-09-16 15:17:22 +0800 | [diff] [blame] | 1052 | if (is_imx8mpl() || is_imx8mp6()) |
Peng Fan | 6036dba | 2020-07-09 14:06:49 +0800 | [diff] [blame] | 1053 | disable_dsp_nodes(blob); |
| 1054 | |
| 1055 | if (is_imx8mpd()) |
| 1056 | disable_cpu_nodes(blob, 2); |
| 1057 | #endif |
| 1058 | |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 1059 | return 0; |
| 1060 | } |
| 1061 | #endif |
| 1062 | |
Marek Vasut | efa1a62 | 2020-04-29 15:04:21 +0200 | [diff] [blame] | 1063 | #if !CONFIG_IS_ENABLED(SYSRESET) |
Harald Seiler | 35b65dd | 2020-12-15 16:47:52 +0100 | [diff] [blame] | 1064 | void reset_cpu(void) |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 1065 | { |
Claudius Heine | c5635a0 | 2020-04-29 15:04:23 +0200 | [diff] [blame] | 1066 | struct watchdog_regs *wdog = (struct watchdog_regs *)WDOG1_BASE_ADDR; |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 1067 | |
Ye Li | 7247974 | 2019-12-09 00:47:18 -0800 | [diff] [blame] | 1068 | /* Clear WDA to trigger WDOG_B immediately */ |
| 1069 | writew((SET_WCR_WT(1) | WCR_WDT | WCR_WDE | WCR_SRS), &wdog->wcr); |
Peng Fan | d204172 | 2019-08-27 06:25:41 +0000 | [diff] [blame] | 1070 | |
Ye Li | 7247974 | 2019-12-09 00:47:18 -0800 | [diff] [blame] | 1071 | while (1) { |
| 1072 | /* |
Harald Seiler | 568af92 | 2020-04-29 15:04:22 +0200 | [diff] [blame] | 1073 | * spin for .5 seconds before reset |
Ye Li | 7247974 | 2019-12-09 00:47:18 -0800 | [diff] [blame] | 1074 | */ |
| 1075 | } |
Peng Fan | fcdbde7 | 2018-01-10 13:20:37 +0800 | [diff] [blame] | 1076 | } |
Peng Fan | d204172 | 2019-08-27 06:25:41 +0000 | [diff] [blame] | 1077 | #endif |
Peng Fan | a07bcec | 2020-04-22 10:51:13 +0800 | [diff] [blame] | 1078 | |
| 1079 | #if defined(CONFIG_ARCH_MISC_INIT) |
| 1080 | static void acquire_buildinfo(void) |
| 1081 | { |
| 1082 | u64 atf_commit = 0; |
Peng Fan | a2f143e | 2020-05-11 15:14:04 +0800 | [diff] [blame] | 1083 | struct arm_smccc_res res; |
Peng Fan | a07bcec | 2020-04-22 10:51:13 +0800 | [diff] [blame] | 1084 | |
| 1085 | /* Get ARM Trusted Firmware commit id */ |
Peng Fan | a2f143e | 2020-05-11 15:14:04 +0800 | [diff] [blame] | 1086 | arm_smccc_smc(IMX_SIP_BUILDINFO, IMX_SIP_BUILDINFO_GET_COMMITHASH, |
Fabio Estevam | 68a699e | 2020-07-17 16:36:54 -0300 | [diff] [blame] | 1087 | 0, 0, 0, 0, 0, 0, &res); |
Peng Fan | a2f143e | 2020-05-11 15:14:04 +0800 | [diff] [blame] | 1088 | atf_commit = res.a0; |
Peng Fan | a07bcec | 2020-04-22 10:51:13 +0800 | [diff] [blame] | 1089 | if (atf_commit == 0xffffffff) { |
| 1090 | debug("ATF does not support build info\n"); |
| 1091 | atf_commit = 0x30; /* Display 0, 0 ascii is 0x30 */ |
| 1092 | } |
| 1093 | |
| 1094 | printf("\n BuildInfo:\n - ATF %s\n\n", (char *)&atf_commit); |
| 1095 | } |
| 1096 | |
| 1097 | int arch_misc_init(void) |
| 1098 | { |
| 1099 | acquire_buildinfo(); |
| 1100 | |
| 1101 | return 0; |
| 1102 | } |
| 1103 | #endif |
Ye Li | 70487ff | 2020-05-03 22:19:52 +0800 | [diff] [blame] | 1104 | |
| 1105 | void imx_tmu_arch_init(void *reg_base) |
| 1106 | { |
Ye Li | 94c693d | 2020-05-03 22:19:53 +0800 | [diff] [blame] | 1107 | if (is_imx8mm() || is_imx8mn()) { |
Ye Li | 70487ff | 2020-05-03 22:19:52 +0800 | [diff] [blame] | 1108 | /* Load TCALIV and TASR from fuses */ |
| 1109 | struct ocotp_regs *ocotp = |
| 1110 | (struct ocotp_regs *)OCOTP_BASE_ADDR; |
| 1111 | struct fuse_bank *bank = &ocotp->bank[3]; |
| 1112 | struct fuse_bank3_regs *fuse = |
| 1113 | (struct fuse_bank3_regs *)bank->fuse_regs; |
| 1114 | |
| 1115 | u32 tca_rt, tca_hr, tca_en; |
| 1116 | u32 buf_vref, buf_slope; |
| 1117 | |
| 1118 | tca_rt = fuse->ana0 & 0xFF; |
| 1119 | tca_hr = (fuse->ana0 & 0xFF00) >> 8; |
| 1120 | tca_en = (fuse->ana0 & 0x2000000) >> 25; |
| 1121 | |
| 1122 | buf_vref = (fuse->ana0 & 0x1F00000) >> 20; |
| 1123 | buf_slope = (fuse->ana0 & 0xF0000) >> 16; |
| 1124 | |
| 1125 | writel(buf_vref | (buf_slope << 16), (ulong)reg_base + 0x28); |
| 1126 | writel((tca_en << 31) | (tca_hr << 16) | tca_rt, |
| 1127 | (ulong)reg_base + 0x30); |
| 1128 | } |
Ye Li | ebb9aab | 2020-05-03 22:19:54 +0800 | [diff] [blame] | 1129 | #ifdef CONFIG_IMX8MP |
| 1130 | /* Load TCALIV0/1/m40 and TRIM from fuses */ |
| 1131 | struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR; |
| 1132 | struct fuse_bank *bank = &ocotp->bank[38]; |
| 1133 | struct fuse_bank38_regs *fuse = |
| 1134 | (struct fuse_bank38_regs *)bank->fuse_regs; |
| 1135 | struct fuse_bank *bank2 = &ocotp->bank[39]; |
| 1136 | struct fuse_bank39_regs *fuse2 = |
| 1137 | (struct fuse_bank39_regs *)bank2->fuse_regs; |
| 1138 | u32 buf_vref, buf_slope, bjt_cur, vlsb, bgr; |
| 1139 | u32 reg; |
| 1140 | u32 tca40[2], tca25[2], tca105[2]; |
| 1141 | |
| 1142 | /* For blank sample */ |
| 1143 | if (!fuse->ana_trim2 && !fuse->ana_trim3 && |
| 1144 | !fuse->ana_trim4 && !fuse2->ana_trim5) { |
| 1145 | /* Use a default 25C binary codes */ |
| 1146 | tca25[0] = 1596; |
Ye Li | 3462b55 | 2020-05-03 22:19:55 +0800 | [diff] [blame] | 1147 | tca25[1] = 1596; |
Ye Li | ebb9aab | 2020-05-03 22:19:54 +0800 | [diff] [blame] | 1148 | writel(tca25[0], (ulong)reg_base + 0x30); |
Ye Li | 3462b55 | 2020-05-03 22:19:55 +0800 | [diff] [blame] | 1149 | writel(tca25[1], (ulong)reg_base + 0x34); |
Ye Li | ebb9aab | 2020-05-03 22:19:54 +0800 | [diff] [blame] | 1150 | return; |
| 1151 | } |
| 1152 | |
| 1153 | buf_vref = (fuse->ana_trim2 & 0xc0) >> 6; |
| 1154 | buf_slope = (fuse->ana_trim2 & 0xF00) >> 8; |
| 1155 | bjt_cur = (fuse->ana_trim2 & 0xF000) >> 12; |
| 1156 | bgr = (fuse->ana_trim2 & 0xF0000) >> 16; |
| 1157 | vlsb = (fuse->ana_trim2 & 0xF00000) >> 20; |
| 1158 | writel(buf_vref | (buf_slope << 16), (ulong)reg_base + 0x28); |
| 1159 | |
| 1160 | reg = (bgr << 28) | (bjt_cur << 20) | (vlsb << 12) | (1 << 7); |
| 1161 | writel(reg, (ulong)reg_base + 0x3c); |
| 1162 | |
| 1163 | tca40[0] = (fuse->ana_trim3 & 0xFFF0000) >> 16; |
| 1164 | tca25[0] = (fuse->ana_trim3 & 0xF0000000) >> 28; |
| 1165 | tca25[0] |= ((fuse->ana_trim4 & 0xFF) << 4); |
| 1166 | tca105[0] = (fuse->ana_trim4 & 0xFFF00) >> 8; |
| 1167 | tca40[1] = (fuse->ana_trim4 & 0xFFF00000) >> 20; |
| 1168 | tca25[1] = fuse2->ana_trim5 & 0xFFF; |
| 1169 | tca105[1] = (fuse2->ana_trim5 & 0xFFF000) >> 12; |
| 1170 | |
| 1171 | /* use 25c for 1p calibration */ |
| 1172 | writel(tca25[0] | (tca105[0] << 16), (ulong)reg_base + 0x30); |
| 1173 | writel(tca25[1] | (tca105[1] << 16), (ulong)reg_base + 0x34); |
| 1174 | writel(tca40[0] | (tca40[1] << 16), (ulong)reg_base + 0x38); |
| 1175 | #endif |
Ye Li | 70487ff | 2020-05-03 22:19:52 +0800 | [diff] [blame] | 1176 | } |
Peng Fan | 2f3c920 | 2020-07-09 13:39:26 +0800 | [diff] [blame] | 1177 | |
| 1178 | #if defined(CONFIG_SPL_BUILD) |
| 1179 | #if defined(CONFIG_IMX8MQ) || defined(CONFIG_IMX8MM) || defined(CONFIG_IMX8MN) |
| 1180 | bool serror_need_skip = true; |
| 1181 | |
| 1182 | void do_error(struct pt_regs *pt_regs, unsigned int esr) |
| 1183 | { |
| 1184 | /* |
| 1185 | * If stack is still in ROM reserved OCRAM not switch to SPL, |
| 1186 | * it is the ROM SError |
| 1187 | */ |
| 1188 | ulong sp; |
| 1189 | |
| 1190 | asm volatile("mov %0, sp" : "=r"(sp) : ); |
| 1191 | |
| 1192 | if (serror_need_skip && sp < 0x910000 && sp >= 0x900000) { |
| 1193 | /* Check for ERR050342, imx8mq HDCP enabled parts */ |
| 1194 | if (is_imx8mq() && !(readl(OCOTP_BASE_ADDR + 0x450) & 0x08000000)) { |
| 1195 | serror_need_skip = false; |
| 1196 | return; /* Do nothing skip the SError in ROM */ |
| 1197 | } |
| 1198 | |
| 1199 | /* Check for ERR050350, field return mode for imx8mq, mm and mn */ |
| 1200 | if (readl(OCOTP_BASE_ADDR + 0x630) & 0x1) { |
| 1201 | serror_need_skip = false; |
| 1202 | return; /* Do nothing skip the SError in ROM */ |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | efi_restore_gd(); |
| 1207 | printf("\"Error\" handler, esr 0x%08x\n", esr); |
| 1208 | show_regs(pt_regs); |
| 1209 | panic("Resetting CPU ...\n"); |
| 1210 | } |
| 1211 | #endif |
| 1212 | #endif |
Ye Li | 2707faf | 2019-07-15 01:16:46 -0700 | [diff] [blame] | 1213 | |
| 1214 | #if defined(CONFIG_IMX8MN) || defined(CONFIG_IMX8MP) |
| 1215 | enum env_location env_get_location(enum env_operation op, int prio) |
| 1216 | { |
| 1217 | enum boot_device dev = get_boot_device(); |
| 1218 | enum env_location env_loc = ENVL_UNKNOWN; |
| 1219 | |
| 1220 | if (prio) |
| 1221 | return env_loc; |
| 1222 | |
| 1223 | switch (dev) { |
| 1224 | #ifdef CONFIG_ENV_IS_IN_SPI_FLASH |
| 1225 | case QSPI_BOOT: |
| 1226 | env_loc = ENVL_SPI_FLASH; |
| 1227 | break; |
| 1228 | #endif |
| 1229 | #ifdef CONFIG_ENV_IS_IN_NAND |
| 1230 | case NAND_BOOT: |
| 1231 | env_loc = ENVL_NAND; |
| 1232 | break; |
| 1233 | #endif |
| 1234 | #ifdef CONFIG_ENV_IS_IN_MMC |
| 1235 | case SD1_BOOT: |
| 1236 | case SD2_BOOT: |
| 1237 | case SD3_BOOT: |
| 1238 | case MMC1_BOOT: |
| 1239 | case MMC2_BOOT: |
| 1240 | case MMC3_BOOT: |
| 1241 | env_loc = ENVL_MMC; |
| 1242 | break; |
| 1243 | #endif |
| 1244 | default: |
| 1245 | #if defined(CONFIG_ENV_IS_NOWHERE) |
| 1246 | env_loc = ENVL_NOWHERE; |
| 1247 | #endif |
| 1248 | break; |
| 1249 | } |
| 1250 | |
| 1251 | return env_loc; |
| 1252 | } |
| 1253 | |
| 1254 | #ifndef ENV_IS_EMBEDDED |
| 1255 | long long env_get_offset(long long defautl_offset) |
| 1256 | { |
| 1257 | enum boot_device dev = get_boot_device(); |
| 1258 | |
| 1259 | switch (dev) { |
| 1260 | case NAND_BOOT: |
| 1261 | return (60 << 20); /* 60MB offset for NAND */ |
| 1262 | default: |
| 1263 | break; |
| 1264 | } |
| 1265 | |
| 1266 | return defautl_offset; |
| 1267 | } |
| 1268 | #endif |
| 1269 | #endif |