Kconfig 2.4 KB

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