blob: 6bfaf73ce8a00bdd84ea78e3f6beaccf604ef824 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David S. Miller2a7e2992005-09-21 18:50:51 -07002/* arch/sparc64/kernel/ktlb.S: Kernel mapping TLB miss handling.
3 *
David S. Millerbf4a7972008-01-10 21:10:54 -08004 * Copyright (C) 1995, 1997, 2005, 2008 David S. Miller <davem@davemloft.net>
David S. Miller2a7e2992005-09-21 18:50:51 -07005 * Copyright (C) 1996 Eddie C. Dost (ecd@brainaid.de)
6 * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx)
7 * Copyright (C) 1996,98,99 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
David S. Miller74bf4312006-01-31 18:29:18 -08008 */
David S. Miller2a7e2992005-09-21 18:50:51 -07009
Mike Rapoport65fddcf2020-06-08 21:32:42 -070010#include <linux/pgtable.h>
David S. Miller2a7e2992005-09-21 18:50:51 -070011#include <asm/head.h>
12#include <asm/asi.h>
13#include <asm/page.h>
David S. Miller74bf4312006-01-31 18:29:18 -080014#include <asm/tsb.h>
David S. Miller2a7e2992005-09-21 18:50:51 -070015
16 .text
17 .align 32
18
David S. Miller74bf4312006-01-31 18:29:18 -080019kvmap_itlb:
20 /* g6: TAG TARGET */
21 mov TLB_TAG_ACCESS, %g4
22 ldxa [%g4] ASI_IMMU, %g4
23
David S. Miller4f6deb82016-07-27 17:50:26 -070024 /* The kernel executes in context zero, therefore we do not
25 * need to clear the context ID bits out of %g4 here.
26 */
27
David S. Millerd257d5d2006-02-06 23:44:37 -080028 /* sun4v_itlb_miss branches here with the missing virtual
29 * address already loaded into %g4
30 */
31kvmap_itlb_4v:
32
David S. Miller74bf4312006-01-31 18:29:18 -080033 /* Catch kernel NULL pointer calls. */
34 sethi %hi(PAGE_SIZE), %g5
35 cmp %g4, %g5
Kirill Tkhai1c2696c2013-08-02 19:23:18 +040036 blu,pn %xcc, kvmap_itlb_longpath
David S. Miller74bf4312006-01-31 18:29:18 -080037 nop
38
39 KERN_TSB_LOOKUP_TL1(%g4, %g6, %g5, %g1, %g2, %g3, kvmap_itlb_load)
40
41kvmap_itlb_tsb_miss:
David S. Miller2a7e2992005-09-21 18:50:51 -070042 sethi %hi(LOW_OBP_ADDRESS), %g5
43 cmp %g4, %g5
David S. Miller74bf4312006-01-31 18:29:18 -080044 blu,pn %xcc, kvmap_itlb_vmalloc_addr
David S. Miller2a7e2992005-09-21 18:50:51 -070045 mov 0x1, %g5
46 sllx %g5, 32, %g5
47 cmp %g4, %g5
David S. Miller74bf4312006-01-31 18:29:18 -080048 blu,pn %xcc, kvmap_itlb_obp
David S. Miller2a7e2992005-09-21 18:50:51 -070049 nop
50
David S. Miller74bf4312006-01-31 18:29:18 -080051kvmap_itlb_vmalloc_addr:
52 KERN_PGTABLE_WALK(%g4, %g5, %g2, kvmap_itlb_longpath)
David S. Miller2a7e2992005-09-21 18:50:51 -070053
David S. Miller9076d0e2011-08-05 00:53:57 -070054 TSB_LOCK_TAG(%g1, %g2, %g7)
David S. Miller9076d0e2011-08-05 00:53:57 -070055 TSB_WRITE(%g1, %g5, %g6)
David S. Miller2a7e2992005-09-21 18:50:51 -070056
David S. Miller74bf4312006-01-31 18:29:18 -080057 /* fallthrough to TLB load */
David S. Miller2a7e2992005-09-21 18:50:51 -070058
David S. Miller74bf4312006-01-31 18:29:18 -080059kvmap_itlb_load:
David S. Miller459b6e62006-02-11 12:21:20 -080060
61661: stxa %g5, [%g0] ASI_ITLB_DATA_IN
David S. Miller2a7e2992005-09-21 18:50:51 -070062 retry
David S. Miller459b6e62006-02-11 12:21:20 -080063 .section .sun4v_2insn_patch, "ax"
64 .word 661b
65 nop
66 nop
67 .previous
68
69 /* For sun4v the ASI_ITLB_DATA_IN store and the retry
70 * instruction get nop'd out and we get here to branch
71 * to the sun4v tlb load code. The registers are setup
72 * as follows:
73 *
74 * %g4: vaddr
75 * %g5: PTE
76 * %g6: TAG
77 *
78 * The sun4v TLB load wants the PTE in %g3 so we fix that
79 * up here.
80 */
81 ba,pt %xcc, sun4v_itlb_load
82 mov %g5, %g3
David S. Miller2a7e2992005-09-21 18:50:51 -070083
David S. Miller74bf4312006-01-31 18:29:18 -080084kvmap_itlb_longpath:
David S. Miller45fec052006-02-05 22:27:28 -080085
86661: rdpr %pstate, %g5
David S. Miller74bf4312006-01-31 18:29:18 -080087 wrpr %g5, PSTATE_AG | PSTATE_MG, %pstate
David S. Millerdf7d6ae2006-02-07 00:00:16 -080088 .section .sun4v_2insn_patch, "ax"
David S. Miller45fec052006-02-05 22:27:28 -080089 .word 661b
David S. Miller6cc200d2006-02-18 16:36:39 -080090 SET_GL(1)
David S. Miller45fec052006-02-05 22:27:28 -080091 nop
92 .previous
93
David S. Miller74bf4312006-01-31 18:29:18 -080094 rdpr %tpc, %g5
95 ba,pt %xcc, sparc64_realfault_common
96 mov FAULT_CODE_ITLB, %g4
David S. Millerc9c10832005-10-12 12:22:46 -070097
David S. Miller74bf4312006-01-31 18:29:18 -080098kvmap_itlb_obp:
99 OBP_TRANS_LOOKUP(%g4, %g5, %g2, %g3, kvmap_itlb_longpath)
David S. Miller2a7e2992005-09-21 18:50:51 -0700100
David S. Miller9076d0e2011-08-05 00:53:57 -0700101 TSB_LOCK_TAG(%g1, %g2, %g7)
David S. Miller2a7e2992005-09-21 18:50:51 -0700102
David S. Miller9076d0e2011-08-05 00:53:57 -0700103 TSB_WRITE(%g1, %g5, %g6)
David S. Miller2a7e2992005-09-21 18:50:51 -0700104
David S. Miller74bf4312006-01-31 18:29:18 -0800105 ba,pt %xcc, kvmap_itlb_load
106 nop
David S. Millerc9c10832005-10-12 12:22:46 -0700107
David S. Miller74bf4312006-01-31 18:29:18 -0800108kvmap_dtlb_obp:
109 OBP_TRANS_LOOKUP(%g4, %g5, %g2, %g3, kvmap_dtlb_longpath)
110
David S. Miller9076d0e2011-08-05 00:53:57 -0700111 TSB_LOCK_TAG(%g1, %g2, %g7)
David S. Miller74bf4312006-01-31 18:29:18 -0800112
David S. Miller9076d0e2011-08-05 00:53:57 -0700113 TSB_WRITE(%g1, %g5, %g6)
David S. Miller74bf4312006-01-31 18:29:18 -0800114
115 ba,pt %xcc, kvmap_dtlb_load
116 nop
117
David S. Miller0dd5b7b2014-09-24 20:56:11 -0700118kvmap_linear_early:
119 sethi %hi(kern_linear_pte_xor), %g7
120 ldx [%g7 + %lo(kern_linear_pte_xor)], %g2
121 ba,pt %xcc, kvmap_dtlb_tsb4m_load
122 xor %g2, %g4, %g5
123
David S. Miller2a7e2992005-09-21 18:50:51 -0700124 .align 32
David S. Millerd7744a02006-02-21 22:31:11 -0800125kvmap_dtlb_tsb4m_load:
David S. Miller9076d0e2011-08-05 00:53:57 -0700126 TSB_LOCK_TAG(%g1, %g2, %g7)
127 TSB_WRITE(%g1, %g5, %g6)
David S. Millerd7744a02006-02-21 22:31:11 -0800128 ba,pt %xcc, kvmap_dtlb_load
129 nop
130
David S. Miller74bf4312006-01-31 18:29:18 -0800131kvmap_dtlb:
132 /* %g6: TAG TARGET */
133 mov TLB_TAG_ACCESS, %g4
134 ldxa [%g4] ASI_DMMU, %g4
David S. Millerd257d5d2006-02-06 23:44:37 -0800135
David S. Miller4f6deb82016-07-27 17:50:26 -0700136 /* The kernel executes in context zero, therefore we do not
137 * need to clear the context ID bits out of %g4 here.
138 */
139
David S. Millerd257d5d2006-02-06 23:44:37 -0800140 /* sun4v_dtlb_miss branches here with the missing virtual
141 * address already loaded into %g4
142 */
143kvmap_dtlb_4v:
David S. Miller74bf4312006-01-31 18:29:18 -0800144 brgez,pn %g4, kvmap_dtlb_nonlinear
David S. Miller56425302005-09-25 16:46:57 -0700145 nop
146
David S. Millerd1acb422007-03-16 17:20:28 -0700147#ifdef CONFIG_DEBUG_PAGEALLOC
148 /* Index through the base page size TSB even for linear
149 * mappings when using page allocation debugging.
150 */
151 KERN_TSB_LOOKUP_TL1(%g4, %g6, %g5, %g1, %g2, %g3, kvmap_dtlb_load)
152#else
David S. Millerd7744a02006-02-21 22:31:11 -0800153 /* Correct TAG_TARGET is already in %g6, check 4mb TSB. */
154 KERN_TSB4M_LOOKUP_TL1(%g6, %g5, %g1, %g2, %g3, kvmap_dtlb_load)
David S. Millerd1acb422007-03-16 17:20:28 -0700155#endif
David S. Miller0dd5b7b2014-09-24 20:56:11 -0700156 /* Linear mapping TSB lookup failed. Fallthrough to kernel
157 * page table based lookup.
David S. Millerd7744a02006-02-21 22:31:11 -0800158 */
David S. Miller56425302005-09-25 16:46:57 -0700159 .globl kvmap_linear_patch
160kvmap_linear_patch:
David S. Miller0dd5b7b2014-09-24 20:56:11 -0700161 ba,a,pt %xcc, kvmap_linear_early
David S. Miller2a7e2992005-09-21 18:50:51 -0700162
David S. Miller74bf4312006-01-31 18:29:18 -0800163kvmap_dtlb_vmalloc_addr:
164 KERN_PGTABLE_WALK(%g4, %g5, %g2, kvmap_dtlb_longpath)
David S. Miller56425302005-09-25 16:46:57 -0700165
David S. Miller9076d0e2011-08-05 00:53:57 -0700166 TSB_LOCK_TAG(%g1, %g2, %g7)
David S. Miller9076d0e2011-08-05 00:53:57 -0700167 TSB_WRITE(%g1, %g5, %g6)
David S. Miller74bf4312006-01-31 18:29:18 -0800168
169 /* fallthrough to TLB load */
170
171kvmap_dtlb_load:
David S. Miller459b6e62006-02-11 12:21:20 -0800172
173661: stxa %g5, [%g0] ASI_DTLB_DATA_IN ! Reload TLB
David S. Miller74bf4312006-01-31 18:29:18 -0800174 retry
David S. Miller459b6e62006-02-11 12:21:20 -0800175 .section .sun4v_2insn_patch, "ax"
176 .word 661b
177 nop
178 nop
179 .previous
180
181 /* For sun4v the ASI_DTLB_DATA_IN store and the retry
182 * instruction get nop'd out and we get here to branch
183 * to the sun4v tlb load code. The registers are setup
184 * as follows:
185 *
186 * %g4: vaddr
187 * %g5: PTE
188 * %g6: TAG
189 *
190 * The sun4v TLB load wants the PTE in %g3 so we fix that
191 * up here.
192 */
193 ba,pt %xcc, sun4v_dtlb_load
194 mov %g5, %g3
David S. Miller74bf4312006-01-31 18:29:18 -0800195
David S. Millerbf4a7972008-01-10 21:10:54 -0800196#ifdef CONFIG_SPARSEMEM_VMEMMAP
David Miller46644c22007-10-16 01:24:16 -0700197kvmap_vmemmap:
David S. Millerc06240c2014-09-24 21:20:14 -0700198 KERN_PGTABLE_WALK(%g4, %g5, %g2, kvmap_dtlb_longpath)
199 ba,a,pt %xcc, kvmap_dtlb_load
David S. Millerbf4a7972008-01-10 21:10:54 -0800200#endif
David Miller46644c22007-10-16 01:24:16 -0700201
David S. Miller74bf4312006-01-31 18:29:18 -0800202kvmap_dtlb_nonlinear:
203 /* Catch kernel NULL pointer derefs. */
204 sethi %hi(PAGE_SIZE), %g5
205 cmp %g4, %g5
206 bleu,pn %xcc, kvmap_dtlb_longpath
207 nop
208
David S. Millerbf4a7972008-01-10 21:10:54 -0800209#ifdef CONFIG_SPARSEMEM_VMEMMAP
David Miller46644c22007-10-16 01:24:16 -0700210 /* Do not use the TSB for vmemmap. */
David S. Millerbb4e6e82014-09-27 11:05:21 -0700211 sethi %hi(VMEMMAP_BASE), %g5
212 ldx [%g5 + %lo(VMEMMAP_BASE)], %g5
David Miller46644c22007-10-16 01:24:16 -0700213 cmp %g4,%g5
214 bgeu,pn %xcc, kvmap_vmemmap
215 nop
David S. Millerbf4a7972008-01-10 21:10:54 -0800216#endif
David Miller46644c22007-10-16 01:24:16 -0700217
David S. Miller74bf4312006-01-31 18:29:18 -0800218 KERN_TSB_LOOKUP_TL1(%g4, %g6, %g5, %g1, %g2, %g3, kvmap_dtlb_load)
219
220kvmap_dtlb_tsbmiss:
David S. Miller2a7e2992005-09-21 18:50:51 -0700221 sethi %hi(MODULES_VADDR), %g5
222 cmp %g4, %g5
David S. Miller74bf4312006-01-31 18:29:18 -0800223 blu,pn %xcc, kvmap_dtlb_longpath
David S. Millerbb4e6e82014-09-27 11:05:21 -0700224 sethi %hi(VMALLOC_END), %g5
225 ldx [%g5 + %lo(VMALLOC_END)], %g5
David S. Miller2a7e2992005-09-21 18:50:51 -0700226 cmp %g4, %g5
David S. Miller74bf4312006-01-31 18:29:18 -0800227 bgeu,pn %xcc, kvmap_dtlb_longpath
David S. Miller2a7e2992005-09-21 18:50:51 -0700228 nop
229
230kvmap_check_obp:
231 sethi %hi(LOW_OBP_ADDRESS), %g5
232 cmp %g4, %g5
David S. Miller74bf4312006-01-31 18:29:18 -0800233 blu,pn %xcc, kvmap_dtlb_vmalloc_addr
David S. Miller2a7e2992005-09-21 18:50:51 -0700234 mov 0x1, %g5
235 sllx %g5, 32, %g5
236 cmp %g4, %g5
David S. Miller74bf4312006-01-31 18:29:18 -0800237 blu,pn %xcc, kvmap_dtlb_obp
238 nop
239 ba,pt %xcc, kvmap_dtlb_vmalloc_addr
David S. Miller2a7e2992005-09-21 18:50:51 -0700240 nop
241
David S. Miller74bf4312006-01-31 18:29:18 -0800242kvmap_dtlb_longpath:
David S. Miller45fec052006-02-05 22:27:28 -0800243
244661: rdpr %pstate, %g5
David S. Miller74bf4312006-01-31 18:29:18 -0800245 wrpr %g5, PSTATE_AG | PSTATE_MG, %pstate
David S. Millerdf7d6ae2006-02-07 00:00:16 -0800246 .section .sun4v_2insn_patch, "ax"
David S. Miller45fec052006-02-05 22:27:28 -0800247 .word 661b
David S. Miller8b234272006-02-17 18:01:02 -0800248 SET_GL(1)
249 ldxa [%g0] ASI_SCRATCHPAD, %g5
David S. Miller45fec052006-02-05 22:27:28 -0800250 .previous
251
David S. Miller459b6e62006-02-11 12:21:20 -0800252 rdpr %tl, %g3
253 cmp %g3, 1
254
255661: mov TLB_TAG_ACCESS, %g4
David S. Miller74bf4312006-01-31 18:29:18 -0800256 ldxa [%g4] ASI_DMMU, %g5
David S. Miller459b6e62006-02-11 12:21:20 -0800257 .section .sun4v_2insn_patch, "ax"
258 .word 661b
David S. Miller8b234272006-02-17 18:01:02 -0800259 ldx [%g5 + HV_FAULT_D_ADDR_OFFSET], %g5
David S. Miller459b6e62006-02-11 12:21:20 -0800260 nop
261 .previous
262
David S. Miller4f6deb82016-07-27 17:50:26 -0700263 /* The kernel executes in context zero, therefore we do not
264 * need to clear the context ID bits out of %g5 here.
265 */
266
David S. Miller74bf4312006-01-31 18:29:18 -0800267 be,pt %xcc, sparc64_realfault_common
268 mov FAULT_CODE_DTLB, %g4
269 ba,pt %xcc, winfix_trampoline
David S. Miller2a7e2992005-09-21 18:50:51 -0700270 nop