summaryrefslogtreecommitdiffstats
path: root/ShellPkg
diff options
context:
space:
mode:
authorPierre Gondois <pierre.gondois@arm.com>2022-10-10 11:20:58 +0200
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2022-10-31 12:32:32 +0000
commite9a3613ce0667fea2ac15f19cf8ef6aab4b73fdd (patch)
tree353a208c47ae00a558e7cc0ea1cae081c6a216cd /ShellPkg
parentc9a4df88fd316c0405d5f557b13ab85d9d0c9efb (diff)
downloadedk2-e9a3613ce0667fea2ac15f19cf8ef6aab4b73fdd.tar.gz
edk2-e9a3613ce0667fea2ac15f19cf8ef6aab4b73fdd.tar.bz2
edk2-e9a3613ce0667fea2ac15f19cf8ef6aab4b73fdd.zip
ShellPkg/AcpiView: Update PCCT fields for ACPI 6.5
The ACPI specification updated some terms in accordance with: s1.1.1 Principle of Inclusive Terminology Update the PCCT parser accordincly with these new terms. Cc: Ray Ni <ray.ni@intel.com> Cc: Zhichao Gao <zhichao.gao@intel.com> Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r--ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c b/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c
index 8cffdaaf07..8ad39090af 100644
--- a/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c
+++ b/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c
@@ -146,7 +146,7 @@ ValidatePccDoorbellGas (
IN VOID *Context
)
{
- // For slave subspaces this field is optional, if not present the field
+ // For responder subspaces this field is optional, if not present the field
// should just contain zeros.
if (*PccSubspaceType == EFI_ACPI_6_4_PCCT_SUBSPACE_TYPE_4_EXTENDED_PCC) {
if (IsZeroBuffer (
@@ -214,7 +214,7 @@ ValidatePccErrStatusGas (
IN VOID *Context
)
{
- // This field is ignored by the OSPM on slave channels.
+ // This field is ignored by the OSPM on responder channels.
if (*PccSubspaceType == EFI_ACPI_6_4_PCCT_SUBSPACE_TYPE_4_EXTENDED_PCC) {
return;
}
@@ -237,7 +237,7 @@ ValidatePlatInterrupt (
IN VOID *Context
)
{
- // If a slave subspace is present in the PCCT, then the global Platform
+ // If a responder subspace is present in the PCCT, then the global Platform
// Interrupt flag must be set to 1.
if ((*PccSubspaceType == EFI_ACPI_6_4_PCCT_SUBSPACE_TYPE_4_EXTENDED_PCC) &&
((*PccGlobalFlags & EFI_ACPI_6_4_PCCT_FLAGS_PLATFORM_INTERRUPT) !=