source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/Tools/Prepare.asm @ 547

Last change on this file since 547 was 547, checked in by aitotat@…, 11 years ago

Changes to XTIDE Universal BIOS:

  • Hotkeys were incorrectly initialized to use 'C' as first hard drive letter.
  • All CHS translate modes should again work (incorrectly decremented DX instead of DL, it might or might not have caused problems).
File size: 5.2 KB
Line 
1; Project name  :   XTIDE Universal BIOS
2; Description   :   Functions for preparing data buffer for transfer.
3
4;
5; XTIDE Universal BIOS and Associated Tools
6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 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; Section containing code
21SECTION .text
22
23;--------------------------------------------------------------------
24; Prepare_ByLoadingDapToESSIandVerifyingForTransfer
25;   Parameters:
26;       SI:     Offset to DAP
27;       DS:DI:  Ptr to DPT
28;       SS:BP:  Ptr to IDEPACK
29;   Parameters on INTPACK:
30;       DS:SI:  Ptr to Disk Address Packet
31;   Returns:
32;       BX:     Index to command lookup table
33;       ES:SI:  Ptr to Disk Address Packet (DAP)
34;       Exits from INT 13h if invalid DAP
35;   Corrupts registers:
36;       AX, DX
37;--------------------------------------------------------------------
38%ifdef MODULE_EBIOS
39ALIGN JUMP_ALIGN
40Prepare_ByLoadingDapToESSIandVerifyingForTransfer:
41    ; Load pointer to DAP to ES:SI and make sure it is valid
42    mov     es, [bp+IDEPACK.intpack+INTPACK.ds] ; ES:SI to point Disk Address Packet
43    cmp     BYTE [es:si+DAP.bSize], MINIMUM_DAP_SIZE
44    jb      SHORT InvalidDAP
45
46    ; Make sure that sector count is valid
47    mov     al, [es:si+DAP.wSectorCount]
48    test    al, al
49    jz      SHORT ZeroSectorsRequestedSoNoErrors
50    js      SHORT InvalidNumberOfSectorsRequested
51
52%if 0   ; Slow version in the unlikely case that high byte needs to be checked.
53    mov     ax, [es:si+DAP.wSectorCount]
54    test    ax, ax
55    jz      SHORT ZeroSectorsRequestedSoNoErrors
56    cmp     ax, BYTE 127
57    ja      SHORT InvalidNumberOfSectorsRequested
58%endif
59
60    ; Get EBIOS command index to BX
61    ; LBA28 or LBA48 command
62    call    Prepare_GetOldInt13hCommandIndexToBX
63    mov     al, [di+DPT.bFlagsLow]
64    shl     al, 1                   ; Set CF if LBA48 supported
65    adc     bl, bh                  ; LBA48 EXT commands
66    ret
67%endif ; MODULE_EBIOS
68
69
70;--------------------------------------------------------------------
71; Prepare_GetOldInt13hCommandIndexToBX
72;   Parameters:
73;       DS:DI:  Ptr to DPT
74;   Returns:
75;       BX:     Index to command lookup table
76;   Corrupts registers:
77;       Nothing
78;--------------------------------------------------------------------
79ALIGN JUMP_ALIGN
80Prepare_GetOldInt13hCommandIndexToBX:
81    ; Block mode or single sector
82    mov     bl, [di+DPT.bFlagsHigh]
83    and     bx, BYTE FLGH_DPT_BLOCK_MODE_SUPPORTED  ; Bit 1
84    ret
85
86
87;---------------------------------------------------------------------
88; Prepare_BufferToESSIforOldInt13hTransfer
89;   Parameters:
90;       AL:     Number of sectors to transfer
91;       DS:DI:  Ptr to DPT (in RAMVARS segment)
92;       SS:BP:  Ptr to IDEPACK
93;   Parameters on INTPACK:
94;       ES:BX:  Ptr to data buffer
95;   Returns:
96;       ES:SI:  Ptr to normalized data buffer
97;       Exits INT 13h if error
98;   Corrupts registers:
99;       BX
100;--------------------------------------------------------------------
101ALIGN JUMP_ALIGN
102Prepare_BufferToESSIforOldInt13hTransfer:
103    mov     si, [bp+IDEPACK.intpack+INTPACK.bx] ; Load offset
104    mov     es, [bp+IDEPACK.intpack+INTPACK.es] ; Load segment
105    ; Fall to Prepare_ByValidatingSectorsInALforOldInt13h
106
107;---------------------------------------------------------------------
108; Prepare_ByValidatingSectorsInALforOldInt13h
109;   Parameters:
110;       AL:     Number of sectors to transfer
111;   Returns:
112;       Exits INT 13h if invalid number of sectors in AL
113;   Corrupts registers:
114;       Nothing
115;--------------------------------------------------------------------
116Prepare_ByValidatingSectorsInALforOldInt13h:
117    test    al, al
118    js      SHORT .CheckZeroOffsetFor128Sectors     ; 128 or more
119    jz      SHORT InvalidNumberOfSectorsRequested   ; Zero not allowed for old INT 13h
120    ret     ; Continue with transfer
121
122ALIGN JUMP_ALIGN
123.CheckZeroOffsetFor128Sectors:
124    cmp     al, 128
125    ja      SHORT InvalidNumberOfSectorsRequested
126    test    si, si                              ; Offset must be zero to xfer 128 sectors
127    jnz     SHORT CannotAlignPointerProperly
128    ret     ; Continue with transfer
129
130InvalidDAP:
131InvalidNumberOfSectorsRequested:
132Prepare_ReturnFromInt13hWithInvalidFunctionError:
133    mov     ah, RET_HD_INVALID
134    SKIP2B  f
135CannotAlignPointerProperly:
136    mov     ah, RET_HD_BOUNDARY
137ZeroSectorsRequestedSoNoErrors:
138    jmp     Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
139
140
141
142; Command lookup tables
143g_rgbReadCommandLookup:
144    db      COMMAND_READ_SECTORS        ; 00b, CHS or LBA28 single sector
145    db      COMMAND_READ_SECTORS_EXT    ; 01b, LBA48 single sector
146    db      COMMAND_READ_MULTIPLE       ; 10b, CHS or LBA28 block mode
147%ifdef MODULE_EBIOS
148    db      COMMAND_READ_MULTIPLE_EXT   ; 11b, LBA48 block mode
149%endif
150
151g_rgbWriteCommandLookup:
152    db      COMMAND_WRITE_SECTORS
153    db      COMMAND_WRITE_SECTORS_EXT
154    db      COMMAND_WRITE_MULTIPLE
155%ifdef MODULE_EBIOS
156    db      COMMAND_WRITE_MULTIPLE_EXT
157%endif
158
159g_rgbVerifyCommandLookup:
160    db      COMMAND_VERIFY_SECTORS
161    db      COMMAND_VERIFY_SECTORS_EXT
162    db      COMMAND_VERIFY_SECTORS
163%ifdef MODULE_EBIOS
164    db      COMMAND_VERIFY_SECTORS_EXT
165%endif
Note: See TracBrowser for help on using the repository browser.