ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-sparc / pgtsun4c.h
1 /* $Id: pgtsun4c.h,v 1.37 2000/06/05 06:08:46 anton Exp $
2  * pgtsun4c.h:  Sun4c specific pgtable.h defines and code.
3  *
4  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
5  */
6 #ifndef _SPARC_PGTSUN4C_H
7 #define _SPARC_PGTSUN4C_H
8
9 #include <asm/contregs.h>
10
11 /* PMD_SHIFT determines the size of the area a second-level page table can map */
12 #define SUN4C_PMD_SHIFT       22
13 #define SUN4C_PMD_SIZE        (1UL << SUN4C_PMD_SHIFT)
14 #define SUN4C_PMD_MASK        (~(SUN4C_PMD_SIZE-1))
15 #define SUN4C_PMD_ALIGN(addr) (((addr)+SUN4C_PMD_SIZE-1)&SUN4C_PMD_MASK)
16
17 /* PGDIR_SHIFT determines what a third-level page table entry can map */
18 #define SUN4C_PGDIR_SHIFT       22
19 #define SUN4C_PGDIR_SIZE        (1UL << SUN4C_PGDIR_SHIFT)
20 #define SUN4C_PGDIR_MASK        (~(SUN4C_PGDIR_SIZE-1))
21 #define SUN4C_PGDIR_ALIGN(addr) (((addr)+SUN4C_PGDIR_SIZE-1)&SUN4C_PGDIR_MASK)
22
23 /* To represent how the sun4c mmu really lays things out. */
24 #define SUN4C_REAL_PGDIR_SHIFT       18
25 #define SUN4C_REAL_PGDIR_SIZE        (1UL << SUN4C_REAL_PGDIR_SHIFT)
26 #define SUN4C_REAL_PGDIR_MASK        (~(SUN4C_REAL_PGDIR_SIZE-1))
27 #define SUN4C_REAL_PGDIR_ALIGN(addr) (((addr)+SUN4C_REAL_PGDIR_SIZE-1)&SUN4C_REAL_PGDIR_MASK)
28
29 /* 16 bit PFN on sun4c */
30 #define SUN4C_PFN_MASK 0xffff
31
32 /* Don't increase these unless the structures in sun4c.c are fixed */
33 #define SUN4C_MAX_SEGMAPS 256
34 #define SUN4C_MAX_CONTEXTS 16
35
36 /*
37  * To be efficient, and not have to worry about allocating such
38  * a huge pgd, we make the kernel sun4c tables each hold 1024
39  * entries and the pgd similarly just like the i386 tables.
40  */
41 #define SUN4C_PTRS_PER_PTE    1024
42 #define SUN4C_PTRS_PER_PMD    1
43 #define SUN4C_PTRS_PER_PGD    1024
44
45 /*
46  * Sparc SUN4C pte fields.
47  */
48 #define _SUN4C_PAGE_VALID        0x80000000
49 #define _SUN4C_PAGE_SILENT_READ  0x80000000   /* synonym */
50 #define _SUN4C_PAGE_DIRTY        0x40000000
51 #define _SUN4C_PAGE_SILENT_WRITE 0x40000000   /* synonym */
52 #define _SUN4C_PAGE_PRIV         0x20000000   /* privileged page */
53 #define _SUN4C_PAGE_NOCACHE      0x10000000   /* non-cacheable page */
54 #define _SUN4C_PAGE_PRESENT      0x08000000   /* implemented in software */
55 #define _SUN4C_PAGE_IO           0x04000000   /* I/O page */
56 #define _SUN4C_PAGE_FILE         0x02000000   /* implemented in software */
57 #define _SUN4C_PAGE_READ         0x00800000   /* implemented in software */
58 #define _SUN4C_PAGE_WRITE        0x00400000   /* implemented in software */
59 #define _SUN4C_PAGE_ACCESSED     0x00200000   /* implemented in software */
60 #define _SUN4C_PAGE_MODIFIED     0x00100000   /* implemented in software */
61
62 #define _SUN4C_READABLE         (_SUN4C_PAGE_READ|_SUN4C_PAGE_SILENT_READ|\
63                                  _SUN4C_PAGE_ACCESSED)
64 #define _SUN4C_WRITEABLE        (_SUN4C_PAGE_WRITE|_SUN4C_PAGE_SILENT_WRITE|\
65                                  _SUN4C_PAGE_MODIFIED)
66
67 #define _SUN4C_PAGE_CHG_MASK    (0xffff|_SUN4C_PAGE_ACCESSED|_SUN4C_PAGE_MODIFIED)
68
69 #define SUN4C_PAGE_NONE         __pgprot(_SUN4C_PAGE_PRESENT)
70 #define SUN4C_PAGE_SHARED       __pgprot(_SUN4C_PAGE_PRESENT|_SUN4C_READABLE|\
71                                          _SUN4C_PAGE_WRITE)
72 #define SUN4C_PAGE_COPY         __pgprot(_SUN4C_PAGE_PRESENT|_SUN4C_READABLE)
73 #define SUN4C_PAGE_READONLY     __pgprot(_SUN4C_PAGE_PRESENT|_SUN4C_READABLE)
74 #define SUN4C_PAGE_KERNEL       __pgprot(_SUN4C_READABLE|_SUN4C_WRITEABLE|\
75                                          _SUN4C_PAGE_DIRTY|_SUN4C_PAGE_PRIV)
76
77 /* SUN4C swap entry encoding
78  *
79  * We use 5 bits for the type and 19 for the offset.  This gives us
80  * 32 swapfiles of 4GB each.  Encoding looks like:
81  *
82  * RRRRRRRRooooooooooooooooooottttt
83  * fedcba9876543210fedcba9876543210
84  *
85  * The top 8 bits are reserved for protection and status bits, especially
86  * FILE and PRESENT.
87  */
88 #define SUN4C_SWP_TYPE_MASK     0x1f
89 #define SUN4C_SWP_OFF_MASK      0x7ffff
90 #define SUN4C_SWP_OFF_SHIFT     5
91
92 #ifndef __ASSEMBLY__
93
94 static inline unsigned long sun4c_get_synchronous_error(void)
95 {
96         unsigned long sync_err;
97
98         __asm__ __volatile__("lda [%1] %2, %0\n\t" :
99                              "=r" (sync_err) :
100                              "r" (AC_SYNC_ERR), "i" (ASI_CONTROL));
101         return sync_err;
102 }
103
104 static inline unsigned long sun4c_get_synchronous_address(void)
105 {
106         unsigned long sync_addr;
107
108         __asm__ __volatile__("lda [%1] %2, %0\n\t" :
109                              "=r" (sync_addr) :
110                              "r" (AC_SYNC_VA), "i" (ASI_CONTROL));
111         return sync_addr;
112 }
113
114 /* SUN4C pte, segmap, and context manipulation */
115 static inline unsigned long sun4c_get_segmap(unsigned long addr)
116 {
117   register unsigned long entry;
118
119   __asm__ __volatile__("\n\tlduba [%1] %2, %0\n\t" : 
120                        "=r" (entry) :
121                        "r" (addr), "i" (ASI_SEGMAP));
122
123   return entry;
124 }
125
126 static inline void sun4c_put_segmap(unsigned long addr, unsigned long entry)
127 {
128
129   __asm__ __volatile__("\n\tstba %1, [%0] %2; nop; nop; nop;\n\t" : :
130                        "r" (addr), "r" (entry),
131                        "i" (ASI_SEGMAP)
132                        : "memory");
133 }
134
135 static inline unsigned long sun4c_get_pte(unsigned long addr)
136 {
137   register unsigned long entry;
138
139   __asm__ __volatile__("\n\tlda [%1] %2, %0\n\t" : 
140                        "=r" (entry) :
141                        "r" (addr), "i" (ASI_PTE));
142   return entry;
143 }
144
145 static inline void sun4c_put_pte(unsigned long addr, unsigned long entry)
146 {
147   __asm__ __volatile__("\n\tsta %1, [%0] %2; nop; nop; nop;\n\t" : :
148                        "r" (addr), 
149                        "r" ((entry & ~(_SUN4C_PAGE_PRESENT))), "i" (ASI_PTE)
150                        : "memory");
151 }
152
153 static inline int sun4c_get_context(void)
154 {
155   register int ctx;
156
157   __asm__ __volatile__("\n\tlduba [%1] %2, %0\n\t" :
158                        "=r" (ctx) :
159                        "r" (AC_CONTEXT), "i" (ASI_CONTROL));
160
161   return ctx;
162 }
163
164 static inline int sun4c_set_context(int ctx)
165 {
166   __asm__ __volatile__("\n\tstba %0, [%1] %2; nop; nop; nop;\n\t" : :
167                        "r" (ctx), "r" (AC_CONTEXT), "i" (ASI_CONTROL)
168                        : "memory");
169
170   return ctx;
171 }
172
173 #endif /* !(__ASSEMBLY__) */
174
175 #endif /* !(_SPARC_PGTSUN4C_H) */