V4L/DVB (6453): wm8739: convert to bus-based I2C API
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-sparc64 / spitfire.h
blob63b7040e8134e7f571f0f40a7e2040dbf54001c3
1 /* spitfire.h: SpitFire/BlackBird/Cheetah inline MMU operations.
3 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
4 */
6 #ifndef _SPARC64_SPITFIRE_H
7 #define _SPARC64_SPITFIRE_H
9 #include <asm/asi.h>
11 /* The following register addresses are accessible via ASI_DMMU
12 * and ASI_IMMU, that is there is a distinct and unique copy of
13 * each these registers for each TLB.
15 #define TSB_TAG_TARGET 0x0000000000000000 /* All chips */
16 #define TLB_SFSR 0x0000000000000018 /* All chips */
17 #define TSB_REG 0x0000000000000028 /* All chips */
18 #define TLB_TAG_ACCESS 0x0000000000000030 /* All chips */
19 #define VIRT_WATCHPOINT 0x0000000000000038 /* All chips */
20 #define PHYS_WATCHPOINT 0x0000000000000040 /* All chips */
21 #define TSB_EXTENSION_P 0x0000000000000048 /* Ultra-III and later */
22 #define TSB_EXTENSION_S 0x0000000000000050 /* Ultra-III and later, D-TLB only */
23 #define TSB_EXTENSION_N 0x0000000000000058 /* Ultra-III and later */
24 #define TLB_TAG_ACCESS_EXT 0x0000000000000060 /* Ultra-III+ and later */
26 /* These registers only exist as one entity, and are accessed
27 * via ASI_DMMU only.
29 #define PRIMARY_CONTEXT 0x0000000000000008
30 #define SECONDARY_CONTEXT 0x0000000000000010
31 #define DMMU_SFAR 0x0000000000000020
32 #define VIRT_WATCHPOINT 0x0000000000000038
33 #define PHYS_WATCHPOINT 0x0000000000000040
35 #define SPITFIRE_HIGHEST_LOCKED_TLBENT (64 - 1)
36 #define CHEETAH_HIGHEST_LOCKED_TLBENT (16 - 1)
38 #define L1DCACHE_SIZE 0x4000
40 #define SUN4V_CHIP_INVALID 0x00
41 #define SUN4V_CHIP_NIAGARA1 0x01
42 #define SUN4V_CHIP_NIAGARA2 0x02
43 #define SUN4V_CHIP_UNKNOWN 0xff
45 #ifndef __ASSEMBLY__
47 enum ultra_tlb_layout {
48 spitfire = 0,
49 cheetah = 1,
50 cheetah_plus = 2,
51 hypervisor = 3,
54 extern enum ultra_tlb_layout tlb_type;
56 extern int sun4v_chip_type;
58 extern int cheetah_pcache_forced_on;
59 extern void cheetah_enable_pcache(void);
61 #define sparc64_highest_locked_tlbent() \
62 (tlb_type == spitfire ? \
63 SPITFIRE_HIGHEST_LOCKED_TLBENT : \
64 CHEETAH_HIGHEST_LOCKED_TLBENT)
66 /* The data cache is write through, so this just invalidates the
67 * specified line.
69 static inline void spitfire_put_dcache_tag(unsigned long addr, unsigned long tag)
71 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
72 "membar #Sync"
73 : /* No outputs */
74 : "r" (tag), "r" (addr), "i" (ASI_DCACHE_TAG));
77 /* The instruction cache lines are flushed with this, but note that
78 * this does not flush the pipeline. It is possible for a line to
79 * get flushed but stale instructions to still be in the pipeline,
80 * a flush instruction (to any address) is sufficient to handle
81 * this issue after the line is invalidated.
83 static inline void spitfire_put_icache_tag(unsigned long addr, unsigned long tag)
85 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
86 "membar #Sync"
87 : /* No outputs */
88 : "r" (tag), "r" (addr), "i" (ASI_IC_TAG));
91 static inline unsigned long spitfire_get_dtlb_data(int entry)
93 unsigned long data;
95 __asm__ __volatile__("ldxa [%1] %2, %0"
96 : "=r" (data)
97 : "r" (entry << 3), "i" (ASI_DTLB_DATA_ACCESS));
99 /* Clear TTE diag bits. */
100 data &= ~0x0003fe0000000000UL;
102 return data;
105 static inline unsigned long spitfire_get_dtlb_tag(int entry)
107 unsigned long tag;
109 __asm__ __volatile__("ldxa [%1] %2, %0"
110 : "=r" (tag)
111 : "r" (entry << 3), "i" (ASI_DTLB_TAG_READ));
112 return tag;
115 static inline void spitfire_put_dtlb_data(int entry, unsigned long data)
117 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
118 "membar #Sync"
119 : /* No outputs */
120 : "r" (data), "r" (entry << 3),
121 "i" (ASI_DTLB_DATA_ACCESS));
124 static inline unsigned long spitfire_get_itlb_data(int entry)
126 unsigned long data;
128 __asm__ __volatile__("ldxa [%1] %2, %0"
129 : "=r" (data)
130 : "r" (entry << 3), "i" (ASI_ITLB_DATA_ACCESS));
132 /* Clear TTE diag bits. */
133 data &= ~0x0003fe0000000000UL;
135 return data;
138 static inline unsigned long spitfire_get_itlb_tag(int entry)
140 unsigned long tag;
142 __asm__ __volatile__("ldxa [%1] %2, %0"
143 : "=r" (tag)
144 : "r" (entry << 3), "i" (ASI_ITLB_TAG_READ));
145 return tag;
148 static inline void spitfire_put_itlb_data(int entry, unsigned long data)
150 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
151 "membar #Sync"
152 : /* No outputs */
153 : "r" (data), "r" (entry << 3),
154 "i" (ASI_ITLB_DATA_ACCESS));
157 static inline void spitfire_flush_dtlb_nucleus_page(unsigned long page)
159 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
160 "membar #Sync"
161 : /* No outputs */
162 : "r" (page | 0x20), "i" (ASI_DMMU_DEMAP));
165 static inline void spitfire_flush_itlb_nucleus_page(unsigned long page)
167 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
168 "membar #Sync"
169 : /* No outputs */
170 : "r" (page | 0x20), "i" (ASI_IMMU_DEMAP));
173 /* Cheetah has "all non-locked" tlb flushes. */
174 static inline void cheetah_flush_dtlb_all(void)
176 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
177 "membar #Sync"
178 : /* No outputs */
179 : "r" (0x80), "i" (ASI_DMMU_DEMAP));
182 static inline void cheetah_flush_itlb_all(void)
184 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
185 "membar #Sync"
186 : /* No outputs */
187 : "r" (0x80), "i" (ASI_IMMU_DEMAP));
190 /* Cheetah has a 4-tlb layout so direct access is a bit different.
191 * The first two TLBs are fully assosciative, hold 16 entries, and are
192 * used only for locked and >8K sized translations. One exists for
193 * data accesses and one for instruction accesses.
195 * The third TLB is for data accesses to 8K non-locked translations, is
196 * 2 way assosciative, and holds 512 entries. The fourth TLB is for
197 * instruction accesses to 8K non-locked translations, is 2 way
198 * assosciative, and holds 128 entries.
200 * Cheetah has some bug where bogus data can be returned from
201 * ASI_{D,I}TLB_DATA_ACCESS loads, doing the load twice fixes
202 * the problem for me. -DaveM
204 static inline unsigned long cheetah_get_ldtlb_data(int entry)
206 unsigned long data;
208 __asm__ __volatile__("ldxa [%1] %2, %%g0\n\t"
209 "ldxa [%1] %2, %0"
210 : "=r" (data)
211 : "r" ((0 << 16) | (entry << 3)),
212 "i" (ASI_DTLB_DATA_ACCESS));
214 return data;
217 static inline unsigned long cheetah_get_litlb_data(int entry)
219 unsigned long data;
221 __asm__ __volatile__("ldxa [%1] %2, %%g0\n\t"
222 "ldxa [%1] %2, %0"
223 : "=r" (data)
224 : "r" ((0 << 16) | (entry << 3)),
225 "i" (ASI_ITLB_DATA_ACCESS));
227 return data;
230 static inline unsigned long cheetah_get_ldtlb_tag(int entry)
232 unsigned long tag;
234 __asm__ __volatile__("ldxa [%1] %2, %0"
235 : "=r" (tag)
236 : "r" ((0 << 16) | (entry << 3)),
237 "i" (ASI_DTLB_TAG_READ));
239 return tag;
242 static inline unsigned long cheetah_get_litlb_tag(int entry)
244 unsigned long tag;
246 __asm__ __volatile__("ldxa [%1] %2, %0"
247 : "=r" (tag)
248 : "r" ((0 << 16) | (entry << 3)),
249 "i" (ASI_ITLB_TAG_READ));
251 return tag;
254 static inline void cheetah_put_ldtlb_data(int entry, unsigned long data)
256 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
257 "membar #Sync"
258 : /* No outputs */
259 : "r" (data),
260 "r" ((0 << 16) | (entry << 3)),
261 "i" (ASI_DTLB_DATA_ACCESS));
264 static inline void cheetah_put_litlb_data(int entry, unsigned long data)
266 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
267 "membar #Sync"
268 : /* No outputs */
269 : "r" (data),
270 "r" ((0 << 16) | (entry << 3)),
271 "i" (ASI_ITLB_DATA_ACCESS));
274 static inline unsigned long cheetah_get_dtlb_data(int entry, int tlb)
276 unsigned long data;
278 __asm__ __volatile__("ldxa [%1] %2, %%g0\n\t"
279 "ldxa [%1] %2, %0"
280 : "=r" (data)
281 : "r" ((tlb << 16) | (entry << 3)), "i" (ASI_DTLB_DATA_ACCESS));
283 return data;
286 static inline unsigned long cheetah_get_dtlb_tag(int entry, int tlb)
288 unsigned long tag;
290 __asm__ __volatile__("ldxa [%1] %2, %0"
291 : "=r" (tag)
292 : "r" ((tlb << 16) | (entry << 3)), "i" (ASI_DTLB_TAG_READ));
293 return tag;
296 static inline void cheetah_put_dtlb_data(int entry, unsigned long data, int tlb)
298 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
299 "membar #Sync"
300 : /* No outputs */
301 : "r" (data),
302 "r" ((tlb << 16) | (entry << 3)),
303 "i" (ASI_DTLB_DATA_ACCESS));
306 static inline unsigned long cheetah_get_itlb_data(int entry)
308 unsigned long data;
310 __asm__ __volatile__("ldxa [%1] %2, %%g0\n\t"
311 "ldxa [%1] %2, %0"
312 : "=r" (data)
313 : "r" ((2 << 16) | (entry << 3)),
314 "i" (ASI_ITLB_DATA_ACCESS));
316 return data;
319 static inline unsigned long cheetah_get_itlb_tag(int entry)
321 unsigned long tag;
323 __asm__ __volatile__("ldxa [%1] %2, %0"
324 : "=r" (tag)
325 : "r" ((2 << 16) | (entry << 3)), "i" (ASI_ITLB_TAG_READ));
326 return tag;
329 static inline void cheetah_put_itlb_data(int entry, unsigned long data)
331 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
332 "membar #Sync"
333 : /* No outputs */
334 : "r" (data), "r" ((2 << 16) | (entry << 3)),
335 "i" (ASI_ITLB_DATA_ACCESS));
338 #endif /* !(__ASSEMBLY__) */
340 #endif /* !(_SPARC64_SPITFIRE_H) */