* UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib @ 2020-06-10 14:17 Kirkendall, Garrett 2020-06-11 1:11 ` Ni, Ray 0 siblings, 1 reply; 7+ messages in thread From: Kirkendall, Garrett @ 2020-06-10 14:17 UTC (permalink / raw) To: devel@edk2.groups.io; +Cc: Eric Dong, Ni, Ray, Laszlo Ersek [AMD Public Use] There are currently three instances of StandardSignatureIsAuthenticAMD Function in the below locations. I need to propose another change that will require the same function in PiSmmCpuDxeSmm. I would like to see this function move to a single "LibraryClass" location. I think no one knew where to propose the function, so we ended up with three instances so far. The best place I can find would be UefiCpuPkg/BaseUefiCpuLib/. Thoughts? Is there a better function name such that a similar Intel identifier function could be created when needed in the future? I'm thinking this will be 3 patches 1. Add StandardSignatureIsAuthenticAMD to BaseUefiCpuLib 2. Move current instances to Library function 3. Propose code change in PiSmmCpuDxeSmm UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.c: StandardSignatureIsAuthenticAMD ( UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.c: StandardSignatureIsAuthenticAMD ( UefiCpuPkg/Library/MpInitLib/MpLib.c: StandardSignatureIsAuthenticAMD ( GARRETT KIRKENDALL SMTS Firmware Engineer | CTE 7171 Southwest Parkway, Austin, TX 78735 USA AMD facebook | amd.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib 2020-06-10 14:17 UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib Kirkendall, Garrett @ 2020-06-11 1:11 ` Ni, Ray 2020-06-11 1:29 ` Dong, Eric 0 siblings, 1 reply; 7+ messages in thread From: Ni, Ray @ 2020-06-11 1:11 UTC (permalink / raw) To: devel@edk2.groups.io, garrett.kirkendall@amd.com; +Cc: Dong, Eric, Laszlo Ersek Since all platform DSCs have already listed UefiCpuLib.inf so this change doesn't impact platform DSC. I don't see an issue with this change. Eric, What's your opinion? Thanks, Ray > -----Original Message----- > From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Kirkendall, Garrett > Sent: Wednesday, June 10, 2020 10:18 PM > To: devel@edk2.groups.io > Cc: Dong, Eric <eric.dong@intel.com>; Ni, Ray <ray.ni@intel.com>; Laszlo Ersek <lersek@redhat.com> > Subject: [edk2-devel] UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib > > [AMD Public Use] > > There are currently three instances of StandardSignatureIsAuthenticAMD Function in the below locations. I need to > propose another change that will require the same function in PiSmmCpuDxeSmm. I would like to see this function move > to a single "LibraryClass" location. I think no one knew where to propose the function, so we ended up with three > instances so far. The best place I can find would be UefiCpuPkg/BaseUefiCpuLib/. Thoughts? Is there a better function > name such that a similar Intel identifier function could be created when needed in the future? > > I'm thinking this will be 3 patches > 1. Add StandardSignatureIsAuthenticAMD to BaseUefiCpuLib > 2. Move current instances to Library function > 3. Propose code change in PiSmmCpuDxeSmm > > UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/MpInitLib/MpLib.c: StandardSignatureIsAuthenticAMD ( > > GARRETT KIRKENDALL > SMTS Firmware Engineer | CTE > 7171 Southwest Parkway, Austin, TX 78735 USA > AMD facebook | amd.com > > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib 2020-06-11 1:11 ` Ni, Ray @ 2020-06-11 1:29 ` Dong, Eric 2020-06-11 4:56 ` Ni, Ray 0 siblings, 1 reply; 7+ messages in thread From: Dong, Eric @ 2020-06-11 1:29 UTC (permalink / raw) To: Ni, Ray, devel@edk2.groups.io, garrett.kirkendall@amd.com; +Cc: Laszlo Ersek [-- Attachment #1: Type: text/plain, Size: 2631 bytes --] This proposal is ok to me. I'm not sure whether it can be added to MdePkg, just like add to CpuLib. I found all the definitions and functions used in StandardSignatureIsAuthenticAMD function defined in MdePkg. If it can be added to MdePkg, all code base can use this function, if it been added to UefiCpuPkg, other core packages may can't use it. Thanks, Eric From: Ni, Ray <ray.ni@intel.com> Sent: Thursday, June 11, 2020 9:12 AM To: devel@edk2.groups.io; garrett.kirkendall@amd.com Cc: Dong, Eric <eric.dong@intel.com>; Laszlo Ersek <lersek@redhat.com> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib Since all platform DSCs have already listed UefiCpuLib.inf so this change doesn't impact platform DSC. I don't see an issue with this change. Eric, What's your opinion? Thanks, Ray > -----Original Message----- > From: devel@edk2.groups.io<mailto:devel@edk2.groups.io> <devel@edk2.groups.io<mailto:devel@edk2.groups.io>> On Behalf Of Kirkendall, Garrett > Sent: Wednesday, June 10, 2020 10:18 PM > To: devel@edk2.groups.io<mailto:devel@edk2.groups.io> > Cc: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>>; Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>>; Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> > Subject: [edk2-devel] UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib > > [AMD Public Use] > > There are currently three instances of StandardSignatureIsAuthenticAMD Function in the below locations. I need to > propose another change that will require the same function in PiSmmCpuDxeSmm. I would like to see this function move > to a single "LibraryClass" location. I think no one knew where to propose the function, so we ended up with three > instances so far. The best place I can find would be UefiCpuPkg/BaseUefiCpuLib/. Thoughts? Is there a better function > name such that a similar Intel identifier function could be created when needed in the future? > > I'm thinking this will be 3 patches > 1. Add StandardSignatureIsAuthenticAMD to BaseUefiCpuLib > 2. Move current instances to Library function > 3. Propose code change in PiSmmCpuDxeSmm > > UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/MpInitLib/MpLib.c: StandardSignatureIsAuthenticAMD ( > > GARRETT KIRKENDALL > SMTS Firmware Engineer | CTE > 7171 Southwest Parkway, Austin, TX 78735 USA > AMD facebook | amd.com > > [-- Attachment #2: Type: text/html, Size: 8017 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib 2020-06-11 1:29 ` Dong, Eric @ 2020-06-11 4:56 ` Ni, Ray 2020-06-11 7:07 ` Dong, Eric 0 siblings, 1 reply; 7+ messages in thread From: Ni, Ray @ 2020-06-11 4:56 UTC (permalink / raw) To: Dong, Eric, devel@edk2.groups.io, garrett.kirkendall@amd.com; +Cc: Laszlo Ersek [-- Attachment #1: Type: text/plain, Size: 3184 bytes --] UefiCpuLib is in UefiCpuPkg. All consumers are in UefiCpuPkg. I think we can keep its location unchanged. From: Dong, Eric <eric.dong@intel.com> Sent: Thursday, June 11, 2020 9:29 AM To: Ni, Ray <ray.ni@intel.com>; devel@edk2.groups.io; garrett.kirkendall@amd.com Cc: Laszlo Ersek <lersek@redhat.com> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib This proposal is ok to me. I'm not sure whether it can be added to MdePkg, just like add to CpuLib. I found all the definitions and functions used in StandardSignatureIsAuthenticAMD function defined in MdePkg. If it can be added to MdePkg, all code base can use this function, if it been added to UefiCpuPkg, other core packages may can't use it. Thanks, Eric From: Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>> Sent: Thursday, June 11, 2020 9:12 AM To: devel@edk2.groups.io<mailto:devel@edk2.groups.io>; garrett.kirkendall@amd.com<mailto:garrett.kirkendall@amd.com> Cc: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>>; Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib Since all platform DSCs have already listed UefiCpuLib.inf so this change doesn't impact platform DSC. I don't see an issue with this change. Eric, What's your opinion? Thanks, Ray > -----Original Message----- > From: devel@edk2.groups.io<mailto:devel@edk2.groups.io> <devel@edk2.groups.io<mailto:devel@edk2.groups.io>> On Behalf Of Kirkendall, Garrett > Sent: Wednesday, June 10, 2020 10:18 PM > To: devel@edk2.groups.io<mailto:devel@edk2.groups.io> > Cc: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>>; Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>>; Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> > Subject: [edk2-devel] UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib > > [AMD Public Use] > > There are currently three instances of StandardSignatureIsAuthenticAMD Function in the below locations. I need to > propose another change that will require the same function in PiSmmCpuDxeSmm. I would like to see this function move > to a single "LibraryClass" location. I think no one knew where to propose the function, so we ended up with three > instances so far. The best place I can find would be UefiCpuPkg/BaseUefiCpuLib/. Thoughts? Is there a better function > name such that a similar Intel identifier function could be created when needed in the future? > > I'm thinking this will be 3 patches > 1. Add StandardSignatureIsAuthenticAMD to BaseUefiCpuLib > 2. Move current instances to Library function > 3. Propose code change in PiSmmCpuDxeSmm > > UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/MpInitLib/MpLib.c: StandardSignatureIsAuthenticAMD ( > > GARRETT KIRKENDALL > SMTS Firmware Engineer | CTE > 7171 Southwest Parkway, Austin, TX 78735 USA > AMD facebook | amd.com > > [-- Attachment #2: Type: text/html, Size: 9197 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib 2020-06-11 4:56 ` Ni, Ray @ 2020-06-11 7:07 ` Dong, Eric 2020-06-11 14:16 ` Laszlo Ersek 2020-06-12 7:59 ` Ni, Ray 0 siblings, 2 replies; 7+ messages in thread From: Dong, Eric @ 2020-06-11 7:07 UTC (permalink / raw) To: Ni, Ray, devel@edk2.groups.io, garrett.kirkendall@amd.com; +Cc: Laszlo Ersek [-- Attachment #1: Type: text/plain, Size: 3813 bytes --] I mean there is already a BaseCpuLib in MdePkg. Is it possible to add it to there? If no usage outside of UefiCpuPkg, I'm ok to move this function to UefiCpuLib. Thanks, Eric From: Ni, Ray <ray.ni@intel.com> Sent: Thursday, June 11, 2020 12:56 PM To: Dong, Eric <eric.dong@intel.com>; devel@edk2.groups.io; garrett.kirkendall@amd.com Cc: Laszlo Ersek <lersek@redhat.com> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib UefiCpuLib is in UefiCpuPkg. All consumers are in UefiCpuPkg. I think we can keep its location unchanged. From: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>> Sent: Thursday, June 11, 2020 9:29 AM To: Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>>; devel@edk2.groups.io<mailto:devel@edk2.groups.io>; garrett.kirkendall@amd.com<mailto:garrett.kirkendall@amd.com> Cc: Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib This proposal is ok to me. I'm not sure whether it can be added to MdePkg, just like add to CpuLib. I found all the definitions and functions used in StandardSignatureIsAuthenticAMD function defined in MdePkg. If it can be added to MdePkg, all code base can use this function, if it been added to UefiCpuPkg, other core packages may can't use it. Thanks, Eric From: Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>> Sent: Thursday, June 11, 2020 9:12 AM To: devel@edk2.groups.io<mailto:devel@edk2.groups.io>; garrett.kirkendall@amd.com<mailto:garrett.kirkendall@amd.com> Cc: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>>; Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib Since all platform DSCs have already listed UefiCpuLib.inf so this change doesn't impact platform DSC. I don't see an issue with this change. Eric, What's your opinion? Thanks, Ray > -----Original Message----- > From: devel@edk2.groups.io<mailto:devel@edk2.groups.io> <devel@edk2.groups.io<mailto:devel@edk2.groups.io>> On Behalf Of Kirkendall, Garrett > Sent: Wednesday, June 10, 2020 10:18 PM > To: devel@edk2.groups.io<mailto:devel@edk2.groups.io> > Cc: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>>; Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>>; Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> > Subject: [edk2-devel] UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib > > [AMD Public Use] > > There are currently three instances of StandardSignatureIsAuthenticAMD Function in the below locations. I need to > propose another change that will require the same function in PiSmmCpuDxeSmm. I would like to see this function move > to a single "LibraryClass" location. I think no one knew where to propose the function, so we ended up with three > instances so far. The best place I can find would be UefiCpuPkg/BaseUefiCpuLib/. Thoughts? Is there a better function > name such that a similar Intel identifier function could be created when needed in the future? > > I'm thinking this will be 3 patches > 1. Add StandardSignatureIsAuthenticAMD to BaseUefiCpuLib > 2. Move current instances to Library function > 3. Propose code change in PiSmmCpuDxeSmm > > UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/MpInitLib/MpLib.c: StandardSignatureIsAuthenticAMD ( > > GARRETT KIRKENDALL > SMTS Firmware Engineer | CTE > 7171 Southwest Parkway, Austin, TX 78735 USA > AMD facebook | amd.com > > [-- Attachment #2: Type: text/html, Size: 10625 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib 2020-06-11 7:07 ` Dong, Eric @ 2020-06-11 14:16 ` Laszlo Ersek 2020-06-12 7:59 ` Ni, Ray 1 sibling, 0 replies; 7+ messages in thread From: Laszlo Ersek @ 2020-06-11 14:16 UTC (permalink / raw) To: Dong, Eric, Ni, Ray, devel@edk2.groups.io, garrett.kirkendall@amd.com On 06/11/20 09:07, Dong, Eric wrote: > I mean there is already a BaseCpuLib in MdePkg. Is it possible to add it to there? > > If no usage outside of UefiCpuPkg, I'm ok to move this function to UefiCpuLib. Sounds OK to me. Thanks Laszlo ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib 2020-06-11 7:07 ` Dong, Eric 2020-06-11 14:16 ` Laszlo Ersek @ 2020-06-12 7:59 ` Ni, Ray 1 sibling, 0 replies; 7+ messages in thread From: Ni, Ray @ 2020-06-12 7:59 UTC (permalink / raw) To: Dong, Eric, devel@edk2.groups.io, garrett.kirkendall@amd.com; +Cc: Laszlo Ersek [-- Attachment #1: Type: text/plain, Size: 4741 bytes --] Comments in BaseCpuLib tell that this library is separated from BaseLib due to IPF. The CPU Library provides services to flush CPU TLBs and place the CPU in a sleep state. The implementation of these services on Itanium processors requires the use of PAL Calls. PAL Calls require PEI and DXE specific mechanisms to look up PAL Entry Point. As a result, these services could not be defined in the Base Library. So I think we should avoid adding API to this library. From: Dong, Eric <eric.dong@intel.com> Sent: Thursday, June 11, 2020 3:07 PM To: Ni, Ray <ray.ni@intel.com>; devel@edk2.groups.io; garrett.kirkendall@amd.com Cc: Laszlo Ersek <lersek@redhat.com> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib I mean there is already a BaseCpuLib in MdePkg. Is it possible to add it to there? If no usage outside of UefiCpuPkg, I'm ok to move this function to UefiCpuLib. Thanks, Eric From: Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>> Sent: Thursday, June 11, 2020 12:56 PM To: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>>; devel@edk2.groups.io<mailto:devel@edk2.groups.io>; garrett.kirkendall@amd.com<mailto:garrett.kirkendall@amd.com> Cc: Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib UefiCpuLib is in UefiCpuPkg. All consumers are in UefiCpuPkg. I think we can keep its location unchanged. From: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>> Sent: Thursday, June 11, 2020 9:29 AM To: Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>>; devel@edk2.groups.io<mailto:devel@edk2.groups.io>; garrett.kirkendall@amd.com<mailto:garrett.kirkendall@amd.com> Cc: Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib This proposal is ok to me. I'm not sure whether it can be added to MdePkg, just like add to CpuLib. I found all the definitions and functions used in StandardSignatureIsAuthenticAMD function defined in MdePkg. If it can be added to MdePkg, all code base can use this function, if it been added to UefiCpuPkg, other core packages may can't use it. Thanks, Eric From: Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>> Sent: Thursday, June 11, 2020 9:12 AM To: devel@edk2.groups.io<mailto:devel@edk2.groups.io>; garrett.kirkendall@amd.com<mailto:garrett.kirkendall@amd.com> Cc: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>>; Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> Subject: RE: UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib Since all platform DSCs have already listed UefiCpuLib.inf so this change doesn't impact platform DSC. I don't see an issue with this change. Eric, What's your opinion? Thanks, Ray > -----Original Message----- > From: devel@edk2.groups.io<mailto:devel@edk2.groups.io> <devel@edk2.groups.io<mailto:devel@edk2.groups.io>> On Behalf Of Kirkendall, Garrett > Sent: Wednesday, June 10, 2020 10:18 PM > To: devel@edk2.groups.io<mailto:devel@edk2.groups.io> > Cc: Dong, Eric <eric.dong@intel.com<mailto:eric.dong@intel.com>>; Ni, Ray <ray.ni@intel.com<mailto:ray.ni@intel.com>>; Laszlo Ersek <lersek@redhat.com<mailto:lersek@redhat.com>> > Subject: [edk2-devel] UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib > > [AMD Public Use] > > There are currently three instances of StandardSignatureIsAuthenticAMD Function in the below locations. I need to > propose another change that will require the same function in PiSmmCpuDxeSmm. I would like to see this function move > to a single "LibraryClass" location. I think no one knew where to propose the function, so we ended up with three > instances so far. The best place I can find would be UefiCpuPkg/BaseUefiCpuLib/. Thoughts? Is there a better function > name such that a similar Intel identifier function could be created when needed in the future? > > I'm thinking this will be 3 patches > 1. Add StandardSignatureIsAuthenticAMD to BaseUefiCpuLib > 2. Move current instances to Library function > 3. Propose code change in PiSmmCpuDxeSmm > > UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.c: StandardSignatureIsAuthenticAMD ( > UefiCpuPkg/Library/MpInitLib/MpLib.c: StandardSignatureIsAuthenticAMD ( > > GARRETT KIRKENDALL > SMTS Firmware Engineer | CTE > 7171 Southwest Parkway, Austin, TX 78735 USA > AMD facebook | amd.com > > [-- Attachment #2: Type: text/html, Size: 13562 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-06-12 7:59 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-06-10 14:17 UefiCpuPkg: Discuss: Move StandardSignatureIsAuthenticAMD function to BaseUefiCpuLib Kirkendall, Garrett 2020-06-11 1:11 ` Ni, Ray 2020-06-11 1:29 ` Dong, Eric 2020-06-11 4:56 ` Ni, Ray 2020-06-11 7:07 ` Dong, Eric 2020-06-11 14:16 ` Laszlo Ersek 2020-06-12 7:59 ` Ni, Ray
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox