| Commit | Line | Data |
|---|---|---|
| d7f50089 YY |
1 | /*- |
| 2 | * Copyright (c) 1982, 1990 The Regents of the University of California. | |
| c8fe38ae | 3 | * Copyright (c) 2008 The DragonFly Project. |
| d7f50089 YY |
4 | * All rights reserved. |
| 5 | * | |
| 6 | * This code is derived from software contributed to Berkeley by | |
| 7 | * William Jolitz. | |
| 8 | * | |
| 9 | * Redistribution and use in source and binary forms, with or without | |
| 10 | * modification, are permitted provided that the following conditions | |
| 11 | * are met: | |
| 12 | * 1. Redistributions of source code must retain the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer. | |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 15 | * notice, this list of conditions and the following disclaimer in the | |
| 16 | * documentation and/or other materials provided with the distribution. | |
| 17 | * 3. All advertising materials mentioning features or use of this software | |
| 18 | * must display the following acknowledgement: | |
| 19 | * This product includes software developed by the University of | |
| 20 | * California, Berkeley and its contributors. | |
| 21 | * 4. Neither the name of the University nor the names of its contributors | |
| 22 | * may be used to endorse or promote products derived from this software | |
| 23 | * without specific prior written permission. | |
| 24 | * | |
| 25 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
| 26 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 27 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 28 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
| 29 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 30 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 31 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 32 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 33 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 34 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 35 | * SUCH DAMAGE. | |
| 36 | * | |
| 37 | * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91 | |
| 38 | * $FreeBSD: src/sys/i386/i386/genassym.c,v 1.86.2.3 2002/03/03 05:42:49 nyan Exp $ | |
| d7f50089 YY |
39 | */ |
| 40 | ||
| 41 | #include <sys/param.h> | |
| 42 | #include <sys/systm.h> | |
| 43 | #include <sys/assym.h> | |
| 44 | #include <sys/interrupt.h> | |
| 45 | #include <sys/buf.h> | |
| 46 | #include <sys/proc.h> | |
| 47 | #include <sys/errno.h> | |
| 48 | #include <sys/mount.h> | |
| 49 | #include <sys/socket.h> | |
| 50 | #include <sys/lock.h> | |
| 51 | #include <sys/resourcevar.h> | |
| 52 | #include <machine/frame.h> | |
| 53 | #include <machine/bootinfo.h> | |
| 54 | #include <machine/tss.h> | |
| 55 | #include <sys/vmmeter.h> | |
| 56 | #include <sys/machintr.h> | |
| 57 | #include <vm/vm.h> | |
| 58 | #include <vm/vm_param.h> | |
| 59 | #include <vm/pmap.h> | |
| 60 | #include <vm/vm_map.h> | |
| 61 | #include <net/if.h> | |
| 62 | #include <netinet/in.h> | |
| 63 | #include <vfs/nfs/nfsv2.h> | |
| 64 | #include <vfs/nfs/rpcv2.h> | |
| 65 | #include <vfs/nfs/nfs.h> | |
| 66 | #include <vfs/nfs/nfsdiskless.h> | |
| 67 | ||
| 46d4e165 | 68 | #include <machine_base/apic/apicreg.h> |
| 566d27d4 | 69 | #include <machine_base/apic/ioapic_abi.h> |
| d7f50089 YY |
70 | #include <machine/segments.h> |
| 71 | #include <machine/sigframe.h> | |
| 72 | #include <machine/globaldata.h> | |
| c8fe38ae | 73 | #include <machine/specialreg.h> |
| d7f50089 | 74 | #include <machine/pcb.h> |
| c2fb025d | 75 | #include <machine/pmap.h> |
| d7f50089 YY |
76 | |
| 77 | ASSYM(P_VMSPACE, offsetof(struct proc, p_vmspace)); | |
| 78 | ASSYM(VM_PMAP, offsetof(struct vmspace, vm_pmap)); | |
| 79 | ASSYM(PM_ACTIVE, offsetof(struct pmap, pm_active)); | |
| 80 | ||
| c8fe38ae | 81 | ASSYM(LWP_VMSPACE, offsetof(struct lwp, lwp_vmspace)); |
| 46d4e165 JG |
82 | ASSYM(V_IPI, offsetof(struct vmmeter, v_ipi)); |
| 83 | ASSYM(V_TIMER, offsetof(struct vmmeter, v_timer)); | |
| d7f50089 YY |
84 | ASSYM(UPAGES, UPAGES); |
| 85 | ASSYM(PAGE_SIZE, PAGE_SIZE); | |
| 86 | ASSYM(NPTEPG, NPTEPG); | |
| 87 | ASSYM(NPDEPG, NPDEPG); | |
| 88 | ASSYM(PDESIZE, PDESIZE); | |
| 89 | ASSYM(PTESIZE, PTESIZE); | |
| 90 | ASSYM(PAGE_SHIFT, PAGE_SHIFT); | |
| 91 | ASSYM(PAGE_MASK, PAGE_MASK); | |
| 92 | ASSYM(PDRSHIFT, PDRSHIFT); | |
| 93 | ASSYM(USRSTACK, USRSTACK); | |
| 94 | ASSYM(KERNBASE, KERNBASE); | |
| 95 | ||
| c8fe38ae MD |
96 | ASSYM(V_TRAP, offsetof(struct vmmeter, v_trap)); |
| 97 | ASSYM(V_SYSCALL, offsetof(struct vmmeter, v_syscall)); | |
| 98 | ASSYM(V_SENDSYS, offsetof(struct vmmeter, v_sendsys)); | |
| 99 | ASSYM(V_WAITSYS, offsetof(struct vmmeter, v_waitsys)); | |
| 100 | ASSYM(V_INTR, offsetof(struct vmmeter, v_intr)); | |
| 101 | ASSYM(V_FORWARDED_INTS, offsetof(struct vmmeter, v_forwarded_ints)); | |
| 102 | ASSYM(V_FORWARDED_HITS, offsetof(struct vmmeter, v_forwarded_hits)); | |
| 103 | ASSYM(V_FORWARDED_MISSES, offsetof(struct vmmeter, v_forwarded_misses)); | |
| 104 | ||
| d7f50089 YY |
105 | ASSYM(MAXCOMLEN, MAXCOMLEN); |
| 106 | ASSYM(EFAULT, EFAULT); | |
| 107 | ASSYM(ENAMETOOLONG, ENAMETOOLONG); | |
| 48ffc236 | 108 | ASSYM(VM_MAX_USER_ADDRESS, VM_MAX_USER_ADDRESS); |
| c8fe38ae | 109 | |
| d7f50089 | 110 | ASSYM(GD_CURTHREAD, offsetof(struct mdglobaldata, mi.gd_curthread)); |
| c8fe38ae MD |
111 | ASSYM(GD_CNT, offsetof(struct mdglobaldata, mi.gd_cnt)); |
| 112 | ASSYM(GD_CPUID, offsetof(struct mdglobaldata, mi.gd_cpuid)); | |
| c2fb025d | 113 | ASSYM(GD_CPUMASK, offsetof(struct mdglobaldata, mi.gd_cpumask)); |
| 433c75c3 | 114 | ASSYM(GD_SAMPLE_PC, offsetof(struct mdglobaldata, mi.gd_sample_pc)); |
| c8fe38ae MD |
115 | |
| 116 | ASSYM(PCB_CR3, offsetof(struct pcb, pcb_cr3)); | |
| 117 | ASSYM(PCB_R15, offsetof(struct pcb, pcb_r15)); | |
| 118 | ASSYM(PCB_R14, offsetof(struct pcb, pcb_r14)); | |
| 119 | ASSYM(PCB_R13, offsetof(struct pcb, pcb_r13)); | |
| 120 | ASSYM(PCB_R12, offsetof(struct pcb, pcb_r12)); | |
| 121 | ASSYM(PCB_RSI, offsetof(struct pcb, pcb_rsi)); | |
| 122 | ASSYM(PCB_RBP, offsetof(struct pcb, pcb_rbp)); | |
| 123 | ASSYM(PCB_RSP, offsetof(struct pcb, pcb_rsp)); | |
| 124 | ASSYM(PCB_RBX, offsetof(struct pcb, pcb_rbx)); | |
| 125 | ASSYM(PCB_RIP, offsetof(struct pcb, pcb_rip)); | |
| b2b3ffcd | 126 | ASSYM(TSS_RSP0, offsetof(struct x86_64tss, tss_rsp0)); |
| 0855a2af JG |
127 | |
| 128 | ASSYM(PCB_DR0, offsetof(struct pcb, pcb_dr0)); | |
| 129 | ASSYM(PCB_DR1, offsetof(struct pcb, pcb_dr1)); | |
| 130 | ASSYM(PCB_DR2, offsetof(struct pcb, pcb_dr2)); | |
| 131 | ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3)); | |
| 132 | ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6)); | |
| 133 | ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7)); | |
| 134 | ASSYM(PCB_DBREGS, PCB_DBREGS); | |
| c8fe38ae | 135 | ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext)); |
| c8fe38ae | 136 | ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags)); |
| d7f50089 | 137 | ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault)); |
| 93ad6da2 | 138 | ASSYM(PCB_ONFAULT_SP, offsetof(struct pcb, pcb_onfault_sp)); |
| c8fe38ae MD |
139 | ASSYM(PCB_FSBASE, offsetof(struct pcb, pcb_fsbase)); |
| 140 | ASSYM(PCB_GSBASE, offsetof(struct pcb, pcb_gsbase)); | |
| c4f8086e | 141 | ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save)); |
| c8fe38ae | 142 | |
| 46d4e165 | 143 | ASSYM(PCB_SIZE, sizeof(struct pcb)); |
| c4f8086e | 144 | ASSYM(PCB_SAVEFPU_SIZE, sizeof(union savefpu)); |
| 46d4e165 | 145 | |
| c8fe38ae MD |
146 | ASSYM(TF_R15, offsetof(struct trapframe, tf_r15)); |
| 147 | ASSYM(TF_R14, offsetof(struct trapframe, tf_r14)); | |
| 148 | ASSYM(TF_R13, offsetof(struct trapframe, tf_r13)); | |
| 149 | ASSYM(TF_R12, offsetof(struct trapframe, tf_r12)); | |
| 150 | ASSYM(TF_R11, offsetof(struct trapframe, tf_r11)); | |
| 151 | ASSYM(TF_R10, offsetof(struct trapframe, tf_r10)); | |
| 152 | ASSYM(TF_R9, offsetof(struct trapframe, tf_r9)); | |
| 153 | ASSYM(TF_R8, offsetof(struct trapframe, tf_r8)); | |
| 154 | ASSYM(TF_RDI, offsetof(struct trapframe, tf_rdi)); | |
| 155 | ASSYM(TF_RSI, offsetof(struct trapframe, tf_rsi)); | |
| 156 | ASSYM(TF_RBP, offsetof(struct trapframe, tf_rbp)); | |
| 157 | ASSYM(TF_RBX, offsetof(struct trapframe, tf_rbx)); | |
| 158 | ASSYM(TF_RDX, offsetof(struct trapframe, tf_rdx)); | |
| 159 | ASSYM(TF_RCX, offsetof(struct trapframe, tf_rcx)); | |
| 160 | ASSYM(TF_RAX, offsetof(struct trapframe, tf_rax)); | |
| 161 | ||
| 162 | ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno)); | |
| 5b9f6cc4 | 163 | ASSYM(TF_XFLAGS, offsetof(struct trapframe, tf_xflags)); |
| c8fe38ae MD |
164 | ASSYM(TF_ADDR, offsetof(struct trapframe, tf_addr)); |
| 165 | ASSYM(TF_ERR, offsetof(struct trapframe, tf_err)); | |
| 166 | ASSYM(TF_FLAGS, offsetof(struct trapframe, tf_flags)); | |
| 167 | ||
| 168 | ASSYM(TF_RIP, offsetof(struct trapframe, tf_rip)); | |
| 169 | ASSYM(TF_CS, offsetof(struct trapframe, tf_cs)); | |
| 170 | ASSYM(TF_RFLAGS, offsetof(struct trapframe, tf_rflags)); | |
| 171 | ASSYM(TF_RSP, offsetof(struct trapframe, tf_rsp)); | |
| 172 | ASSYM(TF_SS, offsetof(struct trapframe, tf_ss)); | |
| 173 | ASSYM(TF_SIZE, sizeof(struct trapframe)); | |
| d7f50089 YY |
174 | |
| 175 | ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler)); | |
| 176 | ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc)); | |
| 177 | ||
| c8fe38ae MD |
178 | ASSYM(TD_PROC, offsetof(struct thread, td_proc)); |
| 179 | ASSYM(TD_LWP, offsetof(struct thread, td_lwp)); | |
| 180 | ASSYM(TD_PCB, offsetof(struct thread, td_pcb)); | |
| 181 | ASSYM(TD_SP, offsetof(struct thread, td_sp)); | |
| 182 | ASSYM(TD_PRI, offsetof(struct thread, td_pri)); | |
| f9235b6d | 183 | ASSYM(TD_CRITCOUNT, offsetof(struct thread, td_critcount)); |
| c8fe38ae MD |
184 | ASSYM(TD_MACH, offsetof(struct thread, td_mach)); |
| 185 | ASSYM(TD_WCHAN, offsetof(struct thread, td_wchan)); | |
| 186 | ASSYM(TD_NEST_COUNT, offsetof(struct thread, td_nest_count)); | |
| c8fe38ae | 187 | ASSYM(TD_FLAGS, offsetof(struct thread, td_flags)); |
| c4f8086e | 188 | ASSYM(TD_SAVEFPU, offsetof(struct thread, td_savefpu)); |
| c8fe38ae MD |
189 | ASSYM(TDF_RUNNING, TDF_RUNNING); |
| 190 | ASSYM(TDF_USINGFP, TDF_USINGFP); | |
| 191 | ASSYM(TDF_KERNELFP, TDF_KERNELFP); | |
| 192 | ||
| 193 | ASSYM(FIRST_SOFTINT, FIRST_SOFTINT); | |
| 194 | ASSYM(MDGLOBALDATA_BASEALLOC_PAGES, MDGLOBALDATA_BASEALLOC_PAGES); | |
| 195 | ||
| 196 | ASSYM(GD_PRIVATE_TSS, offsetof(struct mdglobaldata, gd_private_tss)); | |
| 197 | ASSYM(GD_SCRATCH_RSP, offsetof(struct mdglobaldata, gd_scratch_rsp)); | |
| c8fe38ae MD |
198 | ASSYM(GD_USER_FS, offsetof(struct mdglobaldata, gd_user_fs)); |
| 199 | ASSYM(GD_USER_GS, offsetof(struct mdglobaldata, gd_user_gs)); | |
| 200 | ASSYM(GD_INTR_NESTING_LEVEL, offsetof(struct mdglobaldata, mi.gd_intr_nesting_level)); | |
| 201 | ||
| 9611ff20 | 202 | ASSYM(GD_IPENDING, offsetof(struct mdglobaldata, gd_ipending)); |
| c8fe38ae MD |
203 | ASSYM(GD_SPENDING, offsetof(struct mdglobaldata, gd_spending)); |
| 204 | ASSYM(GD_COMMON_TSS, offsetof(struct mdglobaldata, gd_common_tss)); | |
| 205 | ASSYM(GD_COMMON_TSSD, offsetof(struct mdglobaldata, gd_common_tssd)); | |
| 206 | ASSYM(GD_TSS_GDT, offsetof(struct mdglobaldata, gd_tss_gdt)); | |
| 207 | ASSYM(GD_NPXTHREAD, offsetof(struct mdglobaldata, gd_npxthread)); | |
| 208 | ASSYM(GD_FPU_LOCK, offsetof(struct mdglobaldata, gd_fpu_lock)); | |
| 209 | ASSYM(GD_SAVEFPU, offsetof(struct mdglobaldata, gd_savefpu)); | |
| da23a592 | 210 | ASSYM(GD_OTHER_CPUS, offsetof(struct mdglobaldata, mi.gd_other_cpus)); |
| c8fe38ae MD |
211 | ASSYM(GD_SS_EFLAGS, offsetof(struct mdglobaldata, gd_ss_eflags)); |
| 212 | ASSYM(GD_REQFLAGS, offsetof(struct mdglobaldata, mi.gd_reqflags)); | |
| 213 | ||
| 214 | ASSYM(RQF_IPIQ, RQF_IPIQ); | |
| 215 | ASSYM(RQF_INTPEND, RQF_INTPEND); | |
| 216 | ASSYM(RQF_AST_OWEUPC, RQF_AST_OWEUPC); | |
| 217 | ASSYM(RQF_AST_SIGNAL, RQF_AST_SIGNAL); | |
| 218 | ASSYM(RQF_AST_USER_RESCHED, RQF_AST_USER_RESCHED); | |
| 219 | ASSYM(RQF_AST_LWKT_RESCHED, RQF_AST_LWKT_RESCHED); | |
| 46d4e165 | 220 | ASSYM(RQF_TIMER, RQF_TIMER); |
| c8fe38ae | 221 | ASSYM(RQF_AST_MASK, RQF_AST_MASK); |
| f2081646 | 222 | ASSYM(RQF_QUICKRET, RQF_QUICKRET); |
| c8fe38ae | 223 | |
| 46d4e165 JG |
224 | ASSYM(LA_EOI, offsetof(struct LAPIC, eoi)); |
| 225 | ||
| d7f50089 YY |
226 | ASSYM(KCSEL, GSEL(GCODE_SEL, SEL_KPL)); |
| 227 | ASSYM(KDSEL, GSEL(GDATA_SEL, SEL_KPL)); | |
| c8fe38ae MD |
228 | ASSYM(KUCSEL, GSEL(GUCODE_SEL, SEL_UPL)); |
| 229 | ASSYM(KUDSEL, GSEL(GUDATA_SEL, SEL_UPL)); | |
| bfc09ba0 | 230 | /*ASSYM(SEL_RPL_MASK, SEL_RPL_MASK);*/ |
| d7f50089 | 231 | |
| c8fe38ae MD |
232 | ASSYM(MSR_GSBASE, MSR_GSBASE); |
| 233 | ASSYM(MSR_KGSBASE, MSR_KGSBASE); | |
| 234 | ASSYM(MSR_FSBASE, MSR_FSBASE); | |
| 235 | ||
| 35b2edcb | 236 | ASSYM(MACHINTR_INTREN, offsetof(struct machintr_abi, intr_enable)); |
| d7f50089 | 237 | |
| d7f50089 | 238 | ASSYM(TDPRI_INT_SUPPORT, TDPRI_INT_SUPPORT); |
| c2fb025d | 239 | ASSYM(CPUMASK_LOCK, CPUMASK_LOCK); |
| da23a592 | 240 | ASSYM(CPUMASK_BIT, CPUMASK_BIT); |
| 46d4e165 | 241 | |
| 5ac5ccd2 SZ |
242 | ASSYM(IOAPIC_IRQI_ADDR, offsetof(struct ioapic_irqinfo, io_addr)); |
| 243 | ASSYM(IOAPIC_IRQI_IDX, offsetof(struct ioapic_irqinfo, io_idx)); | |
| 244 | ASSYM(IOAPIC_IRQI_FLAGS, offsetof(struct ioapic_irqinfo, io_flags)); | |
| 245 | ASSYM(IOAPIC_IRQI_SIZE, sizeof(struct ioapic_irqinfo)); | |
| 246 | ASSYM(IOAPIC_IRQI_SZSHIFT, IOAPIC_IRQI_SZSHIFT); | |
| 247 | ASSYM(IOAPIC_IRQI_FLAG_LEVEL, IOAPIC_IRQI_FLAG_LEVEL); | |
| 248 | ASSYM(IOAPIC_IRQI_FLAG_MASKED, IOAPIC_IRQI_FLAG_MASKED); |