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

Last change on this file since 565 was 558, checked in by krille_n_@…, 11 years ago

Changes:

  • Building the BIOS Drive Information Tool now works again.
  • Moved all XT-CF related code to MODULE_8BIT_IDE_ADVANCED. I don't see how an XT-CF card could work without *_ADVANCED anyway but if I'm wrong, feel free to undo this. Note! The autodetection code in XTIDECFG has NOT been changed to reflect this (still relies on MODULE_8BIT_IDE).
  • Optimizations and fixes in general.
File size: 8.5 KB
RevLine 
[150]1; Project name : XTIDE Universal BIOS
[3]2; Description : Functions for detecting drive for the BIOS.
3
[376]4;
[491]5; XTIDE Universal BIOS and Associated Tools
[526]6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
[376]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.
[491]12;
[376]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
[491]16; GNU General Public License for more details.
[376]17; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
[491]18;
[376]19
[3]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:
[33]36 call RamVars_GetIdeControllerCountToCX
[3]37 mov bp, ROMVARS.ideVars0 ; CS:BP now points to first IDEVARS
[200]38
39.DriveDetectLoop: ; Loop through IDEVARS
[233]40 push cx
41
42 mov cx, g_szDetectMaster
43 mov bh, MASK_DRVNHEAD_SET ; Select Master drive
[294]44 call StartDetectionWithDriveSelectByteInBHandStringInCX ; Detect and create DPT + BOOTNFO
[233]45
46 mov cx, g_szDetectSlave
[242]47 mov bh, MASK_DRVNHEAD_SET | FLG_DRVNHEAD_DRV
[294]48 call StartDetectionWithDriveSelectByteInBHandStringInCX
[242]49
[233]50 pop cx
51
52 add bp, BYTE IDEVARS_size ; Point to next IDEVARS
53
[242]54%ifdef MODULE_SERIAL
[262]55 jcxz .AddHardDisks ; Set to zero on .ideVarsSerialAuto iteration (if any)
[196]56%endif
[3]57 loop .DriveDetectLoop
[203]58
[242]59%ifdef MODULE_SERIAL
[258]60;----------------------------------------------------------------------
[203]61;
[233]62; if serial drive detected, do not scan (avoids duplicate drives and isn't needed - we already have a connection)
[203]63;
[492]64 call FindDPT_ToDSDIforSerialDevice ; does not modify AX
[262]65 jnc .AddHardDisks
[233]66
[242]67 mov bp, ROMVARS.ideVarsSerialAuto ; Point to our special IDEVARS structure, just for serial scans
68
[492]69%ifdef MODULE_HOTKEYS
70 cmp al, COM_DETECT_HOTKEY_SCANCODE ; Set by last call to HotkeyBar_UpdateDuringDriveDetection above
[505]71 je .DriveDetectLoop
72%endif
[492]73
[200]74 mov al,[cs:ROMVARS.wFlags] ; Configurator set to always scan?
75 or al,[es:BDA.bKBFlgs1] ; Or, did the user hold down the ALT key?
76 and al,8 ; 8 = alt key depressed, same as FLG_ROMVARS_SERIAL_ALWAYSDETECT
[242]77 jnz .DriveDetectLoop
[233]78%endif
[203]79
[262]80.AddHardDisks:
[258]81;----------------------------------------------------------------------
82;
[262]83; Add in hard disks to BDA, finalize our Count and First variables
[258]84;
[269]85; Note that we perform the add to bHDCount and store bFirstDrv even if the count is zero.
86; This is done because we use the value of .bFirstDrv to know how many drives were in the system
87; at the time of boot, and to return that number on int13h/8h calls. Because the count is zero,
88; FindDPT_ForDriveNumber will not find any drives that are ours.
89;
[262]90 mov cx, [RAMVARS.wDrvCntAndFlopCnt] ; Our count of hard disks
[258]91
[262]92 mov al, [es:BDA.bHDCount]
93 add cl, al ; Add our drives to the system count
[294]94 mov [es:BDA.bHDCount], cl
95 or al, 80h ; Or in hard disk flag
96 mov [RAMVARS.bFirstDrv], al ; Store first drive number
[262]97
[294]98.AddFloppies:
99%ifdef MODULE_SERIAL_FLOPPY
[262]100;----------------------------------------------------------------------
101;
102; Add in any emulated serial floppy drives, finalize our packed Count and First variables
103;
104 dec ch
105 mov al, ch
[294]106 js .NoFloppies ; if no drives are present, we store 0ffh
[262]107
[258]108 call FloppyDrive_GetCountFromBIOS_or_BDA
109
110 push ax
111
[262]112 add al, ch ; Add our drives to existing drive count
[258]113 cmp al, 3 ; For BDA, max out at 4 drives (ours is zero based)
[294]114 jb .MaxBDAFloppiesExceeded
115 mov al, 3
[258]116.MaxBDAFloppiesExceeded:
117 eROR_IM al, 2 ; move to bits 6-7
118 inc ax ; low order bit, indicating floppy drive exists
119
[294]120 mov ah, [es:BDA.wEquipment] ; Load Equipment WORD low byte
[258]121 and ah, 03eh ; Mask off drive number and drives present bit
122 or al, ah ; Or in new values
123 mov [es:BDA.wEquipment], al ; and store
124
125 mov al, 1eh ; BDA pointer to Floppy DPT
126 mov si, AH8h_FloppyDPT
127 call Interrupts_InstallHandlerToVectorInALFromCSSI
128
129 pop ax
130
[262]131 shr ch, 1 ; number of drives, 1 or 2 only, to CF flag (clear=1, set=2)
[258]132 rcl al, 1 ; starting drive number in upper 7 bits, number of drives in low bit
[294]133.NoFloppies:
[258]134 mov [RAMVARS.xlateVars+XLATEVARS.bFlopCntAndFirst], al
[263]135%endif
[294]136
[558]137%ifdef MODULE_8BIT_IDE_ADVANCED
138NoSlaveDriveAvailable:
139%endif
[3]140 ret
141
[294]142%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
[261]143 %if FLG_ROMVARS_SERIAL_SCANDETECT != 8
144 %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."
145 %endif
[199]146%endif
147
[242]148
[3]149;--------------------------------------------------------------------
[294]150; StartDetectionWithDriveSelectByteInBHandStringInCX
[3]151; Parameters:
152; BH: Drive Select byte for Drive and Head Register
[233]153; CX: Offset to "Master" or "Slave" string
[3]154; CS:BP: Ptr to IDEVARS for the drive
155; DS: RAMVARS segment
156; ES: Zero (BDA segment)
157; Returns:
[558]158; Nothing
[3]159; Corrupts registers:
[473]160; AX, BL, CX, DX, SI, DI
[3]161;--------------------------------------------------------------------
[294]162StartDetectionWithDriveSelectByteInBHandStringInCX:
[558]163%ifdef MODULE_8BIT_IDE_ADVANCED
164 mov al, [cs:bp+IDEVARS.bDevice]
165 cmp al, DEVICE_8BIT_XTCF_PIO8
166 jb SHORT .DoNotSkipSlaveDriveDetection
167 cmp al, DEVICE_8BIT_XTCF_DMA
168 ja SHORT .DoNotSkipSlaveDriveDetection
[473]169
[474]170 ; XT-CF do not support slave drives so skip detection
171 test bh, FLG_DRVNHEAD_DRV
172 jnz SHORT NoSlaveDriveAvailable
[558]173.DoNotSkipSlaveDriveDetection:
174%endif ; MODULE_8BIT_IDE_ADVANCED
[474]175
176 call DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP
[558]177
[474]178%ifdef MODULE_HOTKEYS
179 call HotkeyBar_UpdateDuringDriveDetection
[505]180%endif
[474]181 ; Fall to .ReadAtaInfoFromHardDisk
[473]182
[474]183
[3]184;--------------------------------------------------------------------
[120]185; .ReadAtaInfoFromHardDisk
[3]186; Parameters:
187; BH: Drive Select byte for Drive and Head Register
[473]188; DX: Autodetected port (for devices that support autodetection)
[3]189; CS:BP: Ptr to IDEVARS for the drive
190; DS: RAMVARS segment
191; ES: Zero (BDA segment)
192; Returns:
193; CF: Cleared if ATA-information read successfully
194; Set if any error
195; Corrupts registers:
[150]196; AX, BL, CX, DX, SI, DI
[3]197;--------------------------------------------------------------------
[120]198.ReadAtaInfoFromHardDisk:
[150]199 mov si, BOOTVARS.rgbAtaInfo ; ES:SI now points to ATA info location
200 push es
201 push si
[473]202 push dx
[150]203 push bx
204 call Device_IdentifyToBufferInESSIwithDriveSelectByteInBH
205 pop bx
[473]206 pop dx
[150]207 pop si
208 pop es
[120]209 jnc SHORT CreateBiosTablesForHardDisk
210 ; Fall to .ReadAtapiInfoFromDrive
[3]211
[120]212.ReadAtapiInfoFromDrive: ; Not yet implemented
213 ;call ReadAtapiInfoFromDrive ; Assume CD-ROM
214 ;jnc SHORT _CreateBiosTablesForCDROM
[242]215
[203]216 ;jmp short DetectDrives_DriveNotFound
217;;; fall-through instead of previous jmp instruction
218;--------------------------------------------------------------------
219; DetectDrives_DriveNotFound
220; Parameters:
221; Nothing
222; Returns:
[505]223; CF: Set (from DetectPrint_NullTerminatedStringFromCSSIandSetCF)
[203]224; Corrupts registers:
225; AX, SI
226;--------------------------------------------------------------------
[242]227DetectDrives_DriveNotFound:
[203]228 mov si, g_szNotFound
[386]229 jmp DetectPrint_NullTerminatedStringFromCSSIandSetCF
[3]230
[120]231
[3]232;--------------------------------------------------------------------
[98]233; CreateBiosTablesForHardDisk
[3]234; Parameters:
235; BH: Drive Select byte for Drive and Head Register
[473]236; DX: Autodetected port (for devices that support autodetection)
[3]237; CS:BP: Ptr to IDEVARS for the drive
[150]238; ES:SI Ptr to ATA information for the drive
[3]239; DS: RAMVARS segment
[397]240; ES: BDA segment
[3]241; Returns:
[98]242; Nothing
[3]243; Corrupts registers:
[98]244; AX, BX, CX, DX, SI, DI
[3]245;--------------------------------------------------------------------
[98]246CreateBiosTablesForHardDisk:
[441]247 push bx
248 call AtaID_VerifyFromESSI
249 pop bx
250 jc SHORT DetectDrives_DriveNotFound
[3]251 call CreateDPT_FromAtaInformation
[196]252 jc SHORT DetectDrives_DriveNotFound
[397]253 call DriveDetectInfo_CreateForHardDisk
254 jmp SHORT DetectPrint_DriveNameFromDrvDetectInfoInESBX
Note: See TracBrowser for help on using the repository browser.