public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Xu, Wei6" <wei6.xu@intel.com>
To: devel@edk2.groups.io
Cc: Wei6 Xu <wei6.xu@intel.com>, Abner Chang <Abner.Chang@amd.com>,
	Nate DeSimone <nathaniel.l.desimone@intel.com>
Subject: [edk2-devel] [PATCH edk2-platforms 0/4] IpmiFeaturePkg: Support Standalone MM.
Date: Thu, 21 Dec 2023 01:01:41 +0800	[thread overview]
Message-ID: <cover.1703090380.git.wei6.xu@intel.com> (raw)

This patch series add Standalone MM support for ServerManagementLib, BmcAcpiSwChild, BmcElog and GenericElog.
PR: https://github.com/tianocore/edk2-platforms/pull/117

Cc: Abner Chang <Abner.Chang@amd.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>

Wei6 Xu (4):
  IpmiFeaturePkg/ServerManagementLib: Support Standalone MM
  IpmiFeaturePkg/BmcAcpiSwChild: Support Standalone MM
  IpmiFeaturePkg/GenericElog: Support Standalone MM
  IpmiFeaturePkg/BmcElog: Support Standalone MM

 .../BmcAcpiSwChild/BmcAcpiSwChild.c           |   12 +-
 .../BmcAcpiSwChild/BmcAcpiSwChild.h           |   15 +-
 .../BmcAcpiSwChild/BmcAcpiSwChild.inf         |    5 +-
 .../BmcAcpiSwChildStandaloneMm.c              |   31 +
 .../BmcAcpiSwChildStandaloneMm.inf            |   40 +
 .../BmcAcpiSwChildTraditionalMm.c             |   31 +
 .../IpmiFeaturePkg/BmcElog/Smm/BmcElog.c      |   14 +-
 .../IpmiFeaturePkg/BmcElog/Smm/BmcElog.h      |   15 +-
 .../BmcElog/Smm/BmcElogStandaloneMm.c         |   28 +
 .../BmcElog/Smm/BmcElogTraditionalMm.c        |   28 +
 .../IpmiFeaturePkg/BmcElog/SmmBmcElog.inf     |    6 +-
 .../BmcElog/StandaloneMmBmcElog.inf           |   44 +
 .../GenericElog/Smm/GenericElog.c             |   35 +-
 .../GenericElog/Smm/GenericElog.h             |   28 +-
 .../GenericElog/Smm/GenericElog.inf           |    5 +-
 .../GenericElog/Smm/GenericElogStandaloneMm.c |   28 +
 .../Smm/GenericElogStandaloneMm.inf           |   41 +
 .../Smm/GenericElogTraditionalMm.c            |   28 +
 .../IpmiFeaturePkg/Include/IpmiFeature.dsc    |    6 +
 .../ServerManagementElog.c                    |  235 ++++
 .../ServerManagementLib.inf                   |    4 +-
 ...ManagementLib.c => ServerManagementTime.c} | 1175 +++++++----------
 .../StandaloneMmServerManagementLib.inf       |   29 +
 23 files changed, 1099 insertions(+), 784 deletions(-)
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcAcpiSwChild/BmcAcpiSwChildStandaloneMm.c
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcAcpiSwChild/BmcAcpiSwChildStandaloneMm.inf
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcAcpiSwChild/BmcAcpiSwChildTraditionalMm.c
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcElog/Smm/BmcElogStandaloneMm.c
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcElog/Smm/BmcElogTraditionalMm.c
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcElog/StandaloneMmBmcElog.inf
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/GenericElog/Smm/GenericElogStandaloneMm.c
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/GenericElog/Smm/GenericElogStandaloneMm.inf
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/GenericElog/Smm/GenericElogTraditionalMm.c
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/Library/ServerManagementLib/ServerManagementElog.c
 rename Features/Intel/OutOfBandManagement/IpmiFeaturePkg/Library/ServerManagementLib/{ServerManagementLib.c => ServerManagementTime.c} (55%)
 create mode 100644 Features/Intel/OutOfBandManagement/IpmiFeaturePkg/Library/ServerManagementLib/StandaloneMmServerManagementLib.inf

-- 
2.29.2.windows.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112764): https://edk2.groups.io/g/devel/message/112764
Mute This Topic: https://groups.io/mt/103284557/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



             reply	other threads:[~2023-12-20 17:01 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-20 17:01 Xu, Wei6 [this message]
2023-12-20 17:01 ` [edk2-devel] [PATCH edk2-platforms 1/4] IpmiFeaturePkg/ServerManagementLib: Support Standalone MM Xu, Wei6
2023-12-20 17:01 ` [edk2-devel] [PATCH edk2-platforms 2/4] IpmiFeaturePkg/BmcAcpiSwChild: " Xu, Wei6
2023-12-20 17:01 ` [edk2-devel] [PATCH edk2-platforms 3/4] IpmiFeaturePkg/GenericElog: " Xu, Wei6
2023-12-20 17:01 ` [edk2-devel] [PATCH edk2-platforms 4/4] IpmiFeaturePkg/BmcElog: " Xu, Wei6
2023-12-21  1:58 ` [edk2-devel] [PATCH edk2-platforms 0/4] IpmiFeaturePkg: " Nate DeSimone
2023-12-21  2:02 ` Nate DeSimone

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=cover.1703090380.git.wei6.xu@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