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