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