Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2013 SAMSUNG Electronics |
| 4 | * Rajeshwari Shinde <rajeshwari.s@samsung.com> |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 5 | */ |
| 6 | |
Tom Rini | dec7ea0 | 2024-05-20 13:35:03 -0600 | [diff] [blame] | 7 | #include <config.h> |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 8 | #include <cros_ec.h> |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 9 | #include <env.h> |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 10 | #include <errno.h> |
| 11 | #include <fdtdec.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 12 | #include <hang.h> |
Simon Glass | a7b5130 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 13 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 15 | #include <net.h> |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 16 | #include <spi.h> |
| 17 | #include <tmu.h> |
| 18 | #include <netdev.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 19 | #include <asm/global_data.h> |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 20 | #include <asm/io.h> |
Simon Glass | 37f1162 | 2014-10-20 19:48:37 -0600 | [diff] [blame] | 21 | #include <asm/gpio.h> |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 22 | #include <asm/arch/board.h> |
| 23 | #include <asm/arch/cpu.h> |
| 24 | #include <asm/arch/dwmmc.h> |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 25 | #include <asm/arch/mmc.h> |
| 26 | #include <asm/arch/pinmux.h> |
| 27 | #include <asm/arch/power.h> |
Ajay Kumar | 1176348 | 2014-09-05 16:53:30 +0530 | [diff] [blame] | 28 | #include <asm/arch/system.h> |
Przemyslaw Marczak | 110aa29 | 2015-04-20 20:07:50 +0200 | [diff] [blame] | 29 | #include <i2c.h> |
Marek Szyprowski | bc4a2e3 | 2020-01-17 14:02:44 +0100 | [diff] [blame] | 30 | #include <mmc.h> |
| 31 | #include <stdio_dev.h> |
Lukasz Majewski | 7573b96 | 2015-03-03 17:32:03 +0100 | [diff] [blame] | 32 | #include <usb.h> |
Joonyoung Shim | 95d3a1d | 2015-05-22 18:14:24 +0200 | [diff] [blame] | 33 | #include <dwc3-uboot.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 34 | #include <linux/delay.h> |
Joonyoung Shim | 95d3a1d | 2015-05-22 18:14:24 +0200 | [diff] [blame] | 35 | #include <samsung/misc.h> |
Thomas Abraham | 8d84faa | 2016-04-23 22:18:14 +0530 | [diff] [blame] | 36 | #include <dm/pinctrl.h> |
| 37 | #include <dm.h> |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 38 | |
| 39 | DECLARE_GLOBAL_DATA_PTR; |
| 40 | |
Jeroen Hofstee | 5cd8294 | 2014-10-08 22:57:28 +0200 | [diff] [blame] | 41 | __weak int exynos_early_init_f(void) |
Piotr Wilczek | 942d0a9 | 2014-03-07 14:59:43 +0100 | [diff] [blame] | 42 | { |
| 43 | return 0; |
| 44 | } |
Piotr Wilczek | 942d0a9 | 2014-03-07 14:59:43 +0100 | [diff] [blame] | 45 | |
Tom Rini | 757dc98 | 2023-09-21 19:32:48 -0400 | [diff] [blame] | 46 | __weak void exynos_init(void) |
| 47 | { |
| 48 | } |
| 49 | |
Jeroen Hofstee | 5cd8294 | 2014-10-08 22:57:28 +0200 | [diff] [blame] | 50 | __weak int exynos_power_init(void) |
Piotr Wilczek | 942d0a9 | 2014-03-07 14:59:43 +0100 | [diff] [blame] | 51 | { |
| 52 | return 0; |
| 53 | } |
Piotr Wilczek | 942d0a9 | 2014-03-07 14:59:43 +0100 | [diff] [blame] | 54 | |
Marek Szyprowski | bc4a2e3 | 2020-01-17 14:02:44 +0100 | [diff] [blame] | 55 | /** |
| 56 | * get_boot_mmc_dev() - read boot MMC device id from XOM[7:5] pins. |
| 57 | */ |
| 58 | static int get_boot_mmc_dev(void) |
| 59 | { |
| 60 | u32 mode = readl(EXYNOS4_OP_MODE) & 0x1C; |
| 61 | |
| 62 | if (mode == 0x04) |
| 63 | return 2; /* MMC2: SD */ |
| 64 | |
| 65 | /* MMC0: eMMC or unknown */ |
| 66 | return 0; |
| 67 | } |
| 68 | |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 69 | #if defined CONFIG_EXYNOS_TMU |
| 70 | /* Boot Time Thermal Analysis for SoC temperature threshold breach */ |
| 71 | static void boot_temp_check(void) |
| 72 | { |
| 73 | int temp; |
| 74 | |
| 75 | switch (tmu_monitor(&temp)) { |
| 76 | case TMU_STATUS_NORMAL: |
| 77 | break; |
| 78 | case TMU_STATUS_TRIPPED: |
| 79 | /* |
| 80 | * Status TRIPPED ans WARNING means corresponding threshold |
| 81 | * breach |
| 82 | */ |
| 83 | puts("EXYNOS_TMU: TRIPPING! Device power going down ...\n"); |
| 84 | set_ps_hold_ctrl(); |
| 85 | hang(); |
| 86 | break; |
| 87 | case TMU_STATUS_WARNING: |
| 88 | puts("EXYNOS_TMU: WARNING! Temperature very high\n"); |
| 89 | break; |
| 90 | case TMU_STATUS_INIT: |
| 91 | /* |
| 92 | * TMU_STATUS_INIT means something is wrong with temperature |
| 93 | * sensing and TMU status was changed back from NORMAL to INIT. |
| 94 | */ |
| 95 | puts("EXYNOS_TMU: WARNING! Temperature sensing not done\n"); |
| 96 | break; |
| 97 | default: |
| 98 | debug("EXYNOS_TMU: Unknown TMU state\n"); |
| 99 | } |
| 100 | } |
| 101 | #endif |
| 102 | |
| 103 | int board_init(void) |
| 104 | { |
| 105 | gd->bd->bi_boot_params = (PHYS_SDRAM_1 + 0x100UL); |
| 106 | #if defined CONFIG_EXYNOS_TMU |
| 107 | if (tmu_init(gd->fdt_blob) != TMU_STATUS_NORMAL) { |
| 108 | debug("%s: Failed to init TMU\n", __func__); |
| 109 | return -1; |
| 110 | } |
| 111 | boot_temp_check(); |
| 112 | #endif |
Tom Rini | 5c1e727 | 2022-04-06 10:33:32 -0400 | [diff] [blame] | 113 | #if CONFIG_VAL(SYS_MEM_TOP_HIDE) |
Przemyslaw Marczak | c32a04c | 2015-02-17 14:50:25 +0100 | [diff] [blame] | 114 | /* The last few MB of memory can be reserved for secure firmware */ |
Tom Rini | 5c1e727 | 2022-04-06 10:33:32 -0400 | [diff] [blame] | 115 | ulong size = CONFIG_SYS_MEM_TOP_HIDE; |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 116 | |
Przemyslaw Marczak | c32a04c | 2015-02-17 14:50:25 +0100 | [diff] [blame] | 117 | gd->ram_size -= size; |
| 118 | gd->bd->bi_dram[CONFIG_NR_DRAM_BANKS - 1].size -= size; |
| 119 | #endif |
Tom Rini | 757dc98 | 2023-09-21 19:32:48 -0400 | [diff] [blame] | 120 | exynos_init(); |
| 121 | |
| 122 | return 0; |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | int dram_init(void) |
| 126 | { |
Ćukasz Majewski | 33d7a19 | 2015-03-04 10:54:48 +0100 | [diff] [blame] | 127 | unsigned int i; |
Thomas Abraham | 8d84faa | 2016-04-23 22:18:14 +0530 | [diff] [blame] | 128 | unsigned long addr; |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 129 | |
| 130 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 131 | addr = CFG_SYS_SDRAM_BASE + (i * SDRAM_BANK_SIZE); |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 132 | gd->ram_size += get_ram_size((long *)addr, SDRAM_BANK_SIZE); |
| 133 | } |
| 134 | return 0; |
| 135 | } |
| 136 | |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 137 | int dram_init_banksize(void) |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 138 | { |
Ćukasz Majewski | 33d7a19 | 2015-03-04 10:54:48 +0100 | [diff] [blame] | 139 | unsigned int i; |
Thomas Abraham | 8d84faa | 2016-04-23 22:18:14 +0530 | [diff] [blame] | 140 | unsigned long addr, size; |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 141 | |
| 142 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 143 | addr = CFG_SYS_SDRAM_BASE + (i * SDRAM_BANK_SIZE); |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 144 | size = get_ram_size((long *)addr, SDRAM_BANK_SIZE); |
| 145 | |
| 146 | gd->bd->bi_dram[i].start = addr; |
| 147 | gd->bd->bi_dram[i].size = size; |
| 148 | } |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 149 | |
| 150 | return 0; |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | static int board_uart_init(void) |
| 154 | { |
Thomas Abraham | 8d84faa | 2016-04-23 22:18:14 +0530 | [diff] [blame] | 155 | #ifndef CONFIG_PINCTRL_EXYNOS |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 156 | int err, uart_id, ret = 0; |
| 157 | |
| 158 | for (uart_id = PERIPH_ID_UART0; uart_id <= PERIPH_ID_UART3; uart_id++) { |
| 159 | err = exynos_pinmux_config(uart_id, PINMUX_FLAG_NONE); |
| 160 | if (err) { |
| 161 | debug("UART%d not configured\n", |
| 162 | (uart_id - PERIPH_ID_UART0)); |
| 163 | ret |= err; |
| 164 | } |
| 165 | } |
| 166 | return ret; |
Thomas Abraham | 8d84faa | 2016-04-23 22:18:14 +0530 | [diff] [blame] | 167 | #else |
| 168 | return 0; |
| 169 | #endif |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
| 173 | int board_early_init_f(void) |
| 174 | { |
| 175 | int err; |
Przemyslaw Marczak | 4d2a92c | 2014-09-01 13:50:49 +0200 | [diff] [blame] | 176 | #ifdef CONFIG_BOARD_TYPES |
| 177 | set_board_type(); |
| 178 | #endif |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 179 | err = board_uart_init(); |
| 180 | if (err) { |
| 181 | debug("UART init failed\n"); |
| 182 | return err; |
| 183 | } |
| 184 | |
Piotr Wilczek | 942d0a9 | 2014-03-07 14:59:43 +0100 | [diff] [blame] | 185 | return exynos_early_init_f(); |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 186 | } |
| 187 | #endif |
| 188 | |
Simon Glass | 3133941 | 2021-08-08 12:20:27 -0600 | [diff] [blame] | 189 | #if CONFIG_IS_ENABLED(POWER_LEGACY) || CONFIG_IS_ENABLED(DM_PMIC) |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 190 | int power_init_board(void) |
| 191 | { |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 192 | set_ps_hold_ctrl(); |
| 193 | |
Piotr Wilczek | 942d0a9 | 2014-03-07 14:59:43 +0100 | [diff] [blame] | 194 | return exynos_power_init(); |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 195 | } |
| 196 | #endif |
| 197 | |
Krzysztof Kozlowski | c51bd0b | 2019-03-06 19:37:52 +0100 | [diff] [blame] | 198 | #if defined(CONFIG_DISPLAY_BOARDINFO) || defined(CONFIG_DISPLAY_BOARDINFO_LATE) |
Piotr Wilczek | 3df7aff | 2014-03-07 14:59:42 +0100 | [diff] [blame] | 199 | int checkboard(void) |
| 200 | { |
Simon Glass | 6ceeff4 | 2019-01-11 18:37:07 -0700 | [diff] [blame] | 201 | if (IS_ENABLED(CONFIG_BOARD_TYPES)) { |
Krzysztof Kozlowski | 36476ee | 2019-03-06 19:37:51 +0100 | [diff] [blame] | 202 | const char *board_info; |
| 203 | |
| 204 | if (IS_ENABLED(CONFIG_DISPLAY_BOARDINFO_LATE)) { |
| 205 | /* |
| 206 | * Printing type requires having revision, although |
| 207 | * this will succeed only if done late. |
| 208 | * Otherwise revision will be set in misc_init_r(). |
| 209 | */ |
| 210 | set_board_revision(); |
| 211 | } |
| 212 | |
| 213 | board_info = get_board_type(); |
Simon Glass | 6ceeff4 | 2019-01-11 18:37:07 -0700 | [diff] [blame] | 214 | |
| 215 | if (board_info) |
| 216 | printf("Type: %s\n", board_info); |
| 217 | } |
Piotr Wilczek | 3df7aff | 2014-03-07 14:59:42 +0100 | [diff] [blame] | 218 | |
Piotr Wilczek | 3df7aff | 2014-03-07 14:59:42 +0100 | [diff] [blame] | 219 | return 0; |
| 220 | } |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 221 | #endif |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 222 | |
| 223 | #ifdef CONFIG_BOARD_LATE_INIT |
| 224 | int board_late_init(void) |
| 225 | { |
Simon Glass | fe3f643 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 226 | struct udevice *dev; |
| 227 | int ret; |
Marek Szyprowski | bc4a2e3 | 2020-01-17 14:02:44 +0100 | [diff] [blame] | 228 | int mmcbootdev = get_boot_mmc_dev(); |
| 229 | char mmcbootdev_str[16]; |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 230 | |
Simon Glass | fe3f643 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 231 | ret = uclass_first_device_err(UCLASS_CROS_EC, &dev); |
Henrik Grimler | d13e0fc | 2023-05-09 21:05:47 +0200 | [diff] [blame] | 232 | if (ret && ret != -ENODEV && ret != -EPFNOSUPPORT) { |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 233 | /* Force console on */ |
| 234 | gd->flags &= ~GD_FLG_SILENT; |
| 235 | |
Simon Glass | fe3f643 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 236 | printf("cros-ec communications failure %d\n", ret); |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 237 | puts("\nPlease reset with Power+Refresh\n\n"); |
| 238 | panic("Cannot init cros-ec device"); |
| 239 | return -1; |
| 240 | } |
Marek Szyprowski | bc4a2e3 | 2020-01-17 14:02:44 +0100 | [diff] [blame] | 241 | |
| 242 | printf("Boot device: MMC(%u)\n", mmcbootdev); |
| 243 | sprintf(mmcbootdev_str, "%u", mmcbootdev); |
| 244 | env_set("mmcbootdev", mmcbootdev_str); |
| 245 | |
Rajeshwari Birje | 987b0dd | 2013-12-26 09:44:17 +0530 | [diff] [blame] | 246 | return 0; |
| 247 | } |
| 248 | #endif |
| 249 | |
Piotr Wilczek | 2c3eed5 | 2014-03-07 14:59:45 +0100 | [diff] [blame] | 250 | #ifdef CONFIG_MISC_INIT_R |
| 251 | int misc_init_r(void) |
| 252 | { |
Krzysztof Kozlowski | 36476ee | 2019-03-06 19:37:51 +0100 | [diff] [blame] | 253 | if (IS_ENABLED(CONFIG_BOARD_TYPES) && |
| 254 | !IS_ENABLED(CONFIG_DISPLAY_BOARDINFO_LATE)) { |
| 255 | /* |
| 256 | * If revision was not set by late display boardinfo, |
| 257 | * set it here. At this point regulators should be already |
| 258 | * available. |
| 259 | */ |
| 260 | set_board_revision(); |
| 261 | } |
| 262 | |
Piotr Wilczek | 2c3eed5 | 2014-03-07 14:59:45 +0100 | [diff] [blame] | 263 | #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
| 264 | set_board_info(); |
| 265 | #endif |
Piotr Wilczek | 2c3eed5 | 2014-03-07 14:59:45 +0100 | [diff] [blame] | 266 | #ifdef CONFIG_CMD_BMP |
| 267 | if (panel_info.logo_on) |
| 268 | draw_logo(); |
| 269 | #endif |
| 270 | return 0; |
| 271 | } |
| 272 | #endif |
Joonyoung Shim | 7a3e806 | 2015-01-15 11:45:56 +0900 | [diff] [blame] | 273 | |
| 274 | void reset_misc(void) |
| 275 | { |
| 276 | struct gpio_desc gpio = {}; |
| 277 | int node; |
| 278 | |
| 279 | node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, |
| 280 | "samsung,emmc-reset"); |
| 281 | if (node < 0) |
| 282 | return; |
| 283 | |
Simon Glass | 1d9af1f | 2017-05-30 21:47:09 -0600 | [diff] [blame] | 284 | gpio_request_by_name_nodev(offset_to_ofnode(node), "reset-gpio", 0, |
| 285 | &gpio, GPIOD_IS_OUT); |
Joonyoung Shim | 7a3e806 | 2015-01-15 11:45:56 +0900 | [diff] [blame] | 286 | |
| 287 | if (dm_gpio_is_valid(&gpio)) { |
| 288 | /* |
| 289 | * Reset eMMC |
| 290 | * |
| 291 | * FIXME: Need to optimize delay time. Minimum 1usec pulse is |
| 292 | * required by 'JEDEC Standard No.84-A441' (eMMC) |
| 293 | * document but real delay time is expected to greater |
| 294 | * than 1usec. |
| 295 | */ |
| 296 | dm_gpio_set_value(&gpio, 0); |
| 297 | mdelay(10); |
| 298 | dm_gpio_set_value(&gpio, 1); |
| 299 | } |
| 300 | } |
Lukasz Majewski | 7573b96 | 2015-03-03 17:32:03 +0100 | [diff] [blame] | 301 | |
| 302 | int board_usb_cleanup(int index, enum usb_init_type init) |
| 303 | { |
Joonyoung Shim | 95d3a1d | 2015-05-22 18:14:24 +0200 | [diff] [blame] | 304 | #ifdef CONFIG_USB_DWC3 |
| 305 | dwc3_uboot_exit(index); |
| 306 | #endif |
Lukasz Majewski | 7573b96 | 2015-03-03 17:32:03 +0100 | [diff] [blame] | 307 | return 0; |
| 308 | } |
Marek Szyprowski | bc4a2e3 | 2020-01-17 14:02:44 +0100 | [diff] [blame] | 309 | |
| 310 | int mmc_get_env_dev(void) |
| 311 | { |
| 312 | return get_boot_mmc_dev(); |
| 313 | } |