Subversion Repositories HelenOS-historic

Rev

Rev 1372 | Rev 1381 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1372 Rev 1373
1
#
1
#
2
# Copyright (C) 2006 Martin Decky
2
# Copyright (C) 2006 Martin Decky
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
8
#
8
#
9
# - Redistributions of source code must retain the above copyright
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
13
#   documentation and/or other materials provided with the distribution.
14
# - The name of the author may not be used to endorse or promote products
14
# - The name of the author may not be used to endorse or promote products
15
#   derived from this software without specific prior written permission.
15
#   derived from this software without specific prior written permission.
16
#
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
#include "asm.h"
29
#include "asm.h"
30
#include "regname.h"
30
#include "regname.h"
31
 
31
 
32
.text
32
.text
33
 
33
 
34
.global halt
34
.global halt
35
.global memcpy
35
.global memcpy
36
.global jump_to_kernel
36
.global jump_to_kernel
37
 
37
 
38
halt:
38
halt:
39
	b halt
39
	b halt
40
 
40
 
41
memcpy:
41
memcpy:
42
	srwi. r7, r5, 3
42
	srwi. r7, r5, 3
43
	addi r6, r3, -4
43
	addi r6, r3, -4
44
	addi r4, r4, -4
44
	addi r4, r4, -4
45
	beq	2f
45
	beq	2f
46
	
46
	
47
	andi. r0, r6, 3
47
	andi. r0, r6, 3
48
	mtctr r7
48
	mtctr r7
49
	bne 5f
49
	bne 5f
50
	
50
	
51
	1:
51
	1:
52
	
52
	
53
	lwz r7, 4(r4)
53
	lwz r7, 4(r4)
54
	lwzu r8, 8(r4)
54
	lwzu r8, 8(r4)
55
	stw r7, 4(r6)
55
	stw r7, 4(r6)
56
	stwu r8, 8(r6)
56
	stwu r8, 8(r6)
57
	bdnz 1b
57
	bdnz 1b
58
	
58
	
59
	andi. r5, r5, 7
59
	andi. r5, r5, 7
60
	
60
	
61
	2:
61
	2:
62
	
62
	
63
	cmplwi 0, r5, 4
63
	cmplwi 0, r5, 4
64
	blt 3f
64
	blt 3f
65
	
65
	
66
	lwzu r0, 4(r4)
66
	lwzu r0, 4(r4)
67
	addi r5, r5, -4
67
	addi r5, r5, -4
68
	stwu r0, 4(r6)
68
	stwu r0, 4(r6)
69
	
69
	
70
	3:
70
	3:
71
	
71
	
72
	cmpwi 0, r5, 0
72
	cmpwi 0, r5, 0
73
	beqlr
73
	beqlr
74
	mtctr r5
74
	mtctr r5
75
	addi r4, r4, 3
75
	addi r4, r4, 3
76
	addi r6, r6, 3
76
	addi r6, r6, 3
77
	
77
	
78
	4:
78
	4:
79
	
79
	
80
	lbzu r0, 1(r4)
80
	lbzu r0, 1(r4)
81
	stbu r0, 1(r6)
81
	stbu r0, 1(r6)
82
	bdnz 4b
82
	bdnz 4b
83
	blr
83
	blr
84
	
84
	
85
	5:
85
	5:
86
	
86
	
87
	subfic r0, r0, 4
87
	subfic r0, r0, 4
88
	mtctr r0
88
	mtctr r0
89
	
89
	
90
	6:
90
	6:
91
	
91
	
92
	lbz r7, 4(r4)
92
	lbz r7, 4(r4)
93
	addi r4, r4, 1
93
	addi r4, r4, 1
94
	stb r7, 4(r6)
94
	stb r7, 4(r6)
95
	addi r6, r6, 1
95
	addi r6, r6, 1
96
	bdnz 6b
96
	bdnz 6b
97
	subf r5, r0, r5
97
	subf r5, r0, r5
98
	rlwinm. r7, r5, 32-3, 3, 31
98
	rlwinm. r7, r5, 32-3, 3, 31
99
	beq 2b
99
	beq 2b
100
	mtctr r7
100
	mtctr r7
101
	b 1b
