blob: e46c3489959c57ed39f701fd4db7201fc8fdb3d3 [file] [log] [blame]
Masahiro Yamada7865f4b2015-04-21 20:38:20 +09001if ARCH_SOCFPGA
2
3choice
4 prompt "Altera SOCFPGA board select"
Joe Hershbergera26cd042015-05-12 14:46:23 -05005 optional
Masahiro Yamada7865f4b2015-04-21 20:38:20 +09006
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