1 ; Copyright (c) 1999-2002 Apple Computer, Inc. All rights reserved.
3 ; @APPLE_LICENSE_HEADER_START@
5 ; Portions Copyright (c) 1999-2002 Apple Computer, Inc. All Rights
6 ; Reserved. This file contains Original Code and/or Modifications of
7 ; Original Code as defined in and that are subject to the Apple Public
8 ; Source License Version 1.2 (the "License"). You may not use this file
9 ; except in compliance with the License. Please obtain a copy of the
10 ; License at http://www.apple.com/publicsource and read it before using
13 ; The Original Code and all software distributed under the License are
14 ; distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 ; EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 ; INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 ; FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
18 ; License for the specific language governing rights and limitations
21 ; @APPLE_LICENSE_HEADER_END@
25 ; A small boot sector program written in x86 assembly whose only
26 ; responsibility is to locate the booter partition, load the
27 ; booter into memory, and jump to the booter's entry point.
28 ; The booter partition can be a primary or a logical partition.
30 ; This boot loader can be placed at any of the following places:
31 ; 1. Master Boot Record (MBR)
32 ; 2. Boot sector of an extended partition
33 ; 3. Boot sector of a primary partition
34 ; 4. Boot sector of a logical partition
36 ; In order to coexist with a fdisk partition table (64 bytes), and
37 ; leave room for a two byte signature (0xAA55) in the end, boot0 is
38 ; restricted to 446 bytes (512 - 64 - 2). If boot0 did not have to
39 ; live in the MBR, then we would have 510 bytes to work with.
41 ; boot0 is always loaded by the BIOS or another booter to 0:7C00h.
43 ; This code is written for the NASM assembler.
44 ; nasm boot0.s -o boot0
48 ; Set to 1 to enable obscure debug messages.
53 ; Set to 1 to support loading the booter (boot2) from a
56 EXT_PART_SUPPORT EQU 1
61 kBoot0Segment EQU 0x0000
62 kBoot0Stack EQU 0xFFF0 ; boot0 stack pointer
63 kBoot0LoadAddr EQU 0x7C00 ; boot0 load address
64 kBoot0RelocAddr EQU 0xE000 ; boot0 relocated address
66 kMBRBuffer EQU 0x1000 ; MBR buffer address
67 kExtBuffer EQU 0x1200 ; EXT boot block buffer address
69 kPartTableOffset EQU 0x1be
70 kMBRPartTable EQU kMBRBuffer + kPartTableOffset
71 kExtPartTable EQU kExtBuffer + kPartTableOffset
73 kBoot1uSectors EQU 16 ; sectors to load for boot2
74 kBoot1uAddress EQU 0x0000 ; boot2 load address
75 kBoot1uSegment EQU 0x1000 ; boot2 load segment
77 kSectorBytes EQU 512 ; sector size in bytes
78 kBootSignature EQU 0xAA55 ; boot sector signature
80 kPartCount EQU 4 ; number of paritions per table
81 kPartTypeBoot EQU 0xab ; boot2 partition type
82 kPartTypeUFS EQU 0xa8 ;
83 kPartTypeExtDOS EQU 0x05 ; DOS extended partition type
84 kPartTypeExtWin EQU 0x0f ; Windows extended partition type
85 kPartTypeExtLinux EQU 0x85 ; Linux extended partition type
95 ; In memory variables.
97 ebios_lba dd 0 ; starting LBA of the intial extended partition.
98 ebios_present db 0 ; 1 if EBIOS is supported, 0 otherwise.
101 ; Format of fdisk partition entry.
103 ; The symbol 'part_size' is automatically defined as an `EQU'
104 ; giving the size of the structure.
107 .bootid: resb 1 ; bootable or not
108 .head: resb 1 ; starting head, sector, cylinder
111 .type: resb 1 ; partition type
112 .endhead resb 1 ; ending head, sector, cylinder
115 .lba: resd 1 ; starting lba
116 .sectors resd 1 ; size in sectors
122 %macro DebugCharMacro 1
128 %define DebugChar(x) DebugCharMacro x
133 ;--------------------------------------------------------------------------
134 ; Start of text segment.
138 ORG 0xE000 ; must match kBoot0RelocAddr
140 ;--------------------------------------------------------------------------
141 ; Boot code is loaded at 0:7C00h.
145 ; Set up the stack to grow down from kBoot0Segment:kBoot0Stack.
146 ; Interrupts should be off while the stack is being manipulated.
151 mov sp, kBoot0Stack ; sp <- top of stack
152 sti ; reenable interrupts
158 ; Relocate boot0 code.
160 mov si, kBoot0LoadAddr ; si <- source
161 mov di, kBoot0RelocAddr ; di <- destination
163 cld ; auto-increment SI and/or DI registers
164 mov cx, kSectorBytes/2 ; copy 256 words
165 repnz movsw ; repeat string move (word) operation
167 ; Code relocated, jump to start_reloc in relocated location.
171 ;--------------------------------------------------------------------------
172 ; Start execution from the relocated location.
178 mov dl, kDriveNumber ; starting BIOS drive number
188 ; Clear various flags in memory.
191 mov [ebios_lba], eax ; clear EBIOS LBA offset
192 mov [ebios_present], al ; clear EBIOS support flag
195 ; Since this code may not always reside in the MBR, always start by
196 ; loading the MBR to kMBRBuffer.
198 mov al, 1 ; load one sector
200 mov es, bx ; MBR load segment = 0
201 mov bx, kMBRBuffer ; MBR load address
202 mov si, bx ; pointer to fake partition entry
203 mov WORD [si], 0x0000 ; CHS DX: head = 0
204 mov WORD [si + 2], 0x0001 ; CHS CX: cylinder = 0, sector = 1
207 jc .next_drive ; MBR load error
210 ; Check if EBIOS is supported for this hard drive.
212 mov ah, 0x41 ; Function 0x41
213 mov bx, 0x55AA ; check signature
214 ; mov dl, kDriveNumber ; Drive number
218 ; If successful, the return values are as follows:
221 ; ah = major version of EBIOS extensions (0x21 = version 1.1)
224 ; cx = support bits. bit 0 must be set for function 0x42.
227 cmp bx, 0xAA55 ; check BX = 0xAA55
228 jnz .ebios_check_done
229 test cl, 0x01 ; check enhanced drive read support
230 setnz [ebios_present] ; EBIOS supported, set flag
231 DebugChar('E') ; EBIOS supported
235 ; Look for the booter partition in the MBR partition table,
236 ; which is at offset kMBRPartTable.
238 mov di, kMBRPartTable ; pointer to partition table
239 mov ah, 0 ; initial nesting level is 0
240 call find_boot ; will not return on success
243 ;; inc dl ; next drive number
244 ;; test dl, 0x84 ; went through all 4 drives?
245 ;; jz .loop ; not yet, loop again
247 mov si, boot_error_str
254 ;--------------------------------------------------------------------------
255 ; Find the boot partition and load the booter from the partition.
258 ; AH = recursion nesting level
259 ; DL = drive number (0x80 + unit number)
260 ; DI = pointer to fdisk partition table.
266 push cx ; preserve CX and SI
270 ; Check for boot block signature 0xAA55 following the 4 partition
273 cmp WORD [di + part_size * kPartCount], kBootSignature
274 jne .exit ; boot signature not found
276 mov si, di ; make SI a pointer to partition table
277 mov cx, kPartCount ; number of partition entries per table
281 ; First scan through the partition table looking for the boot
282 ; partition. Postpone walking the extended partition chain for
283 ; the second pass. Do not merge the two without changing the
284 ; buffering scheme used to store extended partition tables.
287 mov al, ah ; indent based on nesting level
289 mov al, [si + part.type] ; print partition type
293 cmp BYTE [si + part.type], kPartTypeUFS
295 cmp BYTE [si + part.bootid], kPartActive
299 ; Found boot partition, read boot1u image to memory.
301 mov al, kBoot1uSectors
302 mov bx, kBoot1uSegment
304 mov bx, kBoot1uAddress
306 jc .continue ; load error, keep looking?
310 ; Jump to boot1u. The drive number is already in register DL.
312 ; The first sector loaded from the disk is reserved for the boot
313 ; block (boot1), adjust the jump location by adding a sector offset.
315 jmp kBoot1uSegment:kBoot1uAddress + kSectorBytes
318 add si, part_size ; advance SI to next partition entry
319 loop .loop ; loop through all partition entries
323 ; No primary (or logical) boot partition found in the current
324 ; partition table. Restart and look for extended partitions.
326 mov si, di ; make SI a pointer to partition table
327 mov cx, kPartCount ; number of partition entries per table
331 mov al, [si + part.type] ; AL <- partition type
333 cmp al, kPartTypeExtDOS ; Extended DOS
336 cmp al, kPartTypeExtWin ; Extended Windows(95)
339 cmp al, kPartTypeExtLinux ; Extended Linux
344 ; Advance si to the next partition entry in the extended
347 add si, part_size ; advance SI to next partition entry
348 loop .ext_loop ; loop through all partition entries
349 jmp .exit ; boot partition not found
353 ; Setup the arguments for the load function call to bring the
354 ; extended partition table into memory.
355 ; Remember that SI points to the extended partition entry.
357 mov al, 1 ; read 1 sector
360 mov bx, kExtBuffer ; load extended boot sector
362 jc .ext_continue ; load error
365 ; The LBA address of all extended partitions is relative based
366 ; on the LBA address of the extended partition in the MBR, or
367 ; the extended partition at the head of the chain. Thus it is
368 ; necessary to save the LBA address of the first extended partition.
372 mov ebp, [si + part.lba]
377 ; Call find_boot recursively to scan through the extended partition
378 ; table. Load DI with a pointer to the extended table in memory.
380 inc ah ; increment recursion level
381 mov di, kExtPartTable ; partition table pointer
382 call find_boot ; recursion...
386 ; Since there is an "unwritten" rule that limits each partition table
387 ; to have 0 or 1 extended partitions, there is no point in looking for
388 ; any additional extended partition entries at this point. There is no
389 ; boot partition linked beyond the extended partition that was loaded
393 %endif ; EXT_PART_SUPPORT
397 ; Boot partition not found. Giving up.
403 ;--------------------------------------------------------------------------
404 ; load - Load one or more sectors from a partition.
407 ; AL = number of 512-byte sectors to read.
408 ; ES:BX = pointer to where the sectors should be stored.
409 ; DL = drive number (0x80 + unit number)
410 ; SI = pointer to the partition entry.
418 test BYTE [ebios_present], 1
422 mov cx, 5 ; load retry count
424 call read_lba ; use INT13/F42
429 mov cx, 5 ; load retry count
431 call read_chs ; use INT13/F2
439 ;--------------------------------------------------------------------------
440 ; read_chs - Read sectors from a partition using CHS addressing.
443 ; AL = number of 512-byte sectors to read.
444 ; ES:BX = pointer to where the sectors should be stored.
445 ; DL = drive number (0x80 + unit number)
446 ; SI = pointer to the partition entry.
453 pusha ; save all registers
456 ; Read the CHS start values from the partition entry.
458 mov dh, [ si + part.head ] ; drive head
459 mov cx, [ si + part.sect ] ; drive sector + cylinder
462 ; INT13 Func 2 - Read Disk Sectors
466 ; AL = number of sectors to read
467 ; CH = lowest 8 bits of the 10-bit cylinder number
468 ; CL = bits 6 & 7: cylinder number bits 8 and 9
469 ; bits 0 - 5: starting sector number (1-63)
470 ; DH = starting head number (0 to 255)
471 ; DL = drive number (80h + drive unit)
472 ; es:bx = pointer where to place sectors read from disk
475 ; AH = return status (sucess is 0)
476 ; AL = burst error length if ah=0x11 (ECC corrected)
480 ; mov dl, kDriveNumber
481 mov ah, 0x02 ; Func 2
485 DebugChar('r') ; indicate INT13/F2 error
488 ; Issue a disk reset on error.
489 ; Should this be changed to Func 0xD to skip the diskette controller
494 stc ; set carry to indicate error
500 ;--------------------------------------------------------------------------
501 ; read_lba - Read sectors from a partition using LBA addressing.
504 ; AL = number of 512-byte sectors to read (valid from 1-127).
505 ; ES:BX = pointer to where the sectors should be stored.
506 ; DL = drive number (0x80 + unit number)
507 ; SI = pointer to the partition entry.
514 pusha ; save all registers
515 mov bp, sp ; save current SP
518 ; Create the Disk Address Packet structure for the
519 ; INT13/F42 (Extended Read Sectors) on the stack.
522 ; push DWORD 0 ; offset 12, upper 32-bit LBA
523 push ds ; For sake of saving memory,
524 push ds ; push DS register, which is 0.
526 mov ecx, [ebios_lba] ; offset 8, lower 32-bit LBA
527 add ecx, [si + part.lba]
530 push es ; offset 6, memory segment
532 push bx ; offset 4, memory offset
534 xor ah, ah ; offset 3, must be 0
535 push ax ; offset 2, number of sectors
537 push WORD 16 ; offset 0-1, packet size
540 ; INT13 Func 42 - Extended Read Sectors
544 ; DL = drive number (80h + drive unit)
545 ; DS:SI = pointer to Disk Address Packet
548 ; AH = return status (sucess is 0)
552 ; Packet offset 2 indicates the number of sectors read
555 ; mov dl, kDriveNumber
562 DebugChar('R') ; indicate INT13/F42 error
565 ; Issue a disk reset on error.
566 ; Should this be changed to Func 0xD to skip the diskette controller
571 stc ; set carry to indicate error
574 mov sp, bp ; restore SP
578 ;--------------------------------------------------------------------------
579 ; Write a string to the console.
582 ; DS:SI pointer to a NULL terminated string.
588 mov bx, 1 ; BH=0, BL=1 (blue)
589 cld ; increment SI after each lodsb call
591 lodsb ; load a byte from DS:SI into AL
592 cmp al, 0 ; Is it a NULL?
593 je .exit ; yes, all done
594 mov ah, 0xE ; INT10 Func 0xE
595 int 0x10 ; display byte in tty mode
602 ;--------------------------------------------------------------------------
603 ; Write a ASCII character to the console.
606 ; AL = ASCII character.
610 mov bx, 1 ; BH=0, BL=1 (blue)
611 mov ah, 0x0e ; bios INT 10, Function 0xE
612 int 0x10 ; display byte in tty mode
616 ;--------------------------------------------------------------------------
617 ; Write a variable number of spaces to the console.
620 ; AL = number to spaces.
625 mov cl, al ; use CX as the loop counter
626 mov al, ' ' ; character to print
635 ;--------------------------------------------------------------------------
636 ; Write the byte value to the console in hex.
639 ; AL = Value to be displayed in hex.
644 call print_nibble ; display upper nibble
646 call print_nibble ; display lower nibble
648 mov al, 10 ; carriage return
659 add al, 'A' - '9' - 1
666 ;--------------------------------------------------------------------------
667 ; NULL terminated strings.
669 boot_error_str db 10, 13, 'Error', 0
671 ;--------------------------------------------------------------------------
672 ; Pad the rest of the 512 byte sized booter with zeroes. The last
673 ; two bytes is the mandatory boot sector signature.
675 ; If the booter code becomes too large, then nasm will complain
676 ; that the 'times' argument is negative.
679 ;; times 446-($-$$) db 0
682 ;--------------------------------------------------------------------------
683 ; Put fake partition entries for the bootable floppy image
685 part1bootid db 0x80 ; first partition active
686 part1head db 0x00 ; head #
687 part1sect db 0x02 ; sector # (low 6 bits)
688 part1cyl db 0x00 ; cylinder # (+ high 2 bits of above)
689 part1systid db 0xab ; Apple boot partition
690 times 3 db 0x00 ; ignore head/cyl/sect #'s
691 part1relsect dd 0x00000001 ; start at sector 1
692 part1numsect dd 0x00000080 ; 64K for booter
693 part2bootid db 0x00 ; not active
694 times 3 db 0x00 ; ignore head/cyl/sect #'s
695 part2systid db 0xa8 ; Apple UFS partition
696 times 3 db 0x00 ; ignore head/cyl/sect #'s
697 part2relsect dd 0x00000082 ; start after booter
698 ; part2numsect dd 0x00000abe ; 1.44MB - 65K
699 part2numsect dd 0x000015fe ; 2.88MB - 65K
703 times 510-($-$$) db 0