Home | History | Annotate | Line # | Download | only in include
pte.h revision 1.1.1.1.2.1
      1  1.1.1.1.2.1  eeh /*	$NetBSD: pte.h,v 1.1.1.1.2.1 1998/07/30 14:03:53 eeh Exp $ */
      2          1.1  eeh 
      3          1.1  eeh /*
      4          1.1  eeh  * Copyright (c) 1996
      5          1.1  eeh  * 	The President and Fellows of Harvard College. All rights reserved.
      6          1.1  eeh  * Copyright (c) 1992, 1993
      7          1.1  eeh  *	The Regents of the University of California.  All rights reserved.
      8          1.1  eeh  *
      9          1.1  eeh  * This software was developed by the Computer Systems Engineering group
     10          1.1  eeh  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     11          1.1  eeh  * contributed to Berkeley.
     12          1.1  eeh  *
     13          1.1  eeh  * All advertising materials mentioning features or use of this software
     14          1.1  eeh  * must display the following acknowledgements:
     15          1.1  eeh  * 	This product includes software developed by Harvard University.
     16          1.1  eeh  *	This product includes software developed by the University of
     17          1.1  eeh  *	California, Lawrence Berkeley Laboratory.
     18          1.1  eeh  *
     19          1.1  eeh  * Redistribution and use in source and binary forms, with or without
     20          1.1  eeh  * modification, are permitted provided that the following conditions
     21          1.1  eeh  * are met:
     22          1.1  eeh  * 1. Redistributions of source code must retain the above copyright
     23          1.1  eeh  *    notice, this list of conditions and the following disclaimer.
     24          1.1  eeh  * 2. Redistributions in binary form must reproduce the above copyright
     25          1.1  eeh  *    notice, this list of conditions and the following disclaimer in the
     26          1.1  eeh  *    documentation and/or other materials provided with the distribution.
     27          1.1  eeh  * 3. All advertising materials mentioning features or use of this software
     28          1.1  eeh  *    must display the following acknowledgements:
     29          1.1  eeh  *	This product includes software developed by Harvard University.
     30          1.1  eeh  *	This product includes software developed by the University of
     31          1.1  eeh  *	California, Berkeley and its contributors.
     32          1.1  eeh  * 4. Neither the name of the University nor the names of its contributors
     33          1.1  eeh  *    may be used to endorse or promote products derived from this software
     34          1.1  eeh  *    without specific prior written permission.
     35          1.1  eeh  *
     36          1.1  eeh  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     37          1.1  eeh  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     38          1.1  eeh  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     39          1.1  eeh  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     40          1.1  eeh  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     41          1.1  eeh  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     42          1.1  eeh  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     43          1.1  eeh  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     44          1.1  eeh  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     45          1.1  eeh  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     46          1.1  eeh  * SUCH DAMAGE.
     47          1.1  eeh  *
     48          1.1  eeh  *	@(#)pte.h	8.1 (Berkeley) 6/11/93
     49          1.1  eeh  */
     50          1.1  eeh 
     51          1.1  eeh /*
     52          1.1  eeh  * Address translation works as follows:
     53          1.1  eeh  *
     54          1.1  eeh  **
     55          1.1  eeh  * For sun4u:
     56          1.1  eeh  *
     57          1.1  eeh  *	Take your pick; it's all S/W anyway.  We'll start by emulating a sun4.
     58          1.1  eeh  *	Oh, here's the sun4u TTE for reference:
     59          1.1  eeh  *
     60          1.1  eeh  *	struct sun4u_tte {
     61          1.1  eeh  *		u_int64	tag_g:1,	(global flag)
     62          1.1  eeh  *			tag_ctxt:15,	(context for mapping)
     63          1.1  eeh  *			tag_unassigned:6,
     64          1.1  eeh  *			tag_va:42;	(virtual address bits<64:22>)
     65          1.1  eeh  *		u_int64	data_v:1,	(valid bit)
     66          1.1  eeh  *			data_size:2,	(page size [8K*8**<SIZE>])
     67          1.1  eeh  *			data_nfo:1,	(no-fault only)
     68          1.1  eeh  *			data_ie:1,	(invert endianness [inefficient])
     69          1.1  eeh  *			data_soft2:2,	(reserved for S/W)
     70          1.1  eeh  *			data_pa:36,	(physical address)
     71          1.1  eeh  *			data_soft:6,	(reserved for S/W)
     72          1.1  eeh  *			data_lock:1,	(lock into TLB)
     73          1.1  eeh  *			data_cacheable:2,	(cacheability control)
     74          1.1  eeh  *			data_e:1,	(explicit accesses only)
     75          1.1  eeh  *			data_priv:1,	(privileged page)
     76          1.1  eeh  *			data_w:1,	(writeable)
     77          1.1  eeh  *			data_g:1;	(same as tag_g)
     78          1.1  eeh  *	};
     79          1.1  eeh  */
     80          1.1  eeh 
     81          1.1  eeh /* virtual address to virtual page number */
     82          1.1  eeh #define	VA_SUN4U_VPG(va)	(((int)(va) >> 13) & 31)
     83          1.1  eeh 
     84          1.1  eeh /* virtual address to offset within page */
     85          1.1  eeh #define VA_SUN4U_OFF(va)       	(((int)(va)) & 0x1FFF)
     86          1.1  eeh 
     87          1.1  eeh /* When we go to 64-bit VAs we need to handle the hole */
     88          1.1  eeh #define VA_VPG(va)	VA_SUN4U_VPG(va)
     89          1.1  eeh #define VA_OFF(va)	VA_SUN4U_OFF(va)
     90          1.1  eeh 
     91          1.1  eeh #define PG_SHIFT4U	13
     92          1.1  eeh #define MMU_PAGE_ALIGN	8192
     93          1.1  eeh 
     94          1.1  eeh /* If you know where a tte is in the tsb, how do you find its va? */
     95          1.1  eeh #define TSBVA(i)	((tsb[(i)].tag.f.tag_va<<22)|(((i)<<13)&0x3ff000))
     96          1.1  eeh 
     97          1.1  eeh #ifndef _LOCORE
     98          1.1  eeh /*
     99          1.1  eeh  *  This is the spitfire TTE.
    100          1.1  eeh  *
    101          1.1  eeh  *  We could use bitmasks and shifts to construct this if
    102          1.1  eeh  *  we had a 64-bit compiler w/64-bit longs.  Otherwise it's
    103          1.1  eeh  *  a real pain to do this in C.
    104          1.1  eeh  */
    105          1.1  eeh struct sun4u_tag_fields {
    106          1.1  eeh 	u_int64_t	tag_g:1,	/* global flag */
    107          1.1  eeh 		tag_ctxt:15,	/* context for mapping */
    108          1.1  eeh 		tag_unassigned:6,
    109          1.1  eeh 		tag_va:42;	/* virtual address bits<64:22> */
    110          1.1  eeh };
    111          1.1  eeh union sun4u_tag { struct sun4u_tag_fields f; int64_t tag; };
    112          1.1  eeh struct sun4u_data_fields {
    113          1.1  eeh 	u_int64_t	data_v:1,	/* valid bit */
    114          1.1  eeh 		data_size:2,	/* page size [8K*8**<SIZE>] */
    115          1.1  eeh 		data_nfo:1,	/* no-fault only */
    116          1.1  eeh 		data_ie:1,	/* invert endianness [inefficient] */
    117          1.1  eeh 		data_soft2:2,	/* reserved for S/W */
    118          1.1  eeh 		data_pa:36,	/* physical address */
    119          1.1  eeh 		data_accessed:1,/* S/W accessed bit */
    120          1.1  eeh 		data_modified:1,/* S/W modified bit */
    121          1.1  eeh 		data_realw:1,	/* S/W real writable bit (to manage modified) */
    122          1.1  eeh 		data_tsblock:1,	/* S/W TSB locked entry */
    123          1.1  eeh 		data_exec:1,	/* S/W Executable */
    124          1.1  eeh 		data_onlyexec:1,/* S/W Executable only */
    125          1.1  eeh 		data_lock:1,	/* lock into TLB */
    126          1.1  eeh 		data_cacheable:2,	/* cacheability control */
    127          1.1  eeh 		data_e:1,	/* explicit accesses only */
    128          1.1  eeh 		data_priv:1,	/* privileged page */
    129          1.1  eeh 		data_w:1,	/* writeable */
    130          1.1  eeh 		data_g:1;	/* same as tag_g */
    131          1.1  eeh };
    132          1.1  eeh union sun4u_data { struct sun4u_data_fields f; int64_t data; };
    133          1.1  eeh struct sun4u_tte {
    134          1.1  eeh 	union sun4u_tag tag;
    135          1.1  eeh 	union sun4u_data data;
    136          1.1  eeh };
    137          1.1  eeh typedef struct sun4u_tte pte_t;
    138          1.1  eeh 
    139          1.1  eeh /* Assembly routine to flush a mapping */
    140  1.1.1.1.2.1  eeh extern void tlb_flush_pte __P((vaddr_t addr, int ctx));
    141          1.1  eeh extern void tlb_flush_ctx __P((int ctx));
    142          1.1  eeh 
    143          1.1  eeh #endif /* _LOCORE */
    144          1.1  eeh 
    145          1.1  eeh /* TSB tag masks */
    146          1.1  eeh #define CTX_MASK		((1<<13)-1)
    147          1.1  eeh #define TSB_TAG_CTX_SHIFT	48
    148          1.1  eeh #define TSB_TAG_VA_SHIFT	22
    149          1.1  eeh #define TSB_TAG_G		0x8000000000000000LL
    150          1.1  eeh 
    151          1.1  eeh #define TSB_TAG_CTX(t)		((((int64_t)(t))>>TSB_TAG_CTX_SHIFT)&CTX_MASK)
    152          1.1  eeh #define TSB_TAG_VA(t)		((((int64_t)(t))<<TSB_TAG_VA_SHIFT))
    153          1.1  eeh #define TSB_TAG(g,ctx,va)	((((u_int64_t)((g)!=0))<<63)|(((u_int64_t)(ctx)&CTX_MASK)<<TSB_TAG_CTX_SHIFT)|(((u_int64_t)va)>>TSB_TAG_VA_SHIFT))
    154          1.1  eeh 
    155          1.1  eeh /* TLB data masks */
    156          1.1  eeh #define TLB_V			0x8000000000000000LL
    157          1.1  eeh #define TLB_8K			0x0000000000000000LL
    158          1.1  eeh #define TLB_64K			0x2000000000000000LL
    159          1.1  eeh #define TLB_512K		0x4000000000000000LL
    160          1.1  eeh #define TLB_4M			0x6000000000000000LL
    161          1.1  eeh #define TLB_SZ_MASK		0x6000000000000000LL
    162          1.1  eeh #define TLB_NFO			0x1000000000000000LL
    163          1.1  eeh #define TLB_IE			0x0800000000000000LL
    164          1.1  eeh #define TLB_SOFT2_MASK		0x07fe000000000000LL
    165          1.1  eeh #define TLB_DIAG_MASK		0x0001fe0000000000LL
    166          1.1  eeh #define TLB_PA_MASK		0x000001ffffffe000LL
    167          1.1  eeh #define TLB_SOFT_MASK		0x0000000000001f80LL
    168          1.1  eeh /* S/W bits */
    169          1.1  eeh /* Access & TSB locked bits are swapped so I can set access w/one insn */
    170          1.1  eeh /* #define TLB_ACCESS		0x0000000000001000LL */
    171          1.1  eeh #define TLB_ACCESS		0x0000000000000200LL
    172          1.1  eeh #define TLB_MODIFY		0x0000000000000800LL
    173          1.1  eeh #define TLB_REAL_W		0x0000000000000400LL
    174          1.1  eeh /* #define TLB_TSB_LOCK		0x0000000000000200LL */
    175          1.1  eeh #define TLB_TSB_LOCK		0x0000000000001000LL
    176          1.1  eeh #define TLB_EXEC		0x0000000000000100LL
    177          1.1  eeh #define TLB_EXEC_ONLY		0x0000000000000080LL
    178          1.1  eeh /* H/W bits */
    179          1.1  eeh #define TLB_L			0x0000000000000040LL
    180          1.1  eeh #define TLB_CACHE_MASK		0x0000000000000030LL
    181          1.1  eeh #define TLB_CP			0x0000000000000020LL
    182          1.1  eeh #define TLB_CV			0x0000000000000010LL
    183          1.1  eeh #define TLB_E			0x0000000000000008LL
    184          1.1  eeh #define TLB_P			0x0000000000000004LL
    185          1.1  eeh #define TLB_W			0x0000000000000002LL
    186          1.1  eeh #define TLB_G			0x0000000000000001LL
    187          1.1  eeh 
    188          1.1  eeh /*
    189          1.1  eeh  * The following bits are used by locore so they should
    190          1.1  eeh  * be duplicates of the above w/o the "long long"
    191          1.1  eeh  */
    192          1.1  eeh /* S/W bits */
    193          1.1  eeh /* #define TTE_ACCESS		0x0000000000001000 */
    194          1.1  eeh #define TTE_ACCESS		0x0000000000000200
    195          1.1  eeh #define TTE_MODIFY		0x0000000000000800
    196          1.1  eeh #define TTE_REAL_W		0x0000000000000400
    197          1.1  eeh /* #define TTE_TSB_LOCK		0x0000000000000200 */
    198          1.1  eeh #define TTE_TSB_LOCK		0x0000000000001000
    199          1.1  eeh #define TTE_EXEC		0x0000000000000100
    200          1.1  eeh #define TTE_EXEC_ONLY		0x0000000000000080
    201          1.1  eeh /* H/W bits */
    202          1.1  eeh #define TTE_L			0x0000000000000040
    203          1.1  eeh #define TTE_CACHE_MASK		0x0000000000000030
    204          1.1  eeh #define TTE_CP			0x0000000000000020
    205          1.1  eeh #define TTE_CV			0x0000000000000010
    206          1.1  eeh #define TTE_E			0x0000000000000008
    207          1.1  eeh #define TTE_P			0x0000000000000004
    208          1.1  eeh #define TTE_W			0x0000000000000002
    209          1.1  eeh #define TTE_G			0x0000000000000001
    210          1.1  eeh 
    211          1.1  eeh #define TSB_DATA(g,sz,pa,priv,write,cache,aliased,valid) \
    212          1.1  eeh (((valid)?TLB_V:0LL)|(sz)|(((u_int64_t)(pa))&TLB_PA_MASK)|\
    213          1.1  eeh ((cache)?((aliased)?TLB_CP:TLB_CACHE_MASK):TLB_E)|\
    214          1.1  eeh ((priv)?TLB_P:0LL)|((write)?TLB_W:0LL)|((g)?TLB_G:0LL))
    215          1.1  eeh 
    216          1.1  eeh #define MMU_CACHE_VIRT	0x3
    217          1.1  eeh #define MMU_CACHE_PHYS	0x2
    218          1.1  eeh #define MMU_CACHE_NONE	0x0
    219          1.1  eeh 
    220          1.1  eeh /* This needs to be updated for sun4u IOMMUs */
    221          1.1  eeh /*
    222          1.1  eeh  * IOMMU PTE bits.
    223          1.1  eeh  */
    224          1.1  eeh #define IOPTE_PPN_MASK  0x07ffff00
    225          1.1  eeh #define IOPTE_PPN_SHIFT 8
    226          1.1  eeh #define IOPTE_RSVD      0x000000f1
    227          1.1  eeh #define IOPTE_WRITE     0x00000004
    228          1.1  eeh #define IOPTE_VALID     0x00000002
    229