blob: 7c03dea07111b8d3ba071498244fa6a0e508f111 [file] [log] [blame]
Simon Glass7cf5fe02019-05-02 10:52:12 -06001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2018 Google, Inc
4 */
5
Simon Glassaeacddf2023-09-07 09:58:15 -06006#define LOG_CATEGORY LOGC_BOOT
7
Simon Glass7cf5fe02019-05-02 10:52:12 -06008#include <debug_uart.h>
Simon Glass7b8a5582019-10-20 21:37:50 -06009#include <dm.h>
Simon Glassf11478f2019-12-28 10:45:07 -070010#include <hang.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060011#include <image.h>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Simon Glass7cf5fe02019-05-02 10:52:12 -060014#include <spl.h>
15#include <asm/cpu.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Simon Glass7cf5fe02019-05-02 10:52:12 -060017#include <asm/mtrr.h>
18#include <asm/processor.h>
19#include <asm-generic/sections.h>
20
21DECLARE_GLOBAL_DATA_PTR;
22
Simon Glass7cf5fe02019-05-02 10:52:12 -060023static int x86_tpl_init(void)
24{
25 int ret;
26
27 debug("%s starting\n", __func__);
Simon Glass81f14622019-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 Glass7cf5fe02019-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 }
Simon Glass7cf5fe02019-05-02 10:52:12 -060043 preloader_console_init();
Simon Glass7cf5fe02019-05-02 10:52:12 -060044
45 return 0;
46}
47
48void board_init_f(ulong flags)
49{
50 int ret;
51
52 ret = x86_tpl_init();
53 if (ret) {
54 debug("Error %d\n", ret);
Simon Glass11ba7142019-09-25 08:56:51 -060055 panic("x86_tpl_init fail");
Simon Glass7cf5fe02019-05-02 10:52:12 -060056 }
57
58 /* Uninit CAR and jump to board_init_f_r() */
59 board_init_r(gd, 0);
60}
61
62void board_init_f_r(void)
63{
64 /* Not used since we never call board_init_f_r_trampoline() */
65 while (1);
66}
67
68u32 spl_boot_device(void)
69{
Simon Glassd81f07f2020-11-04 09:57:35 -070070 return IS_ENABLED(CONFIG_CHROMEOS_VBOOT) ? BOOT_DEVICE_CROS_VBOOT :
Simon Glass19da9c42019-09-25 08:11:39 -060071 BOOT_DEVICE_SPI_MMAP;
Simon Glass7cf5fe02019-05-02 10:52:12 -060072}
73
74int spl_start_uboot(void)
75{
76 return 0;
77}
78
79void spl_board_announce_boot_device(void)
80{
81 printf("SPI flash");
82}
83
84static int spl_board_load_image(struct spl_image_info *spl_image,
85 struct spl_boot_device *bootdev)
86{
87 spl_image->size = CONFIG_SYS_MONITOR_LEN; /* We don't know SPL size */
88 spl_image->entry_point = CONFIG_SPL_TEXT_BASE;
89 spl_image->load_addr = CONFIG_SPL_TEXT_BASE;
90 spl_image->os = IH_OS_U_BOOT;
91 spl_image->name = "U-Boot";
92
93 debug("Loading to %lx\n", spl_image->load_addr);
94
95 return 0;
96}
Simon Glass19da9c42019-09-25 08:11:39 -060097SPL_LOAD_IMAGE_METHOD("SPI", 5, BOOT_DEVICE_SPI_MMAP, spl_board_load_image);
Simon Glass7cf5fe02019-05-02 10:52:12 -060098
99int spl_spi_load_image(void)
100{
101 return -EPERM;
102}
103
104void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
105{
Simon Glassc00af3e2021-01-24 10:06:11 -0700106 debug("Jumping to %s at %lx\n", spl_phase_name(spl_next_phase()),
107 (ulong)spl_image->entry_point);
108#ifdef DEBUG
109 print_buffer(spl_image->entry_point, (void *)spl_image->entry_point, 1,
110 0x20, 0);
111#endif
Simon Glass7cf5fe02019-05-02 10:52:12 -0600112 jump_to_spl(spl_image->entry_point);
Simon Glass39c6f9b2019-09-25 08:11:38 -0600113 hang();
Simon Glass7cf5fe02019-05-02 10:52:12 -0600114}
115
116void spl_board_init(void)
117{
118 preloader_console_init();
119}
Simon Glass7b8a5582019-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 */
Simon Glass92882652021-08-07 07:24:04 -0600133#if CONFIG_IS_ENABLED(OF_REAL)
Simon Glass7b8a5582019-10-20 21:37:50 -0600134static const struct udevice_id tpl_fake_pci_ids[] = {
135 { .compatible = "pci-x86" },
136 { }
137};
Simon Glasse1bafd52020-12-23 08:11:32 -0700138#endif
Simon Glass7b8a5582019-10-20 21:37:50 -0600139
140U_BOOT_DRIVER(pci_x86) = {
141 .name = "pci_x86",
142 .id = UCLASS_SIMPLE_BUS,
Simon Glasse1bafd52020-12-23 08:11:32 -0700143 .of_match = of_match_ptr(tpl_fake_pci_ids),
Simon Glassf7ffa922021-03-15 17:25:48 +1300144 DM_PHASE(tpl)
Simon Glass7b8a5582019-10-20 21:37:50 -0600145};
146#endif