From ebb6723115c5049c3ad4979a25934a0ee677697c Mon Sep 17 00:00:00 2001 From: Felix Held Date: Wed, 2 Mar 2022 15:04:27 +0100 Subject: soc/amd/picasso/acpi: rename cpu.asl to pnot.asl After the patch that moved the generation of the PPKG object to Picasso's acpi.c, only the PNOT object remained in its cpu.asl, so rename it to pnot.asl. Signed-off-by: Felix Held Change-Id: Ic77dacb146aa823fc99f779f465fff28b2aead68 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62538 Tested-by: build bot (Jenkins) Reviewed-by: Raul Rangel --- src/mainboard/amd/bilby/dsdt.asl | 4 ++-- src/mainboard/amd/mandolin/dsdt.asl | 4 ++-- src/mainboard/google/zork/dsdt.asl | 4 ++-- src/soc/amd/picasso/acpi/cpu.asl | 9 --------- src/soc/amd/picasso/acpi/pnot.asl | 9 +++++++++ 5 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 src/soc/amd/picasso/acpi/cpu.asl create mode 100644 src/soc/amd/picasso/acpi/pnot.asl diff --git a/src/mainboard/amd/bilby/dsdt.asl b/src/mainboard/amd/bilby/dsdt.asl index 3b33adc233..f1f0fd9dbf 100644 --- a/src/mainboard/amd/bilby/dsdt.asl +++ b/src/mainboard/amd/bilby/dsdt.asl @@ -21,8 +21,8 @@ DefinitionBlock ( /* PCI IRQ mapping for the Southbridge */ #include - /* Describe the processor tree (\_PR) */ - #include + /* Power state notification to ALIB */ + #include /* Contains the supported sleep states for this chipset */ #include diff --git a/src/mainboard/amd/mandolin/dsdt.asl b/src/mainboard/amd/mandolin/dsdt.asl index 3b33adc233..f1f0fd9dbf 100644 --- a/src/mainboard/amd/mandolin/dsdt.asl +++ b/src/mainboard/amd/mandolin/dsdt.asl @@ -21,8 +21,8 @@ DefinitionBlock ( /* PCI IRQ mapping for the Southbridge */ #include - /* Describe the processor tree (\_PR) */ - #include + /* Power state notification to ALIB */ + #include /* Contains the supported sleep states for this chipset */ #include diff --git a/src/mainboard/google/zork/dsdt.asl b/src/mainboard/google/zork/dsdt.asl index c11052a9af..c2df9b7310 100644 --- a/src/mainboard/google/zork/dsdt.asl +++ b/src/mainboard/google/zork/dsdt.asl @@ -22,8 +22,8 @@ DefinitionBlock ( /* PCI IRQ mapping for the Southbridge */ #include - /* Describe the processor tree (\_PR) */ - #include + /* Power state notification to ALIB */ + #include /* Contains the supported sleep states for this chipset */ #include diff --git a/src/soc/amd/picasso/acpi/cpu.asl b/src/soc/amd/picasso/acpi/cpu.asl deleted file mode 100644 index 29b5b5a448..0000000000 --- a/src/soc/amd/picasso/acpi/cpu.asl +++ /dev/null @@ -1,9 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ - -#include - -Method (PNOT) -{ - /* Report AC/DC state to ALIB using WAL1() */ - \WAL1 () -} diff --git a/src/soc/amd/picasso/acpi/pnot.asl b/src/soc/amd/picasso/acpi/pnot.asl new file mode 100644 index 0000000000..29b5b5a448 --- /dev/null +++ b/src/soc/amd/picasso/acpi/pnot.asl @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include + +Method (PNOT) +{ + /* Report AC/DC state to ALIB using WAL1() */ + \WAL1 () +} -- cgit v1.2.3