xref: /illumos-gate/usr/src/uts/sun4u/sys/pte.h (revision 7b209c2c)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef _SYS_PTE_H
27 #define	_SYS_PTE_H
28 
29 #pragma ident	"%Z%%M%	%I%	%E% SMI"
30 
31 #ifndef _ASM
32 #include <sys/types.h>
33 #endif /* _ASM */
34 
35 #ifdef	__cplusplus
36 extern "C" {
37 #endif
38 
39 #ifndef _ASM
40 /*
41  * The tte struct is a 64 bit data type.  Since we currently plan to
42  * use a V8 compiler all manipulations in C will be done using the bit fields
43  * or as 2 integers.  In assembly code we will deal with it as a double (using
44  * ldx and stx).  The structure is defined to force a double alignment.
45  * Note that USIIi uses bits [47:41] for diag, and [49:48] are reserved.
46  * Note that pa[46:32] includes USIIi diag bits [46:41] and USIII reserved
47  * bits [46:43].
48  */
49 typedef union {
50 	struct tte {
51 		uint32_t	v:1;		/* 1=valid mapping */
52 		uint32_t	sz:2;		/* 0=8k 1=64k 2=512k 3=4m */
53 		uint32_t	nfo:1;		/* 1=no-fault access only */
54 
55 		uint32_t	ie:1;		/* 1=invert endianness */
56 		uint32_t	hmenum:3;	/* sw - # of hment in hme_blk */
57 
58 		uint32_t	rsv:7;		/* former rsv:1 lockcnt:6 */
59 		uint32_t	sz2:1;		/* sz2[48] Panther, Olympus-C */
60 		uint32_t	diag:1;		/* See USII Note above. */
61 		uint32_t	pahi:15;	/* pa[46:32] See Note above */
62 		uint32_t	palo:19;	/* pa[31:13] */
63 		uint32_t	no_sync:1;	/* sw - ghost unload */
64 
65 		uint32_t	suspend:1;	/* sw bits - suspended */
66 		uint32_t	ref:1;		/* sw - reference */
67 		uint32_t	wr_perm:1;	/* sw - write permission */
68 		uint32_t	exec_synth:1;	/* sw bits - itlb synthesis */
69 
70 		uint32_t	exec_perm:1;	/* sw - execute permission */
71 		uint32_t	l:1;		/* 1=lock in tlb */
72 		uint32_t	cp:1;		/* 1=cache in ecache, icache */
73 		uint32_t	cv:1;		/* 1=cache in dcache */
74 
75 		uint32_t	e:1;		/* 1=side effect */
76 		uint32_t	p:1;		/* 1=privilege required */
77 		uint32_t	w:1;		/* 1=writes allowed */
78 		uint32_t	g:1;		/* 1=any context matches */
79 	} tte_bit;
80 	struct {
81 		int32_t		inthi;
82 		uint32_t	intlo;
83 	} tte_int;
84 	uint64_t		ll;
85 } tte_t;
86 
87 #define	tte_val 	tte_bit.v		/* use < 0 check in asm */
88 #define	tte_size	tte_bit.sz
89 #define	tte_size2	tte_bit.sz2
90 #define	tte_nfo		tte_bit.nfo
91 #define	tte_ie		tte_bit.ie		/* XXX? */
92 #define	tte_hmenum	tte_bit.hmenum
93 #define	tte_pahi	tte_bit.pahi
94 #define	tte_palo	tte_bit.palo
95 #define	tte_no_sync	tte_bit.no_sync
96 #define	tte_suspend	tte_bit.suspend
97 #define	tte_ref		tte_bit.ref
98 #define	tte_wr_perm	tte_bit.wr_perm
99 #define	tte_exec_synth	tte_bit.exec_synth
100 #define	tte_exec_perm	tte_bit.exec_perm
101 #define	tte_lock	tte_bit.l
102 #define	tte_cp		tte_bit.cp
103 #define	tte_cv		tte_bit.cv
104 #define	tte_se		tte_bit.e
105 #define	tte_priv	tte_bit.p
106 #define	tte_hwwr	tte_bit.w
107 #define	tte_glb		tte_bit.g
108 
109 #define	tte_inthi	tte_int.inthi
110 #define	tte_intlo	tte_int.intlo
111 
112 #endif /* !_ASM */
113 
114 /*
115  * Defines for valid, sz, sz2 fields in tte.
116  * The TTE_CSZ macro combines the sz and sz2 fields.
117  */
118 #define	TTE8K			0x0
119 #define	TTE64K			0x1
120 #define	TTE512K			0x2
121 #define	TTE4M			0x3
122 #define	TTE32M			0x4
123 #define	TTE256M			0x5
124 #define	TTESZ_VALID		0x4
125 
126 #define	TTE_SZ_SHFT_INT		29
127 #define	TTE_SZ_SHFT		32+29
128 #define	TTE_SZ_BITS		0x3
129 
130 #define	TTE_SZ2_SHFT_INT	14
131 #define	TTE_SZ2_SHFT		32+14
132 #define	TTE_SZ2_BITS		0x4
133 #define	TTE_CSZ_BITS		0x7
134 #define	TTE_CSZ(ttep)	(((ttep)->tte_size2 << 2) | ((ttep)->tte_size))
135 
136 /*
137  * the tte lock cnt now lives in the hme blk and is 16 bits long. See
138  * comments in hme_blk declaration.
139  */
140 #define	MAX_TTE_LCKCNT		(0x10000 - 1)
141 
142 #define	TTE_BSZS_SHIFT(sz)	((sz) * 3)
143 #define	TTEBYTES(sz)		(MMU_PAGESIZE << TTE_BSZS_SHIFT(sz))
144 #define	TTEPAGES(sz)		(1 << TTE_BSZS_SHIFT(sz))
145 #define	TTE_PAGE_SHIFT(sz)	(MMU_PAGESHIFT + TTE_BSZS_SHIFT(sz))
146 #define	TTE_PAGE_OFFSET(sz)	(TTEBYTES(sz) - 1)
147 #define	TTE_PAGEMASK(sz)	(~TTE_PAGE_OFFSET(sz))
148 #define	TTE_PFNMASK(sz)		(~(TTE_PAGE_OFFSET(sz) >> MMU_PAGESHIFT))
149 
150 #define	TTE_PA_LSHIFT		17	/* used to do sllx on tte to get pa */
151 
152 #ifndef _ASM
153 
154 #define	TTE_PASHIFT		19	/* used to manage pahi and palo */
155 #define	TTE_PALOMASK		((1 << TTE_PASHIFT) -1)
156 /*
157  * Spitfire PFN is defined as bits [40:13] of the physical address.
158  * Cheetah PFN is defined as bits [42:13] of the physical address.
159  * Olympus-C PFN is defined as bits [46:13] of the physical address.
160  */
161 #define	TTE_TO_TTEPFN(ttep)						\
162 	(((((pfn_t)((ttep)->tte_pahi)) << TTE_PASHIFT) |		\
163 	(ttep)->tte_palo) & TTE_PFNMASK(TTE_CSZ(ttep)))
164 /*
165  * This define adds the vaddr page offset to obtain a correct pfn
166  */
167 #define	TTE_TO_PFN(vaddr, ttep)						\
168 	(sfmmu_ttetopfn(ttep, vaddr))
169 
170 #define	PFN_TO_TTE(entry, pfn) {		\
171 	entry.tte_pahi = pfn >> TTE_PASHIFT;	\
172 	entry.tte_palo = pfn & TTE_PALOMASK;	\
173 	}
174 
175 #endif /* !_ASM */
176 
177 /*
178  * The tte defines are separated into integers because the compiler doesn't
179  * support 64bit defines.
180  */
181 /* Defines for tte using inthi */
182 #define	TTE_VALID_INT			0x80000000
183 #define	TTE_NFO_INT			0x10000000
184 #define	TTE_NFO_SHIFT			0x3	/* makes for an easy check */
185 #define	TTE_IE_INT			0x08000000
186 
187 /* Defines for tte using intlo */
188 #define	TTE_SUSPEND_SHIFT		0
189 #define	TTE_NOSYNC_INT			0x00001000
190 #define	TTE_SUSPEND			0x00000800
191 #define	TTE_REF_INT			0x00000400
192 #define	TTE_WRPRM_INT			0x00000200
193 #define	TTE_E_SYNTH_INT			0x00000100
194 #define	TTE_EXECPRM_INT			0x00000080
195 #define	TTE_LCK_INT			0x00000040
196 #define	TTE_CP_INT			0x00000020
197 #define	TTE_CV_INT			0x00000010
198 #define	TTE_SIDEFF_INT			0x00000008
199 #define	TTE_PRIV_INT			0x00000004
200 #define	TTE_HWWR_INT			0x00000002
201 #define	TTE_GLB_INT			0x00000001
202 
203 #define	TTE_PROT_INT			(TTE_WRPRM_INT | TTE_PRIV_INT)
204 
205 /*
206  * Define to clear the high-order 6 bits of the 47-bit PA in a tte.  The
207  * Spitfire tte has PFN in [40:13] and uses [46:41] as part of Diag bits.
208  */
209 #define	TTE_SPITFIRE_PFNHI_CLEAR	0x3f
210 #define	TTE_SPITFIRE_PFNHI_SHIFT	41
211 
212 #ifndef ASM
213 
214 /* Defines to help build ttes using inthi */
215 #define	TTE_SZ_INT(sz)	\
216 	((sz & TTE_SZ_BITS) << TTE_SZ_SHFT_INT) | \
217 	((sz & TTE_SZ2_BITS) << TTE_SZ2_SHFT_INT)
218 #define	TTE_HMENUM_INT(hmenum)		((hmenum) << 24)
219 /* XXX PFN is defined as bits [40-13] of the physical address */
220 #define	TTE_PFN_INTHI(pfn)		((pfn) >> TTE_PASHIFT)
221 #define	TTE_VALID_CHECK(attr)	\
222 	(((attr) & PROT_ALL) ? TTE_VALID_INT : 0)
223 #define	TTE_IE_CHECK(attr)	\
224 	(((attr) & HAT_STRUCTURE_LE) ? TTE_IE_INT : 0)
225 #define	TTE_NFO_CHECK(attr)	\
226 	(((attr) & HAT_NOFAULT) ? TTE_NFO_INT : 0)
227 
228 /* Defines to help build ttes using intlo */
229 #define	TTE_PFN_INTLO(pfn)		(((pfn) & TTE_PALOMASK) << 13)
230 #define	TTE_WRPRM_CHECK(attr)	 \
231 	(((attr) & PROT_WRITE) ? TTE_WRPRM_INT : 0)
232 #define	TTE_EXECPRM_CHECK(attr)	 \
233 	(((attr) & PROT_EXEC) ? TTE_EXECPRM_INT : 0)
234 #define	TTE_NOSYNC_CHECK(attr)	 \
235 	(((attr) & HAT_NOSYNC) ? TTE_NOSYNC_INT : 0)
236 #define	TTE_CP_CHECK(attr)	\
237 	(((attr) & SFMMU_UNCACHEPTTE) ? 0: TTE_CP_INT)
238 #define	TTE_CV_CHECK(attr)	\
239 	(((attr) & SFMMU_UNCACHEVTTE) ? 0: TTE_CV_INT)
240 #define	TTE_SE_CHECK(attr)	\
241 	(((attr) & SFMMU_SIDEFFECT) ? TTE_SIDEFF_INT : 0)
242 #define	TTE_PRIV_CHECK(attr)	\
243 	(((attr) & PROT_USER) ? 0 : TTE_PRIV_INT)
244 
245 #define	MAKE_TTEATTR_INTHI(attr)				\
246 	(TTE_VALID_CHECK(attr) | TTE_NFO_CHECK(attr) | TTE_IE_CHECK(attr))
247 
248 #define	MAKE_TTE_INTHI(pfn, attr, sz, hmenum)			\
249 	(MAKE_TTEATTR_INTHI(attr) | TTE_SZ_INT(sz) |		\
250 	TTE_HMENUM_INT(hmenum) | TTE_PFN_INTHI(pfn))
251 
252 #define	MAKE_TTEATTR_INTLO(attr)					\
253 	(TTE_WRPRM_CHECK(attr) | TTE_NOSYNC_CHECK(attr) |		\
254 	TTE_CP_CHECK(attr) | TTE_CV_CHECK(attr) | TTE_SE_CHECK(attr) |	\
255 	TTE_PRIV_CHECK(attr) | TTE_EXECPRM_CHECK(attr))
256 
257 #define	MAKE_TTE_INTLO(pfn, attr, sz, hmenum)				\
258 	(TTE_PFN_INTLO(pfn) | TTE_REF_INT | MAKE_TTEATTR_INTLO(attr))
259 
260 #define	TTEINTHI_ATTR	(TTE_VALID_INT | TTE_IE_INT | TTE_NFO_INT)
261 
262 #define	TTEINTLO_ATTR							\
263 	(TTE_WRPRM_INT | TTE_NOSYNC_INT | TTE_CP_INT | TTE_CV_INT |	\
264 	TTE_SIDEFF_INT | TTE_PRIV_INT | TTE_EXECPRM_INT)
265 
266 #define	MAKE_TTE_MASK(ttep)			\
267 	{					\
268 		(ttep)->tte_bit.v = 1;		\
269 		(ttep)->tte_bit.sz = 3;		\
270 		(ttep)->tte_bit.nfo = 1;	\
271 		(ttep)->tte_bit.ie = 1;		\
272 		(ttep)->tte_bit.sz2 = 1;	\
273 		(ttep)->tte_bit.pahi = 0x7fff;	\
274 		(ttep)->tte_bit.palo = 0x7ffff;	\
275 		(ttep)->tte_bit.exec_perm = 1;	\
276 		(ttep)->tte_bit.l = 1;		\
277 		(ttep)->tte_bit.cp = 1;		\
278 		(ttep)->tte_bit.cv = 1;		\
279 		(ttep)->tte_bit.e = 1;		\
280 		(ttep)->tte_bit.p = 1;		\
281 		(ttep)->tte_bit.w = 1;		\
282 		(ttep)->tte_bit.g = 1;		\
283 	}
284 
285 /*
286  * Defines to check/set TTE bits.
287  */
288 #define	TTE_IS_VALID(ttep)	((ttep)->tte_inthi < 0)
289 #define	TTE_SET_INVALID(ttep)	((ttep)->tte_val = 0)
290 #define	TTE_IS_8K(ttep)		(TTE_CSZ(ttep) == TTE8K)
291 #define	TTE_IS_WRITABLE(ttep)	((ttep)->tte_wr_perm)
292 #define	TTE_IS_EXECUTABLE(ttep)	((ttep)->tte_exec_perm)
293 #define	TTE_IS_PRIVILEGED(ttep)	((ttep)->tte_priv)
294 #define	TTE_IS_NOSYNC(ttep)	((ttep)->tte_no_sync)
295 #define	TTE_IS_LOCKED(ttep)	((ttep)->tte_lock)
296 #define	TTE_IS_GLOBAL(ttep)	((ttep)->tte_glb)
297 #define	TTE_IS_SIDEFFECT(ttep)	((ttep)->tte_se)
298 #define	TTE_IS_NFO(ttep)	((ttep)->tte_nfo)
299 
300 #define	TTE_IS_REF(ttep)	((ttep)->tte_ref)
301 #define	TTE_IS_MOD(ttep)	((ttep)->tte_hwwr)
302 #define	TTE_IS_IE(ttep)		((ttep)->tte_ie)
303 #define	TTE_SET_SUSPEND(ttep)	((ttep)->tte_suspend = 1)
304 #define	TTE_CLR_SUSPEND(ttep)	((ttep)->tte_suspend = 0)
305 #define	TTE_IS_SUSPEND(ttep)	((ttep)->tte_suspend)
306 #define	TTE_SET_REF(ttep)	((ttep)->tte_ref = 1)
307 #define	TTE_CLR_REF(ttep)	((ttep)->tte_ref = 0)
308 #define	TTE_SET_LOCKED(ttep)	((ttep)->tte_lock = 1)
309 #define	TTE_CLR_LOCKED(ttep)	((ttep)->tte_lock = 0)
310 #define	TTE_SET_MOD(ttep)	((ttep)->tte_hwwr = 1)
311 #define	TTE_CLR_MOD(ttep)	((ttep)->tte_hwwr = 0)
312 #define	TTE_SET_RM(ttep)						\
313 	(((ttep)->tte_intlo) = (ttep)->tte_intlo | TTE_HWWR_INT | TTE_REF_INT)
314 #define	TTE_CLR_RM(ttep)						\
315 	(((ttep)->tte_intlo) = (ttep)->tte_intlo &			\
316 	~(TTE_HWWR_INT | TTE_REF_INT))
317 
318 #define	TTE_SET_WRT(ttep)	((ttep)->tte_wr_perm = 1)
319 #define	TTE_CLR_WRT(ttep)	((ttep)->tte_wr_perm = 0)
320 #define	TTE_SET_EXEC(ttep)	((ttep)->tte_exec_perm = 1)
321 #define	TTE_CLR_EXEC(ttep)	((ttep)->tte_exec_perm = 0)
322 #define	TTE_SET_PRIV(ttep)	((ttep)->tte_priv = 1)
323 #define	TTE_CLR_PRIV(ttep)	((ttep)->tte_priv = 0)
324 
325 #define	TTE_IS_VCACHEABLE(ttep)		((ttep)->tte_cv)
326 #define	TTE_SET_VCACHEABLE(ttep)	((ttep)->tte_cv = 1)
327 #define	TTE_CLR_VCACHEABLE(ttep)	((ttep)->tte_cv = 0)
328 #define	TTE_IS_PCACHEABLE(ttep)		((ttep)->tte_cp)
329 #define	TTE_SET_PCACHEABLE(ttep)	((ttep)->tte_cp = 1)
330 #define	TTE_CLR_PCACHEABLE(ttep)	((ttep)->tte_cp = 0)
331 
332 
333 #define	KPM_TTE_VCACHED(tte64, pfn, tte_sz)				\
334 	tte64 = (((uint64_t)(TTE_VALID_INT |				\
335 	    (tte_sz) << TTE_SZ_SHFT_INT)) << 32) |			\
336 	    (((pfn) >> TTE_BSZS_SHIFT(tte_sz)) <<			\
337 	    (TTE_BSZS_SHIFT(tte_sz) + MMU_PAGESHIFT)) |			\
338 	    (TTE_CP_INT | TTE_CV_INT | TTE_PRIV_INT | TTE_HWWR_INT)
339 
340 #define	KPM_TTE_VUNCACHED(tte64, pfn, tte_sz)				\
341 	tte64 = (((uint64_t)(TTE_VALID_INT |				\
342 	    (tte_sz) << TTE_SZ_SHFT_INT)) << 32) |			\
343 	    (((pfn) >> TTE_BSZS_SHIFT(tte_sz)) <<			\
344 	    (TTE_BSZS_SHIFT(tte_sz) + MMU_PAGESHIFT)) |			\
345 	    (TTE_CP_INT | TTE_PRIV_INT | TTE_HWWR_INT)
346 
347 /*
348  * This define provides a generic method to set and clear multiple tte flags.
349  * A bitmask of all flags to be affected is passed in "flags" and a bitmask
350  * of the new values is passed in "newflags".
351  */
352 #define	TTE_SET_LOFLAGS(ttep, flags, newflags)				\
353 	((ttep)->tte_intlo = ((ttep)->tte_intlo & ~(flags)) | (newflags))
354 
355 #define	TTE_GET_LOFLAGS(ttep, flags)	((ttep)->tte_intlo & flags)
356 
357 #endif /* !_ASM */
358 
359 #ifdef	__cplusplus
360 }
361 #endif
362 
363 #endif /* !_SYS_PTE_H */
364