]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sparc/Kconfig
arch: Make board selection choices optional
[karo-tx-uboot.git] / arch / sparc / Kconfig
1 menu "SPARC architecture"
2         depends on SPARC
3
4 config LEON
5         bool
6
7 config LEON2
8         bool
9         select LEON
10
11 config LEON3
12         bool
13         select LEON
14
15 choice
16         prompt "Board select"
17         optional
18
19 config TARGET_GRSIM_LEON2
20         bool "GRSIM simulating a LEON2 board"
21         select LEON2
22
23 config TARGET_GR_CPCI_AX2000
24         bool "Gaisler GR-CPCI-AX2000 board"
25         select LEON3
26
27 config TARGET_GR_EP2S60
28         bool "Gaisler Template design for Altera NIOS board with Stratix EP2S60"
29         select LEON3
30         help
31           Gaisler Research AB's Template design (GPL Open Source SPARC/LEON3
32           96MHz) for Altera NIOS Development board Stratix II edition,
33           with the FPGA device EP2S60.
34
35 config TARGET_GR_XC3S_1500
36         bool "Gaisler GR-XC3S-1500 spartan board"
37         select LEON3
38
39 config TARGET_GRSIM
40         bool "GRSIM simulating a LEON3 GR-XC3S-1500 board"
41         select LEON3
42
43 endchoice
44
45 config SYS_ARCH
46         default "sparc"
47
48 config SYS_CPU
49         default "leon2" if LEON2
50         default "leon3" if LEON3
51
52 config SYS_VENDOR
53         default "gaisler"
54
55 source "board/gaisler/gr_cpci_ax2000/Kconfig"
56 source "board/gaisler/gr_ep2s60/Kconfig"
57 source "board/gaisler/gr_xc3s_1500/Kconfig"
58 source "board/gaisler/grsim/Kconfig"
59 source "board/gaisler/grsim_leon2/Kconfig"
60
61 endmenu