From nobody Sat Apr 20 13:13:15 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org; dmarc=fail(p=none dis=none) header.from=intel.com Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 1533874773825780.2215791403383; Thu, 9 Aug 2018 21:19:33 -0700 (PDT) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 72138210EB115; Thu, 9 Aug 2018 21:19:28 -0700 (PDT) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 9D716210EB107 for ; Thu, 9 Aug 2018 21:19:26 -0700 (PDT) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Aug 2018 21:19:24 -0700 Received: from ydong10-win10.ccr.corp.intel.com ([10.239.9.125]) by orsmga003.jf.intel.com with ESMTP; 09 Aug 2018 21:19:16 -0700 X-Original-To: edk2-devel@lists.01.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.151; helo=mga17.intel.com; envelope-from=eric.dong@intel.com; receiver=edk2-devel@lists.01.org X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,218,1531810800"; d="scan'208";a="74234297" From: Eric Dong To: edk2-devel@lists.01.org Date: Fri, 10 Aug 2018 12:19:06 +0800 Message-Id: <20180810041909.12776-3-eric.dong@intel.com> X-Mailer: git-send-email 2.15.0.windows.1 In-Reply-To: <20180810041909.12776-1-eric.dong@intel.com> References: <20180810041909.12776-1-eric.dong@intel.com> MIME-Version: 1.0 Subject: [edk2] [Patch v3 2/5] UefiCpuPkg/AcpiCpuData.h: Remove AcpiNVS and Below 4G limitation. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Laszlo Ersek , Ruiyu Ni Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail: RDMRC_1 RSF_4 Z_629925259 SPT_0 ACPI_CPU_DATA structure first introduced to save data in normal boot phase. Also this data will be used in S3 phase by one PEI driver. So in first phase, this data is been defined to use ACPI NVS memory type and must below 4G. Later in order to fix potential security issue, PiSmmCpuDxeSmm driver added logic to copy ACPI_CPU_DATA (except ResetVector and Stack buffer) to smram at smm ready to lock point. ResetVector must below 1M and Stack buffer is write only in S3 phase, so these two fields not copy to smram. Also PiSmmCpuDxeSmm driver owned the task to restore the CPU setting and it's a SMM driver. After above change, the acpi nvs memory type and below 4G limitation is no longer needed. This change remove the limitation in the comments for ACPI_CPU_DATA definition. Cc: Marvin H=C3=A4user Cc: Fan Jeff Cc: Laszlo Ersek Cc: Ruiyu Ni Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Eric Dong Reviewed-by: Laszlo Ersek Reviewed-by: Ruiyu Ni --- UefiCpuPkg/Include/AcpiCpuData.h | 34 ++++++++++++---------------------- 1 file changed, 12 insertions(+), 22 deletions(-) diff --git a/UefiCpuPkg/Include/AcpiCpuData.h b/UefiCpuPkg/Include/AcpiCpuD= ata.h index ec092074ce..9e51145c08 100644 --- a/UefiCpuPkg/Include/AcpiCpuData.h +++ b/UefiCpuPkg/Include/AcpiCpuData.h @@ -1,7 +1,7 @@ /** @file Definitions for CPU S3 data. =20 -Copyright (c) 2013 - 2017, Intel Corporation. All rights reserved.
+Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD = License which accompanies this distribution. The full text of the license may be = found at @@ -57,15 +57,13 @@ typedef struct { // UINT32 InitialApicId; // - // Physical address of CPU_REGISTER_TABLE_ENTRY structures. This buffer= must be - // allocated below 4GB from memory of type EfiACPIMemoryNVS. + // Physical address of CPU_REGISTER_TABLE_ENTRY structures. // EFI_PHYSICAL_ADDRESS RegisterTableEntry; } CPU_REGISTER_TABLE; =20 // -// Data structure that is required for ACPI S3 resume. This structure mus= t be -// allocated below 4GB from memory of type EfiACPIMemoryNVS. The PCD +// Data structure that is required for ACPI S3 resume. The PCD // PcdCpuS3DataAddress must be set to the physical address where this stru= cture // is allocated // @@ -78,21 +76,17 @@ typedef struct { // EFI_PHYSICAL_ADDRESS StartupVector; // - // Physical address of structure of type IA32_DESCRIPTOR. This structur= e must - // be allocated below 4GB from memory of type EfiACPIMemoryNVS. The + // Physical address of structure of type IA32_DESCRIPTOR. The // IA32_DESCRIPTOR structure provides the base address and length of a G= DT - // The buffer for GDT must also be allocated below 4GB from memory of ty= pe - // EfiACPIMemoryNVS. The GDT must be filled in with the GDT contents th= at are + // The GDT must be filled in with the GDT contents that are // used during an ACPI S3 resume. This is typically the contents of the= GDT // used by the boot processor when the platform is booted. // EFI_PHYSICAL_ADDRESS GdtrProfile; // - // Physical address of structure of type IA32_DESCRIPTOR. This structur= e must - // be allocated below 4GB from memory of type EfiACPIMemoryNVS. The + // Physical address of structure of type IA32_DESCRIPTOR. The // IA32_DESCRIPTOR structure provides the base address and length of an = IDT. - // The buffer for IDT must also be allocated below 4GB from memory of ty= pe - // EfiACPIMemoryNVS. The IDT must be filled in with the IDT contents th= at are + // The IDT must be filled in with the IDT contents that are // used during an ACPI S3 resume. This is typically the contents of the= IDT // used by the boot processor when the platform is booted. // @@ -100,7 +94,7 @@ typedef struct { // // Physical address of a buffer that is used as stacks during ACPI S3 re= sume. // The total size of this buffer, in bytes, is NumberOfCpus * StackSize.= This - // structure must be allocated below 4GB from memory of type EfiACPIMemo= ryNVS. + // structure must be allocated from memory of type EfiACPIMemoryNVS. // EFI_PHYSICAL_ADDRESS StackAddress; // @@ -118,14 +112,12 @@ typedef struct { // Physical address of structure of type MTRR_SETTINGS that contains a c= opy // of the MTRR settings that are compatible with the MTRR settings used = by // the boot processor when the platform was booted. These MTRR settings= are - // used during an ACPI S3 resume. This structure must be allocated belo= w 4GB - // from memory of type EfiACPIMemoryNVS. + // used during an ACPI S3 resume. // EFI_PHYSICAL_ADDRESS MtrrTable; // // Physical address of an array of CPU_REGISTER_TABLE structures, with - // NumberOfCpus entries. This array must be allocated below 4GB from me= mory - // of type EfiACPIMemoryNVS. If a register table is not required, then = the + // NumberOfCpus entries. If a register table is not required, then the // TableLength and AllocatedSize fields of CPU_REGISTER_TABLE are set to= 0. // If TableLength is > 0, then elements of RegisterTableEntry are used to // initialize the CPU that matches InitialApicId, during an ACPI S3 resu= me, @@ -134,8 +126,7 @@ typedef struct { EFI_PHYSICAL_ADDRESS PreSmmInitRegisterTable; // // Physical address of an array of CPU_REGISTER_TABLE structures, with - // NumberOfCpus entries. This array must be allocated below 4GB from me= mory - // of type EfiACPIMemoryNVS. If a register table is not required, then = the + // NumberOfCpus entries. If a register table is not required, then the // TableLength and AllocatedSize fields of CPU_REGISTER_TABLE are set to= 0. // If TableLength is > 0, then elements of RegisterTableEntry are used to // initialize the CPU that matches InitialApicId, during an ACPI S3 resu= me, @@ -144,8 +135,7 @@ typedef struct { EFI_PHYSICAL_ADDRESS RegisterTable; // // Physical address of a buffer that contains the machine check handler = that - // is used during an ACPI S3 Resume. This buffer must be allocated belo= w 4GB - // from memory of type EfiACPIMemoryNVS. In order for this machine check + // is used during an ACPI S3 Resume. In order for this machine check // handler to be active on an AP during an ACPI S3 resume, the machine c= heck // vector in the IDT provided by IdtrProfile must be initialized to tran= sfer // control to this physical address. --=20 2.15.0.windows.1 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel