home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / new / disk / misc / pfs / tools / diskspare2.2 / support / programmers.doc < prev    next >
Text File  |  1994-08-08  |  7KB  |  217 lines

  1.  
  2. *****************************************************************
  3. *                                *
  4. *    NOTE:   IF YOU USE THE DISKSPARE.DEVICE FOR YOUR    *
  5. *    PROGRAMS YOU HAVE TO COPY THIS DOC.FILE TOO !!!!    *
  6. *                                *
  7. *    Note:                                        *
  8. *    I can only support your program in future releases    *
  9. *    of the device, if you send me a FREE copy.        *
  10. *                                *
  11. *****************************************************************
  12.  
  13. TABLE OF CONTENTS
  14.  
  15. diskspare.device/CMD_Remove
  16. diskspare.device/CMD_GetGeometry
  17. diskspare.device/CMD_RawRead
  18. diskspare.device/CMD_RawWrite
  19. diskspare.device/CMD_Eject
  20. diskspare.device/Open
  21.  
  22. The other commands work like the corresponding trackdisk cmds.
  23.  
  24. KNOWN BUGS:    * The value of dg_CylSectors returned by GetGeoMetry
  25.           is wrong.
  26.           Fixed in V2.0.
  27.         * The Device doesn't support ETD_Cmds correctly.
  28.           Fixed in V2.1.
  29.         * The Device returns an Error IOERR_BADADDRESS
  30.           if the adress of IO_DATA is odd (Not with FFS).
  31.           Fixed in V2.1.
  32.         * If remove is called twice, the System crashes.
  33.           Fixed in V2.1.
  34.         * Error in CloseDevice: Maybe a RemPort on a Port 
  35.           which wasn't added -> Crash (caused by register mistake)
  36.           Fixed in V2.1
  37.         * Error in TD_FORMAT: Doesn't do an Update but flushes
  38.           the trackbuffer.
  39.           Fixed in V2.2
  40.           
  41.  
  42. NAME        Remove
  43.  
  44. FUNCTION    If you are not the FastFileSystem, and I guess 
  45.         you aren't, NEVER call Remove ! 
  46.         It's no use calling Remove !!
  47.         The best thing is to forget that there's a 
  48.         cmd called Remove !!! 
  49.         IF you call this forgotten cmd and the DD<>HD
  50.         autoswitch is enabled (Bit 2 in Flags is set), the 
  51.         system WILL crash !!!!
  52.         If you want to add a diskchange-int, use the
  53.         addchangeint/remchangeint cmd instead.
  54.         
  55.         Why was this patch necessary ?
  56.         Because there's a restriction in the FFS: It checks, 
  57.         if the devicename is 'trackdisk.device' and if it 
  58.         isn't, GetGeometry won't be called.
  59.         
  60.         I tried to fix the disksize in the dosenvec-struct
  61.         and all programs like FixDisk, DiskSalv, Format etc 
  62.         worked fine. BUT the FFS said 'Not a DOS Disk'...
  63.         
  64. SEE ALSO    Includes/exec/alerts.i
  65.  
  66. BUGS        If Remove was called twice, the System crashed.
  67.         Fixed in V2.1.
  68.  
  69. NAME        GetGeometry
  70.  
  71. FUNCTION    Works like trackdisk. If you set Bit 2 when opening
  72.         the device (to allow HD mode), there are two 
  73.         possibilities for Sectors per Track:
  74.         12 sectors/track and 24 sectors/track.
  75.         You have to check this after each diskchange !
  76.         If bit 2 isn't set, there will always be 12 sec/tr
  77.         even with a hd disk in a hd drive, which causes
  78.         read/write errors when trying to write a DD track
  79.         to a HD disk in a HD drive.
  80.                 
  81. SEE ALSO    AutoDocs/trackdisk.doc
  82.  
  83. BUGS        There was a bug in the first release (V1.6):
  84.         The value returned in dg_CylSectors was wrong.
  85.         I forgot an 'ext.l', so the contents of the 
  86.         high order word was rubbish. Fixed in V2.0.
  87.         
  88.  
  89.         
  90. NAME        RawRead
  91.  
  92. FUNCTION    No Function ! Returns IOERR_NOCMD. Use trackdisk
  93.         device for rawread.
  94.  
  95.         
  96.         
  97. NAME        RawWrite
  98.  
  99. FUNCTION    No Function ! Returns IOERR_NOCMD. Use trackdisk
  100.         device for rawwrite.
  101.         
  102.         
  103.         
  104. NAME        Eject
  105.  
  106. FUNCTION    No Function ! Returns IOERR_NOCMD. Use trackdisk
  107.         device to eject (if you've got a drive which ejects).
  108.         
  109.         
  110.         
  111. NAME        OpenDevice
  112.  
  113. FUNCTION    Opens the device with a drive-specific set of flags.
  114.         There's something special about the flags:
  115.         
  116.         If the device wasn't opened yet, everything works as
  117.         usual. If the device was already opened (via Mount)
  118.         your flags will be ignored, but the device won't 
  119.         return an error. (Some well known programs crash
  120.         when an OPENFAIL was returned ??? They obviously
  121.         don't use the fssm_Flags when opening AND don't 
  122.         check for errors ?¿?)
  123.         
  124.         The active flags are returned in IO_ACTUAL. So you 
  125.         can check whether the flags fit your needs or not.        
  126.         
  127.         Why ?
  128.         If the user has mounted the device with HighCyl = 79
  129.         and/or hd-mode disabled then it's his decision not to 
  130.         use it and you HAVE TO accept that.
  131.         It's the users Amiga not yours. 
  132.  
  133.         The minimum you get is:
  134.         
  135.         heads:              2
  136.         tracks:            160
  137.         sectors/track:       12
  138.         bytes/sector:        512        
  139.         
  140.         # of sectors:           1920
  141.         total bytes:         983040
  142.  
  143.  
  144. SEE ALSO    AutoDocs/exec.doc/opendevice
  145.          
  146.  
  147. FLAGS
  148.         BIT    0    0: disable diskchange for DFX:
  149.                 1: enable diskchange for DFX:
  150.         Works only when mounting the device with the FastFileSystem.
  151.         When you open the device and don't call the forgotten
  152.         cmd the diskchange-int of the corresponding trackdisk
  153.         drive won't be affected.
  154.         
  155.         BIT    1    0: HighCyl is Cyl. 79
  156.                 1: HighCyl is Cyl. 81
  157.         When set to '1' trackdisk WILL be patched everytime a
  158.         track is read/written from/to disk!
  159.         
  160.         BIT    2    0: ONLY 960K/984K mode (DD) available
  161.                 1: Autodetection of DD/HD-disks (1968K)
  162.         Call GetGeometry to get the right disksize. See above.
  163.         The patch for the ffs is in the remove cmd. So if you
  164.         open without bit 1 set and don't call the forgotten cmd
  165.         NOTHING is patched !!
  166.                 
  167.         BIT    3    0: Use any Mem for trackbuffer
  168.                 1: Try to use Mem from $600000 - $A00000
  169.                    If there's no memory at this location
  170.                    any other mem is used.
  171.         Why ? I've got an A2000 with A2630 (which has it's mem at
  172.         $200000-$5FFFFF) and a 16bit Ramcard at $600000 - $A00000.
  173.         So why should I use the 32bit ram (which is prefered when
  174.         calling allocmem) for a trackbuffer ?
  175.         This bit may be useful for A3/4000 with 16bit ramboards too.
  176.     
  177.         BIT    4-31    are currently unused and RESERVED.                
  178.  
  179.  
  180. NOTES        
  181.  
  182.     HD-Mode:
  183.     To check if the drive is a highdensity one you may call
  184.     GetUnitID from the disk.resource. Here are the Results:
  185.         
  186.     No Disk in any Drive    ->    returns 0x00000000
  187.     Any Disk in a DD Drive    ->    returns 0x00000000
  188.     A DD-Disk in a HD Drive ->    returns 0x00000000
  189.     A HD-Disk in a HD Drive    ->    returns 0xAAAAAAAA
  190.     No Drive connected    ->    returns 0xFFFFFFFF
  191.         
  192.     As you can see, it's not possible to check if the drive
  193.     is a hd one, if there's no HD Disk in it.
  194.     So if you don't want to waste chipmem, you have to ask the
  195.     user whether he's got a hd drive or not.
  196.  
  197.         AddChangeInt:
  198.         If you've already added a ChangeInt with the trackdisk.device,
  199.         you needn't add one with diskspare.device because it's directly 
  200.         passed through to the trackdisk.device.
  201.  
  202.     Inhibit:
  203.     It's a good idea to inhibit the corresponding trackdisk drive
  204.     (DFX) when accessing the disk via diskspare.device. Also
  205.     check for mounted diskspare drives. Don't rely on the names 
  206.     DS0: to DS3: when you inhibit the DOS. 
  207.     The device itself can't inhibit the DOS because a task isn't 
  208.     allowed to call a dos.lib function.
  209.     
  210.     
  211.     General:
  212.     The main purpose of this device is to be mounted with the
  213.     FastFileSystem or better with the ProfFileSystem. So always 
  214.     remember that you may not be the only accessor !!
  215.         
  216.     
  217.