/*- * Copyright (c) Peter Wemm * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * Only machine-dependant code should ever include this file. MI * code and header files do NOT include this file. e.g. sys/globaldata.h * should not include this file. * * $FreeBSD: src/sys/i386/include/globaldata.h,v 1.11.2.1 2000/05/16 06:58:10 dillon Exp $ * $DragonFly: src/sys/amd64/include/Attic/globaldata.h,v 1.2 2004/02/17 19:39:38 dillon Exp $ */ #ifndef _MACHINE_GLOBALDATA_H_ #define _MACHINE_GLOBALDATA_H_ #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES) #ifndef _SYS_GLOBALDATA_H_ #include /* struct globaldata */ #endif #ifndef _SYS_THREAD_H_ #include /* struct thread */ #endif #ifndef _MACHINE_SEGMENTS_H_ #include "segments.h" /* struct segment_descriptor */ #endif #ifndef _MACHINE_TSS_H_ #include "tss.h" /* struct i386tss */ #endif /* * Note on interrupt control. Pending interrupts not yet dispatched are * marked in gd_fpending or gd_ipending. Once dispatched the interrupt's * pending bit is cleared and the interrupt is masked. Upon completion * the interrupt is unmasked. * * For edge triggered interrupts interrupts may be enabled again at this * point and if they occur before the interrupt service routine is complete * the service routine will loop. * * The current thread's cpl is stored in the thread structure. */ struct mdglobaldata { struct globaldata mi; struct segment_descriptor gd_common_tssd; struct segment_descriptor *gd_tss_gdt; struct thread *gd_npxthread; struct amd64tss gd_common_tss; int gd_fpending; /* fast interrupt pending */ int gd_ipending; /* normal interrupt pending */ int gd_idelayed; /* delayed software ints */ int gd_currentldt; int gd_private_tss; u_int gd_unused001; u_int gd_other_cpus; u_int gd_ss_eflags; pt_entry_t *gd_CMAP1; pt_entry_t *gd_CMAP2; pt_entry_t *gd_CMAP3; pt_entry_t *gd_PMAP1; caddr_t gd_CADDR1; caddr_t gd_CADDR2; caddr_t gd_CADDR3; unsigned *gd_PADDR1; }; /* * This is the upper (0xff800000) address space layout that is per-cpu. * It is setup in locore.s and pmap.c for the BSP and in mp_machdep.c for * each AP. genassym helps export this to the assembler code. * * WARNING! page-bounded fields are hardwired for SMPpt[] setup in * i386/i386/mp_machdep.c and locore.s. */ struct privatespace { /* page 0 - data page */ struct mdglobaldata mdglobaldata; char __filler0[PAGE_SIZE - sizeof(struct mdglobaldata)]; /* page 1..4 - CPAGE1,CPAGE2,CPAGE3,PPAGE1 */ char CPAGE1[PAGE_SIZE]; /* SMPpt[1] */ char CPAGE2[PAGE_SIZE]; /* SMPpt[2] */ char CPAGE3[PAGE_SIZE]; /* SMPpt[3] */ char PPAGE1[PAGE_SIZE]; /* SMPpt[4] */ /* page 5..4+UPAGES - idle stack (UPAGES pages) */ char idlestack[UPAGES * PAGE_SIZE]; /* SMPpt[5..] */ }; #define mdcpu ((struct mdglobaldata *)_get_mycpu()) #endif #ifdef _KERNEL extern struct privatespace CPU_prvspace[]; #endif #endif