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)
7 #ifndef _SPARC64_SPITFIRE_H
8 #define _SPARC64_SPITFIRE_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
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
48 enum ultra_tlb_layout
{
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
70 static __inline__
void spitfire_put_dcache_tag(unsigned long addr
, unsigned long tag
)
72 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
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"
89 : "r" (tag
), "r" (addr
), "i" (ASI_IC_TAG
));
92 static __inline__
unsigned long spitfire_get_dtlb_data(int entry
)
96 __asm__
__volatile__("ldxa [%1] %2, %0"
98 : "r" (entry
<< 3), "i" (ASI_DTLB_DATA_ACCESS
));
100 /* Clear TTE diag bits. */
101 data
&= ~0x0003fe0000000000UL
;
106 static __inline__
unsigned long spitfire_get_dtlb_tag(int entry
)
110 __asm__
__volatile__("ldxa [%1] %2, %0"
112 : "r" (entry
<< 3), "i" (ASI_DTLB_TAG_READ
));
116 static __inline__
void spitfire_put_dtlb_data(int entry
, unsigned long data
)
118 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
121 : "r" (data
), "r" (entry
<< 3),
122 "i" (ASI_DTLB_DATA_ACCESS
));
125 static __inline__
unsigned long spitfire_get_itlb_data(int entry
)
129 __asm__
__volatile__("ldxa [%1] %2, %0"
131 : "r" (entry
<< 3), "i" (ASI_ITLB_DATA_ACCESS
));
133 /* Clear TTE diag bits. */
134 data
&= ~0x0003fe0000000000UL
;
139 static __inline__
unsigned long spitfire_get_itlb_tag(int entry
)
143 __asm__
__volatile__("ldxa [%1] %2, %0"
145 : "r" (entry
<< 3), "i" (ASI_ITLB_TAG_READ
));
149 static __inline__
void spitfire_put_itlb_data(int entry
, unsigned long data
)
151 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
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"
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"
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"
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"
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
)
209 __asm__
__volatile__("ldxa [%1] %2, %%g0\n\t"
212 : "r" ((0 << 16) | (entry
<< 3)),
213 "i" (ASI_DTLB_DATA_ACCESS
));
218 static __inline__
unsigned long cheetah_get_litlb_data(int entry
)
222 __asm__
__volatile__("ldxa [%1] %2, %%g0\n\t"
225 : "r" ((0 << 16) | (entry
<< 3)),
226 "i" (ASI_ITLB_DATA_ACCESS
));
231 static __inline__
unsigned long cheetah_get_ldtlb_tag(int entry
)
235 __asm__
__volatile__("ldxa [%1] %2, %0"
237 : "r" ((0 << 16) | (entry
<< 3)),
238 "i" (ASI_DTLB_TAG_READ
));
243 static __inline__
unsigned long cheetah_get_litlb_tag(int entry
)
247 __asm__
__volatile__("ldxa [%1] %2, %0"
249 : "r" ((0 << 16) | (entry
<< 3)),
250 "i" (ASI_ITLB_TAG_READ
));
255 static __inline__
void cheetah_put_ldtlb_data(int entry
, unsigned long data
)
257 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
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"
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
)
279 __asm__
__volatile__("ldxa [%1] %2, %%g0\n\t"
282 : "r" ((tlb
<< 16) | (entry
<< 3)), "i" (ASI_DTLB_DATA_ACCESS
));
287 static __inline__
unsigned long cheetah_get_dtlb_tag(int entry
, int tlb
)
291 __asm__
__volatile__("ldxa [%1] %2, %0"
293 : "r" ((tlb
<< 16) | (entry
<< 3)), "i" (ASI_DTLB_TAG_READ
));
297 static __inline__
void cheetah_put_dtlb_data(int entry
, unsigned long data
, int tlb
)
299 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
303 "r" ((tlb
<< 16) | (entry
<< 3)),
304 "i" (ASI_DTLB_DATA_ACCESS
));
307 static __inline__
unsigned long cheetah_get_itlb_data(int entry
)
311 __asm__
__volatile__("ldxa [%1] %2, %%g0\n\t"
314 : "r" ((2 << 16) | (entry
<< 3)),
315 "i" (ASI_ITLB_DATA_ACCESS
));
320 static __inline__
unsigned long cheetah_get_itlb_tag(int entry
)
324 __asm__
__volatile__("ldxa [%1] %2, %0"
326 : "r" ((2 << 16) | (entry
<< 3)), "i" (ASI_ITLB_TAG_READ
));
330 static __inline__
void cheetah_put_itlb_data(int entry
, unsigned long data
)
332 __asm__
__volatile__("stxa %0, [%1] %2\n\t"
335 : "r" (data
), "r" ((2 << 16) | (entry
<< 3)),
336 "i" (ASI_ITLB_DATA_ACCESS
));
339 #endif /* !(__ASSEMBLY__) */
341 #endif /* !(_SPARC64_SPITFIRE_H) */