Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  4. if VENDOR_DFI
  5. choice
  6. prompt "Mainboard model"
  7. config TARGET_Q7X_151_DFI_BT700
  8. bool "DFI BT700 BayTrail on DFI Q7X-151 baseboard"
  9. imply SCSI
  10. help
  11. This is the DFI Q7X-151 baseboard equipped with the
  12. DFI BayTrail Bt700 SoM. It contains an Atom E3845 with
  13. Ethernet (in non-PCIe-x4 configuration), micro-SD, USB 2,
  14. USB 3, SATA, serial console and DisplayPort video out.
  15. It requires some binary blobs - see README.x86 for details.
  16. Note that PCIE_ECAM_BASE is set up by the FSP so the value used
  17. by U-Boot matches that value.
  18. config TARGET_THEADORABLE_X86_DFI_BT700
  19. bool "DFI BT700 BayTrail on theadorable-x86 baseboard"
  20. imply SCSI
  21. help
  22. This is the theadorable-x86 baseboard equipped with the
  23. DFI BayTrail Bt700 SoM. It contains an Atom E3845 with
  24. Ethernet (in non-PCIe-x4 configuration), micro-SD, USB 2,
  25. USB 3, SATA, serial console and DisplayPort video out.
  26. It requires some binary blobs - see README.x86 for details.
  27. Note that PCIE_ECAM_BASE is set up by the FSP so the value used
  28. by U-Boot matches that value.
  29. endchoice
  30. source "board/dfi/dfi-bt700/Kconfig"
  31. endif