2ee499d7f898af065e86ecc4f43e5707424977a9
[firefly-linux-kernel-4.4.55.git] / drivers / edac / edac_mce_amd.h
1 #ifndef _EDAC_MCE_AMD_H
2 #define _EDAC_MCE_AMD_H
3
4 #include <asm/mce.h>
5
6 #define ERROR_CODE(x)                   ((x) & 0xffff)
7 #define EXT_ERROR_CODE(x)               (((x) >> 16) & 0x1f)
8 #define EXT_ERR_MSG(x)                  ext_msgs[EXT_ERROR_CODE(x)]
9
10 #define LOW_SYNDROME(x)                 (((x) >> 15) & 0xff)
11 #define HIGH_SYNDROME(x)                (((x) >> 24) & 0xff)
12
13 #define TLB_ERROR(x)                    (((x) & 0xFFF0) == 0x0010)
14 #define MEM_ERROR(x)                    (((x) & 0xFF00) == 0x0100)
15 #define BUS_ERROR(x)                    (((x) & 0xF800) == 0x0800)
16
17 #define TT(x)                           (((x) >> 2) & 0x3)
18 #define TT_MSG(x)                       tt_msgs[TT(x)]
19 #define II(x)                           (((x) >> 2) & 0x3)
20 #define II_MSG(x)                       ii_msgs[II(x)]
21 #define LL(x)                           (((x) >> 0) & 0x3)
22 #define LL_MSG(x)                       ll_msgs[LL(x)]
23 #define TO(x)                           (((x) >> 8) & 0x1)
24 #define TO_MSG(x)                       to_msgs[TO(x)]
25 #define PP(x)                           (((x) >> 9) & 0x3)
26 #define PP_MSG(x)                       pp_msgs[PP(x)]
27
28 #define RRRR(x)                         (((x) >> 4) & 0xf)
29 #define RRRR_MSG(x)                     ((RRRR(x) < 9) ?  rrrr_msgs[RRRR(x)] : "Wrong R4!")
30
31 #define K8_NBSH                         0x4C
32
33 #define K8_NBSH_VALID_BIT               BIT(31)
34 #define K8_NBSH_OVERFLOW                BIT(30)
35 #define K8_NBSH_UC_ERR                  BIT(29)
36 #define K8_NBSH_ERR_EN                  BIT(28)
37 #define K8_NBSH_MISCV                   BIT(27)
38 #define K8_NBSH_VALID_ERROR_ADDR        BIT(26)
39 #define K8_NBSH_PCC                     BIT(25)
40 #define K8_NBSH_ERR_CPU_VAL             BIT(24)
41 #define K8_NBSH_CECC                    BIT(14)
42 #define K8_NBSH_UECC                    BIT(13)
43 #define K8_NBSH_ERR_SCRUBER             BIT(8)
44
45 extern const char *tt_msgs[];
46 extern const char *ll_msgs[];
47 extern const char *rrrr_msgs[];
48 extern const char *pp_msgs[];
49 extern const char *to_msgs[];
50 extern const char *ii_msgs[];
51 extern const char *ext_msgs[];
52
53 /*
54  * relevant NB regs
55  */
56 struct err_regs {
57         u32 nbcfg;
58         u32 nbsh;
59         u32 nbsl;
60         u32 nbeah;
61         u32 nbeal;
62 };
63
64
65 void amd_report_gart_errors(bool);
66 void amd_register_ecc_decoder(void (*f)(int, struct err_regs *));
67 void amd_unregister_ecc_decoder(void (*f)(int, struct err_regs *));
68 void amd_decode_nb_mce(int, struct err_regs *);
69
70 #endif /* _EDAC_MCE_AMD_H */