diff options
author | Subrata Banik <subrata.banik@intel.com> | 2021-01-17 22:55:45 +0530 |
---|---|---|
committer | Subrata Banik <subrata.banik@intel.com> | 2021-01-21 03:28:33 +0000 |
commit | 0591348833f730a42e74039d8e2d957ec94a39d5 (patch) | |
tree | a0d386e5453c179aca69beb70091d4ebdf945f0e /src/soc/intel/common | |
parent | cb9773443d8a7cc8b7670e0446d820ab95943196 (diff) |
soc/intel/common/graphics: Add new Kconfig SOC_INTEL_DISABLE_IGD
This SOC_INTEL_DISABLE_IGD Kconfig will allow to skip IGD
initialization using FSP GOP and eventually disable the IGD.
TEST=Able to get depthcharge pre-OS splash screen when mainboard
user selects SOC_INTEL_DISABLE_IGD with below HW/FW/SW
configuration:
HW: ADLRVP + AMD Radeon RX 5700 PCI-E DGPU
FW: coreboot with depthcharge as payload for ADLRVP and OpRom for
AMD PCI-E DGPU
SW: Chrome OS RC10 release
Change-Id: I465541cb45c9022d53a5beb3fff1f80660c357c9
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49470
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/graphics/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/graphics/Kconfig b/src/soc/intel/common/block/graphics/Kconfig index e632cb9bb0..8288150a73 100644 --- a/src/soc/intel/common/block/graphics/Kconfig +++ b/src/soc/intel/common/block/graphics/Kconfig @@ -7,3 +7,12 @@ config SOC_INTEL_CONFIGURE_DDI_A_4_LANES bool help Selected by platforms that require DDI-A bifurcation setup. + +config SOC_INTEL_DISABLE_IGD + bool "Disable Integrated GFX Controller (0:2:0)" + default n + select MAINBOARD_NO_FSP_GOP + help + Selected by mainboard user that need to skip IGD initialization + where OS can only use one GPU hence need to disable IGD and don't + need to run FSP GOP. |