MIPS: convert CONFIG_SYS_MIPS_TIMER_FREQ to Kconfig
[platform/kernel/u-boot.git] / include / configs / qemu-riscv.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4  */
5
6 #ifndef __CONFIG_H
7 #define __CONFIG_H
8
9 #include <linux/sizes.h>
10
11 #define CONFIG_SYS_SDRAM_BASE           0x80000000
12
13 #define CONFIG_STANDALONE_LOAD_ADDR     0x80200000
14
15 #define RISCV_MMODE_TIMERBASE           0x2000000
16 #define RISCV_MMODE_TIMER_FREQ          1000000
17
18 #define RISCV_SMODE_TIMER_FREQ          1000000
19
20 /* Environment options */
21
22 #define BOOT_TARGET_DEVICES(func) \
23         func(QEMU, qemu, na) \
24         func(VIRTIO, virtio, 0) \
25         func(SCSI, scsi, 0) \
26         func(DHCP, dhcp, na)
27
28 #include <config_distro_bootcmd.h>
29
30 #define BOOTENV_DEV_QEMU(devtypeu, devtypel, instance) \
31         "bootcmd_qemu=" \
32                 "if env exists kernel_start; then " \
33                         "bootm ${kernel_start} - ${fdtcontroladdr};" \
34                 "fi;\0"
35
36 #define BOOTENV_DEV_NAME_QEMU(devtypeu, devtypel, instance) \
37         "qemu "
38
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" \
49         BOOTENV
50
51 #endif /* __CONFIG_H */