2018-09-26 13:55:21 +00:00
|
|
|
/* 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 CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
|
2019-01-04 00:37:34 +00:00
|
|
|
#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
|
|
|
|
|
2021-01-17 12:41:25 +00:00
|
|
|
#define RISCV_MMODE_TIMERBASE 0x2000000
|
|
|
|
#define RISCV_MMODE_TIMER_FREQ 1000000
|
|
|
|
|
|
|
|
#define RISCV_SMODE_TIMER_FREQ 1000000
|
|
|
|
|
2018-09-26 13:55:21 +00:00
|
|
|
/* Environment options */
|
|
|
|
|
2018-11-22 10:26:34 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
2018-11-22 10:26:36 +00:00
|
|
|
func(QEMU, qemu, na) \
|
2018-11-22 10:26:34 +00:00
|
|
|
func(VIRTIO, virtio, 0) \
|
2020-12-01 16:30:26 +00:00
|
|
|
func(SCSI, scsi, 0) \
|
2018-11-22 10:26:34 +00:00
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
2018-11-22 10:26:36 +00:00
|
|
|
#define BOOTENV_DEV_QEMU(devtypeu, devtypel, instance) \
|
|
|
|
"bootcmd_qemu=" \
|
|
|
|
"if env exists kernel_start; then " \
|
|
|
|
"bootm ${kernel_start} - ${fdtcontroladdr};" \
|
|
|
|
"fi;\0"
|
|
|
|
|
|
|
|
#define BOOTENV_DEV_NAME_QEMU(devtypeu, devtypel, instance) \
|
|
|
|
"qemu "
|
|
|
|
|
2018-11-22 10:26:31 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"fdt_high=0xffffffffffffffff\0" \
|
2018-11-22 10:26:34 +00:00
|
|
|
"initrd_high=0xffffffffffffffff\0" \
|
2019-04-09 10:42:46 +00:00
|
|
|
"kernel_addr_r=0x84000000\0" \
|
2022-05-24 04:31:14 +00:00
|
|
|
"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" \
|
2018-11-22 10:26:34 +00:00
|
|
|
BOOTENV
|
2018-11-22 10:26:31 +00:00
|
|
|
|
2018-09-26 13:55:21 +00:00
|
|
|
#endif /* __CONFIG_H */
|