home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 12: Textmags & Docs / nf_archive_12.iso / MAGS / SOURCES / ATARI_SRC.ZIP / atari source / HDX_BACK / HDX502 / README < prev    next >
Encoding:
Text File  |  2001-02-09  |  4.7 KB  |  172 lines

  1.  
  2. Version 5.02
  3.  
  4. Apr-9-1993  jye.    To fixed a problem for the Conner CP2088 drive, which HDX
  5.                     can't Markbad it in Format, because this kind of drive has
  6.                     the different values of head, cylinder, and spt between the
  7.                     physical and logical parameters, so I added a inqury() call
  8.                     right after the 'fmtunt()' in 'dodiform()' to up date the
  9.                     table, because 'fmtunt()' changes the physical parameters 
  10.                     to the logical parameters.
  11.  
  12.  
  13.  
  14. Version 5.01a
  15.  
  16.  
  17. Mar-15-93    jye: Fix a bug in the 'rescan()' of HDX5.01. If a floptical drive
  18.  
  19.             in the system, the HDX will think it is a removable drive, then 
  20.  
  21.             ingnores to check if it's also a SCSI drive, on the other words,
  22.  
  23.             forgets to set a bit in the 'typedev' flag, which later will tell
  24.  
  25.             the HDX how to do the format and partition. This bug exsit because
  26.  
  27.             HDX5.01 thinks removable drive only in the ACSI train, which is not
  28.  
  29.             true in today.
  30.  
  31. Mar-10-93    jye: change the partition size limit to 256MB in the 'stepart.c'
  32.  
  33.             file, so that it can be partition over 256MB.
  34.  
  35.  
  36.  
  37.  
  38. Feb-15-93    jye:
  39.  
  40. 1.    Later I found it was a software problem in AHDI.PRG -- The timing problem 
  41.  
  42.     between the DMA controller and the drive when handshaking after the Command
  43.     
  44.     or Status or Data transfer. When this kind of DMA method transfer occur,
  45.     
  46.     first the controller send 6 bytes of the command blocks, then do some hand-
  47.  
  48.     shaking, one of the handshaking is get the status byte, but when reading
  49.  
  50.     the status byte, have to check and wait for the REQ to come, then read the
  51.  
  52.     status byte, and the rest DMA transfer can go on to finish. For the AHDI6.03
  53.  
  54.     and HDX5.01, they didn't check and waiting for the REQ to come, then they do
  55.  
  56.     the rest of DMA transfer, for some drives if their REQ come very quick, then
  57.  
  58.     AHDI6.03 and HDX5.01 won't have the timing problem, so they can work out
  59.  
  60.     fine with those kind of drives. But for some drives if their REQ come very
  61.  
  62.     slowly, like the Syquest 88MB and IBM OEM 0663E15 1.2GB drives, then the 
  63.  
  64.     AHDI6.03 and HDX5.01 will have the timing problem which makes the AHDI6.03
  65.  
  66.     can't recognize these kind of dirves, and can't read or write the drives.
  67.  
  68.  
  69. 2.    Now, the AHDI6.03a and HDX5.01a have fixed this kind of timing problem, I 
  70.  
  71.     wrote some codes to check the REQ before continueing to do the rest of DMA
  72.     
  73.     transfer in SPSCSI.S of AHDI6.03 and in HDX5.01 too. So they can work well 
  74.     
  75.     for Syquest 88MB and IBM OEM 0663E15 drive.
  76.  
  77.  
  78. Jan-3-93 jye:
  79.  
  80.     Killed a HDX 5.01 bug which gave some bombs when there was no wincap file
  81.  
  82.     next to the HDX.PRG. So now we can run the HDX 5.01 without the wincap file.
  83.  
  84.     Wincap file will be needed when those hard disks are not standard, for 
  85.     
  86.     example, HDX can't get the hard disk informations from those function call 
  87.     
  88.     'readcap()', 'inquiry()' and so on.
  89.  
  90.  
  91.  
  92. Version 5.01
  93.  
  94.  
  95. Aug - Oct 92
  96.  
  97.  
  98.     Up date the HDX to 5.01 version so that can be used for the Falcon:
  99.  
  100.  
  101.         a.    Changed the user interface to the scroll bar when selecting which
  102.  
  103.             unit is going to be done the partition or format operations.
  104.  
  105.         b.    Deleted the 'ship' operation from the HDX because the new hard
  106.  
  107.             disk will part the head automatically when turning off the power.
  108.  
  109.  
  110.  
  111. Dec-12-92 jye:
  112.  
  113.     Fixed a bug in the HDX5.01 so that now can be used for the SH204.
  114.  
  115.     Read AHDI source codes, and try to understand it. And try to find something 
  116.     
  117.     new to do.
  118.  
  119.  
  120. May-23-92    jye:
  121.  
  122.     Somethings have been up date for the HDX401 to the 5.00 version.
  123.  
  124.  
  125. 1.     When partition, the dialog box that asks you if the hard disk drive to 
  126.  
  127.     be formatted is an ACSI or a SCSI drive will display only if there are
  128.  
  129.     more than two different kinds, now the dialog box have three different
  130.  
  131.     kind of selections, ACSI, SCSI or IDE-AT.
  132.  
  133.     
  134.  
  135. 2.    It can be used for partition or format ACSI, SCSI, IDE-AT and the 
  136.  
  137.     NOTE-BOOK.
  138.  
  139.  
  140.  
  141. 3.    For the SCSI drive, HDX will allow to put the number of cylinders, heads
  142.  
  143.     , and sector per track into the WINCAP, when partition or format, the
  144.  
  145.     HDX will read from the WINCAP instead call the READCAP to get the hard 
  146.  
  147.     disk size, but if there are not informations in the WINCAP, the HDX will
  148.  
  149.     call the READCAP to get the hard disk size. The previous version assumes
  150.  
  151.     that the SCSI drive will always returns the disk size through the 
  152.  
  153.     READCAP.
  154.  
  155.  
  156.  
  157. 4.    For the ACSI and SCSI in the ACSI bus, HDX will try to find the hard 
  158.  
  159.     disk size from the WINCAP, or MDSENSE through the page code 0 or 3 or 4,
  160.  
  161.     this way will make this HDX can format or partition more variety hard 
  162.  
  163.     disks.
  164.      
  165.  
  166. 5.  Fix a bug, which was when the system has a Magafile44 in it, and there is 
  167.  
  168.     no cartridge in it, the HDX wouldn't let you do the operation for the rest
  169.  
  170.     hard disk.
  171.  
  172.