blob: 168ca3de7ce0541c99557f08e82ce50434615e89 [file] [log] [blame]
Bin Meng117a4332018-09-26 06:55:06 -07001menu "RISC-V architecture"
Rick Chenf94c44e2017-12-26 13:55:52 +08002 depends on RISCV
3
4config SYS_ARCH
5 default "riscv"
6
7choice
8 prompt "Target select"
9 optional
10
Rick Chen6f4dd622018-05-29 09:54:40 +080011config TARGET_AX25_AE350
12 bool "Support ax25-ae350"
Rick Chenf94c44e2017-12-26 13:55:52 +080013
Bin Meng510e3792018-09-26 06:55:21 -070014config TARGET_QEMU_VIRT
15 bool "Support QEMU Virt Board"
16
Rick Chenf94c44e2017-12-26 13:55:52 +080017endchoice
18
Rick Chen6f4dd622018-05-29 09:54:40 +080019source "board/AndesTech/ax25-ae350/Kconfig"
Bin Meng510e3792018-09-26 06:55:21 -070020source "board/emulation/qemu-riscv/Kconfig"
Rick Chenf94c44e2017-12-26 13:55:52 +080021
22choice
23 prompt "CPU selection"
24 default CPU_RISCV_32
25
26config CPU_RISCV_32
Bin Meng117a4332018-09-26 06:55:06 -070027 bool "RISC-V 32-bit"
Rick Chenf94c44e2017-12-26 13:55:52 +080028 select 32BIT
29 help
30 Choose this option to build an U-Boot for RISCV32 architecture.
31
32config CPU_RISCV_64
Bin Meng117a4332018-09-26 06:55:06 -070033 bool "RISC-V 64-bit"
Rick Chenf94c44e2017-12-26 13:55:52 +080034 select 64BIT
35 help
36 Choose this option to build an U-Boot for RISCV64 architecture.
37
38endchoice
39
40config 32BIT
41 bool
42
43config 64BIT
44 bool
45
46endmenu