xref: /openbmc/u-boot/arch/arm/mach-socfpga/Kconfig (revision 9038cd53)
1if ARCH_SOCFPGA
2
3choice
4	prompt "Altera SOCFPGA board select"
5	optional
6
7config TARGET_SOCFPGA_ARRIA5
8	bool "Altera SOCFPGA Arria V"
9
10config TARGET_SOCFPGA_CYCLONE5
11	bool "Altera SOCFPGA Cyclone V"
12
13endchoice
14
15config SYS_BOARD
16	default "socfpga"
17
18config SYS_VENDOR
19	default "altera"
20
21config SYS_SOC
22	default "socfpga"
23
24config SYS_CONFIG_NAME
25	default "socfpga_arria5" if TARGET_SOCFPGA_ARRIA5
26	default "socfpga_cyclone5" if TARGET_SOCFPGA_CYCLONE5
27
28endif
29