public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and maintainers ***
@ 2018-02-15 13:31 achin.gupta
  2018-02-15 13:31 ` [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers achin.gupta
  2018-02-23  7:53 ` [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and maintainers *** Gao, Liming
  0 siblings, 2 replies; 7+ messages in thread
From: achin.gupta @ 2018-02-15 13:31 UTC (permalink / raw)
  To: edk2-devel
  Cc: afish, michael.d.kinney, Leif.Lindholm, jiewen.yao,
	supreeth.venkatesh, nd, Achin Gupta

From: Achin Gupta <achin.gupta@arm.com>

PI Specification v1.5 "Volume 4: Management Mode Core Interface"
introduces the concept of MM Standalone Mode. The StandaloneMmPkg will
host an implementation of this feature.

Development of this package was done in edk2-staging [1]. Support for MM
in Standalone Mode was originally contributed by Yao Jiewen. Subsequent
development for AArch64 was done by Achin Gupta and Supreeth
Venkatesh. The outcome of this work has been posted for review here
[2]. The patches are also hosted here [3].

This patch adds an empty StandaloneMmPkg directory under which these
patches will be hosted. It also nominates the maintainers and reviewers
for this package.

[1] https://github.com/tianocore/edk2-staging/tree/AArch64StandaloneMm
[2] https://lists.01.org/pipermail/edk2-devel/2017-November/017674.html
[3] https://github.com/supven01/edk2/tree/AArch64StandaloneMm

Achin Gupta (1):
  Maintainers.txt: Add StandaloneMmPkg and maintainers

 Maintainers.txt | 5 +++++
 StandaloneMmPkg | 0
 2 files changed, 5 insertions(+)
 create mode 100644 StandaloneMmPkg

-- 
1.9.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers
  2018-02-15 13:31 [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and maintainers *** achin.gupta
@ 2018-02-15 13:31 ` achin.gupta
  2018-03-13 19:44   ` Kinney, Michael D
                     ` (3 more replies)
  2018-02-23  7:53 ` [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and maintainers *** Gao, Liming
  1 sibling, 4 replies; 7+ messages in thread
From: achin.gupta @ 2018-02-15 13:31 UTC (permalink / raw)
  To: edk2-devel
  Cc: afish, michael.d.kinney, Leif.Lindholm, jiewen.yao,
	supreeth.venkatesh, nd, Achin Gupta

From: Achin Gupta <achin.gupta@arm.com>

This patch adds maintainers, reviewer and directory for the
StandaloneMmPkg. This package will host an implementation of Standalone
Management Mode as specified in the Platform Initialization (PI)
Specification, Volume 4: Management Mode Core Interface.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Achin Gupta <achin.gupta@arm.com>
---
 Maintainers.txt | 5 +++++
 StandaloneMmPkg | 0
 2 files changed, 5 insertions(+)

diff --git a/Maintainers.txt b/Maintainers.txt
index 74f2538..be5d527 100644
--- a/Maintainers.txt
+++ b/Maintainers.txt
@@ -259,3 +259,8 @@ M: Mang Guo <mang.guo@intel.com>
 Vlv2TbltDevicePkg
 M: David Wei <david.wei@intel.com>
 M: Mang Guo <mang.guo@intel.com>
+
+StandaloneMmPkg
+M: Achin Gupta <achin.gupta@arm.com>
+M: Jiewen Yao <jiewen.yao@intel.com>
+R: Supreeth Venkatesh <supreeth.venkatesh@arm.com>
diff --git a/StandaloneMmPkg b/StandaloneMmPkg
new file mode 100644
index 0000000..e69de29
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and maintainers ***
  2018-02-15 13:31 [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and maintainers *** achin.gupta
  2018-02-15 13:31 ` [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers achin.gupta
@ 2018-02-23  7:53 ` Gao, Liming
  1 sibling, 0 replies; 7+ messages in thread
From: Gao, Liming @ 2018-02-23  7:53 UTC (permalink / raw)
  To: achin.gupta@arm.com, edk2-devel@lists.01.org
  Cc: afish@apple.com, Leif.Lindholm@linaro.org, Yao, Jiewen,
	Kinney, Michael D, nd@arm.com

Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
>achin.gupta@arm.com
>Sent: Thursday, February 15, 2018 9:32 PM
>To: edk2-devel@lists.01.org
>Cc: afish@apple.com; Leif.Lindholm@linaro.org; Yao, Jiewen
><jiewen.yao@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>;
>nd@arm.com
>Subject: [edk2] [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and
>maintainers ***
>
>From: Achin Gupta <achin.gupta@arm.com>
>
>PI Specification v1.5 "Volume 4: Management Mode Core Interface"
>introduces the concept of MM Standalone Mode. The StandaloneMmPkg will
>host an implementation of this feature.
>
>Development of this package was done in edk2-staging [1]. Support for MM
>in Standalone Mode was originally contributed by Yao Jiewen. Subsequent
>development for AArch64 was done by Achin Gupta and Supreeth
>Venkatesh. The outcome of this work has been posted for review here
>[2]. The patches are also hosted here [3].
>
>This patch adds an empty StandaloneMmPkg directory under which these
>patches will be hosted. It also nominates the maintainers and reviewers
>for this package.
>
>[1] https://github.com/tianocore/edk2-staging/tree/AArch64StandaloneMm
>[2] https://lists.01.org/pipermail/edk2-devel/2017-November/017674.html
>[3] https://github.com/supven01/edk2/tree/AArch64StandaloneMm
>
>Achin Gupta (1):
>  Maintainers.txt: Add StandaloneMmPkg and maintainers
>
> Maintainers.txt | 5 +++++
> StandaloneMmPkg | 0
> 2 files changed, 5 insertions(+)
> create mode 100644 StandaloneMmPkg
>
>--
>1.9.1
>
>_______________________________________________
>edk2-devel mailing list
>edk2-devel@lists.01.org
>https://lists.01.org/mailman/listinfo/edk2-devel


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers
  2018-02-15 13:31 ` [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers achin.gupta
@ 2018-03-13 19:44   ` Kinney, Michael D
  2018-03-14 14:31   ` Leif Lindholm
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Kinney, Michael D @ 2018-03-13 19:44 UTC (permalink / raw)
  To: achin.gupta@arm.com, edk2-devel@lists.01.org, Kinney, Michael D
  Cc: afish@apple.com, Leif.Lindholm@linaro.org, Yao, Jiewen,
	supreeth.venkatesh@arm.com, nd@arm.com

Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>

Mike

> -----Original Message-----
> From: achin.gupta@arm.com [mailto:achin.gupta@arm.com]
> Sent: Thursday, February 15, 2018 5:32 AM
> To: edk2-devel@lists.01.org
> Cc: afish@apple.com; Kinney, Michael D
> <michael.d.kinney@intel.com>; Leif.Lindholm@linaro.org;
> Yao, Jiewen <jiewen.yao@intel.com>;
> supreeth.venkatesh@arm.com; nd@arm.com; Achin Gupta
> <achin.gupta@arm.com>
> Subject: [edk2 PATCH v2 1/1] Maintainers.txt: Add
> StandaloneMmPkg and maintainers
> 
> From: Achin Gupta <achin.gupta@arm.com>
> 
> This patch adds maintainers, reviewer and directory for
> the
> StandaloneMmPkg. This package will host an
> implementation of Standalone
> Management Mode as specified in the Platform
> Initialization (PI)
> Specification, Volume 4: Management Mode Core Interface.
> 
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Achin Gupta <achin.gupta@arm.com>
> ---
>  Maintainers.txt | 5 +++++
>  StandaloneMmPkg | 0
>  2 files changed, 5 insertions(+)
> 
> diff --git a/Maintainers.txt b/Maintainers.txt
> index 74f2538..be5d527 100644
> --- a/Maintainers.txt
> +++ b/Maintainers.txt
> @@ -259,3 +259,8 @@ M: Mang Guo <mang.guo@intel.com>
>  Vlv2TbltDevicePkg
>  M: David Wei <david.wei@intel.com>
>  M: Mang Guo <mang.guo@intel.com>
> +
> +StandaloneMmPkg
> +M: Achin Gupta <achin.gupta@arm.com>
> +M: Jiewen Yao <jiewen.yao@intel.com>
> +R: Supreeth Venkatesh <supreeth.venkatesh@arm.com>
> diff --git a/StandaloneMmPkg b/StandaloneMmPkg
> new file mode 100644
> index 0000000..e69de29
> --
> 1.9.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers
  2018-02-15 13:31 ` [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers achin.gupta
  2018-03-13 19:44   ` Kinney, Michael D
@ 2018-03-14 14:31   ` Leif Lindholm
  2018-03-21  1:04   ` Yao, Jiewen
  2018-03-21  1:20   ` Leif Lindholm
  3 siblings, 0 replies; 7+ messages in thread
From: Leif Lindholm @ 2018-03-14 14:31 UTC (permalink / raw)
  To: achin.gupta
  Cc: edk2-devel, afish, michael.d.kinney, jiewen.yao,
	supreeth.venkatesh, nd

On Thu, Feb 15, 2018 at 01:31:50PM +0000, achin.gupta@arm.com wrote:
> From: Achin Gupta <achin.gupta@arm.com>
> 
> This patch adds maintainers, reviewer and directory for the
> StandaloneMmPkg. This package will host an implementation of Standalone
> Management Mode as specified in the Platform Initialization (PI)
> Specification, Volume 4: Management Mode Core Interface.
> 
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Achin Gupta <achin.gupta@arm.com>

Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>

> ---
>  Maintainers.txt | 5 +++++
>  StandaloneMmPkg | 0
>  2 files changed, 5 insertions(+)
> 
> diff --git a/Maintainers.txt b/Maintainers.txt
> index 74f2538..be5d527 100644
> --- a/Maintainers.txt
> +++ b/Maintainers.txt
> @@ -259,3 +259,8 @@ M: Mang Guo <mang.guo@intel.com>
>  Vlv2TbltDevicePkg
>  M: David Wei <david.wei@intel.com>
>  M: Mang Guo <mang.guo@intel.com>
> +
> +StandaloneMmPkg
> +M: Achin Gupta <achin.gupta@arm.com>
> +M: Jiewen Yao <jiewen.yao@intel.com>
> +R: Supreeth Venkatesh <supreeth.venkatesh@arm.com>
> diff --git a/StandaloneMmPkg b/StandaloneMmPkg
> new file mode 100644
> index 0000000..e69de29
> -- 
> 1.9.1
> 


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers
  2018-02-15 13:31 ` [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers achin.gupta
  2018-03-13 19:44   ` Kinney, Michael D
  2018-03-14 14:31   ` Leif Lindholm
@ 2018-03-21  1:04   ` Yao, Jiewen
  2018-03-21  1:20   ` Leif Lindholm
  3 siblings, 0 replies; 7+ messages in thread
From: Yao, Jiewen @ 2018-03-21  1:04 UTC (permalink / raw)
  To: achin.gupta@arm.com, edk2-devel@lists.01.org
  Cc: afish@apple.com, Kinney, Michael D, Leif.Lindholm@linaro.org,
	supreeth.venkatesh@arm.com, nd@arm.com

Reviewed-by: Jiewen.yao@intel.com

> -----Original Message-----
> From: achin.gupta@arm.com [mailto:achin.gupta@arm.com]
> Sent: Thursday, February 15, 2018 9:32 PM
> To: edk2-devel@lists.01.org
> Cc: afish@apple.com; Kinney, Michael D <michael.d.kinney@intel.com>;
> Leif.Lindholm@linaro.org; Yao, Jiewen <jiewen.yao@intel.com>;
> supreeth.venkatesh@arm.com; nd@arm.com; Achin Gupta
> <achin.gupta@arm.com>
> Subject: [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and
> maintainers
> 
> From: Achin Gupta <achin.gupta@arm.com>
> 
> This patch adds maintainers, reviewer and directory for the
> StandaloneMmPkg. This package will host an implementation of Standalone
> Management Mode as specified in the Platform Initialization (PI)
> Specification, Volume 4: Management Mode Core Interface.
> 
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Achin Gupta <achin.gupta@arm.com>
> ---
>  Maintainers.txt | 5 +++++
>  StandaloneMmPkg | 0
>  2 files changed, 5 insertions(+)
> 
> diff --git a/Maintainers.txt b/Maintainers.txt
> index 74f2538..be5d527 100644
> --- a/Maintainers.txt
> +++ b/Maintainers.txt
> @@ -259,3 +259,8 @@ M: Mang Guo <mang.guo@intel.com>
>  Vlv2TbltDevicePkg
>  M: David Wei <david.wei@intel.com>
>  M: Mang Guo <mang.guo@intel.com>
> +
> +StandaloneMmPkg
> +M: Achin Gupta <achin.gupta@arm.com>
> +M: Jiewen Yao <jiewen.yao@intel.com>
> +R: Supreeth Venkatesh <supreeth.venkatesh@arm.com>
> diff --git a/StandaloneMmPkg b/StandaloneMmPkg
> new file mode 100644
> index 0000000..e69de29
> --
> 1.9.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers
  2018-02-15 13:31 ` [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers achin.gupta
                     ` (2 preceding siblings ...)
  2018-03-21  1:04   ` Yao, Jiewen
@ 2018-03-21  1:20   ` Leif Lindholm
  3 siblings, 0 replies; 7+ messages in thread
From: Leif Lindholm @ 2018-03-21  1:20 UTC (permalink / raw)
  To: achin.gupta
  Cc: edk2-devel, afish, michael.d.kinney, jiewen.yao,
	supreeth.venkatesh, nd

Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Pushed as 2b85beae0b.

Please start bringing the code in via regular mailing list review by
belowmentioned maintainerers/reviewer.

On Thu, Feb 15, 2018 at 01:31:50PM +0000, achin.gupta@arm.com wrote:
> From: Achin Gupta <achin.gupta@arm.com>
> 
> This patch adds maintainers, reviewer and directory for the
> StandaloneMmPkg. This package will host an implementation of Standalone
> Management Mode as specified in the Platform Initialization (PI)
> Specification, Volume 4: Management Mode Core Interface.
> 
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Achin Gupta <achin.gupta@arm.com>
> ---
>  Maintainers.txt | 5 +++++
>  StandaloneMmPkg | 0
>  2 files changed, 5 insertions(+)
> 
> diff --git a/Maintainers.txt b/Maintainers.txt
> index 74f2538..be5d527 100644
> --- a/Maintainers.txt
> +++ b/Maintainers.txt
> @@ -259,3 +259,8 @@ M: Mang Guo <mang.guo@intel.com>
>  Vlv2TbltDevicePkg
>  M: David Wei <david.wei@intel.com>
>  M: Mang Guo <mang.guo@intel.com>
> +
> +StandaloneMmPkg
> +M: Achin Gupta <achin.gupta@arm.com>
> +M: Jiewen Yao <jiewen.yao@intel.com>
> +R: Supreeth Venkatesh <supreeth.venkatesh@arm.com>
> diff --git a/StandaloneMmPkg b/StandaloneMmPkg
> new file mode 100644
> index 0000000..e69de29
> -- 
> 1.9.1
> 


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-03-21  1:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-15 13:31 [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and maintainers *** achin.gupta
2018-02-15 13:31 ` [edk2 PATCH v2 1/1] Maintainers.txt: Add StandaloneMmPkg and maintainers achin.gupta
2018-03-13 19:44   ` Kinney, Michael D
2018-03-14 14:31   ` Leif Lindholm
2018-03-21  1:04   ` Yao, Jiewen
2018-03-21  1:20   ` Leif Lindholm
2018-02-23  7:53 ` [edk2 PATCH v2 0/1] *** Add StandaloneMmPkg and maintainers *** Gao, Liming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox