home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PCGPEV10.ZIP / ATI.TXT < prev    next >
Text File  |  1994-05-10  |  6KB  |  159 lines

  1.  
  2.              ┌────────────────────────────────────────────┐
  3.              │ Programming the ATI Technologies SVGA Chip │
  4.              └────────────────────────────────────────────┘
  5.  
  6.                  Written for the PC-GPE by Mark Feldman
  7.             e-mail address : u914097@student.canberra.edu.au
  8.                              myndale@cairo.anu.edu.au
  9.  
  10.                   Please read the file SVGINTRO.TXT
  11.               (Graphics/SVGA/Intro PC-GPE menu option)
  12.  
  13.              ┌───────────────────────────────────────────┐
  14.              │      THIS FILE MAY NOT BE DISTRIBUTED     │
  15.              │ SEPARATE TO THE ENTIRE PC-GPE COLLECTION. │
  16.              └───────────────────────────────────────────┘
  17.  
  18.  
  19. ┌────────────┬───────────────────────────────────────────────────────────────
  20. │ Disclaimer │
  21. └────────────┘
  22.  
  23. I assume no responsibility whatsoever for any effect that this file, the
  24. information contained therein or the use thereof has on you, your sanity,
  25. computer, spouse, children, pets or anything else related to you or your
  26. existance. No warranty is provided nor implied with this information.
  27.  
  28. ┌────────────────────────────────────┬───────────────────────────────────────
  29. │ Locating the Extended Register Set │
  30. └────────────────────────────────────┘
  31.  
  32. The ATI extended register set is based on the vga's index register scheme,
  33. ie you write the value of the register you want to modify to Index Register
  34. Port and write the actual data to the Data Port (the Data Port is one port
  35. number higher than the Index Register Port). The value of the Index Register
  36. for the ATI extended register set is stored in a word in BIOS ROM at
  37. C000:0010. Apparently ATI want to change the value of this register in
  38. future so they recommend you obtain it by reading the value at this memory
  39. address.
  40.  
  41. ┌──────────────────────────┬─────────────────────────────────────────────────
  42. │ Identifying the ATI Chip │
  43. └──────────────────────────┘
  44.  
  45. The ATI chip can be identified by checking the string in memory locations
  46. C000:0031-003A for the following characters : 761295520
  47.  
  48. ┌────────────────────────────┬───────────────────────────────────────────────
  49. │ Identifying which ATI Chip │
  50. └────────────────────────────┘
  51.  
  52. The first version of the ATI chip is the 18800. The second version is the
  53. 28800, which from a programming perspective is identical to the 18800-2.
  54. The 18800 can be identified by it's lack of support for display mode
  55. 55h.
  56.  
  57. ┌──────────────────────────────────────────┬─────────────────────────────────
  58. │ Determining the ATI Chip Revision Number │
  59. └──────────────────────────────────────────┘
  60.  
  61. The ATI chip revision number is stored at BIOS location C000:0043.
  62.  
  63. ┌────────────────────────────┬───────────────────────────────────────────────
  64. │ ATI Graphics Display Modes │
  65. └────────────────────────────┘
  66.  
  67.              ┌───────────────────────────────────────────────┐
  68.              │ Mode    Resolution   Colors          Chip     │
  69.              ├───────────────────────────────────────────────┤
  70.              │  53h     800x600      16              18800   │
  71.              │  54h     800x600      16              18800   │
  72.              │  55h     1024x768     16 (planar)     18800-1 │
  73.              │  61h     640x400      256             18800   │
  74.              │  62h     640x480      256             18800   │
  75.              │  63h     800x600      256             18800   │
  76.              │  65h     1024x768     256 (packed)    18800   │
  77.              │  67h     1024x768     4               ?       │
  78.              └───────────────────────────────────────────────┘
  79.  
  80. ┌────────────────────┬───────────────────────────────────────────────────────
  81. │ ATI Display Memory │
  82. └────────────────────┘
  83.  
  84. In the following examples the EXT variable is the extended register index
  85. value obtained from reading the word at C000:0010.
  86.  
  87. The ATI supports both single and duel bank memory mapping. It supports 64K
  88. byte pages, each of these can be mapped into the host address space.
  89.  
  90.  
  91.  
  92. Single or duel bank mode is selected by the E2B bit in register BE
  93.  
  94.           Index : BEh at port EXT
  95.           Read/Write at port EXT + 1
  96.           ┌───┬───┬───┬───┬───┬───┬───┬───┐
  97.           │ 7 │ 6 │ 5 │ 4 │ 3 │ 2 │ 1 │ 0 │
  98.           └───┴───┴───┴───┴───┴───┴───┴───┘
  99.                             │
  100.                             └────────────── E2B 0 = Single Bank Mode
  101.                                                 1 = Duel Bank Mode
  102.  
  103. Selecting a bank to write to in single bank mode is done by writing the bank
  104. number to the Bank Select Register :
  105.  
  106.           Index : B2h
  107.           ┌───┬───┬───┬───┬───┬───┬───┬───┐
  108.           │ 7 │ 6 │ 5 │ 4 │ 3 │ 2 │ 1 │ 0 │
  109.           └───┴───┴───┴───┴───┴───┴───┴───┘
  110.                         └─────┬─────┘
  111.                          Bank number
  112.  
  113. The following procedure will select a bank in single bank mode :
  114.  
  115. Port[EXT] := $B2;
  116. Port[EXT + 1] := (Port[EXT + 1] And $E1) Or (bank_number shl 1);
  117.  
  118. where bank_number = 0 - 15. Each bank is 64K long and has a 64K
  119. granularity.
  120.  
  121. Duel Bank Mode is only supported on the 18800-1 and 28800 chips. You can
  122. map one bank to A000:0000-FFFF for read operations and another to the
  123. same address space for write operations.
  124.  
  125.           Index : B2h
  126.           ┌───┬───┬───┬───┬───┬───┬───┬───┐
  127.           │ 7 │ 6 │ 5 │ 4 │ 3 │ 2 │ 1 │ 0 │
  128.           └───┴───┴───┴───┴───┴───┴───┴───┘
  129.             └───┬───┘       └───┬───┘
  130.               Read            Write
  131.               Bank            Bank
  132.               Number          Number
  133.  
  134. The following code will set the write bank number:
  135.  
  136. Port[EXT] := $B2;
  137. Port[EXT + 1] := (Port[EXT + 1] And $F0) Or (write_bank_number shl 1);
  138.  
  139. The following code will set the read bank number:
  140.  
  141. Port[EXT] := $B2;
  142. Port[EXT + 1] := (Port[EXT + 1] And $0F) Or (read_bank_number shl 5);
  143.  
  144. ┌───────────────────────────────┬────────────────────────────────────────────
  145. │ ATI IsModeAvailable BIOS Call │
  146. └───────────────────────────────┘
  147.  
  148. Int 10h
  149. Inputs :
  150.     AH = 12h            Extended VGA Control
  151.     BX = 5506h          Get Mode Information
  152.     BP = FFFF           Set up for Return Argument
  153.     AL = Mode Number    Mode number you want to test
  154.  
  155. Returns:
  156. BP = FFFFh Mode not supported
  157.      Anything else : mode is supported, BP = offset into CRTC table for mode
  158.  
  159.