1 | ; Project name : XTIDE Universal BIOS
|
---|
2 | ; Description : IDE Device transfer functions.
|
---|
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 | ; Structure containing variables for PIO transfer functions.
|
---|
21 | ; This struct must not be larger than IDEPACK without INTPACK.
|
---|
22 | struc PIOVARS ; Must not be larger than 9 bytes! See IDEPACK in RamVars.inc.
|
---|
23 | .wDataPort resb 2 ; 0-1, IDE Data Port
|
---|
24 | .fnXfer resb 2 ; 2-3, Offset to transfer function
|
---|
25 | .wSectorsInBlock resb 2 ; 4-5, Block size in sectors
|
---|
26 | .bSectorsLeft resb 1 ; 6, Sectors left to transfer
|
---|
27 | resb 1 ; 7, IDEPACK.bDeviceControl
|
---|
28 | .bSectorsDone resb 1 ; 8, Number of sectors xferred
|
---|
29 | endstruc
|
---|
30 |
|
---|
31 |
|
---|
32 | ; Section containing code
|
---|
33 | SECTION .text
|
---|
34 |
|
---|
35 | ;--------------------------------------------------------------------
|
---|
36 | ; IdeTransfer_StartWithCommandInAL
|
---|
37 | ; Parameters:
|
---|
38 | ; AL: IDE command that was used to start the transfer
|
---|
39 | ; (all PIO read and write commands including Identify Device)
|
---|
40 | ; ES:SI: Ptr to normalized data buffer
|
---|
41 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
42 | ; SS:BP: Ptr to IDEPACK
|
---|
43 | ; Returns:
|
---|
44 | ; AH: INT 13h Error Code
|
---|
45 | ; CX: Number of successfully transferred sectors
|
---|
46 | ; CF: Cleared if success, Set if error
|
---|
47 | ; Corrupts registers:
|
---|
48 | ; AL, BX, DX, SI, ES
|
---|
49 | ;--------------------------------------------------------------------
|
---|
50 | ALIGN JUMP_ALIGN
|
---|
51 | IdeTransfer_StartWithCommandInAL:
|
---|
52 | ; Are we reading or writing?
|
---|
53 | test al, 16 ; Bit 4 is cleared on all the read commands but set on 3 of the 4 write commands
|
---|
54 | mov ah, [bp+IDEPACK.bSectorCount]
|
---|
55 | jnz SHORT WriteToDrive
|
---|
56 | cmp al, COMMAND_WRITE_MULTIPLE
|
---|
57 | je SHORT WriteToDrive
|
---|
58 | ; Fall to ReadFromDrive
|
---|
59 |
|
---|
60 | ;--------------------------------------------------------------------
|
---|
61 | ; ReadFromDrive
|
---|
62 | ; Parameters:
|
---|
63 | ; AH: Number of sectors to transfer (1...128)
|
---|
64 | ; ES:SI: Normalized ptr to buffer to receive data
|
---|
65 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
66 | ; SS:BP: Ptr to PIOVARS
|
---|
67 | ; Returns:
|
---|
68 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
69 | ; AH: BIOS Error code
|
---|
70 | ; CX: Number of successfully transferred sectors
|
---|
71 | ; CF: 0 if transfer successful
|
---|
72 | ; 1 if any error
|
---|
73 | ; Corrupts registers:
|
---|
74 | ; AL, BX, DX, SI, ES
|
---|
75 | ;--------------------------------------------------------------------
|
---|
76 | ReadFromDrive:
|
---|
77 | ; Prepare to read data to ESSI
|
---|
78 | mov bx, g_rgfnPioRead
|
---|
79 | call InitializePiovarsInSSBPwithSectorCountInAH
|
---|
80 |
|
---|
81 | ; Wait until drive is ready to transfer
|
---|
82 | call IdeWait_IRQorDRQ ; Wait until ready to transfer
|
---|
83 | jc SHORT ReturnWithTransferErrorInAH
|
---|
84 | xchg si, di ; ES:DI now points buffer
|
---|
85 |
|
---|
86 | mov cx, [bp+PIOVARS.wSectorsInBlock] ; Max 128
|
---|
87 |
|
---|
88 | ALIGN JUMP_ALIGN
|
---|
89 | .ReadNextBlockFromDrive:
|
---|
90 | mov dx, [bp+PIOVARS.wDataPort]
|
---|
91 | cmp [bp+PIOVARS.bSectorsLeft], cl
|
---|
92 | jbe SHORT .ReadLastBlockFromDrive
|
---|
93 | call [bp+PIOVARS.fnXfer]
|
---|
94 |
|
---|
95 | ; Wait until ready for next block and check for errors
|
---|
96 | xchg di, si ; DS:DI now points DPT
|
---|
97 | call IdeWait_IRQorDRQ ; Wait until ready to transfer
|
---|
98 | jc SHORT ReturnWithTransferErrorInAH
|
---|
99 | xchg si, di ; ES:DI now points buffer
|
---|
100 |
|
---|
101 | ; Increment number of successfully read sectors
|
---|
102 | mov cx, [bp+PIOVARS.wSectorsInBlock]
|
---|
103 | sub [bp+PIOVARS.bSectorsLeft], cl
|
---|
104 | add [bp+PIOVARS.bSectorsDone], cl
|
---|
105 | jmp SHORT .ReadNextBlockFromDrive
|
---|
106 |
|
---|
107 | ALIGN JUMP_ALIGN
|
---|
108 | .ReadLastBlockFromDrive:
|
---|
109 | mov cl, [bp+PIOVARS.bSectorsLeft] ; CH is already zero
|
---|
110 | push cx
|
---|
111 | call [bp+PIOVARS.fnXfer] ; Transfer possibly partial block
|
---|
112 |
|
---|
113 | ; Check for errors in last block
|
---|
114 | mov di, si ; DS:DI now points DPT
|
---|
115 | CheckErrorsAfterTransferringLastBlock:
|
---|
116 | mov bx, TIMEOUT_AND_STATUS_TO_WAIT(TIMEOUT_DRQ, FLG_STATUS_BSY)
|
---|
117 | call IdeWait_PollStatusFlagInBLwithTimeoutInBH
|
---|
118 | pop cx ; [bp+PIOVARS.bSectorsLeft]
|
---|
119 | jc SHORT ReturnWithTransferErrorInAH
|
---|
120 |
|
---|
121 | ; All sectors successfully transferred
|
---|
122 | add cx, [bp+PIOVARS.bSectorsDone] ; Never sets CF
|
---|
123 | ret
|
---|
124 |
|
---|
125 | ; Return number of successfully read sectors
|
---|
126 | ReturnWithTransferErrorInAH:
|
---|
127 | %ifdef USE_386
|
---|
128 | movzx cx, [bp+PIOVARS.bSectorsDone]
|
---|
129 | %else
|
---|
130 | mov cl, [bp+PIOVARS.bSectorsDone]
|
---|
131 | mov ch, 0 ; Preserve CF
|
---|
132 | %endif
|
---|
133 | ret
|
---|
134 |
|
---|
135 |
|
---|
136 | ;--------------------------------------------------------------------
|
---|
137 | ; WriteToDrive
|
---|
138 | ; Parameters:
|
---|
139 | ; AH: Number of sectors to transfer (1...128)
|
---|
140 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
141 | ; ES:SI: Normalized ptr to buffer containing data
|
---|
142 | ; SS:BP: Ptr to PIOVARS
|
---|
143 | ; Returns:
|
---|
144 | ; AH: BIOS Error code
|
---|
145 | ; CX: Number of successfully transferred sectors
|
---|
146 | ; CF: 0 if transfer successful
|
---|
147 | ; 1 if any error
|
---|
148 | ; Corrupts registers:
|
---|
149 | ; AL, BX, DX, SI, ES
|
---|
150 | ;--------------------------------------------------------------------
|
---|
151 | ALIGN JUMP_ALIGN
|
---|
152 | WriteToDrive:
|
---|
153 | ; Prepare to write data from ESSI
|
---|
154 | mov bx, g_rgfnPioWrite
|
---|
155 | call InitializePiovarsInSSBPwithSectorCountInAH
|
---|
156 |
|
---|
157 | ; Always poll when writing first block (IRQs are generated for following blocks)
|
---|
158 | mov bx, TIMEOUT_AND_STATUS_TO_WAIT(TIMEOUT_DRQ, FLG_STATUS_DRQ)
|
---|
159 | call IdeWait_PollStatusFlagInBLwithTimeoutInBH
|
---|
160 | jc SHORT ReturnWithTransferErrorInAH
|
---|
161 |
|
---|
162 | mov cx, [bp+PIOVARS.wSectorsInBlock] ; Max 128
|
---|
163 |
|
---|
164 | ALIGN JUMP_ALIGN
|
---|
165 | .WriteNextBlockToDrive:
|
---|
166 | mov dx, [bp+PIOVARS.wDataPort]
|
---|
167 | cmp [bp+PIOVARS.bSectorsLeft], cl
|
---|
168 | jbe SHORT .WriteLastBlockToDrive
|
---|
169 | call [bp+PIOVARS.fnXfer]
|
---|
170 |
|
---|
171 | ; Wait until ready for next block and check for errors
|
---|
172 | call IdeWait_IRQorDRQ ; Wait until ready to transfer
|
---|
173 | jc SHORT ReturnWithTransferErrorInAH
|
---|
174 |
|
---|
175 | ; Increment number of successfully written sectors
|
---|
176 | mov cx, [bp+PIOVARS.wSectorsInBlock]
|
---|
177 | sub [bp+PIOVARS.bSectorsLeft], cl
|
---|
178 | add [bp+PIOVARS.bSectorsDone], cl
|
---|
179 | jmp SHORT .WriteNextBlockToDrive
|
---|
180 |
|
---|
181 | ALIGN JUMP_ALIGN
|
---|
182 | .WriteLastBlockToDrive:
|
---|
183 | mov cl, [bp+PIOVARS.bSectorsLeft] ; CH is already zero
|
---|
184 | push cx
|
---|
185 | %ifdef USE_186
|
---|
186 | push CheckErrorsAfterTransferringLastBlock
|
---|
187 | jmp [bp+PIOVARS.fnXfer] ; Transfer possibly partial block
|
---|
188 | %else
|
---|
189 | call [bp+PIOVARS.fnXfer] ; Transfer possibly partial block
|
---|
190 | jmp SHORT CheckErrorsAfterTransferringLastBlock
|
---|
191 | %endif
|
---|
192 |
|
---|
193 |
|
---|
194 | ;--------------------------------------------------------------------
|
---|
195 | ; InitializePiovarsInSSBPwithSectorCountInAH
|
---|
196 | ; Parameters:
|
---|
197 | ; AH: Number of sectors to transfer (1...128)
|
---|
198 | ; BX: Offset to transfer function lookup table
|
---|
199 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
200 | ; SS:BP: Ptr to PIOVARS
|
---|
201 | ; Returns:
|
---|
202 | ; Nothing
|
---|
203 | ; Corrupts registers:
|
---|
204 | ; AX, BX, DX
|
---|
205 | ;--------------------------------------------------------------------
|
---|
206 | ALIGN JUMP_ALIGN
|
---|
207 | InitializePiovarsInSSBPwithSectorCountInAH:
|
---|
208 | ; Store sizes and Data Port
|
---|
209 | mov [bp+PIOVARS.bSectorsLeft], ah
|
---|
210 | mov ax, [di+DPT.wBasePort]
|
---|
211 | mov [bp+PIOVARS.wDataPort], ax
|
---|
212 | eMOVZX ax, [di+DPT_ATA.bBlockSize]
|
---|
213 | mov [bp+PIOVARS.wSectorsInBlock], ax
|
---|
214 | mov [bp+PIOVARS.bSectorsDone], ah ; Zero
|
---|
215 |
|
---|
216 | ; Get transfer function based on bus type
|
---|
217 | xchg ax, bx ; Lookup table offset to AX
|
---|
218 | mov bl, [di+DPT_ATA.bDevice]
|
---|
219 | add bx, ax
|
---|
220 | mov ax, [cs:bx] ; Load offset to transfer function
|
---|
221 | mov [bp+PIOVARS.fnXfer], ax
|
---|
222 | ret
|
---|
223 |
|
---|
224 |
|
---|
225 |
|
---|
226 | ; Lookup tables to get transfer function based on bus type
|
---|
227 | ALIGN WORD_ALIGN
|
---|
228 | g_rgfnPioRead:
|
---|
229 | %ifdef USE_AT
|
---|
230 | dw IdePioBlock_ReadFrom16bitDataPort ; 0, DEVICE_16BIT_ATA
|
---|
231 | dw IdePioBlock_ReadFrom32bitDataPort ; 1, DEVICE_32BIT_ATA
|
---|
232 | %else
|
---|
233 | dd 0
|
---|
234 | %endif
|
---|
235 | %ifdef MODULE_8BIT_IDE
|
---|
236 | dw IdePioBlock_ReadFromXtideRev1 ; 2, DEVICE_8BIT_XTIDE_REV1
|
---|
237 | %ifndef USE_AT
|
---|
238 | g_rgfnPioWrite:
|
---|
239 | %endif
|
---|
240 | dw IdePioBlock_ReadFromXtideRev2 ; 3, DEVICE_8BIT_XTIDE_REV2
|
---|
241 | dw IdePioBlock_ReadFrom8bitDataPort ; 4, DEVICE_8BIT_XTCF_PIO8
|
---|
242 | %endif
|
---|
243 |
|
---|
244 | %ifdef USE_AT
|
---|
245 | g_rgfnPioWrite:
|
---|
246 | dw IdePioBlock_WriteTo16bitDataPort ; 0, DEVICE_16BIT_ATA
|
---|
247 | dw IdePioBlock_WriteTo32bitDataPort ; 1, DEVICE_32BIT_ATA
|
---|
248 | %endif
|
---|
249 | %ifdef MODULE_8BIT_IDE
|
---|
250 | dw IdePioBlock_WriteToXtideRev1 ; 2, DEVICE_8BIT_XTIDE_REV1
|
---|
251 | dw IdePioBlock_WriteToXtideRev2 ; 3, DEVICE_8BIT_XTIDE_REV2
|
---|
252 | dw IdePioBlock_WriteTo8bitDataPort ; 4, DEVICE_8BIT_XTCF_PIO8
|
---|
253 | %endif
|
---|