aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/cpu/mcheck/mce_quirks.h
blob: a33bddfb7347599e50b6e73569773ebd5328bb4d (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* * MCA quirks
 * Copyright (c) 2009 Advanced Micro Devices, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef _MCE_QUIRK_H
#define _MCE_QUIRK_H

#include <xen/types.h>

struct mce_quirkdata {
	int32_t cpu_family;
	int16_t cpu_model;
	int16_t cpu_stepping;
	uint32_t quirk;
};

/* use a binary flag if multiple quirks apply
 * to one CPU family/model
 */

enum mcequirk_amd_flags {
	MCEQUIRK_K7_BANK0 = 1,
	MCEQUIRK_K8_GART,
	MCEQUIRK_F10_GART
};

enum mcequirk_intel_flags {
	MCEQUIRK_DUMMY = 0x1, /* nothing known yet */
};

enum mcequirk_amd_flags
mcequirk_lookup_amd_quirkdata(struct cpuinfo_x86 *c);

int mcequirk_amd_apply(enum mcequirk_amd_flags flags);

enum mcequirk_intel_flags
mcequirk_lookup_intel_quirkdata(struct cpuinfo_x86 *c);

int mcequirk_intel_apply(enum mcequirk_intel_flags flags);

#endif /* _MCE_QUIRK_H */