| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 1 | /* arch/sparc64/kernel/ktlb.S: Kernel mapping TLB miss handling. | 
|  | 2 | * | 
| David S. Miller | bf4a797 | 2008-01-10 21:10:54 -0800 | [diff] [blame] | 3 | * Copyright (C) 1995, 1997, 2005, 2008 David S. Miller <davem@davemloft.net> | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 4 | * Copyright (C) 1996 Eddie C. Dost        (ecd@brainaid.de) | 
|  | 5 | * Copyright (C) 1996 Miguel de Icaza      (miguel@nuclecu.unam.mx) | 
|  | 6 | * Copyright (C) 1996,98,99 Jakub Jelinek  (jj@sunsite.mff.cuni.cz) | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 7 | */ | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 8 |  | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 9 | #include <asm/head.h> | 
|  | 10 | #include <asm/asi.h> | 
|  | 11 | #include <asm/page.h> | 
|  | 12 | #include <asm/pgtable.h> | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 13 | #include <asm/tsb.h> | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 14 |  | 
|  | 15 | .text | 
|  | 16 | .align		32 | 
|  | 17 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 18 | kvmap_itlb: | 
|  | 19 | /* g6: TAG TARGET */ | 
|  | 20 | mov		TLB_TAG_ACCESS, %g4 | 
|  | 21 | ldxa		[%g4] ASI_IMMU, %g4 | 
|  | 22 |  | 
| David S. Miller | d257d5d | 2006-02-06 23:44:37 -0800 | [diff] [blame] | 23 | /* sun4v_itlb_miss branches here with the missing virtual | 
|  | 24 | * address already loaded into %g4 | 
|  | 25 | */ | 
|  | 26 | kvmap_itlb_4v: | 
|  | 27 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 28 | kvmap_itlb_nonlinear: | 
|  | 29 | /* Catch kernel NULL pointer calls.  */ | 
|  | 30 | sethi		%hi(PAGE_SIZE), %g5 | 
|  | 31 | cmp		%g4, %g5 | 
|  | 32 | bleu,pn		%xcc, kvmap_dtlb_longpath | 
|  | 33 | nop | 
|  | 34 |  | 
|  | 35 | KERN_TSB_LOOKUP_TL1(%g4, %g6, %g5, %g1, %g2, %g3, kvmap_itlb_load) | 
|  | 36 |  | 
|  | 37 | kvmap_itlb_tsb_miss: | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 38 | sethi		%hi(LOW_OBP_ADDRESS), %g5 | 
|  | 39 | cmp		%g4, %g5 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 40 | blu,pn		%xcc, kvmap_itlb_vmalloc_addr | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 41 | mov		0x1, %g5 | 
|  | 42 | sllx		%g5, 32, %g5 | 
|  | 43 | cmp		%g4, %g5 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 44 | blu,pn		%xcc, kvmap_itlb_obp | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 45 | nop | 
|  | 46 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 47 | kvmap_itlb_vmalloc_addr: | 
|  | 48 | KERN_PGTABLE_WALK(%g4, %g5, %g2, kvmap_itlb_longpath) | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 49 |  | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 50 | KTSB_LOCK_TAG(%g1, %g2, %g7) | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 51 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 52 | /* Load and check PTE.  */ | 
|  | 53 | ldxa		[%g5] ASI_PHYS_USE_EC, %g5 | 
| David S. Miller | 8b23427 | 2006-02-17 18:01:02 -0800 | [diff] [blame] | 54 | mov		1, %g7 | 
|  | 55 | sllx		%g7, TSB_TAG_INVALID_BIT, %g7 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 56 | brgez,a,pn	%g5, kvmap_itlb_longpath | 
| David S. Miller | 8b23427 | 2006-02-17 18:01:02 -0800 | [diff] [blame] | 57 | KTSB_STORE(%g1, %g7) | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 58 |  | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 59 | KTSB_WRITE(%g1, %g5, %g6) | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 60 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 61 | /* fallthrough to TLB load */ | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 62 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 63 | kvmap_itlb_load: | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 64 |  | 
|  | 65 | 661:	stxa		%g5, [%g0] ASI_ITLB_DATA_IN | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 66 | retry | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 67 | .section	.sun4v_2insn_patch, "ax" | 
|  | 68 | .word		661b | 
|  | 69 | nop | 
|  | 70 | nop | 
|  | 71 | .previous | 
|  | 72 |  | 
|  | 73 | /* For sun4v the ASI_ITLB_DATA_IN store and the retry | 
|  | 74 | * instruction get nop'd out and we get here to branch | 
|  | 75 | * to the sun4v tlb load code.  The registers are setup | 
|  | 76 | * as follows: | 
|  | 77 | * | 
|  | 78 | * %g4: vaddr | 
|  | 79 | * %g5: PTE | 
|  | 80 | * %g6:	TAG | 
|  | 81 | * | 
|  | 82 | * The sun4v TLB load wants the PTE in %g3 so we fix that | 
|  | 83 | * up here. | 
|  | 84 | */ | 
|  | 85 | ba,pt		%xcc, sun4v_itlb_load | 
|  | 86 | mov		%g5, %g3 | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 87 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 88 | kvmap_itlb_longpath: | 
| David S. Miller | 45fec05 | 2006-02-05 22:27:28 -0800 | [diff] [blame] | 89 |  | 
|  | 90 | 661:	rdpr	%pstate, %g5 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 91 | wrpr	%g5, PSTATE_AG | PSTATE_MG, %pstate | 
| David S. Miller | df7d6ae | 2006-02-07 00:00:16 -0800 | [diff] [blame] | 92 | .section .sun4v_2insn_patch, "ax" | 
| David S. Miller | 45fec05 | 2006-02-05 22:27:28 -0800 | [diff] [blame] | 93 | .word	661b | 
| David S. Miller | 6cc200d | 2006-02-18 16:36:39 -0800 | [diff] [blame] | 94 | SET_GL(1) | 
| David S. Miller | 45fec05 | 2006-02-05 22:27:28 -0800 | [diff] [blame] | 95 | nop | 
|  | 96 | .previous | 
|  | 97 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 98 | rdpr	%tpc, %g5 | 
|  | 99 | ba,pt	%xcc, sparc64_realfault_common | 
|  | 100 | mov	FAULT_CODE_ITLB, %g4 | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 101 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 102 | kvmap_itlb_obp: | 
|  | 103 | OBP_TRANS_LOOKUP(%g4, %g5, %g2, %g3, kvmap_itlb_longpath) | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 104 |  | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 105 | KTSB_LOCK_TAG(%g1, %g2, %g7) | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 106 |  | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 107 | KTSB_WRITE(%g1, %g5, %g6) | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 108 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 109 | ba,pt		%xcc, kvmap_itlb_load | 
|  | 110 | nop | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 111 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 112 | kvmap_dtlb_obp: | 
|  | 113 | OBP_TRANS_LOOKUP(%g4, %g5, %g2, %g3, kvmap_dtlb_longpath) | 
|  | 114 |  | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 115 | KTSB_LOCK_TAG(%g1, %g2, %g7) | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 116 |  | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 117 | KTSB_WRITE(%g1, %g5, %g6) | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 118 |  | 
|  | 119 | ba,pt		%xcc, kvmap_dtlb_load | 
|  | 120 | nop | 
|  | 121 |  | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 122 | .align		32 | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 123 | kvmap_dtlb_tsb4m_load: | 
|  | 124 | KTSB_LOCK_TAG(%g1, %g2, %g7) | 
|  | 125 | KTSB_WRITE(%g1, %g5, %g6) | 
|  | 126 | ba,pt		%xcc, kvmap_dtlb_load | 
|  | 127 | nop | 
|  | 128 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 129 | kvmap_dtlb: | 
|  | 130 | /* %g6: TAG TARGET */ | 
|  | 131 | mov		TLB_TAG_ACCESS, %g4 | 
|  | 132 | ldxa		[%g4] ASI_DMMU, %g4 | 
| David S. Miller | d257d5d | 2006-02-06 23:44:37 -0800 | [diff] [blame] | 133 |  | 
|  | 134 | /* sun4v_dtlb_miss branches here with the missing virtual | 
|  | 135 | * address already loaded into %g4 | 
|  | 136 | */ | 
|  | 137 | kvmap_dtlb_4v: | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 138 | brgez,pn	%g4, kvmap_dtlb_nonlinear | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 139 | nop | 
|  | 140 |  | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 141 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
|  | 142 | /* Index through the base page size TSB even for linear | 
|  | 143 | * mappings when using page allocation debugging. | 
|  | 144 | */ | 
|  | 145 | KERN_TSB_LOOKUP_TL1(%g4, %g6, %g5, %g1, %g2, %g3, kvmap_dtlb_load) | 
|  | 146 | #else | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 147 | /* Correct TAG_TARGET is already in %g6, check 4mb TSB.  */ | 
|  | 148 | KERN_TSB4M_LOOKUP_TL1(%g6, %g5, %g1, %g2, %g3, kvmap_dtlb_load) | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 149 | #endif | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 150 | /* TSB entry address left in %g1, lookup linear PTE. | 
|  | 151 | * Must preserve %g1 and %g6 (TAG). | 
|  | 152 | */ | 
|  | 153 | kvmap_dtlb_tsb4m_miss: | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 154 | sethi		%hi(kpte_linear_bitmap), %g2 | 
|  | 155 | or		%g2, %lo(kpte_linear_bitmap), %g2 | 
|  | 156 |  | 
|  | 157 | /* Clear the PAGE_OFFSET top virtual bits, then shift | 
|  | 158 | * down to get a 256MB physical address index. | 
|  | 159 | */ | 
|  | 160 | sllx		%g4, 21, %g5 | 
|  | 161 | mov		1, %g7 | 
|  | 162 | srlx		%g5, 21 + 28, %g5 | 
|  | 163 |  | 
|  | 164 | /* Don't try this at home kids... this depends upon srlx | 
|  | 165 | * only taking the low 6 bits of the shift count in %g5. | 
|  | 166 | */ | 
|  | 167 | sllx		%g7, %g5, %g7 | 
|  | 168 |  | 
|  | 169 | /* Divide by 64 to get the offset into the bitmask.  */ | 
|  | 170 | srlx		%g5, 6, %g5 | 
| David S. Miller | 6889331 | 2006-02-26 23:09:37 -0800 | [diff] [blame] | 171 | sllx		%g5, 3, %g5 | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 172 |  | 
|  | 173 | /* kern_linear_pte_xor[((mask & bit) ? 1 : 0)] */ | 
|  | 174 | ldx		[%g2 + %g5], %g2 | 
|  | 175 | andcc		%g2, %g7, %g0 | 
|  | 176 | sethi		%hi(kern_linear_pte_xor), %g5 | 
|  | 177 | or		%g5, %lo(kern_linear_pte_xor), %g5 | 
|  | 178 | bne,a,pt	%xcc, 1f | 
|  | 179 | add		%g5, 8, %g5 | 
|  | 180 |  | 
|  | 181 | 1:	ldx		[%g5], %g2 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 182 |  | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 183 | .globl		kvmap_linear_patch | 
|  | 184 | kvmap_linear_patch: | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 185 | ba,pt		%xcc, kvmap_dtlb_tsb4m_load | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 186 | xor		%g2, %g4, %g5 | 
|  | 187 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 188 | kvmap_dtlb_vmalloc_addr: | 
|  | 189 | KERN_PGTABLE_WALK(%g4, %g5, %g2, kvmap_dtlb_longpath) | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 190 |  | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 191 | KTSB_LOCK_TAG(%g1, %g2, %g7) | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 192 |  | 
|  | 193 | /* Load and check PTE.  */ | 
|  | 194 | ldxa		[%g5] ASI_PHYS_USE_EC, %g5 | 
| David S. Miller | 8b23427 | 2006-02-17 18:01:02 -0800 | [diff] [blame] | 195 | mov		1, %g7 | 
|  | 196 | sllx		%g7, TSB_TAG_INVALID_BIT, %g7 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 197 | brgez,a,pn	%g5, kvmap_dtlb_longpath | 
| David S. Miller | 8b23427 | 2006-02-17 18:01:02 -0800 | [diff] [blame] | 198 | KTSB_STORE(%g1, %g7) | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 199 |  | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 200 | KTSB_WRITE(%g1, %g5, %g6) | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 201 |  | 
|  | 202 | /* fallthrough to TLB load */ | 
|  | 203 |  | 
|  | 204 | kvmap_dtlb_load: | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 205 |  | 
|  | 206 | 661:	stxa		%g5, [%g0] ASI_DTLB_DATA_IN	! Reload TLB | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 207 | retry | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 208 | .section	.sun4v_2insn_patch, "ax" | 
|  | 209 | .word		661b | 
|  | 210 | nop | 
|  | 211 | nop | 
|  | 212 | .previous | 
|  | 213 |  | 
|  | 214 | /* For sun4v the ASI_DTLB_DATA_IN store and the retry | 
|  | 215 | * instruction get nop'd out and we get here to branch | 
|  | 216 | * to the sun4v tlb load code.  The registers are setup | 
|  | 217 | * as follows: | 
|  | 218 | * | 
|  | 219 | * %g4: vaddr | 
|  | 220 | * %g5: PTE | 
|  | 221 | * %g6:	TAG | 
|  | 222 | * | 
|  | 223 | * The sun4v TLB load wants the PTE in %g3 so we fix that | 
|  | 224 | * up here. | 
|  | 225 | */ | 
|  | 226 | ba,pt		%xcc, sun4v_dtlb_load | 
|  | 227 | mov		%g5, %g3 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 228 |  | 
| David S. Miller | bf4a797 | 2008-01-10 21:10:54 -0800 | [diff] [blame] | 229 | #ifdef CONFIG_SPARSEMEM_VMEMMAP | 
| David Miller | 46644c2 | 2007-10-16 01:24:16 -0700 | [diff] [blame] | 230 | kvmap_vmemmap: | 
|  | 231 | sub		%g4, %g5, %g5 | 
|  | 232 | srlx		%g5, 22, %g5 | 
|  | 233 | sethi		%hi(vmemmap_table), %g1 | 
|  | 234 | sllx		%g5, 3, %g5 | 
|  | 235 | or		%g1, %lo(vmemmap_table), %g1 | 
|  | 236 | ba,pt		%xcc, kvmap_dtlb_load | 
|  | 237 | ldx		[%g1 + %g5], %g5 | 
| David S. Miller | bf4a797 | 2008-01-10 21:10:54 -0800 | [diff] [blame] | 238 | #endif | 
| David Miller | 46644c2 | 2007-10-16 01:24:16 -0700 | [diff] [blame] | 239 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 240 | kvmap_dtlb_nonlinear: | 
|  | 241 | /* Catch kernel NULL pointer derefs.  */ | 
|  | 242 | sethi		%hi(PAGE_SIZE), %g5 | 
|  | 243 | cmp		%g4, %g5 | 
|  | 244 | bleu,pn		%xcc, kvmap_dtlb_longpath | 
|  | 245 | nop | 
|  | 246 |  | 
| David S. Miller | bf4a797 | 2008-01-10 21:10:54 -0800 | [diff] [blame] | 247 | #ifdef CONFIG_SPARSEMEM_VMEMMAP | 
| David Miller | 46644c2 | 2007-10-16 01:24:16 -0700 | [diff] [blame] | 248 | /* Do not use the TSB for vmemmap.  */ | 
|  | 249 | mov		(VMEMMAP_BASE >> 24), %g5 | 
|  | 250 | sllx		%g5, 24, %g5 | 
|  | 251 | cmp		%g4,%g5 | 
|  | 252 | bgeu,pn		%xcc, kvmap_vmemmap | 
|  | 253 | nop | 
| David S. Miller | bf4a797 | 2008-01-10 21:10:54 -0800 | [diff] [blame] | 254 | #endif | 
| David Miller | 46644c2 | 2007-10-16 01:24:16 -0700 | [diff] [blame] | 255 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 256 | KERN_TSB_LOOKUP_TL1(%g4, %g6, %g5, %g1, %g2, %g3, kvmap_dtlb_load) | 
|  | 257 |  | 
|  | 258 | kvmap_dtlb_tsbmiss: | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 259 | sethi		%hi(MODULES_VADDR), %g5 | 
|  | 260 | cmp		%g4, %g5 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 261 | blu,pn		%xcc, kvmap_dtlb_longpath | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 262 | mov		(VMALLOC_END >> 24), %g5 | 
|  | 263 | sllx		%g5, 24, %g5 | 
|  | 264 | cmp		%g4, %g5 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 265 | bgeu,pn		%xcc, kvmap_dtlb_longpath | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 266 | nop | 
|  | 267 |  | 
|  | 268 | kvmap_check_obp: | 
|  | 269 | sethi		%hi(LOW_OBP_ADDRESS), %g5 | 
|  | 270 | cmp		%g4, %g5 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 271 | blu,pn		%xcc, kvmap_dtlb_vmalloc_addr | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 272 | mov		0x1, %g5 | 
|  | 273 | sllx		%g5, 32, %g5 | 
|  | 274 | cmp		%g4, %g5 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 275 | blu,pn		%xcc, kvmap_dtlb_obp | 
|  | 276 | nop | 
|  | 277 | ba,pt		%xcc, kvmap_dtlb_vmalloc_addr | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 278 | nop | 
|  | 279 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 280 | kvmap_dtlb_longpath: | 
| David S. Miller | 45fec05 | 2006-02-05 22:27:28 -0800 | [diff] [blame] | 281 |  | 
|  | 282 | 661:	rdpr	%pstate, %g5 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 283 | wrpr	%g5, PSTATE_AG | PSTATE_MG, %pstate | 
| David S. Miller | df7d6ae | 2006-02-07 00:00:16 -0800 | [diff] [blame] | 284 | .section .sun4v_2insn_patch, "ax" | 
| David S. Miller | 45fec05 | 2006-02-05 22:27:28 -0800 | [diff] [blame] | 285 | .word	661b | 
| David S. Miller | 8b23427 | 2006-02-17 18:01:02 -0800 | [diff] [blame] | 286 | SET_GL(1) | 
|  | 287 | ldxa		[%g0] ASI_SCRATCHPAD, %g5 | 
| David S. Miller | 45fec05 | 2006-02-05 22:27:28 -0800 | [diff] [blame] | 288 | .previous | 
|  | 289 |  | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 290 | rdpr	%tl, %g3 | 
|  | 291 | cmp	%g3, 1 | 
|  | 292 |  | 
|  | 293 | 661:	mov	TLB_TAG_ACCESS, %g4 | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 294 | ldxa	[%g4] ASI_DMMU, %g5 | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 295 | .section .sun4v_2insn_patch, "ax" | 
|  | 296 | .word	661b | 
| David S. Miller | 8b23427 | 2006-02-17 18:01:02 -0800 | [diff] [blame] | 297 | ldx	[%g5 + HV_FAULT_D_ADDR_OFFSET], %g5 | 
| David S. Miller | 459b6e6 | 2006-02-11 12:21:20 -0800 | [diff] [blame] | 298 | nop | 
|  | 299 | .previous | 
|  | 300 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 301 | be,pt	%xcc, sparc64_realfault_common | 
|  | 302 | mov	FAULT_CODE_DTLB, %g4 | 
|  | 303 | ba,pt	%xcc, winfix_trampoline | 
| David S. Miller | 2a7e299 | 2005-09-21 18:50:51 -0700 | [diff] [blame] | 304 | nop |