2018-09-26 13:55:21 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2018-10-15 09:21:13 +00:00
|
|
|
#include <dm.h>
|
2022-01-27 06:11:09 +00:00
|
|
|
#include <dm/ofnode.h>
|
2019-08-01 15:46:46 +00:00
|
|
|
#include <env.h>
|
2018-09-26 13:55:21 +00:00
|
|
|
#include <fdtdec.h>
|
2020-05-10 17:40:01 +00:00
|
|
|
#include <image.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2019-08-21 19:14:49 +00:00
|
|
|
#include <spl.h>
|
2019-11-14 19:57:46 +00:00
|
|
|
#include <init.h>
|
2023-07-23 04:40:41 +00:00
|
|
|
#include <usb.h>
|
2018-10-15 09:21:13 +00:00
|
|
|
#include <virtio_types.h>
|
|
|
|
#include <virtio.h>
|
2018-09-26 13:55:21 +00:00
|
|
|
|
2021-10-11 21:00:13 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2022-01-27 06:11:09 +00:00
|
|
|
#if IS_ENABLED(CONFIG_MTD_NOR_FLASH)
|
|
|
|
int is_flash_available(void)
|
|
|
|
{
|
|
|
|
if (!ofnode_equal(ofnode_by_compatible(ofnode_null(), "cfi-flash"),
|
|
|
|
ofnode_null()))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-26 13:55:21 +00:00
|
|
|
int board_init(void)
|
|
|
|
{
|
2018-10-15 09:21:13 +00:00
|
|
|
/*
|
|
|
|
* Make sure virtio bus is enumerated so that peripherals
|
|
|
|
* on the virtio bus can be discovered by their drivers
|
|
|
|
*/
|
|
|
|
virtio_init();
|
|
|
|
|
2018-09-26 13:55:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-11-22 10:26:36 +00:00
|
|
|
|
|
|
|
int board_late_init(void)
|
|
|
|
{
|
2023-07-23 04:40:41 +00:00
|
|
|
/* start usb so that usb keyboard can be used as input device */
|
|
|
|
if (CONFIG_IS_ENABLED(USB_KEYBOARD))
|
|
|
|
usb_init();
|
|
|
|
|
2018-11-22 10:26:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-11-22 10:26:37 +00:00
|
|
|
|
2019-08-21 19:14:49 +00:00
|
|
|
#ifdef CONFIG_SPL
|
|
|
|
u32 spl_boot_device(void)
|
|
|
|
{
|
|
|
|
/* RISC-V QEMU only supports RAM as SPL boot device */
|
|
|
|
return BOOT_DEVICE_RAM;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_LOAD_FIT
|
|
|
|
int board_fit_config_name_match(const char *name)
|
|
|
|
{
|
|
|
|
/* boot using first FIT config */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2021-10-11 21:00:13 +00:00
|
|
|
|
2021-10-26 06:12:33 +00:00
|
|
|
void *board_fdt_blob_setup(int *err)
|
2021-10-11 21:00:13 +00:00
|
|
|
{
|
2021-10-26 06:12:33 +00:00
|
|
|
*err = 0;
|
2021-10-11 21:00:13 +00:00
|
|
|
/* Stored the DTB address there during our init */
|
|
|
|
return (void *)(ulong)gd->arch.firmware_fdt_addr;
|
|
|
|
}
|