1 | ; Project name : XTIDE Universal BIOS
|
---|
2 | ; Description : Int 13h function AH=9h, Initialize Drive Parameters.
|
---|
3 |
|
---|
4 | ; Section containing code
|
---|
5 | SECTION .text
|
---|
6 |
|
---|
7 | ;--------------------------------------------------------------------
|
---|
8 | ; Int 13h function AH=9h, Initialize Drive Parameters.
|
---|
9 | ;
|
---|
10 | ; AH9h_HandlerForInitializeDriveParameters
|
---|
11 | ; Parameters:
|
---|
12 | ; DL: Translated Drive number
|
---|
13 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
14 | ; SS:BP: Ptr to IDEPACK
|
---|
15 | ; Returns with INTPACK:
|
---|
16 | ; AH: Int 13h return status
|
---|
17 | ; CF: 0 if succesfull, 1 if error
|
---|
18 | ;--------------------------------------------------------------------
|
---|
19 | ALIGN JUMP_ALIGN
|
---|
20 | AH9h_HandlerForInitializeDriveParameters:
|
---|
21 | %ifndef USE_186
|
---|
22 | call AH9h_InitializeDriveForUse
|
---|
23 | jmp Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
|
---|
24 | %else
|
---|
25 | push Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
|
---|
26 | ; Fall to AH9h_InitializeDriveForUse
|
---|
27 | %endif
|
---|
28 |
|
---|
29 |
|
---|
30 | ;--------------------------------------------------------------------
|
---|
31 | ; Initialized drive to be ready for use.
|
---|
32 | ;
|
---|
33 | ; AH9h_InitializeDriveForUse
|
---|
34 | ; Parameters:
|
---|
35 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
36 | ; SS:BP: Ptr to IDEPACK
|
---|
37 | ; Returns:
|
---|
38 | ; AH: Int 13h return status
|
---|
39 | ; CF: 0 if succesfull, 1 if error
|
---|
40 | ; Corrupts registers:
|
---|
41 | ; AL, BX, DX
|
---|
42 | ;--------------------------------------------------------------------
|
---|
43 | ;ALIGN JUMP_ALIGN
|
---|
44 | AH9h_InitializeDriveForUse:
|
---|
45 | push cx
|
---|
46 |
|
---|
47 | ; Try to select drive and wait until ready
|
---|
48 | or BYTE [di+DPT.bFlagsHigh], MASKH_DPT_RESET ; Everything uninitialized
|
---|
49 | call AccessDPT_GetDriveSelectByteToAL
|
---|
50 | mov [bp+IDEPACK.bDrvAndHead], al
|
---|
51 | call Device_SelectDrive
|
---|
52 | jc SHORT .ReturnNotSuccessfull
|
---|
53 | and BYTE [di+DPT.bFlagsHigh], ~FLGH_DPT_RESET_nDRDY ; Clear since success
|
---|
54 |
|
---|
55 | ; Initialize CHS parameters if LBA is not used
|
---|
56 | call InitializeDeviceParameters
|
---|
57 | jc SHORT .RecalibrateDrive
|
---|
58 | and BYTE [di+DPT.bFlagsHigh], ~FLGH_DPT_RESET_nINITPRMS
|
---|
59 |
|
---|
60 | ; Recalibrate drive by seeking to cylinder 0
|
---|
61 | .RecalibrateDrive:
|
---|
62 | call AH11h_RecalibrateDrive
|
---|
63 | jc SHORT .InitializeBlockMode
|
---|
64 | and BYTE [di+DPT.bFlagsHigh], ~FLGH_DPT_RESET_nRECALIBRATE
|
---|
65 |
|
---|
66 | ; Initialize block mode transfers
|
---|
67 | .InitializeBlockMode:
|
---|
68 | call InitializeBlockMode
|
---|
69 | jc SHORT .ReturnNotSuccessfull
|
---|
70 | and BYTE [di+DPT.bFlagsHigh], ~FLGH_DPT_RESET_nSETBLOCK ; Keeps CF clear
|
---|
71 |
|
---|
72 | .ReturnNotSuccessfull:
|
---|
73 | pop cx
|
---|
74 | ret
|
---|
75 |
|
---|
76 |
|
---|
77 | ;--------------------------------------------------------------------
|
---|
78 | ; InitializeDeviceParameters
|
---|
79 | ; Parameters:
|
---|
80 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
81 | ; SS:BP: Ptr to IDEPACK
|
---|
82 | ; Returns:
|
---|
83 | ; AH: BIOS Error code
|
---|
84 | ; CF: Cleared if succesfull
|
---|
85 | ; Set if any error
|
---|
86 | ; Corrupts registers:
|
---|
87 | ; AL, BX, CX, DX
|
---|
88 | ;--------------------------------------------------------------------
|
---|
89 | ALIGN JUMP_ALIGN
|
---|
90 | InitializeDeviceParameters:
|
---|
91 | ; No need to initialize CHS parameters if LBA mode enabled
|
---|
92 | test BYTE [di+DPT.bFlagsLow], FLG_DRVNHEAD_LBA ; Clear CF
|
---|
93 | jnz SHORT ReturnSuccessSinceInitializationNotNeeded
|
---|
94 |
|
---|
95 | ; Initialize Logical Sectors per Track and Max Head number
|
---|
96 | mov ah, [di+DPT.bHeads]
|
---|
97 | dec ah ; Max Head number
|
---|
98 | mov dl, [di+DPT.bSectors] ; Sectors per Track
|
---|
99 | mov al, COMMAND_INITIALIZE_DEVICE_PARAMETERS
|
---|
100 | mov bx, TIMEOUT_AND_STATUS_TO_WAIT(TIMEOUT_BSY, FLG_STATUS_BSY)
|
---|
101 | jmp Idepack_StoreNonExtParametersAndIssueCommandFromAL
|
---|
102 |
|
---|
103 |
|
---|
104 | ;--------------------------------------------------------------------
|
---|
105 | ; InitializeBlockMode
|
---|
106 | ; Parameters:
|
---|
107 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
108 | ; Returns:
|
---|
109 | ; AH: BIOS Error code
|
---|
110 | ; CF: Cleared if succesfull
|
---|
111 | ; Set if any error
|
---|
112 | ; Corrupts registers:
|
---|
113 | ; AL, BX, CX, DX
|
---|
114 | ;--------------------------------------------------------------------
|
---|
115 | ALIGN JUMP_ALIGN
|
---|
116 | InitializeBlockMode:
|
---|
117 | test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_BLOCK_MODE_SUPPORTED ; Clear CF
|
---|
118 | jz SHORT ReturnSuccessSinceInitializationNotNeeded
|
---|
119 |
|
---|
120 | mov al, [di+DPT_ATA.bMaxBlock] ; Load max block size, zero AH
|
---|
121 | jmp AH24h_SetBlockSize
|
---|
122 | ReturnSuccessSinceInitializationNotNeeded:
|
---|
123 | ret
|
---|