]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/riscv/Kconfig
riscv: Add Kconfig to support RISC-V
[people/ms/u-boot.git] / arch / riscv / Kconfig
1 menu "RISCV architecture"
2 depends on RISCV
3
4 config SYS_ARCH
5 default "riscv"
6
7 choice
8 prompt "Target select"
9 optional
10
11 config TARGET_NX25_AE250
12 bool "Support nx25-ae250"
13
14 endchoice
15
16 source "board/AndesTech/nx25-ae250/Kconfig"
17
18 choice
19 prompt "CPU selection"
20 default CPU_RISCV_32
21
22 config CPU_RISCV_32
23 bool "RISCV 32 bit"
24 select 32BIT
25 help
26 Choose this option to build an U-Boot for RISCV32 architecture.
27
28 config CPU_RISCV_64
29 bool "RISCV 64 bit"
30 select 64BIT
31 help
32 Choose this option to build an U-Boot for RISCV64 architecture.
33
34 endchoice
35
36 config 32BIT
37 bool
38
39 config 64BIT
40 bool
41
42 endmenu