* [Patch V3 0/2] Modify defination for MpWakeupStructure
@ 2023-03-09 3:40 duntan
2023-03-09 3:40 ` [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure duntan
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: duntan @ 2023-03-09 3:40 UTC (permalink / raw)
To: devel
In V3 patch:
Modify wrong naming in commit message
Dun Tan (2):
MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version
MdePkg/Include/IndustryStandard/Acpi64.h | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
--
2.31.1.windows.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
2023-03-09 3:40 [Patch V3 0/2] Modify defination for MpWakeupStructure duntan
@ 2023-03-09 3:40 ` duntan
2023-03-10 2:15 ` 回复: " gaoliming
2023-03-09 3:40 ` [Patch V3 2/2] MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version duntan
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: duntan @ 2023-03-09 3:40 UTC (permalink / raw)
To: devel; +Cc: Michael D Kinney, Liming Gao, Zhiguang Liu
modify the wrong 'AcpiId' to 'ApicId' of MpWakeupStructure defination
in Acpi64.h.
Signed-off-by: Dun Tan <dun.tan@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
---
MdePkg/Include/IndustryStandard/Acpi64.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h b/MdePkg/Include/IndustryStandard/Acpi64.h
index fe5ebfac2b..bfd022b6b6 100644
--- a/MdePkg/Include/IndustryStandard/Acpi64.h
+++ b/MdePkg/Include/IndustryStandard/Acpi64.h
@@ -607,7 +607,7 @@ typedef struct {
typedef struct {
UINT16 Command;
UINT16 Reserved;
- UINT32 AcpiId;
+ UINT32 ApicId;
UINT64 WakeupVector;
UINT8 ReservedForOs[2032];
UINT8 ReservedForFirmware[2048];
--
2.31.1.windows.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Patch V3 2/2] MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version
2023-03-09 3:40 [Patch V3 0/2] Modify defination for MpWakeupStructure duntan
2023-03-09 3:40 ` [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure duntan
@ 2023-03-09 3:40 ` duntan
2023-03-09 7:05 ` [edk2-devel] [Patch V3 0/2] Modify defination for MpWakeupStructure Ni, Ray
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: duntan @ 2023-03-09 3:40 UTC (permalink / raw)
To: devel; +Cc: Michael D Kinney, Liming Gao, Zhiguang Liu, Ray Ni
Add define for MultiprocessorWakeupMailboxStructure Version. The
version for Mailbox Structure in Spec6.4 is 0.
Signed-off-by: Dun Tan <dun.tan@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
---
MdePkg/Include/IndustryStandard/Acpi64.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h b/MdePkg/Include/IndustryStandard/Acpi64.h
index bfd022b6b6..379ab02a72 100644
--- a/MdePkg/Include/IndustryStandard/Acpi64.h
+++ b/MdePkg/Include/IndustryStandard/Acpi64.h
@@ -601,6 +601,11 @@ typedef struct {
UINT64 MailBoxAddress;
} EFI_ACPI_6_4_MULTIPROCESSOR_WAKEUP_STRUCTURE;
+///
+/// Multiprocessor Wakeup Mailbox Structure Version (as defined in ACPI 6.4 spec.)
+///
+#define EFI_ACPI_6_4_MULTIPROCESSOR_WAKEUP_MAILBOX_STRUCTURE_VERSION 0x0
+
///
/// Multiprocessor Wakeup Mailbox Structure
///
--
2.31.1.windows.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [edk2-devel] [Patch V3 0/2] Modify defination for MpWakeupStructure
2023-03-09 3:40 [Patch V3 0/2] Modify defination for MpWakeupStructure duntan
2023-03-09 3:40 ` [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure duntan
2023-03-09 3:40 ` [Patch V3 2/2] MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version duntan
@ 2023-03-09 7:05 ` Ni, Ray
[not found] ` <174AA33E822F73AE.24021@groups.io>
[not found] ` <174AA33F258FCD3B.23432@groups.io>
4 siblings, 0 replies; 10+ messages in thread
From: Ni, Ray @ 2023-03-09 7:05 UTC (permalink / raw)
To: devel@edk2.groups.io, Tan, Dun
Reviewed-by: Ray Ni <ray.ni@intel.com>
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of duntan
> Sent: Thursday, March 9, 2023 11:40 AM
> To: devel@edk2.groups.io
> Subject: [edk2-devel] [Patch V3 0/2] Modify defination for
> MpWakeupStructure
>
> In V3 patch:
> Modify wrong naming in commit message
>
> Dun Tan (2):
> MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
> MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version
>
> MdePkg/Include/IndustryStandard/Acpi64.h | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> --
> 2.31.1.windows.1
>
>
>
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* 回复: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
2023-03-09 3:40 ` [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure duntan
@ 2023-03-10 2:15 ` gaoliming
2023-03-10 6:17 ` duntan
0 siblings, 1 reply; 10+ messages in thread
From: gaoliming @ 2023-03-10 2:15 UTC (permalink / raw)
To: 'Dun Tan', devel
Cc: 'Michael D Kinney', 'Zhiguang Liu'
Dun:
Is there any code impact with this change?
Thanks
Liming
> -----邮件原件-----
> 发件人: Dun Tan <dun.tan@intel.com>
> 发送时间: 2023年3月9日 11:40
> 收件人: devel@edk2.groups.io
> 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>
> 主题: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in
> MpWakeupStructure
>
> modify the wrong 'AcpiId' to 'ApicId' of MpWakeupStructure defination
> in Acpi64.h.
>
> Signed-off-by: Dun Tan <dun.tan@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
> ---
> MdePkg/Include/IndustryStandard/Acpi64.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h
> b/MdePkg/Include/IndustryStandard/Acpi64.h
> index fe5ebfac2b..bfd022b6b6 100644
> --- a/MdePkg/Include/IndustryStandard/Acpi64.h
> +++ b/MdePkg/Include/IndustryStandard/Acpi64.h
> @@ -607,7 +607,7 @@ typedef struct {
> typedef struct {
> UINT16 Command;
> UINT16 Reserved;
> - UINT32 AcpiId;
> + UINT32 ApicId;
> UINT64 WakeupVector;
> UINT8 ReservedForOs[2032];
> UINT8 ReservedForFirmware[2048];
> --
> 2.31.1.windows.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
2023-03-10 2:15 ` 回复: " gaoliming
@ 2023-03-10 6:17 ` duntan
2023-03-23 1:16 ` 回复: " gaoliming
0 siblings, 1 reply; 10+ messages in thread
From: duntan @ 2023-03-10 6:17 UTC (permalink / raw)
To: Gao, Liming, devel@edk2.groups.io; +Cc: Kinney, Michael D, Liu, Zhiguang
Hi Liming,
I've checked edk2 and edk2-platforms repo. This code change doesn't impacted any code.
The MultiprocessorWakeupMailbox structure has not been used yet.
Thanks,
Dun
-----Original Message-----
From: gaoliming <gaoliming@byosoft.com.cn>
Sent: Friday, March 10, 2023 10:16 AM
To: Tan, Dun <dun.tan@intel.com>; devel@edk2.groups.io
Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang <zhiguang.liu@intel.com>
Subject: 回复: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
Dun:
Is there any code impact with this change?
Thanks
Liming
> -----邮件原件-----
> 发件人: Dun Tan <dun.tan@intel.com>
> 发送时间: 2023年3月9日 11:40
> 收件人: devel@edk2.groups.io
> 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>
> 主题: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in
> MpWakeupStructure
>
> modify the wrong 'AcpiId' to 'ApicId' of MpWakeupStructure defination
> in Acpi64.h.
>
> Signed-off-by: Dun Tan <dun.tan@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
> ---
> MdePkg/Include/IndustryStandard/Acpi64.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h
> b/MdePkg/Include/IndustryStandard/Acpi64.h
> index fe5ebfac2b..bfd022b6b6 100644
> --- a/MdePkg/Include/IndustryStandard/Acpi64.h
> +++ b/MdePkg/Include/IndustryStandard/Acpi64.h
> @@ -607,7 +607,7 @@ typedef struct {
> typedef struct {
> UINT16 Command;
> UINT16 Reserved;
> - UINT32 AcpiId;
> + UINT32 ApicId;
> UINT64 WakeupVector;
> UINT8 ReservedForOs[2032];
> UINT8 ReservedForFirmware[2048];
> --
> 2.31.1.windows.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* 回复: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
2023-03-10 6:17 ` duntan
@ 2023-03-23 1:16 ` gaoliming
2023-03-24 8:52 ` [edk2-devel] " duntan
0 siblings, 1 reply; 10+ messages in thread
From: gaoliming @ 2023-03-23 1:16 UTC (permalink / raw)
To: 'Tan, Dun', devel
Cc: 'Kinney, Michael D', 'Liu, Zhiguang'
Dun:
OK. Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Can you create PR for this patch set? I will merge this PR.
Thanks
Liming
> -----邮件原件-----
> 发件人: Tan, Dun <dun.tan@intel.com>
> 发送时间: 2023年3月10日 14:17
> 收件人: Gao, Liming <gaoliming@byosoft.com.cn>; devel@edk2.groups.io
> 抄送: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> <zhiguang.liu@intel.com>
> 主题: RE: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in
> MpWakeupStructure
>
> Hi Liming,
>
> I've checked edk2 and edk2-platforms repo. This code change doesn't
> impacted any code.
> The MultiprocessorWakeupMailbox structure has not been used yet.
>
> Thanks,
> Dun
>
> -----Original Message-----
> From: gaoliming <gaoliming@byosoft.com.cn>
> Sent: Friday, March 10, 2023 10:16 AM
> To: Tan, Dun <dun.tan@intel.com>; devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> <zhiguang.liu@intel.com>
> Subject: 回复: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId'
> in MpWakeupStructure
>
> Dun:
> Is there any code impact with this change?
>
> Thanks
> Liming
> > -----邮件原件-----
> > 发件人: Dun Tan <dun.tan@intel.com>
> > 发送时间: 2023年3月9日 11:40
> > 收件人: devel@edk2.groups.io
> > 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao
> > <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>
> > 主题: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in
> > MpWakeupStructure
> >
> > modify the wrong 'AcpiId' to 'ApicId' of MpWakeupStructure defination
> > in Acpi64.h.
> >
> > Signed-off-by: Dun Tan <dun.tan@intel.com>
> > Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
> > ---
> > MdePkg/Include/IndustryStandard/Acpi64.h | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h
> > b/MdePkg/Include/IndustryStandard/Acpi64.h
> > index fe5ebfac2b..bfd022b6b6 100644
> > --- a/MdePkg/Include/IndustryStandard/Acpi64.h
> > +++ b/MdePkg/Include/IndustryStandard/Acpi64.h
> > @@ -607,7 +607,7 @@ typedef struct {
> > typedef struct {
> > UINT16 Command;
> > UINT16 Reserved;
> > - UINT32 AcpiId;
> > + UINT32 ApicId;
> > UINT64 WakeupVector;
> > UINT8 ReservedForOs[2032];
> > UINT8 ReservedForFirmware[2048];
> > --
> > 2.31.1.windows.1
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [edk2-devel] [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
[not found] ` <174AA33E822F73AE.24021@groups.io>
@ 2023-03-23 3:06 ` duntan
0 siblings, 0 replies; 10+ messages in thread
From: duntan @ 2023-03-23 3:06 UTC (permalink / raw)
To: devel@edk2.groups.io, Tan, Dun
Cc: Kinney, Michael D, Gao, Liming, Liu, Zhiguang
Mike and Liming,
Could you please help review this patch?
Thanks,
Dun
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of duntan
Sent: Thursday, March 9, 2023 11:40 AM
To: devel@edk2.groups.io
Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Liu, Zhiguang <zhiguang.liu@intel.com>
Subject: [edk2-devel] [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
modify the wrong 'AcpiId' to 'ApicId' of MpWakeupStructure defination in Acpi64.h.
Signed-off-by: Dun Tan <dun.tan@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
---
MdePkg/Include/IndustryStandard/Acpi64.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h b/MdePkg/Include/IndustryStandard/Acpi64.h
index fe5ebfac2b..bfd022b6b6 100644
--- a/MdePkg/Include/IndustryStandard/Acpi64.h
+++ b/MdePkg/Include/IndustryStandard/Acpi64.h
@@ -607,7 +607,7 @@ typedef struct {
typedef struct {
UINT16 Command;
UINT16 Reserved;
- UINT32 AcpiId;
+ UINT32 ApicId;
UINT64 WakeupVector;
UINT8 ReservedForOs[2032];
UINT8 ReservedForFirmware[2048];
--
2.31.1.windows.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [edk2-devel] [Patch V3 2/2] MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version
[not found] ` <174AA33F258FCD3B.23432@groups.io>
@ 2023-03-23 3:06 ` duntan
0 siblings, 0 replies; 10+ messages in thread
From: duntan @ 2023-03-23 3:06 UTC (permalink / raw)
To: devel@edk2.groups.io, Tan, Dun
Cc: Kinney, Michael D, Gao, Liming, Liu, Zhiguang, Ni, Ray
Mike and Liming,
Could you please help review this patch?
Thanks,
Dun
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of duntan
Sent: Thursday, March 9, 2023 11:40 AM
To: devel@edk2.groups.io
Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Liu, Zhiguang <zhiguang.liu@intel.com>; Ni, Ray <ray.ni@intel.com>
Subject: [edk2-devel] [Patch V3 2/2] MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version
Add define for MultiprocessorWakeupMailboxStructure Version. The version for Mailbox Structure in Spec6.4 is 0.
Signed-off-by: Dun Tan <dun.tan@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
---
MdePkg/Include/IndustryStandard/Acpi64.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h b/MdePkg/Include/IndustryStandard/Acpi64.h
index bfd022b6b6..379ab02a72 100644
--- a/MdePkg/Include/IndustryStandard/Acpi64.h
+++ b/MdePkg/Include/IndustryStandard/Acpi64.h
@@ -601,6 +601,11 @@ typedef struct {
UINT64 MailBoxAddress;
} EFI_ACPI_6_4_MULTIPROCESSOR_WAKEUP_STRUCTURE;
+///
+/// Multiprocessor Wakeup Mailbox Structure Version (as defined in ACPI
+6.4 spec.) /// #define
+EFI_ACPI_6_4_MULTIPROCESSOR_WAKEUP_MAILBOX_STRUCTURE_VERSION 0x0
+
///
/// Multiprocessor Wakeup Mailbox Structure ///
--
2.31.1.windows.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [edk2-devel] 回复: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
2023-03-23 1:16 ` 回复: " gaoliming
@ 2023-03-24 8:52 ` duntan
0 siblings, 0 replies; 10+ messages in thread
From: duntan @ 2023-03-24 8:52 UTC (permalink / raw)
To: devel@edk2.groups.io, Gao, Liming; +Cc: Kinney, Michael D, Liu, Zhiguang
Thanks Liming. Sorry for missing the email.
Here is the PR for the two patches: https://github.com/tianocore/edk2/pull/4169
Thanks,
Dun
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of gaoliming via groups.io
Sent: Thursday, March 23, 2023 9:17 AM
To: Tan, Dun <dun.tan@intel.com>; devel@edk2.groups.io
Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang <zhiguang.liu@intel.com>
Subject: [edk2-devel] 回复: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure
Dun:
OK. Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Can you create PR for this patch set? I will merge this PR.
Thanks
Liming
> -----邮件原件-----
> 发件人: Tan, Dun <dun.tan@intel.com>
> 发送时间: 2023年3月10日 14:17
> 收件人: Gao, Liming <gaoliming@byosoft.com.cn>; devel@edk2.groups.io
> 抄送: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> <zhiguang.liu@intel.com>
> 主题: RE: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId'
> in MpWakeupStructure
>
> Hi Liming,
>
> I've checked edk2 and edk2-platforms repo. This code change doesn't
> impacted any code.
> The MultiprocessorWakeupMailbox structure has not been used yet.
>
> Thanks,
> Dun
>
> -----Original Message-----
> From: gaoliming <gaoliming@byosoft.com.cn>
> Sent: Friday, March 10, 2023 10:16 AM
> To: Tan, Dun <dun.tan@intel.com>; devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> <zhiguang.liu@intel.com>
> Subject: 回复: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId'
> in MpWakeupStructure
>
> Dun:
> Is there any code impact with this change?
>
> Thanks
> Liming
> > -----邮件原件-----
> > 发件人: Dun Tan <dun.tan@intel.com>
> > 发送时间: 2023年3月9日 11:40
> > 收件人: devel@edk2.groups.io
> > 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao
> > <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>
> > 主题: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in
> > MpWakeupStructure
> >
> > modify the wrong 'AcpiId' to 'ApicId' of MpWakeupStructure
> > defination in Acpi64.h.
> >
> > Signed-off-by: Dun Tan <dun.tan@intel.com>
> > Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
> > ---
> > MdePkg/Include/IndustryStandard/Acpi64.h | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h
> > b/MdePkg/Include/IndustryStandard/Acpi64.h
> > index fe5ebfac2b..bfd022b6b6 100644
> > --- a/MdePkg/Include/IndustryStandard/Acpi64.h
> > +++ b/MdePkg/Include/IndustryStandard/Acpi64.h
> > @@ -607,7 +607,7 @@ typedef struct { typedef struct {
> > UINT16 Command;
> > UINT16 Reserved;
> > - UINT32 AcpiId;
> > + UINT32 ApicId;
> > UINT64 WakeupVector;
> > UINT8 ReservedForOs[2032];
> > UINT8 ReservedForFirmware[2048];
> > --
> > 2.31.1.windows.1
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-03-24 8:52 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-09 3:40 [Patch V3 0/2] Modify defination for MpWakeupStructure duntan
2023-03-09 3:40 ` [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure duntan
2023-03-10 2:15 ` 回复: " gaoliming
2023-03-10 6:17 ` duntan
2023-03-23 1:16 ` 回复: " gaoliming
2023-03-24 8:52 ` [edk2-devel] " duntan
2023-03-09 3:40 ` [Patch V3 2/2] MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version duntan
2023-03-09 7:05 ` [edk2-devel] [Patch V3 0/2] Modify defination for MpWakeupStructure Ni, Ray
[not found] ` <174AA33E822F73AE.24021@groups.io>
2023-03-23 3:06 ` [edk2-devel] [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure duntan
[not found] ` <174AA33F258FCD3B.23432@groups.io>
2023-03-23 3:06 ` [edk2-devel] [Patch V3 2/2] MdePkg: Add define for MultiprocessorWakeupMailboxStructure Version duntan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox