]> Git Repo - u-boot.git/blame - include/configs/qemu-riscv.h
Convert CONFIG_SPL_PAD_TO et al to Kconfig
[u-boot.git] / include / configs / qemu-riscv.h
CommitLineData
510e379c
BM
1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2018, Bin Meng <[email protected]>
4 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
9#include <linux/sizes.h>
10
e456a819
LA
11#ifdef CONFIG_SPL
12
e456a819
LA
13#define CONFIG_SPL_BSS_START_ADDR 0x84000000
14#define CONFIG_SPL_BSS_MAX_SIZE 0x00100000
15#define CONFIG_SYS_SPL_MALLOC_START 0x84100000
16#define CONFIG_SYS_SPL_MALLOC_SIZE 0x00100000
17
e456a819
LA
18#endif
19
510e379c
BM
20#define CONFIG_SYS_SDRAM_BASE 0x80000000
21#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M)
22
ac12c619 23#define CONFIG_SYS_BOOTM_LEN SZ_64M
52b98436 24
91882c47
LA
25#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
26
bc8d12bf
PP
27#define RISCV_MMODE_TIMERBASE 0x2000000
28#define RISCV_MMODE_TIMER_FREQ 1000000
29
30#define RISCV_SMODE_TIMER_FREQ 1000000
31
510e379c 32/* Environment options */
510e379c 33
e456a819 34#ifndef CONFIG_SPL_BUILD
111ab36f 35#define BOOT_TARGET_DEVICES(func) \
66ffe578 36 func(QEMU, qemu, na) \
111ab36f 37 func(VIRTIO, virtio, 0) \
b620363f 38 func(SCSI, scsi, 0) \
111ab36f
LA
39 func(DHCP, dhcp, na)
40
41#include <config_distro_bootcmd.h>
42
66ffe578
LA
43#define BOOTENV_DEV_QEMU(devtypeu, devtypel, instance) \
44 "bootcmd_qemu=" \
45 "if env exists kernel_start; then " \
46 "bootm ${kernel_start} - ${fdtcontroladdr};" \
47 "fi;\0"
48
49#define BOOTENV_DEV_NAME_QEMU(devtypeu, devtypel, instance) \
50 "qemu "
51
52b98436
LA
52#define CONFIG_EXTRA_ENV_SETTINGS \
53 "fdt_high=0xffffffffffffffff\0" \
111ab36f 54 "initrd_high=0xffffffffffffffff\0" \
ac12c619 55 "kernel_addr_r=0x84000000\0" \
c544b281
BM
56 "kernel_comp_addr_r=0x88000000\0" \
57 "kernel_comp_size=0x4000000\0" \
58 "fdt_addr_r=0x8c000000\0" \
59 "scriptaddr=0x8c100000\0" \
60 "pxefile_addr_r=0x8c200000\0" \
61 "ramdisk_addr_r=0x8c300000\0" \
111ab36f 62 BOOTENV
e456a819 63#endif
52b98436 64
510e379c 65#endif /* __CONFIG_H */
This page took 0.209364 seconds and 4 git commands to generate.