mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
de9ac9a1b9
This adds initial Intel Braswell SoC support. It uses Intel FSP to initialize the chipset. Similar to its predecessor BayTrail, there are some work to do to enable the legacy UART integrated in the Braswell SoC. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
39 lines
596 B
Text
39 lines
596 B
Text
#
|
|
# Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
config INTEL_BRASWELL
|
|
bool
|
|
select HAVE_FSP
|
|
select ARCH_MISC_INIT
|
|
select CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED
|
|
imply HAVE_INTEL_ME
|
|
imply HAVE_VBT
|
|
imply ENABLE_MRC_CACHE
|
|
imply ENV_IS_IN_SPI_FLASH
|
|
imply AHCI_PCI
|
|
imply ICH_SPI
|
|
imply MMC
|
|
imply MMC_PCI
|
|
imply MMC_SDHCI
|
|
imply MMC_SDHCI_SDMA
|
|
imply SCSI
|
|
imply SPI_FLASH
|
|
imply SYS_NS16550
|
|
imply USB
|
|
imply USB_XHCI_HCD
|
|
imply VIDEO_FSP
|
|
|
|
if INTEL_BRASWELL
|
|
|
|
config FSP_ADDR
|
|
hex
|
|
default 0xfff20000
|
|
|
|
config FSP_LOCKDOWN_SPI
|
|
bool
|
|
default y
|
|
|
|
endif
|