Subversion Repositories HelenOS

Rev

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

Rev 2725 Rev 2729
1
#
1
#
2
# Copyright (c) 2001-2004 Jakub Jermar
2
# Copyright (c) 2001-2004 Jakub Jermar
3
# Copyright (c) 2005-2006 Martin Decky
3
# Copyright (c) 2005-2006 Martin Decky
4
# All rights reserved.
4
# All rights reserved.
5
#
5
#
6
# Redistribution and use in source and binary forms, with or without
6
# Redistribution and use in source and binary forms, with or without
7
# modification, are permitted provided that the following conditions
7
# modification, are permitted provided that the following conditions
8
# are met:
8
# are met:
9
#
9
#
10
# - Redistributions of source code must retain the above copyright
10
# - Redistributions of source code must retain the above copyright
11
#   notice, this list of conditions and the following disclaimer.
11
#   notice, this list of conditions and the following disclaimer.
12
# - Redistributions in binary form must reproduce the above copyright
12
# - Redistributions in binary form must reproduce the above copyright
13
#   notice, this list of conditions and the following disclaimer in the
13
#   notice, this list of conditions and the following disclaimer in the
14
#   documentation and/or other materials provided with the distribution.
14
#   documentation and/or other materials provided with the distribution.
15
# - The name of the author may not be used to endorse or promote products
15
# - The name of the author may not be used to endorse or promote products
16
#   derived from this software without specific prior written permission.
16
#   derived from this software without specific prior written permission.
17
#
17
#
18
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
#
28
#
29
 
29
 
30
#include <arch/boot/boot.h>
30
#include <arch/boot/boot.h>
31
#include <arch/boot/memmap.h>
31
#include <arch/boot/memmap.h>
32
#include <arch/mm/page.h>
32
#include <arch/mm/page.h>
33
#include <arch/pm.h>
33
#include <arch/pm.h>
34
 
34
 
35
#define START_STACK (BOOT_OFFSET - BOOT_STACK_SIZE)
35
#define START_STACK (BOOT_OFFSET - BOOT_STACK_SIZE)
36
 
36
 
37
.section K_TEXT_START, "ax"
37
.section K_TEXT_START, "ax"
38
 
38
 
39
.code32
39
.code32
40
.align 4
40
.align 4
41
.global multiboot_image_start
41
.global multiboot_image_start
42
multiboot_header:
42
multiboot_header:
43
	.long MULTIBOOT_HEADER_MAGIC
43
	.long MULTIBOOT_HEADER_MAGIC
44
	.long MULTIBOOT_HEADER_FLAGS
44
	.long MULTIBOOT_HEADER_FLAGS
45
	.long -(MULTIBOOT_HEADER_MAGIC + MULTIBOOT_HEADER_FLAGS)	# checksum
45
	.long -(MULTIBOOT_HEADER_MAGIC + MULTIBOOT_HEADER_FLAGS)	# checksum
46
	.long multiboot_header
46
	.long multiboot_header
47
	.long unmapped_ktext_start
47
	.long unmapped_ktext_start
48
	.long 0
48
	.long 0
49
	.long 0
49
	.long 0
50
	.long multiboot_image_start
50
	.long multiboot_image_start
51
	
51
	
52
multiboot_image_start:
52
multiboot_image_start:
53
	movl $START_STACK, %esp			# initialize stack pointer
53
	movl $START_STACK, %esp			# initialize stack pointer
54
	lgdt KA2PA(bootstrap_gdtr)		# initialize Global Descriptor Table register
54
	lgdt KA2PA(bootstrap_gdtr)		# initialize Global Descriptor Table register
55
 
55
 
56
	movw $selector(KDATA_DES), %cx
56
	movw $selector(KDATA_DES), %cx
57
	movw %cx, %es
57
	movw %cx, %es
58
	movw %cx, %fs
58
	movw %cx, %fs
59
	movw %cx, %gs
59
	movw %cx, %gs
60
	movw %cx, %ds					# kernel data + stack
60
	movw %cx, %ds					# kernel data + stack
61
	movw %cx, %ss
61
	movw %cx, %ss
62
	
62
	
63
	jmpl $selector(KTEXT_DES), $multiboot_meeting_point
63
	jmpl $selector(KTEXT_DES), $multiboot_meeting_point
64
	multiboot_meeting_point:
64
	multiboot_meeting_point:
65
	
65
	
66
	movl %eax, grub_eax					# save parameters from GRUB
66
	movl %eax, grub_eax					# save parameters from GRUB
67
	movl %ebx, grub_ebx
67
	movl %ebx, grub_ebx
68
	
68
	
69
	xorl %eax, %eax  
