1bdb9ab0dSMark Johnston /*-
2bdb9ab0dSMark Johnston * Copyright (c) 2014 EMC Corp.
3bdb9ab0dSMark Johnston * Author: Conrad Meyer <conrad.meyer@isilon.com>
4bdb9ab0dSMark Johnston * All rights reserved.
5bdb9ab0dSMark Johnston *
6bdb9ab0dSMark Johnston * Redistribution and use in source and binary forms, with or without
7bdb9ab0dSMark Johnston * modification, are permitted provided that the following conditions
8bdb9ab0dSMark Johnston * are met:
9bdb9ab0dSMark Johnston * 1. Redistributions of source code must retain the above copyright
10bdb9ab0dSMark Johnston * notice, this list of conditions and the following disclaimer.
11bdb9ab0dSMark Johnston * 2. Redistributions in binary form must reproduce the above copyright
12bdb9ab0dSMark Johnston * notice, this list of conditions and the following disclaimer in the
13bdb9ab0dSMark Johnston * documentation and/or other materials provided with the distribution.
14bdb9ab0dSMark Johnston *
15bdb9ab0dSMark Johnston * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16bdb9ab0dSMark Johnston * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17bdb9ab0dSMark Johnston * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18bdb9ab0dSMark Johnston * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19bdb9ab0dSMark Johnston * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20bdb9ab0dSMark Johnston * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21bdb9ab0dSMark Johnston * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22bdb9ab0dSMark Johnston * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23bdb9ab0dSMark Johnston * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24bdb9ab0dSMark Johnston * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25bdb9ab0dSMark Johnston * SUCH DAMAGE.
26bdb9ab0dSMark Johnston */
27bdb9ab0dSMark Johnston
28bdb9ab0dSMark Johnston #ifndef _MACHINE_DUMP_H_
29bdb9ab0dSMark Johnston #define _MACHINE_DUMP_H_
30bdb9ab0dSMark Johnston
31bdb9ab0dSMark Johnston #ifdef __amd64__
32bdb9ab0dSMark Johnston #define KERNELDUMP_ARCH_VERSION KERNELDUMP_AMD64_VERSION
33bdb9ab0dSMark Johnston #define EM_VALUE EM_X86_64
34bdb9ab0dSMark Johnston #else
35bdb9ab0dSMark Johnston #define KERNELDUMP_ARCH_VERSION KERNELDUMP_I386_VERSION
36bdb9ab0dSMark Johnston #define EM_VALUE EM_386
37bdb9ab0dSMark Johnston #endif
38bdb9ab0dSMark Johnston
39bdb9ab0dSMark Johnston /* 20 phys_avail entry pairs correspond to 10 pa's */
40bdb9ab0dSMark Johnston #define DUMPSYS_MD_PA_NPAIRS 10
41bdb9ab0dSMark Johnston #define DUMPSYS_NUM_AUX_HDRS 0
42bdb9ab0dSMark Johnston
43*ab4ed843SMitchell Horne /* How often to check the dump progress bar? */
44*ab4ed843SMitchell Horne #define DUMPSYS_PB_CHECK_BITS 24 /* Every 16MB */
45*ab4ed843SMitchell Horne
46bdb9ab0dSMark Johnston static inline void
dumpsys_pa_init(void)47bdb9ab0dSMark Johnston dumpsys_pa_init(void)
48bdb9ab0dSMark Johnston {
49bdb9ab0dSMark Johnston
50bdb9ab0dSMark Johnston dumpsys_gen_pa_init();
51bdb9ab0dSMark Johnston }
52bdb9ab0dSMark Johnston
53bdb9ab0dSMark Johnston static inline struct dump_pa *
dumpsys_pa_next(struct dump_pa * p)54bdb9ab0dSMark Johnston dumpsys_pa_next(struct dump_pa *p)
55bdb9ab0dSMark Johnston {
56bdb9ab0dSMark Johnston
57bdb9ab0dSMark Johnston return (dumpsys_gen_pa_next(p));
58bdb9ab0dSMark Johnston }
59bdb9ab0dSMark Johnston
60bdb9ab0dSMark Johnston static inline void
dumpsys_wbinv_all(void)61bdb9ab0dSMark Johnston dumpsys_wbinv_all(void)
62bdb9ab0dSMark Johnston {
63bdb9ab0dSMark Johnston
64bdb9ab0dSMark Johnston dumpsys_gen_wbinv_all();
65bdb9ab0dSMark Johnston }
66bdb9ab0dSMark Johnston
67bdb9ab0dSMark Johnston static inline void
dumpsys_unmap_chunk(vm_paddr_t pa,size_t s,void * va)68bdb9ab0dSMark Johnston dumpsys_unmap_chunk(vm_paddr_t pa, size_t s, void *va)
69bdb9ab0dSMark Johnston {
70bdb9ab0dSMark Johnston
71bdb9ab0dSMark Johnston dumpsys_gen_unmap_chunk(pa, s, va);
72bdb9ab0dSMark Johnston }
73bdb9ab0dSMark Johnston
74bdb9ab0dSMark Johnston static inline int
dumpsys_write_aux_headers(struct dumperinfo * di)75bdb9ab0dSMark Johnston dumpsys_write_aux_headers(struct dumperinfo *di)
76bdb9ab0dSMark Johnston {
77bdb9ab0dSMark Johnston
78bdb9ab0dSMark Johnston return (dumpsys_gen_write_aux_headers(di));
79bdb9ab0dSMark Johnston }
80bdb9ab0dSMark Johnston
81bdb9ab0dSMark Johnston static inline int
dumpsys(struct dumperinfo * di)82bdb9ab0dSMark Johnston dumpsys(struct dumperinfo *di)
83bdb9ab0dSMark Johnston {
84bdb9ab0dSMark Johnston
85bdb9ab0dSMark Johnston return (dumpsys_generic(di));
86bdb9ab0dSMark Johnston }
87bdb9ab0dSMark Johnston
88bdb9ab0dSMark Johnston #endif /* !_MACHINE_DUMP_H_ */
89