1 /* spitfire.h: SpitFire/BlackBird/Cheetah inline MMU operations.
3 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
6 #ifndef _SPARC64_SPITFIRE_H
7 #define _SPARC64_SPITFIRE_H
13 /* The following register addresses are accessible via ASI_DMMU
14 * and ASI_IMMU, that is there is a distinct and unique copy of
15 * each these registers for each TLB.
17 #define TSB_TAG_TARGET 0x0000000000000000 /* All chips */
18 #define TLB_SFSR 0x0000000000000018 /* All chips */
19 #define TSB_REG 0x0000000000000028 /* All chips */
20 #define TLB_TAG_ACCESS 0x0000000000000030 /* All chips */
21 #define VIRT_WATCHPOINT 0x0000000000000038 /* All chips */
22 #define PHYS_WATCHPOINT 0x0000000000000040 /* All chips */
23 #define TSB_EXTENSION_P 0x0000000000000048 /* Ultra-III and later */
24 #define TSB_EXTENSION_S 0x0000000000000050 /* Ultra-III and later, D-TLB only */
25 #define TSB_EXTENSION_N 0x0000000000000058 /* Ultra-III and later */
26 #define TLB_TAG_ACCESS_EXT 0x0000000000000060 /* Ultra-III+ and later */
28 /* These registers only exist as one entity, and are accessed
31 #define PRIMARY_CONTEXT 0x0000000000000008
32 #define SECONDARY_CONTEXT 0x0000000000000010
33 #define DMMU_SFAR 0x0000000000000020
34 #define VIRT_WATCHPOINT 0x0000000000000038
35 #define PHYS_WATCHPOINT 0x0000000000000040
37 #define SPITFIRE_HIGHEST_LOCKED_TLBENT (64 - 1)
38 #define CHEETAH_HIGHEST_LOCKED_TLBENT (16 - 1)
40 #define L1DCACHE_SIZE 0x4000
42 #define SUN4V_CHIP_INVALID 0x00
43 #define SUN4V_CHIP_NIAGARA1 0x01
44 #define SUN4V_CHIP_NIAGARA2 0x02
45 #define SUN4V_CHIP_NIAGARA3 0x03
46 #define SUN4V_CHIP_NIAGARA4 0x04
47 #define SUN4V_CHIP_NIAGARA5 0x05
48 #define SUN4V_CHIP_UNKNOWN 0xff
52 enum ultra_tlb_layout
{
59 extern enum ultra_tlb_layout tlb_type
;
61 extern int sun4v_chip_type
;
63 extern int cheetah_pcache_forced_on
;
64 extern void cheetah_enable_pcache(void);
66 #define sparc64_highest_locked_tlbent() \
67 (tlb_type == spitfire ? \
68 SPITFIRE_HIGHEST_LOCKED_TLBENT : \
69 CHEETAH_HIGHEST_LOCKED_TLBENT)
71 extern int num_kernel_image_mappings
;
73 /* The data cache is write through, so this just invalidates the
76 static inline void spitfire_put_dcache_tag(unsigned long addr
, unsigned long tag
)
78 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
81 : "r" (tag
), "r" (addr
), "i" (ASI_DCACHE_TAG
));
84 /* The instruction cache lines are flushed with this, but note that
85 * this does not flush the pipeline. It is possible for a line to
86 * get flushed but stale instructions to still be in the pipeline,
87 * a flush instruction (to any address) is sufficient to handle
88 * this issue after the line is invalidated.
90 static inline void spitfire_put_icache_tag(unsigned long addr
, unsigned long tag
)
92 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
95 : "r" (tag
), "r" (addr
), "i" (ASI_IC_TAG
));
98 static inline unsigned long spitfire_get_dtlb_data(int entry
)
102 __asm__
__volatile__("ldxa [%1] %2, %0"
104 : "r" (entry
<< 3), "i" (ASI_DTLB_DATA_ACCESS
));
106 /* Clear TTE diag bits. */
107 data
&= ~0x0003fe0000000000UL
;
112 static inline unsigned long spitfire_get_dtlb_tag(int entry
)
116 __asm__
__volatile__("ldxa [%1] %2, %0"
118 : "r" (entry
<< 3), "i" (ASI_DTLB_TAG_READ
));
122 static inline void spitfire_put_dtlb_data(int entry
, unsigned long data
)
124 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
127 : "r" (data
), "r" (entry
<< 3),
128 "i" (ASI_DTLB_DATA_ACCESS
));
131 static inline unsigned long spitfire_get_itlb_data(int entry
)
135 __asm__
__volatile__("ldxa [%1] %2, %0"
137 : "r" (entry
<< 3), "i" (ASI_ITLB_DATA_ACCESS
));
139 /* Clear TTE diag bits. */
140 data
&= ~0x0003fe0000000000UL
;
145 static inline unsigned long spitfire_get_itlb_tag(int entry
)
149 __asm__
__volatile__("ldxa [%1] %2, %0"
151 : "r" (entry
<< 3), "i" (ASI_ITLB_TAG_READ
));
155 static inline void spitfire_put_itlb_data(int entry
, unsigned long data
)
157 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
160 : "r" (data
), "r" (entry
<< 3),
161 "i" (ASI_ITLB_DATA_ACCESS
));
164 static inline void spitfire_flush_dtlb_nucleus_page(unsigned long page
)
166 __asm__
__volatile__("stxa %%g0, [%0] %1\n\t"
169 : "r" (page
| 0x20), "i" (ASI_DMMU_DEMAP
));
172 static inline void spitfire_flush_itlb_nucleus_page(unsigned long page
)
174 __asm__
__volatile__("stxa %%g0, [%0] %1\n\t"
177 : "r" (page
| 0x20), "i" (ASI_IMMU_DEMAP
));
180 /* Cheetah has "all non-locked" tlb flushes. */
181 static inline void cheetah_flush_dtlb_all(void)
183 __asm__
__volatile__("stxa %%g0, [%0] %1\n\t"
186 : "r" (0x80), "i" (ASI_DMMU_DEMAP
));
189 static inline void cheetah_flush_itlb_all(void)
191 __asm__
__volatile__("stxa %%g0, [%0] %1\n\t"
194 : "r" (0x80), "i" (ASI_IMMU_DEMAP
));
197 /* Cheetah has a 4-tlb layout so direct access is a bit different.
198 * The first two TLBs are fully assosciative, hold 16 entries, and are
199 * used only for locked and >8K sized translations. One exists for
200 * data accesses and one for instruction accesses.
202 * The third TLB is for data accesses to 8K non-locked translations, is
203 * 2 way assosciative, and holds 512 entries. The fourth TLB is for
204 * instruction accesses to 8K non-locked translations, is 2 way
205 * assosciative, and holds 128 entries.
207 * Cheetah has some bug where bogus data can be returned from
208 * ASI_{D,I}TLB_DATA_ACCESS loads, doing the load twice fixes
209 * the problem for me. -DaveM
211 static inline unsigned long cheetah_get_ldtlb_data(int entry
)
215 __asm__
__volatile__("ldxa [%1] %2, %%g0\n\t"
218 : "r" ((0 << 16) | (entry
<< 3)),
219 "i" (ASI_DTLB_DATA_ACCESS
));
224 static inline unsigned long cheetah_get_litlb_data(int entry
)
228 __asm__
__volatile__("ldxa [%1] %2, %%g0\n\t"
231 : "r" ((0 << 16) | (entry
<< 3)),
232 "i" (ASI_ITLB_DATA_ACCESS
));
237 static inline unsigned long cheetah_get_ldtlb_tag(int entry
)
241 __asm__
__volatile__("ldxa [%1] %2, %0"
243 : "r" ((0 << 16) | (entry
<< 3)),
244 "i" (ASI_DTLB_TAG_READ
));
249 static inline unsigned long cheetah_get_litlb_tag(int entry
)
253 __asm__
__volatile__("ldxa [%1] %2, %0"
255 : "r" ((0 << 16) | (entry
<< 3)),
256 "i" (ASI_ITLB_TAG_READ
));
261 static inline void cheetah_put_ldtlb_data(int entry
, unsigned long data
)
263 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
267 "r" ((0 << 16) | (entry
<< 3)),
268 "i" (ASI_DTLB_DATA_ACCESS
));
271 static inline void cheetah_put_litlb_data(int entry
, unsigned long data
)
273 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
277 "r" ((0 << 16) | (entry
<< 3)),
278 "i" (ASI_ITLB_DATA_ACCESS
));
281 static inline unsigned long cheetah_get_dtlb_data(int entry
, int tlb
)
285 __asm__
__volatile__("ldxa [%1] %2, %%g0\n\t"
288 : "r" ((tlb
<< 16) | (entry
<< 3)), "i" (ASI_DTLB_DATA_ACCESS
));
293 static inline unsigned long cheetah_get_dtlb_tag(int entry
, int tlb
)
297 __asm__
__volatile__("ldxa [%1] %2, %0"
299 : "r" ((tlb
<< 16) | (entry
<< 3)), "i" (ASI_DTLB_TAG_READ
));
303 static inline void cheetah_put_dtlb_data(int entry
, unsigned long data
, int tlb
)
305 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
309 "r" ((tlb
<< 16) | (entry
<< 3)),
310 "i" (ASI_DTLB_DATA_ACCESS
));
313 static inline unsigned long cheetah_get_itlb_data(int entry
)
317 __asm__
__volatile__("ldxa [%1] %2, %%g0\n\t"
320 : "r" ((2 << 16) | (entry
<< 3)),
321 "i" (ASI_ITLB_DATA_ACCESS
));
326 static inline unsigned long cheetah_get_itlb_tag(int entry
)
330 __asm__
__volatile__("ldxa [%1] %2, %0"
332 : "r" ((2 << 16) | (entry
<< 3)), "i" (ASI_ITLB_TAG_READ
));
336 static inline void cheetah_put_itlb_data(int entry
, unsigned long data
)
338 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
341 : "r" (data
), "r" ((2 << 16) | (entry
<< 3)),
342 "i" (ASI_ITLB_DATA_ACCESS
));
345 #endif /* !(__ASSEMBLY__) */
346 #endif /* CONFIG_SPARC64 */
347 #endif /* !(_SPARC64_SPITFIRE_H) */