]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/sparc/Kconfig
arch: Make board selection choices optional
[people/ms/u-boot.git] / arch / sparc / Kconfig
CommitLineData
dd84058d
MY
1menu "SPARC architecture"
2 depends on SPARC
3
8be29642
MY
4config LEON
5 bool
6
7config LEON2
8 bool
9 select LEON
10
11config LEON3
12 bool
13 select LEON
14
dd84058d 15choice
89c64cdd 16 prompt "Board select"
a26cd049 17 optional
dd84058d
MY
18
19config TARGET_GRSIM_LEON2
89c64cdd 20 bool "GRSIM simulating a LEON2 board"
8be29642 21 select LEON2
dd84058d
MY
22
23config TARGET_GR_CPCI_AX2000
89c64cdd 24 bool "Gaisler GR-CPCI-AX2000 board"
8be29642 25 select LEON3
dd84058d
MY
26
27config TARGET_GR_EP2S60
89c64cdd 28 bool "Gaisler Template design for Altera NIOS board with Stratix EP2S60"
8be29642 29 select LEON3
89c64cdd
MY
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.
dd84058d
MY
34
35config TARGET_GR_XC3S_1500
89c64cdd 36 bool "Gaisler GR-XC3S-1500 spartan board"
8be29642 37 select LEON3
dd84058d
MY
38
39config TARGET_GRSIM
89c64cdd 40 bool "GRSIM simulating a LEON3 GR-XC3S-1500 board"
8be29642 41 select LEON3
dd84058d
MY
42
43endchoice
44
89bedb0c
MY
45config SYS_ARCH
46 default "sparc"
47
48config SYS_CPU
49 default "leon2" if LEON2
50 default "leon3" if LEON3
51
52config SYS_VENDOR
53 default "gaisler"
54
dd84058d
MY
55source "board/gaisler/gr_cpci_ax2000/Kconfig"
56source "board/gaisler/gr_ep2s60/Kconfig"
57source "board/gaisler/gr_xc3s_1500/Kconfig"
58source "board/gaisler/grsim/Kconfig"
59source "board/gaisler/grsim_leon2/Kconfig"
60
61endmenu