]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/mips/kernel/cps-vec.S
MIPS: smp-cps: Pull cache init into a function
[mirror_ubuntu-focal-kernel.git] / arch / mips / kernel / cps-vec.S
CommitLineData
0ee958e1
PB
1/*
2 * Copyright (C) 2013 Imagination Technologies
3 * Author: Paul Burton <paul.burton@imgtec.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 */
10
11#include <asm/addrspace.h>
12#include <asm/asm.h>
13#include <asm/asm-offsets.h>
14#include <asm/asmmacro.h>
15#include <asm/cacheops.h>
6521d9a4 16#include <asm/eva.h>
0ee958e1 17#include <asm/mipsregs.h>
245a7868 18#include <asm/mipsmtregs.h>
3179d37e 19#include <asm/pm.h>
0ee958e1 20
245a7868
PB
21#define GCR_CL_COHERENCE_OFS 0x2008
22#define GCR_CL_ID_OFS 0x2028
23
24.extern mips_cm_base
25
26.set noreorder
27
8fe2c547
PB
28#ifdef CONFIG_64BIT
29# define STATUS_BITDEPS ST0_KX
30#else
31# define STATUS_BITDEPS 0
32#endif
33
609cf6f2
PB
34#ifdef CONFIG_MIPS_CPS_NS16550
35
36#define DUMP_EXCEP(name) \
37 PTR_LA a0, 8f; \
38 jal mips_cps_bev_dump; \
39 nop; \
40 TEXT(name)
41
42#else /* !CONFIG_MIPS_CPS_NS16550 */
43
44#define DUMP_EXCEP(name)
45
46#endif /* !CONFIG_MIPS_CPS_NS16550 */
47
245a7868
PB
48 /*
49 * Set dest to non-zero if the core supports the MT ASE, else zero. If
50 * MT is not supported then branch to nomt.
51 */
52 .macro has_mt dest, nomt
192fbc20 53 mfc0 \dest, CP0_CONFIG, 1
245a7868
PB
54 bgez \dest, \nomt
55 mfc0 \dest, CP0_CONFIG, 2
56 bgez \dest, \nomt
57 mfc0 \dest, CP0_CONFIG, 3
58 andi \dest, \dest, MIPS_CONF3_MT
59 beqz \dest, \nomt
1e5fb282 60 nop
245a7868 61 .endm
0ee958e1
PB
62
63.section .text.cps-vec
64.balign 0x1000
0ee958e1
PB
65
66LEAF(mips_cps_core_entry)
67 /*
946db173
PB
68 * These first 4 bytes will be patched by cps_smp_setup to load the
69 * CCA to use into register s0.
0ee958e1 70 */
0155a065 71 .word 0
0ee958e1
PB
72
73 /* Check whether we're here due to an NMI */
74 mfc0 k0, CP0_STATUS
75 and k0, k0, ST0_NMI
76 beqz k0, not_nmi
77 nop
78
79 /* This is an NMI */
81a02e34 80 PTR_LA k0, nmi_handler
0ee958e1
PB
81 jr k0
82 nop
83
84not_nmi:
85 /* Setup Cause */
86 li t0, CAUSEF_IV
87 mtc0 t0, CP0_CAUSE
88
89 /* Setup Status */
8fe2c547 90 li t0, ST0_CU1 | ST0_CU0 | ST0_BEV | STATUS_BITDEPS
0ee958e1
PB
91 mtc0 t0, CP0_STATUS
92
3dbc9971
PB
93 /* Initialize the L1 caches */
94 jal mips_cps_cache_init
0ee958e1 95 nop
0ee958e1 96
0155a065 97 /* Set Kseg0 CCA to that in s0 */
0ee958e1
PB
98 mfc0 t0, CP0_CONFIG
99 ori t0, 0x7
0155a065
PB
100 xori t0, 0x7
101 or t0, t0, s0
0ee958e1
PB
102 mtc0 t0, CP0_CONFIG
103 ehb
104
946db173
PB
105 /* Calculate an uncached address for the CM GCRs */
106 MFC0 v1, CP0_CMGCRBASE
107 PTR_SLL v1, v1, 4
108 PTR_LI t0, UNCAC_BASE
109 PTR_ADDU v1, v1, t0
110
0ee958e1
PB
111 /* Enter the coherent domain */
112 li t0, 0xff
90996511 113 sw t0, GCR_CL_COHERENCE_OFS(v1)
0ee958e1
PB
114 ehb
115
116 /* Jump to kseg0 */
81a02e34 117 PTR_LA t0, 1f
0ee958e1
PB
118 jr t0
119 nop
120
245a7868
PB
121 /*
122 * We're up, cached & coherent. Perform any further required core-level
123 * initialisation.
124 */
1251: jal mips_cps_core_init
126 nop
0ee958e1 127
6521d9a4
MC
128 /* Do any EVA initialization if necessary */
129 eva_init
130
0ee958e1 131 /*
245a7868
PB
132 * Boot any other VPEs within this core that should be online, and
133 * deactivate this VPE if it should be offline.
0ee958e1 134 */
245a7868
PB
135 jal mips_cps_boot_vpes
136 nop
0ee958e1
PB
137
138 /* Off we go! */
b677bc03
MC
139 PTR_L t1, VPEBOOTCFG_PC(v0)
140 PTR_L gp, VPEBOOTCFG_GP(v0)
141 PTR_L sp, VPEBOOTCFG_SP(v0)
0ee958e1
PB
142 jr t1
143 nop
144 END(mips_cps_core_entry)
145
146.org 0x200
147LEAF(excep_tlbfill)
609cf6f2 148 DUMP_EXCEP("TLB Fill")
0ee958e1
PB
149 b .
150 nop
151 END(excep_tlbfill)
152
153.org 0x280
154LEAF(excep_xtlbfill)
609cf6f2 155 DUMP_EXCEP("XTLB Fill")
0ee958e1
PB
156 b .
157 nop
158 END(excep_xtlbfill)
159
160.org 0x300
161LEAF(excep_cache)
609cf6f2 162 DUMP_EXCEP("Cache")
0ee958e1
PB
163 b .
164 nop
165 END(excep_cache)
166
167.org 0x380
168LEAF(excep_genex)
609cf6f2 169 DUMP_EXCEP("General")
0ee958e1
PB
170 b .
171 nop
172 END(excep_genex)
173
174.org 0x400
175LEAF(excep_intex)
609cf6f2 176 DUMP_EXCEP("Interrupt")
0ee958e1
PB
177 b .
178 nop
179 END(excep_intex)
180
181.org 0x480
182LEAF(excep_ejtag)
609cf6f2 183 DUMP_EXCEP("EJTAG")
81a02e34 184 PTR_LA k0, ejtag_debug_handler
0ee958e1
PB
185 jr k0
186 nop
187 END(excep_ejtag)
245a7868
PB
188
189LEAF(mips_cps_core_init)
7a63076d 190#ifdef CONFIG_MIPS_MT_SMP
245a7868
PB
191 /* Check that the core implements the MT ASE */
192 has_mt t0, 3f
245a7868
PB
193
194 .set push
195 .set mt
196
197 /* Only allow 1 TC per VPE to execute... */
198 dmt
199
200 /* ...and for the moment only 1 VPE */
201 dvpe
81a02e34 202 PTR_LA t1, 1f
245a7868
PB
203 jr.hb t1
204 nop
205
206 /* Enter VPE configuration state */
2071: mfc0 t0, CP0_MVPCONTROL
208 ori t0, t0, MVPCONTROL_VPC
209 mtc0 t0, CP0_MVPCONTROL
210
211 /* Retrieve the number of VPEs within the core */
212 mfc0 t0, CP0_MVPCONF0
213 srl t0, t0, MVPCONF0_PVPE_SHIFT
214 andi t0, t0, (MVPCONF0_PVPE >> MVPCONF0_PVPE_SHIFT)
0586ac75 215 addiu ta3, t0, 1
245a7868
PB
216
217 /* If there's only 1, we're done */
218 beqz t0, 2f
219 nop
220
221 /* Loop through each VPE within this core */
0586ac75 222 li ta1, 1
245a7868
PB
223
2241: /* Operate on the appropriate TC */
0586ac75 225 mtc0 ta1, CP0_VPECONTROL
245a7868
PB
226 ehb
227
228 /* Bind TC to VPE (1:1 TC:VPE mapping) */
0586ac75 229 mttc0 ta1, CP0_TCBIND
245a7868
PB
230
231 /* Set exclusive TC, non-active, master */
232 li t0, VPECONF0_MVP
0586ac75 233 sll t1, ta1, VPECONF0_XTC_SHIFT
245a7868
PB
234 or t0, t0, t1
235 mttc0 t0, CP0_VPECONF0
236
237 /* Set TC non-active, non-allocatable */
238 mttc0 zero, CP0_TCSTATUS
239
240 /* Set TC halted */
241 li t0, TCHALT_H
242 mttc0 t0, CP0_TCHALT
243
244 /* Next VPE */
0586ac75
MC
245 addiu ta1, ta1, 1
246 slt t0, ta1, ta3
245a7868
PB
247 bnez t0, 1b
248 nop
249
250 /* Leave VPE configuration state */
2512: mfc0 t0, CP0_MVPCONTROL
252 xori t0, t0, MVPCONTROL_VPC
253 mtc0 t0, CP0_MVPCONTROL
254
2553: .set pop
256#endif
257 jr ra
258 nop
259 END(mips_cps_core_init)
260
261LEAF(mips_cps_boot_vpes)
262 /* Retrieve CM base address */
81a02e34 263 PTR_LA t0, mips_cm_base
b677bc03 264 PTR_L t0, 0(t0)
245a7868
PB
265
266 /* Calculate a pointer to this cores struct core_boot_config */
90996511 267 lw t0, GCR_CL_ID_OFS(t0)
245a7868
PB
268 li t1, COREBOOTCFG_SIZE
269 mul t0, t0, t1
81a02e34 270 PTR_LA t1, mips_cps_core_bootcfg
b677bc03
MC
271 PTR_L t1, 0(t1)
272 PTR_ADDU t0, t0, t1
245a7868
PB
273
274 /* Calculate this VPEs ID. If the core doesn't support MT use 0 */
1e5fb282 275 li t9, 0
7a63076d 276#ifdef CONFIG_MIPS_MT_SMP
0586ac75 277 has_mt ta2, 1f
245a7868
PB
278
279 /* Find the number of VPEs present in the core */
280 mfc0 t1, CP0_MVPCONF0
281 srl t1, t1, MVPCONF0_PVPE_SHIFT
282 andi t1, t1, MVPCONF0_PVPE >> MVPCONF0_PVPE_SHIFT
acac4108 283 addiu t1, t1, 1
245a7868
PB
284
285 /* Calculate a mask for the VPE ID from EBase.CPUNum */
286 clz t1, t1
287 li t2, 31
288 subu t1, t2, t1
289 li t2, 1
290 sll t1, t2, t1
291 addiu t1, t1, -1
292
293 /* Retrieve the VPE ID from EBase.CPUNum */
294 mfc0 t9, $15, 1
295 and t9, t9, t1
a5b0f6db 296#endif
245a7868
PB
297
2981: /* Calculate a pointer to this VPEs struct vpe_boot_config */
299 li t1, VPEBOOTCFG_SIZE
300 mul v0, t9, t1
b677bc03
MC
301 PTR_L ta3, COREBOOTCFG_VPECONFIG(t0)
302 PTR_ADDU v0, v0, ta3
245a7868 303
7a63076d 304#ifdef CONFIG_MIPS_MT_SMP
245a7868
PB
305
306 /* If the core doesn't support MT then return */
0586ac75 307 bnez ta2, 1f
245a7868
PB
308 nop
309 jr ra
310 nop
311
312 .set push
313 .set mt
314
3151: /* Enter VPE configuration state */
316 dvpe
81a02e34 317 PTR_LA t1, 1f
245a7868
PB
318 jr.hb t1
319 nop
3201: mfc0 t1, CP0_MVPCONTROL
321 ori t1, t1, MVPCONTROL_VPC
322 mtc0 t1, CP0_MVPCONTROL
323 ehb
324
325 /* Loop through each VPE */
b677bc03 326 PTR_L ta2, COREBOOTCFG_VPEMASK(t0)
0586ac75
MC
327 move t8, ta2
328 li ta1, 0
245a7868
PB
329
330 /* Check whether the VPE should be running. If not, skip it */
0586ac75 3311: andi t0, ta2, 1
245a7868
PB
332 beqz t0, 2f
333 nop
334
335 /* Operate on the appropriate TC */
336 mfc0 t0, CP0_VPECONTROL
337 ori t0, t0, VPECONTROL_TARGTC
338 xori t0, t0, VPECONTROL_TARGTC
0586ac75 339 or t0, t0, ta1
245a7868
PB
340 mtc0 t0, CP0_VPECONTROL
341 ehb
342
343 /* Skip the VPE if its TC is not halted */
344 mftc0 t0, CP0_TCHALT
345 beqz t0, 2f
346 nop
347
348 /* Calculate a pointer to the VPEs struct vpe_boot_config */
349 li t0, VPEBOOTCFG_SIZE
0586ac75
MC
350 mul t0, t0, ta1
351 addu t0, t0, ta3
245a7868
PB
352
353 /* Set the TC restart PC */
354 lw t1, VPEBOOTCFG_PC(t0)
355 mttc0 t1, CP0_TCRESTART
356
357 /* Set the TC stack pointer */
358 lw t1, VPEBOOTCFG_SP(t0)
359 mttgpr t1, sp
360
361 /* Set the TC global pointer */
362 lw t1, VPEBOOTCFG_GP(t0)
363 mttgpr t1, gp
364
365 /* Copy config from this VPE */
366 mfc0 t0, CP0_CONFIG
367 mttc0 t0, CP0_CONFIG
368
369 /* Ensure no software interrupts are pending */
370 mttc0 zero, CP0_CAUSE
371 mttc0 zero, CP0_STATUS
372
373 /* Set TC active, not interrupt exempt */
374 mftc0 t0, CP0_TCSTATUS
375 li t1, ~TCSTATUS_IXMT
376 and t0, t0, t1
377 ori t0, t0, TCSTATUS_A
378 mttc0 t0, CP0_TCSTATUS
379
380 /* Clear the TC halt bit */
381 mttc0 zero, CP0_TCHALT
382
383 /* Set VPE active */
384 mftc0 t0, CP0_VPECONF0
385 ori t0, t0, VPECONF0_VPA
386 mttc0 t0, CP0_VPECONF0
387
388 /* Next VPE */
0586ac75
MC
3892: srl ta2, ta2, 1
390 addiu ta1, ta1, 1
391 bnez ta2, 1b
245a7868
PB
392 nop
393
394 /* Leave VPE configuration state */
395 mfc0 t1, CP0_MVPCONTROL
396 xori t1, t1, MVPCONTROL_VPC
397 mtc0 t1, CP0_MVPCONTROL
398 ehb
399 evpe
400
401 /* Check whether this VPE is meant to be running */
402 li t0, 1
403 sll t0, t0, t9
404 and t0, t0, t8
405 bnez t0, 2f
406 nop
407
408 /* This VPE should be offline, halt the TC */
409 li t0, TCHALT_H
410 mtc0 t0, CP0_TCHALT
81a02e34 411 PTR_LA t0, 1f
245a7868
PB
4121: jr.hb t0
413 nop
414
4152: .set pop
416
7a63076d 417#endif /* CONFIG_MIPS_MT_SMP */
245a7868
PB
418
419 /* Return */
420 jr ra
421 nop
422 END(mips_cps_boot_vpes)
3179d37e 423
3dbc9971
PB
424LEAF(mips_cps_cache_init)
425 /*
426 * Clear the bits used to index the caches. Note that the architecture
427 * dictates that writing to any of TagLo or TagHi selects 0 or 2 should
428 * be valid for all MIPS32 CPUs, even those for which said writes are
429 * unnecessary.
430 */
431 mtc0 zero, CP0_TAGLO, 0
432 mtc0 zero, CP0_TAGHI, 0
433 mtc0 zero, CP0_TAGLO, 2
434 mtc0 zero, CP0_TAGHI, 2
435 ehb
436
437 /* Primary cache configuration is indicated by Config1 */
438 mfc0 v0, CP0_CONFIG, 1
439
440 /* Detect I-cache line size */
441 _EXT t0, v0, MIPS_CONF1_IL_SHF, MIPS_CONF1_IL_SZ
442 beqz t0, icache_done
443 li t1, 2
444 sllv t0, t1, t0
445
446 /* Detect I-cache size */
447 _EXT t1, v0, MIPS_CONF1_IS_SHF, MIPS_CONF1_IS_SZ
448 xori t2, t1, 0x7
449 beqz t2, 1f
450 li t3, 32
451 addiu t1, t1, 1
452 sllv t1, t3, t1
4531: /* At this point t1 == I-cache sets per way */
454 _EXT t2, v0, MIPS_CONF1_IA_SHF, MIPS_CONF1_IA_SZ
455 addiu t2, t2, 1
456 mul t1, t1, t0
457 mul t1, t1, t2
458
459 li a0, CKSEG0
460 PTR_ADD a1, a0, t1
4611: cache Index_Store_Tag_I, 0(a0)
462 PTR_ADD a0, a0, t0
463 bne a0, a1, 1b
464 nop
465icache_done:
466
467 /* Detect D-cache line size */
468 _EXT t0, v0, MIPS_CONF1_DL_SHF, MIPS_CONF1_DL_SZ
469 beqz t0, dcache_done
470 li t1, 2
471 sllv t0, t1, t0
472
473 /* Detect D-cache size */
474 _EXT t1, v0, MIPS_CONF1_DS_SHF, MIPS_CONF1_DS_SZ
475 xori t2, t1, 0x7
476 beqz t2, 1f
477 li t3, 32
478 addiu t1, t1, 1
479 sllv t1, t3, t1
4801: /* At this point t1 == D-cache sets per way */
481 _EXT t2, v0, MIPS_CONF1_DA_SHF, MIPS_CONF1_DA_SZ
482 addiu t2, t2, 1
483 mul t1, t1, t0
484 mul t1, t1, t2
485
486 li a0, CKSEG0
487 PTR_ADDU a1, a0, t1
488 PTR_SUBU a1, a1, t0
4891: cache Index_Store_Tag_D, 0(a0)
490 bne a0, a1, 1b
491 PTR_ADD a0, a0, t0
492dcache_done:
493
494 jr ra
495 nop
496 END(mips_cps_cache_init)
497
3179d37e
PB
498#if defined(CONFIG_MIPS_CPS_PM) && defined(CONFIG_CPU_PM)
499
500 /* Calculate a pointer to this CPUs struct mips_static_suspend_state */
501 .macro psstate dest
502 .set push
503 .set noat
504 lw $1, TI_CPU(gp)
505 sll $1, $1, LONGLOG
81a02e34 506 PTR_LA \dest, __per_cpu_offset
3179d37e
PB
507 addu $1, $1, \dest
508 lw $1, 0($1)
81a02e34 509 PTR_LA \dest, cps_cpu_state
3179d37e
PB
510 addu \dest, \dest, $1
511 .set pop
512 .endm
513
514LEAF(mips_cps_pm_save)
515 /* Save CPU state */
516 SUSPEND_SAVE_REGS
517 psstate t1
518 SUSPEND_SAVE_STATIC
519 jr v0
520 nop
521 END(mips_cps_pm_save)
522
523LEAF(mips_cps_pm_restore)
524 /* Restore CPU state */
525 psstate t1
526 RESUME_RESTORE_STATIC
527 RESUME_RESTORE_REGS_RETURN
528 END(mips_cps_pm_restore)
529
530#endif /* CONFIG_MIPS_CPS_PM && CONFIG_CPU_PM */