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

Last change on this file since 186 was 181, checked in by krille_n_@…, 13 years ago

Changes to all parts of the project:

  • Size optimizations.
  • Added a define (EXCLUDE_FROM_XTIDECFG) to exclude unused library code from XTIDECFG.
  • Tried to minimize time spent with interrupts disabled.
  • Some minor attempts to improve speed (reordering instructions etc).
  • Tried to improve readability, did some cleanup and fixed some errors in comments.
File size: 10.6 KB
Line 
1; Project name : XTIDE Universal BIOS
2; Description : Int 13h BIOS functions (Floppy and Hard disk).
3
4; Section containing code
5SECTION .text
6
7;--------------------------------------------------------------------
8; Int 13h software interrupt handler.
9; Jumps to specific function defined in AH.
10;
11; Note to developers: Do not make recursive INT 13h calls!
12;
13; Int13h_DiskFunctionsHandler
14; Parameters:
15; AH: Bios function
16; DL: Drive number
17; Other: Depends on function
18; Returns:
19; Depends on function
20;--------------------------------------------------------------------
21ALIGN JUMP_ALIGN
22Int13h_DiskFunctionsHandler:
23 sti ; Enable interrupts
24 cld ; String instructions to increment pointers
25 CREATE_FRAME_INTPACK_TO_SSBP EXTRA_BYTES_FOR_INTPACK
26
27 call RamVars_GetSegmentToDS
28 call DriveXlate_ToOrBack
29 mov [RAMVARS.xlateVars+XLATEVARS.bXlatedDrv], dl
30 call RamVars_IsFunctionHandledByThisBIOS
31 jnc SHORT Int13h_DirectCallToAnotherBios
32 call FindDPT_ForDriveNumber ; DS:DI now points to DPT
33
34 ; Jump to correct BIOS function
35 eMOVZX bx, ah
36 shl bx, 1
37 cmp ah, 25h ; Possible EBIOS function?
38%ifdef MODULE_EBIOS
39 ja SHORT .JumpToEbiosFunction
40%else
41 ja SHORT Int13h_UnsupportedFunction
42%endif
43 jmp [cs:bx+g_rgw13hFuncJump] ; Jump to BIOS function
44
45%ifdef MODULE_EBIOS
46 ; Jump to correct EBIOS function
47ALIGN JUMP_ALIGN
48.JumpToEbiosFunction:
49 test BYTE [cs:ROMVARS.wFlags], FLG_ROMVARS_FULLMODE
50 jz SHORT Int13h_UnsupportedFunction ; No eINT 13h in lite mode
51 test BYTE [di+DPT.bFlagsLow], FLG_DRVNHEAD_LBA
52 jz SHORT Int13h_UnsupportedFunction ; No eINT 13h for CHS drives
53 cmp ah, 48h
54 ja SHORT Int13h_UnsupportedFunction
55 sub bl, 41h<<1 ; BX = Offset to eINT 13h jump table
56 jb SHORT Int13h_UnsupportedFunction
57 jmp [cs:bx+g_rgwEbiosFunctionJumpTable]
58%endif
59
60;--------------------------------------------------------------------
61; Int13h_UnsupportedFunction
62; Int13h_DirectCallToAnotherBios
63; Parameters:
64; DL: Translated drive number
65; DS: RAMVARS segment
66; SS:BP: Ptr to IDEPACK
67; BX, DI: Corrupted on Int13h_DiskFunctionsHandler
68; Other: Function specific INT 13h parameters
69; Returns:
70; Depends on function
71; Corrupts registers:
72; Flags
73;--------------------------------------------------------------------
74ALIGN JUMP_ALIGN
75Int13h_UnsupportedFunction:
76Int13h_DirectCallToAnotherBios:
77 call ExchangeCurrentInt13hHandlerWithOldInt13hHandler
78 mov bx, [bp+IDEPACK.intpack+INTPACK.bx]
79 mov di, [bp+IDEPACK.intpack+INTPACK.di]
80 mov ds, [bp+IDEPACK.intpack+INTPACK.ds]
81 push WORD [bp+IDEPACK.intpack+INTPACK.flags]
82 popf
83 push bp
84 mov bp, [bp+IDEPACK.intpack+INTPACK.bp]
85 int BIOS_DISK_INTERRUPT_13h ; Can safely do as much recursion as it wants
86
87 ; Store returned values to INTPACK
88 pop bp ; Standard INT 13h functions never uses BP as return register
89%ifdef USE_386
90 mov [bp+IDEPACK.intpack+INTPACK.gs], gs
91 mov [bp+IDEPACK.intpack+INTPACK.fs], fs
92%endif
93 mov [bp+IDEPACK.intpack+INTPACK.es], es
94 mov [bp+IDEPACK.intpack+INTPACK.ds], ds
95 mov [bp+IDEPACK.intpack+INTPACK.di], di
96 mov [bp+IDEPACK.intpack+INTPACK.si], si
97 mov [bp+IDEPACK.intpack+INTPACK.bx], bx
98 mov [bp+IDEPACK.intpack+INTPACK.dh], dh
99 mov [bp+IDEPACK.intpack+INTPACK.cx], cx
100 mov [bp+IDEPACK.intpack+INTPACK.ax], ax
101 pushf
102 pop WORD [bp+IDEPACK.intpack+INTPACK.flags]
103 call RamVars_GetSegmentToDS
104 cmp dl, [RAMVARS.xlateVars+XLATEVARS.bXlatedDrv]
105 je SHORT .ExchangeInt13hHandlers
106 mov [bp+IDEPACK.intpack+INTPACK.dl], dl ; Something is returned in DL
107ALIGN JUMP_ALIGN
108.ExchangeInt13hHandlers:
109 call ExchangeCurrentInt13hHandlerWithOldInt13hHandler
110 ; Fall to Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
111
112
113;--------------------------------------------------------------------
114; Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
115; Int13h_ReturnFromHandlerWithoutStoringErrorCode
116; Parameters:
117; AH: BIOS Error code
118; SS:BP: Ptr to IDEPACK
119; Returns:
120; All registers are loaded from INTPACK
121;--------------------------------------------------------------------
122ALIGN JUMP_ALIGN
123Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH:
124 call Int13h_SetErrorCodeToBdaAndToIntpackInSSBPfromAH
125Int13h_ReturnFromHandlerWithoutStoringErrorCode:
126 or WORD [bp+IDEPACK.intpack+INTPACK.flags], FLG_FLAGS_IF ; Return with interrupts enabled
127 mov sp, bp ; Now we can exit anytime
128 RESTORE_FRAME_INTPACK_FROM_SSBP EXTRA_BYTES_FOR_INTPACK
129
130
131;--------------------------------------------------------------------
132; Int13h_CallPreviousInt13hHandler
133; Parameters:
134; AH: INT 13h function to call
135; DL: Drive number
136; DS: RAMVARS segment
137; Returns:
138; Depends on function
139; Corrupts registers:
140; BX, DI, ES
141;--------------------------------------------------------------------
142ALIGN JUMP_ALIGN
143Int13h_CallPreviousInt13hHandler:
144 push di
145 call ExchangeCurrentInt13hHandlerWithOldInt13hHandler
146 int BIOS_DISK_INTERRUPT_13h
147 call ExchangeCurrentInt13hHandlerWithOldInt13hHandler
148 pop di
149 ret
150
151
152;--------------------------------------------------------------------
153; ExchangeCurrentInt13hHandlerWithOldInt13hHandler
154; Parameters:
155; DS: RAMVARS segment
156; Returns:
157; Nothing
158; Corrupts registers:
159; DI
160;--------------------------------------------------------------------
161ALIGN JUMP_ALIGN
162ExchangeCurrentInt13hHandlerWithOldInt13hHandler:
163 push es
164 LOAD_BDA_SEGMENT_TO es, di
165 mov di, [RAMVARS.fpOldI13h]
166 cli
167 xchg di, [es:BIOS_DISK_INTERRUPT_13h*4]
168 mov [RAMVARS.fpOldI13h], di
169 mov di, [RAMVARS.fpOldI13h+2]
170 xchg di, [es:BIOS_DISK_INTERRUPT_13h*4+2]
171 sti
172 mov [RAMVARS.fpOldI13h+2], di
173 pop es
174 ret
175
176
177;--------------------------------------------------------------------
178; Int13h_SetErrorCodeToBdaAndToIntpackInSSBPfromAH
179; Int13h_SetErrorCodeToIntpackInSSBPfromAH
180; Parameters:
181; AH: BIOS error code (00h = no error)
182; SS:BP: Ptr to IDEPACK
183; Returns:
184; SS:BP: Ptr to IDEPACK with error condition set
185; Corrupts registers:
186; DS, DI
187;--------------------------------------------------------------------
188ALIGN JUMP_ALIGN
189Int13h_SetErrorCodeToBdaAndToIntpackInSSBPfromAH:
190 ; Store error code to BDA
191 LOAD_BDA_SEGMENT_TO ds, di
192 mov [BDA.bHDLastSt], ah
193
194 ; Store error code to INTPACK
195Int13h_SetErrorCodeToIntpackInSSBPfromAH:
196 mov [bp+IDEPACK.intpack+INTPACK.ah], ah
197 test ah, ah
198 jnz SHORT .SetCFtoIntpack
199 and BYTE [bp+IDEPACK.intpack+INTPACK.flags], ~FLG_FLAGS_CF
200 ret
201.SetCFtoIntpack:
202 or BYTE [bp+IDEPACK.intpack+INTPACK.flags], FLG_FLAGS_CF
203 ret
204
205
206; Jump table for correct BIOS function
207ALIGN WORD_ALIGN
208g_rgw13hFuncJump:
209 dw AH0h_HandlerForDiskControllerReset ; 00h, Disk Controller Reset (All)
210 dw AH1h_HandlerForReadDiskStatus ; 01h, Read Disk Status (All)
211 dw AH2h_HandlerForReadDiskSectors ; 02h, Read Disk Sectors (All)
212 dw AH3h_HandlerForWriteDiskSectors ; 03h, Write Disk Sectors (All)
213 dw AH4h_HandlerForVerifyDiskSectors ; 04h, Verify Disk Sectors (All)
214 dw Int13h_UnsupportedFunction ; 05h, Format Disk Track (XT, AT, EISA)
215 dw Int13h_UnsupportedFunction ; 06h, Format Disk Track with Bad Sectors (XT)
216 dw Int13h_UnsupportedFunction ; 07h, Format Multiple Cylinders (XT)
217 dw AH8h_HandlerForReadDiskDriveParameters ; 08h, Read Disk Drive Parameters (All)
218 dw AH9h_HandlerForInitializeDriveParameters ; 09h, Initialize Drive Parameters (All)
219 dw Int13h_UnsupportedFunction ; 0Ah, Read Disk Sectors with ECC (XT, AT, EISA)
220 dw Int13h_UnsupportedFunction ; 0Bh, Write Disk Sectors with ECC (XT, AT, EISA)
221 dw AHCh_HandlerForSeek ; 0Ch, Seek (All)
222 dw AHDh_HandlerForResetHardDisk ; 0Dh, Alternate Disk Reset (All)
223 dw Int13h_UnsupportedFunction ; 0Eh, Read Sector Buffer (XT, PS/1), ESDI Undocumented Diagnostic (PS/2)
224 dw Int13h_UnsupportedFunction ; 0Fh, Write Sector Buffer (XT, PS/1), ESDI Undocumented Diagnostic (PS/2)
225 dw AH10h_HandlerForCheckDriveReady ; 10h, Check Drive Ready (All)
226 dw AH11h_HandlerForRecalibrate ; 11h, Recalibrate (All)
227 dw Int13h_UnsupportedFunction ; 12h, Controller RAM Diagnostic (XT)
228 dw Int13h_UnsupportedFunction ; 13h, Drive Diagnostic (XT)
229 dw Int13h_UnsupportedFunction ; 14h, Controller Internal Diagnostic (All)
230 dw AH15h_HandlerForReadDiskDriveSize ; 15h, Read Disk Drive Size (AT+)
231 dw Int13h_UnsupportedFunction ; 16h,
232 dw Int13h_UnsupportedFunction ; 17h,
233 dw Int13h_UnsupportedFunction ; 18h,
234 dw Int13h_UnsupportedFunction ; 19h, Park Heads (PS/2)
235 dw Int13h_UnsupportedFunction ; 1Ah, Format ESDI Drive (PS/2)
236 dw Int13h_UnsupportedFunction ; 1Bh, Get ESDI Manufacturing Header (PS/2)
237 dw Int13h_UnsupportedFunction ; 1Ch, ESDI Special Functions (PS/2)
238 dw Int13h_UnsupportedFunction ; 1Dh,
239 dw Int13h_UnsupportedFunction ; 1Eh,
240 dw Int13h_UnsupportedFunction ; 1Fh,
241 dw Int13h_UnsupportedFunction ; 20h,
242 dw Int13h_UnsupportedFunction ; 21h, Read Disk Sectors, Multiple Blocks (PS/1)
243 dw Int13h_UnsupportedFunction ; 22h, Write Disk Sectors, Multiple Blocks (PS/1)
244 dw AH23h_HandlerForSetControllerFeatures ; 23h, Set Controller Features Register (PS/1)
245 dw AH24h_HandlerForSetMultipleBlocks ; 24h, Set Multiple Blocks (PS/1)
246 dw AH25h_HandlerForGetDriveInformation ; 25h, Get Drive Information (PS/1)
247
248%ifdef MODULE_EBIOS
249g_rgwEbiosFunctionJumpTable:
250 dw AH41h_HandlerForCheckIfExtensionsPresent ; 41h, Check if Extensions Present (EBIOS)*
251 dw AH42h_HandlerForExtendedReadSectors ; 42h, Extended Read Sectors (EBIOS)*
252 dw AH43h_HandlerForExtendedWriteSectors ; 43h, Extended Write Sectors (EBIOS)*
253 dw AH44h_HandlerForExtendedVerifySectors ; 44h, Extended Verify Sectors (EBIOS)*
254 dw Int13h_UnsupportedFunction ; 45h, Lock and Unlock Drive (EBIOS)***
255 dw Int13h_UnsupportedFunction ; 46h, Eject Media Request (EBIOS)***
256 dw AH47h_HandlerForExtendedSeek ; 47h, Extended Seek (EBIOS)*
257 dw AH48h_HandlerForGetExtendedDriveParameters ; 48h, Get Extended Drive Parameters (EBIOS)*
258; dw Int13h_UnsupportedFunction ; 49h, Get Extended Disk Change Status (EBIOS)***
259; dw Int13h_UnsupportedFunction ; 4Ah, Initiate Disk Emulation (Bootable CD-ROM)
260; dw Int13h_UnsupportedFunction ; 4Bh, Terminate Disk Emulation (Bootable CD-ROM)
261; dw Int13h_UnsupportedFunction ; 4Ch, Initiate Disk Emulation and Boot (Bootable CD-ROM)
262; dw Int13h_UnsupportedFunction ; 4Dh, Return Boot Catalog (Bootable CD-ROM)
263; dw Int13h_UnsupportedFunction ; 4Eh, Set Hardware Configuration (EBIOS)**
264;
265; * = Enhanced Drive Access Support (minimum required EBIOS functions)
266; ** = Enhanced Disk Drive (EDD) Support
267; *** = Drive Locking and Ejecting Support
268%endif
Note: See TracBrowser for help on using the repository browser.