69
	xorl %eax, %eax  
70
 	cpuid
70
 	cpuid
71
 	cmp $0x0, %eax						# any function > 0?
71
 	cmp $0x0, %eax						# any function > 0?
72
	jbe pse_unsupported
72
	jbe pse_unsupported
73
	movl $0x1, %eax						# Basic function code 1
73
	movl $0x1, %eax						# Basic function code 1
74
	cpuid
74
	cpuid
75
	bt $3, %edx							# Test if PSE is supported
75
	bt $3, %edx							# Test if PSE is supported
76
	jc pse_supported
76
	jc pse_supported
77
 
77
 
78
	pse_unsupported:
78
	pse_unsupported:
79
		movl $pse_msg, %esi
79
		movl $pse_msg, %esi
80
		jmp error_halt
80
		jmp error_halt
81
	
81
	
82
	pse_supported:
82
	pse_supported:
83
	
83
	
84
#ifdef CONFIG_FB
84
#ifdef CONFIG_FB
85
	mov $vesa_init, %esi
85
	mov $vesa_init, %esi
86
	mov $VESA_INIT_SEGMENT << 4, %edi
86
	mov $VESA_INIT_SEGMENT << 4, %edi
87
	mov $e_vesa_init - vesa_init, %ecx
87
	mov $e_vesa_init - vesa_init, %ecx
88
	cld
88
	cld
89
	rep movsb
89
	rep movsb
90
 
90
 
91
	mov $VESA_INIT_SEGMENT << 4, %edi
91
	mov $VESA_INIT_SEGMENT << 4, %edi
92
	jmpl *%edi
92
	jmpl *%edi
93
	
93
	
94
	vesa_meeting_point:
94
	vesa_meeting_point:
95
	
95
	
96
	mov %esi, KA2PA(vesa_ph_addr)
96
	mov %esi, KA2PA(vesa_ph_addr)
97
	mov %di, KA2PA(vesa_height)
97
	mov %di, KA2PA(vesa_height)
98
	shr $16, %edi
98
	shr $16, %edi
99
	mov %di, KA2PA(vesa_width)
99
	mov %di, KA2PA(vesa_width)
100
	mov %bx, KA2PA(vesa_scanline)
100
	mov %bx, KA2PA(vesa_scanline)
101
	shr $16, %ebx
101
	shr $16, %ebx
102
	mov %bx, KA2PA(vesa_bpp)
102
	mov %bx, KA2PA(vesa_bpp)
103
#endif	
103
#endif	
104
	
104
	
105
	call map_kernel							# map kernel and turn paging on
105
	call map_kernel							# map kernel and turn paging on
106
	
106
	
107
	movl grub_eax, %eax
107
	movl grub_eax, %eax
108
	movl grub_ebx, %ebx
108
	movl grub_ebx, %ebx
109
	cmpl $MULTIBOOT_LOADER_MAGIC, %eax				# compare GRUB signature
109
	cmpl $MULTIBOOT_LOADER_MAGIC, %eax				# compare GRUB signature
110
	je valid_boot
110
	je valid_boot
111
		
111
		
112
		xorl %ecx, %ecx							# no memory map available
112
		xorl %ecx, %ecx							# no memory map available
113
		movl %ecx, e820counter
113
		movl %ecx, e820counter
114
		
114
		
115
		jmp invalid_boot
115
		jmp invalid_boot
116
		
116
		
117
	valid_boot:
117
	valid_boot:
118
		
118
		
119
		movl (%ebx), %eax						# ebx = physical address of struct multiboot_info
119
		movl (%ebx), %eax						# ebx = physical address of struct multiboot_info
120
		
120
		
121
		bt $3, %eax								# mbi->flags[3] (mods_count, mods_addr valid)
121
		bt $3, %eax								# mbi->flags[3] (mods_count, mods_addr valid)
122
		jc mods_valid
122
		jc mods_valid
123
			
123
			
124
			xorl %ecx, %ecx
124
			xorl %ecx, %ecx
125
			movl %ecx, init
125
			movl %ecx, init
126
			jmp mods_end
126
			jmp mods_end
127
		
127
		
128
		mods_valid:
128
		mods_valid:
129
		
129
		
130
		movl 20(%ebx), %ecx						# mbi->mods_count
130
		movl 20(%ebx), %ecx						# mbi->mods_count
131
		movl %ecx, init
131
		movl %ecx, init
132
		
132
		
133
		cmpl $0, %ecx
133
		cmpl $0, %ecx
134
		je mods_end
134
		je mods_end
135
		
135
		
136
		movl 24(%ebx), %esi						# mbi->mods_addr
