blob: 760fe45f56fcd9e0cff075c37d12f916c3008ca2 [file] [log] [blame]
Tom Rini4549e782018-05-06 18:27:01 -04001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01004 */
5
6#include <common.h>
7#include <dm.h>
Simon Glassdb41d652019-12-28 10:45:07 -07008#include <hang.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01009#include <spl.h>
Patrick Delaunay11dfd1a2018-03-20 10:54:54 +010010#include <asm/io.h>
Patrick Delaunay006ea182019-02-27 17:01:14 +010011#include <asm/arch/sys_proto.h>
12#include <linux/libfdt.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010013
14u32 spl_boot_device(void)
15{
Patrick Delaunay11dfd1a2018-03-20 10:54:54 +010016 u32 boot_mode;
17
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +010018 boot_mode = get_bootmode();
Patrick Delaunay11dfd1a2018-03-20 10:54:54 +010019
20 switch (boot_mode) {
21 case BOOT_FLASH_SD_1:
22 case BOOT_FLASH_EMMC_1:
23 return BOOT_DEVICE_MMC1;
24 case BOOT_FLASH_SD_2:
25 case BOOT_FLASH_EMMC_2:
26 return BOOT_DEVICE_MMC2;
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +010027 case BOOT_SERIAL_UART_1:
28 case BOOT_SERIAL_UART_2:
29 case BOOT_SERIAL_UART_3:
30 case BOOT_SERIAL_UART_4:
31 case BOOT_SERIAL_UART_5:
32 case BOOT_SERIAL_UART_6:
33 case BOOT_SERIAL_UART_7:
34 case BOOT_SERIAL_UART_8:
35 return BOOT_DEVICE_UART;
36 case BOOT_SERIAL_USB_OTG:
37 return BOOT_DEVICE_USB;
38 case BOOT_FLASH_NAND_FMC:
39 return BOOT_DEVICE_NAND;
40 case BOOT_FLASH_NOR_QSPI:
41 return BOOT_DEVICE_SPI;
Patrick Delaunayb664a742020-03-18 09:22:52 +010042 case BOOT_FLASH_SPINAND_1:
43 return BOOT_DEVICE_NONE; /* SPINAND not supported in SPL */
Patrick Delaunay11dfd1a2018-03-20 10:54:54 +010044 }
45
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010046 return BOOT_DEVICE_MMC1;
47}
48
Harald Seilere9759062020-04-15 11:33:30 +020049u32 spl_mmc_boot_mode(const u32 boot_device)
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010050{
51 return MMCSD_MODE_RAW;
52}
53
Harald Seilerc51b7512020-04-15 11:33:31 +020054int spl_mmc_boot_partition(const u32 boot_device)
Patrick Delaunay11dfd1a2018-03-20 10:54:54 +010055{
56 switch (boot_device) {
57 case BOOT_DEVICE_MMC1:
58 return CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION;
59 case BOOT_DEVICE_MMC2:
60 return CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_MMC2;
61 default:
62 return -EINVAL;
63 }
64}
65
Patrick Delaunay006ea182019-02-27 17:01:14 +010066#ifdef CONFIG_SPL_DISPLAY_PRINT
67void spl_display_print(void)
68{
69 DECLARE_GLOBAL_DATA_PTR;
70 const char *model;
71
72 /* same code than show_board_info() but not compiled for SPL
73 * see CONFIG_DISPLAY_BOARDINFO & common/board_info.c
74 */
75 model = fdt_getprop(gd->fdt_blob, 0, "model", NULL);
76 if (model)
77 printf("Model: %s\n", model);
78}
79#endif
80
Marek Vasut65e38e82020-04-22 13:18:10 +020081__weak int board_early_init_f(void)
82{
83 return 0;
84}
85
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010086void board_init_f(ulong dummy)
87{
88 struct udevice *dev;
89 int ret;
90
91 arch_cpu_init();
92
93 ret = spl_early_init();
94 if (ret) {
95 debug("spl_early_init() failed: %d\n", ret);
96 hang();
97 }
98
99 ret = uclass_get_device(UCLASS_CLK, 0, &dev);
100 if (ret) {
101 debug("Clock init failed: %d\n", ret);
102 return;
103 }
104
105 ret = uclass_get_device(UCLASS_RESET, 0, &dev);
106 if (ret) {
107 debug("Reset init failed: %d\n", ret);
108 return;
109 }
110
111 ret = uclass_get_device(UCLASS_PINCTRL, 0, &dev);
112 if (ret) {
113 debug("%s: Cannot find pinctrl device\n", __func__);
114 return;
115 }
116
117 /* enable console uart printing */
118 preloader_console_init();
119
Marek Vasut65e38e82020-04-22 13:18:10 +0200120 ret = board_early_init_f();
121 if (ret) {
122 debug("board_early_init_f() failed: %d\n", ret);
123 hang();
124 }
125
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100126 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
127 if (ret) {
Patrick Delaunay105a5ad2019-02-27 17:01:17 +0100128 printf("DRAM init failed: %d\n", ret);
129 hang();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100130 }
131}