From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web11.29224.1685620425815746951 for ; Thu, 01 Jun 2023 04:53:46 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=F6kHVhRG; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: aryeh.chen@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1685620425; x=1717156425; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=ilikFvaCNCLZE5vnECfQF7PDy6nYBwGY/Do28X957m4=; b=F6kHVhRGbOcL4MCfC4z1qPlJfOsu1N8MNFUtECEeu76sOH0Yg7nSqkuO +EORP/6XvrBaU7Gm4hmqumRNkIf3aP6fyGQB1urJpdLzqaWzOV0o6bTfV hyv/p2l2Xp7VgixtQ0wt3DczgHKDQB/Nr2dV5o3wnESYp0ZjtRDesJR2r AK/eGBP+Mn0/D5Z0fvhDVFeOZNpK4nUP2H8fcTU5D2tuY8iA/ytfSLx6R 10K9SoQhvGG3JmLi+3WIX5spdGTdW2TFG6IkELvVgSJBS2NO9BF6v5K5V WRphuzDsUP85oKDXiZVuIiD7ntpgK8Z6eZCHjdQhoawXJskPGp+NiWXq7 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10727"; a="335884303" X-IronPort-AV: E=Sophos;i="6.00,210,1681196400"; d="scan'208";a="335884303" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jun 2023 04:53:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10727"; a="657737729" X-IronPort-AV: E=Sophos;i="6.00,210,1681196400"; d="scan'208";a="657737729" Received: from aryehche-desk1.gar.corp.intel.com ([10.5.215.13]) by orsmga003.jf.intel.com with ESMTP; 01 Jun 2023 04:53:43 -0700 From: "Chen, Aryeh" To: devel@edk2.groups.io Cc: Aryeh Chen , Michael D Kinney , Liming Gao , Zhiguang Liu , Jiewen Yao Subject: [PATCH v1] MdePkg ACPI65: Update MADT Revision pre ACPI Spec 6.5 Date: Thu, 1 Jun 2023 19:53:39 +0800 Message-Id: <20230601115339.720-1-aryeh.chen@intel.com> X-Mailer: git-send-email 2.34.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Aryeh Chen Fix issue: https://bugzilla.tianocore.org/show_bug.cgi?id=3D4474 ACPI_Spec_6_5_Aug29 Table 5.19 page #128 that MADT Revision field is 6. BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3D4306 Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Cc: Jiewen Yao Signed-off-by: Aryeh Chen --- MdePkg/Include/IndustryStandard/Acpi65.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/Acpi65.h b/MdePkg/Include/Indu= stryStandard/Acpi65.h index 1e41ae9a27..6caadf2404 100644 --- a/MdePkg/Include/IndustryStandard/Acpi65.h +++ b/MdePkg/Include/IndustryStandard/Acpi65.h @@ -293,7 +293,7 @@ typedef struct { ///=0D /// MADT Revision (as defined in ACPI 6.5 spec.)=0D ///=0D -#define EFI_ACPI_6_5_MULTIPLE_APIC_DESCRIPTION_TABLE_REVISION 0x05=0D +#define EFI_ACPI_6_5_MULTIPLE_APIC_DESCRIPTION_TABLE_REVISION 0x06=0D =0D ///=0D /// Multiple APIC Flags=0D --=20 2.34.0.windows.1