blob: b81e0d990a169032b23077c2b85e0894ad3005b2 [file] [log] [blame]
Bin Meng6b697752018-09-26 06:55:06 -07001menu "RISC-V architecture"
Rick Chen64d4ead2017-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 Chenb66af372018-05-29 09:54:40 +080011config TARGET_AX25_AE350
12 bool "Support ax25-ae350"
Rick Chen64d4ead2017-12-26 13:55:52 +080013
Bin Meng8a8694d2018-09-26 06:55:21 -070014config TARGET_QEMU_VIRT
15 bool "Support QEMU Virt Board"
16
Rick Chen64d4ead2017-12-26 13:55:52 +080017endchoice
18
Rick Chenb66af372018-05-29 09:54:40 +080019source "board/AndesTech/ax25-ae350/Kconfig"
Bin Meng8a8694d2018-09-26 06:55:21 -070020source "board/emulation/qemu-riscv/Kconfig"
Rick Chen64d4ead2017-12-26 13:55:52 +080021
22choice
Lukas Auer54ebfe72018-11-22 11:26:12 +010023 prompt "Base ISA"
24 default ARCH_RV32I
Rick Chen64d4ead2017-12-26 13:55:52 +080025
Lukas Auer54ebfe72018-11-22 11:26:12 +010026config ARCH_RV32I
27 bool "RV32I"
Rick Chen64d4ead2017-12-26 13:55:52 +080028 select 32BIT
29 help
Lukas Auer54ebfe72018-11-22 11:26:12 +010030 Choose this option to target the RV32I base integer instruction set.
Rick Chen64d4ead2017-12-26 13:55:52 +080031
Lukas Auer54ebfe72018-11-22 11:26:12 +010032config ARCH_RV64I
33 bool "RV64I"
Rick Chen64d4ead2017-12-26 13:55:52 +080034 select 64BIT
Lukas Auer7ab1df02018-11-22 11:26:13 +010035 select PHYS_64BIT
Rick Chen64d4ead2017-12-26 13:55:52 +080036 help
Lukas Auer54ebfe72018-11-22 11:26:12 +010037 Choose this option to target the RV64I base integer instruction set.
Rick Chen64d4ead2017-12-26 13:55:52 +080038
39endchoice
40
41config 32BIT
42 bool
43
44config 64BIT
45 bool
46
47endmenu