1 | ; Project name : XTIDE Universal BIOS
|
---|
2 | ; Description : Int 13h function AH=48h, Get Extended Drive Parameters.
|
---|
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 | ; Section containing code
|
---|
21 | SECTION .text
|
---|
22 |
|
---|
23 | ;--------------------------------------------------------------------
|
---|
24 | ; Int 13h function AH=48h, Get Extended Drive Parameters.
|
---|
25 | ;
|
---|
26 | ; AH48h_GetExtendedDriveParameters
|
---|
27 | ; Parameters:
|
---|
28 | ; SI: Same as in INTPACK
|
---|
29 | ; DL: Translated Drive number
|
---|
30 | ; DS:DI: Ptr to DPT (in RAMVARS segment)
|
---|
31 | ; SS:BP: Ptr to IDEPACK
|
---|
32 | ; Parameters on INTPACK:
|
---|
33 | ; DS:SI: Ptr to Extended Drive Information Table to fill
|
---|
34 | ; Returns with INTPACK:
|
---|
35 | ; AH: Int 13h return status
|
---|
36 | ; DS:SI: Ptr to Extended Drive Information Table
|
---|
37 | ; CF: 0 if successful, 1 if error
|
---|
38 | ;--------------------------------------------------------------------
|
---|
39 | AH48h_HandlerForGetExtendedDriveParameters:
|
---|
40 | call AccessDPT_GetPointerToDRVPARAMStoCSBX
|
---|
41 | push bx
|
---|
42 | call AccessDPT_GetLbaSectorCountToBXDXAX
|
---|
43 | pop di ; CS:DI now points to DRVPARAMS
|
---|
44 |
|
---|
45 | ; Point DS:SI to Extended Drive Information Table to fill
|
---|
46 | mov ds, [bp+IDEPACK.intpack+INTPACK.ds]
|
---|
47 | mov cx, MINIMUM_EDRIVEINFO_SIZE
|
---|
48 | cmp [si+EDRIVE_INFO.wSize], cx
|
---|
49 | jb Prepare_ReturnFromInt13hWithInvalidFunctionError
|
---|
50 | je SHORT .SkipEddConfigurationParameters
|
---|
51 |
|
---|
52 | ; We do not support EDD Configuration Parameters so set to FFFF:FFFFh
|
---|
53 | mov cx, -1 ; FFFFh
|
---|
54 | mov [si+EDRIVE_INFO.fpEDDparams], cx
|
---|
55 | mov [si+EDRIVE_INFO.fpEDDparams+2], cx
|
---|
56 | mov cx, EDRIVE_INFO_size
|
---|
57 |
|
---|
58 | ; Fill Extended Drive Information Table in DS:SI
|
---|
59 | .SkipEddConfigurationParameters:
|
---|
60 | mov [si+EDRIVE_INFO.wSize], cx
|
---|
61 | mov WORD [si+EDRIVE_INFO.wFlags], FLG_DMA_BOUNDARY_ERRORS_HANDLED_BY_BIOS
|
---|
62 |
|
---|
63 | ; Store total sector count
|
---|
64 | mov [si+EDRIVE_INFO.qwTotalSectors], ax
|
---|
65 | xor ax, ax ; Return with success
|
---|
66 | mov [si+EDRIVE_INFO.qwTotalSectors+2], dx
|
---|
67 | mov [si+EDRIVE_INFO.qwTotalSectors+4], bx
|
---|
68 | mov [si+EDRIVE_INFO.qwTotalSectors+6], ax ; Always zero
|
---|
69 | mov WORD [si+EDRIVE_INFO.wSectorSize], 512
|
---|
70 |
|
---|
71 | .ReturnWithError:
|
---|
72 | jmp Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
|
---|