1 #ifndef _ASM_X86_MCE_H 2 #define _ASM_X86_MCE_H 3 4 #ifdef __x86_64__ 5 6 #include <asm/ioctls.h> 7 #include <asm/types.h> 8 9 /* 10 * Machine Check support for x86 11 */ 12 13 #define MCG_CTL_P (1UL<<8) /* MCG_CAP register available */ 14 15 #define MCG_STATUS_RIPV (1UL<<0) /* restart ip valid */ 16 #define MCG_STATUS_EIPV (1UL<<1) /* eip points to correct instruction */ 17 #define MCG_STATUS_MCIP (1UL<<2) /* machine check in progress */ 18 19 #define MCI_STATUS_VAL (1UL<<63) /* valid error */ 20 #define MCI_STATUS_OVER (1UL<<62) /* previous errors lost */ 21 #define MCI_STATUS_UC (1UL<<61) /* uncorrected error */ 22 #define MCI_STATUS_EN (1UL<<60) /* error enabled */ 23 #define MCI_STATUS_MISCV (1UL<<59) /* misc error reg. valid */ 24 #define MCI_STATUS_ADDRV (1UL<<58) /* addr reg. valid */ 25 #define MCI_STATUS_PCC (1UL<<57) /* processor context corrupt */ 26 27 /* Fields are zero when not available */ 28 struct mce { 29 __u64 status; 30 __u64 misc; 31 __u64 addr; 32 __u64 mcgstatus; 33 __u64 rip; 34 __u64 tsc; /* cpu time stamp counter */ 35 __u64 res1; /* for future extension */ 36 __u64 res2; /* dito. */ 37 __u8 cs; /* code segment */ 38 __u8 bank; /* machine check bank */ 39 __u8 cpu; /* cpu that raised the error */ 40 __u8 finished; /* entry is valid */ 41 __u32 pad; 42 }; 43 44 /* 45 * This structure contains all data related to the MCE log. Also 46 * carries a signature to make it easier to find from external 47 * debugging tools. Each entry is only valid when its finished flag 48 * is set. 49 */ 50 51 #define MCE_LOG_LEN 32 52 53 struct mce_log { 54 char signature[12]; /* "MACHINECHECK" */ 55 unsigned len; /* = MCE_LOG_LEN */ 56 unsigned next; 57 unsigned flags; 58 unsigned pad0; 59 struct mce entry[MCE_LOG_LEN]; 60 }; 61 62 #define MCE_OVERFLOW 0 /* bit 0 in flags means overflow */ 63 64 #define MCE_LOG_SIGNATURE "MACHINECHECK" 65 66 #define MCE_GET_RECORD_LEN _IOR('M', 1, int) 67 #define MCE_GET_LOG_LEN _IOR('M', 2, int) 68 #define MCE_GETCLEAR_FLAGS _IOR('M', 3, int) 69 70 /* Software defined banks */ 71 #define MCE_EXTENDED_BANK 128 72 #define MCE_THERMAL_BANK MCE_EXTENDED_BANK + 0 73 74 #define K8_MCE_THRESHOLD_BASE (MCE_EXTENDED_BANK + 1) /* MCE_AMD */ 75 #define K8_MCE_THRESHOLD_BANK_0 (MCE_THRESHOLD_BASE + 0 * 9) 76 #define K8_MCE_THRESHOLD_BANK_1 (MCE_THRESHOLD_BASE + 1 * 9) 77 #define K8_MCE_THRESHOLD_BANK_2 (MCE_THRESHOLD_BASE + 2 * 9) 78 #define K8_MCE_THRESHOLD_BANK_3 (MCE_THRESHOLD_BASE + 3 * 9) 79 #define K8_MCE_THRESHOLD_BANK_4 (MCE_THRESHOLD_BASE + 4 * 9) 80 #define K8_MCE_THRESHOLD_BANK_5 (MCE_THRESHOLD_BASE + 5 * 9) 81 #define K8_MCE_THRESHOLD_DRAM_ECC (MCE_THRESHOLD_BANK_4 + 0) 82 83 #endif /* __x86_64__ */ 84 85 86 #endif 87