public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Yao, Jiewen" <jiewen.yao@intel.com>
To: "Dong, Eric" <eric.dong@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Ni, Ray" <ray.ni@intel.com>, Laszlo Ersek <lersek@redhat.com>
Subject: Re: [edk2-devel] [Patch v3 0/2] Enable new MM MP protocol
Date: Wed, 3 Jul 2019 03:11:04 +0000	[thread overview]
Message-ID: <74D8A39837DF1E4DA445A8C0B3885C503F6F2053@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <ED077930C258884BBCB450DB737E662259E8F890@shsmsx102.ccr.corp.intel.com>

It looks great. Thanks!

> -----Original Message-----
> From: Dong, Eric
> Sent: Wednesday, July 3, 2019 10:58 AM
> To: Yao, Jiewen <jiewen.yao@intel.com>; devel@edk2.groups.io
> Cc: Ni, Ray <ray.ni@intel.com>; Laszlo Ersek <lersek@redhat.com>
> Subject: RE: [edk2-devel] [Patch v3 0/2] Enable new MM MP protocol
> 
> Hi Jiewen,
> 
> I did below tests:
> 1. Use MpGetNumberOfProcessors and MpSetStartupProcedure.
> 2. Test MpDispatchProcedure
> 	1.sync mode and async mode,
> 	2. with and without CpuStatus.
> 	3. In async mode, use long delay get the final result with
> MpWaitForProcedure
> 	4. In async mode, use short delay to check the final result with
> MpCheckForProcedure
> 3. Test  MpBroadcastProcedure
> 	1.sync mode and async mode,
> 	2. with and without CpuStatus.
> 	3. In async mode, use long delay get the final result with
> MpWaitForProcedure.
> 	4. In async mode, use short delay to check the final result with
> MpCheckForProcedure.
> 
> Detail test code can be found in MmMpUnitTest folder at
> git@github.com:ydong10/UnitTestPkg.git
> 
> Thanks,
> Eric
> 
> > -----Original Message-----
> > From: Yao, Jiewen
> > Sent: Wednesday, July 3, 2019 10:45 AM
> > To: devel@edk2.groups.io; Dong, Eric <eric.dong@intel.com>
> > Cc: Ni, Ray <ray.ni@intel.com>; Laszlo Ersek <lersek@redhat.com>
> > Subject: RE: [edk2-devel] [Patch v3 0/2] Enable new MM MP protocol
> >
> > HI Eric
> > Would you please share what unit test you have done for this new feature?
> >
> >
> > > -----Original Message-----
> > > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf
> Of
> > > Dong, Eric
> > > Sent: Wednesday, July 3, 2019 10:43 AM
> > > To: devel@edk2.groups.io
> > > Cc: Ni, Ray <ray.ni@intel.com>; Laszlo Ersek <lersek@redhat.com>
> > > Subject: [edk2-devel] [Patch v3 0/2] Enable new MM MP protocol
> > >
> > > v3 changes:
> > > 1. Fix Token clean up too early caused CheckProcedure return error.
> > >
> > > https://bugzilla.tianocore.org/show_bug.cgi?id=1937
> > >
> > > PI spec added a new protocol named MM MP protocol. This protocol
> > > allows for better remote queuing of execution of procedures on an AP.
> > > This extends the existing procedures to allow:
> > > 1. A function to be called in blocking and non-blocking manner
> > > explicitly 2. Allow broadcasts.
> > > 3. Allow execution of a procedure when a processor powers up.
> > >
> > > This patch serial enable this new protocol.
> > >
> > > Cc: Ray Ni <ray.ni@intel.com>
> > > Cc: Laszlo Ersek <lersek@redhat.com>
> > >
> > > Eric Dong (2):
> > >   MdePkg: Add new MM MP Protocol definition.
> > >   UefiCpuPkg/PiSmmCpuDxeSmm: Enable MM MP Protocol.
> > >
> > >  MdePkg/Include/Pi/PiMultiPhase.h             |  16 +
> > >  MdePkg/Include/Protocol/MmMp.h               | 333
> +++++++++++
> > >  MdePkg/MdePkg.dec                            |   3 +
> > >  UefiCpuPkg/PiSmmCpuDxeSmm/MpService.c        | 555
> > > ++++++++++++++++++-
> > >  UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.c   |  11 +
> > >  UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.h   | 160 +++++-
> > >  UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf |   3 +
> > >  UefiCpuPkg/PiSmmCpuDxeSmm/SmmMp.c            | 372
> > > +++++++++++++
> > >  UefiCpuPkg/PiSmmCpuDxeSmm/SmmMp.h            | 286
> > > ++++++++++
> > >  9 files changed, 1722 insertions(+), 17 deletions(-)  create mode
> > > 100644 MdePkg/Include/Protocol/MmMp.h  create mode 100644
> > > UefiCpuPkg/PiSmmCpuDxeSmm/SmmMp.c  create mode 100644
> > > UefiCpuPkg/PiSmmCpuDxeSmm/SmmMp.h
> > >
> > > --
> > > 2.21.0.windows.1
> > >
> > >
> > > 


  reply	other threads:[~2019-07-03  3:11 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-03  2:42 [Patch v3 0/2] Enable new MM MP protocol Dong, Eric
2019-07-03  2:42 ` [Patch v3 1/2] MdePkg: Add new MM MP Protocol definition Dong, Eric
2019-07-04  3:26   ` [edk2-devel] " Ni, Ray
2019-07-03  2:42 ` [Patch v3 2/2] UefiCpuPkg/PiSmmCpuDxeSmm: Enable MM MP Protocol Dong, Eric
2019-07-03 21:07   ` [edk2-devel] " Laszlo Ersek
2019-07-04  6:18   ` Ni, Ray
2019-07-08  9:18     ` Dong, Eric
2019-07-03  2:44 ` [edk2-devel] [Patch v3 0/2] Enable new MM MP protocol Yao, Jiewen
2019-07-03  2:58   ` Dong, Eric
2019-07-03  3:11     ` Yao, Jiewen [this message]
2019-07-03 21:34 ` Laszlo Ersek

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=74D8A39837DF1E4DA445A8C0B3885C503F6F2053@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