/*- * 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/platform/pc32/include/globaldata.h,v 1.28 2005/11/07 20:05:53 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 #ifndef _MACHINE_NPX_H_ #include "npx.h" #endif /* * Note on interrupt control. Pending interrupts not yet dispatched are * marked in gd_fpending, gd_ipending, or gd_spending. 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. * * Note: the embedded globaldata and/or the mdglobaldata structure * may exceed the size of a page. */ struct mdglobaldata { struct globaldata mi; struct segment_descriptor gd_common_tssd; struct segment_descriptor *gd_tss_gdt; struct thread *gd_npxthread; struct i386tss gd_common_tss; union savefpu gd_savefpu; /* fast bcopy/zero temp fpu save area */ int gd_fpu_lock; /* fast bcopy/zero cpu lock */ int gd_fpending; /* fast interrupt pending */ int gd_ipending; /* normal interrupt pending */ int gd_spending; /* software interrupt pending */ int gd_sdelayed; /* delayed software ints */ int gd_currentldt; int gd_private_tss; u_int 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; u_int gd_acpi_id; u_int gd_apic_id; }; #define MDGLOBALDATA_BASEALLOC_SIZE \ ((sizeof(struct mdglobaldata) + PAGE_MASK) & ~PAGE_MASK) #define MDGLOBALDATA_BASEALLOC_PAGES \ (MDGLOBALDATA_BASEALLOC_SIZE / PAGE_SIZE) #define MDGLOBALDATA_PAD \ (MDGLOBALDATA_BASEALLOC_SIZE - sizeof(struct mdglobaldata)) /* * 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 and page table indexes are hardwired * for SMPpt[] setup in i386/i386/mp_machdep.c and locore.s. * * WARNING! sizeof(privatespace[SMP_MAXCPU]) must fit in the KVA * reserved for the SMPpt page table (typically one page table page). * * WARNING! This structure must be a multiple of PAGE_SIZE. */ struct privatespace { /* main data page */ struct mdglobaldata mdglobaldata; char __filler0[MDGLOBALDATA_PAD]; /* mapping pages - CPAGE1,CPAGE2,CPAGE3,PPAGE1 */ char CPAGE1[PAGE_SIZE]; /* SMPpt[n+0] */ char CPAGE2[PAGE_SIZE]; /* SMPpt[n+1] */ char CPAGE3[PAGE_SIZE]; /* SMPpt[n+2] */ char PPAGE1[PAGE_SIZE]; /* SMPpt[n+3] */ /* idle stack (UPAGES pages) */ char idlestack[UPAGES * PAGE_SIZE]; /* SMPpt[n+4] */ }; #define mdcpu ((struct mdglobaldata *)_get_mycpu()) #endif #ifdef _KERNEL extern struct privatespace CPU_prvspace[]; #endif #endif