genassym.cf revision 1.29 1 1.29 thorpej # $NetBSD: genassym.cf,v 1.29 2025/07/08 11:45:25 thorpej Exp $
2 1.1 nisimura
3 1.1 nisimura #
4 1.1 nisimura # Copyright (c) 1982, 1990, 1993
5 1.1 nisimura # The Regents of the University of California. All rights reserved.
6 1.1 nisimura #
7 1.1 nisimura # Redistribution and use in source and binary forms, with or without
8 1.1 nisimura # modification, are permitted provided that the following conditions
9 1.1 nisimura # are met:
10 1.1 nisimura # 1. Redistributions of source code must retain the above copyright
11 1.1 nisimura # notice, this list of conditions and the following disclaimer.
12 1.1 nisimura # 2. Redistributions in binary form must reproduce the above copyright
13 1.1 nisimura # notice, this list of conditions and the following disclaimer in the
14 1.1 nisimura # documentation and/or other materials provided with the distribution.
15 1.15 tsutsui # 3. Neither the name of the University nor the names of its contributors
16 1.1 nisimura # may be used to endorse or promote products derived from this software
17 1.1 nisimura # without specific prior written permission.
18 1.1 nisimura #
19 1.1 nisimura # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 nisimura # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 nisimura # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 nisimura # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 nisimura # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 nisimura # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 nisimura # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 nisimura # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 nisimura # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 nisimura # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 nisimura # SUCH DAMAGE.
30 1.1 nisimura #
31 1.1 nisimura # @(#)genassym.c 8.3 (Berkeley) 1/4/94
32 1.1 nisimura #
33 1.1 nisimura
34 1.1 nisimura include <sys/param.h>
35 1.1 nisimura include <sys/buf.h>
36 1.1 nisimura include <sys/proc.h>
37 1.1 nisimura include <sys/mbuf.h>
38 1.1 nisimura include <sys/msgbuf.h>
39 1.1 nisimura include <sys/syscall.h>
40 1.1 nisimura
41 1.1 nisimura include <uvm/uvm_extern.h>
42 1.1 nisimura
43 1.1 nisimura include <machine/cpu.h>
44 1.25 thorpej include <machine/fcode.h>
45 1.1 nisimura include <machine/psl.h>
46 1.19 rmind include <machine/pcb.h>
47 1.1 nisimura include <machine/pte.h>
48 1.1 nisimura
49 1.1 nisimura # values for mmutype
50 1.1 nisimura define MMU_68030 MMU_68030
51 1.1 nisimura define MMU_68851 MMU_68851
52 1.1 nisimura define MMU_68040 MMU_68040
53 1.1 nisimura
54 1.1 nisimura # values for cputype
55 1.1 nisimura define CPU_68020 CPU_68020
56 1.1 nisimura define CPU_68030 CPU_68030
57 1.1 nisimura define CPU_68040 CPU_68040
58 1.1 nisimura
59 1.1 nisimura # CPU configuration options
60 1.1 nisimura ifdef M68020
61 1.1 nisimura define M68020 1
62 1.1 nisimura endif
63 1.1 nisimura ifdef M68030
64 1.1 nisimura define M68030 1
65 1.1 nisimura endif
66 1.1 nisimura ifdef M68040
67 1.1 nisimura define M68040 1
68 1.1 nisimura endif
69 1.1 nisimura
70 1.27 thorpej define M68K_MMU_MOTOROLA 1
71 1.27 thorpej
72 1.1 nisimura # values for fputype
73 1.1 nisimura define FPU_NONE FPU_NONE
74 1.1 nisimura define FPU_68881 FPU_68881
75 1.1 nisimura define FPU_68882 FPU_68882
76 1.1 nisimura define FPU_68040 FPU_68040
77 1.1 nisimura
78 1.1 nisimura # values for ectype
79 1.1 nisimura define EC_PHYS EC_PHYS
80 1.1 nisimura define EC_NONE EC_NONE
81 1.1 nisimura define EC_VIRT EC_VIRT
82 1.1 nisimura
83 1.1 nisimura # general constants
84 1.1 nisimura define UPAGES UPAGES
85 1.1 nisimura define USPACE USPACE
86 1.8 thorpej define PAGE_SIZE PAGE_SIZE
87 1.1 nisimura define PGSHIFT PGSHIFT
88 1.1 nisimura define USRSTACK USRSTACK
89 1.1 nisimura
90 1.24 thorpej # MMU configuration constants (from pmap.h)
91 1.24 thorpej export MMU51_SRP_BITS
92 1.24 thorpej export MMU51_CRP_BITS
93 1.24 thorpej export MMU51_TCR_BITS
94 1.24 thorpej export MMU40_TCR_BITS
95 1.24 thorpej
96 1.26 tsutsui # Transparent translation register values (from pmap.h)
97 1.29 thorpej # Used in mmu_subr.s
98 1.29 thorpej define MACHINE_TT0 LUNA68K_TT30_IO0
99 1.29 thorpej define MACHINE_TT1 LUNA68K_TT30_IO1
100 1.29 thorpej define MACHINE_ITT0 LUNA68K_TT40_IO0
101 1.29 thorpej define MACHINE_ITT1 LUNA68K_TT40_IO1
102 1.29 thorpej define MACHINE_DTT0 LUNA68K_TT40_IO0
103 1.29 thorpej define MACHINE_DTT1 LUNA68K_TT40_IO1
104 1.26 tsutsui
105 1.7 thorpej # lwp & proc fields and values
106 1.17 rmind define L_PCB offsetof(struct lwp, l_addr)
107 1.7 thorpej define L_PROC offsetof(struct lwp, l_proc)
108 1.7 thorpej define L_MD_REGS offsetof(struct lwp, l_md.md_regs)
109 1.7 thorpej define L_MD_FLAGS offsetof(struct lwp, l_md.md_flags)
110 1.7 thorpej define P_FLAG offsetof(struct proc, p_flag)
111 1.10 dsl define P_RASLIST offsetof(struct proc, p_raslist)
112 1.1 nisimura define P_VMSPACE offsetof(struct proc, p_vmspace)
113 1.7 thorpej
114 1.1 nisimura # interrupt/fault metering
115 1.18 matt define CI_NINTR offsetof(struct cpu_info, ci_data.cpu_nintr)
116 1.28 thorpej define CLOCK_INTRCNT ((sizeof(struct evcnt)*5) + offsetof(struct evcnt, ev_count32))
117 1.28 thorpej define NMI_INTRCNT ((sizeof(struct evcnt)*7) + offsetof(struct evcnt, ev_count32))
118 1.1 nisimura
119 1.1 nisimura define T_BUSERR T_BUSERR
120 1.1 nisimura define T_ADDRERR T_ADDRERR
121 1.1 nisimura define T_ILLINST T_ILLINST
122 1.1 nisimura define T_ZERODIV T_ZERODIV
123 1.1 nisimura define T_CHKINST T_CHKINST
124 1.1 nisimura define T_TRAPVINST T_TRAPVINST
125 1.1 nisimura define T_PRIVINST T_PRIVINST
126 1.1 nisimura define T_TRACE T_TRACE
127 1.1 nisimura define T_MMUFLT T_MMUFLT
128 1.1 nisimura define T_SSIR T_SSIR
129 1.1 nisimura define T_FMTERR T_FMTERR
130 1.1 nisimura define T_COPERR T_COPERR
131 1.1 nisimura define T_FPERR T_FPERR
132 1.1 nisimura define T_ASTFLT T_ASTFLT
133 1.1 nisimura define T_TRAP15 T_TRAP15
134 1.1 nisimura define T_FPEMULI T_FPEMULI
135 1.1 nisimura define T_FPEMULD T_FPEMULD
136 1.1 nisimura
137 1.1 nisimura # PSL values (should just include psl.h?)
138 1.1 nisimura define PSL_S PSL_S
139 1.1 nisimura define PSL_IPL7 PSL_IPL7
140 1.1 nisimura define PSL_LOWIPL PSL_LOWIPL
141 1.1 nisimura define PSL_HIGHIPL PSL_HIGHIPL
142 1.1 nisimura define PSL_USER PSL_USER
143 1.1 nisimura define PSL_TS PSL_T | PSL_S
144 1.1 nisimura define SPL1 PSL_S | PSL_IPL1
145 1.1 nisimura define SPL2 PSL_S | PSL_IPL2
146 1.1 nisimura define SPL3 PSL_S | PSL_IPL3
147 1.1 nisimura define SPL4 PSL_S | PSL_IPL4
148 1.1 nisimura define SPL5 PSL_S | PSL_IPL5
149 1.1 nisimura define SPL6 PSL_S | PSL_IPL6
150 1.1 nisimura
151 1.1 nisimura # magic
152 1.1 nisimura define FC_USERD FC_USERD
153 1.1 nisimura define FC_SUPERD FC_SUPERD
154 1.20 tsutsui define DC_FREEZE DC_FREEZE
155 1.20 tsutsui define CACHE40_ON CACHE40_ON
156 1.1 nisimura define CACHE_ON CACHE_ON
157 1.1 nisimura define CACHE_OFF CACHE_OFF
158 1.1 nisimura define CACHE_CLR CACHE_CLR
159 1.1 nisimura define IC_CLEAR IC_CLEAR
160 1.1 nisimura define DC_CLEAR DC_CLEAR
161 1.1 nisimura
162 1.1 nisimura # pte/ste bits
163 1.1 nisimura define PG_V PG_V
164 1.1 nisimura define PG_NV PG_NV
165 1.1 nisimura define PG_RO PG_RO
166 1.1 nisimura define PG_RW PG_RW
167 1.1 nisimura define PG_CI PG_CI
168 1.1 nisimura define PG_PROT PG_PROT
169 1.1 nisimura define PG_FRAME PG_FRAME
170 1.1 nisimura define SG_V SG_V
171 1.1 nisimura define SG_NV SG_NV
172 1.1 nisimura define SG_RW SG_RW
173 1.1 nisimura define SG_FRAME SG_FRAME
174 1.1 nisimura define SG_ISHIFT SG_ISHIFT
175 1.1 nisimura
176 1.1 nisimura # pcb fields
177 1.1 nisimura define PCB_PS offsetof(struct pcb, pcb_ps)
178 1.1 nisimura define PCB_USP offsetof(struct pcb, pcb_usp)
179 1.1 nisimura define PCB_REGS offsetof(struct pcb, pcb_regs)
180 1.1 nisimura define PCB_ONFAULT offsetof(struct pcb, pcb_onfault)
181 1.1 nisimura define PCB_FPCTX offsetof(struct pcb, pcb_fpregs)
182 1.1 nisimura define SIZEOF_PCB sizeof(struct pcb)
183 1.1 nisimura
184 1.7 thorpej # frame offsets
185 1.7 thorpej define TF_PC offsetof(struct frame, f_pc)
186 1.7 thorpej
187 1.1 nisimura # exception frame offset/sizes
188 1.1 nisimura define FR_SP offsetof(struct frame, f_regs[15])
189 1.1 nisimura define FR_HW offsetof(struct frame, f_sr)
190 1.1 nisimura define FR_ADJ offsetof(struct frame, f_stackadj)
191 1.1 nisimura define FR_SIZE sizeof(struct trapframe)
192 1.4 tsutsui
193 1.4 tsutsui # FP frame offsets
194 1.4 tsutsui define FPF_REGS offsetof(struct fpframe, fpf_regs[0])
195 1.4 tsutsui define FPF_FPCR offsetof(struct fpframe, fpf_fpcr)
196 1.1 nisimura
197 1.1 nisimura # system calls
198 1.1 nisimura define SYS_exit SYS_exit
199 1.1 nisimura define SYS_execve SYS_execve
200 1.9 cl define SYS_compat_16___sigreturn14 SYS_compat_16___sigreturn14
201 1.1 nisimura define SYS_compat_13_sigreturn13 SYS_compat_13_sigreturn13
202 1.1 nisimura
203 1.1 nisimura # errno
204 1.1 nisimura define EFAULT EFAULT
205 1.1 nisimura define ENAMETOOLONG ENAMETOOLONG
206