Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2015 Google, Inc |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <debug_uart.h> |
| 8 | #include <dm.h> |
| 9 | #include <fdtdec.h> |
Wadim Egorov | bafcf2d | 2017-06-19 12:36:40 +0200 | [diff] [blame] | 10 | #include <i2c.h> |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 11 | #include <led.h> |
| 12 | #include <malloc.h> |
| 13 | #include <ram.h> |
| 14 | #include <spl.h> |
| 15 | #include <asm/gpio.h> |
| 16 | #include <asm/io.h> |
Kever Yang | 15f09a1 | 2019-03-28 11:01:23 +0800 | [diff] [blame] | 17 | #include <asm/arch-rockchip/bootrom.h> |
| 18 | #include <asm/arch-rockchip/clock.h> |
| 19 | #include <asm/arch-rockchip/hardware.h> |
| 20 | #include <asm/arch-rockchip/periph.h> |
| 21 | #include <asm/arch-rockchip/pmu_rk3288.h> |
| 22 | #include <asm/arch-rockchip/sdram.h> |
| 23 | #include <asm/arch-rockchip/sdram_common.h> |
| 24 | #include <asm/arch-rockchip/sys_proto.h> |
| 25 | #include <asm/arch-rockchip/timer.h> |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 26 | #include <dm/pinctrl.h> |
| 27 | #include <dm/root.h> |
| 28 | #include <dm/test.h> |
| 29 | #include <dm/util.h> |
| 30 | #include <power/regulator.h> |
Wadim Egorov | bafcf2d | 2017-06-19 12:36:40 +0200 | [diff] [blame] | 31 | #include <power/rk8xx_pmic.h> |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 32 | |
| 33 | DECLARE_GLOBAL_DATA_PTR; |
| 34 | |
| 35 | u32 spl_boot_device(void) |
| 36 | { |
Simon Glass | 6afc466 | 2016-07-04 11:58:32 -0600 | [diff] [blame] | 37 | #if !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 38 | const void *blob = gd->fdt_blob; |
| 39 | struct udevice *dev; |
| 40 | const char *bootdev; |
| 41 | int node; |
| 42 | int ret; |
| 43 | |
| 44 | bootdev = fdtdec_get_config_string(blob, "u-boot,boot0"); |
| 45 | debug("Boot device %s\n", bootdev); |
| 46 | if (!bootdev) |
| 47 | goto fallback; |
| 48 | |
| 49 | node = fdt_path_offset(blob, bootdev); |
| 50 | if (node < 0) { |
| 51 | debug("node=%d\n", node); |
| 52 | goto fallback; |
| 53 | } |
Jean-Jacques Hiblot | 7ec9181 | 2018-08-09 16:17:44 +0200 | [diff] [blame] | 54 | ret = device_get_global_by_ofnode(offset_to_ofnode(node), &dev); |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 55 | if (ret) { |
| 56 | debug("device at node %s/%d not found: %d\n", bootdev, node, |
| 57 | ret); |
| 58 | goto fallback; |
| 59 | } |
| 60 | debug("Found device %s\n", dev->name); |
| 61 | switch (device_get_uclass_id(dev)) { |
| 62 | case UCLASS_SPI_FLASH: |
| 63 | return BOOT_DEVICE_SPI; |
| 64 | case UCLASS_MMC: |
| 65 | return BOOT_DEVICE_MMC1; |
| 66 | default: |
| 67 | debug("Booting from device uclass '%s' not supported\n", |
| 68 | dev_get_uclass_name(dev)); |
| 69 | } |
| 70 | |
| 71 | fallback: |
Simon Glass | e70408c | 2016-11-13 14:22:16 -0700 | [diff] [blame] | 72 | #elif defined(CONFIG_TARGET_CHROMEBOOK_JERRY) || \ |
Simon Glass | c420ef6 | 2016-11-13 14:24:54 -0700 | [diff] [blame] | 73 | defined(CONFIG_TARGET_CHROMEBIT_MICKEY) || \ |
Marty E. Plummer | 8e2e601 | 2019-01-05 20:12:08 -0600 | [diff] [blame] | 74 | defined(CONFIG_TARGET_CHROMEBOOK_MINNIE) || \ |
| 75 | defined(CONFIG_TARGET_CHROMEBOOK_SPEEDY) |
Simon Glass | c8816d1 | 2016-11-13 14:21:57 -0700 | [diff] [blame] | 76 | return BOOT_DEVICE_SPI; |
Simon Glass | 6afc466 | 2016-07-04 11:58:32 -0600 | [diff] [blame] | 77 | #endif |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 78 | return BOOT_DEVICE_MMC1; |
| 79 | } |
| 80 | |
Wadim Egorov | bafcf2d | 2017-06-19 12:36:40 +0200 | [diff] [blame] | 81 | #if !defined(CONFIG_SPL_OF_PLATDATA) |
| 82 | static int phycore_init(void) |
| 83 | { |
| 84 | struct udevice *pmic; |
| 85 | int ret; |
| 86 | |
| 87 | ret = uclass_first_device_err(UCLASS_PMIC, &pmic); |
| 88 | if (ret) |
| 89 | return ret; |
| 90 | |
| 91 | #if defined(CONFIG_SPL_POWER_SUPPORT) |
| 92 | /* Increase USB input current to 2A */ |
| 93 | ret = rk818_spl_configure_usb_input_current(pmic, 2000); |
| 94 | if (ret) |
| 95 | return ret; |
| 96 | |
| 97 | /* Close charger when USB lower then 3.26V */ |
| 98 | ret = rk818_spl_configure_usb_chrg_shutdown(pmic, 3260000); |
| 99 | if (ret) |
| 100 | return ret; |
| 101 | #endif |
| 102 | |
| 103 | return 0; |
| 104 | } |
| 105 | #endif |
| 106 | |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 107 | void board_init_f(ulong dummy) |
| 108 | { |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 109 | struct udevice *dev; |
| 110 | int ret; |
| 111 | |
Kever Yang | e83e885 | 2019-03-29 09:09:04 +0800 | [diff] [blame] | 112 | #ifdef CONFIG_DEBUG_UART |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 113 | /* |
| 114 | * Debug UART can be used from here if required: |
| 115 | * |
| 116 | * debug_uart_init(); |
| 117 | * printch('a'); |
| 118 | * printhex8(0x1234); |
| 119 | * printascii("string"); |
| 120 | */ |
| 121 | debug_uart_init(); |
Eddie Cai | 7474bbe | 2017-04-18 19:17:27 +0800 | [diff] [blame] | 122 | debug("\nspl:debug uart enabled in %s\n", __func__); |
Kever Yang | e83e885 | 2019-03-29 09:09:04 +0800 | [diff] [blame] | 123 | #endif |
Eddie Cai | 7397605 | 2017-03-15 08:43:29 -0600 | [diff] [blame] | 124 | ret = spl_early_init(); |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 125 | if (ret) { |
Eddie Cai | 7397605 | 2017-03-15 08:43:29 -0600 | [diff] [blame] | 126 | debug("spl_early_init() failed: %d\n", ret); |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 127 | hang(); |
| 128 | } |
| 129 | |
huang lin | cc2244b | 2015-11-17 14:20:09 +0800 | [diff] [blame] | 130 | rockchip_timer_init(); |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 131 | configure_l2ctlr(); |
| 132 | |
Simon Glass | c3aad6f | 2016-07-17 15:23:17 -0600 | [diff] [blame] | 133 | ret = rockchip_get_clk(&dev); |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 134 | if (ret) { |
| 135 | debug("CLK init failed: %d\n", ret); |
| 136 | return; |
| 137 | } |
| 138 | |
Wadim Egorov | bafcf2d | 2017-06-19 12:36:40 +0200 | [diff] [blame] | 139 | #if !defined(CONFIG_SPL_OF_PLATDATA) |
| 140 | if (of_machine_is_compatible("phytec,rk3288-phycore-som")) { |
| 141 | ret = phycore_init(); |
| 142 | if (ret) { |
| 143 | debug("Failed to set up phycore power settings: %d\n", |
| 144 | ret); |
| 145 | return; |
| 146 | } |
| 147 | } |
| 148 | #endif |
| 149 | |
Jagan Teki | 532cb7f | 2017-09-27 23:03:12 +0530 | [diff] [blame] | 150 | #if !defined(CONFIG_SUPPORT_TPL) |
Eddie Cai | 7474bbe | 2017-04-18 19:17:27 +0800 | [diff] [blame] | 151 | debug("\nspl:init dram\n"); |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 152 | ret = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 153 | if (ret) { |
| 154 | debug("DRAM init failed: %d\n", ret); |
| 155 | return; |
| 156 | } |
Jagan Teki | 532cb7f | 2017-09-27 23:03:12 +0530 | [diff] [blame] | 157 | #endif |
| 158 | |
Philipp Tomsich | ee14d29 | 2017-06-29 11:21:15 +0200 | [diff] [blame] | 159 | #if CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM) && !defined(CONFIG_SPL_BOARD_INIT) |
Philipp Tomsich | b82bd1f | 2017-10-10 16:21:16 +0200 | [diff] [blame] | 160 | back_to_bootrom(BROM_BOOT_NEXTSTAGE); |
Xu Ziyuan | b47ea79 | 2016-07-12 19:09:49 +0800 | [diff] [blame] | 161 | #endif |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | static int setup_led(void) |
| 165 | { |
| 166 | #ifdef CONFIG_SPL_LED |
| 167 | struct udevice *dev; |
| 168 | char *led_name; |
| 169 | int ret; |
| 170 | |
| 171 | led_name = fdtdec_get_config_string(gd->fdt_blob, "u-boot,boot-led"); |
| 172 | if (!led_name) |
| 173 | return 0; |
| 174 | ret = led_get_by_label(led_name, &dev); |
| 175 | if (ret) { |
| 176 | debug("%s: get=%d\n", __func__, ret); |
| 177 | return ret; |
| 178 | } |
| 179 | ret = led_set_on(dev, 1); |
| 180 | if (ret) |
| 181 | return ret; |
| 182 | #endif |
| 183 | |
| 184 | return 0; |
| 185 | } |
| 186 | |
| 187 | void spl_board_init(void) |
| 188 | { |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 189 | int ret; |
| 190 | |
| 191 | ret = setup_led(); |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 192 | if (ret) { |
| 193 | debug("LED ret=%d\n", ret); |
| 194 | hang(); |
| 195 | } |
| 196 | |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 197 | preloader_console_init(); |
Philipp Tomsich | ee14d29 | 2017-06-29 11:21:15 +0200 | [diff] [blame] | 198 | #if CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM) |
Philipp Tomsich | b82bd1f | 2017-10-10 16:21:16 +0200 | [diff] [blame] | 199 | back_to_bootrom(BROM_BOOT_NEXTSTAGE); |
Sandy Patterson | 427351d | 2016-08-10 10:21:47 -0400 | [diff] [blame] | 200 | #endif |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 201 | return; |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 202 | } |
Jagan Teki | 2ee3021 | 2017-09-27 23:03:14 +0530 | [diff] [blame] | 203 | |
| 204 | #ifdef CONFIG_SPL_OS_BOOT |
| 205 | |
| 206 | #define PMU_BASE 0xff730000 |
| 207 | int dram_init_banksize(void) |
| 208 | { |
| 209 | struct rk3288_pmu *const pmu = (void *)PMU_BASE; |
| 210 | size_t size = rockchip_sdram_size((phys_addr_t)&pmu->sys_reg[2]); |
| 211 | |
| 212 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 213 | gd->bd->bi_dram[0].size = size; |
| 214 | |
| 215 | return 0; |
| 216 | } |
| 217 | #endif |