xref: /titanic_51/usr/src/uts/i86pc/sys/machsystm.h (revision a31148363f598def767ac48c5d82e1572e44b935)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5100b72f4Sandrei  * Common Development and Distribution License (the "License").
6100b72f4Sandrei  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
21ae115bc7Smrj 
227c478bd9Sstevel@tonic-gate /*
230e751525SEric Saxe  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
26*a3114836SGerry Liu /*
27*a3114836SGerry Liu  * Copyright (c) 2010, Intel Corporation.
28*a3114836SGerry Liu  * All rights reserved.
29*a3114836SGerry Liu  */
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate #ifndef _SYS_MACHSYSTM_H
327c478bd9Sstevel@tonic-gate #define	_SYS_MACHSYSTM_H
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate /*
357c478bd9Sstevel@tonic-gate  * Numerous platform-dependent interfaces that don't seem to belong
367c478bd9Sstevel@tonic-gate  * in any other header file.
377c478bd9Sstevel@tonic-gate  *
387c478bd9Sstevel@tonic-gate  * This file should not be included by code that purports to be
397c478bd9Sstevel@tonic-gate  * platform-independent.
407c478bd9Sstevel@tonic-gate  *
417c478bd9Sstevel@tonic-gate  */
427c478bd9Sstevel@tonic-gate 
437c478bd9Sstevel@tonic-gate #include <sys/machparam.h>
447c478bd9Sstevel@tonic-gate #include <sys/varargs.h>
457c478bd9Sstevel@tonic-gate #include <sys/thread.h>
467c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
47ae115bc7Smrj #include <sys/privregs.h>
48ae115bc7Smrj #include <sys/systm.h>
49ae115bc7Smrj #include <sys/traptrace.h>
507c478bd9Sstevel@tonic-gate #include <vm/page.h>
517c478bd9Sstevel@tonic-gate 
527c478bd9Sstevel@tonic-gate #ifdef __cplusplus
537c478bd9Sstevel@tonic-gate extern "C" {
547c478bd9Sstevel@tonic-gate #endif
557c478bd9Sstevel@tonic-gate 
567c478bd9Sstevel@tonic-gate #ifdef _KERNEL
577c478bd9Sstevel@tonic-gate 
58*a3114836SGerry Liu typedef enum mach_cpu_add_arg_type {
59*a3114836SGerry Liu 	MACH_CPU_ARG_LOCAL_APIC,
60*a3114836SGerry Liu 	MACH_CPU_ARG_LOCAL_X2APIC,
61*a3114836SGerry Liu } mach_cpu_add_arg_type_t;
62*a3114836SGerry Liu 
63*a3114836SGerry Liu typedef struct mach_cpu_add_arg {
64*a3114836SGerry Liu 	mach_cpu_add_arg_type_t		type;
65*a3114836SGerry Liu 	union {
66*a3114836SGerry Liu 		struct {
67*a3114836SGerry Liu 			uint32_t	apic_id;
68*a3114836SGerry Liu 			uint32_t	proc_id;
69*a3114836SGerry Liu 		} apic;
70*a3114836SGerry Liu 	} arg;
71*a3114836SGerry Liu } mach_cpu_add_arg_t;
72*a3114836SGerry Liu 
73ae115bc7Smrj extern void mach_cpu_idle(void);
74ae115bc7Smrj extern void mach_cpu_halt(char *);
75ae115bc7Smrj extern int mach_cpu_start(cpu_t *, void *);
762df1fe9cSrandyf extern int mach_cpuid_start(processorid_t, void *);
77*a3114836SGerry Liu extern int mach_cpu_stop(cpu_t *, void *);
78*a3114836SGerry Liu extern int mach_cpu_add(mach_cpu_add_arg_t *, processorid_t *);
79*a3114836SGerry Liu extern int mach_cpu_remove(processorid_t);
80fa96bd91SMichael Corcoran extern int mach_cpu_create_device_node(cpu_t *, dev_info_t **);
81*a3114836SGerry Liu extern int mach_cpu_get_device_node(cpu_t *, dev_info_t **);
827c478bd9Sstevel@tonic-gate 
837c478bd9Sstevel@tonic-gate extern int Cpudelay;
847c478bd9Sstevel@tonic-gate extern void setcpudelay(void);
857c478bd9Sstevel@tonic-gate 
867c478bd9Sstevel@tonic-gate extern void send_dirint(int, int);
877c478bd9Sstevel@tonic-gate extern void siron(void);
88dd4eeefdSeota extern void sir_on(int);
897c478bd9Sstevel@tonic-gate 
907c478bd9Sstevel@tonic-gate extern void return_instr(void);
917c478bd9Sstevel@tonic-gate 
927c478bd9Sstevel@tonic-gate extern int kcpc_hw_load_pcbe(void);
937c478bd9Sstevel@tonic-gate extern void kcpc_hw_init(cpu_t *cp);
94ae115bc7Smrj extern void kcpc_hw_fini(cpu_t *cp);
957c478bd9Sstevel@tonic-gate extern int kcpc_hw_overflow_intr_installed;
967c478bd9Sstevel@tonic-gate 
97843e1988Sjohnlev struct panic_trap_info {
98843e1988Sjohnlev 	struct regs *trap_regs;
99843e1988Sjohnlev 	uint_t trap_type;
100843e1988Sjohnlev 	caddr_t trap_addr;
101843e1988Sjohnlev };
102843e1988Sjohnlev 
1037c478bd9Sstevel@tonic-gate struct memconf {
104ae115bc7Smrj 	pfn_t	mcf_spfn;	/* begin page frame number */
1057c478bd9Sstevel@tonic-gate 	pfn_t	mcf_epfn;	/* end page frame number */
1067c478bd9Sstevel@tonic-gate };
1077c478bd9Sstevel@tonic-gate 
1087c478bd9Sstevel@tonic-gate struct system_hardware {
1097c478bd9Sstevel@tonic-gate 	int		hd_nodes;		/* number of nodes */
1107c478bd9Sstevel@tonic-gate 	int		hd_cpus_per_node; 	/* max cpus in a node */
1117c478bd9Sstevel@tonic-gate 	struct memconf 	hd_mem[MAXNODES];
1127c478bd9Sstevel@tonic-gate 						/*
1137c478bd9Sstevel@tonic-gate 						 * memory layout for each
1147c478bd9Sstevel@tonic-gate 						 * node.
1157c478bd9Sstevel@tonic-gate 						 */
1167c478bd9Sstevel@tonic-gate };
1177c478bd9Sstevel@tonic-gate extern struct system_hardware system_hardware;
1187c478bd9Sstevel@tonic-gate extern void get_system_configuration(void);
1197c478bd9Sstevel@tonic-gate extern void mmu_init(void);
1207c478bd9Sstevel@tonic-gate extern int cpuid2nodeid(int);
1217c478bd9Sstevel@tonic-gate extern void map_kaddr(caddr_t, pfn_t, int, int);
1227aec1d6eScindi 
12384ab085aSmws extern void memscrub_init(void);
124ae115bc7Smrj extern void trap(struct regs *, caddr_t, processorid_t);
125ae115bc7Smrj 
126ae115bc7Smrj extern void do_interrupt(struct regs *, trap_trace_rec_t *);
1277aec1d6eScindi extern void memscrub_disable(void);
1287c478bd9Sstevel@tonic-gate 
1290e751525SEric Saxe /*
1300e751525SEric Saxe  * Dispatcher hooks.
1310e751525SEric Saxe  */
1320e751525SEric Saxe void    (*idle_cpu)();
1330e751525SEric Saxe void    (*non_deep_idle_cpu)();
1340e751525SEric Saxe void    (*disp_enq_thread)(cpu_t *, int);
1350e751525SEric Saxe void    (*non_deep_idle_disp_enq_thread)(cpu_t *, int);
1360e751525SEric Saxe 
137843e1988Sjohnlev #ifndef __xpv
1387c478bd9Sstevel@tonic-gate extern unsigned int microdata;
139843e1988Sjohnlev #endif
140843e1988Sjohnlev 
1417c478bd9Sstevel@tonic-gate extern int use_mp;
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate extern struct cpu	cpus[];		/* pointer to other cpus */
1447c478bd9Sstevel@tonic-gate extern struct cpu	*cpu[];		/* pointer to all cpus */
1457c478bd9Sstevel@tonic-gate 
146*a3114836SGerry Liu /* Operation types for extended mach_cpucontext interfaces */
147*a3114836SGerry Liu #define	MACH_CPUCONTEXT_OP_START	0
148*a3114836SGerry Liu #define	MACH_CPUCONTEXT_OP_STOP		1
149*a3114836SGerry Liu 
150ae115bc7Smrj extern int mach_cpucontext_init(void);
151ae115bc7Smrj extern void mach_cpucontext_fini(void);
152ae115bc7Smrj extern void *mach_cpucontext_alloc(struct cpu *);
153ae115bc7Smrj extern void mach_cpucontext_free(struct cpu *, void *, int);
154*a3114836SGerry Liu extern void *mach_cpucontext_xalloc(struct cpu *, int);
155*a3114836SGerry Liu extern void mach_cpucontext_xfree(struct cpu *, void *, int, int);
1562df1fe9cSrandyf extern void rmp_gdt_init(rm_platter_t *);
157ae115bc7Smrj 
1587c478bd9Sstevel@tonic-gate extern uintptr_t hole_start, hole_end;
1597c478bd9Sstevel@tonic-gate 
1607c478bd9Sstevel@tonic-gate #define	INVALID_VADDR(a)	\
1617c478bd9Sstevel@tonic-gate 	(((a) >= (caddr_t)hole_start && (a) < (caddr_t)hole_end))
1627c478bd9Sstevel@tonic-gate 
1637c478bd9Sstevel@tonic-gate /* kpm mapping window */
1647c478bd9Sstevel@tonic-gate extern size_t   kpm_size;
1657c478bd9Sstevel@tonic-gate extern uchar_t  kpm_size_shift;
1667c478bd9Sstevel@tonic-gate extern caddr_t  kpm_vbase;
1677c478bd9Sstevel@tonic-gate 
168ae115bc7Smrj struct memlist;
169ae115bc7Smrj extern void memlist_add(uint64_t, uint64_t, struct memlist *,
170ae115bc7Smrj     struct memlist **);
171a77271f8SVikram Hegde extern page_t *page_get_physical(uintptr_t seed);
172ddece0baSsethg extern int linear_pc(struct regs *rp, proc_t *p, caddr_t *linearp);
173ddece0baSsethg extern int dtrace_linear_pc(struct regs *rp, proc_t *p, caddr_t *linearp);
174ae115bc7Smrj 
175c48ac12eSjohnlev extern int force_shutdown_method;
176c48ac12eSjohnlev 
177*a3114836SGerry Liu /* Dynamic Reconfiguration capability interface. */
178*a3114836SGerry Liu #define	PLAT_DR_OPTIONS_NAME		"plat-dr-options"
179*a3114836SGerry Liu #define	PLAT_DR_PHYSMAX_NAME		"plat-dr-physmax"
180*a3114836SGerry Liu #define	PLAT_MAX_NCPUS_NAME		"plat-max-ncpus"
181*a3114836SGerry Liu #define	BOOT_MAX_NCPUS_NAME		"boot-max-ncpus"
182*a3114836SGerry Liu #define	BOOT_NCPUS_NAME			"boot-ncpus"
183*a3114836SGerry Liu 
184*a3114836SGerry Liu #define	PLAT_DR_FEATURE_CPU		0x1
185*a3114836SGerry Liu #define	PLAT_DR_FEATURE_MEMORY		0x2
186*a3114836SGerry Liu #define	PLAT_DR_FEATURE_ENABLED		0x1000000
187*a3114836SGerry Liu 
188*a3114836SGerry Liu #define	plat_dr_enabled()		\
189*a3114836SGerry Liu 	plat_dr_check_capability(PLAT_DR_FEATURE_ENABLED)
190*a3114836SGerry Liu 
191*a3114836SGerry Liu #define	plat_dr_enable()		\
192*a3114836SGerry Liu 	plat_dr_enable_capability(PLAT_DR_FEATURE_ENABLED)
193*a3114836SGerry Liu 
194*a3114836SGerry Liu #define	plat_dr_disable_cpu()		\
195*a3114836SGerry Liu 	plat_dr_disable_capability(PLAT_DR_FEATURE_CPU)
196*a3114836SGerry Liu #define	plat_dr_disable_memory()	\
197*a3114836SGerry Liu 	plat_dr_disable_capability(PLAT_DR_FEATURE_MEMORY)
198*a3114836SGerry Liu 
199*a3114836SGerry Liu extern boolean_t plat_dr_support_cpu(void);
200*a3114836SGerry Liu extern boolean_t plat_dr_support_memory(void);
201*a3114836SGerry Liu extern boolean_t plat_dr_check_capability(uint64_t features);
202*a3114836SGerry Liu extern void plat_dr_enable_capability(uint64_t features);
203*a3114836SGerry Liu extern void plat_dr_disable_capability(uint64_t features);
204*a3114836SGerry Liu 
205*a3114836SGerry Liu #pragma	weak plat_dr_support_cpu
206*a3114836SGerry Liu #pragma	weak plat_dr_support_memory
207*a3114836SGerry Liu 
208*a3114836SGerry Liu /*
209*a3114836SGerry Liu  * Used to communicate DR updates to platform lgroup framework
210*a3114836SGerry Liu  */
211*a3114836SGerry Liu typedef struct {
212*a3114836SGerry Liu 	uint64_t	u_base;
213*a3114836SGerry Liu 	uint64_t	u_length;
214*a3114836SGerry Liu 	uint32_t	u_domain;
215*a3114836SGerry Liu 	uint32_t	u_device_id;
216*a3114836SGerry Liu 	uint32_t	u_sli_cnt;
217*a3114836SGerry Liu 	uchar_t		*u_sli_ptr;
218*a3114836SGerry Liu } update_membounds_t;
219*a3114836SGerry Liu 
220*a3114836SGerry Liu /* Maximum physical page number (PFN) for memory DR operations. */
221*a3114836SGerry Liu extern uint64_t plat_dr_physmax;
222*a3114836SGerry Liu 
223843e1988Sjohnlev #ifdef __xpv
224843e1988Sjohnlev #include <sys/xen_mmu.h>
225843e1988Sjohnlev extern page_t *page_get_high_mfn(mfn_t);
226843e1988Sjohnlev #endif
227843e1988Sjohnlev 
228843e1988Sjohnlev 
2297c478bd9Sstevel@tonic-gate #endif /* _KERNEL */
2307c478bd9Sstevel@tonic-gate 
2317c478bd9Sstevel@tonic-gate #ifdef __cplusplus
2327c478bd9Sstevel@tonic-gate }
2337c478bd9Sstevel@tonic-gate #endif
2347c478bd9Sstevel@tonic-gate 
2357c478bd9Sstevel@tonic-gate #endif	/* _SYS_MACHSYSTM_H */
236