smp/up collapse stage 2 of 2: cleanup the globaldata structure, cleanup
[dragonfly.git] / sys / i386 / include / globaldata.h
1 /*-
2  * Copyright (c) Peter Wemm <peter@netplex.com.au>
3  * 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  *      Only machine-dependant code should ever include this file.  MI
27  *      code and header files do NOT include this file.  e.g. sys/globaldata.h
28  *      should not include this file.
29  *
30  * $FreeBSD: src/sys/i386/include/globaldata.h,v 1.11.2.1 2000/05/16 06:58:10 dillon Exp $
31  * $DragonFly: src/sys/i386/include/Attic/globaldata.h,v 1.13 2003/06/28 04:16:03 dillon Exp $
32  */
33
34 #ifndef _MACHINE_GLOBALDATA_H_
35 #define _MACHINE_GLOBALDATA_H_
36
37 #ifndef _SYS_GLOBALDATA_H_
38 #include <sys/globaldata.h>     /* struct globaldata */
39 #endif
40 #ifndef _SYS_THREAD_H_
41 #include <sys/thread.h>         /* struct thread */
42 #endif
43 #ifndef _MACHINE_SEGMENTS_H_
44 #include <machine/segments.h>   /* struct segment_descriptor */
45 #endif
46 #ifndef _MACHINE_TSS_H_
47 #include <machine/tss.h>        /* struct i386tss */
48 #endif
49
50
51 struct mdglobaldata {
52         struct globaldata mi;
53         struct thread   gd_idlethread;
54         struct segment_descriptor gd_common_tssd;
55         struct segment_descriptor *gd_tss_gdt;
56         struct thread   *gd_npxthread;
57         struct i386tss  gd_common_tss;
58         int             gd_currentldt;  /* USER_LDT */
59         u_int           gd_cpu_lockid;
60         u_int           gd_other_cpus;
61         u_int           gd_ss_eflags;
62         pt_entry_t      *gd_CMAP1;
63         pt_entry_t      *gd_CMAP2;
64         pt_entry_t      *gd_CMAP3;
65         pt_entry_t      *gd_PMAP1;
66         caddr_t         gd_CADDR1;
67         caddr_t         gd_CADDR2;
68         caddr_t         gd_CADDR3;
69         unsigned        *gd_PADDR1;
70 };
71
72 /*
73  * This is the upper (0xff800000) address space layout that is per-cpu.
74  * It is setup in locore.s and pmap.c for the BSP and in mp_machdep.c for
75  * each AP.  genassym helps export this to the assembler code.
76  */
77 struct privatespace {
78         /* page 0 - data page */
79         struct mdglobaldata mdglobaldata;
80         char            __filler0[PAGE_SIZE - sizeof(struct mdglobaldata)];
81
82         /* page 1..4 - CPAGE1,CPAGE2,CPAGE3,PPAGE1 */
83         char            CPAGE1[PAGE_SIZE];
84         char            CPAGE2[PAGE_SIZE];
85         char            CPAGE3[PAGE_SIZE];
86         char            PPAGE1[PAGE_SIZE];
87
88         /* page 5..4+UPAGES - idle stack (UPAGES pages) */
89         char            idlestack[UPAGES * PAGE_SIZE];
90 };
91
92 extern struct privatespace CPU_prvspace[];
93
94 #define mdcpu           ((struct mdglobaldata *)_get_mycpu())
95 #define npxthread       mdcpu->gd_npxthread
96
97 #endif