Home | History | Annotate | Download | only in intel
      1 # SPDX-License-Identifier: GPL-2.0+
      2 #
      3 # Copyright (C) 2015, Bin Meng <bmeng.cn (a] gmail.com>
      4 
      5 if VENDOR_INTEL
      6 
      7 choice
      8 	prompt "Mainboard model"
      9 	optional
     10 
     11 config TARGET_BAYLEYBAY
     12 	bool "Bayley Bay"
     13 	help
     14 	  This is the Intel Bayley Bay Customer Reference Board. It contains an
     15 	  Intel quad-core Atom Processor E3800 with dual-channel DDR3L SODIMM
     16 	  4GB memory, HDMI/DP/VGA display, HD audio, SATA, USB2, USB3, SD, eMMC,
     17 	  PCIe and some other sensor interfaces.
     18 
     19 config TARGET_CHERRYHILL
     20 	bool "Cherry Hill"
     21 	help
     22 	  This is the Intel Cherry Hill Customer Reference Board. It is in a
     23 	  mini-ITX form factor containing the Intel Braswell SoC, which has
     24 	  a 64-bit quad-core, single-thread, Intel Atom processor, along with
     25 	  serial console, 10/100/1000 Ethernet, SD-Card, USB 2/3, SATA, PCIe,
     26 	  some GPIOs, one HDMI and two DP video out.
     27 
     28 config TARGET_COUGARCANYON2
     29 	bool "Cougar Canyon 2"
     30 	help
     31 	  This is the Intel Cougar Canyon 2 Customer Reference Board. It
     32 	  is built on the Chief River platform with Intel Ivybridge Processor
     33 	  and Panther Point chipset. The board has 4GB RAM, with some other
     34 	  peripheral connectors for PCIe/SATA/USB2/USB3/LAN/UART/PS2/VGA/HDMI.
     35 
     36 config TARGET_CROWNBAY
     37 	bool "Crown Bay"
     38 	help
     39 	  This is the Intel Crown Bay Customer Reference Board. It contains
     40 	  the Intel Atom Processor E6xx populated on the COM Express module
     41 	  with 1GB DDR2 soldered down memory and a carrier board with the
     42 	  Intel Platform Controller Hub EG20T, other system components and
     43 	  peripheral connectors for PCIe/SATA/USB/LAN/SD/UART/Audio/LVDS.
     44 
     45 config TARGET_EDISON
     46 	bool "Edison"
     47 	help
     48 	  This is the Intel Edison Compute Module. It contains a dual core Intel
     49 	  Atom Tangier CPU, 1 GB RAM integrated on package. There is also 4 GB
     50 	  eMMC flash on board, Wi-Fi, Bluetooth 4 and USB controllers.
     51 
     52 config TARGET_GALILEO
     53 	bool "Galileo"
     54 	help
     55 	  This is the Intel Galileo board, which is the first in a family of
     56 	  Arduino-certified development and prototyping boards based on Intel
     57 	  architecture. It includes an Intel Quark SoC X1000 processor, a 32-bit
     58 	  single-core, single-thread, Intel Pentium processor instrunction set
     59 	  architecture (ISA) compatible, operating at speeds up to 400Mhz,
     60 	  along with 256MB DDR3 memory. It supports a wide range of industry
     61 	  standard I/O interfaces, including a full-sized mini-PCIe slot,
     62 	  one 100Mb Ethernet port, a microSD card slot, a USB host port and
     63 	  a USB client port.
     64 
     65 config TARGET_MINNOWMAX
     66 	bool "Minnowboard MAX"
     67 	help
     68 	  This is the Intel Minnowboard MAX. It contains an Atom E3800
     69 	  processor in a small form factor with Ethernet, micro-SD, USB 2,
     70 	  USB 3, SATA, serial console, some GPIOs and HDMI 1.3 video out.
     71 	  It requires some binary blobs - see README.x86 for details.
     72 
     73 	  Note that PCIE_ECAM_BASE is set up by the FSP so the value used
     74 	  by U-Boot matches that value.
     75 
     76 endchoice
     77 
     78 source "board/intel/bayleybay/Kconfig"
     79 source "board/intel/cherryhill/Kconfig"
     80 source "board/intel/cougarcanyon2/Kconfig"
     81 source "board/intel/crownbay/Kconfig"
     82 source "board/intel/edison/Kconfig"
     83 source "board/intel/galileo/Kconfig"
     84 source "board/intel/minnowmax/Kconfig"
     85 
     86 endif
     87