Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
Gaurav Jain | 81113a0 | 2022-03-24 11:50:27 +0530 | [diff] [blame] | 3 | * Copyright 2019, 2021 NXP |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 7 | #include <command.h> |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 9 | #include <hang.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 10 | #include <image.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 13 | #include <spl.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 15 | #include <asm/io.h> |
| 16 | #include <asm/mach-imx/iomux-v3.h> |
| 17 | #include <asm/arch/clock.h> |
| 18 | #include <asm/arch/imx8mm_pins.h> |
| 19 | #include <asm/arch/sys_proto.h> |
| 20 | #include <asm/mach-imx/boot_mode.h> |
| 21 | #include <asm/arch/ddr.h> |
| 22 | |
| 23 | #include <dm/uclass.h> |
| 24 | #include <dm/device.h> |
| 25 | #include <dm/uclass-internal.h> |
| 26 | #include <dm/device-internal.h> |
| 27 | |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 28 | #include <power/pmic.h> |
Ye Li | 79e6970 | 2021-03-19 15:56:55 +0800 | [diff] [blame] | 29 | #include <power/pca9450.h> |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 30 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
| 33 | int spl_board_boot_device(enum boot_device boot_dev_spl) |
| 34 | { |
| 35 | switch (boot_dev_spl) { |
Fabio Estevam | e2b3a7b | 2022-09-19 21:20:13 -0300 | [diff] [blame] | 36 | case USB_BOOT: |
| 37 | return BOOT_DEVICE_BOARD; |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 38 | case SD2_BOOT: |
| 39 | case MMC2_BOOT: |
| 40 | return BOOT_DEVICE_MMC1; |
| 41 | case SD3_BOOT: |
| 42 | case MMC3_BOOT: |
| 43 | return BOOT_DEVICE_MMC2; |
Mamta Shukla | 3482429 | 2022-07-12 14:36:20 +0000 | [diff] [blame] | 44 | case QSPI_BOOT: |
| 45 | return BOOT_DEVICE_NOR; |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 46 | default: |
| 47 | return BOOT_DEVICE_NONE; |
| 48 | } |
| 49 | } |
| 50 | |
Alifer Moraes | f0119b6 | 2020-01-14 15:55:00 -0300 | [diff] [blame] | 51 | static void spl_dram_init(void) |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 52 | { |
| 53 | ddr_init(&dram_timing); |
| 54 | } |
| 55 | |
| 56 | void spl_board_init(void) |
| 57 | { |
Marek Vasut | 085555f | 2022-09-19 21:41:15 +0200 | [diff] [blame] | 58 | arch_misc_init(); |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | #ifdef CONFIG_SPL_LOAD_FIT |
| 62 | int board_fit_config_name_match(const char *name) |
| 63 | { |
| 64 | /* Just empty function now - can't decide what to choose */ |
| 65 | debug("%s: %s\n", __func__, name); |
| 66 | |
| 67 | return 0; |
| 68 | } |
| 69 | #endif |
| 70 | |
Alifer Moraes | f0119b6 | 2020-01-14 15:55:00 -0300 | [diff] [blame] | 71 | static int power_init_board(void) |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 72 | { |
| 73 | struct udevice *dev; |
| 74 | int ret; |
| 75 | |
Ye Li | 79e6970 | 2021-03-19 15:56:55 +0800 | [diff] [blame] | 76 | ret = pmic_get("pca9450@25", &dev); |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 77 | if (ret == -ENODEV) { |
| 78 | puts("No pmic\n"); |
| 79 | return 0; |
| 80 | } |
| 81 | if (ret != 0) |
| 82 | return ret; |
| 83 | |
Ye Li | 79e6970 | 2021-03-19 15:56:55 +0800 | [diff] [blame] | 84 | /* BUCKxOUT_DVS0/1 control BUCK123 output */ |
| 85 | pmic_reg_write(dev, PCA9450_BUCK123_DVS, 0x29); |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 86 | |
Ye Li | 79e6970 | 2021-03-19 15:56:55 +0800 | [diff] [blame] | 87 | /* Buck 1 DVS control through PMIC_STBY_REQ */ |
| 88 | pmic_reg_write(dev, PCA9450_BUCK1CTRL, 0x59); |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 89 | |
Ye Li | 79e6970 | 2021-03-19 15:56:55 +0800 | [diff] [blame] | 90 | /* Set DVS1 to 0.8v for suspend */ |
| 91 | pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS1, 0x10); |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 92 | |
Ye Li | 79e6970 | 2021-03-19 15:56:55 +0800 | [diff] [blame] | 93 | /* increase VDD_DRAM to 0.95v for 3Ghz DDR */ |
| 94 | pmic_reg_write(dev, PCA9450_BUCK3OUT_DVS0, 0x1C); |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 95 | |
Ye Li | 79e6970 | 2021-03-19 15:56:55 +0800 | [diff] [blame] | 96 | /* VDD_DRAM needs off in suspend, set B1_ENMODE=10 (ON by PMIC_ON_REQ = H && PMIC_STBY_REQ = L) */ |
| 97 | pmic_reg_write(dev, PCA9450_BUCK3CTRL, 0x4a); |
| 98 | |
| 99 | /* set VDD_SNVS_0V8 from default 0.85V */ |
| 100 | pmic_reg_write(dev, PCA9450_LDO2CTRL, 0xC0); |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 101 | |
Ye Li | 79e6970 | 2021-03-19 15:56:55 +0800 | [diff] [blame] | 102 | /* set WDOG_B_CFG to cold reset */ |
| 103 | pmic_reg_write(dev, PCA9450_RESET_CTRL, 0xA1); |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 104 | |
| 105 | return 0; |
| 106 | } |
| 107 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 108 | void board_init_f(ulong dummy) |
| 109 | { |
Peng Fan | b9b7688 | 2019-10-16 10:24:39 +0000 | [diff] [blame] | 110 | struct udevice *dev; |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 111 | int ret; |
| 112 | |
| 113 | arch_cpu_init(); |
| 114 | |
| 115 | init_uart_clk(1); |
| 116 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 117 | timer_init(); |
| 118 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 119 | /* Clear the BSS. */ |
| 120 | memset(__bss_start, 0, __bss_end - __bss_start); |
| 121 | |
Peng Fan | b9b7688 | 2019-10-16 10:24:39 +0000 | [diff] [blame] | 122 | ret = spl_early_init(); |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 123 | if (ret) { |
Peng Fan | b9b7688 | 2019-10-16 10:24:39 +0000 | [diff] [blame] | 124 | debug("spl_early_init() failed: %d\n", ret); |
| 125 | hang(); |
| 126 | } |
| 127 | |
| 128 | ret = uclass_get_device_by_name(UCLASS_CLK, |
| 129 | "clock-controller@30380000", |
| 130 | &dev); |
| 131 | if (ret < 0) { |
| 132 | printf("Failed to find clock node. Check device tree\n"); |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 133 | hang(); |
| 134 | } |
| 135 | |
Peng Fan | 4ee5ade | 2022-04-15 12:35:34 +0800 | [diff] [blame] | 136 | preloader_console_init(); |
| 137 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 138 | enable_tzc380(); |
| 139 | |
Peng Fan | a9e0433 | 2019-10-16 10:24:42 +0000 | [diff] [blame] | 140 | power_init_board(); |
| 141 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 142 | /* DDR initialization */ |
| 143 | spl_dram_init(); |
| 144 | |
| 145 | board_init_r(NULL, 0); |
| 146 | } |