blob: 34804b53ccaef2365969f49ca58dddbf3102e297 [file] [log] [blame]
Simon Glass7c03caf2019-05-02 10:52:12 -06001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2018 Google, Inc
4 */
5
6#include <common.h>
7#include <debug_uart.h>
Simon Glass0ced70a2019-10-20 21:37:50 -06008#include <dm.h>
Simon Glassdb41d652019-12-28 10:45:07 -07009#include <hang.h>
Simon Glass7c03caf2019-05-02 10:52:12 -060010#include <spl.h>
11#include <asm/cpu.h>
12#include <asm/mtrr.h>
13#include <asm/processor.h>
14#include <asm-generic/sections.h>
15
16DECLARE_GLOBAL_DATA_PTR;
17
18__weak int arch_cpu_init_dm(void)
19{
20 return 0;
21}
22
23static int x86_tpl_init(void)
24{
25 int ret;
26
27 debug("%s starting\n", __func__);
Simon Glass0e72ac72019-10-20 21:37:55 -060028 ret = x86_cpu_init_tpl();
29 if (ret) {
30 debug("%s: x86_cpu_init_tpl() failed\n", __func__);
31 return ret;
32 }
Simon Glass7c03caf2019-05-02 10:52:12 -060033 ret = spl_init();
34 if (ret) {
35 debug("%s: spl_init() failed\n", __func__);
36 return ret;
37 }
38 ret = arch_cpu_init();
39 if (ret) {
40 debug("%s: arch_cpu_init() failed\n", __func__);
41 return ret;
42 }
43 ret = arch_cpu_init_dm();
44 if (ret) {
45 debug("%s: arch_cpu_init_dm() failed\n", __func__);
46 return ret;
47 }
48 preloader_console_init();
Simon Glass7c03caf2019-05-02 10:52:12 -060049
50 return 0;
51}
52
53void board_init_f(ulong flags)
54{
55 int ret;
56
57 ret = x86_tpl_init();
58 if (ret) {
59 debug("Error %d\n", ret);
Simon Glass3d956882019-09-25 08:56:51 -060060 panic("x86_tpl_init fail");
Simon Glass7c03caf2019-05-02 10:52:12 -060061 }
62
63 /* Uninit CAR and jump to board_init_f_r() */
64 board_init_r(gd, 0);
65}
66
67void board_init_f_r(void)
68{
69 /* Not used since we never call board_init_f_r_trampoline() */
70 while (1);
71}
72
73u32 spl_boot_device(void)
74{
75 return IS_ENABLED(CONFIG_CHROMEOS) ? BOOT_DEVICE_CROS_VBOOT :
Simon Glassdaade112019-09-25 08:11:39 -060076 BOOT_DEVICE_SPI_MMAP;
Simon Glass7c03caf2019-05-02 10:52:12 -060077}
78
79int spl_start_uboot(void)
80{
81 return 0;
82}
83
84void spl_board_announce_boot_device(void)
85{
86 printf("SPI flash");
87}
88
89static int spl_board_load_image(struct spl_image_info *spl_image,
90 struct spl_boot_device *bootdev)
91{
92 spl_image->size = CONFIG_SYS_MONITOR_LEN; /* We don't know SPL size */
93 spl_image->entry_point = CONFIG_SPL_TEXT_BASE;
94 spl_image->load_addr = CONFIG_SPL_TEXT_BASE;
95 spl_image->os = IH_OS_U_BOOT;
96 spl_image->name = "U-Boot";
97
98 debug("Loading to %lx\n", spl_image->load_addr);
99
100 return 0;
101}
Simon Glassdaade112019-09-25 08:11:39 -0600102SPL_LOAD_IMAGE_METHOD("SPI", 5, BOOT_DEVICE_SPI_MMAP, spl_board_load_image);
Simon Glass7c03caf2019-05-02 10:52:12 -0600103
104int spl_spi_load_image(void)
105{
106 return -EPERM;
107}
108
109void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
110{
Simon Glass73c6cd62019-10-20 21:37:57 -0600111 debug("Jumping to U-Boot SPL at %lx\n", (ulong)spl_image->entry_point);
Simon Glass7c03caf2019-05-02 10:52:12 -0600112 jump_to_spl(spl_image->entry_point);
Simon Glass14dd93b2019-09-25 08:11:38 -0600113 hang();
Simon Glass7c03caf2019-05-02 10:52:12 -0600114}
115
116void spl_board_init(void)
117{
118 preloader_console_init();
119}
Simon Glass0ced70a2019-10-20 21:37:50 -0600120
121#if !CONFIG_IS_ENABLED(PCI)
122/*
123 * This is a fake PCI bus for TPL when it doesn't have proper PCI. It is enough
124 * to bind the devices on the PCI bus, some of which have early-regs properties
125 * providing fixed BARs. Individual drivers program these BARs themselves so
126 * that they can access the devices. The BARs are allocated statically in the
127 * device tree.
128 *
129 * Once SPL is running it enables PCI properly, but does not auto-assign BARs
130 * for devices, so the TPL BARs continue to be used. Once U-Boot starts it does
131 * the auto allocation (after relocation).
132 */
133static const struct udevice_id tpl_fake_pci_ids[] = {
134 { .compatible = "pci-x86" },
135 { }
136};
137
138U_BOOT_DRIVER(pci_x86) = {
139 .name = "pci_x86",
140 .id = UCLASS_SIMPLE_BUS,
141 .of_match = tpl_fake_pci_ids,
142};
143#endif