Re: [edk2-devel] [PATCH 1/1] ArmPkg/ProcessorSubClassDxe: Fix the format of ProcessorId

2021-09-16 Thread Leif Lindholm
On Thu, Sep 16, 2021 at 04:45:29 -0600, Rebecca Cran wrote: > Reviewed-by: Rebecca Cran > > > -- > > Rebecca Cran > > > On 9/15/21 7:55 AM, Nhi Pham wrote: > > According to SMBIOS 3.4, section 7.5.3.3 ARM64-class CPUs, if > > SMCCC_ARCH_SOC_ID is supported, the first DWORD is the JEP-106 code

Re: [edk2-devel] [PATCH 1/1] ArmPkg/ProcessorSubClassDxe: Fix the format of ProcessorId

2021-09-16 Thread Rebecca Cran
Reviewed-by: Rebecca Cran -- Rebecca Cran On 9/15/21 7:55 AM, Nhi Pham wrote: According to SMBIOS 3.4, section 7.5.3.3 ARM64-class CPUs, if SMCCC_ARCH_SOC_ID is supported, the first DWORD is the JEP-106 code and the second DWORD is the SoC revision value. But in the current implementation,

[edk2-devel] [PATCH 1/1] ArmPkg/ProcessorSubClassDxe: Fix the format of ProcessorId

2021-09-15 Thread Nhi Pham via groups.io
According to SMBIOS 3.4, section 7.5.3.3 ARM64-class CPUs, if SMCCC_ARCH_SOC_ID is supported, the first DWORD is the JEP-106 code and the second DWORD is the SoC revision value. But in the current implementation, they are set in reverse. This patch is to correct it. Cc: Leif Lindholm Cc: Ard Bies