2 * Copyright (C) 2013 Imagination Technologies
3 * Author: Paul Burton <paul.burton@mips.com>
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.
11 #include <asm/addrspace.h>
13 #include <asm/asm-offsets.h>
14 #include <asm/asmmacro.h>
15 #include <asm/cacheops.h>
17 #include <asm/mipsregs.h>
18 #include <asm/mipsmtregs.h>
21 #define GCR_CPC_BASE_OFS 0x0088
22 #define GCR_CL_COHERENCE_OFS 0x2008
23 #define GCR_CL_ID_OFS 0x2028
25 #define CPC_CL_VC_STOP_OFS 0x2020
26 #define CPC_CL_VC_RUN_OFS 0x2028
33 # define STATUS_BITDEPS ST0_KX
35 # define STATUS_BITDEPS 0
38 #ifdef CONFIG_MIPS_CPS_NS16550
40 #define DUMP_EXCEP(name) \
42 jal mips_cps_bev_dump; \
46 #else /* !CONFIG_MIPS_CPS_NS16550 */
48 #define DUMP_EXCEP(name)
50 #endif /* !CONFIG_MIPS_CPS_NS16550 */
53 * Set dest to non-zero if the core supports the MT ASE, else zero. If
54 * MT is not supported then branch to nomt.
56 .macro has_mt dest, nomt
57 mfc0 \dest, CP0_CONFIG, 1
59 mfc0 \dest, CP0_CONFIG, 2
61 mfc0 \dest, CP0_CONFIG, 3
62 andi \dest, \dest, MIPS_CONF3_MT
68 * Set dest to non-zero if the core supports MIPSr6 multithreading
69 * (ie. VPs), else zero. If MIPSr6 multithreading is not supported then
72 .macro has_vp dest, nomt
73 mfc0 \dest, CP0_CONFIG, 1
75 mfc0 \dest, CP0_CONFIG, 2
77 mfc0 \dest, CP0_CONFIG, 3
79 mfc0 \dest, CP0_CONFIG, 4
81 mfc0 \dest, CP0_CONFIG, 5
82 andi \dest, \dest, MIPS_CONF5_VP
87 /* Calculate an uncached address for the CM GCRs */
91 MFC0 $1, CP0_CMGCRBASE
93 PTR_LI \dest, UNCAC_BASE
94 PTR_ADDU \dest, \dest, $1
98 .section .text.cps-vec
101 LEAF(mips_cps_core_entry)
103 * These first 4 bytes will be patched by cps_smp_setup to load the
104 * CCA to use into register s0.
108 /* Check whether we're here due to an NMI */
115 PTR_LA k0, nmi_handler
125 li t0, ST0_CU1 | ST0_CU0 | ST0_BEV | STATUS_BITDEPS
128 /* Skip cache & coherence setup if we're already coherent */
130 lw s7, GCR_CL_COHERENCE_OFS(v1)
134 /* Initialize the L1 caches */
135 jal mips_cps_cache_init
138 /* Enter the coherent domain */
140 sw t0, GCR_CL_COHERENCE_OFS(v1)
143 /* Set Kseg0 CCA to that in s0 */
144 1: mfc0 t0, CP0_CONFIG
157 * We're up, cached & coherent. Perform any EVA initialization necessary
158 * before we access memory.
162 /* Retrieve boot configuration pointers */
163 jal mips_cps_get_bootcfg
166 /* Skip core-level init if we started up coherent */
170 /* Perform any further required core-level initialisation */
171 jal mips_cps_core_init
175 * Boot any other VPEs within this core that should be online, and
176 * deactivate this VPE if it should be offline.
179 jal mips_cps_boot_vpes
183 1: PTR_L t1, VPEBOOTCFG_PC(v1)
184 PTR_L gp, VPEBOOTCFG_GP(v1)
185 PTR_L sp, VPEBOOTCFG_SP(v1)
188 END(mips_cps_core_entry)
192 DUMP_EXCEP("TLB Fill")
199 DUMP_EXCEP("XTLB Fill")
213 DUMP_EXCEP("General")
220 DUMP_EXCEP("Interrupt")
227 PTR_LA k0, ejtag_debug_handler
232 LEAF(mips_cps_core_init)
233 #ifdef CONFIG_MIPS_MT_SMP
234 /* Check that the core implements the MT ASE */
238 .set MIPS_ISA_LEVEL_RAW
241 /* Only allow 1 TC per VPE to execute... */
244 /* ...and for the moment only 1 VPE */
250 /* Enter VPE configuration state */
251 1: mfc0 t0, CP0_MVPCONTROL
252 ori t0, t0, MVPCONTROL_VPC
253 mtc0 t0, CP0_MVPCONTROL
255 /* Retrieve the number of VPEs within the core */
256 mfc0 t0, CP0_MVPCONF0
257 srl t0, t0, MVPCONF0_PVPE_SHIFT
258 andi t0, t0, (MVPCONF0_PVPE >> MVPCONF0_PVPE_SHIFT)
261 /* If there's only 1, we're done */
265 /* Loop through each VPE within this core */
268 1: /* Operate on the appropriate TC */
269 mtc0 ta1, CP0_VPECONTROL
272 /* Bind TC to VPE (1:1 TC:VPE mapping) */
273 mttc0 ta1, CP0_TCBIND
275 /* Set exclusive TC, non-active, master */
277 sll t1, ta1, VPECONF0_XTC_SHIFT
279 mttc0 t0, CP0_VPECONF0
281 /* Set TC non-active, non-allocatable */
282 mttc0 zero, CP0_TCSTATUS
294 /* Leave VPE configuration state */
295 2: mfc0 t0, CP0_MVPCONTROL
296 xori t0, t0, MVPCONTROL_VPC
297 mtc0 t0, CP0_MVPCONTROL
303 END(mips_cps_core_init)
306 * mips_cps_get_bootcfg() - retrieve boot configuration pointers
308 * Returns: pointer to struct core_boot_config in v0, pointer to
309 * struct vpe_boot_config in v1, VPE ID in t9
311 LEAF(mips_cps_get_bootcfg)
312 /* Calculate a pointer to this cores struct core_boot_config */
314 lw t0, GCR_CL_ID_OFS(t0)
315 li t1, COREBOOTCFG_SIZE
317 PTR_LA t1, mips_cps_core_bootcfg
321 /* Calculate this VPEs ID. If the core doesn't support MT use 0 */
323 #if defined(CONFIG_CPU_MIPSR6)
327 * Assume non-contiguous numbering. Perhaps some day we'll need
328 * to handle contiguous VP numbering, but no such systems yet
331 mfc0 t9, CP0_GLOBALNUMBER
332 andi t9, t9, MIPS_GLOBALNUMBER_VP
333 #elif defined(CONFIG_MIPS_MT_SMP)
336 /* Find the number of VPEs present in the core */
337 mfc0 t1, CP0_MVPCONF0
338 srl t1, t1, MVPCONF0_PVPE_SHIFT
339 andi t1, t1, MVPCONF0_PVPE >> MVPCONF0_PVPE_SHIFT
342 /* Calculate a mask for the VPE ID from EBase.CPUNum */
350 /* Retrieve the VPE ID from EBase.CPUNum */
355 1: /* Calculate a pointer to this VPEs struct vpe_boot_config */
356 li t1, VPEBOOTCFG_SIZE
358 PTR_L ta3, COREBOOTCFG_VPECONFIG(v0)
363 END(mips_cps_get_bootcfg)
365 LEAF(mips_cps_boot_vpes)
366 lw ta2, COREBOOTCFG_VPEMASK(a0)
367 PTR_L ta3, COREBOOTCFG_VPECONFIG(a0)
369 #if defined(CONFIG_CPU_MIPSR6)
373 /* Find base address of CPC */
375 PTR_L t1, GCR_CPC_BASE_OFS(t3)
378 PTR_LI t2, UNCAC_BASE
381 /* Start any other VPs that ought to be running */
382 PTR_S ta2, CPC_CL_VC_RUN_OFS(t1)
384 /* Ensure this VP stops running if it shouldn't be */
386 PTR_S ta2, CPC_CL_VC_STOP_OFS(t1)
389 #elif defined(CONFIG_MIPS_MT)
391 /* If the core doesn't support MT then return */
394 /* Enter VPE configuration state */
396 .set MIPS_ISA_LEVEL_RAW
404 1: mfc0 t1, CP0_MVPCONTROL
405 ori t1, t1, MVPCONTROL_VPC
406 mtc0 t1, CP0_MVPCONTROL
409 /* Loop through each VPE */
413 /* Check whether the VPE should be running. If not, skip it */
418 /* Operate on the appropriate TC */
419 mfc0 t0, CP0_VPECONTROL
420 ori t0, t0, VPECONTROL_TARGTC
421 xori t0, t0, VPECONTROL_TARGTC
423 mtc0 t0, CP0_VPECONTROL
427 .set MIPS_ISA_LEVEL_RAW
430 /* Skip the VPE if its TC is not halted */
435 /* Calculate a pointer to the VPEs struct vpe_boot_config */
436 li t0, VPEBOOTCFG_SIZE
440 /* Set the TC restart PC */
441 lw t1, VPEBOOTCFG_PC(t0)
442 mttc0 t1, CP0_TCRESTART
444 /* Set the TC stack pointer */
445 lw t1, VPEBOOTCFG_SP(t0)
448 /* Set the TC global pointer */
449 lw t1, VPEBOOTCFG_GP(t0)
452 /* Copy config from this VPE */
457 * Copy the EVA config from this VPE if the CPU supports it.
458 * CONFIG3 must exist to be running MT startup - just read it.
460 mfc0 t0, CP0_CONFIG, 3
461 and t0, t0, MIPS_CONF3_SC
465 mttc0 t0, CP0_SEGCTL0
467 mttc0 t0, CP0_SEGCTL1
469 mttc0 t0, CP0_SEGCTL2
471 /* Ensure no software interrupts are pending */
472 mttc0 zero, CP0_CAUSE
473 mttc0 zero, CP0_STATUS
475 /* Set TC active, not interrupt exempt */
476 mftc0 t0, CP0_TCSTATUS
477 li t1, ~TCSTATUS_IXMT
479 ori t0, t0, TCSTATUS_A
480 mttc0 t0, CP0_TCSTATUS
482 /* Clear the TC halt bit */
483 mttc0 zero, CP0_TCHALT
486 mftc0 t0, CP0_VPECONF0
487 ori t0, t0, VPECONF0_VPA
488 mttc0 t0, CP0_VPECONF0
496 /* Leave VPE configuration state */
497 mfc0 t1, CP0_MVPCONTROL
498 xori t1, t1, MVPCONTROL_VPC
499 mtc0 t1, CP0_MVPCONTROL
505 /* Check whether this VPE is meant to be running */
512 /* This VPE should be offline, halt the TC */
521 #endif /* CONFIG_MIPS_MT_SMP */
526 END(mips_cps_boot_vpes)
528 LEAF(mips_cps_cache_init)
530 * Clear the bits used to index the caches. Note that the architecture
531 * dictates that writing to any of TagLo or TagHi selects 0 or 2 should
532 * be valid for all MIPS32 CPUs, even those for which said writes are
535 mtc0 zero, CP0_TAGLO, 0
536 mtc0 zero, CP0_TAGHI, 0
537 mtc0 zero, CP0_TAGLO, 2
538 mtc0 zero, CP0_TAGHI, 2
541 /* Primary cache configuration is indicated by Config1 */
542 mfc0 v0, CP0_CONFIG, 1
544 /* Detect I-cache line size */
545 _EXT t0, v0, MIPS_CONF1_IL_SHF, MIPS_CONF1_IL_SZ
550 /* Detect I-cache size */
551 _EXT t1, v0, MIPS_CONF1_IS_SHF, MIPS_CONF1_IS_SZ
557 1: /* At this point t1 == I-cache sets per way */
558 _EXT t2, v0, MIPS_CONF1_IA_SHF, MIPS_CONF1_IA_SZ
565 1: cache Index_Store_Tag_I, 0(a0)
571 /* Detect D-cache line size */
572 _EXT t0, v0, MIPS_CONF1_DL_SHF, MIPS_CONF1_DL_SZ
577 /* Detect D-cache size */
578 _EXT t1, v0, MIPS_CONF1_DS_SHF, MIPS_CONF1_DS_SZ
584 1: /* At this point t1 == D-cache sets per way */
585 _EXT t2, v0, MIPS_CONF1_DA_SHF, MIPS_CONF1_DA_SZ
593 1: cache Index_Store_Tag_D, 0(a0)
600 END(mips_cps_cache_init)
602 #if defined(CONFIG_MIPS_CPS_PM) && defined(CONFIG_CPU_PM)
604 /* Calculate a pointer to this CPUs struct mips_static_suspend_state */
610 PTR_LA \dest, __per_cpu_offset
613 PTR_LA \dest, cps_cpu_state
614 addu \dest, \dest, $1
618 LEAF(mips_cps_pm_save)
625 END(mips_cps_pm_save)
627 LEAF(mips_cps_pm_restore)
628 /* Restore CPU state */
630 RESUME_RESTORE_STATIC
631 RESUME_RESTORE_REGS_RETURN
632 END(mips_cps_pm_restore)
634 #endif /* CONFIG_MIPS_CPS_PM && CONFIG_CPU_PM */