101
	b 1b
102
 
102
 
103
 
103
 
104
jump_to_kernel:
104
jump_to_kernel:
105
	
105
	
106
	# r3 = bootinfo (pa)
106
	# r3 = bootinfo (pa)
107
	# r4 = bootinfo_size
107
	# r4 = bootinfo_size
108
	# r5 = trans (pa)
108
	# r5 = trans (pa)
109
	# r6 = bytes to copy
109
	# r6 = bytes to copy
110
	# r7 = real_mode (pa)
110
	# r7 = real_mode (pa)
111
	
111
	
112
	# disable interrupts
112
	# disable interrupts
113
	
113
	
114
	mfmsr r31
114
	mfmsr r31
115
	rlwinm r31, r31, 0, 17, 15
115
	rlwinm r31, r31, 0, 17, 15
116
	mtmsr r31
116
	mtmsr r31
117
	
117
	
118
	# set real_mode meeting point address
118
	# set real_mode meeting point address
119
	
119
	
120
	mtspr srr0, r7
120
	mtspr srr0, r7
121
	
121
	
122
	# jumps to real_mode
122
	# jumps to real_mode
123
	
123
	
124
	mfmsr r31
124
	mfmsr r31
125
	lis r30, ~0@h
125
	lis r30, ~0@h
126
	ori r30, r30, ~(msr_ir | msr_dr)@l
126
	ori r30, r30, ~(msr_ir | msr_dr)@l
127
	and r31, r31, r30
127
	and r31, r31, r30
128
	mtspr srr1, r31
128
	mtspr srr1, r31
129
	
129
	
130
	sync
130
	sync
131
	isync
131
	isync
132
	rfi
132
	rfi
133
 
133
 
134
.section REALMODE, "ax"
134
.section REALMODE, "ax"
135
.align PAGE_WIDTH
135
.align PAGE_WIDTH
136
.global real_mode
136
.global real_mode
137
 
137
 
138
real_mode:
138
real_mode:
139
	
139
	
140
	# copy kernel to proper location
140
	# copy kernel to proper location
141
	#
141
	#
142
	# r5 = trans (pa)
142
	# r5 = trans (pa)
143
	# r6 = bytes to copy
143
	# r6 = bytes to copy
144
	
144
	
145
	li r31, PAGE_SIZE >> 2
145
	li r31, PAGE_SIZE >> 2
146
	li r30, 0
146
	li r30, 0
147
	
147
	
148
	page_copy:
148
	page_copy:
149
		
149
		
150
		cmpwi r6, 0
150
		cmpwi r6, 0
151
		beq copy_end
151
		beq copy_end
152
		
152
		
153
		# copy page
153
		# copy page
154
		
154
		
155
		mtctr r31
155
		mtctr r31
156
		lwz r29, 0(r5)
156
		lwz r29, 0(r5)
157
		
157
		
158
		copy_loop:
158
		copy_loop:
159
			
159
			
160
			lwz r28, 0(r29)
160
			lwz r28, 0(r29)
161
			stw r28, 0(r30)
161
			stw r28, 0(r30)
162
			
162
			
163
			addi r29, r29, 4
163
			addi r29, r29, 4
164
			addi r30, r30, 4
164
			addi r30, r30, 4
165
			subi r6, r6, 4
165
			subi r6, r6, 4
166
			
166
			
167
			cmpwi r6, 0
167
			cmpwi r6, 0
168
			beq copy_end
168
			beq copy_end
169
			
169
			
170
			bdnz copy_loop
170
			bdnz copy_loop
171
		
171
		
172
		addi r5, r5, 4
172
		addi r5, r5, 4
173
		b page_copy
173
		b page_copy
174
	
174
	
175
	copy_end:
175
	copy_end:
176
	
176
	
177
	# initially fill segment registers
177
	# initially fill segment registers
178
 
178
 
179
	li r31, 16
179
	li r31, 16
180
	mtctr r31
180
	mtctr r31
181
	li r31, 0
181
	li r31, 0
182
	li r30, 0x2000
182
	li r30, 0x2000
183
 
183
 
184
	seg_fill:
184
	seg_fill:
185
	
185
	
186
		mtsrin r30, r31
