forked from andikleen/mcelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intel.h
33 lines (30 loc) · 796 Bytes
/
intel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
enum cputype select_intel_cputype(int family, int model);
int is_intel_cpu(int cpu);
int mce_filter_intel(struct mce *m, unsigned recordlen);
void intel_cpu_init(enum cputype cpu);
extern int memory_error_support;
#define CASE_INTEL_CPUS \
case CPU_P6OLD: \
case CPU_CORE2: \
case CPU_NEHALEM: \
case CPU_DUNNINGTON: \
case CPU_TULSA: \
case CPU_P4: \
case CPU_INTEL: \
case CPU_XEON75XX: \
case CPU_SANDY_BRIDGE_EP: \
case CPU_SANDY_BRIDGE: \
case CPU_IVY_BRIDGE: \
case CPU_IVY_BRIDGE_EPEX: \
case CPU_HASWELL: \
case CPU_HASWELL_EPEX: \
case CPU_BROADWELL: \
case CPU_BROADWELL_DE: \
case CPU_BROADWELL_EPEX: \
case CPU_ATOM: \
case CPU_KNIGHTS_LANDING: \
case CPU_KNIGHTS_MILL: \
case CPU_SKYLAKE: \
case CPU_SKYLAKE_XEON: \
case CPU_KABYLAKE: \
case CPU_DENVERTON