]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sparc/Kconfig
Merge branch 'master' of git://git.denx.de/u-boot-arm
[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
18 config TARGET_GRSIM_LEON2
19         bool "GRSIM simulating a LEON2 board"
20         select LEON2
21
22 config TARGET_GR_CPCI_AX2000
23         bool "Gaisler GR-CPCI-AX2000 board"
24         select LEON3
25
26 config TARGET_GR_EP2S60
27         bool "Gaisler Template design for Altera NIOS board with Stratix EP2S60"
28         select LEON3
29         help
30           Gaisler Research AB's Template design (GPL Open Source SPARC/LEON3
31           96MHz) for Altera NIOS Development board Stratix II edition,
32           with the FPGA device EP2S60.
33
34 config TARGET_GR_XC3S_1500
35         bool "Gaisler GR-XC3S-1500 spartan board"
36         select LEON3
37
38 config TARGET_GRSIM
39         bool "GRSIM simulating a LEON3 GR-XC3S-1500 board"
40         select LEON3
41
42 endchoice
43
44 config SYS_ARCH
45         default "sparc"
46
47 config SYS_CPU
48         default "leon2" if LEON2
49         default "leon3" if LEON3
50
51 config SYS_VENDOR
52         default "gaisler"
53
54 source "board/gaisler/gr_cpci_ax2000/Kconfig"
55 source "board/gaisler/gr_ep2s60/Kconfig"
56 source "board/gaisler/gr_xc3s_1500/Kconfig"
57 source "board/gaisler/grsim/Kconfig"
58 source "board/gaisler/grsim_leon2/Kconfig"
59
60 endmenu