public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* Re: [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode definition for ExternalOp
       [not found] <20191030141729.124444-1-pierre.gondois@arm.com>
@ 2019-10-30 15:04 ` Liming Gao
  2019-10-30 15:14 ` Sami Mujawar
  1 sibling, 0 replies; 3+ messages in thread
From: Liming Gao @ 2019-10-30 15:04 UTC (permalink / raw)
  To: devel@edk2.groups.io, pierre.gondois@arm.com
  Cc: michael.d.kinney@intel.comliming.gao@intel.comSami.Mujawar@arm.com

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

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of PierreGondois
> Sent: Wednesday, October 30, 2019 10:17 PM
> To: devel@edk2.groups.io
> Cc: Pierre Gondois <Pierre.Gondois@arm.com>; michael.d.kinney@intel.comliming.gao@intel.comSami.Mujawar@arm.com;
> nd@arm.com
> Subject: [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode definition for ExternalOp
> 
> From: Pierre Gondois <pierre.gondois@arm.com>
> 
> The ACPI specification, version 6.3, January 2019,
> defines the Named Object Encoding for ExternalOp
> in section '20.2.5.2 Named Objects Encoding'.
> 
> This patch adds the definition for ExternalOp to
> the list of Primary Opcode definitions.
> 
> Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
> ---
> 
> The changes can be seen at https://github.com/PierreARM/edk2/commits/677_Add_ExternalOp_definition_v1
> 
> Notes:
>     v1:
>     - Add the ExternalOp AML OpCode [Pierre]
> 
>  MdePkg/Include/IndustryStandard/AcpiAml.h | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/MdePkg/Include/IndustryStandard/AcpiAml.h b/MdePkg/Include/IndustryStandard/AcpiAml.h
> index 6919622af212c58dd92fc4d2bbd3b9447961d20a..3dd5408b359f9192e2fa9cedd0260a0f6bb5603a 100644
> --- a/MdePkg/Include/IndustryStandard/AcpiAml.h
> +++ b/MdePkg/Include/IndustryStandard/AcpiAml.h
> @@ -2,6 +2,7 @@
>    This file contains AML code definition in the latest ACPI spec.
> 
>    Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
> +  Copyright (c) 2019, ARM Limited. All rights reserved.<BR>
>    SPDX-License-Identifier: BSD-2-Clause-Patent
> 
>  **/
> @@ -30,6 +31,7 @@
>  #define AML_PACKAGE_OP               0x12
>  #define AML_VAR_PACKAGE_OP           0x13
>  #define AML_METHOD_OP                0x14
> +#define AML_EXTERNAL_OP              0x15
>  #define AML_DUAL_NAME_PREFIX         0x2e
>  #define AML_MULTI_NAME_PREFIX        0x2f
>  #define AML_NAME_CHAR_A              0x41
> --
> 'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)'
> 
> 
> 
> 


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

* Re: [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode definition for ExternalOp
       [not found] <20191030141729.124444-1-pierre.gondois@arm.com>
  2019-10-30 15:04 ` [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode definition for ExternalOp Liming Gao
@ 2019-10-30 15:14 ` Sami Mujawar
  2019-11-04  2:08   ` Liming Gao
  1 sibling, 1 reply; 3+ messages in thread
From: Sami Mujawar @ 2019-10-30 15:14 UTC (permalink / raw)
  To: devel@edk2.groups.io, Pierre Gondois
  Cc: michael.d.kinney@intel.com, liming.gao@intel.com, Sami Mujawar,
	nd

Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>

Regards,

Sami Mujawar

-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of PierreGondois via Groups.Io
Sent: 30 October 2019 02:17 PM
To: devel@edk2.groups.io
Cc: Pierre Gondois <Pierre.Gondois@arm.com>; michael.d.kinney@intel.comliming.gao@intel.comSami.Mujawar@arm.com; nd <nd@arm.com>
Subject: [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode definition for ExternalOp

From: Pierre Gondois <pierre.gondois@arm.com>

The ACPI specification, version 6.3, January 2019, defines the Named Object Encoding for ExternalOp in section '20.2.5.2 Named Objects Encoding'.

This patch adds the definition for ExternalOp to the list of Primary Opcode definitions.

Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
---

The changes can be seen at https://github.com/PierreARM/edk2/commits/677_Add_ExternalOp_definition_v1

Notes:
    v1:
    - Add the ExternalOp AML OpCode [Pierre]

 MdePkg/Include/IndustryStandard/AcpiAml.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MdePkg/Include/IndustryStandard/AcpiAml.h b/MdePkg/Include/IndustryStandard/AcpiAml.h
index 6919622af212c58dd92fc4d2bbd3b9447961d20a..3dd5408b359f9192e2fa9cedd0260a0f6bb5603a 100644
--- a/MdePkg/Include/IndustryStandard/AcpiAml.h
+++ b/MdePkg/Include/IndustryStandard/AcpiAml.h
@@ -2,6 +2,7 @@
   This file contains AML code definition in the latest ACPI spec.
 
   Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
+  Copyright (c) 2019, ARM Limited. All rights reserved.<BR>
   SPDX-License-Identifier: BSD-2-Clause-Patent
 
 **/
@@ -30,6 +31,7 @@
 #define AML_PACKAGE_OP               0x12
 #define AML_VAR_PACKAGE_OP           0x13
 #define AML_METHOD_OP                0x14
+#define AML_EXTERNAL_OP              0x15
 #define AML_DUAL_NAME_PREFIX         0x2e
 #define AML_MULTI_NAME_PREFIX        0x2f
 #define AML_NAME_CHAR_A              0x41
--
'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)'






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

* Re: [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode definition for ExternalOp
  2019-10-30 15:14 ` Sami Mujawar
@ 2019-11-04  2:08   ` Liming Gao
  0 siblings, 0 replies; 3+ messages in thread
From: Liming Gao @ 2019-11-04  2:08 UTC (permalink / raw)
  To: Sami Mujawar, devel@edk2.groups.io, Pierre Gondois; +Cc: Kinney, Michael D, nd

Push @ b10ef8a4e75899cfad421dc60d0bbf93c53d37f4

>-----Original Message-----
>From: Sami Mujawar [mailto:Sami.Mujawar@arm.com]
>Sent: Wednesday, October 30, 2019 11:15 PM
>To: devel@edk2.groups.io; Pierre Gondois <Pierre.Gondois@arm.com>
>Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming
><liming.gao@intel.com>; Sami Mujawar <Sami.Mujawar@arm.com>; nd
><nd@arm.com>
>Subject: RE: [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode
>definition for ExternalOp
>
>Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
>
>Regards,
>
>Sami Mujawar
>
>-----Original Message-----
>From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of
>PierreGondois via Groups.Io
>Sent: 30 October 2019 02:17 PM
>To: devel@edk2.groups.io
>Cc: Pierre Gondois <Pierre.Gondois@arm.com>;
>michael.d.kinney@intel.comliming.gao@intel.comSami.Mujawar@arm.com;
>nd <nd@arm.com>
>Subject: [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode definition
>for ExternalOp
>
>From: Pierre Gondois <pierre.gondois@arm.com>
>
>The ACPI specification, version 6.3, January 2019, defines the Named Object
>Encoding for ExternalOp in section '20.2.5.2 Named Objects Encoding'.
>
>This patch adds the definition for ExternalOp to the list of Primary Opcode
>definitions.
>
>Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
>---
>
>The changes can be seen at
>https://github.com/PierreARM/edk2/commits/677_Add_ExternalOp_definiti
>on_v1
>
>Notes:
>    v1:
>    - Add the ExternalOp AML OpCode [Pierre]
>
> MdePkg/Include/IndustryStandard/AcpiAml.h | 2 ++
> 1 file changed, 2 insertions(+)
>
>diff --git a/MdePkg/Include/IndustryStandard/AcpiAml.h
>b/MdePkg/Include/IndustryStandard/AcpiAml.h
>index
>6919622af212c58dd92fc4d2bbd3b9447961d20a..3dd5408b359f9192e2fa9cedd0
>260a0f6bb5603a 100644
>--- a/MdePkg/Include/IndustryStandard/AcpiAml.h
>+++ b/MdePkg/Include/IndustryStandard/AcpiAml.h
>@@ -2,6 +2,7 @@
>   This file contains AML code definition in the latest ACPI spec.
>
>   Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
>+  Copyright (c) 2019, ARM Limited. All rights reserved.<BR>
>   SPDX-License-Identifier: BSD-2-Clause-Patent
>
> **/
>@@ -30,6 +31,7 @@
> #define AML_PACKAGE_OP               0x12
> #define AML_VAR_PACKAGE_OP           0x13
> #define AML_METHOD_OP                0x14
>+#define AML_EXTERNAL_OP              0x15
> #define AML_DUAL_NAME_PREFIX         0x2e
> #define AML_MULTI_NAME_PREFIX        0x2f
> #define AML_NAME_CHAR_A              0x41
>--
>'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)'
>
>
>
>


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

end of thread, other threads:[~2019-11-04  2:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20191030141729.124444-1-pierre.gondois@arm.com>
2019-10-30 15:04 ` [edk2-devel] [PATCH v1 1/1] MdePkg: Add AML OpCode definition for ExternalOp Liming Gao
2019-10-30 15:14 ` Sami Mujawar
2019-11-04  2:08   ` Liming Gao

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