Kconfig 3.1 KB

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