Kconfig 1.7 KB

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