home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / os / os2 / misc / 29395 < prev    next >
Encoding:
Internet Message Format  |  1992-09-08  |  2.0 KB

  1. Path: sparky!uunet!portal!cup.portal.com!ts
  2. From: ts@cup.portal.com (Tim W Smith)
  3. Newsgroups: comp.os.os2.misc
  4. Subject: Re: Bustek and OS/2
  5. Message-ID: <65364@cup.portal.com>
  6. Date: Sun,  6 Sep 92 05:56:22 PDT
  7. Organization: The Portal System (TM)
  8. References: <EecI7FS00awDA7K4Jb@andrew.cmu.edu>
  9.   <1992Aug31.155429.2928@midway.uchicago.edu> <meek.715318796@fizzy>
  10.   <5330@blue.cis.pitt.edu.UUCP>
  11. Lines: 34
  12.  
  13. > BUT ... the tech support person I spoke with said that there was no ASPI
  14. > driver and no plans to produce one (!). Since I need the ASPI driver for
  15. > a tape drive, I settled on Adaptec. Bustek said that their host adapters
  16.  
  17. It's not surprising that they won't have an ASPI driver.  The way SCSI is
  18. supposed to work in OS/2 2.0 is that there are Adapter Device Drivers
  19. for host adaptor cards.  These have names of the form FOO.ADD.
  20.  
  21. ADD's report what devices are present, and process commands at the level
  22. of "read these blocks" or "write those blocks."  The ADD interface is
  23. not specific to SCSI.  IBM supplies ADDs for floppy and ST-506 controllers
  24. for example.
  25.  
  26. SCSI ADDs have to respond to additional requests of the form "execute this
  27. SCSI command."
  28.  
  29. The ADDs are used by Device Manager Drivers (DMDs).  OS2DASD.DMD, for
  30. example, converts requests from the OS/2 file system to requests for
  31. ADDs.  OS2SCSI.DMD manages SCSI ADDs. 
  32.  
  33. The documentation in the ADD developers kit mentions an OS2ASPI.DMD.  This
  34. would be where ASPI requests are handled.  Presumably, it converts them
  35. requests for SCSI ADDs.
  36.  
  37. Thus, to support a given host adaptor, all you need is the ADD for that
  38. host adaptor.  (Note that if you just want to use disks, you don't even
  39. need that.  OS/2 will use the INT 13h BIOS of the host adaptor if there
  40. is no ADD.  Many people will find this to be good enough.)
  41.  
  42. I don't know how well the above corresponds to reality -- the ADD
  43. documentation is not final yet (at least, the copy I have is cleary
  44. preliminary...), so I don't know if OS2ASPI.DMD exists and is available.
  45.  
  46. --Tim Smith
  47.