xref: /freebsd/sys/i386/include/smp.h (revision 87569f75a91f298c52a71823c04d41cf53c88889)
1 /*-
2  * ----------------------------------------------------------------------------
3  * "THE BEER-WARE LICENSE" (Revision 42):
4  * <phk@FreeBSD.org> wrote this file.  As long as you retain this notice you
5  * can do whatever you want with this stuff. If we meet some day, and you think
6  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7  * ----------------------------------------------------------------------------
8  *
9  * $FreeBSD$
10  *
11  */
12 
13 #ifndef _MACHINE_SMP_H_
14 #define _MACHINE_SMP_H_
15 
16 #ifdef _KERNEL
17 
18 #ifdef SMP
19 
20 #ifndef LOCORE
21 
22 #include <sys/bus.h>
23 #include <machine/frame.h>
24 #include <machine/intr_machdep.h>
25 #include <machine/apicvar.h>
26 
27 /* global data in mpboot.s */
28 extern int			bootMP_size;
29 
30 /* functions in mpboot.s */
31 void	bootMP(void);
32 
33 /* global data in mp_machdep.c */
34 extern int			mp_naps;
35 extern int			boot_cpu_id;
36 extern struct pcb		stoppcbs[];
37 extern struct mtx		smp_tlb_mtx;
38 #ifdef COUNT_IPIS
39 extern u_long *ipi_invltlb_counts[MAXCPU];
40 extern u_long *ipi_invlrng_counts[MAXCPU];
41 extern u_long *ipi_invlpg_counts[MAXCPU];
42 extern u_long *ipi_rendezvous_counts[MAXCPU];
43 extern u_long *ipi_lazypmap_counts[MAXCPU];
44 #endif
45 
46 /* IPI handlers */
47 inthand_t
48 	IDTVEC(invltlb),	/* TLB shootdowns - global */
49 	IDTVEC(invlpg),		/* TLB shootdowns - 1 page */
50 	IDTVEC(invlrng),	/* TLB shootdowns - page range */
51 	IDTVEC(ipi_intr_bitmap_handler), /* Bitmap based IPIs */
52 	IDTVEC(cpustop),	/* CPU stops & waits to be restarted */
53 	IDTVEC(rendezvous),	/* handle CPU rendezvous */
54 	IDTVEC(lazypmap);	/* handle lazy pmap release */
55 
56 /* functions in mp_machdep.c */
57 void	cpu_add(u_int apic_id, char boot_cpu);
58 void	cpustop_handler(void);
59 void	init_secondary(void);
60 void	ipi_selected(u_int cpus, u_int ipi);
61 void	ipi_all(u_int ipi);
62 void	ipi_all_but_self(u_int ipi);
63 void	ipi_self(u_int ipi);
64 void 	ipi_bitmap_handler(struct trapframe frame);
65 u_int	mp_bootaddress(u_int);
66 int	mp_grab_cpu_hlt(void);
67 void	mp_topology(void);
68 void	smp_invlpg(vm_offset_t addr);
69 void	smp_masked_invlpg(u_int mask, vm_offset_t addr);
70 void	smp_invlpg_range(vm_offset_t startva, vm_offset_t endva);
71 void	smp_masked_invlpg_range(u_int mask, vm_offset_t startva,
72 	    vm_offset_t endva);
73 void	smp_invltlb(void);
74 void	smp_masked_invltlb(u_int mask);
75 
76 #ifdef STOP_NMI
77 int	ipi_nmi_handler(void);
78 #endif
79 
80 #endif /* !LOCORE */
81 #endif /* SMP */
82 
83 #endif /* _KERNEL */
84 #endif /* _MACHINE_SMP_H_ */
85