/* * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights * Reserved. This file contains Original Code and/or Modifications of * Original Code as defined in and that are subject to the Apple Public * Source License Version 2.0 (the "License"). You may not use this file * except in compliance with the License. Please obtain a copy of the * License at http://www.apple.com/publicsource and read it before using * this file. * * The Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * Mach Operating System * Copyright (c) 1990 Carnegie-Mellon University * Copyright (c) 1989 Carnegie-Mellon University * All rights reserved. The CMU software License Agreement specifies * the terms and conditions for use and redistribution. */ /* * bootu() -- second stage boot. * * This function must be located at 0:BOOTER_ADDR and will be called * by boot1 or by NBP. */ #include #include "memory.h" .file "bootu.s" .data EXPORT(_chainbootdev) .byte 0x80 EXPORT(_chainbootflag) .byte 0x00 .text # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # Booter entry point. Called by the MBR booter. # This routine must be the first in the TEXT segment. # # Arguments: # DL = Boot drive number # SI = Pointer to partition table entry. # LABEL(bootu) .code16 pushw %cx # Save general purpose registers pushw %bx pushw %bp pushw %si pushw %di push %ds # Save DS, ES push %es movl %cs, %eax # Update segment registers. mov %ax, %ds # Set DS and ES to match CS mov %ax, %es xorw %bx, %bx movl %esi, %ebx # save si data32 \ call __switch_stack # Switch to new stack data32 \ call __real_to_prot # Enter protected mode. .code32 # We are now in 32-bit protected mode. # Transfer execution to C by calling boot(). pushl %ebx pushl %edx # bootdev call _boot start_boot2: xorl %edx, %edx movb _chainbootdev, %dl # Setup DL with the BIOS device number call __prot_to_real # Back to real mode. .code16 data32 \ call __switch_stack # Restore original stack pop %es # Restore original ES and DS pop %ds popw %di # Restore all general purpose registers popw %si # except EAX. popw %bp popw %bx popw %cx data32 \ ljmp $0x2000, $0x0200 # Jump to boot code already in memory .code32