diff options
author | Furquan Shaikh <furquan@google.com> | 2021-08-24 13:53:43 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-09-06 06:26:37 +0000 |
commit | d9f5d90ada6a9c3efde220160dddaca42421be6f (patch) | |
tree | 63c6cb5bcf3d1d5d7cb24becf870b67ca111c72b /src/soc | |
parent | d00febc99bd83be74e6f1d2386e36eea5051578b (diff) |
soc/intel/adl: Move USB4 hotplug Kconfig to common
This change adds a new Kconfig `SOC_INTEL_ENABLE_USB4_PCIE_RESOURCES`
that can be selected by mainboard to reserve hotplug resources for
USB4 at the SoC level. `ADL_ENABLE_USB4_PCIE_RESOURCES` is dropped
from soc/intel/alderlake and instead the newly added Kconfig is now
used. This new Kconfig is added so that the same config can be used
across different platforms. In following changes, this Kconfig is
utilized by TGL as well.
Change-Id: Id7c359a0e255c43c2732f6cbe287bc7da14a46e3
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57124
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/alderlake/Kconfig | 8 | ||||
-rw-r--r-- | src/soc/intel/common/block/usb4/Kconfig | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/src/soc/intel/alderlake/Kconfig b/src/soc/intel/alderlake/Kconfig index 1e16b42bcb..e2116c787e 100644 --- a/src/soc/intel/alderlake/Kconfig +++ b/src/soc/intel/alderlake/Kconfig @@ -148,11 +148,7 @@ config HEAP_SIZE # - 42 buses # - 194 MiB Non-prefetchable memory # - 448 MiB Prefetchable memory -config ADL_ENABLE_USB4_PCIE_RESOURCES - def_bool n - select PCIEXP_HOTPLUG - -if ADL_ENABLE_USB4_PCIE_RESOURCES +if SOC_INTEL_ENABLE_USB4_PCIE_RESOURCES config PCIEXP_HOTPLUG_BUSES int @@ -166,7 +162,7 @@ config PCIEXP_HOTPLUG_PREFETCH_MEM hex default 0x1c000000 -endif # ADL_ENABLE_USB4_PCIE_RESOURCES +endif # SOC_INTEL_ENABLE_USB4_PCIE_RESOURCES config MAX_PCH_ROOT_PORTS int diff --git a/src/soc/intel/common/block/usb4/Kconfig b/src/soc/intel/common/block/usb4/Kconfig index fb876e1fd9..d4e1c25aa1 100644 --- a/src/soc/intel/common/block/usb4/Kconfig +++ b/src/soc/intel/common/block/usb4/Kconfig @@ -18,3 +18,11 @@ config SOC_INTEL_COMMON_BLOCK_USB4_XHCI help Minimal PCI driver for adding PCI ops and SSDT generation for common Intel USB4/Thunderbolt North XHCI ports. + +config SOC_INTEL_ENABLE_USB4_PCIE_RESOURCES + bool + default n + depends on SOC_INTEL_COMMON_BLOCK_USB4 + select PCIEXP_HOTPLUG + help + Enable USB4 PCIe resources for reserving hotplug busses and memory. |