uboot/arch/sparc/Kconfig
<<
>>
Prefs
   1menu "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
  15config SYS_SPARC_NWINDOWS
  16        int "Number of SPARC register windows"
  17        range 2 32
  18        default "8"
  19        help
  20          Specify the number of SPARC register windows implemented by this
  21          processor. A SPARC implementation can have from 2 to 32 windows.
  22          If unsure, choose 8.
  23
  24choice
  25        prompt "Board select"
  26        optional
  27
  28config TARGET_GRSIM_LEON2
  29        bool "GRSIM simulating a LEON2 board"
  30        select LEON2
  31
  32config TARGET_GR_CPCI_AX2000
  33        bool "Gaisler GR-CPCI-AX2000 board"
  34        select LEON3
  35
  36config TARGET_GR_EP2S60
  37        bool "Gaisler Template design for Altera NIOS board with Stratix EP2S60"
  38        select LEON3
  39        help
  40          Gaisler Research AB's Template design (GPL Open Source SPARC/LEON3
  41          96MHz) for Altera NIOS Development board Stratix II edition,
  42          with the FPGA device EP2S60.
  43
  44config TARGET_GR_XC3S_1500
  45        bool "Gaisler GR-XC3S-1500 spartan board"
  46        select LEON3
  47
  48config TARGET_GRSIM
  49        bool "GRSIM simulating a LEON3 GR-XC3S-1500 board"
  50        select LEON3
  51
  52endchoice
  53
  54config SYS_ARCH
  55        default "sparc"
  56
  57config SYS_CPU
  58        default "leon2" if LEON2
  59        default "leon3" if LEON3
  60
  61config SYS_VENDOR
  62        default "gaisler"
  63
  64source "board/gaisler/gr_cpci_ax2000/Kconfig"
  65source "board/gaisler/gr_ep2s60/Kconfig"
  66source "board/gaisler/gr_xc3s_1500/Kconfig"
  67source "board/gaisler/grsim/Kconfig"
  68source "board/gaisler/grsim_leon2/Kconfig"
  69
  70endmenu
  71