blob: 204efca12b161abf3d3c93590ae19432497860ab [file] [log] [blame]
Masahiro Yamada7865f4b2015-04-21 20:38:20 +09001if ARCH_SOCFPGA
2
3choice
4 prompt "Altera SOCFPGA board select"
5
6config TARGET_SOCFPGA_ARRIA5
7 bool "Altera SOCFPGA Arria V"
8
9config TARGET_SOCFPGA_CYCLONE5
10 bool "Altera SOCFPGA Cyclone V"
11
12endchoice
13
14config SYS_BOARD
15 default "socfpga"
16
17config SYS_VENDOR
18 default "altera"
19
20config SYS_SOC
21 default "socfpga"
22
23config SYS_CONFIG_NAME
24 default "socfpga_arria5" if TARGET_SOCFPGA_ARRIA5
25 default "socfpga_cyclone5" if TARGET_SOCFPGA_CYCLONE5
26
27endif