MP Implementation 2/4: Implement a poor-man's IPI messaging subsystem,
[dragonfly.git] / sys / sys / globaldata.h
1 /*-
2  * Copyright (c) Peter Wemm <peter@netplex.com.au> All rights reserved.
3  * Copyright (c) 2003 Matthew Dillon <dillon@backplane.net> All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/i386/include/globaldata.h,v 1.11.2.1 2000/05/16 06:58:10 dillon Exp $
27  * $DragonFly: src/sys/sys/globaldata.h,v 1.8 2003/07/08 06:27:28 dillon Exp $
28  */
29
30 #ifndef _SYS_GLOBALDATA_H_
31 #define _SYS_GLOBALDATA_H_
32
33 #ifndef _SYS_TIME_H_
34 #include <sys/time.h>   /* struct timeval */
35 #endif
36 #ifndef _SYS_VMMETER_H_
37 #include <sys/vmmeter.h>
38 #endif _SYS_VMMETER_H_
39
40 /*
41  * This structure maps out the global data that needs to be kept on a
42  * per-cpu basis.  genassym uses this to generate offsets for the assembler
43  * code.  The machine-dependant portions of this file can be found in
44  * <machine/globaldata.h>, but only MD code should retrieve it.
45  *
46  * The SMP parts are setup in pmap.c and locore.s for the BSP, and
47  * mp_machdep.c sets up the data for the AP's to "see" when they awake.
48  * The reason for doing it via a struct is so that an array of pointers
49  * to each CPU's data can be set up for things like "check curproc on all
50  * other processors"
51  *
52  * NOTE! this structure needs to remain compatible between module accessors
53  * and the kernel, so we can't throw in lots of #ifdef's.
54  *
55  * gd_reqpri serves serveral purposes, bu it is primarily an interrupt
56  * rollup flag used by the task switcher and spl mechanisms to decide that
57  * further checks are necessary.  Interrupts are typically managed on a
58  * per-processor basis at least until you leave a critical section, but
59  * may then be scheduled to other cpus.
60  *
61  * gd_uprocscheduled indicates that the thread for a user process has been
62  * scheduled.  It is used to schedule only one user process at a time in
63  * the LWKT subsystem.
64  */
65
66 struct privatespace;
67 struct thread;
68 struct lwkt_ipiq;
69
70 struct globaldata {
71         struct privatespace *gd_prvspace;       /* self-reference */
72         struct thread   *gd_curthread;
73         struct thread   *gd_idletd;             /* a bit messy but it works */
74         int             gd_tdfreecount;         /* new thread cache */
75         int             gd_reqpri;              /* (see note above) */
76         TAILQ_HEAD(,thread) gd_tdallq;          /* all threads */
77         TAILQ_HEAD(,thread) gd_tdfreeq;         /* new thread cache */
78         TAILQ_HEAD(,thread) gd_tdrunq[32];      /* runnable threads */
79         u_int32_t       gd_runqmask;            /* which queues? */
80         u_int           gd_cpuid;
81         u_int           gd_other_cpus;          /* mask of 'other' cpus */
82         struct timeval  gd_stattv;
83         int             gd_intr_nesting_level;  /* (for fast interrupts) */
84         int             gd_astpending;          /* sorta MD but easier here */
85         int             gd_uprocscheduled;
86         struct vmmeter  gd_cnt;
87         struct lwkt_ipiq *gd_ipiq;
88         /* extended by <machine/pcpu.h> */
89 };
90
91 #ifdef _KERNEL
92 struct globaldata *globaldata_find(int cpu);
93 #endif
94
95 #endif