source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/AH9h_HInit.asm@ 462

Last change on this file since 462 was 445, checked in by krille_n_@…, 12 years ago

Changes:

  • A speed optimization to the eSHL_IM macro for 386 and higher. This change breaks emulation in the sense that the macro will fail when given a memory operand as the first parameter.
  • Memory_SumCXbytesFromESSItoAL now returns with the zero flag set/cleared according to the result.
  • Unrolled all the 8 bit READ transfer loops to do 16 bytes per iteration. Added a new macro (UNROLL_SECTORS_IN_CX_TO_OWORDS) as part of it. Size wise this is expensive but I think it should be worth the ROM space. The WRITE transfer loops were left as is since writes are rare anyway (<10% of all disk I/O IIRC).
  • Minor optimizations and fixes here and there.
File size: 8.6 KB
RevLine 
[148]1; Project name : XTIDE Universal BIOS
[3]2; Description : Int 13h function AH=9h, Initialize Drive Parameters.
3
[376]4;
[399]5; XTIDE Universal BIOS and Associated Tools
[376]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.
[399]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
[399]16; GNU General Public License for more details.
[376]17; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
[399]18;
[376]19
[3]20; Section containing code
21SECTION .text
22
23;--------------------------------------------------------------------
[410]24; STORE_ERROR_FLAG_TO_DPT
25; Parameters:
26; %1: Error flag to set
27; AH: BIOS Error Code
28; DS:DI: Ptr to DPT
29; CF: Set if error code in AH
30; Returns:
31; CF: Clear if no error
32; Set if error flag was set
33; Corrupts registers:
34; Nothing
35;--------------------------------------------------------------------
36%macro STORE_ERROR_FLAG_TO_DPT 1
37 mov al, %1
38 call SetErrorFlagFromALwithErrorCodeInAH
39%endmacro
40
41
42;--------------------------------------------------------------------
[3]43; Int 13h function AH=9h, Initialize Drive Parameters.
44;
45; AH9h_HandlerForInitializeDriveParameters
46; Parameters:
[148]47; DL: Translated Drive number
48; DS:DI: Ptr to DPT (in RAMVARS segment)
[150]49; SS:BP: Ptr to IDEPACK
50; Returns with INTPACK:
[3]51; AH: Int 13h return status
[294]52; CF: 0 if successful, 1 if error
[3]53;--------------------------------------------------------------------
54AH9h_HandlerForInitializeDriveParameters:
[84]55%ifndef USE_186
[3]56 call AH9h_InitializeDriveForUse
[148]57 jmp Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
[84]58%else
[148]59 push Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
[162]60 ; Fall to AH9h_InitializeDriveForUse
[84]61%endif
[3]62
63
64;--------------------------------------------------------------------
[399]65; Initialize drive to be ready for use.
[3]66;
67; AH9h_InitializeDriveForUse
68; Parameters:
[148]69; DS:DI: Ptr to DPT (in RAMVARS segment)
[150]70; SS:BP: Ptr to IDEPACK
[3]71; Returns:
72; AH: Int 13h return status
[294]73; CF: 0 if successful, 1 if error
[3]74; Corrupts registers:
[363]75; AL, BX, CX, DX
[3]76;--------------------------------------------------------------------
77AH9h_InitializeDriveForUse:
[410]78 xor ax, ax ; Clear AH to assume no errors
[3]79
[400]80%ifdef MODULE_ADVANCED_ATA
[399]81 ; Clear Initialization Error flags from DPT
[422]82 mov [di+DPT.bInitError], al
[400]83%endif
[399]84
[258]85%ifdef MODULE_SERIAL
[399]86 ; No need to do this for serial devices
87 test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_SERIAL_DEVICE ; Clears CF
88 jz SHORT .ContinueInitialization
89 ret ; With AH and CF cleared
[410]90.ContinueInitialization:
[258]91%endif
[294]92
[399]93 push es
94 push si
95
[410]96
[399]97;;; SelectDrive
[3]98 ; Try to select drive and wait until ready
[421]99 call AccessDPT_GetDriveSelectByteForOldInt13hToAL
[150]100 mov [bp+IDEPACK.bDrvAndHead], al
101 call Device_SelectDrive
[410]102 STORE_ERROR_FLAG_TO_DPT FLG_INITERROR_FAILED_TO_SELECT_DRIVE
103 jnc SHORT .ContinueInitializationSinceDriveSelectedSuccesfully
104 jmp .ReturnWithErrorCodeInAH
105.ContinueInitializationSinceDriveSelectedSuccesfully:
[399]106
[3]107
[399]108;;; InitializeDeviceParameters
[421]109 ; Initialize CHS parameters if LBA is not used and
110 ; user has specified P-CHS parameters
111 test BYTE [di+DPT.bFlagsLow], FLGL_DPT_ASSISTED_LBA
[399]112 jnz SHORT .SkipInitializeDeviceParameters ; No need to initialize CHS parameters if LBA mode enabled
[421]113 call AccessDPT_GetPointerToDRVPARAMStoCSBX
114 test BYTE [cs:bx+DRVPARAMS.wFlags], FLG_DRVPARAMS_USERCHS ; User specified P-CHS?
115 jz SHORT .SkipInitializeDeviceParameters
[3]116
[157]117 ; Initialize Logical Sectors per Track and Max Head number
[421]118 mov ax, [cs:bx+DRVPARAMS.wHeadsAndSectors]
119 dec ax ; Max Head number
120 xchg al, ah ; Heads now in AH
121 mov dx, ax ; Sectors per Track now in DL
[150]122 mov al, COMMAND_INITIALIZE_DEVICE_PARAMETERS
123 mov bx, TIMEOUT_AND_STATUS_TO_WAIT(TIMEOUT_BSY, FLG_STATUS_BSY)
[399]124 call Idepack_StoreNonExtParametersAndIssueCommandFromAL
[410]125 STORE_ERROR_FLAG_TO_DPT FLG_INITERROR_FAILED_TO_INITIALIZE_CHS_PARAMETERS
[399]126.SkipInitializeDeviceParameters:
[3]127
[410]128
[439]129%ifdef MODULE_8BIT_IDE
[437]130;;; Enable 8-bit PIO Transfer Mode for Lo-tech XT-CF (CF and Microdrives only)
131 call AH9h_Enable8bitPioModeForXTCF
132 STORE_ERROR_FLAG_TO_DPT FLG_INITERROR_FAILED_TO_ENABLE_8BIT_PIO_MODE
[439]133%endif
[437]134
135
[399]136;;; SetWriteCache
137 ; Enable or Disable Write Cache
[276]138 call AccessDPT_GetPointerToDRVPARAMStoCSBX
139 mov bl, [cs:bx+DRVPARAMS.wFlags]
[399]140 push bx ; Save .wFlags for later use in InitializeBlockMode
[276]141 and bx, BYTE MASK_DRVPARAMS_WRITECACHE
[399]142 jz SHORT .SkipSetWriteCache ; DEFAULT_WRITE_CACHE
[276]143 mov si, [cs:bx+.rgbWriteCacheCommands]
[399]144 call AH23h_SetControllerFeatures
[410]145 STORE_ERROR_FLAG_TO_DPT FLG_INITERROR_FAILED_TO_SET_WRITE_CACHE
[399]146.SkipSetWriteCache:
[276]147
[410]148
[399]149;;; RecalibrateDrive
150 ; Recalibrate drive by seeking to cylinder 0
151 call AH11h_RecalibrateDrive
[410]152 STORE_ERROR_FLAG_TO_DPT FLG_INITERROR_FAILED_TO_RECALIBRATE_DRIVE
[276]153
[399]154
155;;; InitializeBlockMode
156 ; Initialize block mode transfers
157 pop ax ; Restore .wFlags saved in SetWriteCache
158 test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_BLOCK_MODE_SUPPORTED
159 jz SHORT .BlockModeNotSupportedOrDisabled
160 test al, FLG_DRVPARAMS_BLOCKMODE
161 jz SHORT .BlockModeNotSupportedOrDisabled
162
163 ; Try block sizes until we find largest possible supported by drive
164 mov bl, 128
165.TryNextBlockSize:
166 mov al, bl
167 call AH24h_SetBlockSize ; Stores block size to DPT
168 jnc SHORT .SupportedBlockSizeFound
169 shr bl, 1
170 jnc SHORT .TryNextBlockSize
[410]171 STORE_ERROR_FLAG_TO_DPT FLG_INITERROR_FAILED_TO_SET_BLOCK_MODE
[399]172.BlockModeNotSupportedOrDisabled:
173.SupportedBlockSizeFound:
174
[410]175
[363]176%ifdef MODULE_ADVANCED_ATA
[399]177;;; InitializePioMode
178 ; Initialize fastest supported PIO mode
[364]179 mov dl, PIO_DEFAULT_MODE_DISABLE_IORDY
180 test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_IORDY
181 jz SHORT .IordyNotSupported
182
183 ; Advanced PIO mode 3 and above
184 mov dl, [di+DPT_ADVANCED_ATA.bPioMode]
185 or dl, PIO_FLOW_CONTROL_MODE_xxx
186
187.IordyNotSupported:
[363]188 mov si, FEATURE_SET_TRANSFER_MODE
[399]189 call AH23h_SetControllerFeatures
[410]190 STORE_ERROR_FLAG_TO_DPT FLG_INITERROR_FAILED_TO_SET_PIO_MODE
[399]191%endif ; MODULE_ADVANCED_ATA
[363]192
[410]193
[399]194%ifdef MODULE_FEATURE_SETS
195;;; InitStandbyTimer
196 ; Initialize the standby timer (if supported)
197 test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_POWER_MANAGEMENT_SUPPORTED
[410]198 jz SHORT .NoPowerManagementSupport
[363]199
[399]200 mov al, COMMAND_IDLE
201 mov dl, [cs:ROMVARS.bIdleTimeout]
202 mov bx, TIMEOUT_AND_STATUS_TO_WAIT(TIMEOUT_BSY, FLG_STATUS_BSY)
203 call Idepack_StoreNonExtParametersAndIssueCommandFromAL
[410]204 STORE_ERROR_FLAG_TO_DPT FLG_INITERROR_FAILED_TO_INITIALIZE_STANDBY_TIMER
[399]205.NoPowerManagementSupport:
206%endif ; MODULE_FEATURE_SETS
207
[410]208
[399]209 ; There might have been several errors so just return one error code for them all
[410]210.ReturnWithErrorCodeInAH:
[400]211%ifdef MODULE_ADVANCED_ATA
[422]212 mov ah, [di+DPT.bInitError]
[399]213 test ah, ah ; Clears CF
[410]214 jz SHORT .ReturnWithSuccess
[399]215 mov ah, RET_HD_RESETFAIL
216 stc
[410]217.ReturnWithSuccess:
[400]218%endif
[399]219
220 pop si
221 pop es
[363]222 ret
223
224
[410]225.rgbWriteCacheCommands:
226 db 0 ; DEFAULT_WRITE_CACHE
227 db FEATURE_DISABLE_WRITE_CACHE ; DISABLE_WRITE_CACHE
228 db FEATURE_ENABLE_WRITE_CACHE ; ENABLE_WRITE_CACHE
229
230
231
[363]232;--------------------------------------------------------------------
[410]233; SetErrorFlagFromALwithErrorCodeInAH
[363]234; Parameters:
235; AH: BIOS Error Code
236; AL: Error flag to set
237; DS:DI: Ptr to DPT
[410]238; CF: Set if error code in AH
239; Clear if AH = 0
[363]240; Returns:
241; CF: Clear if no error
242; Set if error flag was set
243; Corrupts registers:
[370]244; Nothing
[363]245;--------------------------------------------------------------------
[445]246DoNotEnable8bitMode:
[410]247IgnoreInvalidCommandError:
[399]248 xor ah, ah ; Clears CF
[410]249SetErrorFlagFromALwithErrorCodeInAH:
[365]250 jnc SHORT .NoErrorFlagToSet
[363]251 cmp ah, RET_HD_INVALID
[410]252 jbe SHORT IgnoreInvalidCommandError
[363]253
[422]254 or [di+DPT.bInitError], al
[363]255 stc
[365]256.NoErrorFlagToSet:
[3]257 ret
[437]258
259
[439]260%ifdef MODULE_8BIT_IDE
[437]261;--------------------------------------------------------------------
262; AH9h_Enable8bitPioModeForXTCF
263; Parameters:
264; DS:DI: Ptr to DPT
[443]265; SS:BP: Ptr to IDEPACK
[437]266; Returns:
267; AH: Int 13h return status
268; CF: 0 if successful, 1 if error
269; Corrupts registers:
[439]270; AL, BX, CX, DX, SI
[437]271;--------------------------------------------------------------------
272AH9h_Enable8bitPioModeForXTCF:
[445]273 eMOVZX bx, [di+DPT.bIdevarsOffset]
[437]274 cmp BYTE [cs:bx+IDEVARS.bDevice], DEVICE_8BIT_XTCF
[445]275 jne SHORT DoNotEnable8bitMode
276
[437]277 mov si, FEATURE_ENABLE_8BIT_PIO_TRANSFER_MODE
278 jmp AH23h_SetControllerFeatures
[439]279%endif ; MODULE_8BIT_IDE
Note: See TracBrowser for help on using the repository browser.