diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/cper.h | 23 | ||||
-rw-r--r-- | include/ras/ras_event.h | 64 |
2 files changed, 87 insertions, 0 deletions
diff --git a/include/linux/cper.h b/include/linux/cper.h index ed088b9c1298..76abba4b238e 100644 --- a/include/linux/cper.h +++ b/include/linux/cper.h | |||
@@ -22,6 +22,7 @@ | |||
22 | #define LINUX_CPER_H | 22 | #define LINUX_CPER_H |
23 | 23 | ||
24 | #include <linux/uuid.h> | 24 | #include <linux/uuid.h> |
25 | #include <linux/trace_seq.h> | ||
25 | 26 | ||
26 | /* CPER record signature and the size */ | 27 | /* CPER record signature and the size */ |
27 | #define CPER_SIG_RECORD "CPER" | 28 | #define CPER_SIG_RECORD "CPER" |
@@ -363,6 +364,24 @@ struct cper_sec_mem_err { | |||
363 | __u16 mem_dev_handle; /* module handle in UEFI 2.4 */ | 364 | __u16 mem_dev_handle; /* module handle in UEFI 2.4 */ |
364 | }; | 365 | }; |
365 | 366 | ||
367 | struct cper_mem_err_compact { | ||
368 | __u64 validation_bits; | ||
369 | __u16 node; | ||
370 | __u16 card; | ||
371 | __u16 module; | ||
372 | __u16 bank; | ||
373 | __u16 device; | ||
374 | __u16 row; | ||
375 | __u16 column; | ||
376 | __u16 bit_pos; | ||
377 | __u64 requestor_id; | ||
378 | __u64 responder_id; | ||
379 | __u64 target_id; | ||
380 | __u16 rank; | ||
381 | __u16 mem_array_handle; | ||
382 | __u16 mem_dev_handle; | ||
383 | }; | ||
384 | |||
366 | struct cper_sec_pcie { | 385 | struct cper_sec_pcie { |
367 | __u64 validation_bits; | 386 | __u64 validation_bits; |
368 | __u32 port_type; | 387 | __u32 port_type; |
@@ -406,5 +425,9 @@ const char *cper_severity_str(unsigned int); | |||
406 | const char *cper_mem_err_type_str(unsigned int); | 425 | const char *cper_mem_err_type_str(unsigned int); |
407 | void cper_print_bits(const char *prefix, unsigned int bits, | 426 | void cper_print_bits(const char *prefix, unsigned int bits, |
408 | const char * const strs[], unsigned int strs_size); | 427 | const char * const strs[], unsigned int strs_size); |
428 | void cper_mem_err_pack(const struct cper_sec_mem_err *, | ||
429 | struct cper_mem_err_compact *); | ||
430 | const char *cper_mem_err_unpack(struct trace_seq *, | ||
431 | struct cper_mem_err_compact *); | ||
409 | 432 | ||
410 | #endif | 433 | #endif |
diff --git a/include/ras/ras_event.h b/include/ras/ras_event.h index acbcbb88eaaa..47da53c27ffa 100644 --- a/include/ras/ras_event.h +++ b/include/ras/ras_event.h | |||
@@ -9,6 +9,70 @@ | |||
9 | #include <linux/edac.h> | 9 | #include <linux/edac.h> |
10 | #include <linux/ktime.h> | 10 | #include <linux/ktime.h> |
11 | #include <linux/aer.h> | 11 | #include <linux/aer.h> |
12 | #include <linux/cper.h> | ||
13 | |||
14 | /* | ||
15 | * MCE Extended Error Log trace event | ||
16 | * | ||
17 | * These events are generated when hardware detects a corrected or | ||
18 | * uncorrected event. | ||
19 | */ | ||
20 | |||
21 | /* memory trace event */ | ||
22 | |||
23 | #if defined(CONFIG_ACPI_EXTLOG) || defined(CONFIG_ACPI_EXTLOG_MODULE) | ||
24 | TRACE_EVENT(extlog_mem_event, | ||
25 | TP_PROTO(struct cper_sec_mem_err *mem, | ||
26 | u32 err_seq, | ||
27 | const uuid_le *fru_id, | ||
28 | const char *fru_text, | ||
29 | u8 sev), | ||
30 | |||
31 | TP_ARGS(mem, err_seq, fru_id, fru_text, sev), | ||
32 | |||
33 | TP_STRUCT__entry( | ||
34 | __field(u32, err_seq) | ||
35 | __field(u8, etype) | ||
36 | __field(u8, sev) | ||
37 | __field(u64, pa) | ||
38 | __field(u8, pa_mask_lsb) | ||
39 | __field_struct(uuid_le, fru_id) | ||
40 | __string(fru_text, fru_text) | ||
41 | __field_struct(struct cper_mem_err_compact, data) | ||
42 | ), | ||
43 | |||
44 | TP_fast_assign( | ||
45 | __entry->err_seq = err_seq; | ||
46 | if (mem->validation_bits & CPER_MEM_VALID_ERROR_TYPE) | ||
47 | __entry->etype = mem->error_type; | ||
48 | else | ||
49 | __entry->etype = ~0; | ||
50 | __entry->sev = sev; | ||
51 | if (mem->validation_bits & CPER_MEM_VALID_PA) | ||
52 | __entry->pa = mem->physical_addr; | ||
53 | else | ||
54 | __entry->pa = ~0ull; | ||
55 | |||
56 | if (mem->validation_bits & CPER_MEM_VALID_PA_MASK) | ||
57 | __entry->pa_mask_lsb = (u8)__ffs64(mem->physical_addr_mask); | ||
58 | else | ||
59 | __entry->pa_mask_lsb = ~0; | ||
60 | __entry->fru_id = *fru_id; | ||
61 | __assign_str(fru_text, fru_text); | ||
62 | cper_mem_err_pack(mem, &__entry->data); | ||
63 | ), | ||
64 | |||
65 | TP_printk("{%d} %s error: %s physical addr: %016llx (mask lsb: %x) %sFRU: %pUl %.20s", | ||
66 | __entry->err_seq, | ||
67 | cper_severity_str(__entry->sev), | ||
68 | cper_mem_err_type_str(__entry->etype), | ||
69 | __entry->pa, | ||
70 | __entry->pa_mask_lsb, | ||
71 | cper_mem_err_unpack(p, &__entry->data), | ||
72 | &__entry->fru_id, | ||
73 | __get_str(fru_text)) | ||
74 | ); | ||
75 | #endif | ||
12 | 76 | ||
13 | /* | 77 | /* |
14 | * Hardware Events Report | 78 | * Hardware Events Report |