advansys.txt 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. AdvanSys (Advanced System Products, Inc.) manufactures the following
  2. RISC-based, Bus-Mastering, Fast (10 Mhz) and Ultra (20 Mhz) Narrow
  3. (8-bit transfer) SCSI Host Adapters for the ISA, EISA, VL, and PCI
  4. buses and RISC-based, Bus-Mastering, Ultra (20 Mhz) Wide (16-bit
  5. transfer) SCSI Host Adapters for the PCI bus.
  6. The CDB counts below indicate the number of SCSI CDB (Command
  7. Descriptor Block) requests that can be stored in the RISC chip
  8. cache and board LRAM. A CDB is a single SCSI command. The driver
  9. detect routine will display the number of CDBs available for each
  10. adapter detected. The number of CDBs used by the driver can be
  11. lowered in the BIOS by changing the 'Host Queue Size' adapter setting.
  12. Laptop Products:
  13. ABP-480 - Bus-Master CardBus (16 CDB)
  14. Connectivity Products:
  15. ABP510/5150 - Bus-Master ISA (240 CDB)
  16. ABP5140 - Bus-Master ISA PnP (16 CDB)
  17. ABP5142 - Bus-Master ISA PnP with floppy (16 CDB)
  18. ABP902/3902 - Bus-Master PCI (16 CDB)
  19. ABP3905 - Bus-Master PCI (16 CDB)
  20. ABP915 - Bus-Master PCI (16 CDB)
  21. ABP920 - Bus-Master PCI (16 CDB)
  22. ABP3922 - Bus-Master PCI (16 CDB)
  23. ABP3925 - Bus-Master PCI (16 CDB)
  24. ABP930 - Bus-Master PCI (16 CDB)
  25. ABP930U - Bus-Master PCI Ultra (16 CDB)
  26. ABP930UA - Bus-Master PCI Ultra (16 CDB)
  27. ABP960 - Bus-Master PCI MAC/PC (16 CDB)
  28. ABP960U - Bus-Master PCI MAC/PC Ultra (16 CDB)
  29. Single Channel Products:
  30. ABP542 - Bus-Master ISA with floppy (240 CDB)
  31. ABP742 - Bus-Master EISA (240 CDB)
  32. ABP842 - Bus-Master VL (240 CDB)
  33. ABP940 - Bus-Master PCI (240 CDB)
  34. ABP940U - Bus-Master PCI Ultra (240 CDB)
  35. ABP940UA/3940UA - Bus-Master PCI Ultra (240 CDB)
  36. ABP970 - Bus-Master PCI MAC/PC (240 CDB)
  37. ABP970U - Bus-Master PCI MAC/PC Ultra (240 CDB)
  38. ABP3960UA - Bus-Master PCI MAC/PC Ultra (240 CDB)
  39. ABP940UW/3940UW - Bus-Master PCI Ultra-Wide (253 CDB)
  40. ABP970UW - Bus-Master PCI MAC/PC Ultra-Wide (253 CDB)
  41. ABP3940U2W - Bus-Master PCI LVD/Ultra2-Wide (253 CDB)
  42. Multi-Channel Products:
  43. ABP752 - Dual Channel Bus-Master EISA (240 CDB Per Channel)
  44. ABP852 - Dual Channel Bus-Master VL (240 CDB Per Channel)
  45. ABP950 - Dual Channel Bus-Master PCI (240 CDB Per Channel)
  46. ABP950UW - Dual Channel Bus-Master PCI Ultra-Wide (253 CDB Per Channel)
  47. ABP980 - Four Channel Bus-Master PCI (240 CDB Per Channel)
  48. ABP980U - Four Channel Bus-Master PCI Ultra (240 CDB Per Channel)
  49. ABP980UA/3980UA - Four Channel Bus-Master PCI Ultra (16 CDB Per Chan.)
  50. ABP3950U2W - Bus-Master PCI LVD/Ultra2-Wide and Ultra-Wide (253 CDB)
  51. ABP3950U3W - Bus-Master PCI Dual LVD2/Ultra3-Wide (253 CDB)
  52. Driver Compile Time Options and Debugging
  53. The following constants can be defined in the source file.
  54. 1. ADVANSYS_ASSERT - Enable driver assertions (Def: Enabled)
  55. Enabling this option adds assertion logic statements to the
  56. driver. If an assertion fails a message will be displayed to
  57. the console, but the system will continue to operate. Any
  58. assertions encountered should be reported to the person
  59. responsible for the driver. Assertion statements may proactively
  60. detect problems with the driver and facilitate fixing these
  61. problems. Enabling assertions will add a small overhead to the
  62. execution of the driver.
  63. 2. ADVANSYS_DEBUG - Enable driver debugging (Def: Disabled)
  64. Enabling this option adds tracing functions to the driver and the
  65. ability to set a driver tracing level at boot time. This option is
  66. very useful for debugging the driver, but it will add to the size
  67. of the driver execution image and add overhead to the execution of
  68. the driver.
  69. The amount of debugging output can be controlled with the global
  70. variable 'asc_dbglvl'. The higher the number the more output. By
  71. default the debug level is 0.
  72. If the driver is loaded at boot time and the LILO Driver Option
  73. is included in the system, the debug level can be changed by
  74. specifying a 5th (ASC_NUM_IOPORT_PROBE + 1) I/O Port. The
  75. first three hex digits of the pseudo I/O Port must be set to
  76. 'deb' and the fourth hex digit specifies the debug level: 0 - F.
  77. The following command line will look for an adapter at 0x330
  78. and set the debug level to 2.
  79. linux advansys=0x330,0,0,0,0xdeb2
  80. If the driver is built as a loadable module this variable can be
  81. defined when the driver is loaded. The following insmod command
  82. will set the debug level to one.
  83. insmod advansys.o asc_dbglvl=1
  84. Debugging Message Levels:
  85. 0: Errors Only
  86. 1: High-Level Tracing
  87. 2-N: Verbose Tracing
  88. To enable debug output to console, please make sure that:
  89. a. System and kernel logging is enabled (syslogd, klogd running).
  90. b. Kernel messages are routed to console output. Check
  91. /etc/syslog.conf for an entry similar to this:
  92. kern.* /dev/console
  93. c. klogd is started with the appropriate -c parameter
  94. (e.g. klogd -c 8)
  95. This will cause printk() messages to be be displayed on the
  96. current console. Refer to the klogd(8) and syslogd(8) man pages
  97. for details.
  98. Alternatively you can enable printk() to console with this
  99. program. However, this is not the 'official' way to do this.
  100. Debug output is logged in /var/log/messages.
  101. main()
  102. {
  103. syscall(103, 7, 0, 0);
  104. }
  105. Increasing LOG_BUF_LEN in kernel/printk.c to something like
  106. 40960 allows more debug messages to be buffered in the kernel
  107. and written to the console or log file.
  108. 3. ADVANSYS_STATS - Enable statistics (Def: Enabled)
  109. Enabling this option adds statistics collection and display
  110. through /proc to the driver. The information is useful for
  111. monitoring driver and device performance. It will add to the
  112. size of the driver execution image and add minor overhead to
  113. the execution of the driver.
  114. Statistics are maintained on a per adapter basis. Driver entry
  115. point call counts and transfer size counts are maintained.
  116. Statistics are only available for kernels greater than or equal
  117. to v1.3.0 with the CONFIG_PROC_FS (/proc) file system configured.
  118. AdvanSys SCSI adapter files have the following path name format:
  119. /proc/scsi/advansys/{0,1,2,3,...}
  120. This information can be displayed with cat. For example:
  121. cat /proc/scsi/advansys/0
  122. When ADVANSYS_STATS is not defined the AdvanSys /proc files only
  123. contain adapter and device configuration information.
  124. Driver LILO Option
  125. If init/main.c is modified as described in the 'Directions for Adding
  126. the AdvanSys Driver to Linux' section (B.4.) above, the driver will
  127. recognize the 'advansys' LILO command line and /etc/lilo.conf option.
  128. This option can be used to either disable I/O port scanning or to limit
  129. scanning to 1 - 4 I/O ports. Regardless of the option setting EISA and
  130. PCI boards will still be searched for and detected. This option only
  131. affects searching for ISA and VL boards.
  132. Examples:
  133. 1. Eliminate I/O port scanning:
  134. boot: linux advansys=
  135. or
  136. boot: linux advansys=0x0
  137. 2. Limit I/O port scanning to one I/O port:
  138. boot: linux advansys=0x110
  139. 3. Limit I/O port scanning to four I/O ports:
  140. boot: linux advansys=0x110,0x210,0x230,0x330
  141. For a loadable module the same effect can be achieved by setting
  142. the 'asc_iopflag' variable and 'asc_ioport' array when loading
  143. the driver, e.g.
  144. insmod advansys.o asc_iopflag=1 asc_ioport=0x110,0x330
  145. If ADVANSYS_DEBUG is defined a 5th (ASC_NUM_IOPORT_PROBE + 1)
  146. I/O Port may be added to specify the driver debug level. Refer to
  147. the 'Driver Compile Time Options and Debugging' section above for
  148. more information.
  149. Credits (Chronological Order)
  150. Bob Frey <bfrey@turbolinux.com.cn> wrote the AdvanSys SCSI driver
  151. and maintained it up to 3.3F. He continues to answer questions
  152. and help maintain the driver.
  153. Nathan Hartwell <mage@cdc3.cdc.net> provided the directions and
  154. basis for the Linux v1.3.X changes which were included in the
  155. 1.2 release.
  156. Thomas E Zerucha <zerucha@shell.portal.com> pointed out a bug
  157. in advansys_biosparam() which was fixed in the 1.3 release.
  158. Erik Ratcliffe <erik@caldera.com> has done testing of the
  159. AdvanSys driver in the Caldera releases.
  160. Rik van Riel <H.H.vanRiel@fys.ruu.nl> provided a patch to
  161. AscWaitTixISRDone() which he found necessary to make the
  162. driver work with a SCSI-1 disk.
  163. Mark Moran <mmoran@mmoran.com> has helped test Ultra-Wide
  164. support in the 3.1A driver.
  165. Doug Gilbert <dgilbert@interlog.com> has made changes and
  166. suggestions to improve the driver and done a lot of testing.
  167. Ken Mort <ken@mort.net> reported a DEBUG compile bug fixed
  168. in 3.2K.
  169. Tom Rini <trini@kernel.crashing.org> provided the CONFIG_ISA
  170. patch and helped with PowerPC wide and narrow board support.
  171. Philip Blundell <philb@gnu.org> provided an
  172. advansys_interrupts_enabled patch.
  173. Dave Jones <dave@denial.force9.co.uk> reported the compiler
  174. warnings generated when CONFIG_PROC_FS was not defined in
  175. the 3.2M driver.
  176. Jerry Quinn <jlquinn@us.ibm.com> fixed PowerPC support (endian
  177. problems) for wide cards.
  178. Bryan Henderson <bryanh@giraffe-data.com> helped debug narrow
  179. card error handling.
  180. Manuel Veloso <veloso@pobox.com> worked hard on PowerPC narrow
  181. board support and fixed a bug in AscGetEEPConfig().
  182. Arnaldo Carvalho de Melo <acme@conectiva.com.br> made
  183. save_flags/restore_flags changes.
  184. Andy Kellner <AKellner@connectcom.net> continued the Advansys SCSI
  185. driver development for ConnectCom (Version > 3.3F).
  186. Ken Witherow for extensive testing during the development of version 3.4.