source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/EBIOS/AH48h_GetExtendedDriveParameters.asm @ 376

Last change on this file since 376 was 376, checked in by gregli@…, 12 years ago

WIDE checkin... Added copyright and license information to sorce files, as per the GPL instructions for usage.

File size: 2.7 KB
RevLine 
[165]1; Project name  :   XTIDE Universal BIOS
2; Description   :   Int 13h function AH=48h, Get Extended Drive Parameters.
3
[376]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
[165]20; Section containing code
21SECTION .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
[294]37;       CF:     0 if successful, 1 if error
[165]38;--------------------------------------------------------------------
39AH48h_HandlerForGetExtendedDriveParameters:
[228]40    call    AccessDPT_GetPointerToDRVPARAMStoCSBX
41    push    bx
[227]42    call    AccessDPT_GetLbaSectorCountToBXDXAX
[228]43    pop     di          ; CS:DI now points to DRVPARAMS
[167]44
[227]45    ; Point DS:SI to Extended Drive Information Table to fill
[169]46    mov     ds, [bp+IDEPACK.intpack+INTPACK.ds]
[227]47    mov     cx, MINIMUM_EDRIVEINFO_SIZE
48    cmp     [si+EDRIVE_INFO.wSize], cx
[332]49    jb      Prepare_ReturnFromInt13hWithInvalidFunctionError
[167]50    je      SHORT .SkipEddConfigurationParameters
[165]51
[167]52    ; We do not support EDD Configuration Parameters so set to FFFF:FFFFh
[227]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
[167]57
[227]58    ; Fill Extended Drive Information Table in DS:SI
[167]59.SkipEddConfigurationParameters:
[227]60    mov     [si+EDRIVE_INFO.wSize], cx
61    mov     WORD [si+EDRIVE_INFO.wFlags], FLG_DMA_BOUNDARY_ERRORS_HANDLED_BY_BIOS
[165]62
[324]63    ; Store total sector count
[228]64    mov     [si+EDRIVE_INFO.qwTotalSectors], ax
[227]65    xor     ax, ax                                  ; Return with success
[228]66    mov     [si+EDRIVE_INFO.qwTotalSectors+2], dx
67    mov     [si+EDRIVE_INFO.qwTotalSectors+4], bx
[229]68    mov     [si+EDRIVE_INFO.qwTotalSectors+6], ax   ; Always zero
[228]69    mov     WORD [si+EDRIVE_INFO.wSectorSize], 512
[169]70
[167]71.ReturnWithError:
[165]72    jmp     Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
Note: See TracBrowser for help on using the repository browser.