Merge remote-tracking branch 'asoc/topic/adau1373' into asoc-next
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / edac / mce_amd.h
CommitLineData
549d042d
BP
1#ifndef _EDAC_MCE_AMD_H
2#define _EDAC_MCE_AMD_H
3
9cdeb404
BP
4#include <linux/notifier.h>
5
549d042d
BP
6#include <asm/mce.h>
7
62452882
BP
8#define EC(x) ((x) & 0xffff)
9#define XEC(x, mask) (((x) >> 16) & mask)
5110dbde 10
b70ef010
BP
11#define LOW_SYNDROME(x) (((x) >> 15) & 0xff)
12#define HIGH_SYNDROME(x) (((x) >> 24) & 0xff)
13
14#define TLB_ERROR(x) (((x) & 0xFFF0) == 0x0010)
15#define MEM_ERROR(x) (((x) & 0xFF00) == 0x0100)
16#define BUS_ERROR(x) (((x) & 0xF800) == 0x0800)
980eec8b 17#define INT_ERROR(x) (((x) & 0xF4FF) == 0x0400)
b70ef010
BP
18
19#define TT(x) (((x) >> 2) & 0x3)
20#define TT_MSG(x) tt_msgs[TT(x)]
21#define II(x) (((x) >> 2) & 0x3)
22#define II_MSG(x) ii_msgs[II(x)]
62452882 23#define LL(x) ((x) & 0x3)
b70ef010 24#define LL_MSG(x) ll_msgs[LL(x)]
b70ef010
BP
25#define TO(x) (((x) >> 8) & 0x1)
26#define TO_MSG(x) to_msgs[TO(x)]
27#define PP(x) (((x) >> 9) & 0x3)
28#define PP_MSG(x) pp_msgs[PP(x)]
980eec8b
JS
29#define UU(x) (((x) >> 8) & 0x3)
30#define UU_MSG(x) uu_msgs[UU(x)]
b70ef010 31
62452882
BP
32#define R4(x) (((x) >> 4) & 0xf)
33#define R4_MSG(x) ((R4(x) < 9) ? rrrr_msgs[R4(x)] : "Wrong R4!")
6337583d 34
d5c6770d
BP
35#define MCI_STATUS_DEFERRED BIT_64(44)
36#define MCI_STATUS_POISON BIT_64(43)
549d042d 37
0f08669e
BP
38extern const char * const pp_msgs[];
39
888ab8e6
BP
40enum tt_ids {
41 TT_INSTR = 0,
42 TT_DATA,
43 TT_GEN,
44 TT_RESV,
45};
46
47enum ll_ids {
48 LL_RESV = 0,
49 LL_L1,
50 LL_L2,
51 LL_LG,
52};
53
54enum ii_ids {
55 II_MEM = 0,
56 II_RESV,
57 II_IO,
58 II_GEN,
59};
60
61enum rrrr_ids {
62 R4_GEN = 0,
63 R4_RD,
64 R4_WR,
65 R4_DRD,
66 R4_DWR,
67 R4_IRD,
68 R4_PREF,
69 R4_EVICT,
70 R4_SNOOP,
71};
72
888ab8e6
BP
73/*
74 * per-family decoder ops
75 */
76struct amd_decoder_ops {
f05c41a9
BP
77 bool (*mc0_mce)(u16, u8);
78 bool (*mc1_mce)(u16, u8);
4a73d3de 79 bool (*mc2_mce)(u16, u8);
888ab8e6
BP
80};
81
549d042d 82void amd_report_gart_errors(bool);
b0b07a2b
BP
83void amd_register_ecc_decoder(void (*f)(int, struct mce *));
84void amd_unregister_ecc_decoder(void (*f)(int, struct mce *));
9cdeb404 85int amd_decode_mce(struct notifier_block *nb, unsigned long val, void *data);
549d042d
BP
86
87#endif /* _EDAC_MCE_AMD_H */