blob: 5131836cb06d2b272da4fee2f3af3cfa3807344e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Bin Meng65c4ac02015-04-27 23:22:24 +08002#
3# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Meng65c4ac02015-04-27 23:22:24 +08004
5if VENDOR_INTEL
6
7choice
8 prompt "Mainboard model"
Joe Hershbergera26cd042015-05-12 14:46:23 -05009 optional
Bin Meng65c4ac02015-04-27 23:22:24 +080010
Bin Meng9b911be2015-07-30 03:49:17 -070011config 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
Bin Mengeb457872017-08-15 22:42:02 -070019config 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
Bin Menga2e3b052016-02-17 00:16:25 -080028config 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
Bin Meng65c4ac02015-04-27 23:22:24 +080036config 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
Andy Shevchenko495f3772017-07-06 14:41:53 +030045config 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
Bin Meng65c4ac02015-04-27 23:22:24 +080052config 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
65config 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
76endchoice
77
Bin Meng9b911be2015-07-30 03:49:17 -070078source "board/intel/bayleybay/Kconfig"
Bin Mengeb457872017-08-15 22:42:02 -070079source "board/intel/cherryhill/Kconfig"
Bin Menga2e3b052016-02-17 00:16:25 -080080source "board/intel/cougarcanyon2/Kconfig"
Bin Meng65c4ac02015-04-27 23:22:24 +080081source "board/intel/crownbay/Kconfig"
Andy Shevchenko495f3772017-07-06 14:41:53 +030082source "board/intel/edison/Kconfig"
Bin Meng65c4ac02015-04-27 23:22:24 +080083source "board/intel/galileo/Kconfig"
84source "board/intel/minnowmax/Kconfig"
85
86endif