Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright 2022 NXP |
| 4 | */ |
| 5 | |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 6 | #include <command.h> |
| 7 | #include <cpu_func.h> |
| 8 | #include <hang.h> |
| 9 | #include <image.h> |
| 10 | #include <init.h> |
| 11 | #include <log.h> |
| 12 | #include <spl.h> |
| 13 | #include <asm/global_data.h> |
| 14 | #include <asm/io.h> |
| 15 | #include <asm/arch/imx93_pins.h> |
Mathieu Othacehe | 72c6afe | 2024-02-09 11:30:07 +0100 | [diff] [blame] | 16 | #include <asm/arch/mu.h> |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 17 | #include <asm/arch/clock.h> |
| 18 | #include <asm/arch/sys_proto.h> |
| 19 | #include <asm/mach-imx/boot_mode.h> |
| 20 | #include <asm/mach-imx/mxc_i2c.h> |
| 21 | #include <asm/arch-mx7ulp/gpio.h> |
Mathieu Othacehe | 8bb6ede | 2024-02-26 18:37:18 +0100 | [diff] [blame] | 22 | #include <asm/mach-imx/ele_api.h> |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 23 | #include <asm/mach-imx/syscounter.h> |
Shiji Yang | bb11234 | 2023-08-03 09:47:16 +0800 | [diff] [blame] | 24 | #include <asm/sections.h> |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 25 | #include <dm/uclass.h> |
| 26 | #include <dm/device.h> |
| 27 | #include <dm/uclass-internal.h> |
| 28 | #include <dm/device-internal.h> |
| 29 | #include <linux/delay.h> |
| 30 | #include <asm/arch/clock.h> |
| 31 | #include <asm/arch/ccm_regs.h> |
| 32 | #include <asm/arch/ddr.h> |
| 33 | #include <power/pmic.h> |
| 34 | #include <power/pca9450.h> |
| 35 | #include <asm/arch/trdc.h> |
| 36 | |
| 37 | DECLARE_GLOBAL_DATA_PTR; |
| 38 | |
| 39 | int spl_board_boot_device(enum boot_device boot_dev_spl) |
| 40 | { |
| 41 | return BOOT_DEVICE_BOOTROM; |
| 42 | } |
| 43 | |
| 44 | void spl_board_init(void) |
| 45 | { |
Mathieu Othacehe | 8bb6ede | 2024-02-26 18:37:18 +0100 | [diff] [blame] | 46 | int ret; |
| 47 | |
| 48 | ret = ele_start_rng(); |
| 49 | if (ret) |
| 50 | printf("Fail to start RNG: %d\n", ret); |
| 51 | |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 52 | puts("Normal Boot\n"); |
| 53 | } |
| 54 | |
| 55 | void spl_dram_init(void) |
| 56 | { |
| 57 | ddr_init(&dram_timing); |
| 58 | } |
| 59 | |
| 60 | #if CONFIG_IS_ENABLED(DM_PMIC_PCA9450) |
| 61 | int power_init_board(void) |
| 62 | { |
| 63 | struct udevice *dev; |
| 64 | int ret; |
Peng Fan | 0ddb895 | 2024-09-19 12:01:37 +0800 | [diff] [blame^] | 65 | unsigned int val = 0, buck_val; |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 66 | |
| 67 | ret = pmic_get("pmic@25", &dev); |
| 68 | if (ret == -ENODEV) { |
| 69 | puts("No pca9450@25\n"); |
| 70 | return 0; |
| 71 | } |
| 72 | if (ret != 0) |
| 73 | return ret; |
| 74 | |
| 75 | /* BUCKxOUT_DVS0/1 control BUCK123 output */ |
| 76 | pmic_reg_write(dev, PCA9450_BUCK123_DVS, 0x29); |
| 77 | |
Peng Fan | 513d508 | 2023-04-28 12:08:35 +0800 | [diff] [blame] | 78 | /* enable DVS control through PMIC_STBY_REQ */ |
| 79 | pmic_reg_write(dev, PCA9450_BUCK1CTRL, 0x59); |
| 80 | |
Peng Fan | 0ddb895 | 2024-09-19 12:01:37 +0800 | [diff] [blame^] | 81 | ret = pmic_reg_read(dev, PCA9450_PWR_CTRL); |
| 82 | if (ret < 0) |
| 83 | return ret; |
| 84 | |
| 85 | val = ret; |
| 86 | |
| 87 | if (is_voltage_mode(VOLT_LOW_DRIVE)) { |
| 88 | buck_val = 0x0c; /* 0.8v for Low drive mode */ |
| 89 | printf("PMIC: Low Drive Voltage Mode\n"); |
| 90 | } else if (is_voltage_mode(VOLT_NOMINAL_DRIVE)) { |
| 91 | buck_val = 0x10; /* 0.85v for Nominal drive mode */ |
| 92 | printf("PMIC: Nominal Voltage Mode\n"); |
| 93 | } else { |
| 94 | buck_val = 0x14; /* 0.9v for Over drive mode */ |
| 95 | printf("PMIC: Over Drive Voltage Mode\n"); |
| 96 | } |
| 97 | |
| 98 | if (val & PCA9450_REG_PWRCTRL_TOFF_DEB) { |
| 99 | pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS0, buck_val); |
| 100 | pmic_reg_write(dev, PCA9450_BUCK3OUT_DVS0, buck_val); |
Peng Fan | 513d508 | 2023-04-28 12:08:35 +0800 | [diff] [blame] | 101 | } else { |
Peng Fan | 0ddb895 | 2024-09-19 12:01:37 +0800 | [diff] [blame^] | 102 | pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS0, buck_val + 0x4); |
| 103 | pmic_reg_write(dev, PCA9450_BUCK3OUT_DVS0, buck_val + 0x4); |
Peng Fan | 513d508 | 2023-04-28 12:08:35 +0800 | [diff] [blame] | 104 | } |
| 105 | |
Peng Fan | 0ddb895 | 2024-09-19 12:01:37 +0800 | [diff] [blame^] | 106 | if (IS_ENABLED(CONFIG_IMX93_EVK_LPDDR4X)) { |
| 107 | /* Set VDDQ to 1.1V from buck2 */ |
| 108 | pmic_reg_write(dev, PCA9450_BUCK2OUT_DVS0, 0x28); |
| 109 | } |
| 110 | |
Peng Fan | 513d508 | 2023-04-28 12:08:35 +0800 | [diff] [blame] | 111 | /* set standby voltage to 0.65v */ |
Peng Fan | 0ddb895 | 2024-09-19 12:01:37 +0800 | [diff] [blame^] | 112 | if (val & PCA9450_REG_PWRCTRL_TOFF_DEB) |
| 113 | pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS1, 0x0); |
| 114 | else |
| 115 | pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS1, 0x4); |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 116 | |
| 117 | /* I2C_LT_EN*/ |
| 118 | pmic_reg_write(dev, 0xa, 0x3); |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | #endif |
| 122 | |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 123 | void board_init_f(ulong dummy) |
| 124 | { |
| 125 | int ret; |
| 126 | |
| 127 | /* Clear the BSS. */ |
| 128 | memset(__bss_start, 0, __bss_end - __bss_start); |
| 129 | |
| 130 | timer_init(); |
| 131 | |
| 132 | arch_cpu_init(); |
| 133 | |
| 134 | board_early_init_f(); |
| 135 | |
| 136 | spl_early_init(); |
| 137 | |
| 138 | preloader_console_init(); |
| 139 | |
Ye Li | 81bfc1a | 2024-04-01 09:41:08 +0800 | [diff] [blame] | 140 | ret = imx9_probe_mu(); |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 141 | if (ret) { |
| 142 | printf("Fail to init Sentinel API\n"); |
| 143 | } else { |
Fabio Estevam | 6748071 | 2024-04-15 18:57:17 -0300 | [diff] [blame] | 144 | debug("SOC: 0x%x\n", gd->arch.soc_rev); |
| 145 | debug("LC: 0x%x\n", gd->arch.lifecycle); |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 146 | } |
Peng Fan | 513d508 | 2023-04-28 12:08:35 +0800 | [diff] [blame] | 147 | |
Ye Li | 66af10a | 2024-09-19 12:01:27 +0800 | [diff] [blame] | 148 | clock_init_late(); |
| 149 | |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 150 | power_init_board(); |
| 151 | |
Ye Li | 66af10a | 2024-09-19 12:01:27 +0800 | [diff] [blame] | 152 | if (!is_voltage_mode(VOLT_LOW_DRIVE)) |
Peng Fan | 513d508 | 2023-04-28 12:08:35 +0800 | [diff] [blame] | 153 | set_arm_clk(get_cpu_speed_grade_hz()); |
Peng Fan | 10fde4e | 2022-07-26 16:41:11 +0800 | [diff] [blame] | 154 | |
Peng Fan | b72606c | 2022-07-26 16:41:10 +0800 | [diff] [blame] | 155 | /* Init power of mix */ |
| 156 | soc_power_init(); |
| 157 | |
| 158 | /* Setup TRDC for DDR access */ |
| 159 | trdc_init(); |
| 160 | |
| 161 | /* DDR initialization */ |
| 162 | spl_dram_init(); |
| 163 | |
| 164 | /* Put M33 into CPUWAIT for following kick */ |
| 165 | ret = m33_prepare(); |
| 166 | if (!ret) |
| 167 | printf("M33 prepare ok\n"); |
| 168 | |
| 169 | board_init_r(NULL, 0); |
| 170 | } |