xref: /freebsd/sys/amd64/include/smp.h (revision 2b15cb3d0922bd70ea592f0da9b4a5b167f4d53f)
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 <x86/apicvar.h>
26 #include <machine/pcb.h>
27 
28 /* global symbols in mpboot.S */
29 extern char			mptramp_start[];
30 extern char			mptramp_end[];
31 extern u_int32_t		mptramp_pagetables;
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 int			cpu_apic_ids[];
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_invlcache_counts[MAXCPU];
43 extern u_long *ipi_rendezvous_counts[MAXCPU];
44 #endif
45 
46 /* IPI handlers */
47 inthand_t
48 	IDTVEC(invltlb_pcid),	/* TLB shootdowns - global, pcid enabled */
49 	IDTVEC(invltlb),	/* TLB shootdowns - global */
50 	IDTVEC(invlpg_pcid),	/* TLB shootdowns - 1 page, pcid enabled */
51 	IDTVEC(invlpg),		/* TLB shootdowns - 1 page */
52 	IDTVEC(invlrng),	/* TLB shootdowns - page range */
53 	IDTVEC(invlcache),	/* Write back and invalidate cache */
54 	IDTVEC(ipi_intr_bitmap_handler), /* Bitmap based IPIs */
55 	IDTVEC(cpustop),	/* CPU stops & waits to be restarted */
56 	IDTVEC(cpususpend),	/* CPU suspends & waits to be resumed */
57 	IDTVEC(justreturn),	/* interrupt CPU with minimum overhead */
58 	IDTVEC(rendezvous);	/* handle CPU rendezvous */
59 
60 struct pmap;
61 
62 /* functions in mp_machdep.c */
63 void	cpu_add(u_int apic_id, char boot_cpu);
64 void	cpustop_handler(void);
65 void	cpususpend_handler(void);
66 void	invltlb_handler(void);
67 void	invltlb_pcid_handler(void);
68 void	invlpg_handler(void);
69 void	invlpg_pcid_handler(void);
70 void	invlrng_handler(void);
71 void	invlcache_handler(void);
72 void	init_secondary(void);
73 void	ipi_startup(int apic_id, int vector);
74 void	ipi_all_but_self(u_int ipi);
75 void 	ipi_bitmap_handler(struct trapframe frame);
76 void	ipi_cpu(int cpu, u_int ipi);
77 int	ipi_nmi_handler(void);
78 void	ipi_selected(cpuset_t cpus, u_int ipi);
79 u_int	mp_bootaddress(u_int);
80 void	smp_cache_flush(void);
81 void	smp_invlpg(struct pmap *pmap, vm_offset_t addr);
82 void	smp_masked_invlpg(cpuset_t mask, struct pmap *pmap, vm_offset_t addr);
83 void	smp_invlpg_range(struct pmap *pmap, vm_offset_t startva,
84 	    vm_offset_t endva);
85 void	smp_masked_invlpg_range(cpuset_t mask, struct pmap *pmap,
86 	    vm_offset_t startva, vm_offset_t endva);
87 void	smp_invltlb(struct pmap *pmap);
88 void	smp_masked_invltlb(cpuset_t mask, struct pmap *pmap);
89 int	native_start_all_aps(void);
90 
91 #endif /* !LOCORE */
92 #endif /* SMP */
93 
94 #endif /* _KERNEL */
95 #endif /* _MACHINE_SMP_H_ */
96