186
		mtsrin r30, r31
187
		addi r30, r30, 0x111
187
		addi r30, r30, 0x111
188
		addis r31, r31, 0x1000    # move to next SR
188
		addis r31, r31, 0x1000    # move to next SR
189
		
189
		
190
		bdnz seg_fill
190
		bdnz seg_fill
191
	
191
	
192
	# invalidate block address translation registers
192
	# invalidate block address translation registers
193
	
193
	
-
 
194
	li r30, 0
-
 
195
	
194
	mtspr ibat0u, r30
196
	mtspr ibat0u, r30
195
	mtspr ibat0l, r30
197
	mtspr ibat0l, r30
196
	
198
	
197
	mtspr ibat1u, r30
199
	mtspr ibat1u, r30
198
	mtspr ibat1l, r30
200
	mtspr ibat1l, r30
199
	
201
	
200
	mtspr ibat2u, r30
202
	mtspr ibat2u, r30
201
	mtspr ibat2l, r30
203
	mtspr ibat2l, r30
202
	
204
	
203
	mtspr ibat3u, r30
205
	mtspr ibat3u, r30
204
	mtspr ibat3l, r30
206
	mtspr ibat3l, r30
205
	
207
	
206
	mtspr dbat0u, r30
208
	mtspr dbat0u, r30
207
	mtspr dbat0l, r30
209
	mtspr dbat0l, r30
208
	
210
	
209
	mtspr dbat1u, r30
211
	mtspr dbat1u, r30
210
	mtspr dbat1l, r30
212
	mtspr dbat1l, r30
211
	
213
	
212
	mtspr dbat2u, r30
214
	mtspr dbat2u, r30
213
	mtspr dbat2l, r30
215
	mtspr dbat2l, r30
214
	
216
	
215
	mtspr dbat3u, r30
217
	mtspr dbat3u, r30
216
	mtspr dbat3l, r30
218
	mtspr dbat3l, r30
217
	
219
	
218
	# create identity mapping
220
	# create identity mapping
219
	
221
	
220
	# FIXME: map exactly the size of RAM
222
	# FIXME: map exactly the size of RAM
221
	
223
	
222
	lis r31, 0x8000
224
	lis r31, 0x8000
223
	ori r31, r31, 0x0ffe
225
	ori r31, r31, 0x0ffe
224
	
226
	
225
	lis r30, 0x0000
227
	lis r30, 0x0000
226
	ori r30, r30, 0x0002
228
	ori r30, r30, 0x0002
227
	
229
	
228
	mtspr ibat0u, r31
230
	mtspr ibat0u, r31
229
	mtspr ibat0l, r30
231
	mtspr ibat0l, r30
230
	
232
	
231
	mtspr dbat0u, r31
233
	mtspr dbat0u, r31
232
	mtspr dbat0l, r30
234
	mtspr dbat0l, r30
233
	
235
	
234
	tlbia
236
	tlbia
235
	
237
	
236
	# start the kernel
238
	# start the kernel
237
	#
239
	#
238
	# r3 = bootinfo (pa)
240
	# r3 = bootinfo (pa)
239
	
241
	
240
	lis r31, KERNEL_START_ADDR@ha
242
	lis r31, KERNEL_START_ADDR@ha
241
	addi r31, r31, KERNEL_START_ADDR@l
243
	addi r31, r31, KERNEL_START_ADDR@l
242
	
244
	
243
	mtspr srr0, r31
245
	mtspr srr0, r31
244
	
246
	
245
	mfmsr r31
247
	mfmsr r31
246
	ori r31, r31, (msr_ir | msr_dr)@l
248
	ori r31, r31, (msr_ir | msr_dr)@l
247
	mtspr srr1, r31
249
	mtspr srr1, r31
248
	
250
	
249
	sync
251
	sync
250
	isync
252
	isync
251
	rfi
253
	rfi
252
 
254
 
253
.align PAGE_WIDTH
255
.align PAGE_WIDTH
254
.global trans
256
.global trans
255
trans:
257
trans:
256
	.space (TRANS_SIZE * TRANS_ITEM_SIZE)
258
	.space (TRANS_SIZE * TRANS_ITEM_SIZE)
257
 
259