aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/Kconfig
blob: 168ca3de7ce0541c99557f08e82ce50434615e89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
menu "RISC-V architecture"
	depends on RISCV

config SYS_ARCH
	default "riscv"

choice
	prompt "Target select"
	optional

config TARGET_AX25_AE350
	bool "Support ax25-ae350"

config TARGET_QEMU_VIRT
	bool "Support QEMU Virt Board"

endchoice

source "board/AndesTech/ax25-ae350/Kconfig"
source "board/emulation/qemu-riscv/Kconfig"

choice
	prompt "CPU selection"
	default CPU_RISCV_32

config CPU_RISCV_32
	bool "RISC-V 32-bit"
	select 32BIT
	help
	  Choose this option to build an U-Boot for RISCV32 architecture.

config CPU_RISCV_64
	bool "RISC-V 64-bit"
	select 64BIT
	help
	  Choose this option to build an U-Boot for RISCV64 architecture.

endchoice

config 32BIT
	bool

config 64BIT
	bool

endmenu