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