1994-10-27 07:14:23 +03:00
|
|
|
/* $NetBSD: start.S,v 1.9 1994/10/27 04:14:40 cgd Exp $ */
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
/*
|
|
|
|
* Ported to boot 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
|
|
|
|
*
|
|
|
|
* Mach Operating System
|
|
|
|
* Copyright (c) 1992, 1991 Carnegie Mellon University
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and its
|
|
|
|
* documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie Mellon
|
|
|
|
* the rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright 1988, 1989, 1990, 1991, 1992
|
|
|
|
by Intel Corporation, Santa Clara, California.
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and
|
|
|
|
its documentation for any purpose and without fee is hereby
|
|
|
|
granted, provided that the above copyright notice appears in all
|
|
|
|
copies and that both the copyright notice and this permission notice
|
|
|
|
appear in supporting documentation, and that the name of Intel
|
|
|
|
not be used in advertising or publicity pertaining to distribution
|
|
|
|
of the software without specific, written prior permission.
|
|
|
|
|
|
|
|
INTEL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE
|
|
|
|
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
|
|
|
|
IN NO EVENT SHALL INTEL BE LIABLE FOR ANY SPECIAL, INDIRECT, OR
|
|
|
|
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,
|
|
|
|
NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
|
|
WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include "asm.h"
|
|
|
|
|
|
|
|
.file "start.s"
|
|
|
|
|
1994-02-04 09:07:31 +03:00
|
|
|
BOOTSEG = 0x0100 # boot will be loaded here (below 640K)
|
|
|
|
BOOTSTACK = 0xfffc # boot stack
|
1993-03-21 21:04:42 +03:00
|
|
|
SIGNATURE = 0xaa55
|
1993-07-11 16:02:17 +04:00
|
|
|
LOADSZ = 15 # size of unix boot
|
1993-03-21 21:04:42 +03:00
|
|
|
PARTSTART = 0x1be # starting address of partition table
|
|
|
|
NUMPART = 4 # number of partitions in partition table
|
|
|
|
PARTSZ = 16 # each partition table entry is 16 bytes
|
|
|
|
BSDPART = 0xA5 # value of boot_ind, means bootable partition
|
|
|
|
BOOTABLE = 0x80 # value of boot_ind, means bootable partition
|
|
|
|
|
|
|
|
.text
|
1993-10-18 17:41:31 +03:00
|
|
|
.globl start
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
ENTRY(boot1)
|
1993-10-18 17:41:31 +03:00
|
|
|
start:
|
1993-07-11 16:02:17 +04:00
|
|
|
# start (aka boot1) is loaded at 0x0:0x7c00 but we want 0x7c0:0
|
|
|
|
# ljmp to the next instruction to adjust %cs
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
1993-10-18 17:41:31 +03:00
|
|
|
ljmp $0x7c0, $start1
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-10-18 17:41:31 +03:00
|
|
|
start1:
|
1993-03-21 21:04:42 +03:00
|
|
|
# set up %ds
|
1994-02-04 02:20:25 +03:00
|
|
|
movl %cs, %ax
|
|
|
|
movl %ax, %ds
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
# set up %ss and %esp
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $BOOTSEG, %eax
|
|
|
|
movl %ax, %ss
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $BOOTSTACK, %esp
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
/*** set up %es, (where we will load boot2 to) ***/
|
1994-02-04 02:20:25 +03:00
|
|
|
movl %ax, %es
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $one, %esi
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
call message
|
|
|
|
#endif
|
|
|
|
|
1993-07-11 16:02:17 +04:00
|
|
|
# bootstrap passes us drive number in %dl
|
1993-03-21 21:04:42 +03:00
|
|
|
cmpb $0x80, %dl
|
|
|
|
data32
|
1993-07-11 16:02:17 +04:00
|
|
|
jae hd
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
fd:
|
|
|
|
# reset the disk system
|
|
|
|
#ifdef DEBUG
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $two, %esi
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
call message
|
|
|
|
#endif
|
|
|
|
movb $0x0, %ah
|
|
|
|
int $0x13
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $0x0001, %ecx # cyl 0, sector 1
|
1993-07-11 16:02:17 +04:00
|
|
|
movb $0, %dh # head
|
1993-03-21 21:04:42 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $three, %esi
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
call message
|
|
|
|
#endif
|
1993-07-11 16:02:17 +04:00
|
|
|
data32
|
|
|
|
jmp load
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
hd: /**** load sector 0 into the BOOTSEG ****/
|
|
|
|
#ifdef DEBUG
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $four, %esi
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
call message
|
|
|
|
#endif
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $0x0201, %eax
|
|
|
|
xorl %ebx, %ebx # %bx = 0
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $0x0001, %ecx
|
1993-03-21 21:04:42 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $five, %esi
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
call message
|
|
|
|
#endif
|
|
|
|
data32
|
|
|
|
andl $0xff, %edx
|
|
|
|
/*mov $0x0080, %edx*/
|
|
|
|
int $0x13
|
|
|
|
data32
|
|
|
|
jb read_error
|
|
|
|
|
1993-07-11 16:02:17 +04:00
|
|
|
/***# find the first 386BSD partition *****/
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $PARTSTART, %ebx
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $NUMPART, %ecx
|
1993-03-21 21:04:42 +03:00
|
|
|
again:
|
1993-07-11 16:02:17 +04:00
|
|
|
addr32
|
1993-03-21 21:04:42 +03:00
|
|
|
movb %es:4(%ebx), %al
|
|
|
|
cmpb $BSDPART, %al
|
|
|
|
data32
|
|
|
|
je found
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
addl $PARTSZ, %ebx
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
loop again
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $enoboot, %esi
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
jmp err_stop
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
# BIOS call "INT 0x13 Function 0x2" to read sectors from disk into memory
|
|
|
|
# Call with %ah = 0x2
|
|
|
|
# %al = number of sectors
|
|
|
|
# %ch = cylinder
|
|
|
|
# %cl = sector
|
|
|
|
# %dh = head
|
|
|
|
# %dl = drive (0x80 for hard disk, 0x0 for floppy disk)
|
|
|
|
# %es:%bx = segment:offset of buffer
|
|
|
|
# Return:
|
|
|
|
# %al = 0x0 on success; err code on failure
|
|
|
|
*/
|
|
|
|
|
|
|
|
found:
|
1993-07-11 16:02:17 +04:00
|
|
|
addr32
|
1993-03-21 21:04:42 +03:00
|
|
|
movb %es:1(%ebx), %dh /* head */
|
1993-07-11 16:02:17 +04:00
|
|
|
addr32
|
|
|
|
movl %es:2(%ebx), %ecx /*sect, cyl (+ 2 bytes junk in top word) */
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
load:
|
|
|
|
movb $0x2, %ah /* function 2 */
|
|
|
|
movb $LOADSZ, %al /* number of blocks */
|
1994-02-04 02:20:25 +03:00
|
|
|
xorl %ebx, %ebx /* %bx = 0, put it at 0 in the BOOTSEG */
|
1993-03-21 21:04:42 +03:00
|
|
|
int $0x13
|
|
|
|
data32
|
|
|
|
jb read_error
|
|
|
|
|
|
|
|
# ljmp to the second stage boot loader (boot2).
|
|
|
|
# After ljmp, %cs is BOOTSEG and boot1 (512 bytes) will be used
|
|
|
|
# as an internal buffer "intbuf".
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $six, %esi
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
call message
|
|
|
|
#endif
|
|
|
|
data32
|
1993-07-11 16:02:17 +04:00
|
|
|
ljmp $BOOTSEG, $ EXT(boot2)
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# read_error
|
|
|
|
#
|
|
|
|
|
|
|
|
read_error:
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $eread, %esi
|
1993-03-21 21:04:42 +03:00
|
|
|
err_stop:
|
|
|
|
data32
|
|
|
|
call message
|
|
|
|
data32
|
|
|
|
jmp stop
|
|
|
|
|
|
|
|
#
|
|
|
|
# message: write the error message in %ds:%esi to console
|
|
|
|
#
|
|
|
|
|
|
|
|
message:
|
1993-07-11 16:02:17 +04:00
|
|
|
/*
|
1993-03-21 21:04:42 +03:00
|
|
|
# Use BIOS "int 10H Function 0Eh" to write character in teletype mode
|
|
|
|
# %ah = 0xe %al = character
|
|
|
|
# %bh = page %bl = foreground color (graphics modes)
|
1993-07-11 16:02:17 +04:00
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
pushl %eax
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
pushl %ebx
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
movl $0x0001, %ebx
|
1993-03-21 21:04:42 +03:00
|
|
|
cld
|
|
|
|
|
|
|
|
nextb:
|
|
|
|
lodsb # load a byte into %al
|
|
|
|
cmpb $0x0, %al
|
|
|
|
data32
|
|
|
|
je done
|
|
|
|
movb $0xe, %ah
|
|
|
|
int $0x10 # display a byte
|
|
|
|
data32
|
|
|
|
jmp nextb
|
|
|
|
done:
|
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
popl %ebx
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
1994-02-04 02:20:25 +03:00
|
|
|
popl %eax
|
1993-03-21 21:04:42 +03:00
|
|
|
data32
|
|
|
|
ret
|
|
|
|
|
1994-02-04 02:20:25 +03:00
|
|
|
stop:
|
|
|
|
cli
|
|
|
|
hlt
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
/* error messages */
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
1994-02-04 08:44:20 +03:00
|
|
|
one: .asciz "1\r\n"
|
|
|
|
two: .asciz "2\r\n"
|
|
|
|
three: .asciz "3\r\n"
|
|
|
|
four: .asciz "4\r\n"
|
|
|
|
five: .asciz "5\r\n"
|
|
|
|
six: .asciz "6\r\n"
|
|
|
|
seven: .asciz "7\r\n"
|
1993-03-21 21:04:42 +03:00
|
|
|
#endif DEBUG
|
1994-02-04 08:44:20 +03:00
|
|
|
eread: .asciz "Read error\r\n"
|
|
|
|
enoboot: .asciz "No bootable partition\r\n"
|
1993-03-21 21:04:42 +03:00
|
|
|
endofcode:
|
|
|
|
/* throw in a partition in case we are block0 as well */
|
1993-07-11 16:02:17 +04:00
|
|
|
/* flag, head, sec, cyl, typ, ehead, esect, ecyl, start, len */
|
1993-03-21 21:04:42 +03:00
|
|
|
. = EXT(boot1) + PARTSTART
|
|
|
|
.byte 0x0,0,0,0,0,0,0,0
|
|
|
|
.long 0,0
|
|
|
|
.byte 0x0,0,0,0,0,0,0,0
|
|
|
|
.long 0,0
|
|
|
|
.byte 0x0,0,0,0,0,0,0,0
|
|
|
|
.long 0,0
|
|
|
|
.byte BOOTABLE,0,1,0,BSDPART,255,255,255
|
|
|
|
.long 0,50000
|
|
|
|
/* the last 2 bytes in the sector 0 contain the signature */
|
|
|
|
. = EXT(boot1) + 0x1fe
|
|
|
|
.value SIGNATURE
|
|
|
|
ENTRY(disklabel)
|
|
|
|
. = EXT(boot1) + 0x400
|