Kconfig 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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_CHERRYHILL
  18. bool "Cherry Hill"
  19. help
  20. This is the Intel Cherry Hill Customer Reference Board. It is in a
  21. mini-ITX form factor containing the Intel Braswell SoC, which has
  22. a 64-bit quad-core, single-thread, Intel Atom processor, along with
  23. serial console, 10/100/1000 Ethernet, SD-Card, USB 2/3, SATA, PCIe,
  24. some GPIOs, one HDMI and two DP video out.
  25. config TARGET_COUGARCANYON2
  26. bool "Cougar Canyon 2"
  27. help
  28. This is the Intel Cougar Canyon 2 Customer Reference Board. It
  29. is built on the Chief River platform with Intel Ivybridge Processor
  30. and Panther Point chipset. The board has 4GB RAM, with some other
  31. peripheral connectors for PCIe/SATA/USB2/USB3/LAN/UART/PS2/VGA/HDMI.
  32. config TARGET_CROWNBAY
  33. bool "Crown Bay"
  34. help
  35. This is the Intel Crown Bay Customer Reference Board. It contains
  36. the Intel Atom Processor E6xx populated on the COM Express module
  37. with 1GB DDR2 soldered down memory and a carrier board with the
  38. Intel Platform Controller Hub EG20T, other system components and
  39. peripheral connectors for PCIe/SATA/USB/LAN/SD/UART/Audio/LVDS.
  40. config TARGET_EDISON
  41. bool "Edison"
  42. help
  43. This is the Intel Edison Compute Module. It contains a dual core Intel
  44. Atom Tangier CPU, 1 GB RAM integrated on package. There is also 4 GB
  45. eMMC flash on board, Wi-Fi, Bluetooth 4 and USB controllers.
  46. config TARGET_GALILEO
  47. bool "Galileo"
  48. help
  49. This is the Intel Galileo board, which is the first in a family of
  50. Arduino-certified development and prototyping boards based on Intel
  51. architecture. It includes an Intel Quark SoC X1000 processor, a 32-bit
  52. single-core, single-thread, Intel Pentium processor instrunction set
  53. architecture (ISA) compatible, operating at speeds up to 400Mhz,
  54. along with 256MB DDR3 memory. It supports a wide range of industry
  55. standard I/O interfaces, including a full-sized mini-PCIe slot,
  56. one 100Mb Ethernet port, a microSD card slot, a USB host port and
  57. a USB client port.
  58. config TARGET_MINNOWMAX
  59. bool "Minnowboard MAX"
  60. help
  61. This is the Intel Minnowboard MAX. It contains an Atom E3800
  62. processor in a small form factor with Ethernet, micro-SD, USB 2,
  63. USB 3, SATA, serial console, some GPIOs and HDMI 1.3 video out.
  64. It requires some binary blobs - see README.x86 for details.
  65. Note that PCIE_ECAM_BASE is set up by the FSP so the value used
  66. by U-Boot matches that value.
  67. endchoice
  68. source "board/intel/bayleybay/Kconfig"
  69. source "board/intel/cherryhill/Kconfig"
  70. source "board/intel/cougarcanyon2/Kconfig"
  71. source "board/intel/crownbay/Kconfig"
  72. source "board/intel/edison/Kconfig"
  73. source "board/intel/galileo/Kconfig"
  74. source "board/intel/minnowmax/Kconfig"
  75. endif