xref: /freebsd/sys/powerpc/aim/locore64.S (revision 884a2a699669ec61e2366e3e358342dbc94be24a)
1/* $FreeBSD$ */
2/* $NetBSD: locore.S,v 1.24 2000/05/31 05:09:17 thorpej Exp $ */
3
4/*-
5 * Copyright (C) 2001 Benno Rice
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
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 Benno Rice ``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 TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28/*-
29 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
30 * Copyright (C) 1995, 1996 TooLs GmbH.
31 * All rights reserved.
32 *
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
35 * are met:
36 * 1. Redistributions of source code must retain the above copyright
37 *    notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 *    notice, this list of conditions and the following disclaimer in the
40 *    documentation and/or other materials provided with the distribution.
41 * 3. All advertising materials mentioning features or use of this software
42 *    must display the following acknowledgement:
43 *	This product includes software developed by TooLs GmbH.
44 * 4. The name of TooLs GmbH may not be used to endorse or promote products
45 *    derived from this software without specific prior written permission.
46 *
47 * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
48 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
49 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
50 * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
51 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
52 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
53 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
54 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
55 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
56 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57 */
58
59#include "assym.s"
60
61#include <sys/syscall.h>
62
63#include <machine/trap.h>
64#include <machine/param.h>
65#include <machine/spr.h>
66#include <machine/asm.h>
67
68/* Locate the per-CPU data structure */
69#define GET_CPUINFO(r)  \
70        mfsprg0  r
71
72/*
73 * Compiled KERNBASE location and the kernel load address
74 */
75        .globl  kernbase
76        .set    kernbase, KERNBASE
77
78#define	TMPSTKSZ	16384		/* 16K temporary stack */
79
80/*
81 * Globals
82 */
83	.data
84	.align	4
85GLOBAL(tmpstk)
86	.space	TMPSTKSZ
87GLOBAL(esym)
88	.llong	0			/* end of symbol table */
89
90#define	INTRCNT_COUNT	256		/* max(HROWPIC_IRQMAX,OPENPIC_IRQMAX) */
91GLOBAL(intrnames)
92	.space	INTRCNT_COUNT * (MAXCOMLEN + 1) * 2
93GLOBAL(eintrnames)
94	.align 4
95GLOBAL(intrcnt)
96	.space	INTRCNT_COUNT * 4 * 2
97GLOBAL(eintrcnt)
98
99	.text
100	.globl	btext
101btext:
102
103/*
104 * This symbol is here for the benefit of kvm_mkdb, and is supposed to
105 * mark the start of kernel text.
106 */
107	.globl	kernel_text
108kernel_text:
109
110/*
111 * Startup entry.  Note, this must be the first thing in the text
112 * segment!
113 */
114	.text
115ASENTRY(__start)
116	li	8,0
117	li	9,0x100
118	mtctr	9
1191:
120	dcbf	0,8
121	icbi	0,8
122	addi	8,8,0x20
123	bdnz	1b
124	sync
125	isync
126
127	/* Save the argument pointer and length */
128	mr	20,6
129	mr	21,7
130
131	lis	8,openfirmware_entry@ha
132	std	5,openfirmware_entry@l(8) /* save client interface handler */
133
134	/* Set up the stack pointer */
135	lis	1,(tmpstk+TMPSTKSZ-48)@ha
136	addi	1,1,(tmpstk+TMPSTKSZ-48)@l
137
138	/* Set up the TOC pointer */
139	lis	2,tocbase@ha
140	ld	2,tocbase@l(2)
141
142	mfmsr	0
143	lis	9,ofmsr@ha
144	stdu	0,ofmsr@l(9)
145
146	mfsprg0	0			/* save SPRG0-3 */
147	std	0,8(9)			/* ofmsr[1] = sprg0 */
148	mfsprg1 0
149	std	0,16(9)			/* ofmsr[2] = sprg1 */
150	mfsprg2 0
151	std	0,24(9)			/* ofmsr[3] = sprg2 */
152	mfsprg3 0
153	std	0,32(9)			/* ofmsr[4] = sprg3 */
154
155	/* Switch to 64-bit mode */
156	mfmsr	9
157	li	8,1
158	insrdi	9,8,1,0
159	mtmsrd	9
160
161	bl	OF_initial_setup
162	nop
163
164	lis	4,end@ha
165	addi	4,4,end@l
166	mr	5,4
167
168	lis	3,kernbase@ha
169	addi	3,3,kernbase@l
170
171	/* Restore the argument pointer and length */
172	mr	6,20
173	mr	7,21
174
175	bl	powerpc_init
176	nop
177	mr	%r1, %r3
178	li	%r3, 0
179	std	%r3, 0(%r1)
180	bl	mi_startup
181	nop
182	b	OF_exit
183	nop
184
185/*
186 * PPC64 ABI TOC base
187 */
188
189        .align  3
190	.globl	tocbase
191tocbase:
192        .llong  .TOC.@tocbase
193
194/*
195 * int setfault()
196 *
197 * Similar to setjmp to setup for handling faults on accesses to user memory.
198 * Any routine using this may only call bcopy, either the form below,
199 * or the (currently used) C code optimized, so it doesn't use any non-volatile
200 * registers.
201 */
202ASENTRY(setfault)
203	mflr	0
204	mfcr	12
205	mfsprg	4,0
206	ld	4,PC_CURTHREAD(4)
207	ld	4,TD_PCB(4)
208	std	3,PCB_ONFAULT(4)
209	std	0,0(3)
210	std	1,8(3)
211	std	2,16(3)
212
213	std	%r12,24(%r3)	/* Save the non-volatile GP regs. */
214	std	%r13,24+1*8(%r3)
215	std	%r14,24+2*8(%r3)
216	std	%r15,24+3*8(%r3)
217	std	%r16,24+4*8(%r3)
218	std	%r17,24+5*8(%r3)
219	std	%r18,24+6*8(%r3)
220	std	%r19,24+7*8(%r3)
221	std	%r20,24+8*8(%r3)
222	std	%r21,24+9*8(%r3)
223	std	%r22,24+10*8(%r3)
224	std	%r23,24+11*8(%r3)
225	std	%r24,24+12*8(%r3)
226	std	%r25,24+13*8(%r3)
227	std	%r26,24+14*8(%r3)
228	std	%r27,24+15*8(%r3)
229	std	%r28,24+16*8(%r3)
230	std	%r29,24+17*8(%r3)
231	std	%r30,24+18*8(%r3)
232	std	%r31,24+19*8(%r3)
233
234	xor	3,3,3
235	blr
236
237#include <powerpc/aim/trap_subr64.S>
238