1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (C) 2013 Imagination Technologies
4 * Author: Paul Burton <paul.burton@mips.com>
7 #include <asm/addrspace.h>
9 #include <asm/asm-offsets.h>
10 #include <asm/asmmacro.h>
11 #include <asm/cacheops.h>
13 #include <asm/mipsregs.h>
14 #include <asm/mipsmtregs.h>
17 #define GCR_CPC_BASE_OFS 0x0088
18 #define GCR_CL_COHERENCE_OFS 0x2008
19 #define GCR_CL_ID_OFS 0x2028
21 #define CPC_CL_VC_STOP_OFS 0x2020
22 #define CPC_CL_VC_RUN_OFS 0x2028
29 # define STATUS_BITDEPS ST0_KX
31 # define STATUS_BITDEPS 0
34 #ifdef CONFIG_MIPS_CPS_NS16550
36 #define DUMP_EXCEP(name) \
38 jal mips_cps_bev_dump; \
42 #else /* !CONFIG_MIPS_CPS_NS16550 */
44 #define DUMP_EXCEP(name)
46 #endif /* !CONFIG_MIPS_CPS_NS16550 */
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.
52 .macro has_mt dest, nomt
53 mfc0 \dest, CP0_CONFIG, 1
55 mfc0 \dest, CP0_CONFIG, 2
57 mfc0 \dest, CP0_CONFIG, 3
58 andi \dest, \dest, MIPS_CONF3_MT
64 * Set dest to non-zero if the core supports MIPSr6 multithreading
65 * (ie. VPs), else zero. If MIPSr6 multithreading is not supported then
68 .macro has_vp dest, nomt
69 mfc0 \dest, CP0_CONFIG, 1
71 mfc0 \dest, CP0_CONFIG, 2
73 mfc0 \dest, CP0_CONFIG, 3
75 mfc0 \dest, CP0_CONFIG, 4
77 mfc0 \dest, CP0_CONFIG, 5
78 andi \dest, \dest, MIPS_CONF5_VP
83 /* Calculate an uncached address for the CM GCRs */
87 MFC0 $1, CP0_CMGCRBASE
89 PTR_LI \dest, UNCAC_BASE
90 PTR_ADDU \dest, \dest, $1
94 .section .text.cps-vec
97 LEAF(mips_cps_core_entry)
99 * These first 4 bytes will be patched by cps_smp_setup to load the
100 * CCA to use into register s0.
104 /* Check whether we're here due to an NMI */
111 PTR_LA k0, nmi_handler
121 li t0, ST0_CU1 | ST0_CU0 | ST0_BEV | STATUS_BITDEPS
124 /* Skip cache & coherence setup if we're already coherent */
126 lw s7, GCR_CL_COHERENCE_OFS(v1)
130 /* Initialize the L1 caches */
131 jal mips_cps_cache_init
134 /* Enter the coherent domain */
136 sw t0, GCR_CL_COHERENCE_OFS(v1)
139 /* Set Kseg0 CCA to that in s0 */
140 1: mfc0 t0, CP0_CONFIG
153 * We're up, cached & coherent. Perform any EVA initialization necessary
154 * before we access memory.
158 /* Retrieve boot configuration pointers */
159 jal mips_cps_get_bootcfg
162 /* Skip core-level init if we started up coherent */
166 /* Perform any further required core-level initialisation */
167 jal mips_cps_core_init
171 * Boot any other VPEs within this core that should be online, and
172 * deactivate this VPE if it should be offline.
175 jal mips_cps_boot_vpes
179 1: PTR_L t1, VPEBOOTCFG_PC(v1)
180 PTR_L gp, VPEBOOTCFG_GP(v1)
181 PTR_L sp, VPEBOOTCFG_SP(v1)
184 END(mips_cps_core_entry)
188 DUMP_EXCEP("TLB Fill")
195 DUMP_EXCEP("XTLB Fill")
209 DUMP_EXCEP("General")
216 DUMP_EXCEP("Interrupt")
223 PTR_LA k0, ejtag_debug_handler
228 LEAF(mips_cps_core_init)
229 #ifdef CONFIG_MIPS_MT_SMP
230 /* Check that the core implements the MT ASE */
234 .set MIPS_ISA_LEVEL_RAW
237 /* Only allow 1 TC per VPE to execute... */
240 /* ...and for the moment only 1 VPE */
246 /* Enter VPE configuration state */
247 1: mfc0 t0, CP0_MVPCONTROL
248 ori t0, t0, MVPCONTROL_VPC
249 mtc0 t0, CP0_MVPCONTROL
251 /* Retrieve the number of VPEs within the core */
252 mfc0 t0, CP0_MVPCONF0
253 srl t0, t0, MVPCONF0_PVPE_SHIFT
254 andi t0, t0, (MVPCONF0_PVPE >> MVPCONF0_PVPE_SHIFT)
257 /* If there's only 1, we're done */
261 /* Loop through each VPE within this core */
264 1: /* Operate on the appropriate TC */
265 mtc0 ta1, CP0_VPECONTROL
268 /* Bind TC to VPE (1:1 TC:VPE mapping) */
269 mttc0 ta1, CP0_TCBIND
271 /* Set exclusive TC, non-active, master */
273 sll t1, ta1, VPECONF0_XTC_SHIFT
275 mttc0 t0, CP0_VPECONF0
277 /* Set TC non-active, non-allocatable */
278 mttc0 zero, CP0_TCSTATUS
290 /* Leave VPE configuration state */
291 2: mfc0 t0, CP0_MVPCONTROL
292 xori t0, t0, MVPCONTROL_VPC
293 mtc0 t0, CP0_MVPCONTROL
299 END(mips_cps_core_init)
302 * mips_cps_get_bootcfg() - retrieve boot configuration pointers
304 * Returns: pointer to struct core_boot_config in v0, pointer to
305 * struct vpe_boot_config in v1, VPE ID in t9
307 LEAF(mips_cps_get_bootcfg)
308 /* Calculate a pointer to this cores struct core_boot_config */
310 lw t0, GCR_CL_ID_OFS(t0)
311 li t1, COREBOOTCFG_SIZE
313 PTR_LA t1, mips_cps_core_bootcfg
317 /* Calculate this VPEs ID. If the core doesn't support MT use 0 */
319 #if defined(CONFIG_CPU_MIPSR6)
323 * Assume non-contiguous numbering. Perhaps some day we'll need
324 * to handle contiguous VP numbering, but no such systems yet
327 mfc0 t9, CP0_GLOBALNUMBER
328 andi t9, t9, MIPS_GLOBALNUMBER_VP
329 #elif defined(CONFIG_MIPS_MT_SMP)
332 /* Find the number of VPEs present in the core */
333 mfc0 t1, CP0_MVPCONF0
334 srl t1, t1, MVPCONF0_PVPE_SHIFT
335 andi t1, t1, MVPCONF0_PVPE >> MVPCONF0_PVPE_SHIFT
338 /* Calculate a mask for the VPE ID from EBase.CPUNum */
346 /* Retrieve the VPE ID from EBase.CPUNum */
351 1: /* Calculate a pointer to this VPEs struct vpe_boot_config */
352 li t1, VPEBOOTCFG_SIZE
354 PTR_L ta3, COREBOOTCFG_VPECONFIG(v0)
359 END(mips_cps_get_bootcfg)
361 LEAF(mips_cps_boot_vpes)
362 lw ta2, COREBOOTCFG_VPEMASK(a0)
363 PTR_L ta3, COREBOOTCFG_VPECONFIG(a0)
365 #if defined(CONFIG_CPU_MIPSR6)
369 /* Find base address of CPC */
371 PTR_L t1, GCR_CPC_BASE_OFS(t3)
374 PTR_LI t2, UNCAC_BASE
377 /* Start any other VPs that ought to be running */
378 PTR_S ta2, CPC_CL_VC_RUN_OFS(t1)
380 /* Ensure this VP stops running if it shouldn't be */
382 PTR_S ta2, CPC_CL_VC_STOP_OFS(t1)
385 #elif defined(CONFIG_MIPS_MT)
387 /* If the core doesn't support MT then return */
390 /* Enter VPE configuration state */
392 .set MIPS_ISA_LEVEL_RAW
400 1: mfc0 t1, CP0_MVPCONTROL
401 ori t1, t1, MVPCONTROL_VPC
402 mtc0 t1, CP0_MVPCONTROL
405 /* Loop through each VPE */
409 /* Check whether the VPE should be running. If not, skip it */
414 /* Operate on the appropriate TC */
415 mfc0 t0, CP0_VPECONTROL
416 ori t0, t0, VPECONTROL_TARGTC
417 xori t0, t0, VPECONTROL_TARGTC
419 mtc0 t0, CP0_VPECONTROL
423 .set MIPS_ISA_LEVEL_RAW
426 /* Skip the VPE if its TC is not halted */
431 /* Calculate a pointer to the VPEs struct vpe_boot_config */
432 li t0, VPEBOOTCFG_SIZE
436 /* Set the TC restart PC */
437 lw t1, VPEBOOTCFG_PC(t0)
438 mttc0 t1, CP0_TCRESTART
440 /* Set the TC stack pointer */
441 lw t1, VPEBOOTCFG_SP(t0)
444 /* Set the TC global pointer */
445 lw t1, VPEBOOTCFG_GP(t0)
448 /* Copy config from this VPE */
453 * Copy the EVA config from this VPE if the CPU supports it.
454 * CONFIG3 must exist to be running MT startup - just read it.
456 mfc0 t0, CP0_CONFIG, 3
457 and t0, t0, MIPS_CONF3_SC
461 mttc0 t0, CP0_SEGCTL0
463 mttc0 t0, CP0_SEGCTL1
465 mttc0 t0, CP0_SEGCTL2
467 /* Ensure no software interrupts are pending */
468 mttc0 zero, CP0_CAUSE
469 mttc0 zero, CP0_STATUS
471 /* Set TC active, not interrupt exempt */
472 mftc0 t0, CP0_TCSTATUS
473 li t1, ~TCSTATUS_IXMT
475 ori t0, t0, TCSTATUS_A
476 mttc0 t0, CP0_TCSTATUS
478 /* Clear the TC halt bit */
479 mttc0 zero, CP0_TCHALT
482 mftc0 t0, CP0_VPECONF0
483 ori t0, t0, VPECONF0_VPA
484 mttc0 t0, CP0_VPECONF0
492 /* Leave VPE configuration state */
493 mfc0 t1, CP0_MVPCONTROL
494 xori t1, t1, MVPCONTROL_VPC
495 mtc0 t1, CP0_MVPCONTROL
501 /* Check whether this VPE is meant to be running */
508 /* This VPE should be offline, halt the TC */
517 #endif /* CONFIG_MIPS_MT_SMP */
522 END(mips_cps_boot_vpes)
524 LEAF(mips_cps_cache_init)
526 * Clear the bits used to index the caches. Note that the architecture
527 * dictates that writing to any of TagLo or TagHi selects 0 or 2 should
528 * be valid for all MIPS32 CPUs, even those for which said writes are
531 mtc0 zero, CP0_TAGLO, 0
532 mtc0 zero, CP0_TAGHI, 0
533 mtc0 zero, CP0_TAGLO, 2
534 mtc0 zero, CP0_TAGHI, 2
537 /* Primary cache configuration is indicated by Config1 */
538 mfc0 v0, CP0_CONFIG, 1
540 /* Detect I-cache line size */
541 _EXT t0, v0, MIPS_CONF1_IL_SHF, MIPS_CONF1_IL_SZ
546 /* Detect I-cache size */
547 _EXT t1, v0, MIPS_CONF1_IS_SHF, MIPS_CONF1_IS_SZ
553 1: /* At this point t1 == I-cache sets per way */
554 _EXT t2, v0, MIPS_CONF1_IA_SHF, MIPS_CONF1_IA_SZ
561 1: cache Index_Store_Tag_I, 0(a0)
567 /* Detect D-cache line size */
568 _EXT t0, v0, MIPS_CONF1_DL_SHF, MIPS_CONF1_DL_SZ
573 /* Detect D-cache size */
574 _EXT t1, v0, MIPS_CONF1_DS_SHF, MIPS_CONF1_DS_SZ
580 1: /* At this point t1 == D-cache sets per way */
581 _EXT t2, v0, MIPS_CONF1_DA_SHF, MIPS_CONF1_DA_SZ
589 1: cache Index_Store_Tag_D, 0(a0)
596 END(mips_cps_cache_init)
598 #if defined(CONFIG_MIPS_CPS_PM) && defined(CONFIG_CPU_PM)
600 /* Calculate a pointer to this CPUs struct mips_static_suspend_state */
606 PTR_LA \dest, __per_cpu_offset
609 PTR_LA \dest, cps_cpu_state
610 addu \dest, \dest, $1
614 LEAF(mips_cps_pm_save)
621 END(mips_cps_pm_save)
623 LEAF(mips_cps_pm_restore)
624 /* Restore CPU state */
626 RESUME_RESTORE_STATIC
627 RESUME_RESTORE_REGS_RETURN
628 END(mips_cps_pm_restore)
630 #endif /* CONFIG_MIPS_CPS_PM && CONFIG_CPU_PM */