Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 1 | if TARGET_QEMU_VIRT |
2 | |||||
3 | config SYS_BOARD | ||||
4 | default "qemu-riscv" | ||||
5 | |||||
6 | config SYS_VENDOR | ||||
7 | default "emulation" | ||||
8 | |||||
9 | config SYS_CPU | ||||
Anup Patel | fdff1f9 | 2019-02-25 08:14:10 +0000 | [diff] [blame] | 10 | default "generic" |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 11 | |
12 | config SYS_CONFIG_NAME | ||||
13 | default "qemu-riscv" | ||||
14 | |||||
15 | config SYS_TEXT_BASE | ||||
Lukas Auer | e456a81 | 2019-08-21 21:14:49 +0200 | [diff] [blame] | 16 | default 0x81200000 if SPL |
Anup Patel | ef8c3d3 | 2018-12-03 10:57:41 +0530 | [diff] [blame] | 17 | default 0x80000000 if !RISCV_SMODE |
Anup Patel | 8aa278d | 2019-04-11 06:52:12 +0000 | [diff] [blame] | 18 | default 0x80200000 if RISCV_SMODE && ARCH_RV64I |
19 | default 0x80400000 if RISCV_SMODE && ARCH_RV32I | ||||
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 20 | |
Lukas Auer | e456a81 | 2019-08-21 21:14:49 +0200 | [diff] [blame] | 21 | config SPL_TEXT_BASE |
22 | default 0x80000000 | ||||
23 | |||||
24 | config SPL_OPENSBI_LOAD_ADDR | ||||
25 | default 0x81000000 | ||||
26 | |||||
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 27 | config BOARD_SPECIFIC_OPTIONS # dummy |
28 | def_bool y | ||||
Anup Patel | fdff1f9 | 2019-02-25 08:14:10 +0000 | [diff] [blame] | 29 | select GENERIC_RISCV |
Lukas Auer | e456a81 | 2019-08-21 21:14:49 +0200 | [diff] [blame] | 30 | select SUPPORT_SPL |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 31 | imply SYS_NS16550 |
Bin Meng | 3c5196d | 2018-10-15 02:21:13 -0700 | [diff] [blame] | 32 | imply VIRTIO_MMIO |
33 | imply VIRTIO_NET | ||||
34 | imply VIRTIO_BLK | ||||
David Abdurachmanov | 1493b14 | 2019-07-03 15:50:44 +0300 | [diff] [blame] | 35 | imply VIRTIO_PCI |
Bin Meng | 440d9a4 | 2018-10-15 02:21:14 -0700 | [diff] [blame] | 36 | imply CMD_PING |
37 | imply CMD_FS_GENERIC | ||||
38 | imply DOS_PARTITION | ||||
39 | imply EFI_PARTITION | ||||
40 | imply ISO_PARTITION | ||||
41 | imply CMD_EXT2 | ||||
42 | imply CMD_EXT4 | ||||
43 | imply CMD_FAT | ||||
Lukas Auer | 66ffe57 | 2018-11-22 11:26:36 +0100 | [diff] [blame] | 44 | imply BOARD_LATE_INIT |
Lukas Auer | 897206c | 2018-11-22 11:26:37 +0100 | [diff] [blame] | 45 | imply OF_BOARD_SETUP |
Anup Patel | 9acaf60 | 2018-12-15 11:35:16 +0530 | [diff] [blame] | 46 | imply SIFIVE_SERIAL |
Lukas Auer | d0a8fd3 | 2019-03-17 19:28:42 +0100 | [diff] [blame] | 47 | imply SMP |
Bin Meng | cd6b619 | 2019-05-15 08:42:58 -0700 | [diff] [blame] | 48 | imply PCI |
49 | imply DM_PCI | ||||
50 | imply PCIE_ECAM_GENERIC | ||||
51 | imply CMD_PCI | ||||
Bin Meng | e64db0d | 2019-05-15 08:42:59 -0700 | [diff] [blame] | 52 | imply E1000 |
53 | imply NVME | ||||
Lukas Auer | e456a81 | 2019-08-21 21:14:49 +0200 | [diff] [blame] | 54 | imply SPL_RAM_SUPPORT |
55 | imply SPL_RAM_DEVICE | ||||
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 56 | |
57 | endif |