1 /* SPDX-License-Identifier: GPL-2.0+ */
9 #include <linux/sizes.h>
11 #define CONFIG_SYS_SDRAM_BASE 0x80000000
13 #define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
15 #define RISCV_MMODE_TIMERBASE 0x2000000
16 #define RISCV_MMODE_TIMER_FREQ 1000000
18 #define RISCV_SMODE_TIMER_FREQ 1000000
20 /* Environment options */
22 #define BOOT_TARGET_DEVICES(func) \
23 func(QEMU, qemu, na) \
24 func(VIRTIO, virtio, 0) \
28 #include <config_distro_bootcmd.h>
30 #define BOOTENV_DEV_QEMU(devtypeu, devtypel, instance) \
32 "if env exists kernel_start; then " \
33 "bootm ${kernel_start} - ${fdtcontroladdr};" \
36 #define BOOTENV_DEV_NAME_QEMU(devtypeu, devtypel, instance) \
39 #define CONFIG_EXTRA_ENV_SETTINGS \
40 "fdt_high=0xffffffffffffffff\0" \
41 "initrd_high=0xffffffffffffffff\0" \
42 "kernel_addr_r=0x84000000\0" \
43 "kernel_comp_addr_r=0x88000000\0" \
44 "kernel_comp_size=0x4000000\0" \
45 "fdt_addr_r=0x8c000000\0" \
46 "scriptaddr=0x8c100000\0" \
47 "pxefile_addr_r=0x8c200000\0" \
48 "ramdisk_addr_r=0x8c300000\0" \
51 #endif /* __CONFIG_H */