mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 17:28:15 +00:00
0ced70a0bb
In TPL we try to minimise code size so do not include the PCI subsystem. We can use fixed BARs and drivers can directly program the devices that they need. However we do need to bind the devices on the PCI bus and without PCI this does not ordinarily happen. As a work-around, define a fake PCI bus which does this binding, but no other PCI operations. This is a convenient way to ensure that we can use the same device tree for TPL, SPL and U-Boot proper: TPL - CONFIG_TPL_PCI is not set (no auto-config, fake PCI bus) SPL - CONFIG_SPL_PCI is set (no auto-config but with real PCI bus) U-Boot - CONFIG_PCI is set (full auto-config after relocation) Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
142 lines
2.9 KiB
C
142 lines
2.9 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2018 Google, Inc
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <debug_uart.h>
|
|
#include <dm.h>
|
|
#include <spl.h>
|
|
#include <asm/cpu.h>
|
|
#include <asm/mtrr.h>
|
|
#include <asm/processor.h>
|
|
#include <asm-generic/sections.h>
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
__weak int arch_cpu_init_dm(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static int x86_tpl_init(void)
|
|
{
|
|
int ret;
|
|
|
|
debug("%s starting\n", __func__);
|
|
ret = spl_init();
|
|
if (ret) {
|
|
debug("%s: spl_init() failed\n", __func__);
|
|
return ret;
|
|
}
|
|
ret = arch_cpu_init();
|
|
if (ret) {
|
|
debug("%s: arch_cpu_init() failed\n", __func__);
|
|
return ret;
|
|
}
|
|
ret = arch_cpu_init_dm();
|
|
if (ret) {
|
|
debug("%s: arch_cpu_init_dm() failed\n", __func__);
|
|
return ret;
|
|
}
|
|
preloader_console_init();
|
|
ret = print_cpuinfo();
|
|
if (ret) {
|
|
debug("%s: print_cpuinfo() failed\n", __func__);
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void board_init_f(ulong flags)
|
|
{
|
|
int ret;
|
|
|
|
ret = x86_tpl_init();
|
|
if (ret) {
|
|
debug("Error %d\n", ret);
|
|
panic("x86_tpl_init fail");
|
|
}
|
|
|
|
/* Uninit CAR and jump to board_init_f_r() */
|
|
board_init_r(gd, 0);
|
|
}
|
|
|
|
void board_init_f_r(void)
|
|
{
|
|
/* Not used since we never call board_init_f_r_trampoline() */
|
|
while (1);
|
|
}
|
|
|
|
u32 spl_boot_device(void)
|
|
{
|
|
return IS_ENABLED(CONFIG_CHROMEOS) ? BOOT_DEVICE_CROS_VBOOT :
|
|
BOOT_DEVICE_SPI_MMAP;
|
|
}
|
|
|
|
int spl_start_uboot(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void spl_board_announce_boot_device(void)
|
|
{
|
|
printf("SPI flash");
|
|
}
|
|
|
|
static int spl_board_load_image(struct spl_image_info *spl_image,
|
|
struct spl_boot_device *bootdev)
|
|
{
|
|
spl_image->size = CONFIG_SYS_MONITOR_LEN; /* We don't know SPL size */
|
|
spl_image->entry_point = CONFIG_SPL_TEXT_BASE;
|
|
spl_image->load_addr = CONFIG_SPL_TEXT_BASE;
|
|
spl_image->os = IH_OS_U_BOOT;
|
|
spl_image->name = "U-Boot";
|
|
|
|
debug("Loading to %lx\n", spl_image->load_addr);
|
|
|
|
return 0;
|
|
}
|
|
SPL_LOAD_IMAGE_METHOD("SPI", 5, BOOT_DEVICE_SPI_MMAP, spl_board_load_image);
|
|
|
|
int spl_spi_load_image(void)
|
|
{
|
|
return -EPERM;
|
|
}
|
|
|
|
void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
|
|
{
|
|
printf("Jumping to U-Boot SPL at %lx\n", (ulong)spl_image->entry_point);
|
|
jump_to_spl(spl_image->entry_point);
|
|
hang();
|
|
}
|
|
|
|
void spl_board_init(void)
|
|
{
|
|
preloader_console_init();
|
|
}
|
|
|
|
#if !CONFIG_IS_ENABLED(PCI)
|
|
/*
|
|
* This is a fake PCI bus for TPL when it doesn't have proper PCI. It is enough
|
|
* to bind the devices on the PCI bus, some of which have early-regs properties
|
|
* providing fixed BARs. Individual drivers program these BARs themselves so
|
|
* that they can access the devices. The BARs are allocated statically in the
|
|
* device tree.
|
|
*
|
|
* Once SPL is running it enables PCI properly, but does not auto-assign BARs
|
|
* for devices, so the TPL BARs continue to be used. Once U-Boot starts it does
|
|
* the auto allocation (after relocation).
|
|
*/
|
|
static const struct udevice_id tpl_fake_pci_ids[] = {
|
|
{ .compatible = "pci-x86" },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(pci_x86) = {
|
|
.name = "pci_x86",
|
|
.id = UCLASS_SIMPLE_BUS,
|
|
.of_match = tpl_fake_pci_ids,
|
|
};
|
|
#endif
|