2 * GHES/EDAC Linux driver
4 * This file may be distributed under the terms of the GNU General Public
7 * Copyright (c) 2013 by Mauro Carvalho Chehab
9 * Red Hat Inc. http://www.redhat.com
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <acpi/ghes.h>
15 #include <linux/edac.h>
16 #include <linux/dmi.h>
17 #include "edac_core.h"
18 #include <ras/ras_event.h>
20 #define GHES_EDAC_REVISION " Ver: 1.0.0"
22 struct ghes_edac_pvt
{
23 struct list_head list
;
25 struct mem_ctl_info
*mci
;
27 /* Buffers for the error handling routine */
28 char detail_location
[240];
29 char other_detail
[160];
33 static LIST_HEAD(ghes_reglist
);
34 static DEFINE_MUTEX(ghes_edac_lock
);
35 static int ghes_edac_mc_num
;
38 /* Memory Device - Type 17 of SMBIOS spec */
39 struct memdev_dmi_entry
{
43 u16 phys_mem_array_handle
;
44 u16 mem_err_info_handle
;
61 u16 conf_mem_clk_speed
;
62 } __attribute__((__packed__
));
64 struct ghes_edac_dimm_fill
{
65 struct mem_ctl_info
*mci
;
69 char *memory_type
[] = {
70 [MEM_EMPTY
] = "EMPTY",
71 [MEM_RESERVED
] = "RESERVED",
72 [MEM_UNKNOWN
] = "UNKNOWN",
82 [MEM_FB_DDR2
] = "FB_DDR2",
83 [MEM_RDDR2
] = "RDDR2",
86 [MEM_RDDR3
] = "RDDR3",
89 static void ghes_edac_count_dimms(const struct dmi_header
*dh
, void *arg
)
93 if (dh
->type
== DMI_ENTRY_MEM_DEVICE
)
97 static void ghes_edac_dmidecode(const struct dmi_header
*dh
, void *arg
)
99 struct ghes_edac_dimm_fill
*dimm_fill
= arg
;
100 struct mem_ctl_info
*mci
= dimm_fill
->mci
;
102 if (dh
->type
== DMI_ENTRY_MEM_DEVICE
) {
103 struct memdev_dmi_entry
*entry
= (struct memdev_dmi_entry
*)dh
;
104 struct dimm_info
*dimm
= EDAC_DIMM_PTR(mci
->layers
, mci
->dimms
,
106 dimm_fill
->count
, 0, 0);
108 if (entry
->size
== 0xffff) {
109 pr_info("Can't get DIMM%i size\n",
111 dimm
->nr_pages
= MiB_TO_PAGES(32);/* Unknown */
112 } else if (entry
->size
== 0x7fff) {
113 dimm
->nr_pages
= MiB_TO_PAGES(entry
->extended_size
);
115 if (entry
->size
& 1 << 15)
116 dimm
->nr_pages
= MiB_TO_PAGES((entry
->size
&
119 dimm
->nr_pages
= MiB_TO_PAGES(entry
->size
);
122 switch (entry
->memory_type
) {
124 if (entry
->type_detail
& 1 << 13)
125 dimm
->mtype
= MEM_RDDR
;
127 dimm
->mtype
= MEM_DDR
;
130 if (entry
->type_detail
& 1 << 13)
131 dimm
->mtype
= MEM_RDDR2
;
133 dimm
->mtype
= MEM_DDR2
;
136 dimm
->mtype
= MEM_FB_DDR2
;
139 if (entry
->type_detail
& 1 << 13)
140 dimm
->mtype
= MEM_RDDR3
;
142 dimm
->mtype
= MEM_DDR3
;
145 if (entry
->type_detail
& 1 << 6)
146 dimm
->mtype
= MEM_RMBS
;
147 else if ((entry
->type_detail
& ((1 << 7) | (1 << 13)))
148 == ((1 << 7) | (1 << 13)))
149 dimm
->mtype
= MEM_RDR
;
150 else if (entry
->type_detail
& 1 << 7)
151 dimm
->mtype
= MEM_SDR
;
152 else if (entry
->type_detail
& 1 << 9)
153 dimm
->mtype
= MEM_EDO
;
155 dimm
->mtype
= MEM_UNKNOWN
;
159 * Actually, we can only detect if the memory has bits for
162 if (entry
->total_width
== entry
->data_width
)
163 dimm
->edac_mode
= EDAC_NONE
;
165 dimm
->edac_mode
= EDAC_SECDED
;
167 dimm
->dtype
= DEV_UNKNOWN
;
168 dimm
->grain
= 128; /* Likely, worse case */
171 * FIXME: It shouldn't be hard to also fill the DIMM labels
174 if (dimm
->nr_pages
) {
175 edac_dbg(1, "DIMM%i: %s size = %d MB%s\n",
176 dimm_fill
->count
, memory_type
[dimm
->mtype
],
177 PAGES_TO_MiB(dimm
->nr_pages
),
178 (dimm
->edac_mode
!= EDAC_NONE
) ? "(ECC)" : "");
179 edac_dbg(2, "\ttype %d, detail 0x%02x, width %d(total %d)\n",
180 entry
->memory_type
, entry
->type_detail
,
181 entry
->total_width
, entry
->data_width
);
188 void ghes_edac_report_mem_error(struct ghes
*ghes
, int sev
,
189 struct cper_sec_mem_err
*mem_err
)
191 enum hw_event_mc_err_type type
;
192 struct edac_raw_error_desc
*e
;
193 struct mem_ctl_info
*mci
;
194 struct ghes_edac_pvt
*pvt
= NULL
;
198 list_for_each_entry(pvt
, &ghes_reglist
, list
) {
199 if (ghes
== pvt
->ghes
)
203 pr_err("Internal error: Can't find EDAC structure\n");
207 e
= &mci
->error_desc
;
209 /* Cleans the error report buffer */
210 memset(e
, 0, sizeof (*e
));
212 strcpy(e
->label
, "unknown label");
214 e
->other_detail
= pvt
->other_detail
;
218 *pvt
->other_detail
= '\0';
222 case GHES_SEV_CORRECTED
:
223 type
= HW_EVENT_ERR_CORRECTED
;
225 case GHES_SEV_RECOVERABLE
:
226 type
= HW_EVENT_ERR_UNCORRECTED
;
229 type
= HW_EVENT_ERR_FATAL
;
233 type
= HW_EVENT_ERR_INFO
;
236 edac_dbg(1, "error validation_bits: 0x%08llx\n",
237 (long long)mem_err
->validation_bits
);
239 /* Error type, mapped on e->msg */
240 if (mem_err
->validation_bits
& CPER_MEM_VALID_ERROR_TYPE
) {
242 switch (mem_err
->error_type
) {
244 p
+= sprintf(p
, "Unknown");
247 p
+= sprintf(p
, "No error");
250 p
+= sprintf(p
, "Single-bit ECC");
253 p
+= sprintf(p
, "Multi-bit ECC");
256 p
+= sprintf(p
, "Single-symbol ChipKill ECC");
259 p
+= sprintf(p
, "Multi-symbol ChipKill ECC");
262 p
+= sprintf(p
, "Master abort");
265 p
+= sprintf(p
, "Target abort");
268 p
+= sprintf(p
, "Parity Error");
271 p
+= sprintf(p
, "Watchdog timeout");
274 p
+= sprintf(p
, "Invalid address");
277 p
+= sprintf(p
, "Mirror Broken");
280 p
+= sprintf(p
, "Memory Sparing");
283 p
+= sprintf(p
, "Scrub corrected error");
286 p
+= sprintf(p
, "Scrub uncorrected error");
289 p
+= sprintf(p
, "Physical Memory Map-out event");
292 p
+= sprintf(p
, "reserved error (%d)",
293 mem_err
->error_type
);
296 strcpy(pvt
->msg
, "unknown error");
300 if (mem_err
->validation_bits
& CPER_MEM_VALID_PA
) {
301 e
->page_frame_number
= mem_err
->physical_addr
>> PAGE_SHIFT
;
302 e
->offset_in_page
= mem_err
->physical_addr
& ~PAGE_MASK
;
306 if (mem_err
->validation_bits
& CPER_MEM_VALID_PA_MASK
)
307 e
->grain
= ~(mem_err
->physical_addr_mask
& ~PAGE_MASK
);
309 /* Memory error location, mapped on e->location */
311 if (mem_err
->validation_bits
& CPER_MEM_VALID_NODE
)
312 p
+= sprintf(p
, "node:%d ", mem_err
->node
);
313 if (mem_err
->validation_bits
& CPER_MEM_VALID_CARD
)
314 p
+= sprintf(p
, "card:%d ", mem_err
->card
);
315 if (mem_err
->validation_bits
& CPER_MEM_VALID_MODULE
)
316 p
+= sprintf(p
, "module:%d ", mem_err
->module
);
317 if (mem_err
->validation_bits
& CPER_MEM_VALID_RANK_NUMBER
)
318 p
+= sprintf(p
, "rank:%d ", mem_err
->rank
);
319 if (mem_err
->validation_bits
& CPER_MEM_VALID_BANK
)
320 p
+= sprintf(p
, "bank:%d ", mem_err
->bank
);
321 if (mem_err
->validation_bits
& CPER_MEM_VALID_ROW
)
322 p
+= sprintf(p
, "row:%d ", mem_err
->row
);
323 if (mem_err
->validation_bits
& CPER_MEM_VALID_COLUMN
)
324 p
+= sprintf(p
, "col:%d ", mem_err
->column
);
325 if (mem_err
->validation_bits
& CPER_MEM_VALID_BIT_POSITION
)
326 p
+= sprintf(p
, "bit_pos:%d ", mem_err
->bit_pos
);
327 if (mem_err
->validation_bits
& CPER_MEM_VALID_MODULE_HANDLE
) {
328 const char *bank
= NULL
, *device
= NULL
;
329 dmi_memdev_name(mem_err
->mem_dev_handle
, &bank
, &device
);
330 if (bank
!= NULL
&& device
!= NULL
)
331 p
+= sprintf(p
, "DIMM location:%s %s ", bank
, device
);
333 p
+= sprintf(p
, "DIMM DMI handle: 0x%.4x ",
334 mem_err
->mem_dev_handle
);
339 /* All other fields are mapped on e->other_detail */
340 p
= pvt
->other_detail
;
341 if (mem_err
->validation_bits
& CPER_MEM_VALID_ERROR_STATUS
) {
342 u64 status
= mem_err
->error_status
;
344 p
+= sprintf(p
, "status(0x%016llx): ", (long long)status
);
345 switch ((status
>> 8) & 0xff) {
347 p
+= sprintf(p
, "Error detected internal to the component ");
350 p
+= sprintf(p
, "Error detected in the bus ");
353 p
+= sprintf(p
, "Storage error in DRAM memory ");
356 p
+= sprintf(p
, "Storage error in TLB ");
359 p
+= sprintf(p
, "Storage error in cache ");
362 p
+= sprintf(p
, "Error in one or more functional units ");
365 p
+= sprintf(p
, "component failed self test ");
368 p
+= sprintf(p
, "Overflow or undervalue of internal queue ");
371 p
+= sprintf(p
, "Virtual address not found on IO-TLB or IO-PDIR ");
374 p
+= sprintf(p
, "Improper access error ");
377 p
+= sprintf(p
, "Access to a memory address which is not mapped to any component ");
380 p
+= sprintf(p
, "Loss of Lockstep ");
383 p
+= sprintf(p
, "Response not associated with a request ");
386 p
+= sprintf(p
, "Bus parity error - must also set the A, C, or D Bits ");
389 p
+= sprintf(p
, "Detection of a PATH_ERROR ");
392 p
+= sprintf(p
, "Bus operation timeout ");
395 p
+= sprintf(p
, "A read was issued to data that has been poisoned ");
398 p
+= sprintf(p
, "reserved ");
402 if (mem_err
->validation_bits
& CPER_MEM_VALID_REQUESTOR_ID
)
403 p
+= sprintf(p
, "requestorID: 0x%016llx ",
404 (long long)mem_err
->requestor_id
);
405 if (mem_err
->validation_bits
& CPER_MEM_VALID_RESPONDER_ID
)
406 p
+= sprintf(p
, "responderID: 0x%016llx ",
407 (long long)mem_err
->responder_id
);
408 if (mem_err
->validation_bits
& CPER_MEM_VALID_TARGET_ID
)
409 p
+= sprintf(p
, "targetID: 0x%016llx ",
410 (long long)mem_err
->responder_id
);
411 if (p
> pvt
->other_detail
)
414 /* Generate the trace event */
415 grain_bits
= fls_long(e
->grain
);
416 snprintf(pvt
->detail_location
, sizeof(pvt
->detail_location
),
417 "APEI location: %s %s", e
->location
, e
->other_detail
);
418 trace_mc_event(type
, e
->msg
, e
->label
, e
->error_count
,
419 mci
->mc_idx
, e
->top_layer
, e
->mid_layer
, e
->low_layer
,
420 PAGES_TO_MiB(e
->page_frame_number
) | e
->offset_in_page
,
421 grain_bits
, e
->syndrome
, pvt
->detail_location
);
423 /* Report the error via EDAC API */
424 edac_raw_mc_handle_error(type
, mci
, e
);
426 EXPORT_SYMBOL_GPL(ghes_edac_report_mem_error
);
428 int ghes_edac_register(struct ghes
*ghes
, struct device
*dev
)
431 int rc
, num_dimm
= 0;
432 struct mem_ctl_info
*mci
;
433 struct edac_mc_layer layers
[1];
434 struct ghes_edac_pvt
*pvt
;
435 struct ghes_edac_dimm_fill dimm_fill
;
437 /* Get the number of DIMMs */
438 dmi_walk(ghes_edac_count_dimms
, &num_dimm
);
440 /* Check if we've got a bogus BIOS */
446 layers
[0].type
= EDAC_MC_LAYER_ALL_MEM
;
447 layers
[0].size
= num_dimm
;
448 layers
[0].is_virt_csrow
= true;
451 * We need to serialize edac_mc_alloc() and edac_mc_add_mc(),
452 * to avoid duplicated memory controller numbers
454 mutex_lock(&ghes_edac_lock
);
455 mci
= edac_mc_alloc(ghes_edac_mc_num
, ARRAY_SIZE(layers
), layers
,
458 pr_info("Can't allocate memory for EDAC data\n");
459 mutex_unlock(&ghes_edac_lock
);
464 memset(pvt
, 0, sizeof(*pvt
));
465 list_add_tail(&pvt
->list
, &ghes_reglist
);
470 mci
->mtype_cap
= MEM_FLAG_EMPTY
;
471 mci
->edac_ctl_cap
= EDAC_FLAG_NONE
;
472 mci
->edac_cap
= EDAC_FLAG_NONE
;
473 mci
->mod_name
= "ghes_edac.c";
474 mci
->mod_ver
= GHES_EDAC_REVISION
;
475 mci
->ctl_name
= "ghes_edac";
476 mci
->dev_name
= "ghes";
478 if (!ghes_edac_mc_num
) {
480 pr_info("This EDAC driver relies on BIOS to enumerate memory and get error reports.\n");
481 pr_info("Unfortunately, not all BIOSes reflect the memory layout correctly.\n");
482 pr_info("So, the end result of using this driver varies from vendor to vendor.\n");
483 pr_info("If you find incorrect reports, please contact your hardware vendor\n");
484 pr_info("to correct its BIOS.\n");
485 pr_info("This system has %d DIMM sockets.\n",
488 pr_info("This system has a very crappy BIOS: It doesn't even list the DIMMS.\n");
489 pr_info("Its SMBIOS info is wrong. It is doubtful that the error report would\n");
490 pr_info("work on such system. Use this driver with caution\n");
496 * Fill DIMM info from DMI for the memory controller #0
498 * Keep it in blank for the other memory controllers, as
499 * there's no reliable way to properly credit each DIMM to
500 * the memory controller, as different BIOSes fill the
501 * DMI bank location fields on different ways
503 if (!ghes_edac_mc_num
) {
506 dmi_walk(ghes_edac_dmidecode
, &dimm_fill
);
509 struct dimm_info
*dimm
= EDAC_DIMM_PTR(mci
->layers
, mci
->dimms
,
510 mci
->n_layers
, 0, 0, 0);
514 dimm
->mtype
= MEM_UNKNOWN
;
515 dimm
->dtype
= DEV_UNKNOWN
;
516 dimm
->edac_mode
= EDAC_SECDED
;
519 rc
= edac_mc_add_mc(mci
);
521 pr_info("Can't register at EDAC core\n");
523 mutex_unlock(&ghes_edac_lock
);
528 mutex_unlock(&ghes_edac_lock
);
531 EXPORT_SYMBOL_GPL(ghes_edac_register
);
533 void ghes_edac_unregister(struct ghes
*ghes
)
535 struct mem_ctl_info
*mci
;
536 struct ghes_edac_pvt
*pvt
, *tmp
;
538 list_for_each_entry_safe(pvt
, tmp
, &ghes_reglist
, list
) {
539 if (ghes
== pvt
->ghes
) {
541 edac_mc_del_mc(mci
->pdev
);
543 list_del(&pvt
->list
);
547 EXPORT_SYMBOL_GPL(ghes_edac_unregister
);