1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
/* $OpenBSD: biosboot.S,v 1.3 1997/03/31 23:06:19 mickey Exp $ */
.file "bootbios.S"
#include <machine/asm.h>
#include <machine/specialreg.h>
#define _LOCORE
#include <machine/segments.h>
#undef _LOCORE
#define addr32 .byte 0x67
#define data32 .byte 0x66
#ifdef DEBUG
#define BLKCNT 32
#else
#define BLKCNT 48
#endif
#define BOOTSEG 0x07c0 /* boot loaded here */
#define BOOTSTACK 0xfffc /* stack starts here */
#define ZMAGIC 0x0b01 /* ZMAGIC */
#ifdef DEBUG
#define DBGMSG(msg) \
movb $msg, %al; \
data32; \
call chr
#define GO_RELOC 'R' /* running relocated code */
#define REAL2PROT 'P' /* switch to protected mode */
#else /* !DEBUG */
#define DBGMSG(msg)
#endif /* !DEBUG */
.text
.globl start
start:
/* set up stack (%ss:%esp) */
cli /* disable interrupts w/o stack */
# movw $BOOTREL, %ax
.byte 0xb8
.word BOOTREL
movl %ax, %ss
movl %ax, %es /* relocate there */
data32
movl $BOOTSTACK, %esp
sti /* we have stack, do ints */
# movw $BOOTSEG, %ax /* we are here */
.byte 0xb8
.word BOOTSEG
movl %ax, %ds
xorl %si, %si
xorl %di, %di
# movw $0x100, %cx /* 512 bytes to move */
.byte 0xb9
.word 0x100
cld
rep; movsl
/* jump to relocated code */
data32
ljmp $BOOTREL, $2f
1: .asciz "loading /boot"
2: DBGMSG(GO_RELOC)
/* set up %ds */
pushl %cs
popl %ds
/* set up %es, (where we will load /boot to) */
# movw $(START >> 4), %ax
.byte 0xb8
.word START >> 4
movl %ax, %es
#ifdef SERIAL
# Initialize the serial port to 9600 baud, 8N1.
pushl %dx
# movw $0x00e3, %ax
.byte 0xb8
.word 0x00e3
# movw SERIAL, %dx
.byte 0xba
.word SERIAL
int $0x14
popl %dx
#endif
data32
movl $1b, %esi
data32
call message
data32
xorl %ebx, %ebx /* put it at %es:0 */
addr32
movb _block_count, %cl /* how many to read */
movzbl %cl, %ecx
# movw $_block_table, %si
.byte 0xbe
.word _block_table
1:
pushl %cx
cld
lodsl /* word */ /* cylinder/sector */
movl %ax, %cx
lodsb /* head */
movb %al, %dh
lodsb /* # of sectors to load */
movb $0x2, %ah
pushl %ax
int $0x13
jnc 3f
/* read error */
data32
movl $2f, %esi
jmp halt
2: .asciz "\r\nRead error\r\n"
3: /* read next block */
movb $'.', %al
data32
call chr /* show progress indicator */
popl %ax
movzbl %al, %ax
shll $9, %ax /* 512 bytes sectors */
addl %ax, %bx
popl %cx
loop 1b
data32
movl $2f, %esi /* new line */
data32
call message
xorl %si, %si
cld
/* check /boot magic */
es;lodsl;es;lodsl /* no need for high word */
# cmpw $ZMAGIC, %ax
.byte 0x3d
.word ZMAGIC
je 3f
data32
movl $1f, %esi
halt:
data32
call message
cli
hlt
1: .ascii "Bad magic"
2: .asciz "\r\n"
3:
#if notdef
data32;es;lodsl /* text size */
data32;es;lodsl /* data size */
data32;es;lodsl /* bss size */
data32;es;lodsl /* syms size */
#endif
data32
addl 16(%esi), %edi /* entry */
DBGMSG(REAL2PROT)
/* change to protected mode */
/* guarantee that interrupts are disabled when in prot mode */
cli
/* load the gdtr */
addr32
data32
lgdt Gdtr
/* set the PE bit of CR0 */
movl %cr0, %eax
data32
orl $CR0_PE, %eax
movl %eax, %cr0
/*
* make intrasegment jump to flush the processor pipeline and
* reload CS register
*/
data32
ljmp $8, $1f+(BOOTREL << 4)
1: /*
* 32bit mode
* set up %ds, %ss, %es
*/
movw $0x10, %eax
movl %ax, %ds
movl %ax, %ss
movl $BOOTSTACK, %esp
#ifdef DEBUG
movl $0xb8004, %ebx
movl $0x074f0747, (%ebx)
#endif
movzbl %dl, %eax /* drive number is in the lowest byte */
pushl %eax
pushl $BOOTMAGIC /* use some magic */
/* jmp /boot */
ljmp $8, $(START + 0x20)
/* not reached */
#
# chr: write the character in %al to console
#
chr:
data32
pushl %eax
#ifndef SERIAL
data32
pushl %ebx
movb $0x0e, %ah
xorl %bx, %bx
incl %bx /* movw $0x01, %bx */
int $0x10
data32
popl %ebx
#else
data32
pushl %edx
movb $0x01, %ah
xorl %dx, %dx
movb SERIAL, %dl
int $0x14
data32
popl %edx
#endif
data32
popl %eax
data32
ret
/*
* Display string
*/
message:
data32
pushl %eax
cld
1:
lodsb # load a byte into %al
testb %al, %al
jz 1f
data32
call chr
jmp 1b
1:
data32
popl %eax
data32
ret
.align 3
gdt: /* 0x00 : null */
.long 0, 0
/* 0x08 : flat code */
.word 0xFFFF # lolimit
.word 0 # lobase
.byte 0 # midbase
.byte SDT_MEMERAC | 0 | 0x80 # RWXAC, dpl = 0, present
.byte 0xf | 0 | 0x40 | 0x80 # hilimit, xx, 32bit, 4k granularity
.byte 0 # hibase
/* 0x10 : flat data */
.word 0xFFFF # lolimit
.word 0 # lobase
.byte 0 # midbase
.byte SDT_MEMRWA | 0 | 0x80 # RWA, dpl = 0, present
.byte 0xf | 0 | 0x40 | 0x80 # hilimit, xx, 32bit, 4k granularity
.byte 0 # hibase
Gdtr: .word . - gdt
.long (BOOTREL << 4) + gdt
.globl _block_table
_block_table:
.word 0 /* cyllinder/sector */
.byte 0 /* head */
.byte 0 /* nsect */
. = _block_table + BLKCNT*4
.globl _block_count
_block_count:
.byte BLKCNT /* entries in _block_table */
. = 0x200 - 4
/* a little signature */
.ascii "boot"
|