soc/amd: use CPUID_FROM_FMS macro instead of magic numbers
Port over the remaining AMD SoCs to use CPUID_FROM_FMS. The Glinda CPUID still needs to be updated to the actual CPUID, but for now just change it to use CPUID_FROM_FMS. TEST=Resulting image of timeless build for Gardenia (Stoneyridge), Majolica (Cezanne), Chausie (Mendocino), Mayan (Phoenix) and Birman (Glinda) don't change. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ia508f857d06f3c15e3ac9f813302471348ce3d89 Reviewed-on: https://review.coreboot.org/c/coreboot/+/72862 Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
8f705b9fad
commit
3ecf377e30
5 changed files with 7 additions and 7 deletions
|
@ -3,7 +3,7 @@
|
|||
#ifndef AMD_CEZANNE_CPU_H
|
||||
#define AMD_CEZANNE_CPU_H
|
||||
|
||||
#define CEZANNE_A0_CPUID 0x00a50f00
|
||||
#define CEZANNE_A0_CPUID CPUID_FROM_FMS(0x19, 0x50, 0)
|
||||
|
||||
#define CEZANNE_VBIOS_VID_DID 0x10021638
|
||||
#define BARCELO_VBIOS_VID_DID 0x100215e7
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
#ifndef AMD_GLINDA_CPU_H
|
||||
#define AMD_GLINDA_CPU_H
|
||||
|
||||
#define GLINDA_A0_CPUID 0x008a0f00 /* TODO: Update for Glinda */
|
||||
#define GLINDA_A0_CPUID CPUID_FROM_FMS(0x17, 0xa0, 0) /* TODO: Update for Glinda */
|
||||
|
||||
#endif /* AMD_GLINDA_CPU_H */
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
#ifndef AMD_MENDOCINO_CPU_H
|
||||
#define AMD_MENDOCINO_CPU_H
|
||||
|
||||
#define MENDOCINO_A0_CPUID 0x008a0f00
|
||||
#define MENDOCINO_A0_CPUID CPUID_FROM_FMS(0x17, 0xa0, 0)
|
||||
|
||||
#endif /* AMD_MENDOCINO_CPU_H */
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#ifndef AMD_PHOENIX_CPU_H
|
||||
#define AMD_PHOENIX_CPU_H
|
||||
|
||||
#define PHOENIX_A0_CPUID 0x00a70f40
|
||||
#define PHOENIX2_A0_CPUID 0x00a70f80
|
||||
#define PHOENIX_A0_CPUID CPUID_FROM_FMS(0x19, 0x74, 0)
|
||||
#define PHOENIX2_A0_CPUID CPUID_FROM_FMS(0x19, 0x78, 0)
|
||||
|
||||
#endif /* AMD_PHOENIX_CPU_H */
|
||||
|
|
|
@ -60,8 +60,8 @@ static struct device_operations cpu_dev_ops = {
|
|||
};
|
||||
|
||||
static struct cpu_device_id cpu_table[] = {
|
||||
{ X86_VENDOR_AMD, 0x660f00, CPUID_ALL_STEPPINGS_MASK },
|
||||
{ X86_VENDOR_AMD, 0x670f00, CPUID_ALL_STEPPINGS_MASK },
|
||||
{ X86_VENDOR_AMD, CPUID_FROM_FMS(0x15, 0x60, 0), CPUID_ALL_STEPPINGS_MASK },
|
||||
{ X86_VENDOR_AMD, CPUID_FROM_FMS(0x15, 0x70, 0), CPUID_ALL_STEPPINGS_MASK },
|
||||
{ 0, 0, 0 },
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue