blob: 3d9ecf06930bb641fc10651df73dc3203ff213ea [file] [log] [blame]
Bin Meng65c4ac02015-04-27 23:22:24 +08001#
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"
Joe Hershbergera26cd042015-05-12 14:46:23 -050011 optional
Bin Meng65c4ac02015-04-27 23:22:24 +080012
13config TARGET_CROWNBAY
14 bool "Crown Bay"
15 help
16 This is the Intel Crown Bay Customer Reference Board. It contains
17 the Intel Atom Processor E6xx populated on the COM Express module
18 with 1GB DDR2 soldered down memory and a carrier board with the
19 Intel Platform Controller Hub EG20T, other system components and
20 peripheral connectors for PCIe/SATA/USB/LAN/SD/UART/Audio/LVDS.
21
22config TARGET_GALILEO
23 bool "Galileo"
24 help
25 This is the Intel Galileo board, which is the first in a family of
26 Arduino-certified development and prototyping boards based on Intel
27 architecture. It includes an Intel Quark SoC X1000 processor, a 32-bit
28 single-core, single-thread, Intel Pentium processor instrunction set
29 architecture (ISA) compatible, operating at speeds up to 400Mhz,
30 along with 256MB DDR3 memory. It supports a wide range of industry
31 standard I/O interfaces, including a full-sized mini-PCIe slot,
32 one 100Mb Ethernet port, a microSD card slot, a USB host port and
33 a USB client port.
34
35config TARGET_MINNOWMAX
36 bool "Minnowboard MAX"
37 help
38 This is the Intel Minnowboard MAX. It contains an Atom E3800
39 processor in a small form factor with Ethernet, micro-SD, USB 2,
40 USB 3, SATA, serial console, some GPIOs and HDMI 1.3 video out.
41 It requires some binary blobs - see README.x86 for details.
42
43 Note that PCIE_ECAM_BASE is set up by the FSP so the value used
44 by U-Boot matches that value.
45
46endchoice
47
48source "board/intel/crownbay/Kconfig"
49source "board/intel/galileo/Kconfig"
50source "board/intel/minnowmax/Kconfig"
51
52endif