1 // SPDX-License-Identifier: GPL-2.0+
4 * Sascha Hauer, Pengutronix
6 * (C) Copyright 2009 Freescale Semiconductor, Inc.
16 #include <linux/errno.h>
18 #include <asm/arch/imx-regs.h>
19 #include <asm/arch/clock.h>
20 #include <asm/arch/sys_proto.h>
21 #include <asm/arch/crm_regs.h>
22 #include <asm/mach-imx/boot_mode.h>
23 #include <imx_thermal.h>
24 #include <ipu_pixfmt.h>
27 #include <dm/device-internal.h>
28 #include <dm/uclass-internal.h>
30 #ifdef CONFIG_FSL_ESDHC_IMX
31 #include <fsl_esdhc_imx.h>
34 static u32 reset_cause = -1;
36 u32 get_imx_reset_cause(void)
38 struct src *src_regs = (struct src *)SRC_BASE_ADDR;
40 if (reset_cause == -1) {
41 reset_cause = readl(&src_regs->srsr);
42 /* preserve the value for U-Boot proper */
43 #if !defined(CONFIG_SPL_BUILD)
44 writel(reset_cause, &src_regs->srsr);
51 #if defined(CONFIG_DISPLAY_CPUINFO) && !defined(CONFIG_SPL_BUILD)
52 static char *get_reset_cause(void)
54 switch (get_imx_reset_cause()) {
79 #elif defined(CONFIG_IMX8M)
91 return "unknown reset";
96 #if defined(CONFIG_DISPLAY_CPUINFO) && !defined(CONFIG_SPL_BUILD)
98 const char *get_imx_type(u32 imxtype)
102 return "8MP[8]"; /* Quad-core version of the imx8mp */
103 case MXC_CPU_IMX8MPD:
104 return "8MP Dual[3]"; /* Dual-core version of the imx8mp */
105 case MXC_CPU_IMX8MPL:
106 return "8MP Lite[4]"; /* Quad-core Lite version of the imx8mp */
107 case MXC_CPU_IMX8MP6:
108 return "8MP[6]"; /* Quad-core version of the imx8mp, NPU fused */
110 return "8MNano Quad"; /* Quad-core version */
111 case MXC_CPU_IMX8MND:
112 return "8MNano Dual"; /* Dual-core version */
113 case MXC_CPU_IMX8MNS:
114 return "8MNano Solo"; /* Single-core version */
115 case MXC_CPU_IMX8MNL:
116 return "8MNano QuadLite"; /* Quad-core Lite version */
117 case MXC_CPU_IMX8MNDL:
118 return "8MNano DualLite"; /* Dual-core Lite version */
119 case MXC_CPU_IMX8MNSL:
120 return "8MNano SoloLite"; /* Single-core Lite version */
122 return "8MMQ"; /* Quad-core version of the imx8mm */
123 case MXC_CPU_IMX8MML:
124 return "8MMQL"; /* Quad-core Lite version of the imx8mm */
125 case MXC_CPU_IMX8MMD:
126 return "8MMD"; /* Dual-core version of the imx8mm */
127 case MXC_CPU_IMX8MMDL:
128 return "8MMDL"; /* Dual-core Lite version of the imx8mm */
129 case MXC_CPU_IMX8MMS:
130 return "8MMS"; /* Single-core version of the imx8mm */
131 case MXC_CPU_IMX8MMSL:
132 return "8MMSL"; /* Single-core Lite version of the imx8mm */
134 return "8MQ"; /* Quad-core version of the imx8mq */
135 case MXC_CPU_IMX8MQL:
136 return "8MQLite"; /* Quad-core Lite version of the imx8mq */
138 return "8MD"; /* Dual-core version of the imx8mq */
140 return "7S"; /* Single-core version of the mx7 */
142 return "7D"; /* Dual-core version of the mx7 */
144 return "6QP"; /* Quad-Plus version of the mx6 */
146 return "6DP"; /* Dual-Plus version of the mx6 */
148 return "6Q"; /* Quad-core version of the mx6 */
150 return "6D"; /* Dual-core version of the mx6 */
152 return "6DL"; /* Dual Lite version of the mx6 */
153 case MXC_CPU_MX6SOLO:
154 return "6SOLO"; /* Solo version of the mx6 */
156 return "6SL"; /* Solo-Lite version of the mx6 */
158 return "6SLL"; /* SLL version of the mx6 */
160 return "6SX"; /* SoloX version of the mx6 */
162 return "6UL"; /* Ultra-Lite version of the mx6 */
164 return "6ULL"; /* ULL version of the mx6 */
166 return "6ULZ"; /* ULZ version of the mx6 */
176 int print_cpuinfo(void)
179 __maybe_unused u32 max_freq;
181 cpurev = get_cpu_rev();
183 #if defined(CONFIG_IMX_THERMAL) || defined(CONFIG_IMX_TMU)
184 struct udevice *thermal_dev;
185 int cpu_tmp, minc, maxc, ret;
187 printf("CPU: Freescale i.MX%s rev%d.%d",
188 get_imx_type((cpurev & 0x1FF000) >> 12),
189 (cpurev & 0x000F0) >> 4,
190 (cpurev & 0x0000F) >> 0);
191 max_freq = get_cpu_speed_grade_hz();
192 if (!max_freq || max_freq == mxc_get_clock(MXC_ARM_CLK)) {
193 printf(" at %dMHz\n", mxc_get_clock(MXC_ARM_CLK) / 1000000);
195 printf(" %d MHz (running at %d MHz)\n", max_freq / 1000000,
196 mxc_get_clock(MXC_ARM_CLK) / 1000000);
199 printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
200 get_imx_type((cpurev & 0x1FF000) >> 12),
201 (cpurev & 0x000F0) >> 4,
202 (cpurev & 0x0000F) >> 0,
203 mxc_get_clock(MXC_ARM_CLK) / 1000000);
206 #if defined(CONFIG_IMX_THERMAL) || defined(CONFIG_IMX_TMU)
208 switch (get_cpu_temp_grade(&minc, &maxc)) {
209 case TEMP_AUTOMOTIVE:
210 puts("Automotive temperature grade ");
212 case TEMP_INDUSTRIAL:
213 puts("Industrial temperature grade ");
215 case TEMP_EXTCOMMERCIAL:
216 puts("Extended Commercial temperature grade ");
219 puts("Commercial temperature grade ");
222 printf("(%dC to %dC)", minc, maxc);
223 ret = uclass_get_device(UCLASS_THERMAL, 0, &thermal_dev);
225 ret = thermal_get_temp(thermal_dev, &cpu_tmp);
228 printf(" at %dC", cpu_tmp);
230 debug(" - invalid sensor data\n");
232 debug(" - invalid sensor device\n");
237 printf("Reset cause: %s\n", get_reset_cause());
242 int cpu_eth_init(struct bd_info *bis)
246 #if defined(CONFIG_FEC_MXC)
247 rc = fecmxc_initialize(bis);
253 #ifdef CONFIG_FSL_ESDHC_IMX
255 * Initializes on-chip MMC controllers.
256 * to override, implement board_mmc_init()
258 int cpu_mmc_init(struct bd_info *bis)
260 return fsl_esdhc_mmc_init(bis);
264 #if !(defined(CONFIG_MX7) || defined(CONFIG_IMX8M))
265 u32 get_ahb_clk(void)
267 struct mxc_ccm_reg *imx_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
270 reg = __raw_readl(&imx_ccm->cbcdr);
271 reg &= MXC_CCM_CBCDR_AHB_PODF_MASK;
272 ahb_podf = reg >> MXC_CCM_CBCDR_AHB_PODF_OFFSET;
274 return get_periph_clk() / (ahb_podf + 1);
278 void arch_preboot_os(void)
280 #if defined(CONFIG_PCIE_IMX) && !CONFIG_IS_ENABLED(DM_PCI)
284 #if defined(CONFIG_IMX_AHCI)
288 rc = uclass_find_device(UCLASS_AHCI, 0, &dev);
290 rc = device_remove(dev, DM_REMOVE_NORMAL);
292 printf("Cannot remove SATA device '%s' (err=%d)\n",
297 #if defined(CONFIG_SATA)
300 #if defined(CONFIG_MX6)
301 disable_sata_clock();
305 #if defined(CONFIG_VIDEO_IPUV3)
306 /* disable video before launching O/S */
309 #if defined(CONFIG_VIDEO_MXS) && !defined(CONFIG_DM_VIDEO)
315 void set_chipselect_size(int const cs_size)
318 struct iomuxc *iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR;
319 reg = readl(&iomuxc_regs->gpr[1]);
323 reg &= ~0x7; /* CS0=128MB, CS1=0, CS2=0, CS3=0 */
326 case CS0_64M_CS1_64M:
327 reg &= ~0x3F; /* CS0=64MB, CS1=64MB, CS2=0, CS3=0 */
330 case CS0_64M_CS1_32M_CS2_32M:
331 reg &= ~0x1FF; /* CS0=64MB, CS1=32MB, CS2=32MB, CS3=0 */
334 case CS0_32M_CS1_32M_CS2_32M_CS3_32M:
335 reg &= ~0xFFF; /* CS0=32MB, CS1=32MB, CS2=32MB, CS3=32MB */
339 printf("Unknown chip select size: %d\n", cs_size);
343 writel(reg, &iomuxc_regs->gpr[1]);
347 #if defined(CONFIG_MX7) || defined(CONFIG_IMX8M)
349 * OCOTP_TESTER3[9:8] (see Fusemap Description Table offset 0x440)
350 * defines a 2-bit SPEED_GRADING
352 #define OCOTP_TESTER3_SPEED_SHIFT 8
354 OCOTP_TESTER3_SPEED_GRADE0,
355 OCOTP_TESTER3_SPEED_GRADE1,
356 OCOTP_TESTER3_SPEED_GRADE2,
357 OCOTP_TESTER3_SPEED_GRADE3,
358 OCOTP_TESTER3_SPEED_GRADE4,
361 u32 get_cpu_speed_grade_hz(void)
363 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
364 struct fuse_bank *bank = &ocotp->bank[1];
365 struct fuse_bank1_regs *fuse =
366 (struct fuse_bank1_regs *)bank->fuse_regs;
369 val = readl(&fuse->tester3);
370 val >>= OCOTP_TESTER3_SPEED_SHIFT;
372 if (is_imx8mn() || is_imx8mp()) {
374 return 2300000000 - val * 100000000;
383 case OCOTP_TESTER3_SPEED_GRADE0:
385 case OCOTP_TESTER3_SPEED_GRADE1:
386 return (is_mx7() ? 500000000 : (is_imx8mq() ? 1000000000 : 1200000000));
387 case OCOTP_TESTER3_SPEED_GRADE2:
388 return (is_mx7() ? 1000000000 : (is_imx8mq() ? 1300000000 : 1600000000));
389 case OCOTP_TESTER3_SPEED_GRADE3:
390 return (is_mx7() ? 1200000000 : (is_imx8mq() ? 1500000000 : 1800000000));
391 case OCOTP_TESTER3_SPEED_GRADE4:
399 * OCOTP_TESTER3[7:6] (see Fusemap Description Table offset 0x440)
400 * defines a 2-bit SPEED_GRADING
402 #define OCOTP_TESTER3_TEMP_SHIFT 6
404 /* iMX8MP uses OCOTP_TESTER3[6:5] for Market segment */
405 #define IMX8MP_OCOTP_TESTER3_TEMP_SHIFT 5
407 u32 get_cpu_temp_grade(int *minc, int *maxc)
409 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
410 struct fuse_bank *bank = &ocotp->bank[1];
411 struct fuse_bank1_regs *fuse =
412 (struct fuse_bank1_regs *)bank->fuse_regs;
415 val = readl(&fuse->tester3);
417 val >>= IMX8MP_OCOTP_TESTER3_TEMP_SHIFT;
419 val >>= OCOTP_TESTER3_TEMP_SHIFT;
423 if (val == TEMP_AUTOMOTIVE) {
426 } else if (val == TEMP_INDUSTRIAL) {
429 } else if (val == TEMP_EXTCOMMERCIAL) {
441 #if defined(CONFIG_MX7) || defined(CONFIG_IMX8MQ) || defined(CONFIG_IMX8MM)
442 enum boot_device get_boot_device(void)
444 struct bootrom_sw_info **p =
445 (struct bootrom_sw_info **)(ulong)ROM_SW_INFO_ADDR;
447 enum boot_device boot_dev = SD1_BOOT;
448 u8 boot_type = (*p)->boot_dev_type;
449 u8 boot_instance = (*p)->boot_dev_instance;
453 boot_dev = boot_instance + SD1_BOOT;
456 boot_dev = boot_instance + MMC1_BOOT;
459 boot_dev = NAND_BOOT;
462 boot_dev = QSPI_BOOT;
465 boot_dev = WEIM_NOR_BOOT;
467 case BOOT_TYPE_SPINOR:
468 boot_dev = SPI_NOR_BOOT;
475 if (((readl(SRC_BASE_ADDR + 0x58) & 0x00007FFF) >> 12) == 0x4)
476 boot_dev = QSPI_BOOT;
485 #ifdef CONFIG_NXP_BOARD_REVISION
486 int nxp_board_rev(void)
489 * Get Board ID information from OCOTP_GP1[15:8]
494 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
495 struct fuse_bank *bank = &ocotp->bank[4];
496 struct fuse_bank4_regs *fuse =
497 (struct fuse_bank4_regs *)bank->fuse_regs;
499 return (readl(&fuse->gp1) >> 8 & 0x0F);
502 char nxp_board_rev_string(void)
504 const char *rev = "A";
506 return (*rev + nxp_board_rev() - 1);