From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (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 D138721DF8087 for ; Mon, 28 Aug 2017 01:01:22 -0700 (PDT) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Aug 2017 01:04:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,440,1498546800"; d="scan'208";a="145227118" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga006.fm.intel.com with ESMTP; 28 Aug 2017 01:04:01 -0700 Received: from fmsmsx123.amr.corp.intel.com (10.18.125.38) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 28 Aug 2017 01:04:00 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx123.amr.corp.intel.com (10.18.125.38) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 28 Aug 2017 01:04:00 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.39]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.168]) with mapi id 14.03.0319.002; Mon, 28 Aug 2017 16:03:58 +0800 From: "Gao, Liming" To: "Dong, Eric" , "edk2-devel@lists.01.org" Thread-Topic: [edk2] [Patch v2 0/2] Add Management Mode infrastructure support. Thread-Index: AQHTH8isGgjnMJSip0KNfw/O56aXWKKZaMaQ Date: Mon, 28 Aug 2017 08:03:57 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14D7816A1@shsmsx102.ccr.corp.intel.com> References: <1503902448-7984-1-git-send-email-eric.dong@intel.com> In-Reply-To: <1503902448-7984-1-git-send-email-eric.dong@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch v2 0/2] Add Management Mode infrastructure support. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2017 08:01:23 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Eri= c >Dong >Sent: Monday, August 28, 2017 2:41 PM >To: edk2-devel@lists.01.org >Subject: [edk2] [Patch v2 0/2] Add Management Mode infrastructure support. > >In PI spec 1.5, System Management Mode name has been changed to >Management mode, >it also change all SMM related driver name to avoid use SMI/SmRam/SMM >keywords. > >This patch series add new definition which use Management mode >nomenclature. >Also in order to maintain continuity, this patch also use typedefs and #de= fine >statements that allow code developed with these earlier versions of the >specification to compile unchanged. > >V2: >1. clean up the old Smm/SMI/Smram keywords in the new files >2. Remove the whitespace at the end. >3. Update the copyright time. > >Eric Dong (2): > MdePkg: Add new definitions for Management Mode. > MdePkg: Reference new definitions for Management Mode. > > MdePkg/Include/Pi/PiMmCis.h | 350 ++++++++++++++++= +++++ > MdePkg/Include/Pi/PiMultiPhase.h | 32 +- > MdePkg/Include/Pi/PiSmmCis.h | 183 ++--------- > MdePkg/Include/PiMm.h | 25 ++ > MdePkg/Include/Protocol/DxeMmReadyToLock.h | 25 ++ > MdePkg/Include/Protocol/DxeSmmReadyToLock.h | 9 +- > MdePkg/Include/Protocol/MmAccess.h | 133 ++++++++ > MdePkg/Include/Protocol/MmBase.h | 87 +++++ > MdePkg/Include/Protocol/MmCommunication.h | 83 +++++ > MdePkg/Include/Protocol/MmConfiguration.h | 86 +++++ > MdePkg/Include/Protocol/MmControl.h | 106 +++++++ > MdePkg/Include/Protocol/MmCpu.h | 247 +++++++++++++++ > MdePkg/Include/Protocol/MmCpuIo.h | 96 ++++++ > MdePkg/Include/Protocol/MmEndOfDxe.h | 30 ++ > MdePkg/Include/Protocol/MmGpiDispatch.h | 125 ++++++++ > MdePkg/Include/Protocol/MmIoTrapDispatch.h | 136 ++++++++ > MdePkg/Include/Protocol/MmPciRootBridgeIo.h | 37 +++ > MdePkg/Include/Protocol/MmPeriodicTimerDispatch.h | 170 ++++++++++ > MdePkg/Include/Protocol/MmPowerButtonDispatch.h | 117 +++++++ > MdePkg/Include/Protocol/MmReadyToLock.h | 32 ++ > .../Include/Protocol/MmReportStatusCodeHandler.h | 81 +++++ > MdePkg/Include/Protocol/MmStandbyButtonDispatch.h | 119 +++++++ > MdePkg/Include/Protocol/MmStatusCode.h | 65 ++++ > MdePkg/Include/Protocol/MmSwDispatch.h | 136 ++++++++ > MdePkg/Include/Protocol/MmSxDispatch.h | 135 ++++++++ > MdePkg/Include/Protocol/MmUsbDispatch.h | 130 ++++++++ > MdePkg/Include/Protocol/SmmAccess2.h | 103 +----- > MdePkg/Include/Protocol/SmmBase2.h | 8 +- > MdePkg/Include/Protocol/SmmCommunication.h | 58 +--- > MdePkg/Include/Protocol/SmmConfiguration.h | 8 +- > MdePkg/Include/Protocol/SmmControl2.h | 79 +---- > MdePkg/Include/Protocol/SmmCpu.h | 309 ++++++----------= -- > MdePkg/Include/Protocol/SmmCpuIo2.h | 79 +---- > MdePkg/Include/Protocol/SmmEndOfDxe.h | 9 +- > MdePkg/Include/Protocol/SmmGpiDispatch2.h | 98 +----- > MdePkg/Include/Protocol/SmmIoTrapDispatch2.h | 105 +------ > MdePkg/Include/Protocol/SmmPciRootBridgeIo.h | 11 +- > .../Include/Protocol/SmmPeriodicTimerDispatch2.h | 16 +- > MdePkg/Include/Protocol/SmmPowerButtonDispatch2.h | 89 +----- > MdePkg/Include/Protocol/SmmReadyToLock.h | 7 +- > .../Include/Protocol/SmmReportStatusCodeHandler.h | 63 +--- > .../Include/Protocol/SmmStandbyButtonDispatch2.h | 89 +----- > MdePkg/Include/Protocol/SmmStatusCode.h | 42 +-- > MdePkg/Include/Protocol/SmmSwDispatch2.h | 8 +- > MdePkg/Include/Protocol/SmmSxDispatch2.h | 111 +------ > MdePkg/Include/Protocol/SmmUsbDispatch2.h | 101 +----- > MdePkg/MdePkg.dec | 67 ++++ > 47 files changed, 2875 insertions(+), 1360 deletions(-) > create mode 100644 MdePkg/Include/Pi/PiMmCis.h > create mode 100644 MdePkg/Include/PiMm.h > create mode 100644 MdePkg/Include/Protocol/DxeMmReadyToLock.h > create mode 100644 MdePkg/Include/Protocol/MmAccess.h > create mode 100644 MdePkg/Include/Protocol/MmBase.h > create mode 100644 MdePkg/Include/Protocol/MmCommunication.h > create mode 100644 MdePkg/Include/Protocol/MmConfiguration.h > create mode 100644 MdePkg/Include/Protocol/MmControl.h > create mode 100644 MdePkg/Include/Protocol/MmCpu.h > create mode 100644 MdePkg/Include/Protocol/MmCpuIo.h > create mode 100644 MdePkg/Include/Protocol/MmEndOfDxe.h > create mode 100644 MdePkg/Include/Protocol/MmGpiDispatch.h > create mode 100644 MdePkg/Include/Protocol/MmIoTrapDispatch.h > create mode 100644 MdePkg/Include/Protocol/MmPciRootBridgeIo.h > create mode 100644 MdePkg/Include/Protocol/MmPeriodicTimerDispatch.h > create mode 100644 MdePkg/Include/Protocol/MmPowerButtonDispatch.h > create mode 100644 MdePkg/Include/Protocol/MmReadyToLock.h > create mode 100644 >MdePkg/Include/Protocol/MmReportStatusCodeHandler.h > create mode 100644 MdePkg/Include/Protocol/MmStandbyButtonDispatch.h > create mode 100644 MdePkg/Include/Protocol/MmStatusCode.h > create mode 100644 MdePkg/Include/Protocol/MmSwDispatch.h > create mode 100644 MdePkg/Include/Protocol/MmSxDispatch.h > create mode 100644 MdePkg/Include/Protocol/MmUsbDispatch.h > >-- >2.7.0.windows.1 > >_______________________________________________ >edk2-devel mailing list >edk2-devel@lists.01.org >https://lists.01.org/mailman/listinfo/edk2-devel