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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
|
/* $OpenBSD: biosboot.S,v 1.23 1998/03/30 07:00:29 deraadt Exp $ */
/*
* Copyright (c) 1997 Michael Shalayeff
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Michael Shalayeff.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
.file "bootbios.S"
#include <machine/asm.h>
#include <assym.h>
#define addr32 .byte 0x67
#define data32 .byte 0x66
#define BLKCNT 12 /* Max without colliding with the partition table */
#define BOOTSEG 0x07c0 /* boot loaded here */
#define BOOTSTACK 0xfffc /* stack starts here */
#define ZMAGIC 0x0b01 /* ZMAGIC */
#ifdef DEBUG
#define DBGMSG(msg) \
movb $msg, %al; \
.byte 0xe8; \
.word Lchr - . - 2
#define GO_RELOC 'R' /* running relocated code */
#define REAL2PROT 'P' /* switch to protected mode */
#else /* !DEBUG */
#define DBGMSG(msg) /* */
#endif /* !DEBUG */
#define puts(s) \
data32; \
movl $s, %esi; \
/* call Lmessage */; \
.byte 0xe8; \
.word Lmessage - . - 2
.text
.globl start
start:
jmp 1f
. = start + 3
.asciz "OpenBSD"
/* BPB */
. = start + 0x0b
bpb: .word DEV_BSIZE /* sector size */
.byte 1 /* sectors/cluster */
.word 0 /* reserved sectors */
.byte 0 /* # of FAT */
.word 0 /* root entries */
.word 0 /* small sectors */
.byte 0xf8 /* media type (hd) */
.word 0 /* sectors/fat */
.word 0 /* sectors per track */
.word 0 /* # of heads */
/* EBPB */
. = start + 0x1c
ebpb: .long 16 /* hidden sectors */
.long 0 /* large sectors */
.word 0 /* physical disk */
.byte 0x29 /* signature, needed by NT */
.space 4, 0 /* volume serial number */
.asciz "UNIX LABEL"
.asciz "UFS 4.4"
/* boot code */
. = start + 0x3e
1: /* set up stack (%ss:%esp) */
cli /* disable interrupts w/o stack */
# movw $(BOOTREL >> 4), %ax
.byte 0xb8
.word BOOTREL >> 4
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 >> 4), $2f
1: .asciz "loading /boot"
2: DBGMSG(GO_RELOC)
nop
/* set up %ds */
pushl %cs
popl %ds
/* set up %es, (where we will load /boot to) */
# movw $(LOADADDR >> 4), %ax
.byte 0xb8
.word LOADADDR >> 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
puts(1b)
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 */
puts(2f)
jmp halt
2: .asciz "\r\nRead error\r\n"
3: /* read next block */
movb $'.', %al
# call Lchr /* show progress indicator */
.byte 0xe8
.word Lchr - . - 2
popl %ax
movzbl %al, %ax
shll $9, %ax /* 512 bytes sectors */
addl %ax, %bx
popl %cx
loop 1b
puts(2f)
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
puts(1f)
halt:
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
1: /*
* 32bit mode
* set up %ds, %ss, %es
*/
movw $0x10, %eax
movl %ax, %ds
movl %ax, %ss
movl %ax, %es
movl %ax, %fs
movl %ax, %gs
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, $(LOADADDR + 0x20)
/* not reached */
/*
* Display string
*/
Lmessage:
data32
pushl %eax
cld
1:
lodsb # load a byte into %al
testb %al, %al
jz 1f
# call Lchr
.byte 0xe8
.word Lchr - . - 2
jmp 1b
#
# Lchr: write the character in %al to console
#
Lchr:
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
1:
data32
popl %eax
ret
.align 3
1: /* 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 . - 1b
.long BOOTREL + 1b
.globl _block_table, _block_count
_block_count:
.byte BLKCNT /* entries in _block_table */
_block_table:
.word 0 /* cylinder/sector */
.byte 0 /* head */
.byte 0 /* nsect */
# . = _block_table + BLKCNT*4
#ifdef BEMBR
. = 0x1b8
.space 4, 0 /* NT registry offset from James C. Cortilier III */
. = DOSPARTOFF
.globl _partitions
/* throw in a partition in case we are block0 as well */
. = DOSPARTOFF
.globl _partitions
/* throw in a partition in case we are block0 as well */
/* flag, head, sec, cyl, typ, ehead, esect, ecyl, start, len */
_partitions:
.byte DOSACTIVE, 0, 1, 0, DOSPTYP_OPENBSD, 255, 255, 255
.long 0,50000
.byte 0,0,0,0,0,0,0,0
.long 0,0
.byte 0,0,0,0,0,0,0,0
.long 0,0
.byte 0,0,0,0,0,0,0,0
.long 0,0
#endif
. = 0x200 - 2
/* a little signature */
.word DOSMBR_SIGNATURE
|