[TCP]: Update the /proc/net/tcp documentation
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-sparc64 / spitfire.h
blobcf7807813e85fe976e9113cfea4a51fd7ac855c1
1 /* $Id: spitfire.h,v 1.18 2001/11/29 16:42:10 kanoj Exp $
2 * spitfire.h: SpitFire/BlackBird/Cheetah inline MMU operations.
4 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
5 */
7 #ifndef _SPARC64_SPITFIRE_H
8 #define _SPARC64_SPITFIRE_H
10 #include <asm/asi.h>
12 /* The following register addresses are accessible via ASI_DMMU
13 * and ASI_IMMU, that is there is a distinct and unique copy of
14 * each these registers for each TLB.
16 #define TSB_TAG_TARGET 0x0000000000000000 /* All chips */
17 #define TLB_SFSR 0x0000000000000018 /* All chips */
18 #define TSB_REG 0x0000000000000028 /* All chips */
19 #define TLB_TAG_ACCESS 0x0000000000000030 /* All chips */
20 #define VIRT_WATCHPOINT 0x0000000000000038 /* All chips */
21 #define PHYS_WATCHPOINT 0x0000000000000040 /* All chips */
22 #define TSB_EXTENSION_P 0x0000000000000048 /* Ultra-III and later */
23 #define TSB_EXTENSION_S 0x0000000000000050 /* Ultra-III and later, D-TLB only */
24 #define TSB_EXTENSION_N 0x0000000000000058 /* Ultra-III and later */
25 #define TLB_TAG_ACCESS_EXT 0x0000000000000060 /* Ultra-III+ and later */
27 /* These registers only exist as one entity, and are accessed
28 * via ASI_DMMU only.
30 #define PRIMARY_CONTEXT 0x0000000000000008
31 #define SECONDARY_CONTEXT 0x0000000000000010
32 #define DMMU_SFAR 0x0000000000000020
33 #define VIRT_WATCHPOINT 0x0000000000000038
34 #define PHYS_WATCHPOINT 0x0000000000000040
36 #define SPITFIRE_HIGHEST_LOCKED_TLBENT (64 - 1)
37 #define CHEETAH_HIGHEST_LOCKED_TLBENT (16 - 1)
39 #define L1DCACHE_SIZE 0x4000
41 #define SUN4V_CHIP_INVALID 0x00
42 #define SUN4V_CHIP_NIAGARA1 0x01
43 #define SUN4V_CHIP_NIAGARA2 0x02
44 #define SUN4V_CHIP_UNKNOWN 0xff
46 #ifndef __ASSEMBLY__
48 enum ultra_tlb_layout {
49 spitfire = 0,
50 cheetah = 1,
51 cheetah_plus = 2,
52 hypervisor = 3,
55 extern enum ultra_tlb_layout tlb_type;
57 extern int sun4v_chip_type;
59 extern int cheetah_pcache_forced_on;
60 extern void cheetah_enable_pcache(void);
62 #define sparc64_highest_locked_tlbent() \
63 (tlb_type == spitfire ? \
64 SPITFIRE_HIGHEST_LOCKED_TLBENT : \
65 CHEETAH_HIGHEST_LOCKED_TLBENT)
67 /* The data cache is write through, so this just invalidates the
68 * specified line.
70 static __inline__ void spitfire_put_dcache_tag(unsigned long addr, unsigned long tag)
72 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
73 "membar #Sync"
74 : /* No outputs */
75 : "r" (tag), "r" (addr), "i" (ASI_DCACHE_TAG));
78 /* The instruction cache lines are flushed with this, but note that
79 * this does not flush the pipeline. It is possible for a line to
80 * get flushed but stale instructions to still be in the pipeline,
81 * a flush instruction (to any address) is sufficient to handle
82 * this issue after the line is invalidated.
84 static __inline__ void spitfire_put_icache_tag(unsigned long addr, unsigned long tag)
86 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
87 "membar #Sync"
88 : /* No outputs */
89 : "r" (tag), "r" (addr), "i" (ASI_IC_TAG));
92 static __inline__ unsigned long spitfire_get_dtlb_data(int entry)
94 unsigned long data;
96 __asm__ __volatile__("ldxa [%1] %2, %0"
97 : "=r" (data)
98 : "r" (entry << 3), "i" (ASI_DTLB_DATA_ACCESS));
100 /* Clear TTE diag bits. */
101 data &= ~0x0003fe0000000000UL;
103 return data;
106 static __inline__ unsigned long spitfire_get_dtlb_tag(int entry)
108 unsigned long tag;
110 __asm__ __volatile__("ldxa [%1] %2, %0"
111 : "=r" (tag)
112 : "r" (entry << 3), "i" (ASI_DTLB_TAG_READ));
113 return tag;
116 static __inline__ void spitfire_put_dtlb_data(int entry, unsigned long data)
118 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
119 "membar #Sync"
120 : /* No outputs */
121 : "r" (data), "r" (entry << 3),
122 "i" (ASI_DTLB_DATA_ACCESS));
125 static __inline__ unsigned long spitfire_get_itlb_data(int entry)
127 unsigned long data;
129 __asm__ __volatile__("ldxa [%1] %2, %0"
130 : "=r" (data)
131 : "r" (entry << 3), "i" (ASI_ITLB_DATA_ACCESS));
133 /* Clear TTE diag bits. */
134 data &= ~0x0003fe0000000000UL;
136 return data;
139 static __inline__ unsigned long spitfire_get_itlb_tag(int entry)
141 unsigned long tag;
143 __asm__ __volatile__("ldxa [%1] %2, %0"
144 : "=r" (tag)
145 : "r" (entry << 3), "i" (ASI_ITLB_TAG_READ));
146 return tag;
149 static __inline__ void spitfire_put_itlb_data(int entry, unsigned long data)
151 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
152 "membar #Sync"
153 : /* No outputs */
154 : "r" (data), "r" (entry << 3),
155 "i" (ASI_ITLB_DATA_ACCESS));
158 static __inline__ void spitfire_flush_dtlb_nucleus_page(unsigned long page)
160 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
161 "membar #Sync"
162 : /* No outputs */
163 : "r" (page | 0x20), "i" (ASI_DMMU_DEMAP));
166 static __inline__ void spitfire_flush_itlb_nucleus_page(unsigned long page)
168 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
169 "membar #Sync"
170 : /* No outputs */
171 : "r" (page | 0x20), "i" (ASI_IMMU_DEMAP));
174 /* Cheetah has "all non-locked" tlb flushes. */
175 static __inline__ void cheetah_flush_dtlb_all(void)
177 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
178 "membar #Sync"
179 : /* No outputs */
180 : "r" (0x80), "i" (ASI_DMMU_DEMAP));
183 static __inline__ void cheetah_flush_itlb_all(void)
185 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
186 "membar #Sync"
187 : /* No outputs */
188 : "r" (0x80), "i" (ASI_IMMU_DEMAP));
191 /* Cheetah has a 4-tlb layout so direct access is a bit different.
192 * The first two TLBs are fully assosciative, hold 16 entries, and are
193 * used only for locked and >8K sized translations. One exists for
194 * data accesses and one for instruction accesses.
196 * The third TLB is for data accesses to 8K non-locked translations, is
197 * 2 way assosciative, and holds 512 entries. The fourth TLB is for
198 * instruction accesses to 8K non-locked translations, is 2 way
199 * assosciative, and holds 128 entries.
201 * Cheetah has some bug where bogus data can be returned from
202 * ASI_{D,I}TLB_DATA_ACCESS loads, doing the load twice fixes
203 * the problem for me. -DaveM
205 static __inline__ unsigned long cheetah_get_ldtlb_data(int entry)
207 unsigned long data;
209 __asm__ __volatile__("ldxa [%1] %2, %%g0\n\t"
210 "ldxa [%1] %2, %0"
211 : "=r" (data)
212 : "r" ((0 << 16) | (entry << 3)),
213 "i" (ASI_DTLB_DATA_ACCESS));
215 return data;
218 static __inline__ unsigned long cheetah_get_litlb_data(int entry)
220 unsigned long data;
222 __asm__ __volatile__("ldxa [%1] %2, %%g0\n\t"
223 "ldxa [%1] %2, %0"
224 : "=r" (data)
225 : "r" ((0 << 16) | (entry << 3)),
226 "i" (ASI_ITLB_DATA_ACCESS));
228 return data;
231 static __inline__ unsigned long cheetah_get_ldtlb_tag(int entry)
233 unsigned long tag;
235 __asm__ __volatile__("ldxa [%1] %2, %0"
236 : "=r" (tag)
237 : "r" ((0 << 16) | (entry << 3)),
238 "i" (ASI_DTLB_TAG_READ));
240 return tag;
243 static __inline__ unsigned long cheetah_get_litlb_tag(int entry)
245 unsigned long tag;
247 __asm__ __volatile__("ldxa [%1] %2, %0"
248 : "=r" (tag)
249 : "r" ((0 << 16) | (entry << 3)),
250 "i" (ASI_ITLB_TAG_READ));
252 return tag;
255 static __inline__ void cheetah_put_ldtlb_data(int entry, unsigned long data)
257 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
258 "membar #Sync"
259 : /* No outputs */
260 : "r" (data),
261 "r" ((0 << 16) | (entry << 3)),
262 "i" (ASI_DTLB_DATA_ACCESS));
265 static __inline__ void cheetah_put_litlb_data(int entry, unsigned long data)
267 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
268 "membar #Sync"
269 : /* No outputs */
270 : "r" (data),
271 "r" ((0 << 16) | (entry << 3)),
272 "i" (ASI_ITLB_DATA_ACCESS));
275 static __inline__ unsigned long cheetah_get_dtlb_data(int entry, int tlb)
277 unsigned long data;
279 __asm__ __volatile__("ldxa [%1] %2, %%g0\n\t"
280 "ldxa [%1] %2, %0"
281 : "=r" (data)
282 : "r" ((tlb << 16) | (entry << 3)), "i" (ASI_DTLB_DATA_ACCESS));
284 return data;
287 static __inline__ unsigned long cheetah_get_dtlb_tag(int entry, int tlb)
289 unsigned long tag;
291 __asm__ __volatile__("ldxa [%1] %2, %0"
292 : "=r" (tag)
293 : "r" ((tlb << 16) | (entry << 3)), "i" (ASI_DTLB_TAG_READ));
294 return tag;
297 static __inline__ void cheetah_put_dtlb_data(int entry, unsigned long data, int tlb)
299 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
300 "membar #Sync"
301 : /* No outputs */
302 : "r" (data),
303 "r" ((tlb << 16) | (entry << 3)),
304 "i" (ASI_DTLB_DATA_ACCESS));
307 static __inline__ unsigned long cheetah_get_itlb_data(int entry)
309 unsigned long data;
311 __asm__ __volatile__("ldxa [%1] %2, %%g0\n\t"
312 "ldxa [%1] %2, %0"
313 : "=r" (data)
314 : "r" ((2 << 16) | (entry << 3)),
315 "i" (ASI_ITLB_DATA_ACCESS));
317 return data;
320 static __inline__ unsigned long cheetah_get_itlb_tag(int entry)
322 unsigned long tag;
324 __asm__ __volatile__("ldxa [%1] %2, %0"
325 : "=r" (tag)
326 : "r" ((2 << 16) | (entry << 3)), "i" (ASI_ITLB_TAG_READ));
327 return tag;
330 static __inline__ void cheetah_put_itlb_data(int entry, unsigned long data)
332 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
333 "membar #Sync"
334 : /* No outputs */
335 : "r" (data), "r" ((2 << 16) | (entry << 3)),
336 "i" (ASI_ITLB_DATA_ACCESS));
339 #endif /* !(__ASSEMBLY__) */
341 #endif /* !(_SPARC64_SPITFIRE_H) */