1 /* SPDX-License-Identifier: MIT */
2 /******************************************************************************
4 * Guest OS machine check interface to x86 Xen.
6 * Contributed by Advanced Micro Devices, Inc.
7 * Author: Christoph Egger <Christoph.Egger@amd.com>
9 * Updated by Intel Corporation
10 * Author: Liu, Jinsong <jinsong.liu@intel.com>
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to
14 * deal in the Software without restriction, including without limitation the
15 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
16 * sell copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 * DEALINGS IN THE SOFTWARE.
31 #ifndef __XEN_PUBLIC_ARCH_X86_MCA_H__
32 #define __XEN_PUBLIC_ARCH_X86_MCA_H__
35 #define __HYPERVISOR_mca __HYPERVISOR_arch_0
37 #define XEN_MCA_INTERFACE_VERSION 0x01ecc003
39 /* IN: Dom0 calls hypercall to retrieve nonurgent error log entry */
40 #define XEN_MC_NONURGENT 0x1
41 /* IN: Dom0 calls hypercall to retrieve urgent error log entry */
42 #define XEN_MC_URGENT 0x2
43 /* IN: Dom0 acknowledges previosly-fetched error log entry */
44 #define XEN_MC_ACK 0x4
48 /* OUT: Domain could not fetch data. */
49 #define XEN_MC_FETCHFAILED 0x1
50 /* OUT: There was no machine check data to fetch. */
51 #define XEN_MC_NODATA 0x2
54 /* vIRQ injected to Dom0 */
55 #define VIRQ_MCA VIRQ_ARCH_0
59 * mca machine check info are recorded in mc_info entries.
60 * when fetch mca info, it can use MC_TYPE_... to distinguish
63 #define MC_TYPE_GLOBAL 0
64 #define MC_TYPE_BANK 1
65 #define MC_TYPE_EXTENDED 2
66 #define MC_TYPE_RECOVERY 3
68 struct mcinfo_common {
69 uint16_t type; /* structure type */
70 uint16_t size; /* size of this struct in bytes */
73 #define MC_FLAG_CORRECTABLE (1 << 0)
74 #define MC_FLAG_UNCORRECTABLE (1 << 1)
75 #define MC_FLAG_RECOVERABLE (1 << 2)
76 #define MC_FLAG_POLLED (1 << 3)
77 #define MC_FLAG_RESET (1 << 4)
78 #define MC_FLAG_CMCI (1 << 5)
79 #define MC_FLAG_MCE (1 << 6)
81 /* contains x86 global mc information */
82 struct mcinfo_global {
83 struct mcinfo_common common;
85 uint16_t mc_domid; /* running domain at the time in error */
86 uint16_t mc_vcpuid; /* virtual cpu scheduled for mc_domid */
87 uint32_t mc_socketid; /* physical socket of the physical core */
88 uint16_t mc_coreid; /* physical impacted core */
89 uint16_t mc_core_threadid; /* core thread of physical core */
92 uint64_t mc_gstatus; /* global status */
95 /* contains x86 bank mc information */
97 struct mcinfo_common common;
99 uint16_t mc_bank; /* bank nr */
100 uint16_t mc_domid; /* domain referenced by mc_addr if valid */
101 uint64_t mc_status; /* bank status */
102 uint64_t mc_addr; /* bank address */
109 uint64_t reg; /* MSR */
110 uint64_t value; /* MSR value */
113 /* contains mc information from other or additional mc MSRs */
114 struct mcinfo_extended {
115 struct mcinfo_common common;
116 uint32_t mc_msrs; /* Number of msr with valid values. */
118 * Currently Intel extended MSR (32/64) include all gp registers
119 * and E(R)FLAGS, E(R)IP, E(R)MISC, up to 11/19 of them might be
120 * useful at present. So expand this array to 16/32 to leave room.
122 struct mcinfo_msr mc_msr[sizeof(void *) * 4];
125 /* Recovery Action flags. Giving recovery result information to DOM0 */
127 /* Xen takes successful recovery action, the error is recovered */
128 #define REC_ACTION_RECOVERED (0x1 << 0)
129 /* No action is performed by XEN */
130 #define REC_ACTION_NONE (0x1 << 1)
131 /* It's possible DOM0 might take action ownership in some case */
132 #define REC_ACTION_NEED_RESET (0x1 << 2)
135 * Different Recovery Action types, if the action is performed successfully,
136 * REC_ACTION_RECOVERED flag will be returned.
139 /* Page Offline Action */
140 #define MC_ACTION_PAGE_OFFLINE (0x1 << 0)
141 /* CPU offline Action */
142 #define MC_ACTION_CPU_OFFLINE (0x1 << 1)
143 /* L3 cache disable Action */
144 #define MC_ACTION_CACHE_SHRINK (0x1 << 2)
147 * Below interface used between XEN/DOM0 for passing XEN's recovery action
148 * information to DOM0.
150 struct page_offline_action {
151 /* Params for passing the offlined page number to DOM0 */
156 struct cpu_offline_action {
157 /* Params for passing the identity of the offlined CPU to DOM0 */
158 uint32_t mc_socketid;
160 uint16_t mc_core_threadid;
163 #define MAX_UNION_SIZE 16
164 struct mcinfo_recovery {
165 struct mcinfo_common common;
166 uint16_t mc_bank; /* bank nr */
167 uint8_t action_flags;
168 uint8_t action_types;
170 struct page_offline_action page_retire;
171 struct cpu_offline_action cpu_offline;
172 uint8_t pad[MAX_UNION_SIZE];
177 #define MCINFO_MAXSIZE 768
179 /* Number of mcinfo_* entries in mi_data */
180 uint32_t mi_nentries;
182 uint64_t mi_data[(MCINFO_MAXSIZE - 1) / 8];
184 DEFINE_GUEST_HANDLE_STRUCT(mc_info);
186 #define __MC_MSR_ARRAYSIZE 8
189 struct mcinfo_logical_cpu {
193 uint16_t mc_threadid;
195 uint32_t mc_clusterid;
197 uint32_t mc_ncores_active;
198 uint32_t mc_nthreads;
199 uint32_t mc_cpuid_level;
204 char mc_vendorid[16];
206 uint32_t mc_cpu_caps[MC_NCAPS];
207 uint32_t mc_cache_size;
208 uint32_t mc_cache_alignment;
209 uint32_t mc_nmsrvals;
210 struct mcinfo_msr mc_msrvalues[__MC_MSR_ARRAYSIZE];
212 DEFINE_GUEST_HANDLE_STRUCT(mcinfo_logical_cpu);
216 * uint32_t x86_mcinfo_nentries(struct mc_info *mi);
218 #define x86_mcinfo_nentries(_mi) \
222 * struct mcinfo_common *x86_mcinfo_first(struct mc_info *mi);
224 #define x86_mcinfo_first(_mi) \
225 ((struct mcinfo_common *)(_mi)->mi_data)
228 * struct mcinfo_common *x86_mcinfo_next(struct mcinfo_common *mic);
230 #define x86_mcinfo_next(_mic) \
231 ((struct mcinfo_common *)((uint8_t *)(_mic) + (_mic)->size))
235 * void x86_mcinfo_lookup(void *ret, struct mc_info *mi, uint16_t type);
237 static inline void x86_mcinfo_lookup(struct mcinfo_common **ret,
238 struct mc_info *mi, uint16_t type)
241 struct mcinfo_common *mic;
247 mic = x86_mcinfo_first(mi);
248 for (i = 0; i < x86_mcinfo_nentries(mi); i++) {
249 if (mic->type == type) {
253 mic = x86_mcinfo_next(mic);
256 *ret = found ? mic : NULL;
260 * Fetch machine check data from hypervisor.
262 #define XEN_MC_fetch 1
263 struct xen_mc_fetch {
265 * IN: XEN_MC_NONURGENT, XEN_MC_URGENT,
266 * XEN_MC_ACK if ack'king an earlier fetch
267 * OUT: XEN_MC_OK, XEN_MC_FETCHAILED, XEN_MC_NODATA
271 /* OUT: id for ack, IN: id we are ack'ing */
275 GUEST_HANDLE(mc_info) data;
277 DEFINE_GUEST_HANDLE_STRUCT(xen_mc_fetch);
281 * This tells the hypervisor to notify a DomU about the machine check error
283 #define XEN_MC_notifydomain 2
284 struct xen_mc_notifydomain {
286 uint16_t mc_domid; /* The unprivileged domain to notify */
287 uint16_t mc_vcpuid; /* The vcpu in mc_domid to notify */
289 /* IN/OUT variables */
292 DEFINE_GUEST_HANDLE_STRUCT(xen_mc_notifydomain);
294 #define XEN_MC_physcpuinfo 3
295 struct xen_mc_physcpuinfo {
300 GUEST_HANDLE(mcinfo_logical_cpu) info;
303 #define XEN_MC_msrinject 4
304 #define MC_MSRINJ_MAXMSRS 8
305 struct xen_mc_msrinject {
307 uint32_t mcinj_cpunr; /* target processor id */
308 uint32_t mcinj_flags; /* see MC_MSRINJ_F_* below */
309 uint32_t mcinj_count; /* 0 .. count-1 in array are valid */
311 struct mcinfo_msr mcinj_msr[MC_MSRINJ_MAXMSRS];
314 /* Flags for mcinj_flags above; bits 16-31 are reserved */
315 #define MC_MSRINJ_F_INTERPOSE 0x1
317 #define XEN_MC_mceinject 5
318 struct xen_mc_mceinject {
319 unsigned int mceinj_cpunr; /* target processor id */
324 uint32_t interface_version; /* XEN_MCA_INTERFACE_VERSION */
326 struct xen_mc_fetch mc_fetch;
327 struct xen_mc_notifydomain mc_notifydomain;
328 struct xen_mc_physcpuinfo mc_physcpuinfo;
329 struct xen_mc_msrinject mc_msrinject;
330 struct xen_mc_mceinject mc_mceinject;
333 DEFINE_GUEST_HANDLE_STRUCT(xen_mc);
336 * Fields are zero when not available. Also, this struct is shared with
337 * userspace mcelog and thus must keep existing fields at current offsets.
338 * Only add new fields to the end of the structure
346 __u64 tsc; /* cpu time stamp counter */
347 __u64 time; /* wall time_t when error was detected */
348 __u8 cpuvendor; /* cpu vendor as encoded in system.h */
349 __u8 inject_flags; /* software inject flags */
351 __u32 cpuid; /* CPUID 1 EAX */
352 __u8 cs; /* code segment */
353 __u8 bank; /* machine check bank */
354 __u8 cpu; /* cpu number; obsolete; use extcpu now */
355 __u8 finished; /* entry is valid */
356 __u32 extcpu; /* linux cpu number that detected the error */
357 __u32 socketid; /* CPU socket ID */
358 __u32 apicid; /* CPU initial apic ID */
359 __u64 mcgcap; /* MCGCAP MSR: machine check capabilities of CPU */
360 __u64 synd; /* MCA_SYND MSR: only valid on SMCA systems */
361 __u64 ipid; /* MCA_IPID MSR: only valid on SMCA systems */
362 __u64 ppin; /* Protected Processor Inventory Number */
366 * This structure contains all data related to the MCE log. Also
367 * carries a signature to make it easier to find from external
368 * debugging tools. Each entry is only valid when its finished flag
372 #define XEN_MCE_LOG_LEN 32
375 char signature[12]; /* "MACHINECHECK" */
376 unsigned len; /* = XEN_MCE_LOG_LEN */
379 unsigned recordlen; /* length of struct xen_mce */
380 struct xen_mce entry[XEN_MCE_LOG_LEN];
383 #define XEN_MCE_OVERFLOW 0 /* bit 0 in flags means overflow */
385 #define XEN_MCE_LOG_SIGNATURE "MACHINECHECK"
387 #define MCE_GET_RECORD_LEN _IOR('M', 1, int)
388 #define MCE_GET_LOG_LEN _IOR('M', 2, int)
389 #define MCE_GETCLEAR_FLAGS _IOR('M', 3, int)
391 #endif /* __ASSEMBLY__ */
392 #endif /* __XEN_PUBLIC_ARCH_X86_MCA_H__ */