pte.h revision 1.22 1 1.22 matt /* $NetBSD: pte.h,v 1.22 2015/06/27 21:44:06 matt Exp $ */
2 1.1 jonathan
3 1.3 jonathan /*-
4 1.3 jonathan * Copyright (c) 1997 The NetBSD Foundation, Inc.
5 1.3 jonathan * All rights reserved.
6 1.3 jonathan *
7 1.3 jonathan * This code is derived from software contributed to The NetBSD Foundation
8 1.3 jonathan * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.3 jonathan * NASA Ames Research Center.
10 1.3 jonathan *
11 1.3 jonathan * Redistribution and use in source and binary forms, with or without
12 1.3 jonathan * modification, are permitted provided that the following conditions
13 1.3 jonathan * are met:
14 1.3 jonathan * 1. Redistributions of source code must retain the above copyright
15 1.3 jonathan * notice, this list of conditions and the following disclaimer.
16 1.3 jonathan * 2. Redistributions in binary form must reproduce the above copyright
17 1.3 jonathan * notice, this list of conditions and the following disclaimer in the
18 1.3 jonathan * documentation and/or other materials provided with the distribution.
19 1.3 jonathan *
20 1.3 jonathan * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.3 jonathan * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.3 jonathan * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.3 jonathan * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.3 jonathan * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.3 jonathan * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.3 jonathan * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.3 jonathan * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.3 jonathan * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.3 jonathan * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.3 jonathan * POSSIBILITY OF SUCH DAMAGE.
31 1.3 jonathan */
32 1.3 jonathan
33 1.1 jonathan /*
34 1.1 jonathan * Copyright 1996 The Board of Trustees of The Leland Stanford
35 1.1 jonathan * Junior University. All Rights Reserved.
36 1.1 jonathan *
37 1.1 jonathan * Permission to use, copy, modify, and distribute this
38 1.1 jonathan * software and its documentation for any purpose and without
39 1.1 jonathan * fee is hereby granted, provided that the above copyright
40 1.1 jonathan * notice appear in all copies. Stanford University
41 1.1 jonathan * makes no representations about the suitability of this
42 1.1 jonathan * software for any purpose. It is provided "as is" without
43 1.1 jonathan * express or implied warranty.
44 1.1 jonathan */
45 1.1 jonathan
46 1.1 jonathan #ifndef __MIPS_PTE_H__
47 1.1 jonathan #define __MIPS_PTE_H__
48 1.1 jonathan
49 1.3 jonathan #include <mips/mips1_pte.h>
50 1.3 jonathan #include <mips/mips3_pte.h>
51 1.3 jonathan
52 1.3 jonathan #define PG_ASID 0x000000ff /* Address space ID */
53 1.3 jonathan
54 1.3 jonathan #ifndef _LOCORE
55 1.3 jonathan #include <mips/cpu.h>
56 1.3 jonathan
57 1.3 jonathan typedef union pt_entry {
58 1.20 matt uint32_t pt_entry; /* for copying, etc. */
59 1.22 matt #if 0
60 1.3 jonathan struct mips1_pte pt_mips1_pte; /* for getting to bits by name */
61 1.3 jonathan struct mips3_pte pt_mips3_pte;
62 1.22 matt #endif
63 1.3 jonathan } pt_entry_t;
64 1.3 jonathan
65 1.3 jonathan /*
66 1.3 jonathan * Macros/inline functions to hide PTE format differences.
67 1.3 jonathan */
68 1.3 jonathan
69 1.3 jonathan #define mips_pg_nv_bit() (MIPS1_PG_NV) /* same on mips1 and mips3 */
70 1.3 jonathan
71 1.3 jonathan
72 1.20 matt bool pmap_is_page_ro_p(struct pmap *pmap, vaddr_t, uint32_t);
73 1.3 jonathan
74 1.3 jonathan
75 1.3 jonathan /* MIPS1-only */
76 1.12 simonb #if defined(MIPS1) && !defined(MIPS3_PLUS)
77 1.3 jonathan #define mips_pg_v(entry) ((entry) & MIPS1_PG_V)
78 1.3 jonathan #define mips_pg_wired(entry) ((entry) & MIPS1_PG_WIRED)
79 1.3 jonathan
80 1.8 nisimura #define mips_pg_m_bit() (MIPS1_PG_D)
81 1.3 jonathan #define mips_pg_rw_bit() (MIPS1_PG_RW) /* no RW bits for mips1 */
82 1.3 jonathan #define mips_pg_ro_bit() (MIPS1_PG_RO)
83 1.3 jonathan #define mips_pg_ropage_bit() (MIPS1_PG_RO) /* XXX not MIPS1_PG_ROPAGE? */
84 1.3 jonathan #define mips_pg_rwpage_bit() (MIPS1_PG_RWPAGE)
85 1.17 macallan #define mips_pg_rwncpage_bit() (MIPS1_PG_RWNCPAGE)
86 1.3 jonathan #define mips_pg_cwpage_bit() (MIPS1_PG_CWPAGE)
87 1.17 macallan #define mips_pg_cwncpage_bit() (MIPS1_PG_CWNCPAGE)
88 1.3 jonathan #define mips_pg_global_bit() (MIPS1_PG_G)
89 1.3 jonathan #define mips_pg_wired_bit() (MIPS1_PG_WIRED)
90 1.3 jonathan
91 1.3 jonathan #define PTE_TO_PADDR(pte) MIPS1_PTE_TO_PADDR((pte))
92 1.3 jonathan #define PAGE_IS_RDONLY(pte, va) MIPS1_PAGE_IS_RDONLY((pte), (va))
93 1.3 jonathan
94 1.10 soda #define mips_tlbpfn_to_paddr(x) mips1_tlbpfn_to_paddr((vaddr_t)(x))
95 1.10 soda #define mips_paddr_to_tlbpfn(x) mips1_paddr_to_tlbpfn((x))
96 1.3 jonathan #endif /* mips1 */
97 1.3 jonathan
98 1.3 jonathan
99 1.12 simonb /* MIPS3 (or greater) only */
100 1.12 simonb #if !defined(MIPS1) && defined(MIPS3_PLUS)
101 1.3 jonathan #define mips_pg_v(entry) ((entry) & MIPS3_PG_V)
102 1.3 jonathan #define mips_pg_wired(entry) ((entry) & MIPS3_PG_WIRED)
103 1.3 jonathan
104 1.8 nisimura #define mips_pg_m_bit() (MIPS3_PG_D)
105 1.8 nisimura #define mips_pg_rw_bit() (MIPS3_PG_D)
106 1.3 jonathan #define mips_pg_ro_bit() (MIPS3_PG_RO)
107 1.3 jonathan #define mips_pg_ropage_bit() (MIPS3_PG_ROPAGE)
108 1.3 jonathan #define mips_pg_rwpage_bit() (MIPS3_PG_RWPAGE)
109 1.17 macallan #define mips_pg_rwncpage_bit() (MIPS3_PG_RWNCPAGE)
110 1.3 jonathan #define mips_pg_cwpage_bit() (MIPS3_PG_CWPAGE)
111 1.17 macallan #define mips_pg_cwncpage_bit() (MIPS3_PG_CWNCPAGE)
112 1.3 jonathan #define mips_pg_global_bit() (MIPS3_PG_G)
113 1.3 jonathan #define mips_pg_wired_bit() (MIPS3_PG_WIRED)
114 1.1 jonathan
115 1.3 jonathan #define PTE_TO_PADDR(pte) MIPS3_PTE_TO_PADDR((pte))
116 1.3 jonathan #define PAGE_IS_RDONLY(pte, va) MIPS3_PAGE_IS_RDONLY((pte), (va))
117 1.3 jonathan
118 1.10 soda #define mips_tlbpfn_to_paddr(x) mips3_tlbpfn_to_paddr((vaddr_t)(x))
119 1.10 soda #define mips_paddr_to_tlbpfn(x) mips3_paddr_to_tlbpfn((x))
120 1.3 jonathan #endif /* mips3 */
121 1.3 jonathan
122 1.12 simonb /* MIPS1 and MIPS3 (or greater) */
123 1.12 simonb #if defined(MIPS1) && defined(MIPS3_PLUS)
124 1.1 jonathan
125 1.20 matt static __inline bool
126 1.20 matt mips_pg_v(uint32_t entry),
127 1.20 matt mips_pg_wired(uint32_t entry),
128 1.20 matt PAGE_IS_RDONLY(uint32_t pte, vaddr_t va);
129 1.3 jonathan
130 1.20 matt static __inline uint32_t
131 1.20 matt mips_pg_wired_bit(void) __pure,
132 1.20 matt mips_pg_m_bit(void) __pure,
133 1.20 matt mips_pg_ro_bit(void) __pure,
134 1.20 matt mips_pg_rw_bit(void) __pure,
135 1.20 matt mips_pg_ropage_bit(void) __pure,
136 1.20 matt mips_pg_cwpage_bit(void) __pure,
137 1.20 matt mips_pg_rwpage_bit(void) __pure,
138 1.20 matt mips_pg_global_bit(void) __pure;
139 1.20 matt static __inline paddr_t PTE_TO_PADDR(uint32_t pte) __pure;
140 1.20 matt static __inline bool PAGE_IS_RDONLY(uint32_t pte, vaddr_t va) __pure;
141 1.3 jonathan
142 1.20 matt static __inline paddr_t mips_tlbpfn_to_paddr(uint32_t pfn) __pure;
143 1.20 matt static __inline uint32_t mips_paddr_to_tlbpfn(paddr_t pa) __pure;
144 1.3 jonathan
145 1.3 jonathan
146 1.20 matt static __inline bool
147 1.20 matt mips_pg_v(uint32_t entry)
148 1.3 jonathan {
149 1.12 simonb if (MIPS_HAS_R4K_MMU)
150 1.20 matt return (entry & MIPS3_PG_V) != 0;
151 1.20 matt return (entry & MIPS1_PG_V) != 0;
152 1.3 jonathan }
153 1.3 jonathan
154 1.20 matt static __inline bool
155 1.20 matt mips_pg_wired(uint32_t entry)
156 1.3 jonathan {
157 1.12 simonb if (MIPS_HAS_R4K_MMU)
158 1.20 matt return (entry & MIPS3_PG_WIRED) != 0;
159 1.20 matt return (entry & MIPS1_PG_WIRED) != 0;
160 1.3 jonathan }
161 1.3 jonathan
162 1.20 matt static __inline uint32_t
163 1.14 simonb mips_pg_m_bit(void)
164 1.3 jonathan {
165 1.12 simonb if (MIPS_HAS_R4K_MMU)
166 1.7 nisimura return (MIPS3_PG_D);
167 1.7 nisimura return (MIPS1_PG_D);
168 1.3 jonathan }
169 1.3 jonathan
170 1.16 perry static __inline unsigned int
171 1.14 simonb mips_pg_ro_bit(void)
172 1.3 jonathan {
173 1.12 simonb if (MIPS_HAS_R4K_MMU)
174 1.3 jonathan return (MIPS3_PG_RO);
175 1.3 jonathan return (MIPS1_PG_RO);
176 1.3 jonathan }
177 1.3 jonathan
178 1.16 perry static __inline unsigned int
179 1.14 simonb mips_pg_rw_bit(void)
180 1.3 jonathan {
181 1.12 simonb if (MIPS_HAS_R4K_MMU)
182 1.7 nisimura return (MIPS3_PG_D);
183 1.3 jonathan return (MIPS1_PG_RW);
184 1.3 jonathan }
185 1.3 jonathan
186 1.16 perry static __inline unsigned int
187 1.14 simonb mips_pg_ropage_bit(void)
188 1.3 jonathan {
189 1.12 simonb if (MIPS_HAS_R4K_MMU)
190 1.3 jonathan return (MIPS3_PG_ROPAGE);
191 1.3 jonathan return (MIPS1_PG_RO);
192 1.3 jonathan }
193 1.3 jonathan
194 1.16 perry static __inline unsigned int
195 1.14 simonb mips_pg_rwpage_bit(void)
196 1.3 jonathan {
197 1.12 simonb if (MIPS_HAS_R4K_MMU)
198 1.3 jonathan return (MIPS3_PG_RWPAGE);
199 1.3 jonathan return (MIPS1_PG_RWPAGE);
200 1.3 jonathan }
201 1.3 jonathan
202 1.16 perry static __inline unsigned int
203 1.14 simonb mips_pg_cwpage_bit(void)
204 1.3 jonathan {
205 1.12 simonb if (MIPS_HAS_R4K_MMU)
206 1.3 jonathan return (MIPS3_PG_CWPAGE);
207 1.3 jonathan return (MIPS1_PG_CWPAGE);
208 1.3 jonathan }
209 1.3 jonathan
210 1.3 jonathan
211 1.16 perry static __inline unsigned int
212 1.14 simonb mips_pg_global_bit(void)
213 1.3 jonathan {
214 1.12 simonb if (MIPS_HAS_R4K_MMU)
215 1.3 jonathan return (MIPS3_PG_G);
216 1.3 jonathan return (MIPS1_PG_G);
217 1.3 jonathan }
218 1.3 jonathan
219 1.16 perry static __inline unsigned int
220 1.14 simonb mips_pg_wired_bit(void)
221 1.3 jonathan {
222 1.12 simonb if (MIPS_HAS_R4K_MMU)
223 1.3 jonathan return (MIPS3_PG_WIRED);
224 1.3 jonathan return (MIPS1_PG_WIRED);
225 1.3 jonathan }
226 1.3 jonathan
227 1.16 perry static __inline paddr_t
228 1.20 matt PTE_TO_PADDR(uint32_t pte)
229 1.3 jonathan {
230 1.12 simonb if (MIPS_HAS_R4K_MMU)
231 1.3 jonathan return (MIPS3_PTE_TO_PADDR(pte));
232 1.3 jonathan return (MIPS1_PTE_TO_PADDR(pte));
233 1.3 jonathan }
234 1.3 jonathan
235 1.20 matt static __inline bool
236 1.20 matt PAGE_IS_RDONLY(uint32_t pte, vaddr_t va)
237 1.3 jonathan {
238 1.12 simonb if (MIPS_HAS_R4K_MMU)
239 1.3 jonathan return (MIPS3_PAGE_IS_RDONLY(pte, va));
240 1.3 jonathan return (MIPS1_PAGE_IS_RDONLY(pte, va));
241 1.3 jonathan }
242 1.3 jonathan
243 1.16 perry static __inline paddr_t
244 1.20 matt mips_tlbpfn_to_paddr(uint32_t pfn)
245 1.3 jonathan {
246 1.12 simonb if (MIPS_HAS_R4K_MMU)
247 1.10 soda return (mips3_tlbpfn_to_paddr(pfn));
248 1.10 soda return (mips1_tlbpfn_to_paddr(pfn));
249 1.3 jonathan }
250 1.1 jonathan
251 1.20 matt static __inline uint32_t
252 1.20 matt mips_paddr_to_tlbpfn(paddr_t pa)
253 1.3 jonathan {
254 1.12 simonb if (MIPS_HAS_R4K_MMU)
255 1.10 soda return (mips3_paddr_to_tlbpfn(pa));
256 1.10 soda return (mips1_paddr_to_tlbpfn(pa));
257 1.3 jonathan }
258 1.1 jonathan #endif
259 1.1 jonathan
260 1.3 jonathan #endif /* ! _LOCORE */
261 1.1 jonathan
262 1.1 jonathan #if defined(_KERNEL) && !defined(_LOCORE)
263 1.1 jonathan /*
264 1.1 jonathan * Kernel virtual address to page table entry and visa versa.
265 1.1 jonathan */
266 1.1 jonathan #define kvtopte(va) \
267 1.6 nisimura (Sysmap + (((vaddr_t)(va) - VM_MIN_KERNEL_ADDRESS) >> PGSHIFT))
268 1.1 jonathan #define ptetokv(pte) \
269 1.1 jonathan ((((pt_entry_t *)(pte) - Sysmap) << PGSHIFT) + VM_MIN_KERNEL_ADDRESS)
270 1.1 jonathan
271 1.1 jonathan extern pt_entry_t *Sysmap; /* kernel pte table */
272 1.1 jonathan extern u_int Sysmapsize; /* number of pte's in Sysmap */
273 1.21 matt
274 1.21 matt static inline bool
275 1.21 matt pte_zero_p(pt_entry_t pte)
276 1.21 matt {
277 1.21 matt return pte.pt_entry == 0;
278 1.21 matt }
279 1.21 matt
280 1.21 matt #define PRIxPTE PRIx32
281 1.21 matt static inline uint32_t
282 1.21 matt pte_value(pt_entry_t pte)
283 1.21 matt {
284 1.21 matt return pte.pt_entry;
285 1.21 matt }
286 1.21 matt
287 1.1 jonathan #endif /* defined(_KERNEL) && !defined(_LOCORE) */
288 1.1 jonathan #endif /* __MIPS_PTE_H__ */
289