source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Initialization/DetectDrives.asm@ 473

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

Changes to XTIDE Universal BIOS:

  • Large changes to prepare full XT-CF support (DMA not yet implemented and memory mapped transfers are not working).
File size: 9.6 KB
Line 
1; Project name : XTIDE Universal BIOS
2; Description : Functions for detecting drive for the BIOS.
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; Detects all IDE hard disks to be controlled by this BIOS.
25;
26; DetectDrives_FromAllIDEControllers
27; Parameters:
28; DS: RAMVARS segment
29; ES: BDA segment (zero)
30; Returns:
31; Nothing
32; Corrupts registers:
33; All (not segments)
34;--------------------------------------------------------------------
35DetectDrives_FromAllIDEControllers:
36 call RamVars_GetIdeControllerCountToCX
37 mov bp, ROMVARS.ideVars0 ; CS:BP now points to first IDEVARS
38
39.DriveDetectLoop: ; Loop through IDEVARS
40 push cx
41
42 mov cx, g_szDetectMaster
43 mov bh, MASK_DRVNHEAD_SET ; Select Master drive
44 call StartDetectionWithDriveSelectByteInBHandStringInCX ; Detect and create DPT + BOOTNFO
45
46 mov cx, g_szDetectSlave
47 mov bh, MASK_DRVNHEAD_SET | FLG_DRVNHEAD_DRV
48 call StartDetectionWithDriveSelectByteInBHandStringInCX
49
50 pop cx
51
52 add bp, BYTE IDEVARS_size ; Point to next IDEVARS
53
54%ifdef MODULE_SERIAL
55 jcxz .AddHardDisks ; Set to zero on .ideVarsSerialAuto iteration (if any)
56%endif
57 loop .DriveDetectLoop
58
59%ifdef MODULE_SERIAL
60;----------------------------------------------------------------------
61;
62; if serial drive detected, do not scan (avoids duplicate drives and isn't needed - we already have a connection)
63;
64 call FindDPT_ToDSDIforSerialDevice
65 jnc .AddHardDisks
66
67 mov bp, ROMVARS.ideVarsSerialAuto ; Point to our special IDEVARS structure, just for serial scans
68
69 mov al,[cs:ROMVARS.wFlags] ; Configurator set to always scan?
70 or al,[es:BDA.bKBFlgs1] ; Or, did the user hold down the ALT key?
71 and al,8 ; 8 = alt key depressed, same as FLG_ROMVARS_SERIAL_ALWAYSDETECT
72 jnz .DriveDetectLoop
73%endif
74
75.AddHardDisks:
76;----------------------------------------------------------------------
77;
78; Add in hard disks to BDA, finalize our Count and First variables
79;
80; Note that we perform the add to bHDCount and store bFirstDrv even if the count is zero.
81; This is done because we use the value of .bFirstDrv to know how many drives were in the system
82; at the time of boot, and to return that number on int13h/8h calls. Because the count is zero,
83; FindDPT_ForDriveNumber will not find any drives that are ours.
84;
85 mov cx, [RAMVARS.wDrvCntAndFlopCnt] ; Our count of hard disks
86
87 mov al, [es:BDA.bHDCount]
88 add cl, al ; Add our drives to the system count
89 mov [es:BDA.bHDCount], cl
90 or al, 80h ; Or in hard disk flag
91 mov [RAMVARS.bFirstDrv], al ; Store first drive number
92
93.AddFloppies:
94%ifdef MODULE_SERIAL_FLOPPY
95;----------------------------------------------------------------------
96;
97; Add in any emulated serial floppy drives, finalize our packed Count and First variables
98;
99 dec ch
100 mov al, ch
101 js .NoFloppies ; if no drives are present, we store 0ffh
102
103 call FloppyDrive_GetCountFromBIOS_or_BDA
104
105 push ax
106
107 add al, ch ; Add our drives to existing drive count
108 cmp al, 3 ; For BDA, max out at 4 drives (ours is zero based)
109 jb .MaxBDAFloppiesExceeded
110 mov al, 3
111.MaxBDAFloppiesExceeded:
112 eROR_IM al, 2 ; move to bits 6-7
113 inc ax ; low order bit, indicating floppy drive exists
114
115 mov ah, [es:BDA.wEquipment] ; Load Equipment WORD low byte
116 and ah, 03eh ; Mask off drive number and drives present bit
117 or al, ah ; Or in new values
118 mov [es:BDA.wEquipment], al ; and store
119
120 mov al, 1eh ; BDA pointer to Floppy DPT
121 mov si, AH8h_FloppyDPT
122 call Interrupts_InstallHandlerToVectorInALFromCSSI
123
124 pop ax
125
126 shr ch, 1 ; number of drives, 1 or 2 only, to CF flag (clear=1, set=2)
127 rcl al, 1 ; starting drive number in upper 7 bits, number of drives in low bit
128.NoFloppies:
129 mov [RAMVARS.xlateVars+XLATEVARS.bFlopCntAndFirst], al
130%endif
131
132 ret
133
134%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
135 %if FLG_ROMVARS_SERIAL_SCANDETECT != 8
136 %error "DetectDrives is currently coded to assume that FLG_ROMVARS_SERIAL_SCANDETECT is the same bit as the ALT key code in the BDA. Changes in the code will be needed if these values are no longer the same."
137 %endif
138%endif
139
140
141;--------------------------------------------------------------------
142; StartDetectionWithDriveSelectByteInBHandStringInCX
143; Parameters:
144; BH: Drive Select byte for Drive and Head Register
145; CX: Offset to "Master" or "Slave" string
146; CS:BP: Ptr to IDEVARS for the drive
147; DS: RAMVARS segment
148; ES: Zero (BDA segment)
149; Returns:
150; None
151; Corrupts registers:
152; AX, BL, CX, DX, SI, DI
153;--------------------------------------------------------------------
154StartDetectionWithDriveSelectByteInBHandStringInCX:
155 call DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP
156%ifdef MODULE_HOTKEYS
157 call HotkeyBar_UpdateDuringDriveDetection
158%endif
159 ; Fall to .AutodetectXTCFport or .ReadAtaInfoFromHardDisk
160
161
162%ifdef MODULE_8BIT_IDE
163;--------------------------------------------------------------------
164; .AutodetectXTCFport
165; Parameters:
166; BH: Drive Select byte for Drive and Head Register
167; CS:BP: Ptr to IDEVARS for the drive
168; DS: RAMVARS segment
169; ES: Zero (BDA segment)
170; Returns:
171; DX: Autodetected port (for devices that support autodetection)
172; Corrupts registers:
173; AX
174;--------------------------------------------------------------------
175.AutodetectXTCFport:
176 ; Detect port for XTCF
177 call DetectDrives_DoesIdevarsInCSBPbelongToXTCF
178 jne SHORT .SkipXTCFportDetection
179
180 ; XT-CF do not support slave drives so we can safely update port
181 ; for next drive (another XT-CF card on same system)
182.DetectNextPort:
183 call BootVars_GetNextXTCFportToDetectToDX
184 cmp dx, XTCF_BASE_PORT_4
185 ja SHORT DetectDrives_DriveNotFound ; XT-CF not found from any port
186
187 call AH1Eh_DetectXTCFwithBasePortInDX
188 jc SHORT .DetectNextPort ; XT-CF not found from this port
189.SkipXTCFportDetection:
190 ; Fall to .ReadAtaInfoFromHardDisk
191%endif ; MODULE_8BIT_IDE
192
193
194;--------------------------------------------------------------------
195; .ReadAtaInfoFromHardDisk
196; Parameters:
197; BH: Drive Select byte for Drive and Head Register
198; DX: Autodetected port (for devices that support autodetection)
199; CS:BP: Ptr to IDEVARS for the drive
200; DS: RAMVARS segment
201; ES: Zero (BDA segment)
202; Returns:
203; CF: Cleared if ATA-information read successfully
204; Set if any error
205; Corrupts registers:
206; AX, BL, CX, DX, SI, DI
207;--------------------------------------------------------------------
208.ReadAtaInfoFromHardDisk:
209 mov si, BOOTVARS.rgbAtaInfo ; ES:SI now points to ATA info location
210 push es
211 push si
212 push dx
213 push bx
214 call Device_IdentifyToBufferInESSIwithDriveSelectByteInBH
215 pop bx
216 pop dx
217 pop si
218 pop es
219 jnc SHORT CreateBiosTablesForHardDisk
220 ; Fall to .ReadAtapiInfoFromDrive
221
222.ReadAtapiInfoFromDrive: ; Not yet implemented
223 ;call ReadAtapiInfoFromDrive ; Assume CD-ROM
224 ;jnc SHORT _CreateBiosTablesForCDROM
225
226 ;jmp short DetectDrives_DriveNotFound
227;;; fall-through instead of previous jmp instruction
228;--------------------------------------------------------------------
229; DetectDrives_DriveNotFound
230; Parameters:
231; Nothing
232; Returns:
233; CF: Set (from BootMenuPrint_NullTerminatedStringFromCSSIandSetCF)
234; Corrupts registers:
235; AX, SI
236;--------------------------------------------------------------------
237DetectDrives_DriveNotFound:
238 mov si, g_szNotFound
239 jmp DetectPrint_NullTerminatedStringFromCSSIandSetCF
240
241
242;--------------------------------------------------------------------
243; CreateBiosTablesForHardDisk
244; Parameters:
245; BH: Drive Select byte for Drive and Head Register
246; DX: Autodetected port (for devices that support autodetection)
247; CS:BP: Ptr to IDEVARS for the drive
248; ES:SI Ptr to ATA information for the drive
249; DS: RAMVARS segment
250; ES: BDA segment
251; Returns:
252; Nothing
253; Corrupts registers:
254; AX, BX, CX, DX, SI, DI
255;--------------------------------------------------------------------
256CreateBiosTablesForHardDisk:
257 push bx
258 call AtaID_VerifyFromESSI
259 pop bx
260 jc SHORT DetectDrives_DriveNotFound
261 call CreateDPT_FromAtaInformation
262 jc SHORT DetectDrives_DriveNotFound
263 call DriveDetectInfo_CreateForHardDisk
264 jmp SHORT DetectPrint_DriveNameFromDrvDetectInfoInESBX
265
266
267%ifdef MODULE_8BIT_IDE
268;--------------------------------------------------------------------
269; DetectDrives_DoesIdevarsInCSBPbelongToXTCF
270; Parameters:
271; CS:BP: Ptr to IDEVARS for the drive
272; Returns:
273; ZF: Set if IDEVARS belongs to XT-CF device
274; Cleared if some other device
275; Corrupts registers:
276; AL
277;--------------------------------------------------------------------
278DetectDrives_DoesIdevarsInCSBPbelongToXTCF:
279 mov al, [cs:bp+IDEVARS.bDevice]
280 cmp al, DEVICE_8BIT_XTCF_PIO8
281 je SHORT .DeviceIsXTCF
282 cmp al, DEVICE_8BIT_XTCF_DMA
283 je SHORT .DeviceIsXTCF
284 cmp al, DEVICE_8BIT_XTCF_MEMMAP
285.DeviceIsXTCF:
286 ret
287%endif ; MODULE_8BIT_IDE
Note: See TracBrowser for help on using the repository browser.