blob: 2df09b2e50e3e18c5dacb9ce09f32f092c5ac54c [file] [log] [blame]
Googlera8fd56b2024-10-24 14:04:51 +08001menu "SPARC architecture"
2 depends on SPARC
3
4config LEON
5 bool
6
7config LEON2
8 bool
9 select LEON
10
11config LEON3
12 bool
13 select LEON
14
15choice
16 prompt "Board select"
17
18config TARGET_GRSIM_LEON2
19 bool "GRSIM simulating a LEON2 board"
20 select LEON2
21
22config TARGET_GR_CPCI_AX2000
23 bool "Gaisler GR-CPCI-AX2000 board"
24 select LEON3
25
26config 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
34config TARGET_GR_XC3S_1500
35 bool "Gaisler GR-XC3S-1500 spartan board"
36 select LEON3
37
38config TARGET_GRSIM
39 bool "GRSIM simulating a LEON3 GR-XC3S-1500 board"
40 select LEON3
41
42endchoice
43
44config SYS_ARCH
45 default "sparc"
46
47config SYS_CPU
48 default "leon2" if LEON2
49 default "leon3" if LEON3
50
51config SYS_VENDOR
52 default "gaisler"
53
54source "board/gaisler/gr_cpci_ax2000/Kconfig"
55source "board/gaisler/gr_ep2s60/Kconfig"
56source "board/gaisler/gr_xc3s_1500/Kconfig"
57source "board/gaisler/grsim/Kconfig"
58source "board/gaisler/grsim_leon2/Kconfig"
59
60endmenu