xref: /illumos-gate/usr/src/uts/i86pc/sys/machsystm.h (revision 0b35c8bc)
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 /*
235cd376e8SJimmy Vetayases  * Copyright (c) 1993, 2010, Oracle and/or its affiliates. All rights reserved.
247c478bd9Sstevel@tonic-gate  */
25a3114836SGerry Liu /*
26a3114836SGerry Liu  * Copyright (c) 2010, Intel Corporation.
27a3114836SGerry Liu  * All rights reserved.
28fc3fd29dSPatrick Mooney  * Copyright 2018 Joyent, Inc.
29a3114836SGerry 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 
58a3114836SGerry Liu typedef enum mach_cpu_add_arg_type {
59a3114836SGerry Liu 	MACH_CPU_ARG_LOCAL_APIC,
60a3114836SGerry Liu 	MACH_CPU_ARG_LOCAL_X2APIC,
61a3114836SGerry Liu } mach_cpu_add_arg_type_t;
62a3114836SGerry Liu 
63a3114836SGerry Liu typedef struct mach_cpu_add_arg {
64a3114836SGerry Liu 	mach_cpu_add_arg_type_t		type;
65a3114836SGerry Liu 	union {
66a3114836SGerry Liu 		struct {
67a3114836SGerry Liu 			uint32_t	apic_id;
68a3114836SGerry Liu 			uint32_t	proc_id;
69a3114836SGerry Liu 		} apic;
70a3114836SGerry Liu 	} arg;
71a3114836SGerry Liu } mach_cpu_add_arg_t;
72a3114836SGerry Liu 
73ae115bc7Smrj extern void mach_cpu_idle(void);
74027bcc9fSToomas Soome extern int mach_cpu_halt(xc_arg_t, xc_arg_t, xc_arg_t);
75ae115bc7Smrj extern int mach_cpu_start(cpu_t *, void *);
762df1fe9cSrandyf extern int mach_cpuid_start(processorid_t, void *);
77a3114836SGerry Liu extern int mach_cpu_stop(cpu_t *, void *);
78a3114836SGerry Liu extern int mach_cpu_add(mach_cpu_add_arg_t *, processorid_t *);
79a3114836SGerry Liu extern int mach_cpu_remove(processorid_t);
80fa96bd91SMichael Corcoran extern int mach_cpu_create_device_node(cpu_t *, dev_info_t **);
81a3114836SGerry 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 */
110027bcc9fSToomas Soome 	int		hd_cpus_per_node;	/* max cpus in a node */
111027bcc9fSToomas Soome 	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 
1297ff178cdSJimmy Vetayases /*
1307ff178cdSJimmy Vetayases  * Interrupt handling hooks
1317ff178cdSJimmy Vetayases  */
1327ff178cdSJimmy Vetayases extern void (*do_interrupt_common)(struct regs *, trap_trace_rec_t *);
1337ff178cdSJimmy Vetayases extern uintptr_t (*get_intr_handler)(int, short);
1347ff178cdSJimmy Vetayases 
1350e751525SEric Saxe /*
1360e751525SEric Saxe  * Dispatcher hooks.
1370e751525SEric Saxe  */
138*0b35c8bcSToomas Soome extern void    (*idle_cpu)();
139*0b35c8bcSToomas Soome extern void    (*non_deep_idle_cpu)();
140*0b35c8bcSToomas Soome extern void    (*disp_enq_thread)(cpu_t *, int);
141*0b35c8bcSToomas Soome extern void    (*non_deep_idle_disp_enq_thread)(cpu_t *, int);
1420e751525SEric Saxe 
143843e1988Sjohnlev #ifndef __xpv
1447c478bd9Sstevel@tonic-gate extern unsigned int microdata;
145843e1988Sjohnlev #endif
146843e1988Sjohnlev 
1477c478bd9Sstevel@tonic-gate extern int use_mp;
1487c478bd9Sstevel@tonic-gate 
1497c478bd9Sstevel@tonic-gate extern struct cpu	cpus[];		/* pointer to other cpus */
1507c478bd9Sstevel@tonic-gate extern struct cpu	*cpu[];		/* pointer to all cpus */
1517c478bd9Sstevel@tonic-gate 
152a3114836SGerry Liu /* Operation types for extended mach_cpucontext interfaces */
153a3114836SGerry Liu #define	MACH_CPUCONTEXT_OP_START	0
154a3114836SGerry Liu #define	MACH_CPUCONTEXT_OP_STOP		1
155a3114836SGerry Liu 
156ae115bc7Smrj extern int mach_cpucontext_init(void);
157ae115bc7Smrj extern void mach_cpucontext_fini(void);
158ae115bc7Smrj extern void *mach_cpucontext_alloc(struct cpu *);
159ae115bc7Smrj extern void mach_cpucontext_free(struct cpu *, void *, int);
160a3114836SGerry Liu extern void *mach_cpucontext_xalloc(struct cpu *, int);
161a3114836SGerry Liu extern void mach_cpucontext_xfree(struct cpu *, void *, int, int);
1622df1fe9cSrandyf extern void rmp_gdt_init(rm_platter_t *);
163ae115bc7Smrj 
1647c478bd9Sstevel@tonic-gate extern uintptr_t hole_start, hole_end;
1657c478bd9Sstevel@tonic-gate 
1667c478bd9Sstevel@tonic-gate #define	INVALID_VADDR(a)	\
1677c478bd9Sstevel@tonic-gate 	(((a) >= (caddr_t)hole_start && (a) < (caddr_t)hole_end))
1687c478bd9Sstevel@tonic-gate 
1697c478bd9Sstevel@tonic-gate /* kpm mapping window */
1707c478bd9Sstevel@tonic-gate extern size_t   kpm_size;
1717c478bd9Sstevel@tonic-gate extern uchar_t  kpm_size_shift;
1727c478bd9Sstevel@tonic-gate extern caddr_t  kpm_vbase;
1737c478bd9Sstevel@tonic-gate 
174ae115bc7Smrj struct memlist;
175ae115bc7Smrj extern void memlist_add(uint64_t, uint64_t, struct memlist *,
176ae115bc7Smrj     struct memlist **);
177a77271f8SVikram Hegde extern page_t *page_get_physical(uintptr_t seed);
178ddece0baSsethg extern int linear_pc(struct regs *rp, proc_t *p, caddr_t *linearp);
179ddece0baSsethg extern int dtrace_linear_pc(struct regs *rp, proc_t *p, caddr_t *linearp);
180ae115bc7Smrj 
181c48ac12eSjohnlev extern int force_shutdown_method;
182c48ac12eSjohnlev 
183a3114836SGerry Liu /* Dynamic Reconfiguration capability interface. */
184a3114836SGerry Liu #define	PLAT_DR_OPTIONS_NAME		"plat-dr-options"
185a3114836SGerry Liu #define	PLAT_DR_PHYSMAX_NAME		"plat-dr-physmax"
186a3114836SGerry Liu #define	PLAT_MAX_NCPUS_NAME		"plat-max-ncpus"
187a3114836SGerry Liu #define	BOOT_MAX_NCPUS_NAME		"boot-max-ncpus"
188a3114836SGerry Liu #define	BOOT_NCPUS_NAME			"boot-ncpus"
189a3114836SGerry Liu 
190a3114836SGerry Liu #define	PLAT_DR_FEATURE_CPU		0x1
191a3114836SGerry Liu #define	PLAT_DR_FEATURE_MEMORY		0x2
192a3114836SGerry Liu #define	PLAT_DR_FEATURE_ENABLED		0x1000000
193a3114836SGerry Liu 
194a3114836SGerry Liu #define	plat_dr_enabled()		\
195a3114836SGerry Liu 	plat_dr_check_capability(PLAT_DR_FEATURE_ENABLED)
196a3114836SGerry Liu 
197a3114836SGerry Liu #define	plat_dr_enable()		\
198a3114836SGerry Liu 	plat_dr_enable_capability(PLAT_DR_FEATURE_ENABLED)
199a3114836SGerry Liu 
200a3114836SGerry Liu #define	plat_dr_disable_cpu()		\
201a3114836SGerry Liu 	plat_dr_disable_capability(PLAT_DR_FEATURE_CPU)
202a3114836SGerry Liu #define	plat_dr_disable_memory()	\
203a3114836SGerry Liu 	plat_dr_disable_capability(PLAT_DR_FEATURE_MEMORY)
204a3114836SGerry Liu 
205a3114836SGerry Liu extern boolean_t plat_dr_support_cpu(void);
206a3114836SGerry Liu extern boolean_t plat_dr_support_memory(void);
207a3114836SGerry Liu extern boolean_t plat_dr_check_capability(uint64_t features);
208a3114836SGerry Liu extern void plat_dr_enable_capability(uint64_t features);
209a3114836SGerry Liu extern void plat_dr_disable_capability(uint64_t features);
210a3114836SGerry Liu 
211a3114836SGerry Liu #pragma	weak plat_dr_support_cpu
212a3114836SGerry Liu #pragma	weak plat_dr_support_memory
213a3114836SGerry Liu 
214a3114836SGerry Liu /*
215a3114836SGerry Liu  * Used to communicate DR updates to platform lgroup framework
216a3114836SGerry Liu  */
217a3114836SGerry Liu typedef struct {
218a3114836SGerry Liu 	uint64_t	u_base;
219a3114836SGerry Liu 	uint64_t	u_length;
220a3114836SGerry Liu 	uint32_t	u_domain;
221a3114836SGerry Liu 	uint32_t	u_device_id;
222a3114836SGerry Liu 	uint32_t	u_sli_cnt;
223a3114836SGerry Liu 	uchar_t		*u_sli_ptr;
224a3114836SGerry Liu } update_membounds_t;
225a3114836SGerry Liu 
226a3114836SGerry Liu /* Maximum physical page number (PFN) for memory DR operations. */
227a3114836SGerry Liu extern uint64_t plat_dr_physmax;
228a3114836SGerry Liu 
229843e1988Sjohnlev #ifdef __xpv
230843e1988Sjohnlev #include <sys/xen_mmu.h>
231843e1988Sjohnlev extern page_t *page_get_high_mfn(mfn_t);
232843e1988Sjohnlev #endif
233843e1988Sjohnlev 
2349278ddffSRobert Mustacchi extern hrtime_t tsc_gethrtime_tick_delta(void);
235fc3fd29dSPatrick Mooney extern hrtime_t tsc_gethrtime_params(uint64_t *, uint32_t *, uint8_t *);
236843e1988Sjohnlev 
2377c478bd9Sstevel@tonic-gate #endif /* _KERNEL */
2387c478bd9Sstevel@tonic-gate 
2397c478bd9Sstevel@tonic-gate #ifdef __cplusplus
2407c478bd9Sstevel@tonic-gate }
2417c478bd9Sstevel@tonic-gate #endif
2427c478bd9Sstevel@tonic-gate 
2437c478bd9Sstevel@tonic-gate #endif	/* _SYS_MACHSYSTM_H */
244