xref: /freebsd/sys/powerpc/booke/mp_cpudep.c (revision 4d846d26)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2008-2009 Semihalf, Rafal Jaworowski
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/kernel.h>
35 #include <sys/bus.h>
36 #include <sys/pcpu.h>
37 #include <sys/proc.h>
38 #include <sys/sched.h>
39 #include <sys/smp.h>
40 
41 #include <machine/pcb.h>
42 #include <machine/psl.h>
43 #include <machine/smp.h>
44 #include <machine/spr.h>
45 
46 extern void dcache_enable(void);
47 extern void dcache_inval(void);
48 extern void icache_enable(void);
49 extern void icache_inval(void);
50 
51 volatile void *ap_pcpu;
52 
53 uintptr_t
54 cpudep_ap_bootstrap(void)
55 {
56 	uint32_t msr, csr;
57 	uintptr_t sp;
58 
59 	/* Enable L1 caches */
60 	csr = mfspr(SPR_L1CSR0);
61 	if ((csr & L1CSR0_DCE) == 0) {
62 		dcache_inval();
63 		dcache_enable();
64 	}
65 
66 	csr = mfspr(SPR_L1CSR1);
67 	if ((csr & L1CSR1_ICE) == 0) {
68 		icache_inval();
69 		icache_enable();
70 	}
71 
72 	/* Set MSR */
73 #ifdef __powerpc64__
74 	msr = PSL_CM | PSL_ME;
75 #else
76 	msr = PSL_ME;
77 #endif
78 	mtmsr(msr);
79 
80 	/* Assign pcpu fields, return ptr to this AP's idle thread kstack */
81 	pcpup->pc_curthread = pcpup->pc_idlethread;
82 #ifdef __powerpc64__
83 	__asm __volatile("mr 13,%0" :: "r"(pcpup->pc_curthread));
84 #else
85 	__asm __volatile("mr 2,%0" :: "r"(pcpup->pc_curthread));
86 #endif
87 	pcpup->pc_curpcb = pcpup->pc_curthread->td_pcb;
88 	sp = pcpup->pc_curpcb->pcb_sp;
89 	schedinit_ap();
90 
91 	/* XXX shouldn't the pcb_sp be checked/forced for alignment here?? */
92 
93 	return (sp);
94 }
95 
96 void
97 cpudep_ap_setup(void)
98 {
99 }
100