xref: /illumos-gate/usr/src/uts/i86pc/sys/machsystm.h (revision 1c9de0c9)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef _SYS_MACHSYSTM_H
28 #define	_SYS_MACHSYSTM_H
29 
30 #pragma ident	"%Z%%M%	%I%	%E% SMI"
31 
32 /*
33  * Numerous platform-dependent interfaces that don't seem to belong
34  * in any other header file.
35  *
36  * This file should not be included by code that purports to be
37  * platform-independent.
38  *
39  */
40 
41 #include <sys/machparam.h>
42 #include <sys/varargs.h>
43 #include <sys/thread.h>
44 #include <sys/cpuvar.h>
45 #include <sys/privregs.h>
46 #include <sys/systm.h>
47 #include <sys/traptrace.h>
48 #include <vm/page.h>
49 
50 #ifdef __cplusplus
51 extern "C" {
52 #endif
53 
54 #ifdef _KERNEL
55 
56 extern void mach_cpu_idle(void);
57 extern void mach_cpu_halt(char *);
58 extern int mach_cpu_start(cpu_t *, void *);
59 extern int mach_cpuid_start(processorid_t, void *);
60 
61 extern int Cpudelay;
62 extern void setcpudelay(void);
63 
64 extern void send_dirint(int, int);
65 extern void siron(void);
66 extern void sir_on(int);
67 
68 extern void return_instr(void);
69 
70 extern int kcpc_hw_load_pcbe(void);
71 extern void kcpc_hw_init(cpu_t *cp);
72 extern void kcpc_hw_fini(cpu_t *cp);
73 extern int kcpc_hw_overflow_intr_installed;
74 
75 struct panic_trap_info {
76 	struct regs *trap_regs;
77 	uint_t trap_type;
78 	caddr_t trap_addr;
79 };
80 
81 struct memconf {
82 	pfn_t	mcf_spfn;	/* begin page frame number */
83 	pfn_t	mcf_epfn;	/* end page frame number */
84 };
85 
86 struct system_hardware {
87 	int		hd_nodes;		/* number of nodes */
88 	int		hd_cpus_per_node; 	/* max cpus in a node */
89 	struct memconf 	hd_mem[MAXNODES];
90 						/*
91 						 * memory layout for each
92 						 * node.
93 						 */
94 };
95 extern struct system_hardware system_hardware;
96 extern void get_system_configuration(void);
97 extern void mmu_init(void);
98 extern int cpuid2nodeid(int);
99 extern void map_kaddr(caddr_t, pfn_t, int, int);
100 
101 extern void memscrub_init(void);
102 extern void trap(struct regs *, caddr_t, processorid_t);
103 
104 extern void do_interrupt(struct regs *, trap_trace_rec_t *);
105 extern void memscrub_disable(void);
106 
107 #ifndef __xpv
108 extern unsigned int microdata;
109 #endif
110 
111 extern int use_mp;
112 
113 extern struct cpu	cpus[];		/* pointer to other cpus */
114 extern struct cpu	*cpu[];		/* pointer to all cpus */
115 
116 extern int mach_cpucontext_init(void);
117 extern void mach_cpucontext_fini(void);
118 extern void *mach_cpucontext_alloc(struct cpu *);
119 extern void mach_cpucontext_free(struct cpu *, void *, int);
120 extern void rmp_gdt_init(rm_platter_t *);
121 
122 extern uintptr_t hole_start, hole_end;
123 
124 #define	INVALID_VADDR(a)	\
125 	(((a) >= (caddr_t)hole_start && (a) < (caddr_t)hole_end))
126 
127 /* kpm mapping window */
128 extern size_t   kpm_size;
129 extern uchar_t  kpm_size_shift;
130 extern caddr_t  kpm_vbase;
131 
132 struct memlist;
133 extern void memlist_add(uint64_t, uint64_t, struct memlist *,
134     struct memlist **);
135 extern page_t *page_get_physical(uintptr_t);
136 extern int linear_pc(struct regs *rp, proc_t *p, caddr_t *linearp);
137 extern int dtrace_linear_pc(struct regs *rp, proc_t *p, caddr_t *linearp);
138 
139 extern int force_shutdown_method;
140 
141 #ifdef __xpv
142 #include <sys/xen_mmu.h>
143 extern page_t *page_get_high_mfn(mfn_t);
144 #endif
145 
146 
147 #endif /* _KERNEL */
148 
149 #ifdef __cplusplus
150 }
151 #endif
152 
153 #endif	/* _SYS_MACHSYSTM_H */
154