136
		movl 24(%ebx), %esi						# mbi->mods_addr
137
		movl $init, %edi
137
		movl $init, %edi
138
		
138
		
139
		mods_loop:
139
		mods_loop:
140
		
140
		
141
			movl 0(%esi), %edx					# mods->mod_start
141
			movl 0(%esi), %edx					# mods->mod_start
142
			addl $0x80000000, %edx
142
			addl $0x80000000, %edx
143
			movl %edx, 4(%edi)
143
			movl %edx, 4(%edi)
144
			
144
			
145
			movl 4(%esi), %edx
145
			movl 4(%esi), %edx
146
			subl 0(%esi), %edx					# mods->mod_end - mods->mod_start
146
			subl 0(%esi), %edx					# mods->mod_end - mods->mod_start
147
			movl %edx, 8(%edi)
147
			movl %edx, 8(%edi)
148
			
148
			
149
			addl $16, %esi
149
			addl $16, %esi
150
			addl $8	, %edi
150
			addl $8	, %edi
151
			
151
			
152
			loop mods_loop
152
			loop mods_loop
153
			
153
			
154
		mods_end:
154
		mods_end:
155
		
155
		
156
		bt $6, %eax								# mbi->flags[6] (mmap_length, mmap_addr valid)	
156
		bt $6, %eax								# mbi->flags[6] (mmap_length, mmap_addr valid)	
157
		jc mmap_valid
157
		jc mmap_valid
158
			
158
			
159
			xorl %edx, %edx
159
			xorl %edx, %edx
160
			jmp mmap_invalid
160
			jmp mmap_invalid
161
			
161
			
162
		mmap_valid:
162
		mmap_valid:
163
		movl 44(%ebx), %ecx						# mbi->mmap_length
163
		movl 44(%ebx), %ecx						# mbi->mmap_length
164
		movl 48(%ebx), %esi						# mbi->mmap_addr
164
		movl 48(%ebx), %esi						# mbi->mmap_addr
165
		movl $e820table, %edi
165
		movl $e820table, %edi
166
		xorl %edx, %edx
166
		xorl %edx, %edx
167
		
167
		
168
		mmap_loop:
168
		mmap_loop:
169
			cmpl $0, %ecx
169
			cmpl $0, %ecx
170
			jle mmap_end
170
			jle mmap_end
171
			
171
			
172
			movl 4(%esi), %eax					# mmap->base_addr_low
172
			movl 4(%esi), %eax					# mmap->base_addr_low
173
			movl %eax, (%edi)
173
			movl %eax, (%edi)
174
			
174
			
175
			movl 8(%esi), %eax					# mmap->base_addr_high
175
			movl 8(%esi), %eax					# mmap->base_addr_high
176
			movl %eax, 4(%edi)
176
			movl %eax, 4(%edi)
177
			
177
			
178
			movl 12(%esi), %eax					# mmap->length_low
178
			movl 12(%esi), %eax					# mmap->length_low
179
			movl %eax, 8(%edi)
179
			movl %eax, 8(%edi)
180
			
180
			
181
			movl 16(%esi), %eax					# mmap->length_high
181
			movl 16(%esi), %eax					# mmap->length_high
182
			movl %eax, 12(%edi)
182
			movl %eax, 12(%edi)
183
			
183
			
184
			movl 20(%esi), %eax					# mmap->type
184
			movl 20(%esi), %eax					# mmap->type
185
			movl %eax, 16(%edi)
185
			movl %eax, 16(%edi)
186
			
186
			
187
			movl (%esi), %eax					# mmap->size
187
			movl (%esi), %eax					# mmap->size
188
			addl $0x4, %eax
188
			addl $0x4, %eax
189
			addl %eax, %esi
189
			addl %eax, %esi
190
			subl %eax, %ecx
190
			subl %eax, %ecx
191
			addl $MEMMAP_E820_RECORD_SIZE, %edi
191
			addl $MEMMAP_E820_RECORD_SIZE, %edi
192
			incl %edx
192
			incl %edx
193
			jmp mmap_loop
193
			jmp mmap_loop
194
		
194
		
195
		mmap_end:
195
		mmap_end:
196
		
196
		
197
		mmap_invalid:
197
		mmap_invalid:
198
		movl %edx, e820counter
198
		movl %edx, e820counter
199
		
199
		
200
	invalid_boot:
200
	invalid_boot:
201
	
201
	
202
#ifdef CONFIG_SMP
202
#ifdef CONFIG_SMP
203
	
203
	
204
	# copy AP bootstrap routines below 1 MB
204
	# copy AP bootstrap routines below 1 MB
205
	
205
	
