2 * Copyright (C) 2013 Imagination Technologies
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_RUN_OFS 0x2028
32 # define STATUS_BITDEPS ST0_KX
34 # define STATUS_BITDEPS 0
37 #ifdef CONFIG_MIPS_CPS_NS16550
39 #define DUMP_EXCEP(name) \
41 jal mips_cps_bev_dump; \
45 #else /* !CONFIG_MIPS_CPS_NS16550 */
47 #define DUMP_EXCEP(name)
49 #endif /* !CONFIG_MIPS_CPS_NS16550 */
52 * Set dest to non-zero if the core supports the MT ASE, else zero. If
53 * MT is not supported then branch to nomt.
55 .macro has_mt dest, nomt
56 mfc0 \dest, CP0_CONFIG, 1
58 mfc0 \dest, CP0_CONFIG, 2
60 mfc0 \dest, CP0_CONFIG, 3
61 andi \dest, \dest, MIPS_CONF3_MT
67 * Set dest to non-zero if the core supports MIPSr6 multithreading
68 * (ie. VPs), else zero. If MIPSr6 multithreading is not supported then
71 .macro has_vp dest, nomt
72 mfc0 \dest, CP0_CONFIG, 1
74 mfc0 \dest, CP0_CONFIG, 2
76 mfc0 \dest, CP0_CONFIG, 3
78 mfc0 \dest, CP0_CONFIG, 4
80 mfc0 \dest, CP0_CONFIG, 5
81 andi \dest, \dest, MIPS_CONF5_VP
86 /* Calculate an uncached address for the CM GCRs */
90 MFC0 $1, CP0_CMGCRBASE
92 PTR_LI \dest, UNCAC_BASE
93 PTR_ADDU \dest, \dest, $1
97 .section .text.cps-vec
100 LEAF(mips_cps_core_entry)
102 * These first 4 bytes will be patched by cps_smp_setup to load the
103 * CCA to use into register s0.
107 /* Check whether we're here due to an NMI */
114 PTR_LA k0, nmi_handler
124 li t0, ST0_CU1 | ST0_CU0 | ST0_BEV | STATUS_BITDEPS
127 /* Skip cache & coherence setup if we're already coherent */
129 lw s7, GCR_CL_COHERENCE_OFS(v1)
133 /* Initialize the L1 caches */
134 jal mips_cps_cache_init
137 /* Enter the coherent domain */
139 sw t0, GCR_CL_COHERENCE_OFS(v1)
142 /* Set Kseg0 CCA to that in s0 */
143 1: mfc0 t0, CP0_CONFIG
156 * We're up, cached & coherent. Perform any EVA initialization necessary
157 * before we access memory.
161 /* Retrieve boot configuration pointers */
162 jal mips_cps_get_bootcfg
165 /* Skip core-level init if we started up coherent */
169 /* Perform any further required core-level initialisation */
170 jal mips_cps_core_init
174 * Boot any other VPEs within this core that should be online, and
175 * deactivate this VPE if it should be offline.
178 jal mips_cps_boot_vpes
182 1: PTR_L t1, VPEBOOTCFG_PC(v1)
183 PTR_L gp, VPEBOOTCFG_GP(v1)
184 PTR_L sp, VPEBOOTCFG_SP(v1)
187 END(mips_cps_core_entry)
191 DUMP_EXCEP("TLB Fill")
198 DUMP_EXCEP("XTLB Fill")
212 DUMP_EXCEP("General")
219 DUMP_EXCEP("Interrupt")
226 PTR_LA k0, ejtag_debug_handler
231 LEAF(mips_cps_core_init)
232 #ifdef CONFIG_MIPS_MT_SMP
233 /* Check that the core implements the MT ASE */
239 /* Only allow 1 TC per VPE to execute... */
242 /* ...and for the moment only 1 VPE */
248 /* Enter VPE configuration state */
249 1: mfc0 t0, CP0_MVPCONTROL
250 ori t0, t0, MVPCONTROL_VPC
251 mtc0 t0, CP0_MVPCONTROL
253 /* Retrieve the number of VPEs within the core */
254 mfc0 t0, CP0_MVPCONF0
255 srl t0, t0, MVPCONF0_PVPE_SHIFT
256 andi t0, t0, (MVPCONF0_PVPE >> MVPCONF0_PVPE_SHIFT)
259 /* If there's only 1, we're done */
263 /* Loop through each VPE within this core */
266 1: /* Operate on the appropriate TC */
267 mtc0 ta1, CP0_VPECONTROL
270 /* Bind TC to VPE (1:1 TC:VPE mapping) */
271 mttc0 ta1, CP0_TCBIND
273 /* Set exclusive TC, non-active, master */
275 sll t1, ta1, VPECONF0_XTC_SHIFT
277 mttc0 t0, CP0_VPECONF0
279 /* Set TC non-active, non-allocatable */
280 mttc0 zero, CP0_TCSTATUS
292 /* Leave VPE configuration state */
293 2: mfc0 t0, CP0_MVPCONTROL
294 xori t0, t0, MVPCONTROL_VPC
295 mtc0 t0, CP0_MVPCONTROL
301 END(mips_cps_core_init)
304 * mips_cps_get_bootcfg() - retrieve boot configuration pointers
306 * Returns: pointer to struct core_boot_config in v0, pointer to
307 * struct vpe_boot_config in v1, VPE ID in t9
309 LEAF(mips_cps_get_bootcfg)
310 /* Calculate a pointer to this cores struct core_boot_config */
312 lw t0, GCR_CL_ID_OFS(t0)
313 li t1, COREBOOTCFG_SIZE
315 PTR_LA t1, mips_cps_core_bootcfg
319 /* Calculate this VPEs ID. If the core doesn't support MT use 0 */
321 #if defined(CONFIG_CPU_MIPSR6)
325 * Assume non-contiguous numbering. Perhaps some day we'll need
326 * to handle contiguous VP numbering, but no such systems yet
331 #elif defined(CONFIG_MIPS_MT_SMP)
334 /* Find the number of VPEs present in the core */
335 mfc0 t1, CP0_MVPCONF0
336 srl t1, t1, MVPCONF0_PVPE_SHIFT
337 andi t1, t1, MVPCONF0_PVPE >> MVPCONF0_PVPE_SHIFT
340 /* Calculate a mask for the VPE ID from EBase.CPUNum */
348 /* Retrieve the VPE ID from EBase.CPUNum */
353 1: /* Calculate a pointer to this VPEs struct vpe_boot_config */
354 li t1, VPEBOOTCFG_SIZE
356 PTR_L ta3, COREBOOTCFG_VPECONFIG(v0)
361 END(mips_cps_get_bootcfg)
363 LEAF(mips_cps_boot_vpes)
364 lw ta2, COREBOOTCFG_VPEMASK(a0)
365 PTR_L ta3, COREBOOTCFG_VPECONFIG(a0)
367 #if defined(CONFIG_CPU_MIPSR6)
371 /* Find base address of CPC */
373 PTR_L t1, GCR_CPC_BASE_OFS(t3)
376 PTR_LI t2, UNCAC_BASE
379 /* Set VC_RUN to the VPE mask */
380 PTR_S ta2, CPC_CL_VC_RUN_OFS(t1)
383 #elif defined(CONFIG_MIPS_MT)
388 /* If the core doesn't support MT then return */
391 /* Enter VPE configuration state */
396 1: mfc0 t1, CP0_MVPCONTROL
397 ori t1, t1, MVPCONTROL_VPC
398 mtc0 t1, CP0_MVPCONTROL
401 /* Loop through each VPE */
405 /* Check whether the VPE should be running. If not, skip it */
410 /* Operate on the appropriate TC */
411 mfc0 t0, CP0_VPECONTROL
412 ori t0, t0, VPECONTROL_TARGTC
413 xori t0, t0, VPECONTROL_TARGTC
415 mtc0 t0, CP0_VPECONTROL
418 /* Skip the VPE if its TC is not halted */
423 /* Calculate a pointer to the VPEs struct vpe_boot_config */
424 li t0, VPEBOOTCFG_SIZE
428 /* Set the TC restart PC */
429 lw t1, VPEBOOTCFG_PC(t0)
430 mttc0 t1, CP0_TCRESTART
432 /* Set the TC stack pointer */
433 lw t1, VPEBOOTCFG_SP(t0)
436 /* Set the TC global pointer */
437 lw t1, VPEBOOTCFG_GP(t0)
440 /* Copy config from this VPE */
445 * Copy the EVA config from this VPE if the CPU supports it.
446 * CONFIG3 must exist to be running MT startup - just read it.
448 mfc0 t0, CP0_CONFIG, 3
449 and t0, t0, MIPS_CONF3_SC
453 mttc0 t0, CP0_SEGCTL0
455 mttc0 t0, CP0_SEGCTL1
457 mttc0 t0, CP0_SEGCTL2
459 /* Ensure no software interrupts are pending */
460 mttc0 zero, CP0_CAUSE
461 mttc0 zero, CP0_STATUS
463 /* Set TC active, not interrupt exempt */
464 mftc0 t0, CP0_TCSTATUS
465 li t1, ~TCSTATUS_IXMT
467 ori t0, t0, TCSTATUS_A
468 mttc0 t0, CP0_TCSTATUS
470 /* Clear the TC halt bit */
471 mttc0 zero, CP0_TCHALT
474 mftc0 t0, CP0_VPECONF0
475 ori t0, t0, VPECONF0_VPA
476 mttc0 t0, CP0_VPECONF0
484 /* Leave VPE configuration state */
485 mfc0 t1, CP0_MVPCONTROL
486 xori t1, t1, MVPCONTROL_VPC
487 mtc0 t1, CP0_MVPCONTROL
491 /* Check whether this VPE is meant to be running */
498 /* This VPE should be offline, halt the TC */
507 #endif /* CONFIG_MIPS_MT_SMP */
512 END(mips_cps_boot_vpes)
514 LEAF(mips_cps_cache_init)
516 * Clear the bits used to index the caches. Note that the architecture
517 * dictates that writing to any of TagLo or TagHi selects 0 or 2 should
518 * be valid for all MIPS32 CPUs, even those for which said writes are
521 mtc0 zero, CP0_TAGLO, 0
522 mtc0 zero, CP0_TAGHI, 0
523 mtc0 zero, CP0_TAGLO, 2
524 mtc0 zero, CP0_TAGHI, 2
527 /* Primary cache configuration is indicated by Config1 */
528 mfc0 v0, CP0_CONFIG, 1
530 /* Detect I-cache line size */
531 _EXT t0, v0, MIPS_CONF1_IL_SHF, MIPS_CONF1_IL_SZ
536 /* Detect I-cache size */
537 _EXT t1, v0, MIPS_CONF1_IS_SHF, MIPS_CONF1_IS_SZ
543 1: /* At this point t1 == I-cache sets per way */
544 _EXT t2, v0, MIPS_CONF1_IA_SHF, MIPS_CONF1_IA_SZ
551 1: cache Index_Store_Tag_I, 0(a0)
557 /* Detect D-cache line size */
558 _EXT t0, v0, MIPS_CONF1_DL_SHF, MIPS_CONF1_DL_SZ
563 /* Detect D-cache size */
564 _EXT t1, v0, MIPS_CONF1_DS_SHF, MIPS_CONF1_DS_SZ
570 1: /* At this point t1 == D-cache sets per way */
571 _EXT t2, v0, MIPS_CONF1_DA_SHF, MIPS_CONF1_DA_SZ
579 1: cache Index_Store_Tag_D, 0(a0)
586 END(mips_cps_cache_init)
588 #if defined(CONFIG_MIPS_CPS_PM) && defined(CONFIG_CPU_PM)
590 /* Calculate a pointer to this CPUs struct mips_static_suspend_state */
596 PTR_LA \dest, __per_cpu_offset
599 PTR_LA \dest, cps_cpu_state
600 addu \dest, \dest, $1
604 LEAF(mips_cps_pm_save)
611 END(mips_cps_pm_save)
613 LEAF(mips_cps_pm_restore)
614 /* Restore CPU state */
616 RESUME_RESTORE_STATIC
617 RESUME_RESTORE_REGS_RETURN
618 END(mips_cps_pm_restore)
620 #endif /* CONFIG_MIPS_CPS_PM && CONFIG_CPU_PM */