From: "Gao, Liming" <liming.gao@intel.com>
To: "Dong, Eric" <eric.dong@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [Patch v2 0/2] Add Management Mode infrastructure support.
Date: Mon, 28 Aug 2017 08:03:57 +0000 [thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14D7816A1@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <1503902448-7984-1-git-send-email-eric.dong@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
>-----Original Message-----
>From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Eric
>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 #define
>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
prev parent reply other threads:[~2017-08-28 8:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-28 6:40 [Patch v2 0/2] Add Management Mode infrastructure support Eric Dong
2017-08-28 6:40 ` [Patch 1/2] MdePkg: Add new definitions for Management Mode Eric Dong
2017-08-28 6:40 ` [Patch 2/2] MdePkg: Reference " Eric Dong
2017-08-28 8:03 ` Gao, Liming [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A89E2EF3DFEDB4C8BFDE51014F606A14D7816A1@shsmsx102.ccr.corp.intel.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox