source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Initialization/Initialize.asm@ 551

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

Changes to XTIDE Universal BIOS:

  • DMA fixes by James Pearce.
  • Interrupt handlers are now installed before starting to detect drives (HotkeyBar require INT 40h handler for correct drive letters).
File size: 4.2 KB
Line 
1; Project name : XTIDE Universal BIOS
2; Description : Functions for initializing the BIOS.
3
4;
5; XTIDE Universal BIOS and Associated Tools
6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 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; Initializes the BIOS.
25; This function is called from main BIOS ROM search routine.
26;
27; Initialize_FromMainBiosRomSearch
28; Parameters:
29; Nothing
30; Returns:
31; Nothing
32; Corrupts registers:
33; Nothing
34;--------------------------------------------------------------------
35Initialize_FromMainBiosRomSearch: ; unused entrypoint ok
36 pushf ; To store IF
37 push ds
38
39%ifndef USE_186
40 push ax
41 LOAD_BDA_SEGMENT_TO ds, ax
42%else
43 push BYTE 0
44 pop ds
45%endif
46
47 sti ; Enable interrupts for keystrokes
48 test BYTE [BDA.bKBFlgs1], (1<<2) ; Clears ZF if CTRL is held down
49 jnz SHORT .SkipRomInitialization
50
51 ; Install INT 19h handler (boot loader) where drives are detected
52 mov WORD [BIOS_BOOT_LOADER_INTERRUPT_19h*4], Int19h_BootLoaderHandler
53 mov [BIOS_BOOT_LOADER_INTERRUPT_19h*4+2], cs
54 ;mov WORD [BIOS_BOOT_FAILURE_INTERRUPT_18h*4], Int19h_BootLoaderHandler
55 ;mov [BIOS_BOOT_FAILURE_INTERRUPT_18h*4+2], cs
56
57.SkipRomInitialization:
58%ifndef USE_186
59 pop ax
60%endif
61 pop ds
62 popf
63 retf
64
65
66;--------------------------------------------------------------------
67; Initializes the BIOS variables and detects IDE drives.
68;
69; Initialize_AndDetectDrives
70; Parameters:
71; ES: BDA Segment
72; Returns:
73; DS: RAMVARS segment
74; Corrupts registers:
75; All, except ES
76;--------------------------------------------------------------------
77Initialize_AndDetectDrives:
78 call DetectPrint_InitializeDisplayContext
79 call DetectPrint_RomFoundAtSegment
80 call RamVars_Initialize
81 call BootVars_Initialize
82 call Interrupts_InitializeInterruptVectors ; HotkeyBar requires INT 40h so install handlers before drive detection
83 call DetectDrives_FromAllIDEControllers
84 ; Fall to .StoreDptPointersToIntVectors
85
86
87%ifdef MODULE_COMPATIBLE_TABLES
88;--------------------------------------------------------------------
89; .StoreDptPointersToIntVectors
90; Parameters:
91; DS: RAMVARS segment
92; ES: BDA and interrupt vector segment (zero)
93; Returns:
94; Nothing
95; Corrupts registers:
96; AX, CX, DX, SI, DI
97;--------------------------------------------------------------------
98.StoreDptPointersToIntVectors:
99%ifndef USE_AT
100 test BYTE [cs:ROMVARS.wFlags], FLG_ROMVARS_FULLMODE
101 jz SHORT .CompatibleDPTsCreated ; Only Full operating mode has extra RAM to spare
102%endif
103
104 mov dl, 80h
105 call FindDPT_ForDriveNumberInDL ; DPT to DS:DI
106 jc SHORT .FindForDrive81h ; Store nothing if not our drive
107
108 call CompatibleDPT_CreateToAXSIforDriveDL
109 mov [es:HD0_DPT_POINTER_41h*4], si
110 mov [es:HD0_DPT_POINTER_41h*4+2], ax
111
112.FindForDrive81h:
113 mov dl, 81h
114 call FindDPT_ForDriveNumberInDL
115 jc SHORT .CompatibleDPTsCreated
116
117 call CompatibleDPT_CreateToAXSIforDriveDL
118 mov [es:HD1_DPT_POINTER_46h*4], si
119 mov [es:HD1_DPT_POINTER_46h*4+2], ax
120.CompatibleDPTsCreated:
121 ; Fall to .ResetDetectedDrives
122%endif ; MODULE_COMPATIBLE_TABLES
123
124
125;--------------------------------------------------------------------
126; .ResetDetectedDrives
127; Parameters:
128; DS: RAMVARS segment
129; ES: BDA and interrupt vector segment (zero)
130; Returns:
131; Nothing
132; Corrupts registers:
133; All, except DS and ES
134;--------------------------------------------------------------------
135.ResetDetectedDrives:
136 call Idepack_FakeToSSBP
137 call AH0h_ResetAllOurHardDisksAtTheEndOfDriveInitialization
138 add sp, BYTE SIZE_OF_IDEPACK_WITHOUT_INTPACK
139 ret
Note: See TracBrowser for help on using the repository browser.