pte.h revision 1.23 1 1.23 kleink /* $NetBSD: pte.h,v 1.23 2001/05/01 20:37:44 kleink Exp $ */
2 1.7 deraadt
3 1.1 deraadt /*
4 1.15 pk * Copyright (c) 1996
5 1.17 abrown * The President and Fellows of Harvard College. All rights reserved.
6 1.1 deraadt * Copyright (c) 1992, 1993
7 1.1 deraadt * The Regents of the University of California. All rights reserved.
8 1.1 deraadt *
9 1.1 deraadt * This software was developed by the Computer Systems Engineering group
10 1.1 deraadt * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
11 1.1 deraadt * contributed to Berkeley.
12 1.1 deraadt *
13 1.1 deraadt * All advertising materials mentioning features or use of this software
14 1.15 pk * must display the following acknowledgements:
15 1.15 pk * This product includes software developed by Harvard University.
16 1.1 deraadt * This product includes software developed by the University of
17 1.1 deraadt * California, Lawrence Berkeley Laboratory.
18 1.1 deraadt *
19 1.1 deraadt * Redistribution and use in source and binary forms, with or without
20 1.1 deraadt * modification, are permitted provided that the following conditions
21 1.1 deraadt * are met:
22 1.1 deraadt * 1. Redistributions of source code must retain the above copyright
23 1.1 deraadt * notice, this list of conditions and the following disclaimer.
24 1.1 deraadt * 2. Redistributions in binary form must reproduce the above copyright
25 1.1 deraadt * notice, this list of conditions and the following disclaimer in the
26 1.1 deraadt * documentation and/or other materials provided with the distribution.
27 1.1 deraadt * 3. All advertising materials mentioning features or use of this software
28 1.15 pk * must display the following acknowledgements:
29 1.15 pk * This product includes software developed by Harvard University.
30 1.1 deraadt * This product includes software developed by the University of
31 1.1 deraadt * California, Berkeley and its contributors.
32 1.1 deraadt * 4. Neither the name of the University nor the names of its contributors
33 1.1 deraadt * may be used to endorse or promote products derived from this software
34 1.1 deraadt * without specific prior written permission.
35 1.1 deraadt *
36 1.1 deraadt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
37 1.1 deraadt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 1.1 deraadt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
39 1.1 deraadt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
40 1.1 deraadt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
41 1.1 deraadt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
42 1.1 deraadt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 1.1 deraadt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
44 1.1 deraadt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
45 1.1 deraadt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46 1.1 deraadt * SUCH DAMAGE.
47 1.1 deraadt *
48 1.1 deraadt * @(#)pte.h 8.1 (Berkeley) 6/11/93
49 1.1 deraadt */
50 1.1 deraadt
51 1.1 deraadt /*
52 1.15 pk * Sun-4 (sort of), 4c (SparcStation), and 4m Page Table Entries
53 1.15 pk * (Sun calls them `Page Map Entries').
54 1.1 deraadt */
55 1.1 deraadt
56 1.13 mycroft #ifndef _LOCORE
57 1.1 deraadt /*
58 1.1 deraadt * Segment maps contain `pmeg' (Page Map Entry Group) numbers.
59 1.1 deraadt * A PMEG is simply an index that names a group of 32 (sun4) or
60 1.1 deraadt * 64 (sun4c) PTEs.
61 1.9 pk * Depending on the CPU model, we need 7 (sun4c) to 10 (sun4/400) bits
62 1.9 pk * to hold the hardware MMU resource number.
63 1.1 deraadt */
64 1.9 pk typedef u_short pmeg_t; /* 10 bits needed per Sun-4 segmap entry */
65 1.8 pk /*
66 1.8 pk * Region maps contain `smeg' (Segment Entry Group) numbers.
67 1.9 pk * An SMEG is simply an index that names a group of 64 PMEGs.
68 1.8 pk */
69 1.9 pk typedef u_char smeg_t; /* 8 bits needed per Sun-4 regmap entry */
70 1.1 deraadt #endif
71 1.1 deraadt
72 1.1 deraadt /*
73 1.1 deraadt * Address translation works as follows:
74 1.1 deraadt *
75 1.8 pk * (for sun4c and 2-level sun4)
76 1.1 deraadt * 1. test va<31:29> -- these must be 000 or 111 (or you get a fault)
77 1.1 deraadt * 2. concatenate context_reg<2:0> and va<29:18> to get a 15 bit number;
78 1.8 pk * use this to index the segment maps, yielding a 7 or 9 bit value.
79 1.8 pk * (for 3-level sun4)
80 1.8 pk * 1. concatenate context_reg<3:0> and va<31:24> to get a 8 bit number;
81 1.8 pk * use this to index the region maps, yielding a 10 bit value.
82 1.8 pk * 2. take the value from (1) above and concatenate va<17:12> to
83 1.8 pk * get a `segment map entry' index. This gives a 9 bit value.
84 1.1 deraadt * (for sun4c)
85 1.1 deraadt * 3. take the value from (2) above and concatenate va<17:12> to
86 1.1 deraadt * get a `page map entry' index. This gives a 32-bit PTE.
87 1.1 deraadt * (for sun4)
88 1.8 pk * 3. take the value from (2 or 3) above and concatenate va<17:13> to
89 1.1 deraadt * get a `page map entry' index. This gives a 32-bit PTE.
90 1.15 pk **
91 1.15 pk * For sun4m:
92 1.15 pk * 1. Use context_reg<3:0> to index the context table (located at
93 1.15 pk * (context_reg << 2) | ((ctx_tbl_ptr_reg >> 2) << 6) ). This
94 1.15 pk * gives a 32-bit page-table-descriptor (PTP).
95 1.15 pk * 2. Use va<31:24> to index the region table located by the PTP from (1):
96 1.15 pk * PTP<31:6> << 10. This gives another PTP for the segment tables
97 1.15 pk * 3. Use va<23:18> to index the segment table located by the PTP from (2)
98 1.15 pk * as follows: PTP<31:4> << 8. This gives another PTP for the page tbl.
99 1.15 pk * 4. Use va<17:12> to index the page table given by (3)'s PTP:
100 1.15 pk * PTP<31:4> << 8. This gives a 32-bit PTE.
101 1.1 deraadt *
102 1.1 deraadt * In other words:
103 1.1 deraadt *
104 1.8 pk * struct sun4_3_levelmmu_virtual_addr {
105 1.8 pk * u_int va_reg:8, (virtual region)
106 1.8 pk * va_seg:6, (virtual segment)
107 1.8 pk * va_pg:5, (virtual page within segment)
108 1.8 pk * va_off:13; (offset within page)
109 1.8 pk * };
110 1.1 deraadt * struct sun4_virtual_addr {
111 1.1 deraadt * u_int :2, (required to be the same as bit 29)
112 1.1 deraadt * va_seg:12, (virtual segment)
113 1.1 deraadt * va_pg:5, (virtual page within segment)
114 1.1 deraadt * va_off:13; (offset within page)
115 1.1 deraadt * };
116 1.1 deraadt * struct sun4c_virtual_addr {
117 1.1 deraadt * u_int :2, (required to be the same as bit 29)
118 1.1 deraadt * va_seg:12, (virtual segment)
119 1.1 deraadt * va_pg:6, (virtual page within segment)
120 1.1 deraadt * va_off:12; (offset within page)
121 1.1 deraadt * };
122 1.1 deraadt *
123 1.15 pk * struct sun4m_virtual_addr {
124 1.15 pk * u_int va_reg:8, (virtual region)
125 1.15 pk * va_seg:6, (virtual segment within region)
126 1.15 pk * va_pg:6, (virtual page within segment)
127 1.15 pk * va_off:12; (offset within page)
128 1.15 pk * };
129 1.15 pk *
130 1.1 deraadt * Then, given any `va':
131 1.1 deraadt *
132 1.8 pk * extern smeg_t regmap[16][1<<8]; (3-level MMU only)
133 1.1 deraadt * extern pmeg_t segmap[8][1<<12]; ([16][1<<12] for sun4)
134 1.1 deraadt * extern int ptetable[128][1<<6]; ([512][1<<5] for sun4)
135 1.1 deraadt *
136 1.15 pk * extern u_int s4m_ctxmap[16]; (sun4m SRMMU only)
137 1.15 pk * extern u_int s4m_regmap[16][1<<8]; (sun4m SRMMU only)
138 1.15 pk * extern u_int s4m_segmap[1<<8][1<<6]; (sun4m SRMMU only)
139 1.15 pk * extern u_int s4m_pagmap[1<<14][1<<6]; (sun4m SRMMU only)
140 1.15 pk *
141 1.15 pk * (the above being in the hardware, accessed as Alternate Address Spaces on
142 1.15 pk * all machines but the Sun4m SRMMU, in which case the tables are in physical
143 1.15 pk * kernel memory. In the 4m architecture, the tables are not layed out as
144 1.15 pk * 2-dim arrays, but are sparsely allocated as needed, and point to each
145 1.15 pk * other.)
146 1.15 pk *
147 1.15 pk * if (cputyp==CPU_SUN4M) // SPARC Reference MMU
148 1.15 pk * regptp = s4m_ctxmap[curr_ctx];
149 1.15 pk * if (!(regptp & SRMMU_TEPTD)) TRAP();
150 1.15 pk * segptp = *(u_int *)(((regptp & ~0x3) << 4) | va.va_reg);
151 1.15 pk * if (!(segptp & SRMMU_TEPTD)) TRAP();
152 1.15 pk * pagptp = *(u_int *)(((segptp & ~0x3) << 4) | va.va_seg);
153 1.15 pk * if (!(pagptp & SRMMU_TEPTD)) TRAP();
154 1.15 pk * pte = *(u_int *)(((pagptp & ~0x3) << 4) | va.va_pg);
155 1.15 pk * if (!(pte & SRMMU_TEPTE)) TRAP(); // like PG_V
156 1.15 pk * if (usermode && PTE_PROT_LEVEL(pte) > 0x5) TRAP();
157 1.15 pk * if (writing && !PTE_PROT_LEVEL_ALLOWS_WRITING(pte)) TRAP();
158 1.15 pk * if (!(pte & SRMMU_PG_C)) DO_NOT_USE_CACHE_FOR_THIS_ACCESS();
159 1.15 pk * pte |= SRMMU_PG_U;
160 1.15 pk * if (writing) pte |= PG_M;
161 1.15 pk * physaddr = ((pte & SRMMU_PG_PFNUM) << SRMMU_PGSHIFT)|va.va_off;
162 1.15 pk * return;
163 1.8 pk * if (mmu_3l)
164 1.8 pk * physreg = regmap[curr_ctx][va.va_reg];
165 1.8 pk * physseg = segmap[physreg][va.va_seg];
166 1.8 pk * else
167 1.8 pk * physseg = segmap[curr_ctx][va.va_seg];
168 1.1 deraadt * pte = ptetable[physseg][va.va_pg];
169 1.1 deraadt * if (!(pte & PG_V)) TRAP();
170 1.1 deraadt * if (writing && !pte.pg_w) TRAP();
171 1.1 deraadt * if (usermode && pte.pg_s) TRAP();
172 1.1 deraadt * if (pte & PG_NC) DO_NOT_USE_CACHE_FOR_THIS_ACCESS();
173 1.1 deraadt * pte |= PG_U; (mark used/accessed)
174 1.1 deraadt * if (writing) pte |= PG_M; (mark modified)
175 1.1 deraadt * ptetable[physseg][va.va_pg] = pte;
176 1.1 deraadt * physadr = ((pte & PG_PFNUM) << PGSHIFT) | va.va_off;
177 1.1 deraadt */
178 1.1 deraadt
179 1.18 pk #if defined(SUN4_MMU3L) && !defined(SUN4)
180 1.8 pk #error "configuration error"
181 1.8 pk #endif
182 1.8 pk
183 1.12 pk #define NBPRG (1 << 24) /* bytes per region */
184 1.12 pk #define RGSHIFT 24 /* log2(NBPRG) */
185 1.12 pk #define RGOFSET (NBPRG - 1) /* mask for region offset */
186 1.8 pk #define NSEGRG (NBPRG / NBPSG) /* segments per region */
187 1.8 pk
188 1.1 deraadt #define NBPSG (1 << 18) /* bytes per segment */
189 1.1 deraadt #define SGSHIFT 18 /* log2(NBPSG) */
190 1.1 deraadt #define SGOFSET (NBPSG - 1) /* mask for segment offset */
191 1.1 deraadt
192 1.1 deraadt /* number of PTEs that map one segment (not number that fit in one segment!) */
193 1.15 pk #if defined(SUN4) && (defined(SUN4C) || defined(SUN4M))
194 1.2 deraadt extern int nptesg;
195 1.4 deraadt #define NPTESG nptesg /* (which someone will have to initialize) */
196 1.1 deraadt #else
197 1.1 deraadt #define NPTESG (NBPSG / NBPG)
198 1.1 deraadt #endif
199 1.1 deraadt
200 1.8 pk /* virtual address to virtual region number */
201 1.8 pk #define VA_VREG(va) (((unsigned int)(va) >> RGSHIFT) & 255)
202 1.8 pk
203 1.1 deraadt /* virtual address to virtual segment number */
204 1.8 pk #define VA_VSEG(va) (((unsigned int)(va) >> SGSHIFT) & 63)
205 1.1 deraadt
206 1.1 deraadt /* virtual address to virtual page number, for Sun-4 and Sun-4c */
207 1.1 deraadt #define VA_SUN4_VPG(va) (((int)(va) >> 13) & 31)
208 1.1 deraadt #define VA_SUN4C_VPG(va) (((int)(va) >> 12) & 63)
209 1.15 pk #define VA_SUN4M_VPG(va) (((int)(va) >> 12) & 63)
210 1.15 pk
211 1.15 pk /* virtual address to offset within page */
212 1.15 pk #define VA_SUN4_OFF(va) (((int)(va)) & 0x1FFF)
213 1.15 pk #define VA_SUN4C_OFF(va) (((int)(va)) & 0xFFF)
214 1.15 pk #define VA_SUN4M_OFF(va) (((int)(va)) & 0xFFF)
215 1.1 deraadt
216 1.8 pk /* truncate virtual address to region base */
217 1.8 pk #define VA_ROUNDDOWNTOREG(va) ((int)(va) & ~RGOFSET)
218 1.8 pk
219 1.1 deraadt /* truncate virtual address to segment base */
220 1.1 deraadt #define VA_ROUNDDOWNTOSEG(va) ((int)(va) & ~SGOFSET)
221 1.1 deraadt
222 1.8 pk /* virtual segment to virtual address (must sign extend on holy MMUs!) */
223 1.18 pk #define VRTOVA(vr) ((CPU_ISSUN4M || HASSUN4_MMU3L) \
224 1.18 pk ? ((int)(vr) << RGSHIFT) \
225 1.8 pk : (((int)(vr) << (RGSHIFT+2)) >> 2))
226 1.18 pk #define VSTOVA(vr,vs) ((CPU_ISSUN4M || HASSUN4_MMU3L) \
227 1.15 pk ? (((int)(vr) << RGSHIFT) + ((int)(vs) << SGSHIFT)) \
228 1.15 pk : ((((int)(vr) << (RGSHIFT+2)) >> 2) + ((int)(vs) << SGSHIFT)))
229 1.1 deraadt
230 1.9 pk extern int mmu_has_hole;
231 1.9 pk #define VA_INHOLE(va) (mmu_has_hole \
232 1.9 pk ? ( (unsigned int)(((int)(va) >> PG_VSHIFT) + 1) > 1) \
233 1.9 pk : 0)
234 1.9 pk
235 1.9 pk /* Define the virtual address space hole */
236 1.9 pk #define MMU_HOLE_START 0x20000000
237 1.9 pk #define MMU_HOLE_END 0xe0000000
238 1.9 pk
239 1.15 pk #if defined(SUN4M) /* Optimization: sun4m, sun4c have same page */
240 1.15 pk #if defined(SUN4) /* size, so they're used interchangeably */
241 1.15 pk #define VA_VPG(va) (cputyp==CPU_SUN4 ? VA_SUN4_VPG(va) : VA_SUN4C_VPG(va))
242 1.19 pk #define VA_OFF(va) (cputyp==CPU_SUN4 ? VA_SUN4_OFF(va) : VA_SUN4C_OFF(va))
243 1.15 pk #else
244 1.15 pk #define VA_VPG(va) VA_SUN4M_VPG(va)
245 1.15 pk #define VA_OFF(va) VA_SUN4M_OFF(va)
246 1.15 pk #endif /* defined SUN4 */
247 1.15 pk #else /* 4m not defined */
248 1.4 deraadt #if defined(SUN4) && defined(SUN4C)
249 1.4 deraadt #define VA_VPG(va) (cputyp==CPU_SUN4C ? VA_SUN4C_VPG(va) : VA_SUN4_VPG(va))
250 1.15 pk #define VA_OFF(va) (cputyp==CPU_SUN4C ? VA_SUN4C_OFF(va) : VA_SUN4_OFF(va))
251 1.4 deraadt #endif
252 1.4 deraadt #if defined(SUN4C) && !defined(SUN4)
253 1.4 deraadt #define VA_VPG(va) VA_SUN4C_VPG(va)
254 1.15 pk #define VA_OFF(va) VA_SUN4C_OFF(va)
255 1.1 deraadt #endif
256 1.4 deraadt #if !defined(SUN4C) && defined(SUN4)
257 1.4 deraadt #define VA_VPG(va) VA_SUN4_VPG(va)
258 1.15 pk #define VA_OFF(va) VA_SUN4_OFF(va)
259 1.1 deraadt #endif
260 1.15 pk #endif /* defined 4m */
261 1.1 deraadt
262 1.15 pk /* there is no `struct pte'; we just use `int'; this is for non-4M only */
263 1.1 deraadt #define PG_V 0x80000000
264 1.1 deraadt #define PG_PROT 0x60000000 /* both protection bits */
265 1.1 deraadt #define PG_W 0x40000000 /* allowed to write */
266 1.1 deraadt #define PG_S 0x20000000 /* supervisor only */
267 1.1 deraadt #define PG_NC 0x10000000 /* non-cacheable */
268 1.1 deraadt #define PG_TYPE 0x0c000000 /* both type bits */
269 1.1 deraadt
270 1.1 deraadt #define PG_OBMEM 0x00000000 /* on board memory */
271 1.1 deraadt #define PG_OBIO 0x04000000 /* on board I/O (incl. Sbus on 4c) */
272 1.1 deraadt #define PG_VME16 0x08000000 /* 16-bit-data VME space */
273 1.1 deraadt #define PG_VME32 0x0c000000 /* 32-bit-data VME space */
274 1.15 pk #if defined(SUN4M)
275 1.15 pk #define PG_SUN4M_OBMEM 0x0 /* No type bits=>obmem on 4m */
276 1.15 pk #define PG_SUN4M_OBIO 0xf /* obio maps to 0xf on 4M */
277 1.15 pk #define SRMMU_PGTYPE 0xf0000000 /* Top 4 bits of pte PPN give type */
278 1.1 deraadt #endif
279 1.1 deraadt
280 1.1 deraadt #define PG_U 0x02000000
281 1.1 deraadt #define PG_M 0x01000000
282 1.15 pk #define PG_IOC 0x00800000
283 1.11 pk #define PG_MBZ 0x00780000 /* unused; must be zero (oh really?) */
284 1.1 deraadt #define PG_PFNUM 0x0007ffff /* n.b.: only 16 bits on sun4c */
285 1.1 deraadt
286 1.1 deraadt #define PG_TNC_SHIFT 26 /* shift to get PG_TYPE + PG_NC */
287 1.1 deraadt #define PG_M_SHIFT 24 /* shift to get PG_M, PG_U */
288 1.15 pk #define PG_M_SHIFT4M 5 /* shift to get SRMMU_PG_M,R on 4m */
289 1.1 deraadt /*efine PG_NOACC 0 ** XXX */
290 1.1 deraadt #define PG_KR 0x20000000
291 1.1 deraadt #define PG_KW 0x60000000
292 1.1 deraadt #define PG_URKR 0
293 1.1 deraadt #define PG_UW 0x40000000
294 1.1 deraadt
295 1.1 deraadt #ifdef KGDB
296 1.1 deraadt /* but we will define one for gdb anyway */
297 1.1 deraadt struct pte {
298 1.1 deraadt u_int pg_v:1,
299 1.1 deraadt pg_w:1,
300 1.1 deraadt pg_s:1,
301 1.1 deraadt pg_nc:1;
302 1.1 deraadt enum pgtype { pg_obmem, pg_obio, pg_vme16, pg_vme32 } pg_type:2;
303 1.1 deraadt u_int pg_u:1,
304 1.1 deraadt pg_m:1,
305 1.1 deraadt pg_mbz:5,
306 1.1 deraadt pg_pfnum:19;
307 1.1 deraadt };
308 1.15 pk #if defined(SUN4M)
309 1.15 pk struct srmmu_pte {
310 1.15 pk u_int pg_pfnum:20,
311 1.15 pk pg_c:1,
312 1.15 pk pg_m:1,
313 1.15 pk pg_u:1;
314 1.15 pk enum pgprot { pprot_r_r, pprot_rw_rw, pprot_rx_rx, pprot_rwx_rwx,
315 1.15 pk pprot_x_x, pprot_r_rw, pprot_n_rx, pprot_n_rwx }
316 1.15 pk pg_prot:3; /* prot. bits: pprot_<user>_<supervisor> */
317 1.15 pk u_int pg_must_be_2:2;
318 1.15 pk };
319 1.15 pk #endif
320 1.1 deraadt #endif
321 1.1 deraadt
322 1.1 deraadt /*
323 1.1 deraadt * These are needed in the register window code
324 1.1 deraadt * to check the validity of (ostensible) user stack PTEs.
325 1.1 deraadt */
326 1.9 pk #define PG_VSHIFT 29 /* (va>>vshift)==0 or -1 => valid */
327 1.1 deraadt /* XXX fix this name, it is a va shift not a pte bit shift! */
328 1.1 deraadt
329 1.1 deraadt #define PG_PROTSHIFT 29
330 1.1 deraadt #define PG_PROTUWRITE 6 /* PG_V,PG_W,!PG_S */
331 1.1 deraadt #define PG_PROTUREAD 4 /* PG_V,!PG_W,!PG_S */
332 1.1 deraadt
333 1.15 pk /* %%%: Fix above and below for 4m? */
334 1.15 pk
335 1.1 deraadt /* static __inline int PG_VALID(void *va) {
336 1.1 deraadt register int t = va; t >>= PG_VSHIFT; return (t == 0 || t == -1);
337 1.1 deraadt } */
338 1.10 pk
339 1.10 pk
340 1.10 pk /*
341 1.15 pk * Here are the bit definitions for 4M/SRMMU pte's
342 1.10 pk */
343 1.15 pk /* MMU TABLE ENTRIES */
344 1.15 pk #define SRMMU_TEINVALID 0x0 /* invalid (serves as !valid bit) */
345 1.15 pk #define SRMMU_TEPTD 0x1 /* Page Table Descriptor */
346 1.15 pk #define SRMMU_TEPTE 0x2 /* Page Table Entry */
347 1.15 pk #define SRMMU_TERES 0x3 /* reserved */
348 1.15 pk #define SRMMU_TETYPE 0x3 /* mask for table entry type */
349 1.15 pk /* PTE FIELDS */
350 1.15 pk #define SRMMU_PPNMASK 0xFFFFFF00
351 1.15 pk #define SRMMU_PPNSHIFT 0x8
352 1.15 pk #define SRMMU_PPNPASHIFT 0x4 /* shift to put ppn into PAddr */
353 1.15 pk #define SRMMU_L1PPNSHFT 0x14
354 1.15 pk #define SRMMU_L1PPNMASK 0xFFF00000
355 1.15 pk #define SRMMU_L2PPNSHFT 0xE
356 1.15 pk #define SRMMU_L2PPNMASK 0xFC000
357 1.15 pk #define SRMMU_L3PPNSHFT 0x8
358 1.15 pk #define SRMMU_L3PPNMASK 0x3F00
359 1.15 pk /* PTE BITS */
360 1.15 pk #define SRMMU_PG_C 0x80 /* cacheable */
361 1.15 pk #define SRMMU_PG_M 0x40 /* modified (dirty) */
362 1.15 pk #define SRMMU_PG_R 0x20 /* referenced */
363 1.15 pk #define SRMMU_PGBITSMSK 0xE0
364 1.15 pk /* PTE PROTECTION */
365 1.15 pk #define SRMMU_PROT_MASK 0x1C /* Mask protection bits out of pte */
366 1.15 pk #define SRMMU_PROT_SHFT 0x2
367 1.15 pk #define PPROT_R_R 0x0 /* These are in the form: */
368 1.15 pk #define PPROT_RW_RW 0x4 /* PPROT_<u>_<s> */
369 1.15 pk #define PPROT_RX_RX 0x8 /* where <u> is the user-mode */
370 1.15 pk #define PPROT_RWX_RWX 0xC /* permission, and <s> is the */
371 1.15 pk #define PPROT_X_X 0x10 /* supervisor mode permission. */
372 1.15 pk #define PPROT_R_RW 0x14 /* R=read, W=write, X=execute */
373 1.15 pk #define PPROT_N_RX 0x18 /* N=none. */
374 1.15 pk #define PPROT_N_RWX 0x1C
375 1.15 pk #define PPROT_WRITE 0x4 /* set iff write priv. allowed */
376 1.15 pk #define PPROT_S 0x18 /* effective S bit */
377 1.15 pk #define PPROT_U2S_OMASK 0x18 /* OR with prot. to revoke user priv */
378 1.15 pk /* TABLE SIZES */
379 1.15 pk #define SRMMU_L1SIZE 0x100
380 1.15 pk #define SRMMU_L2SIZE 0x40
381 1.15 pk #define SRMMU_L3SIZE 0x40
382 1.10 pk
383 1.20 pk #define SRMMU_PTE_BITS "\177\020" \
384 1.20 pk "f\0\2TYPE\0=\1PTD\0=\2PTE\0f\2\3PROT\0" \
385 1.20 pk "=\0R_R\0=\4RW_RW\0=\10RX_RX\0=\14RWX_RWX\0=\20X_X\0=\24R_RW\0" \
386 1.20 pk "=\30N_RX\0=\34N_RWX\0" \
387 1.20 pk "b\5R\0b\6M\0b\7C\0f\10\30PFN\0"
388 1.20 pk
389 1.10 pk /*
390 1.10 pk * IOMMU PTE bits.
391 1.10 pk */
392 1.15 pk #define IOPTE_PPN_MASK 0x07ffff00
393 1.15 pk #define IOPTE_PPN_SHIFT 8
394 1.15 pk #define IOPTE_RSVD 0x000000f1
395 1.15 pk #define IOPTE_WRITE 0x00000004
396 1.15 pk #define IOPTE_VALID 0x00000002
397 1.20 pk
398 1.20 pk #define IOMMU_PTE_BITS "\177\020" \
399 1.20 pk "f\10\23PPN\0b\2W\0b\1V\0"
400 1.20 pk
401 1.21 pk
402 1.22 kleink #if defined(_KERNEL) || defined(_STANDALONE)
403 1.21 pk /*
404 1.21 pk * Macros to get and set the processor context.
405 1.21 pk */
406 1.21 pk #define getcontext4() lduba(AC_CONTEXT, ASI_CONTROL)
407 1.21 pk #define getcontext4m() lda(SRMMU_CXR, ASI_SRMMU)
408 1.21 pk #define getcontext() (CPU_ISSUN4M ? getcontext4m() : getcontext4())
409 1.21 pk
410 1.21 pk #define setcontext4(c) stba(AC_CONTEXT, ASI_CONTROL, c)
411 1.21 pk #define setcontext4m(c) sta(SRMMU_CXR, ASI_SRMMU, c)
412 1.21 pk #define setcontext(c) (CPU_ISSUN4M ? setcontext4m(c) : setcontext4(c))
413 1.21 pk
414 1.21 pk /* sun4/sun4c access to MMU-resident PTEs */
415 1.21 pk #define getpte4(va) lda(va, ASI_PTE)
416 1.21 pk #define setpte4(va, pte) sta(va, ASI_PTE, pte)
417 1.21 pk
418 1.21 pk /* sun4m TLB probe */
419 1.21 pk #define getpte4m(va) lda((va & 0xFFFFF000) | ASI_SRMMUFP_L3, \
420 1.23 kleink ASI_SRMMUFP)
421 1.22 kleink
422 1.22 kleink #endif /* _KERNEL || _STANDALONE */
423