Paul Menzel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38304 )
Change subject: emulation/qemu-i440fx: Add _SB.PCI0.MBRS ......................................................................
emulation/qemu-i440fx: Add _SB.PCI0.MBRS
Linux 5.4.8 shows the ACPI error below.
[ 0.732324] ACPI BIOS Error (bug): Could not resolve symbol [_SB.PCI0.MBRS], AE_NOT_FOUND (20190816/dswload2-159) [ 0.732784] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20190816/psobject-220)
So, add that symbol. Copied from (removed) `src/mainboard/hp/dl145_g1/dsdt.asl`.
Change-Id: I0243f6a469f5addbf2f09f3aed52d1a067b22cc9 Signed-off-by: Paul Menzel pmenzel@molgen.mpg.de --- M src/mainboard/emulation/qemu-i440fx/dsdt.asl 1 file changed, 7 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/38304/1
diff --git a/src/mainboard/emulation/qemu-i440fx/dsdt.asl b/src/mainboard/emulation/qemu-i440fx/dsdt.asl index 9bef7d9..95b4b42 100644 --- a/src/mainboard/emulation/qemu-i440fx/dsdt.asl +++ b/src/mainboard/emulation/qemu-i440fx/dsdt.asl @@ -33,6 +33,13 @@
Scope(_SB) { Device(PCI0) { + /* Dummy device to hold auto generated reserved resources */ + Device(MBRS) { + Name (_HID, EisaId ("PNP0C02")) + Name (_UID, 0x01) + External(_CRS) /* Resource Template in SSDT */ + } + Name(_HID, EisaId("PNP0A03")) Name(_UID, 1) }