Bin Meng | 117a433 | 2018-09-26 06:55:06 -0700 | [diff] [blame] | 1 | menu "RISC-V architecture" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 2 | depends on RISCV |
3 | |||||
4 | config SYS_ARCH | ||||
5 | default "riscv" | ||||
6 | |||||
7 | choice | ||||
8 | prompt "Target select" | ||||
9 | optional | ||||
10 | |||||
Rick Chen | 6f4dd62 | 2018-05-29 09:54:40 +0800 | [diff] [blame] | 11 | config TARGET_AX25_AE350 |
12 | bool "Support ax25-ae350" | ||||
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 13 | |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame^] | 14 | config TARGET_QEMU_VIRT |
15 | bool "Support QEMU Virt Board" | ||||
16 | |||||
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 17 | endchoice |
18 | |||||
Rick Chen | 6f4dd62 | 2018-05-29 09:54:40 +0800 | [diff] [blame] | 19 | source "board/AndesTech/ax25-ae350/Kconfig" |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame^] | 20 | source "board/emulation/qemu-riscv/Kconfig" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 21 | |
22 | choice | ||||
23 | prompt "CPU selection" | ||||
24 | default CPU_RISCV_32 | ||||
25 | |||||
26 | config CPU_RISCV_32 | ||||
Bin Meng | 117a433 | 2018-09-26 06:55:06 -0700 | [diff] [blame] | 27 | bool "RISC-V 32-bit" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 28 | select 32BIT |
29 | help | ||||
30 | Choose this option to build an U-Boot for RISCV32 architecture. | ||||
31 | |||||
32 | config CPU_RISCV_64 | ||||
Bin Meng | 117a433 | 2018-09-26 06:55:06 -0700 | [diff] [blame] | 33 | bool "RISC-V 64-bit" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 34 | select 64BIT |
35 | help | ||||
36 | Choose this option to build an U-Boot for RISCV64 architecture. | ||||
37 | |||||
38 | endchoice | ||||
39 | |||||
40 | config 32BIT | ||||
41 | bool | ||||
42 | |||||
43 | config 64BIT | ||||
44 | bool | ||||
45 | |||||
46 | endmenu |