diff options
author | Anand Vaikar <a.vaikar2021@gmail.com> | 2024-06-17 10:46:17 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-06-18 13:08:00 +0000 |
commit | 6e8d0122ebac6d641304c522c5f467723a1e2468 (patch) | |
tree | 7a68bbf32ee17472dbd6133af4e960efe70237f7 /src/soc | |
parent | 3d523c4cd84bcf85b4908e8df7ce2b26332be88f (diff) |
soc/amd/cezanne: Add AMD Renoir SOC support
Add AMD SOC Family 17h Renoir CPUIDs per PPR doc #55922
Renoir is similar to Cezanne with only differences in CCX count.
Cezanne has one Zen3 CCX with 8 cores per CCX compared to
the two Zen2 CCX with 4 cores per CCX. Hence, coreboot side
Cezanne SOC code should be mostly compatible with Renoir and
can be leveraged.
Change-Id: I6b43eb782527351c79b835d094a5b61103cd6642
Signed-off-by: Anand Vaikar <a.vaikar2021@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83099
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/amd/cezanne/cpu.c | 1 | ||||
-rw-r--r-- | src/soc/amd/cezanne/include/soc/cpu.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/amd/cezanne/cpu.c b/src/soc/amd/cezanne/cpu.c index 2c3100fc81..4f39aefc75 100644 --- a/src/soc/amd/cezanne/cpu.c +++ b/src/soc/amd/cezanne/cpu.c @@ -24,6 +24,7 @@ static struct device_operations cpu_dev_ops = { static struct cpu_device_id cpu_table[] = { { X86_VENDOR_AMD, CEZANNE_A0_CPUID, CPUID_ALL_STEPPINGS_MASK }, + { X86_VENDOR_AMD, RENOIR_A1_CPUID, CPUID_ALL_STEPPINGS_MASK}, CPU_TABLE_END }; diff --git a/src/soc/amd/cezanne/include/soc/cpu.h b/src/soc/amd/cezanne/include/soc/cpu.h index 0239e19fe9..1506420ad4 100644 --- a/src/soc/amd/cezanne/include/soc/cpu.h +++ b/src/soc/amd/cezanne/include/soc/cpu.h @@ -4,6 +4,7 @@ #define AMD_CEZANNE_CPU_H #define CEZANNE_A0_CPUID CPUID_FROM_FMS(0x19, 0x50, 0) +#define RENOIR_A1_CPUID CPUID_FROM_FMS(0X17, 0X60, 1) #define CEZANNE_VBIOS_VID_DID 0x10021638 #define BARCELO_VBIOS_VID_DID 0x100215e7 |