pte.h revision 1.1 1 1.1 matt /* $NetBSD: pte.h,v 1.1 2003/02/03 17:10:05 matt Exp $ */
2 1.1 matt
3 1.1 matt /*-
4 1.1 matt * Copyright (C) 1995, 1996 Wolfgang Solfrank.
5 1.1 matt * Copyright (C) 1995, 1996 TooLs GmbH.
6 1.1 matt * All rights reserved.
7 1.1 matt *
8 1.1 matt * Redistribution and use in source and binary forms, with or without
9 1.1 matt * modification, are permitted provided that the following conditions
10 1.1 matt * are met:
11 1.1 matt * 1. Redistributions of source code must retain the above copyright
12 1.1 matt * notice, this list of conditions and the following disclaimer.
13 1.1 matt * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 matt * notice, this list of conditions and the following disclaimer in the
15 1.1 matt * documentation and/or other materials provided with the distribution.
16 1.1 matt * 3. All advertising materials mentioning features or use of this software
17 1.1 matt * must display the following acknowledgement:
18 1.1 matt * This product includes software developed by TooLs GmbH.
19 1.1 matt * 4. The name of TooLs GmbH may not be used to endorse or promote products
20 1.1 matt * derived from this software without specific prior written permission.
21 1.1 matt *
22 1.1 matt * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
23 1.1 matt * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 matt * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 matt * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 1.1 matt * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27 1.1 matt * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
28 1.1 matt * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 1.1 matt * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 1.1 matt * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 1.1 matt * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 matt */
33 1.1 matt
34 1.1 matt #ifndef _POWERPC_OEA_PTE_H_
35 1.1 matt #define _POWERPC_OEA_PTE_H_
36 1.1 matt
37 1.1 matt #include <sys/queue.h>
38 1.1 matt
39 1.1 matt /*
40 1.1 matt * Page Table Entries
41 1.1 matt */
42 1.1 matt #ifndef _LOCORE
43 1.1 matt struct pte {
44 1.1 matt u_int pte_hi;
45 1.1 matt u_int pte_lo;
46 1.1 matt };
47 1.1 matt #endif /* _LOCORE */
48 1.1 matt /* High word: */
49 1.1 matt #define PTE_VALID 0x80000000
50 1.1 matt #define PTE_VSID_SHFT 7
51 1.1 matt #define PTE_HID 0x00000040
52 1.1 matt #define PTE_API 0x0000003f
53 1.1 matt /* Low word: */
54 1.1 matt #define PTE_RPGN 0xfffff000
55 1.1 matt #define PTE_RPGN_SHFT 12
56 1.1 matt #define PTE_REF 0x00000100
57 1.1 matt #define PTE_CHG 0x00000080
58 1.1 matt #define PTE_W 0x00000040 /* 1 = write-through, 0 = write-back */
59 1.1 matt #define PTE_I 0x00000020 /* cache inhibit */
60 1.1 matt #define PTE_M 0x00000010 /* memory coherency enable */
61 1.1 matt #define PTE_G 0x00000008 /* guarded region (not on 601) */
62 1.1 matt #define PTE_WIMG (PTE_W|PTE_I|PTE_M|PTE_G)
63 1.1 matt #define PTE_IG (PTE_I|PTE_G)
64 1.1 matt #define PTE_PP 0x00000003
65 1.1 matt #define PTE_SO 0x00000000 /* Super. Only (U: XX, S: RW) */
66 1.1 matt #define PTE_SW 0x00000001 /* Super. Write-Only (U: RO, S: RW) */
67 1.1 matt #define PTE_BW 0x00000002 /* Supervisor (U: RW, S: RW) */
68 1.1 matt #define PTE_BR 0x00000003 /* Both Read Only (U: RO, S: RO) */
69 1.1 matt #define PTE_RW PTE_BW
70 1.1 matt #define PTE_RO PTE_BR
71 1.1 matt
72 1.1 matt #define PTE_EXEC 0x00000200 /* pseudo bit in attrs; page is exec */
73 1.1 matt
74 1.1 matt #ifndef _LOCORE
75 1.1 matt typedef struct pte pte_t;
76 1.1 matt #endif /* _LOCORE */
77 1.1 matt
78 1.1 matt /*
79 1.1 matt * Extract bits from address
80 1.1 matt */
81 1.1 matt #define ADDR_SR_SHFT 28
82 1.1 matt #define ADDR_PIDX 0x0ffff000
83 1.1 matt #define ADDR_PIDX_SHFT 12
84 1.1 matt #define ADDR_API_SHFT 22
85 1.1 matt #define ADDR_POFF 0x00000fff
86 1.1 matt
87 1.1 matt #endif /* _POWERPC_OEA_PTE_H_ */
88