/*- * Copyright (c) Peter Wemm * Copyright (c) 2008 The DragonFly Project. * 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. * * $FreeBSD: src/sys/i386/i386/globals.s,v 1.13.2.1 2000/05/16 06:58:06 dillon Exp $ */ #include #include #include "assym.s" /* * Define the layout of the per-cpu address space. This is * "constructed" in locore.s on the BSP and in mp_machdep.c for * each AP. DO NOT REORDER THESE WITHOUT UPDATING THE REST! * * On UP the per-cpu address space is simply placed in the data * segment. */ .data #if JG .globl CPU_prvspace, lapic .set CPU_prvspace,(MPPTDI << PDRSHIFT) /* JG TODO check for correctness */ .set lapic,CPU_prvspace + (NPTEPG-1) * PAGE_SIZE #endif .globl globaldata .set globaldata,0 /* * Define layout of the global data. On SMP this lives in * the per-cpu address space, otherwise it's in the data segment. */ .globl gd_curthread, gd_npxthread, gd_reqflags, gd_common_tss .set gd_curthread,globaldata + GD_CURTHREAD .set gd_npxthread,globaldata + GD_NPXTHREAD .set gd_reqflags,globaldata + GD_REQFLAGS .set gd_common_tss,globaldata + GD_COMMON_TSS .globl gd_common_tssd, gd_tss_gdt .set gd_common_tssd,globaldata + GD_COMMON_TSSD .set gd_tss_gdt,globaldata + GD_TSS_GDT .globl gd_currentldt .set gd_currentldt,globaldata + GD_CURRENTLDT .globl gd_fpu_lock, gd_savefpu .set gd_fpu_lock, globaldata + GD_FPU_LOCK .set gd_savefpu, globaldata + GD_SAVEFPU /* * The BSP version of these get setup in locore.s and pmap.c, while * the AP versions are setup in mp_machdep.c. */ .globl gd_cpuid, gd_other_cpus .globl gd_ss_eflags, gd_intr_nesting_level .globl gd_CMAP1, gd_CMAP2, gd_CMAP3, gd_PMAP1 .globl gd_CADDR1, gd_CADDR2, gd_CADDR3, gd_PADDR1 .globl gd_spending, gd_fpending .globl gd_cnt, gd_private_tss .globl gd_scratch_rsp, gd_rsp0 .globl gd_user_fs, gd_user_gs .set gd_cpuid,globaldata + GD_CPUID .set gd_private_tss,globaldata + GD_PRIVATE_TSS .set gd_other_cpus,globaldata + GD_OTHER_CPUS .set gd_ss_eflags,globaldata + GD_SS_EFLAGS .set gd_intr_nesting_level,globaldata + GD_INTR_NESTING_LEVEL .set gd_CMAP1,globaldata + GD_PRV_CMAP1 .set gd_CMAP2,globaldata + GD_PRV_CMAP2 .set gd_CMAP3,globaldata + GD_PRV_CMAP3 .set gd_PMAP1,globaldata + GD_PRV_PMAP1 .set gd_CADDR1,globaldata + GD_PRV_CADDR1 .set gd_CADDR2,globaldata + GD_PRV_CADDR2 .set gd_CADDR3,globaldata + GD_PRV_CADDR3 .set gd_PADDR1,globaldata + GD_PRV_PADDR1 .set gd_fpending,globaldata + GD_FPENDING .set gd_spending,globaldata + GD_SPENDING .set gd_cnt,globaldata + GD_CNT .set gd_scratch_rsp,globaldata + GD_SCRATCH_RSP .set gd_rsp0,globaldata + GD_RSP0 .set gd_user_fs,globaldata + GD_USER_FS .set gd_user_gs,globaldata + GD_USER_GS