Peng Fan | a181afe | 2019-09-16 03:09:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-2019 NXP |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 8 | #include <command.h> |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 9 | #include <cpu_func.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 10 | #include <hang.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 11 | #include <image.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 12 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Peng Fan | a181afe | 2019-09-16 03:09:55 +0000 | [diff] [blame] | 14 | #include <spl.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Peng Fan | a181afe | 2019-09-16 03:09:55 +0000 | [diff] [blame] | 16 | #include <asm/io.h> |
| 17 | #include <asm/mach-imx/iomux-v3.h> |
| 18 | #include <asm/arch/clock.h> |
| 19 | #include <asm/arch/imx8mn_pins.h> |
| 20 | #include <asm/arch/sys_proto.h> |
| 21 | #include <asm/mach-imx/boot_mode.h> |
| 22 | #include <asm/arch/ddr.h> |
| 23 | |
| 24 | #include <dm/uclass.h> |
| 25 | #include <dm/device.h> |
| 26 | #include <dm/uclass-internal.h> |
| 27 | #include <dm/device-internal.h> |
Peng Fan | 80607bf | 2021-03-19 15:57:08 +0800 | [diff] [blame] | 28 | #include <power/pmic.h> |
| 29 | #include <power/pca9450.h> |
| 30 | #include <asm/mach-imx/gpio.h> |
| 31 | #include <asm/mach-imx/mxc_i2c.h> |
| 32 | #include <fsl_esdhc_imx.h> |
| 33 | #include <mmc.h> |
Peng Fan | a181afe | 2019-09-16 03:09:55 +0000 | [diff] [blame] | 34 | |
| 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
| 37 | int spl_board_boot_device(enum boot_device boot_dev_spl) |
| 38 | { |
| 39 | return BOOT_DEVICE_BOOTROM; |
| 40 | } |
| 41 | |
| 42 | void spl_dram_init(void) |
| 43 | { |
| 44 | ddr_init(&dram_timing); |
| 45 | } |
| 46 | |
| 47 | void spl_board_init(void) |
| 48 | { |
| 49 | struct udevice *dev; |
| 50 | int ret; |
| 51 | |
| 52 | puts("Normal Boot\n"); |
| 53 | |
| 54 | ret = uclass_get_device_by_name(UCLASS_CLK, |
| 55 | "clock-controller@30380000", |
| 56 | &dev); |
| 57 | if (ret < 0) |
| 58 | printf("Failed to find clock node. Check device tree\n"); |
| 59 | } |
| 60 | |
Peng Fan | 80607bf | 2021-03-19 15:57:08 +0800 | [diff] [blame] | 61 | #if CONFIG_IS_ENABLED(DM_PMIC_PCA9450) |
| 62 | int power_init_board(void) |
| 63 | { |
| 64 | struct udevice *dev; |
| 65 | int ret; |
| 66 | |
| 67 | ret = pmic_get("pca9450@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 | |
Ye Li | ee337ce | 2021-03-19 15:57:09 +0800 | [diff] [blame] | 78 | #ifdef CONFIG_IMX8MN_LOW_DRIVE_MODE |
| 79 | /* Set VDD_SOC/VDD_DRAM to 0.8v for low drive mode */ |
| 80 | pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS0, 0x10); |
| 81 | #else |
Peng Fan | 80607bf | 2021-03-19 15:57:08 +0800 | [diff] [blame] | 82 | /* increase VDD_SOC/VDD_DRAM to typical value 0.95V before first DRAM access */ |
Ye Li | ee337ce | 2021-03-19 15:57:09 +0800 | [diff] [blame] | 83 | pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS0, 0x1C); |
| 84 | #endif |
Peng Fan | 80607bf | 2021-03-19 15:57:08 +0800 | [diff] [blame] | 85 | /* Set DVS1 to 0.85v for suspend */ |
| 86 | /* Enable DVS control through PMIC_STBY_REQ and set B1_ENMODE=1 (ON by PMIC_ON_REQ=H) */ |
Peng Fan | 80607bf | 2021-03-19 15:57:08 +0800 | [diff] [blame] | 87 | pmic_reg_write(dev, PCA9450_BUCK1OUT_DVS1, 0x14); |
| 88 | pmic_reg_write(dev, PCA9450_BUCK1CTRL, 0x59); |
| 89 | |
| 90 | /* set VDD_SNVS_0V8 from default 0.85V */ |
| 91 | pmic_reg_write(dev, PCA9450_LDO2CTRL, 0xC0); |
| 92 | |
| 93 | /* enable LDO4 to 1.2v */ |
| 94 | pmic_reg_write(dev, PCA9450_LDO4CTRL, 0x44); |
| 95 | |
| 96 | /* set WDOG_B_CFG to cold reset */ |
| 97 | pmic_reg_write(dev, PCA9450_RESET_CTRL, 0xA1); |
| 98 | |
| 99 | return 0; |
| 100 | } |
| 101 | #endif |
| 102 | |
Peng Fan | a181afe | 2019-09-16 03:09:55 +0000 | [diff] [blame] | 103 | #ifdef CONFIG_SPL_LOAD_FIT |
| 104 | int board_fit_config_name_match(const char *name) |
| 105 | { |
| 106 | /* Just empty function now - can't decide what to choose */ |
| 107 | debug("%s: %s\n", __func__, name); |
| 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | #endif |
| 112 | |
| 113 | #define UART_PAD_CTRL (PAD_CTL_DSE6 | PAD_CTL_FSEL1) |
| 114 | #define WDOG_PAD_CTRL (PAD_CTL_DSE6 | PAD_CTL_ODE | PAD_CTL_PUE | PAD_CTL_PE) |
| 115 | |
| 116 | static iomux_v3_cfg_t const uart_pads[] = { |
| 117 | IMX8MN_PAD_UART2_RXD__UART2_DCE_RX | MUX_PAD_CTRL(UART_PAD_CTRL), |
| 118 | IMX8MN_PAD_UART2_TXD__UART2_DCE_TX | MUX_PAD_CTRL(UART_PAD_CTRL), |
| 119 | }; |
| 120 | |
| 121 | static iomux_v3_cfg_t const wdog_pads[] = { |
| 122 | IMX8MN_PAD_GPIO1_IO02__WDOG1_WDOG_B | MUX_PAD_CTRL(WDOG_PAD_CTRL), |
| 123 | }; |
| 124 | |
| 125 | int board_early_init_f(void) |
| 126 | { |
| 127 | struct wdog_regs *wdog = (struct wdog_regs *)WDOG1_BASE_ADDR; |
| 128 | |
| 129 | imx_iomux_v3_setup_multiple_pads(wdog_pads, ARRAY_SIZE(wdog_pads)); |
| 130 | |
| 131 | set_wdog_reset(wdog); |
| 132 | |
| 133 | imx_iomux_v3_setup_multiple_pads(uart_pads, ARRAY_SIZE(uart_pads)); |
| 134 | |
Peng Fan | a181afe | 2019-09-16 03:09:55 +0000 | [diff] [blame] | 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | void board_init_f(ulong dummy) |
| 139 | { |
| 140 | int ret; |
| 141 | |
| 142 | arch_cpu_init(); |
| 143 | |
| 144 | init_uart_clk(1); |
| 145 | |
| 146 | board_early_init_f(); |
| 147 | |
| 148 | timer_init(); |
| 149 | |
| 150 | preloader_console_init(); |
| 151 | |
| 152 | /* Clear the BSS. */ |
| 153 | memset(__bss_start, 0, __bss_end - __bss_start); |
| 154 | |
| 155 | ret = spl_init(); |
| 156 | if (ret) { |
| 157 | debug("spl_init() failed: %d\n", ret); |
| 158 | hang(); |
| 159 | } |
| 160 | |
| 161 | enable_tzc380(); |
| 162 | |
| 163 | /* DDR initialization */ |
| 164 | spl_dram_init(); |
| 165 | |
| 166 | board_init_r(NULL, 0); |
| 167 | } |