diff options
author | Eran Mitrani <mitrani@google.com> | 2023-01-20 12:12:53 -0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-01-25 14:33:53 +0000 |
commit | f6c0e1ae91ba2a07390d42d09d675090d1748e90 (patch) | |
tree | f49c980dc09bd894f40e6f8499780148cd0e5e38 /src | |
parent | 546e0935436876ce5b1083d6e5ef9a33bb8c861d (diff) |
soc/intel/mtl/acpi: add FSPI to DSDT
Getting an error from the Kernel on Rex devices:
> ACPI Error: AE_NOT_FOUND, While resolving a named reference
> package element - \_SB_.PCI0.FSPI (20210730/dspkginit-438)
FSPI is defined in src/soc/intel/meteorlake/chipset.cb:
device pci 1f.5 alias fast_spi on end
This CL adds the corresponding FSPI device to the DSDT to prevent
the error mentioned above.
See commit feed8e4bd9dc ("soc/intel/adl/acpi: add FSPI to DSDT") for
the corresponding ADL CL.
TEST=Built and tested on brya by verifying the error is gone.
Signed-off-by: Eran Mitrani <mitrani@google.com>
Change-Id: Id8d2a1b5e074f036345e028b117d420bf36a9042
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72411
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/meteorlake/acpi/serialio.asl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/soc/intel/meteorlake/acpi/serialio.asl b/src/soc/intel/meteorlake/acpi/serialio.asl index e4a675e335..1571f5ecd2 100644 --- a/src/soc/intel/meteorlake/acpi/serialio.asl +++ b/src/soc/intel/meteorlake/acpi/serialio.asl @@ -38,6 +38,12 @@ Device (I2C5) Name (_DDN, "Serial IO I2C Controller 5") } +Device (FSPI) +{ + Name (_ADR, 0x001f0005) + Name (_DDN, "Fast SPI") +} + Device (SPI0) { Name (_ADR, 0x001e0002) |