blob: 273e9c8e1ca157238fcb6d30fd8f1c0aa2012ae3 [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 <common.h>
9#include <debug_uart.h>
Simon Glass7b8a5582019-10-20 21:37:50 -060010#include <dm.h>
Simon Glassf11478f2019-12-28 10:45:07 -070011#include <hang.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060012#include <image.h>
Simon Glass97589732020-05-10 11:40:02 -060013#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Simon Glass7cf5fe02019-05-02 10:52:12 -060015#include <spl.h>
16#include <asm/cpu.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060017#include <asm/global_data.h>
Simon Glass7cf5fe02019-05-02 10:52:12 -060018#include <asm/mtrr.h>
19#include <asm/processor.h>
20#include <asm-generic/sections.h>
21
22DECLARE_GLOBAL_DATA_PTR;
23
Simon Glass7cf5fe02019-05-02 10:52:12 -060024static int x86_tpl_init(void)
25{
26 int ret;
27
28 debug("%s starting\n", __func__);
Simon Glass81f14622019-10-20 21:37:55 -060029 ret = x86_cpu_init_tpl();
30 if (ret) {
31 debug("%s: x86_cpu_init_tpl() failed\n", __func__);
32 return ret;
33 }
Simon Glass7cf5fe02019-05-02 10:52:12 -060034 ret = spl_init();
35 if (ret) {
36 debug("%s: spl_init() failed\n", __func__);
37 return ret;
38 }
39 ret = arch_cpu_init();
40 if (ret) {
41 debug("%s: arch_cpu_init() failed\n", __func__);
42 return ret;
43 }
Simon Glass7cf5fe02019-05-02 10:52:12 -060044 preloader_console_init();
Simon Glass7cf5fe02019-05-02 10:52:12 -060045
46 return 0;
47}
48
49void board_init_f(ulong flags)
50{
51 int ret;
52
53 ret = x86_tpl_init();
54 if (ret) {
55 debug("Error %d\n", ret);
Simon Glass11ba7142019-09-25 08:56:51 -060056 panic("x86_tpl_init fail");
Simon Glass7cf5fe02019-05-02 10:52:12 -060057 }
58
59 /* Uninit CAR and jump to board_init_f_r() */
60 board_init_r(gd, 0);
61}
62
63void board_init_f_r(void)
64{
65 /* Not used since we never call board_init_f_r_trampoline() */
66 while (1);
67}
68
69u32 spl_boot_device(void)
70{
Simon Glassd81f07f2020-11-04 09:57:35 -070071 return IS_ENABLED(CONFIG_CHROMEOS_VBOOT) ? BOOT_DEVICE_CROS_VBOOT :
Simon Glass19da9c42019-09-25 08:11:39 -060072 BOOT_DEVICE_SPI_MMAP;
Simon Glass7cf5fe02019-05-02 10:52:12 -060073}
74
75int spl_start_uboot(void)
76{
77 return 0;
78}
79
80void spl_board_announce_boot_device(void)
81{
82 printf("SPI flash");
83}
84
85static int spl_board_load_image(struct spl_image_info *spl_image,
86 struct spl_boot_device *bootdev)
87{
88 spl_image->size = CONFIG_SYS_MONITOR_LEN; /* We don't know SPL size */
89 spl_image->entry_point = CONFIG_SPL_TEXT_BASE;
90 spl_image->load_addr = CONFIG_SPL_TEXT_BASE;
91 spl_image->os = IH_OS_U_BOOT;
92 spl_image->name = "U-Boot";
93
94 debug("Loading to %lx\n", spl_image->load_addr);
95
96 return 0;
97}
Simon Glass19da9c42019-09-25 08:11:39 -060098SPL_LOAD_IMAGE_METHOD("SPI", 5, BOOT_DEVICE_SPI_MMAP, spl_board_load_image);
Simon Glass7cf5fe02019-05-02 10:52:12 -060099
100int spl_spi_load_image(void)
101{
102 return -EPERM;
103}
104
105void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
106{
Simon Glassc00af3e2021-01-24 10:06:11 -0700107 debug("Jumping to %s at %lx\n", spl_phase_name(spl_next_phase()),
108 (ulong)spl_image->entry_point);
109#ifdef DEBUG
110 print_buffer(spl_image->entry_point, (void *)spl_image->entry_point, 1,
111 0x20, 0);
112#endif
Simon Glass7cf5fe02019-05-02 10:52:12 -0600113 jump_to_spl(spl_image->entry_point);
Simon Glass39c6f9b2019-09-25 08:11:38 -0600114 hang();
Simon Glass7cf5fe02019-05-02 10:52:12 -0600115}
116
117void spl_board_init(void)
118{
119 preloader_console_init();
120}
Simon Glass7b8a5582019-10-20 21:37:50 -0600121
122#if !CONFIG_IS_ENABLED(PCI)
123/*
124 * This is a fake PCI bus for TPL when it doesn't have proper PCI. It is enough
125 * to bind the devices on the PCI bus, some of which have early-regs properties
126 * providing fixed BARs. Individual drivers program these BARs themselves so
127 * that they can access the devices. The BARs are allocated statically in the
128 * device tree.
129 *
130 * Once SPL is running it enables PCI properly, but does not auto-assign BARs
131 * for devices, so the TPL BARs continue to be used. Once U-Boot starts it does
132 * the auto allocation (after relocation).
133 */
Simon Glass92882652021-08-07 07:24:04 -0600134#if CONFIG_IS_ENABLED(OF_REAL)
Simon Glass7b8a5582019-10-20 21:37:50 -0600135static const struct udevice_id tpl_fake_pci_ids[] = {
136 { .compatible = "pci-x86" },
137 { }
138};
Simon Glasse1bafd52020-12-23 08:11:32 -0700139#endif
Simon Glass7b8a5582019-10-20 21:37:50 -0600140
141U_BOOT_DRIVER(pci_x86) = {
142 .name = "pci_x86",
143 .id = UCLASS_SIMPLE_BUS,
Simon Glasse1bafd52020-12-23 08:11:32 -0700144 .of_match = of_match_ptr(tpl_fake_pci_ids),
Simon Glassf7ffa922021-03-15 17:25:48 +1300145 DM_PHASE(tpl)
Simon Glass7b8a5582019-10-20 21:37:50 -0600146};
147#endif