206
	movl $BOOT_OFFSET, %esi
206
	movl $BOOT_OFFSET, %esi
207
	movl $AP_BOOT_OFFSET, %edi
207
	movl $AP_BOOT_OFFSET, %edi
208
	movl $_hardcoded_unmapped_size, %ecx
208
	movl $_hardcoded_unmapped_size, %ecx
209
	cld
209
	cld
210
	rep movsb
210
	rep movsb
211
	
211
	
212
#endif
212
#endif
213
 
213
 
214
	call main_bsp								# never returns
214
	call main_bsp								# never returns
215
 
215
 
216
	cli
216
	cli
217
	hlt
217
	hlt
218
 
218
 
219
.global map_kernel
219
.global map_kernel
220
map_kernel:
220
map_kernel:
221
	#
221
	#
222
	# Here we setup mapping for both the unmapped and mapped sections of the kernel.
222
	# Here we setup mapping for both the unmapped and mapped sections of the kernel.
223
	# For simplicity, we map the entire 4G space.
223
	# For simplicity, we map the entire 4G space.
224
	#
224
	#
225
	movl %cr4, %ecx
225
	movl %cr4, %ecx
226
	orl $(1 << 4), %ecx							# turn PSE on
226
	orl $(1 << 4), %ecx							# turn PSE on
227
	andl $(~(1 << 5)), %ecx						# turn PAE off
227
	andl $(~(1 << 5)), %ecx						# turn PAE off
228
	movl %ecx, %cr4
228
	movl %ecx, %cr4
229
	
229
	
230
	movl $(page_directory + 0), %esi
230
	movl $(page_directory + 0), %esi
231
	movl $(page_directory + 2048), %edi
231
	movl $(page_directory + 2048), %edi
232
	xorl %ecx, %ecx
232
	xorl %ecx, %ecx
233
	xorl %ebx, %ebx
233
	xorl %ebx, %ebx
234
0:
234
0:
235
	movl $((1 << 7) | (1 << 1) | (1 << 0)), %eax
235
	movl $((1 << 7) | (1 << 1) | (1 << 0)), %eax
236
	orl %ebx, %eax
236
	orl %ebx, %eax
237
	movl %eax, (%esi, %ecx, 4)					# mapping 0x00000000 + %ecx * 4M => 0x00000000 + %ecx * 4M
237
	movl %eax, (%esi, %ecx, 4)					# mapping 0x00000000 + %ecx * 4M => 0x00000000 + %ecx * 4M
238
	movl %eax, (%edi, %ecx, 4)					# mapping 0x80000000 + %ecx * 4M => 0x00000000 + %ecx * 4M
238
	movl %eax, (%edi, %ecx, 4)					# mapping 0x80000000 + %ecx * 4M => 0x00000000 + %ecx * 4M
239
	addl $(4 * 1024 * 1024), %ebx
239
	addl $(4 * 1024 * 1024), %ebx
240
 
240
 
241
	incl %ecx
241
	incl %ecx
242
	cmpl $512, %ecx
242
	cmpl $512, %ecx
243
	jl 0b
243
	jl 0b
244
 
244
 
245
	movl %esi, %cr3
245
	movl %esi, %cr3
246
	
246
	
247
	movl %cr0, %ebx
247
	movl %cr0, %ebx
248
	orl $(1 << 31), %ebx						# turn paging on
248
	orl $(1 << 31), %ebx						# turn paging on
249
	movl %ebx, %cr0
249
	movl %ebx, %cr0
250
	ret
250
	ret
251
 
251
 
252
# Print string from %esi to EGA display (in red) and halt
252
# Print string from %esi to EGA display (in red) and halt
253
error_halt:
253
error_halt:
254
	movl $0xb8000, %edi						# base of EGA text mode memory
254
	movl $0xb8000, %edi						# base of EGA text mode memory
255
	xorl %eax, %eax
255
	xorl %eax, %eax
256
	
256
	
257
	movw $0x3d4, %dx						# read bits 8 - 15 of the cursor address
257
	movw $0x3d4, %dx						# read bits 8 - 15 of the cursor address
258
	movb $0xe, %al
258
	movb $0xe, %al
259
	outb %al, %dx
259
	outb %al, %dx
260
	
260
	
261
	movw $0x3d5, %dx
261
	movw $0x3d5, %dx
262
	inb %dx, %al
262
	inb %dx, %al
263
	shl $8, %ax
263
	shl $8, %ax
264
	
264
	
265
	movw $0x3d4, %dx						# read bits 0 - 7 of the cursor address
265
	movw $0x3d4, %dx						# read bits 0 - 7 of the cursor address
266
	movb $0xf, %al
266
	movb $0xf, %al
267
	outb %al, %dx
267
	outb %al, %dx
268
	
268
	
269
	movw $0x3d5, %dx
269
	movw $0x3d5, %dx
270
	inb %dx, %al
270
	inb %dx, %al
271
	
271
	
272
	cmp $1920, %ax
272
	cmp $1920, %ax
273
	jbe cursor_ok
273
	jbe cursor_ok
274
		movw $1920, %ax						# sanity check for the cursor on the last line
274
		movw $1920, %ax						# sanity check for the cursor on the last line
275
	cursor_ok:
275
	cursor_ok:
276
	
276
	
277
	movw %ax, %bx
277
	movw %ax, %bx
278
	shl $1, %eax
278
	shl $1, %eax
279
	addl %eax, %edi
279
	addl %eax, %edi
280
	
280
	
281
	movw $0x0c00, %ax						# black background, light red foreground
281
	movw $0x0c00, %ax						# black background, light red foreground
282
	cld
282
	cld
283
	
283
	
284
	ploop:
284
	ploop:
285
		lodsb
285
		lodsb
286
		cmp $0, %al
286
		cmp $0, %al
287
		je ploop_end
287
		je ploop_end
288
		stosw
288
		stosw
289
		inc %bx	
289
		inc %bx	
290
		jmp ploop
290
		jmp ploop
291
	ploop_end:
291
	ploop_end:
292
	
292
	
293
	movw $0x3d4, %dx						# write bits 8 - 15 of the cursor address
293
	movw $0x3d4, %dx						# write bits 8 - 15 of the cursor address
294
	movb $0xe, %al
294
	movb $0xe, %al
295
	outb %al, %dx
295
	outb %al, %dx
296
	
296
	
297
	movw $0x3d5, %dx
297
	movw $0x3d5, %dx
298
	movb %bh, %al
298
	movb %bh, %al
299
	outb %al, %dx
299
	outb %al, %dx
300
	
300
	
301
	movw $0x3d4, %dx						# write bits 0 - 7 of the cursor address
301
	movw $0x3d4, %dx						# write bits 0 - 7 of the cursor address
302
	movb $0xf, %al
302
	movb $0xf, %al
303
	outb %al, %dx
303
	outb %al, %dx
304
	
304
	
305
	movw $0x3d5, %dx
305
	movw $0x3d5, %dx
306
	movb %bl, %al
306
	movb %bl, %al
307
	outb %al, %dx
307
	outb %al, %dx
308
		
308
		
309
	cli
309
	cli
310
	hlt
310
	hlt
311
 
311
 
312
#ifdef CONFIG_FB
312
#ifdef CONFIG_FB
313
vesa_init:
313
vesa_init:
314
	jmp $selector(VESA_INIT_DES), $vesa_init_real - vesa_init
314
	jmp $selector(VESA_INIT_DES), $vesa_init_real - vesa_init
315
	
315
	
316
.code16
316
.code16
317
vesa_init_real:
317
vesa_init_real:
318
	
318
	
319
	mov %cr0, %eax
319
	mov %cr0, %eax
320
	and $~1, %eax
320
	and $~1, %eax
321
	mov %eax, %cr0
321
	mov %eax, %cr0
322
	
322
	
323
	jmp $VESA_INIT_SEGMENT, $vesa_init_real2 - vesa_init
323
	jmp $VESA_INIT_SEGMENT, $vesa_init_real2 - vesa_init
324
	
324
	
325
vesa_init_real2:
325
vesa_init_real2:
326
	
326
	
327
	mov $VESA_INIT_SEGMENT, %bx
327
	mov $VESA_INIT_SEGMENT, %bx
328
	
328
	
329
	mov %bx, %es
329
	mov %bx, %es
330
	mov %bx, %fs
330
	mov %bx, %fs
331
	mov %bx, %gs
331
	mov %bx, %gs
332
	mov %bx, %ds
332
	mov %bx, %ds
333
	mov %bx, %ss
333
	mov %bx, %ss
334
	
334
	
335
	movl %esp, %eax
335
	movl %esp, %eax
336
	movl $0x0000fffc, %esp
336
	movl $0x0000fffc, %esp
337
	movl $0x0000fffc, %ebp
337
	movl $0x0000fffc, %ebp
338
	pushl %eax
338
	pushl %eax
339
	
339
	
340
#define VESA_INFO_SIZE 1024
340
#define VESA_INFO_SIZE 1024
341
 
341
 
342
#define VESA_MODE_ATTRIBUTES_OFFSET 0
342
#define VESA_MODE_ATTRIBUTES_OFFSET 0
343
#define VESA_MODE_LIST_PTR_OFFSET 14
343
#define VESA_MODE_LIST_PTR_OFFSET 14
344
#define VESA_MODE_SCANLINE_OFFSET 16
344
#define VESA_MODE_SCANLINE_OFFSET 16
345
#define VESA_MODE_WIDTH_OFFSET 18
345
#define VESA_MODE_WIDTH_OFFSET 18
346
#define VESA_MODE_HEIGHT_OFFSET 20
346
#define VESA_MODE_HEIGHT_OFFSET 20
347
#define VESA_MODE_BPP_OFFSET 25
347
#define VESA_MODE_BPP_OFFSET 25
348
#define VESA_MODE_PHADDR_OFFSET 40
348
#define VESA_MODE_PHADDR_OFFSET 40
349
 
349
 
350
#define VESA_END_OF_MODES 0xffff
350
#define VESA_END_OF_MODES 0xffff
351
 
351
 
352
#define VESA_OK 0x4f
352
#define VESA_OK 0x4f
353
 
353
 
354
#define VESA_GET_INFO 0x4f00
354
#define VESA_GET_INFO 0x4f00
355
#define VESA_GET_MODE_INFO 0x4f01
355
#define VESA_GET_MODE_INFO 0x4f01
356
#define VESA_SET_MODE 0x4f02
356
#define VESA_SET_MODE 0x4f02
357
#define VESA_SET_PALETTE 0x4f09
357
#define VESA_SET_PALETTE 0x4f09
358
 
358
 
359
#if CONFIG_VESA_BPP == 24
359
#if CONFIG_VESA_BPP == 24
360
#define CONFIG_VESA_BPP_VARIANT 32
360
#define CONFIG_VESA_BPP_VARIANT 32
361
#endif
361
#endif
362
 
362
 
363
	mov $VESA_GET_INFO, %ax
363
	mov $VESA_GET_INFO, %ax
364
	mov $e_vesa_init - vesa_init, %di
364
	mov $e_vesa_init - vesa_init, %di
365
	push %di
365
	push %di
366
	int $0x10
366
	int $0x10
367
	
367
	
368
	pop %di
368
	pop %di
369
	cmp $VESA_OK, %al
369
	cmp $VESA_OK, %al
370
	jnz 0f
370
	jnz 0f
371
	
371
	
372
	mov 2 + VESA_MODE_LIST_PTR_OFFSET(%di), %si
372
	mov 2 + VESA_MODE_LIST_PTR_OFFSET(%di), %si
373
	mov %si, %gs
373
	mov %si, %gs
374
	mov VESA_MODE_LIST_PTR_OFFSET(%di), %si
374
	mov VESA_MODE_LIST_PTR_OFFSET(%di), %si
375
	
375
	
376
	add $VESA_INFO_SIZE, %di
376
	add $VESA_INFO_SIZE, %di
377
 
377
 
378
1:# Try next mode
378
1:# Try next mode
379
	mov %gs:(%si), %cx
379
	mov %gs:(%si), %cx
380
	cmp $VESA_END_OF_MODES, %cx
380
	cmp $VESA_END_OF_MODES, %cx
381
	jz 0f
381
	jz 0f
382
	
382
	
383
	inc %si
383
	inc %si
384
	inc %si
384
	inc %si
385
	push %cx
385
	push %cx
386
	push %di
386
	push %di
387
	push %si
387
	push %si
388
	mov $VESA_GET_MODE_INFO, %ax
388
	mov $VESA_GET_MODE_INFO, %ax
389
	int $0x10
389
	int $0x10
390
	
390
	
391
	pop %si
391
	pop %si
392
	pop %di
392
	pop %di
393
	pop %cx
393
	pop %cx
394
	cmp $VESA_OK, %al
394
	cmp $VESA_OK, %al
395
	jnz 0f
395
	jnz 0f
396
	
396
	
397
	mov $CONFIG_VESA_WIDTH, %ax
397
	mov $CONFIG_VESA_WIDTH, %ax
398
	cmp VESA_MODE_WIDTH_OFFSET(%di), %ax
398
	cmp VESA_MODE_WIDTH_OFFSET(%di), %ax
399
	jnz 1b
399
	jnz 1b
400
	
400
	
401
	mov $CONFIG_VESA_HEIGHT, %ax
401
	mov $CONFIG_VESA_HEIGHT, %ax
402
	cmp VESA_MODE_HEIGHT_OFFSET(%di), %ax
402
	cmp VESA_MODE_HEIGHT_OFFSET(%di), %ax
403
	jnz 1b
403
	jnz 1b
404
	
404
	
405
	mov $CONFIG_VESA_BPP, %al
405
	mov $CONFIG_VESA_BPP, %al
406
	cmp VESA_MODE_BPP_OFFSET(%di), %al
406
	cmp VESA_MODE_BPP_OFFSET(%di), %al
407
 
407
 
408
#ifdef CONFIG_VESA_BPP_VARIANT
408
#ifdef CONFIG_VESA_BPP_VARIANT
409
	jz 2f
409
	jz 2f
410
	
410
	
411
	mov $CONFIG_VESA_BPP_VARIANT, %al
411
	mov $CONFIG_VESA_BPP_VARIANT, %al
412
	cmp VESA_MODE_BPP_OFFSET(%di), %al
412
	cmp VESA_MODE_BPP_OFFSET(%di), %al
413
#endif
413
#endif
414
	jnz 1b
414
	jnz 1b
415
 
415
 
416
2:
416
2:
417
	
417
	
418
	mov %cx, %bx
418
	mov %cx, %bx
419
	or $0xc000, %bx
419
	or $0xc000, %bx
420
	push %di
420
	push %di
421
	mov $VESA_SET_MODE, %ax
421
	mov $VESA_SET_MODE, %ax
422
	int $0x10
422
	int $0x10
423
	
423
	
424
	pop %di
424
	pop %di
425
	cmp $VESA_OK, %al
425
	cmp $VESA_OK, %al
426
	jnz 0f
426
	jnz 0f
427
 
427
 
428
#if CONFIG_VESA_BPP == 8
428
#if CONFIG_VESA_BPP == 8
429
	
429
	
430
	# Set 3:2:3 VGA palette
430
	# Set 3:2:3 VGA palette
431
	
431
	
432
	mov VESA_MODE_ATTRIBUTES_OFFSET(%di), %ax
432
	mov VESA_MODE_ATTRIBUTES_OFFSET(%di), %ax
433
	push %di
433
	push %di
434
	mov $vga323 - vesa_init, %di
434
	mov $vga323 - vesa_init, %di
435
	mov $0x100, %ecx
435
	mov $0x100, %ecx
436
	
436
	
437
	bt $5, %ax							# Test if VGA compatible registers are present
437
	bt $5, %ax							# Test if VGA compatible registers are present
438
	jnc vga_compat
438
	jnc vga_compat
439
		
439
		
440
		# Try VESA routine to set palette
440
		# Try VESA routine to set palette
441
		
441
		
442
		mov $VESA_SET_PALETTE, %ax
442
		mov $VESA_SET_PALETTE, %ax
443
		xor %bl, %bl
443
		xor %bl, %bl
444
		xor %dx, %dx
444
		xor %dx, %dx
445
		int $0x10
445
		int $0x10
446
		
446
		
447
		jmp vga_not_compat
447
		jmp vga_not_compat
448
	
448
	
449
	vga_compat:
449
	vga_compat:
450
		
450
		
451
		# Try VGA registers to set palette
451
		# Try VGA registers to set palette
452
		
452
		
453
		movw $0x3c6, %dx						# Set palette mask
453
		movw $0x3c6, %dx						# Set palette mask
454
		movb $0xff, %al
454
		movb $0xff, %al
455
		outb %al, %dx
455
		outb %al, %dx
456
		
456
		
457
		movw $0x3c8, %dx						# First index to set
457
		movw $0x3c8, %dx						# First index to set
458
		xor %al, %al
458
		xor %al, %al
459
		outb %al, %dx
459
		outb %al, %dx
460
		
460
		
461
		movw $0x3c9, %dx						# Data port
461
		movw $0x3c9, %dx						# Data port
462
		vga_loop:
462
		vga_loop:
463
			movb %es:2(%di), %al
463
			movb %es:2(%di), %al
464
			outb %al, %dx
464
			outb %al, %dx
465
			
465
			
466
			movb %es:1(%di), %al
466
			movb %es:1(%di), %al
467
			outb %al, %dx
467
			outb %al, %dx
468
			
468
			
469
			movb %es:(%di), %al
469
			movb %es:(%di), %al
470
			outb %al, %dx
470
			outb %al, %dx
471
			
471
			
472
			addw $4, %di
472
			addw $4, %di
473
			loop vga_loop
473
			loop vga_loop
474
		
474
		
475
	vga_not_compat:
475
	vga_not_compat:
476
	
476
	
477
	pop %di
477
	pop %di
478
	
478
	
479
#endif
479
#endif
480
	
480
	
481
	mov VESA_MODE_PHADDR_OFFSET(%di), %esi
481
	mov VESA_MODE_PHADDR_OFFSET(%di), %esi
482
	mov VESA_MODE_WIDTH_OFFSET(%di), %ax
482
	mov VESA_MODE_WIDTH_OFFSET(%di), %ax
483
	shl $16, %eax
483
	shl $16, %eax
484
	mov VESA_MODE_HEIGHT_OFFSET(%di), %ax
484
	mov VESA_MODE_HEIGHT_OFFSET(%di), %ax
485
	mov VESA_MODE_BPP_OFFSET(%di), %bl
485
	mov VESA_MODE_BPP_OFFSET(%di), %bl
486
	xor %bh, %bh
486
	xor %bh, %bh
487
	shl $16, %ebx
487
	shl $16, %ebx
488
	mov VESA_MODE_SCANLINE_OFFSET(%di), %bx
488
	mov VESA_MODE_SCANLINE_OFFSET(%di), %bx
489
	mov %eax, %edi
489
	mov %eax, %edi
490
	
490
	
491
8:	
491
8:	
492
	
492
	
493
	mov %cr0, %eax
493
	mov %cr0, %eax
494
	or $1, %eax
494
	or $1, %eax
495
	mov %eax, %cr0
495
	mov %eax, %cr0
496
	
496
	
497
	jmp 9f
497
	jmp 9f
498
9:
498
9:
499
	
499
	
500
	ljmpl $selector(KTEXT_DES), $(vesa_init_protect - vesa_init + VESA_INIT_SEGMENT << 4)
500
	ljmpl $selector(KTEXT_DES), $(vesa_init_protect - vesa_init + VESA_INIT_SEGMENT << 4)
501
 
501
 
502
0:# No prefered mode found
502
0:# No prefered mode found
503
	mov $0x111, %cx
503
	mov $0x111, %cx
504
	push %di
504
	push %di
505
	push %cx
505
	push %cx
506
	mov $VESA_GET_MODE_INFO, %ax
506
	mov $VESA_GET_MODE_INFO, %ax
507
	int $0x10
507
	int $0x10
508
	
508
	
509
	pop %cx
509
	pop %cx
510
	pop %di
510
	pop %di
511
	cmp $VESA_OK, %al
511
	cmp $VESA_OK, %al
512
	jnz 1f
512
	jnz 1f
513
	jz 2b						# Force relative jump
513
	jz 2b						# Force relative jump
514
	
514
	
515
1:
515
1:
516
	mov $0x0003, %ax
516
	mov $0x0003, %ax
517
	int $0x10
517
	int $0x10
518
	mov $0xffffffff, %edi		# EGA text mode used, because of problems with VESA
518
	mov $0xffffffff, %edi		# EGA text mode used, because of problems with VESA
519
	xor %ax, %ax
519
	xor %ax, %ax
520
	jz 8b						# Force relative jump
520
	jz 8b						# Force relative jump
521
 
521
 
522
vga323:
522
vga323:
523
#include "vga323.pal"
523
#include "vga323.pal"
524
 
524
 
525
.code32
525
.code32
526
vesa_init_protect:
526
vesa_init_protect:
527
	movw $selector(KDATA_DES), %cx
527
	movw $selector(KDATA_DES), %cx
528
	movw %cx, %es
528
	movw %cx, %es
529
	movw %cx, %fs
529
	movw %cx, %fs
530
	movw %cx, %gs
530
	movw %cx, %gs
531
	movw %cx, %ds					# kernel data + stack
531
	movw %cx, %ds					# kernel data + stack
532
	movw %cx, %ss
532
	movw %cx, %ss
533
	
533
	
534
	movl $START_STACK, %esp			# initialize stack pointer
534
	movl $START_STACK, %esp			# initialize stack pointer
535
 
535
 
536
	jmpl $selector(KTEXT_DES), $vesa_meeting_point
536
	jmpl $selector(KTEXT_DES), $vesa_meeting_point
537
 
537
 
538
.align 4
538
.align 4
539
e_vesa_init:
539
e_vesa_init:
540
#endif	
540
#endif	
541
 
541
 
542
.section K_DATA_START, "aw", @progbits
542
.section K_DATA_START, "aw", @progbits
543
 
543
 
544
.align 4096
544
.align 4096
545
page_directory:
545
page_directory:
546
	.space 4096, 0
546
	.space 4096, 0
547
 
547
 
548
grub_eax:
548
grub_eax:
549
	.long 0
549
	.long 0
550
 
550
 
551
grub_ebx:
551
grub_ebx:
552
	.long 0
552
	.long 0
553
 
553
 
554
pse_msg:
554
pse_msg:
555
	.asciz "Page Size Extension not supported. System halted."
555
	.asciz "Page Size Extension not supported. System halted."
556
 
556