From e6220e71709965f8c7ed55c3110e35f44f150809 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Mon, 10 Oct 2022 19:03:11 -0500 Subject: [PATCH] soc/intel/apl: Hide PMC/IPC ACPI device from Windows No drivers are needed/available, so hide the device to prevent an unknown device from showing under Device Manager. Linux does not use the ACPI _STA so no effect there. Change-Id: I02efb64a845edc6e4fc559e7e99a7825abf4c2aa Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/74892 Tested-by: build bot (Jenkins) Reviewed-by: CoolStar Reviewed-by: Felix Held --- src/soc/intel/apollolake/acpi/pmc_ipc.asl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/soc/intel/apollolake/acpi/pmc_ipc.asl b/src/soc/intel/apollolake/acpi/pmc_ipc.asl index d90b42ea82..55585c4dd9 100644 --- a/src/soc/intel/apollolake/acpi/pmc_ipc.asl +++ b/src/soc/intel/apollolake/acpi/pmc_ipc.asl @@ -42,5 +42,9 @@ scope (\_SB) { Return (^RBUF) } + Method (_STA, 0x0, NotSerialized) + { + Return(0xb) + } } }