Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 162791
b: refs/heads/master
c: 0672453
h: refs/heads/master
i:
  162789: 6ce5d78
  162787: 5001b7a
  162783: 1620c42
v: v3
  • Loading branch information
Borislav Petkov committed Sep 16, 2009
1 parent 075324f commit 81498d7
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 22 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 57a30854c89f862eeada4cce822f3a87bc006c95
refs/heads/master: 06724535f8fa26e78238bf8adfc9c81650a665f7
66 changes: 45 additions & 21 deletions trunk/drivers/edac/amd64_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -2741,30 +2741,53 @@ static void amd64_restore_ecc_error_reporting(struct amd64_pvt *pvt)
wrmsr_on_cpus(cpumask, K8_MSR_MCGCTL, msrs);
}

static void check_mcg_ctl(void *ret)
/* get all cores on this DCT */
static void get_cpus_on_this_dct_cpumask(cpumask_t *mask, int nid)
{
u64 msr_val = 0;
u8 nbe;
int cpu;

rdmsrl(MSR_IA32_MCG_CTL, msr_val);
nbe = msr_val & K8_MSR_MCGCTL_NBE;

debugf0("core: %u, MCG_CTL: 0x%llx, NB MSR is %s\n",
raw_smp_processor_id(), msr_val,
(nbe ? "enabled" : "disabled"));

if (!nbe)
*(int *)ret = 0;
for_each_online_cpu(cpu)
if (amd_get_nb_id(cpu) == nid)
cpumask_set_cpu(cpu, mask);
}

/* check MCG_CTL on all the cpus on this node */
static int mcg_ctl_enabled_on_node(const struct cpumask *mask)
static bool amd64_nb_mce_bank_enabled_on_node(int nid)
{
int ret = 1;
preempt_disable();
smp_call_function_many(mask, check_mcg_ctl, &ret, 1);
preempt_enable();
cpumask_t mask;
struct msr *msrs;
int cpu, nbe, idx = 0;
bool ret = false;

cpumask_clear(&mask);

get_cpus_on_this_dct_cpumask(&mask, nid);

msrs = kzalloc(sizeof(struct msr) * cpumask_weight(&mask), GFP_KERNEL);
if (!msrs) {
amd64_printk(KERN_WARNING, "%s: error allocating msrs\n",
__func__);
return false;
}

rdmsr_on_cpus(&mask, MSR_IA32_MCG_CTL, msrs);

for_each_cpu(cpu, &mask) {
nbe = msrs[idx].l & K8_MSR_MCGCTL_NBE;

debugf0("core: %u, MCG_CTL: 0x%llx, NB MSR is %s\n",
cpu, msrs[idx].q,
(nbe ? "enabled" : "disabled"));

if (!nbe)
goto out;

idx++;
}
ret = true;

out:
kfree(msrs);
return ret;
}

Expand All @@ -2783,7 +2806,8 @@ static int amd64_check_ecc_enabled(struct amd64_pvt *pvt)
{
u32 value;
int err = 0;
u8 ecc_enabled = 0, mcg_ctl_en = 0;
u8 ecc_enabled = 0;
bool nb_mce_en = false;

err = pci_read_config_dword(pvt->misc_f3_ctl, K8_NBCFG, &value);
if (err)
Expand All @@ -2797,13 +2821,13 @@ static int amd64_check_ecc_enabled(struct amd64_pvt *pvt)
else
amd64_printk(KERN_INFO, "ECC is enabled by BIOS.\n");

mcg_ctl_en = mcg_ctl_enabled_on_node(cpumask_of_node(pvt->mc_node_id));
if (!mcg_ctl_en)
nb_mce_en = amd64_nb_mce_bank_enabled_on_node(pvt->mc_node_id);
if (!nb_mce_en)
amd64_printk(KERN_WARNING, "NB MCE bank disabled, set MSR "
"0x%08x[4] on node %d to enable.\n",
MSR_IA32_MCG_CTL, pvt->mc_node_id);

if (!ecc_enabled || !mcg_ctl_en) {
if (!ecc_enabled || !nb_mce_en) {
if (!ecc_enable_override) {
amd64_printk(KERN_WARNING, "%s", ecc_warning);
return -ENODEV;
Expand Down

0 comments on commit 81498d7

Please sign in to comment.