]>
Commit | Line | Data |
---|---|---|
65c4ac0a BM |
1 | # |
2 | # Copyright (C) 2015, Bin Meng <[email protected]> | |
3 | # | |
4 | # SPDX-License-Identifier: GPL-2.0+ | |
5 | # | |
6 | ||
7 | if VENDOR_INTEL | |
8 | ||
9 | choice | |
10 | prompt "Mainboard model" | |
a26cd049 | 11 | optional |
65c4ac0a BM |
12 | |
13 | config 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 | ||
22 | config 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 | ||
35 | config 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 | ||
46 | endchoice | |
47 | ||
48 | source "board/intel/crownbay/Kconfig" | |
49 | source "board/intel/galileo/Kconfig" | |
50 | source "board/intel/minnowmax/Kconfig" | |
51 | ||
52 | endif |