mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
cbc45cb596
QEMU RISC-V supports multiple virtio devices, but only tries to boot to the first one. Enable support for a second virtio device, that is useful for instance to boot on a disk image + an installer. Ideally that should be made dynamic, but that's a first step. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
#define RISCV_MMODE_TIMERBASE 0x2000000
|
|
#define RISCV_MMODE_TIMEROFF 0xbff8
|
|
#define RISCV_MMODE_TIMER_FREQ 1000000
|
|
#define RISCV_SMODE_TIMER_FREQ 1000000
|
|
|
|
/* Environment options */
|
|
|
|
#define CFG_STD_DEVICES_SETTINGS "stdin=serial,usbkbd\0" \
|
|
"stdout=serial,vidconsole\0" \
|
|
"stderr=serial,vidconsole\0"
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
func(VIRTIO, virtio, 0) \
|
|
func(VIRTIO, virtio, 1) \
|
|
func(SCSI, scsi, 0) \
|
|
func(DHCP, dhcp, na)
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
|
CFG_STD_DEVICES_SETTINGS \
|
|
"fdt_high=0xffffffffffffffff\0" \
|
|
"initrd_high=0xffffffffffffffff\0" \
|
|
"kernel_addr_r=0x84000000\0" \
|
|
"kernel_comp_addr_r=0x88000000\0" \
|
|
"kernel_comp_size=0x4000000\0" \
|
|
"fdt_addr_r=0x8c000000\0" \
|
|
"scriptaddr=0x8c100000\0" \
|
|
"pxefile_addr_r=0x8c200000\0" \
|
|
"ramdisk_addr_r=0x8c300000\0" \
|
|
BOOTENV
|
|
|
|
#endif /* __CONFIG_H */
|