xref: /freebsd/sys/powerpc/aim/locore64.S (revision 545ddfbe7d4fe8adfb862903b24eac1d5896c1ef)
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#define GET_TOCBASE(r)  \
72	li	r,TRAP_TOCBASE;	/* Magic address for TOC */ \
73	ld	r,0(r)
74
75/* Glue for linker script */
76.globl  kernbase
77.set    kernbase, KERNBASE
78
79/*
80 * Globals
81 */
82	.data
83	.align 3
84GLOBAL(__startkernel)
85	.llong	begin
86GLOBAL(__endkernel)
87	.llong	end
88
89	.align	4
90#define	TMPSTKSZ	16384		/* 16K temporary stack */
91GLOBAL(tmpstk)
92	.space	TMPSTKSZ
93
94TOC_ENTRY(tmpstk)
95
96	.text
97	.globl	btext
98btext:
99
100/*
101 * This symbol is here for the benefit of kvm_mkdb, and is supposed to
102 * mark the start of kernel text.
103 */
104	.globl	kernel_text
105kernel_text:
106
107/*
108 * Startup entry.  Note, this must be the first thing in the text
109 * segment!
110 *
111 * Calling convention:
112 * r3: Flattened Device Tree pointer (or zero)
113 * r4: ignored
114 * r5: OF client interface pointer (or zero)
115 * r6: Loader metadata pointer (or zero)
116 */
117	.text
118ASENTRY_NOPROF(__start)
119	/* Set up the TOC pointer */
120	b	0f
121	.align 3
1220:	nop
123	bl	1f
124	.llong	__tocbase + 0x8000
1251:	mflr	%r2
126	ld	%r2,0(%r2)
127
128	/* Set up the stack pointer */
129	ld	%r1,TOC_REF(tmpstk)(%r2)
130	addi	%r1,%r1,TMPSTKSZ-48
131
132	/* Switch to 64-bit mode */
133	mfmsr	%r9
134	li	%r8,1
135	insrdi	%r9,%r8,1,0
136	mtmsrd	%r9
137	isync
138
139	/* Begin CPU init */
140	mr	%r4,%r2 /* Replace ignored r4 with tocbase for trap handlers */
141	bl	powerpc_init
142	nop
143
144	/* Set stack pointer to new value and branch to mi_startup */
145	mr	%r1, %r3
146	li	%r3, 0
147	std	%r3, 0(%r1)
148	bl	mi_startup
149	nop
150
151	/* If this returns (it won't), go back to firmware */
152	b	OF_exit
153	nop
154
155/*
156 * int setfault()
157 *
158 * Similar to setjmp to setup for handling faults on accesses to user memory.
159 * Any routine using this may only call bcopy, either the form below,
160 * or the (currently used) C code optimized, so it doesn't use any non-volatile
161 * registers.
162 */
163ASENTRY_NOPROF(setfault)
164	mflr	0
165	mfcr	12
166	mfsprg	4,0
167	ld	4,TD_PCB(13)	/* curthread = r13 */
168	std	3,PCB_ONFAULT(4)
169	std	0,0(3)
170	std	1,8(3)
171	std	2,16(3)
172
173	std	%r12,24(%r3)	/* Save the non-volatile GP regs. */
174	std	%r13,24+1*8(%r3)
175	std	%r14,24+2*8(%r3)
176	std	%r15,24+3*8(%r3)
177	std	%r16,24+4*8(%r3)
178	std	%r17,24+5*8(%r3)
179	std	%r18,24+6*8(%r3)
180	std	%r19,24+7*8(%r3)
181	std	%r20,24+8*8(%r3)
182	std	%r21,24+9*8(%r3)
183	std	%r22,24+10*8(%r3)
184	std	%r23,24+11*8(%r3)
185	std	%r24,24+12*8(%r3)
186	std	%r25,24+13*8(%r3)
187	std	%r26,24+14*8(%r3)
188	std	%r27,24+15*8(%r3)
189	std	%r28,24+16*8(%r3)
190	std	%r29,24+17*8(%r3)
191	std	%r30,24+18*8(%r3)
192	std	%r31,24+19*8(%r3)
193
194	xor	3,3,3
195	blr
196
197#include <powerpc/aim/trap_subr64.S>
198