Skip to content

Commit c4a3e94

Browse files
Pu Wensuryasaimadhu
authored andcommitted
EDAC, amd64: Add Hygon Dhyana support
Add support for Hygon Dhyana CPU to EDAC. Signed-off-by: Pu Wen <puwen@hygon.cn> Signed-off-by: Borislav Petkov <bp@suse.de> Cc: mchehab@kernel.org Cc: tglx@linutronix.de Cc: mingo@redhat.com Cc: hpa@zytor.com Cc: thomas.lendacky@amd.com Cc: linux-edac@vger.kernel.org Link: https://lkml.kernel.org/r/9d71061301177822bc55b3bfd44f91057458d886.1537533369.git.puwen@hygon.cn
1 parent d913e89 commit c4a3e94

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

drivers/edac/amd64_edac.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static int __set_scrub_rate(struct amd64_pvt *pvt, u32 new_bw, u32 min_rate)
211211

212212
scrubval = scrubrates[i].scrubval;
213213

214-
if (pvt->fam == 0x17) {
214+
if (pvt->fam == 0x17 || pvt->fam == 0x18) {
215215
__f17h_set_scrubval(pvt, scrubval);
216216
} else if (pvt->fam == 0x15 && pvt->model == 0x60) {
217217
f15h_select_dct(pvt, 0);
@@ -264,6 +264,7 @@ static int get_scrub_rate(struct mem_ctl_info *mci)
264264
break;
265265

266266
case 0x17:
267+
case 0x18:
267268
amd64_read_pci_cfg(pvt->F6, F17H_SCR_BASE_ADDR, &scrubval);
268269
if (scrubval & BIT(0)) {
269270
amd64_read_pci_cfg(pvt->F6, F17H_SCR_LIMIT_ADDR, &scrubval);
@@ -1044,6 +1045,7 @@ static void determine_memory_type(struct amd64_pvt *pvt)
10441045
goto ddr3;
10451046

10461047
case 0x17:
1048+
case 0x18:
10471049
if ((pvt->umc[0].dimm_cfg | pvt->umc[1].dimm_cfg) & BIT(5))
10481050
pvt->dram_type = MEM_LRDDR4;
10491051
else if ((pvt->umc[0].dimm_cfg | pvt->umc[1].dimm_cfg) & BIT(4))
@@ -3202,8 +3204,13 @@ static struct amd64_family_type *per_family_init(struct amd64_pvt *pvt)
32023204
pvt->ops = &family_types[F17_M10H_CPUS].ops;
32033205
break;
32043206
}
3207+
/* fall through */
3208+
case 0x18:
32053209
fam_type = &family_types[F17_CPUS];
32063210
pvt->ops = &family_types[F17_CPUS].ops;
3211+
3212+
if (pvt->fam == 0x18)
3213+
family_types[F17_CPUS].ctl_name = "F18h";
32073214
break;
32083215

32093216
default:
@@ -3442,6 +3449,7 @@ static const struct x86_cpu_id amd64_cpuids[] = {
34423449
{ X86_VENDOR_AMD, 0x15, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
34433450
{ X86_VENDOR_AMD, 0x16, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
34443451
{ X86_VENDOR_AMD, 0x17, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3452+
{ X86_VENDOR_HYGON, 0x18, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
34453453
{ }
34463454
};
34473455
MODULE_DEVICE_TABLE(x86cpu, amd64_cpuids);

drivers/edac/mce_amd.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,8 @@ static int __init mce_amd_init(void)
10591059
{
10601060
struct cpuinfo_x86 *c = &boot_cpu_data;
10611061

1062-
if (c->x86_vendor != X86_VENDOR_AMD)
1062+
if (c->x86_vendor != X86_VENDOR_AMD &&
1063+
c->x86_vendor != X86_VENDOR_HYGON)
10631064
return -ENODEV;
10641065

10651066
fam_ops = kzalloc(sizeof(struct amd_decoder_ops), GFP_KERNEL);
@@ -1113,6 +1114,7 @@ static int __init mce_amd_init(void)
11131114
break;
11141115

11151116
case 0x17:
1117+
case 0x18:
11161118
xec_mask = 0x3f;
11171119
if (!boot_cpu_has(X86_FEATURE_SMCA)) {
11181120
printk(KERN_WARNING "Decoding supported only on Scalable MCA processors.\n");

0 commit comments

Comments
 (0)