Martin Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/67679 )
(
3 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: soc/intel/apollolake: Remove SD Card interrupt for GLK ......................................................................
soc/intel/apollolake: Remove SD Card interrupt for GLK
According to Intel document number 336561, G, SD Card (0x1b) does not exist on GLK, so remove it.
Signed-off-by: Sean Rhodes sean@starlabs.systems Change-Id: I6921fc3db430c76ec54cf832ce51c627a507385c Reviewed-on: https://review.coreboot.org/c/coreboot/+/67679 Reviewed-by: Matt DeVillier matt.devillier@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/intel/apollolake/acpi/pci_irqs.asl 1 file changed, 18 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Matt DeVillier: Looks good to me, approved
diff --git a/src/soc/intel/apollolake/acpi/pci_irqs.asl b/src/soc/intel/apollolake/acpi/pci_irqs.asl index 7a963ff..585d9db 100644 --- a/src/soc/intel/apollolake/acpi/pci_irqs.asl +++ b/src/soc/intel/apollolake/acpi/pci_irqs.asl @@ -50,7 +50,9 @@ Package(){0x0019FFFF, 0, 0, SPI0_INT}, Package(){0x0019FFFF, 1, 0, SPI1_INT}, Package(){0x0019FFFF, 2, 0, SPI2_INT}, +#if !CONFIG(SOC_INTEL_GEMINILAKE) Package(){0x001BFFFF, 0, 0, SDCARD_INT}, +#endif Package(){0x001CFFFF, 0, 0, EMMC_INT}, Package(){0x001EFFFF, 0, 0, SDIO_INT}, Package(){0x001FFFFF, 0, 0, SMBUS_INT},