Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. config TARGET_SLIMBOOTLOADER
  66. bool "slimbootloader"
  67. help
  68. This target is used for running U-Boot on top of Slim Bootloader
  69. boot firmware as a payload. Slim Bootloader does memory initialization
  70. and silicon initialization, and it passes necessary information in
  71. HOB (Hand Off Block) to a payload. The payload consumes HOB data
  72. which is generated by Slim Bootloader for its driver initialization.
  73. Slim Bootloader consumes FSP and its HOB, but FSP HOB is cleared
  74. Before launching a payload. Instead, Slim Bootloader generates its
  75. HOB data such as memory info, serial port info and so on.
  76. Refer to doc/board/intel/slimbootloader.rst for the details.
  77. endchoice
  78. source "board/intel/bayleybay/Kconfig"
  79. source "board/intel/cherryhill/Kconfig"
  80. source "board/intel/cougarcanyon2/Kconfig"
  81. source "board/intel/crownbay/Kconfig"
  82. source "board/intel/edison/Kconfig"
  83. source "board/intel/galileo/Kconfig"
  84. source "board/intel/minnowmax/Kconfig"
  85. source "board/intel/slimbootloader/Kconfig"
  86. endif