diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-02-08 09:31:55 +0000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-10 15:04:59 +0000 |
commit | 0a5fc7170fc45c5cc737969e9feb51fa3063e439 (patch) | |
tree | fd738eec52427e713e4ce804c2fc7fd8363aa69a /src/soc/intel/apollolake | |
parent | 4fd80b286b6a868b4f45bad24af0870342d3fcae (diff) |
soc/apollolake: Correct SMBus interrupt
This solved the error:
i801_smbus 0000:00:1f.1: can't derive routing for PCI INT A
i801_smbus 0000:00:1f.1: PCI INT A: not connected
i801_smbus 0000:00:1f.1: SPD Write Disable is set
i801_smbus 0000:00:1f.1: SMBus using polling
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: Idebd581b7ed6d193d83340b7dc94248df43525c5
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61713
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel/apollolake')
-rw-r--r-- | src/soc/intel/apollolake/acpi/pci_irqs.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/apollolake/acpi/pci_irqs.asl b/src/soc/intel/apollolake/acpi/pci_irqs.asl index 7c5b83052b..7a963ff289 100644 --- a/src/soc/intel/apollolake/acpi/pci_irqs.asl +++ b/src/soc/intel/apollolake/acpi/pci_irqs.asl @@ -53,6 +53,6 @@ Method(_PRT) Package(){0x001BFFFF, 0, 0, SDCARD_INT}, Package(){0x001CFFFF, 0, 0, EMMC_INT}, Package(){0x001EFFFF, 0, 0, SDIO_INT}, - Package(){0x001FFFFF, 1, 0, SMBUS_INT}, + Package(){0x001FFFFF, 0, 0, SMBUS_INT}, }) } |