Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/62538 )
Change subject: soc/amd/picasso/acpi: rename cpu.asl to pnot.asl ......................................................................
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 felix-coreboot@felixheld.de Change-Id: Ic77dacb146aa823fc99f779f465fff28b2aead68 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62538 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Raul Rangel rrangel@chromium.org --- M src/mainboard/amd/bilby/dsdt.asl M src/mainboard/amd/mandolin/dsdt.asl M src/mainboard/google/zork/dsdt.asl R src/soc/amd/picasso/acpi/pnot.asl 4 files changed, 6 insertions(+), 6 deletions(-)
Approvals: build bot (Jenkins): Verified Raul Rangel: Looks good to me, approved
diff --git a/src/mainboard/amd/bilby/dsdt.asl b/src/mainboard/amd/bilby/dsdt.asl index 3b33adc..f1f0fd9 100644 --- a/src/mainboard/amd/bilby/dsdt.asl +++ b/src/mainboard/amd/bilby/dsdt.asl @@ -21,8 +21,8 @@ /* PCI IRQ mapping for the Southbridge */ #include <pcie.asl>
- /* Describe the processor tree (_PR) */ - #include <cpu.asl> + /* Power state notification to ALIB */ + #include <pnot.asl>
/* Contains the supported sleep states for this chipset */ #include <soc/amd/common/acpi/sleepstates.asl> diff --git a/src/mainboard/amd/mandolin/dsdt.asl b/src/mainboard/amd/mandolin/dsdt.asl index 3b33adc..f1f0fd9 100644 --- a/src/mainboard/amd/mandolin/dsdt.asl +++ b/src/mainboard/amd/mandolin/dsdt.asl @@ -21,8 +21,8 @@ /* PCI IRQ mapping for the Southbridge */ #include <pcie.asl>
- /* Describe the processor tree (_PR) */ - #include <cpu.asl> + /* Power state notification to ALIB */ + #include <pnot.asl>
/* Contains the supported sleep states for this chipset */ #include <soc/amd/common/acpi/sleepstates.asl> diff --git a/src/mainboard/google/zork/dsdt.asl b/src/mainboard/google/zork/dsdt.asl index c11052a..c2df9b7 100644 --- a/src/mainboard/google/zork/dsdt.asl +++ b/src/mainboard/google/zork/dsdt.asl @@ -22,8 +22,8 @@ /* PCI IRQ mapping for the Southbridge */ #include <pcie.asl>
- /* Describe the processor tree (_PR) */ - #include <cpu.asl> + /* Power state notification to ALIB */ + #include <pnot.asl>
/* Contains the supported sleep states for this chipset */ #include <soc/amd/common/acpi/sleepstates.asl> diff --git a/src/soc/amd/picasso/acpi/cpu.asl b/src/soc/amd/picasso/acpi/pnot.asl similarity index 100% rename from src/soc/amd/picasso/acpi/cpu.asl rename to src/soc/amd/picasso/acpi/pnot.asl