source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Device/IDE/IdeDPT.asm @ 361

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

Changes to XTIDE Universal BIOS:

  • Added untested support for Fast XTIDE (CPLD v2 project).
  • Removed 8-bit single port device since there does not seem to be any need for one.
File size: 1.9 KB
Line 
1; Project name  :   XTIDE Universal BIOS
2; Description   :   Sets IDE Device specific parameters to DPT.
3
4; Section containing code
5SECTION .text
6
7;--------------------------------------------------------------------
8; IdeDPT_Finalize
9;   Parameters:
10;       DS:DI:  Ptr to Disk Parameter Table
11;       ES:SI:  Ptr to 512-byte ATA information read from the drive
12;       CS:BP:  Ptr to IDEVARS for the controller
13;   Returns:
14;       CF:     Clear, IDE interface only supports hard disks
15;   Corrupts registers:
16;       AX
17;--------------------------------------------------------------------
18IdeDPT_Finalize:
19    ; Fall to .StoreBlockMode
20
21;--------------------------------------------------------------------
22; .StoreBlockMode
23;   Parameters:
24;       DS:DI:  Ptr to Disk Parameter Table
25;       ES:SI:  Ptr to 512-byte ATA information read from the drive
26;       CS:BP:  Ptr to IDEVARS for the controller
27;   Returns:
28;       Nothing
29;   Corrupts registers:
30;       AX
31;--------------------------------------------------------------------
32.StoreBlockMode:
33    mov     al, 1                           ; Block mode will be enabled on AH=9h
34    mov     ah, [es:si+ATA1.bBlckSize]      ; Max block size in sectors
35    mov     [di+DPT_ATA.wSetAndMaxBlock], ax
36    ; Fall to IdeDPT_StoreReversedAddressLinesFlagIfNecessary
37
38;--------------------------------------------------------------------
39; IdeDPT_StoreReversedAddressLinesFlagIfNecessary
40;   Parameters:
41;       DS:DI:  Ptr to Disk Parameter Table
42;       CS:BP:  Ptr to IDEVARS for the controller
43;   Returns:
44;       CF:     Always clear, we don't support floppies on the IDE inteface
45;   Corrupts registers:
46;       Nothing
47;--------------------------------------------------------------------
48IdeDPT_StoreReversedAddressLinesFlagIfNecessary:
49    cmp     BYTE [cs:bp+IDEVARS.bDevice], DEVICE_XTIDE_REV2
50    je      SHORT .SetFlagForSwappedA0andA3
51    cmp     BYTE [cs:bp+IDEVARS.bDevice], DEVICE_FAST_XTIDE
52    jne     SHORT .EndDPT
53.SetFlagForSwappedA0andA3:
54    or      BYTE [di+DPT.bFlagsHigh], FLGH_DPT_REVERSED_A0_AND_A3
55
56.EndDPT:
57    clc
58    ret
Note: See TracBrowser for help on using the repository browser.