source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19h.asm@ 413

Last change on this file since 413 was 413, checked in by aitotat@…, 13 years ago

Changes to XTIDE Universal BIOS:

  • Hotkeys are now displayed at least 5 seconds.
  • Optimized ROM initialization routine.
File size: 7.4 KB
Line 
1; Project name : XTIDE Universal BIOS
2; Description : Int 19h Handler (Boot Loader).
3
4;
5; XTIDE Universal BIOS and Associated Tools
6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
7;
8; This program is free software; you can redistribute it and/or modify
9; it under the terms of the GNU General Public License as published by
10; the Free Software Foundation; either version 2 of the License, or
11; (at your option) any later version.
12;
13; This program is distributed in the hope that it will be useful,
14; but WITHOUT ANY WARRANTY; without even the implied warranty of
15; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16; GNU General Public License for more details.
17; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
18;
19
20; Section containing code
21SECTION .text
22
23;--------------------------------------------------------------------
24; Int19h_BootLoaderHandler
25; Parameters:
26; Nothing
27; Returns:
28; Never returns (loads operating system)
29;--------------------------------------------------------------------
30Int19h_BootLoaderHandler:
31 sti ; Allow timer interrupts
32 LOAD_BDA_SEGMENT_TO es, ax ; Load BDA segment (zero) to ES
33 ; Fall to .PrepareBootLoaderStack
34
35
36;--------------------------------------------------------------------
37; Drive detection and boot menu use lots of stack so it is
38; wise to relocate stack. Otherwise something important from
39; interrupt vectors are likely corrupted, likely our own DPTs if
40; they are located to 30:0h.
41;
42; .PrepareBootLoaderStack
43; Parameters:
44; ES: BDA and interrupt vector segment (zero)
45; Returns:
46; Never returns (loads operating system)
47;--------------------------------------------------------------------
48.PrepareBootLoaderStack:
49 STORE_POST_STACK_POINTER
50 SWITCH_TO_BOOT_MENU_STACK
51 ; Fall to .InitializeDisplay
52
53
54;--------------------------------------------------------------------
55; .InitializeDisplay
56; Parameters:
57; ES: BDA and interrupt vector segment (zero)
58; Returns:
59; Never returns (loads operating system)
60;--------------------------------------------------------------------
61.InitializeDisplay:
62 ; Change display mode if necessary
63 mov ax, [cs:ROMVARS.wDisplayMode] ; AH 00h = Set Video Mode
64 cmp al, DEFAULT_TEXT_MODE
65 je SHORT .InitializeDisplayLibrary
66 int BIOS_VIDEO_INTERRUPT_10h
67.InitializeDisplayLibrary:
68 call DetectPrint_InitializeDisplayContext
69 ; Fall to .InitializeBiosAndDetectDrives
70
71
72;--------------------------------------------------------------------
73; .InitializeBiosAndDetectDrives
74; Parameters:
75; ES: BDA and interrupt vector segment (zero)
76; Returns:
77; DS: RAMVARS segment
78;--------------------------------------------------------------------
79%ifdef MODULE_HOTKEYS
80 call TimerTicks_ReadFromBdaToAX
81 add ax, MIN_TIME_TO_DISPLAY_HOTKEY_BAR
82 mov [es:BOOTVARS.hotkeyVars+HOTKEYVARS.wTimeToClose], ax
83%endif
84
85 call Initialize_AndDetectDrives
86
87%ifdef MODULE_HOTKEYS
88.WaitUntilTimeToCloseHotkeyBar:
89 call TimerTicks_ReadFromBdaToAX
90 cmp ax, [es:BOOTVARS.hotkeyVars+HOTKEYVARS.wTimeToClose]
91 jb SHORT .WaitUntilTimeToCloseHotkeyBar
92%endif
93 ; Fall to SelectDriveToBootFrom
94
95
96;--------------------------------------------------------------------
97; SelectDriveToBootFrom
98; Parameters:
99; DS: RAMVARS segment
100; ES: BDA and interrupt vector segment (zero)
101; Returns:
102; Never returns (loads operating system)
103;--------------------------------------------------------------------
104SelectDriveToBootFrom:
105%ifdef MODULE_HOTKEYS
106 call HotkeyBar_UpdateDuringDriveDetection
107
108%ifdef MODULE_BOOT_MENU
109 mov di, BOOTVARS.hotkeyVars+HOTKEYVARS.bScancode
110 cmp BYTE [es:di], BOOT_MENU_HOTKEY_SCANCODE
111 jne SHORT .DoNotDisplayBootMenu
112
113 ; Stop blinking the Boot Menu hotkey and display menu
114 mov BYTE [es:di], 0
115 call HotkeyBar_DrawToTopOfScreen
116 call BootMenu_DisplayAndStoreSelectionAsHotkey
117.DoNotDisplayBootMenu:
118%endif
119
120 ; Check if ROM boot (INT 18h) wanted
121 cmp BYTE [es:BOOTVARS.hotkeyVars+HOTKEYVARS.bScancode], ROM_BOOT_HOTKEY_SCANCODE
122 je SHORT JumpToBootSector_or_RomBoot ; CF clear so ROM boot
123
124 ; Get Primary boot drive number to DL
125 call HotkeyBar_GetPrimaryBootDriveNumberToDL
126%else
127 call GetPrimaryBootDriveToDLwhenNotUsingModuleHotkeys
128%endif ; MODULE_HOTKEYS
129
130 ; Try to boot from Primary boot drive (00h by default)
131 call TryToBootFromPrimaryOrSecondaryBootDevice
132 jc SHORT JumpToBootSector_or_RomBoot
133
134 ; Try to boot from Secondary boot device (80h by default)
135%ifdef MODULE_HOTKEYS
136 call HotkeyBar_GetSecondaryBootDriveNumberToDL
137%else
138 call GetPrimaryBootDriveToDLwhenNotUsingModuleHotkeys
139 xor dl, 80h
140%endif
141 call TryToBootFromPrimaryOrSecondaryBootDevice
142
143%ifdef MODULE_BOOT_MENU
144 ; Force Boot Menu hotkey to display boot menu
145 mov BYTE [es:BOOTVARS.hotkeyVars+HOTKEYVARS.bScancode], BOOT_MENU_HOTKEY_SCANCODE
146 jnc SHORT SelectDriveToBootFrom
147%endif
148 ; Fall to JumpToBootSector_or_RomBoot
149
150
151;--------------------------------------------------------------------
152; JumpToBootSector_or_RomBoot
153;
154; Switches back to the POST stack, clears the DS and ES registers,
155; and either jumps to the MBR (Master Boot Record) that was just read,
156; or calls the ROM's boot routine on interrupt 18.
157;
158; Parameters:
159; DL: Drive to boot from (translated, 00h or 80h)
160; CF: Set for Boot Sector Boot
161; Clear for ROM Boot
162; ES:BX: (if CF set) Ptr to boot sector
163;
164; Returns:
165; Never returns
166;--------------------------------------------------------------------
167JumpToBootSector_or_RomBoot:
168 mov cx, es ; Preserve MBR segment (can't push because of stack change)
169 mov ax, 0 ; NOTE: can't use XOR (LOAD_BDA_SEGMENT_TO) as it impacts CF
170 SWITCH_BACK_TO_POST_STACK
171
172; clear segment registers before boot sector or rom call
173 mov ds, ax
174 mov es, ax
175%ifdef USE_386
176 mov fs, ax
177 mov gs, ax
178%endif
179 jnc SHORT .romboot
180
181; jump to boot sector
182 push cx ; sgment address for MBR
183 push bx ; offset address for MBR
184 retf ; NOTE: DL is set to the drive number
185
186; Boot by calling INT 18h (ROM Basic of ROM DOS)
187.romboot:
188 int BIOS_BOOT_FAILURE_INTERRUPT_18h ; Never returns
189
190
191;--------------------------------------------------------------------
192; TryToBootFromPrimaryOrSecondaryBootDevice
193; Parameters
194; DL: Drive selected as boot device
195; DS: RAMVARS segment
196; ES: BDA and interrupt vector segment (zero)
197; Returns:
198; DL: Drive to boot from (translated, 00h or 80h)
199; CF: Set for Boot Sector Boot
200; Clear for ROM Boot
201; ES:BX: (if CF set) Ptr to boot sector
202; Corrupts registers:
203; AX, CX, DH, SI, DI, (DL if failed to read boot sector)
204;--------------------------------------------------------------------
205%ifndef MODULE_HOTKEYS
206TryToBootFromPrimaryOrSecondaryBootDevice EQU BootSector_TryToLoadFromDriveDL
207
208%else
209TryToBootFromPrimaryOrSecondaryBootDevice:
210 call DriveXlate_SetDriveToSwap
211 call DriveXlate_ToOrBack
212 jmp BootSector_TryToLoadFromDriveDL
213%endif
214
215
216;--------------------------------------------------------------------
217; GetPrimaryBootDriveToDLwhenNotUsingModuleHotkeys
218; Parameters
219; Nothing
220; Returns:
221; DL: Drive to boot from (00h or 80h)
222; Corrupts registers:
223; Nothing
224;--------------------------------------------------------------------
225%ifndef MODULE_HOTKEYS
226GetPrimaryBootDriveToDLwhenNotUsingModuleHotkeys:
227 mov dl, [cs:ROMVARS.bBootDrv]
228 and dl, 80h ; Only 00h and 80h allowed when not using MODULE_HOTKEYS
229 ret
230%endif
Note: See TracBrowser for help on using the repository browser.