]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/mips/include/smp.h
Copy head to stable/8 as part of 8.0 Release cycle.
[FreeBSD/stable/8.git] / sys / mips / include / smp.h
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  *      from: src/sys/alpha/include/smp.h,v 1.8 2005/01/05 20:05:50 imp
10  *      JNPR: smp.h,v 1.3 2006/12/02 09:53:41 katta
11  * $FreeBSD$
12  *
13  */
14
15 #ifndef _MACHINE_SMP_H_
16 #define _MACHINE_SMP_H_
17
18 #ifdef _KERNEL
19
20 /*
21  * Interprocessor interrupts for SMP.
22  */
23 #define IPI_INVLTLB             0x0001
24 #define IPI_RENDEZVOUS          0x0002
25 #define IPI_AST                 0x0004
26 #define IPI_STOP                0x0008
27
28 #ifndef LOCORE
29
30 extern u_int32_t                boot_cpu_id;
31
32 void    ipi_selected(u_int cpus, u_int32_t ipi);
33 void    ipi_all_but_self(u_int32_t ipi);
34 intrmask_t      smp_handle_ipi(struct trapframe *frame);
35 void    smp_init_secondary(u_int32_t cpuid);
36 void    mips_ipi_send(int thread_id);
37
38 #endif /* !LOCORE */
39 #endif /* _KERNEL */
40
41 #endif /* _MACHINE_SMP_H_ */