Merge https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[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 #ifdef CONFIG_SPL
12
13 #define CONFIG_SPL_MAX_SIZE             0x00100000
14 #define CONFIG_SPL_BSS_START_ADDR       0x84000000
15 #define CONFIG_SPL_BSS_MAX_SIZE         0x00100000
16 #define CONFIG_SYS_SPL_MALLOC_START     0x84100000
17 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x00100000
18
19 #endif
20
21 #define CONFIG_SYS_SDRAM_BASE           0x80000000
22 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + SZ_2M)
23
24 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + SZ_2M)
25
26 #define CONFIG_SYS_MALLOC_LEN           SZ_8M
27
28 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
29
30 #define CONFIG_STANDALONE_LOAD_ADDR     0x80200000
31
32 /* Environment options */
33
34 #ifndef CONFIG_SPL_BUILD
35 #define BOOT_TARGET_DEVICES(func) \
36         func(QEMU, qemu, na) \
37         func(VIRTIO, virtio, 0) \
38         func(DHCP, dhcp, na)
39
40 #include <config_distro_bootcmd.h>
41
42 #define BOOTENV_DEV_QEMU(devtypeu, devtypel, instance) \
43         "bootcmd_qemu=" \
44                 "if env exists kernel_start; then " \
45                         "bootm ${kernel_start} - ${fdtcontroladdr};" \
46                 "fi;\0"
47
48 #define BOOTENV_DEV_NAME_QEMU(devtypeu, devtypel, instance) \
49         "qemu "
50
51 #define CONFIG_EXTRA_ENV_SETTINGS \
52         "fdt_high=0xffffffffffffffff\0" \
53         "initrd_high=0xffffffffffffffff\0" \
54         "kernel_addr_r=0x84000000\0" \
55         "fdt_addr_r=0x88000000\0" \
56         "scriptaddr=0x88100000\0" \
57         "pxefile_addr_r=0x88200000\0" \
58         "ramdisk_addr_r=0x88300000\0" \
59         BOOTENV
60 #endif
61
62 #endif /* __CONFIG_H */