blob: d8d215db8a0b6ff381ffa126fd05e51fdd598652 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass2444dae2015-08-30 16:55:38 -06002/*
3 * (C) Copyright 2015 Google, Inc
Simon Glass2444dae2015-08-30 16:55:38 -06004 */
5
6#include <common.h>
7#include <debug_uart.h>
8#include <dm.h>
9#include <fdtdec.h>
Wadim Egorovbafcf2d2017-06-19 12:36:40 +020010#include <i2c.h>
Simon Glass2444dae2015-08-30 16:55:38 -060011#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 Yang15f09a12019-03-28 11:01:23 +080017#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 Glass2444dae2015-08-30 16:55:38 -060026#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 Egorovbafcf2d2017-06-19 12:36:40 +020031#include <power/rk8xx_pmic.h>
Simon Glass2444dae2015-08-30 16:55:38 -060032
33DECLARE_GLOBAL_DATA_PTR;
34
35u32 spl_boot_device(void)
36{
Simon Glass6afc4662016-07-04 11:58:32 -060037#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass2444dae2015-08-30 16:55:38 -060038 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 Hiblot7ec91812018-08-09 16:17:44 +020054 ret = device_get_global_by_ofnode(offset_to_ofnode(node), &dev);
Simon Glass2444dae2015-08-30 16:55:38 -060055 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
71fallback:
Simon Glasse70408c2016-11-13 14:22:16 -070072#elif defined(CONFIG_TARGET_CHROMEBOOK_JERRY) || \
Simon Glassc420ef62016-11-13 14:24:54 -070073 defined(CONFIG_TARGET_CHROMEBIT_MICKEY) || \
Marty E. Plummer8e2e6012019-01-05 20:12:08 -060074 defined(CONFIG_TARGET_CHROMEBOOK_MINNIE) || \
75 defined(CONFIG_TARGET_CHROMEBOOK_SPEEDY)
Simon Glassc8816d12016-11-13 14:21:57 -070076 return BOOT_DEVICE_SPI;
Simon Glass6afc4662016-07-04 11:58:32 -060077#endif
Simon Glass2444dae2015-08-30 16:55:38 -060078 return BOOT_DEVICE_MMC1;
79}
80
Wadim Egorovbafcf2d2017-06-19 12:36:40 +020081#if !defined(CONFIG_SPL_OF_PLATDATA)
82static 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 Glass2444dae2015-08-30 16:55:38 -0600107void board_init_f(ulong dummy)
108{
Simon Glass2444dae2015-08-30 16:55:38 -0600109 struct udevice *dev;
110 int ret;
111
Kever Yange83e8852019-03-29 09:09:04 +0800112#ifdef CONFIG_DEBUG_UART
Simon Glass2444dae2015-08-30 16:55:38 -0600113 /*
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 Cai7474bbe2017-04-18 19:17:27 +0800122 debug("\nspl:debug uart enabled in %s\n", __func__);
Kever Yange83e8852019-03-29 09:09:04 +0800123#endif
Eddie Cai73976052017-03-15 08:43:29 -0600124 ret = spl_early_init();
Simon Glass2444dae2015-08-30 16:55:38 -0600125 if (ret) {
Eddie Cai73976052017-03-15 08:43:29 -0600126 debug("spl_early_init() failed: %d\n", ret);
Simon Glass2444dae2015-08-30 16:55:38 -0600127 hang();
128 }
129
huang lincc2244b2015-11-17 14:20:09 +0800130 rockchip_timer_init();
Simon Glass2444dae2015-08-30 16:55:38 -0600131 configure_l2ctlr();
132
Simon Glassc3aad6f2016-07-17 15:23:17 -0600133 ret = rockchip_get_clk(&dev);
Simon Glass2444dae2015-08-30 16:55:38 -0600134 if (ret) {
135 debug("CLK init failed: %d\n", ret);
136 return;
137 }
138
Wadim Egorovbafcf2d2017-06-19 12:36:40 +0200139#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 Teki532cb7f2017-09-27 23:03:12 +0530150#if !defined(CONFIG_SUPPORT_TPL)
Eddie Cai7474bbe2017-04-18 19:17:27 +0800151 debug("\nspl:init dram\n");
Simon Glass2444dae2015-08-30 16:55:38 -0600152 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
153 if (ret) {
154 debug("DRAM init failed: %d\n", ret);
155 return;
156 }
Jagan Teki532cb7f2017-09-27 23:03:12 +0530157#endif
158
Philipp Tomsichee14d292017-06-29 11:21:15 +0200159#if CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM) && !defined(CONFIG_SPL_BOARD_INIT)
Philipp Tomsichb82bd1f2017-10-10 16:21:16 +0200160 back_to_bootrom(BROM_BOOT_NEXTSTAGE);
Xu Ziyuanb47ea792016-07-12 19:09:49 +0800161#endif
Simon Glass2444dae2015-08-30 16:55:38 -0600162}
163
164static 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
187void spl_board_init(void)
188{
Simon Glass2444dae2015-08-30 16:55:38 -0600189 int ret;
190
191 ret = setup_led();
Simon Glass2444dae2015-08-30 16:55:38 -0600192 if (ret) {
193 debug("LED ret=%d\n", ret);
194 hang();
195 }
196
Simon Glass2444dae2015-08-30 16:55:38 -0600197 preloader_console_init();
Philipp Tomsichee14d292017-06-29 11:21:15 +0200198#if CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM)
Philipp Tomsichb82bd1f2017-10-10 16:21:16 +0200199 back_to_bootrom(BROM_BOOT_NEXTSTAGE);
Sandy Patterson427351d2016-08-10 10:21:47 -0400200#endif
Simon Glass2444dae2015-08-30 16:55:38 -0600201 return;
Simon Glass2444dae2015-08-30 16:55:38 -0600202}
Jagan Teki2ee30212017-09-27 23:03:14 +0530203
204#ifdef CONFIG_SPL_OS_BOOT
205
206#define PMU_BASE 0xff730000
207int 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