eata.c 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592
  1. /*
  2. * eata.c - Low-level driver for EATA/DMA SCSI host adapters.
  3. *
  4. * 03 Jun 2003 Rev. 8.10 for linux-2.5.70
  5. * + Update for new IRQ API.
  6. * + Use "goto" when appropriate.
  7. * + Drop eata.h.
  8. * + Update for new module_param API.
  9. * + Module parameters can now be specified only in the
  10. * same format as the kernel boot options.
  11. *
  12. * boot option old module param
  13. * ----------- ------------------
  14. * addr,... io_port=addr,...
  15. * lc:[y|n] linked_comm=[1|0]
  16. * mq:xx max_queue_depth=xx
  17. * tm:[0|1|2] tag_mode=[0|1|2]
  18. * et:[y|n] ext_tran=[1|0]
  19. * rs:[y|n] rev_scan=[1|0]
  20. * ip:[y|n] isa_probe=[1|0]
  21. * ep:[y|n] eisa_probe=[1|0]
  22. * pp:[y|n] pci_probe=[1|0]
  23. *
  24. * A valid example using the new parameter format is:
  25. * modprobe eata "eata=0x7410,0x230,lc:y,tm:0,mq:4,ep:n"
  26. *
  27. * which is equivalent to the old format:
  28. * modprobe eata io_port=0x7410,0x230 linked_comm=1 tag_mode=0 \
  29. * max_queue_depth=4 eisa_probe=0
  30. *
  31. * 12 Feb 2003 Rev. 8.04 for linux 2.5.60
  32. * + Release irq before calling scsi_register.
  33. *
  34. * 12 Nov 2002 Rev. 8.02 for linux 2.5.47
  35. * + Release driver_lock before calling scsi_register.
  36. *
  37. * 11 Nov 2002 Rev. 8.01 for linux 2.5.47
  38. * + Fixed bios_param and scsicam_bios_param calling parameters.
  39. *
  40. * 28 Oct 2002 Rev. 8.00 for linux 2.5.44-ac4
  41. * + Use new tcq and adjust_queue_depth api.
  42. * + New command line option (tm:[0-2]) to choose the type of tags:
  43. * 0 -> disable tagging ; 1 -> simple tags ; 2 -> ordered tags.
  44. * Default is tm:0 (tagged commands disabled).
  45. * For compatibility the "tc:" option is an alias of the "tm:"
  46. * option; tc:n is equivalent to tm:0 and tc:y is equivalent to
  47. * tm:1.
  48. * + The tagged_comm module parameter has been removed, use tag_mode
  49. * instead, equivalent to the "tm:" boot option.
  50. *
  51. * 10 Oct 2002 Rev. 7.70 for linux 2.5.42
  52. * + Foreport from revision 6.70.
  53. *
  54. * 25 Jun 2002 Rev. 6.70 for linux 2.4.19
  55. * + This release is the first one tested on a Big Endian platform:
  56. * fixed endian-ness problem due to bitfields;
  57. * fixed endian-ness problem in read_pio.
  58. * + Added new options for selectively probing ISA, EISA and PCI bus:
  59. *
  60. * Boot option Parameter name Default according to
  61. *
  62. * ip:[y|n] isa_probe=[1|0] CONFIG_ISA defined
  63. * ep:[y|n] eisa_probe=[1|0] CONFIG_EISA defined
  64. * pp:[y|n] pci_probe=[1|0] CONFIG_PCI defined
  65. *
  66. * The default action is to perform probing if the corrisponding
  67. * bus is configured and to skip probing otherwise.
  68. *
  69. * + If pci_probe is in effect and a list of I/O ports is specified
  70. * as parameter or boot option, pci_enable_device() is performed
  71. * on all pci devices matching PCI_CLASS_STORAGE_SCSI.
  72. *
  73. * 21 Feb 2002 Rev. 6.52 for linux 2.4.18
  74. * + Backport from rev. 7.22 (use io_request_lock).
  75. *
  76. * 20 Feb 2002 Rev. 7.22 for linux 2.5.5
  77. * + Remove any reference to virt_to_bus().
  78. * + Fix pio hang while detecting multiple HBAs.
  79. * + Fixed a board detection bug: in a system with
  80. * multiple ISA/EISA boards, all but the first one
  81. * were erroneously detected as PCI.
  82. *
  83. * 01 Jan 2002 Rev. 7.20 for linux 2.5.1
  84. * + Use the dynamic DMA mapping API.
  85. *
  86. * 19 Dec 2001 Rev. 7.02 for linux 2.5.1
  87. * + Use SCpnt->sc_data_direction if set.
  88. * + Use sglist.page instead of sglist.address.
  89. *
  90. * 11 Dec 2001 Rev. 7.00 for linux 2.5.1
  91. * + Use host->host_lock instead of io_request_lock.
  92. *
  93. * 1 May 2001 Rev. 6.05 for linux 2.4.4
  94. * + Clean up all pci related routines.
  95. * + Fix data transfer direction for opcode SEND_CUE_SHEET (0x5d)
  96. *
  97. * 30 Jan 2001 Rev. 6.04 for linux 2.4.1
  98. * + Call pci_resource_start after pci_enable_device.
  99. *
  100. * 25 Jan 2001 Rev. 6.03 for linux 2.4.0
  101. * + "check_region" call replaced by "request_region".
  102. *
  103. * 22 Nov 2000 Rev. 6.02 for linux 2.4.0-test11
  104. * + Return code checked when calling pci_enable_device.
  105. * + Removed old scsi error handling support.
  106. * + The obsolete boot option flag eh:n is silently ignored.
  107. * + Removed error messages while a disk drive is powered up at
  108. * boot time.
  109. * + Improved boot messages: all tagged capable device are
  110. * indicated as "tagged" or "soft-tagged" :
  111. * - "soft-tagged" means that the driver is trying to do its
  112. * own tagging (i.e. the tc:y option is in effect);
  113. * - "tagged" means that the device supports tagged commands,
  114. * but the driver lets the HBA be responsible for tagging
  115. * support.
  116. *
  117. * 16 Sep 1999 Rev. 5.11 for linux 2.2.12 and 2.3.18
  118. * + Updated to the new __setup interface for boot command line options.
  119. * + When loaded as a module, accepts the new parameter boot_options
  120. * which value is a string with the same format of the kernel boot
  121. * command line options. A valid example is:
  122. * modprobe eata 'boot_options="0x7410,0x230,lc:y,tc:n,mq:4"'
  123. *
  124. * 9 Sep 1999 Rev. 5.10 for linux 2.2.12 and 2.3.17
  125. * + 64bit cleanup for Linux/Alpha platform support
  126. * (contribution from H.J. Lu).
  127. *
  128. * 22 Jul 1999 Rev. 5.00 for linux 2.2.10 and 2.3.11
  129. * + Removed pre-2.2 source code compatibility.
  130. * + Added call to pci_set_master.
  131. *
  132. * 26 Jul 1998 Rev. 4.33 for linux 2.0.35 and 2.1.111
  133. * + Added command line option (rs:[y|n]) to reverse the scan order
  134. * of PCI boards. The default is rs:y, which reverses the BIOS order
  135. * while registering PCI boards. The default value rs:y generates
  136. * the same order of all previous revisions of this driver.
  137. * Pls. note that "BIOS order" might have been reversed itself
  138. * after the 2.1.9x PCI modifications in the linux kernel.
  139. * The rs value is ignored when the explicit list of addresses
  140. * is used by the "eata=port0,port1,..." command line option.
  141. * + Added command line option (et:[y|n]) to force use of extended
  142. * translation (255 heads, 63 sectors) as disk geometry.
  143. * The default is et:n, which uses the disk geometry returned
  144. * by scsicam_bios_param. The default value et:n is compatible with
  145. * all previous revisions of this driver.
  146. *
  147. * 28 May 1998 Rev. 4.32 for linux 2.0.33 and 2.1.104
  148. * Increased busy timeout from 10 msec. to 200 msec. while
  149. * processing interrupts.
  150. *
  151. * 16 May 1998 Rev. 4.31 for linux 2.0.33 and 2.1.102
  152. * Improved abort handling during the eh recovery process.
  153. *
  154. * 13 May 1998 Rev. 4.30 for linux 2.0.33 and 2.1.101
  155. * The driver is now fully SMP safe, including the
  156. * abort and reset routines.
  157. * Added command line options (eh:[y|n]) to choose between
  158. * new_eh_code and the old scsi code.
  159. * If linux version >= 2.1.101 the default is eh:y, while the eh
  160. * option is ignored for previous releases and the old scsi code
  161. * is used.
  162. *
  163. * 18 Apr 1998 Rev. 4.20 for linux 2.0.33 and 2.1.97
  164. * Reworked interrupt handler.
  165. *
  166. * 11 Apr 1998 rev. 4.05 for linux 2.0.33 and 2.1.95
  167. * Major reliability improvement: when a batch with overlapping
  168. * requests is detected, requests are queued one at a time
  169. * eliminating any possible board or drive reordering.
  170. *
  171. * 10 Apr 1998 rev. 4.04 for linux 2.0.33 and 2.1.95
  172. * Improved SMP support (if linux version >= 2.1.95).
  173. *
  174. * 9 Apr 1998 rev. 4.03 for linux 2.0.33 and 2.1.94
  175. * Added support for new PCI code and IO-APIC remapping of irqs.
  176. * Performance improvement: when sequential i/o is detected,
  177. * always use direct sort instead of reverse sort.
  178. *
  179. * 4 Apr 1998 rev. 4.02 for linux 2.0.33 and 2.1.92
  180. * io_port is now unsigned long.
  181. *
  182. * 17 Mar 1998 rev. 4.01 for linux 2.0.33 and 2.1.88
  183. * Use new scsi error handling code (if linux version >= 2.1.88).
  184. * Use new interrupt code.
  185. *
  186. * 12 Sep 1997 rev. 3.11 for linux 2.0.30 and 2.1.55
  187. * Use of udelay inside the wait loops to avoid timeout
  188. * problems with fast cpus.
  189. * Removed check about useless calls to the interrupt service
  190. * routine (reported on SMP systems only).
  191. * At initialization time "sorted/unsorted" is displayed instead
  192. * of "linked/unlinked" to reinforce the fact that "linking" is
  193. * nothing but "elevator sorting" in the actual implementation.
  194. *
  195. * 17 May 1997 rev. 3.10 for linux 2.0.30 and 2.1.38
  196. * Use of serial_number_at_timeout in abort and reset processing.
  197. * Use of the __initfunc and __initdata macro in setup code.
  198. * Minor cleanups in the list_statistics code.
  199. * Increased controller busy timeout in order to better support
  200. * slow SCSI devices.
  201. *
  202. * 24 Feb 1997 rev. 3.00 for linux 2.0.29 and 2.1.26
  203. * When loading as a module, parameter passing is now supported
  204. * both in 2.0 and in 2.1 style.
  205. * Fixed data transfer direction for some SCSI opcodes.
  206. * Immediate acknowledge to request sense commands.
  207. * Linked commands to each disk device are now reordered by elevator
  208. * sorting. Rare cases in which reordering of write requests could
  209. * cause wrong results are managed.
  210. * Fixed spurious timeouts caused by long simple queue tag sequences.
  211. * New command line option (tm:[0-3]) to choose the type of tags:
  212. * 0 -> mixed (default); 1 -> simple; 2 -> head; 3 -> ordered.
  213. *
  214. * 18 Jan 1997 rev. 2.60 for linux 2.1.21 and 2.0.28
  215. * Added command line options to enable/disable linked commands
  216. * (lc:[y|n]), tagged commands (tc:[y|n]) and to set the max queue
  217. * depth (mq:xx). Default is "eata=lc:n,tc:n,mq:16".
  218. * Improved command linking.
  219. * Documented how to setup RAID-0 with DPT SmartRAID boards.
  220. *
  221. * 8 Jan 1997 rev. 2.50 for linux 2.1.20 and 2.0.27
  222. * Added linked command support.
  223. * Improved detection of PCI boards using ISA base addresses.
  224. *
  225. * 3 Dec 1996 rev. 2.40 for linux 2.1.14 and 2.0.27
  226. * Added support for tagged commands and queue depth adjustment.
  227. *
  228. * 22 Nov 1996 rev. 2.30 for linux 2.1.12 and 2.0.26
  229. * When CONFIG_PCI is defined, BIOS32 is used to include in the
  230. * list of i/o ports to be probed all the PCI SCSI controllers.
  231. * The list of i/o ports to be probed can be overwritten by the
  232. * "eata=port0,port1,...." boot command line option.
  233. * Scatter/gather lists are now allocated by a number of kmalloc
  234. * calls, in order to avoid the previous size limit of 64Kb.
  235. *
  236. * 16 Nov 1996 rev. 2.20 for linux 2.1.10 and 2.0.25
  237. * Added support for EATA 2.0C, PCI, multichannel and wide SCSI.
  238. *
  239. * 27 Sep 1996 rev. 2.12 for linux 2.1.0
  240. * Portability cleanups (virtual/bus addressing, little/big endian
  241. * support).
  242. *
  243. * 09 Jul 1996 rev. 2.11 for linux 2.0.4
  244. * Number of internal retries is now limited.
  245. *
  246. * 16 Apr 1996 rev. 2.10 for linux 1.3.90
  247. * New argument "reset_flags" to the reset routine.
  248. *
  249. * 6 Jul 1995 rev. 2.01 for linux 1.3.7
  250. * Update required by the new /proc/scsi support.
  251. *
  252. * 11 Mar 1995 rev. 2.00 for linux 1.2.0
  253. * Fixed a bug which prevented media change detection for removable
  254. * disk drives.
  255. *
  256. * 23 Feb 1995 rev. 1.18 for linux 1.1.94
  257. * Added a check for scsi_register returning NULL.
  258. *
  259. * 11 Feb 1995 rev. 1.17 for linux 1.1.91
  260. * Now DEBUG_RESET is disabled by default.
  261. * Register a board even if it does not assert DMA protocol support
  262. * (DPT SK2011B does not report correctly the dmasup bit).
  263. *
  264. * 9 Feb 1995 rev. 1.16 for linux 1.1.90
  265. * Use host->wish_block instead of host->block.
  266. * New list of Data Out SCSI commands.
  267. *
  268. * 8 Feb 1995 rev. 1.15 for linux 1.1.89
  269. * Cleared target_time_out counter while performing a reset.
  270. * All external symbols renamed to avoid possible name conflicts.
  271. *
  272. * 28 Jan 1995 rev. 1.14 for linux 1.1.86
  273. * Added module support.
  274. * Log and do a retry when a disk drive returns a target status
  275. * different from zero on a recovered error.
  276. *
  277. * 24 Jan 1995 rev. 1.13 for linux 1.1.85
  278. * Use optimized board configuration, with a measured performance
  279. * increase in the range 10%-20% on i/o throughput.
  280. *
  281. * 16 Jan 1995 rev. 1.12 for linux 1.1.81
  282. * Fix mscp structure comments (no functional change).
  283. * Display a message if check_region detects a port address
  284. * already in use.
  285. *
  286. * 17 Dec 1994 rev. 1.11 for linux 1.1.74
  287. * Use the scsicam_bios_param routine. This allows an easy
  288. * migration path from disk partition tables created using
  289. * different SCSI drivers and non optimal disk geometry.
  290. *
  291. * 15 Dec 1994 rev. 1.10 for linux 1.1.74
  292. * Added support for ISA EATA boards (DPT PM2011, DPT PM2021).
  293. * The host->block flag is set for all the detected ISA boards.
  294. * The detect routine no longer enforces LEVEL triggering
  295. * for EISA boards, it just prints a warning message.
  296. *
  297. * 30 Nov 1994 rev. 1.09 for linux 1.1.68
  298. * Redo i/o on target status CHECK_CONDITION for TYPE_DISK only.
  299. * Added optional support for using a single board at a time.
  300. *
  301. * 18 Nov 1994 rev. 1.08 for linux 1.1.64
  302. * Forces sg_tablesize = 64 and can_queue = 64 if these
  303. * values are not correctly detected (DPT PM2012).
  304. *
  305. * 14 Nov 1994 rev. 1.07 for linux 1.1.63 Final BETA release.
  306. * 04 Aug 1994 rev. 1.00 for linux 1.1.39 First BETA release.
  307. *
  308. *
  309. * This driver is based on the CAM (Common Access Method Committee)
  310. * EATA (Enhanced AT Bus Attachment) rev. 2.0A, using DMA protocol.
  311. *
  312. * Copyright (C) 1994-2003 Dario Ballabio (ballabio_dario@emc.com)
  313. *
  314. * Alternate email: dario.ballabio@inwind.it, dario.ballabio@tiscalinet.it
  315. *
  316. * Redistribution and use in source and binary forms, with or without
  317. * modification, are permitted provided that redistributions of source
  318. * code retain the above copyright notice and this comment without
  319. * modification.
  320. *
  321. */
  322. /*
  323. *
  324. * Here is a brief description of the DPT SCSI host adapters.
  325. * All these boards provide an EATA/DMA compatible programming interface
  326. * and are fully supported by this driver in any configuration, including
  327. * multiple SCSI channels:
  328. *
  329. * PM2011B/9X - Entry Level ISA
  330. * PM2021A/9X - High Performance ISA
  331. * PM2012A Old EISA
  332. * PM2012B Old EISA
  333. * PM2022A/9X - Entry Level EISA
  334. * PM2122A/9X - High Performance EISA
  335. * PM2322A/9X - Extra High Performance EISA
  336. * PM3021 - SmartRAID Adapter for ISA
  337. * PM3222 - SmartRAID Adapter for EISA (PM3222W is 16-bit wide SCSI)
  338. * PM3224 - SmartRAID Adapter for PCI (PM3224W is 16-bit wide SCSI)
  339. * PM33340UW - SmartRAID Adapter for PCI ultra wide multichannel
  340. *
  341. * The above list is just an indication: as a matter of fact all DPT
  342. * boards using the EATA/DMA protocol are supported by this driver,
  343. * since they use exactely the same programming interface.
  344. *
  345. * The DPT PM2001 provides only the EATA/PIO interface and hence is not
  346. * supported by this driver.
  347. *
  348. * This code has been tested with up to 3 Distributed Processing Technology
  349. * PM2122A/9X (DPT SCSI BIOS v002.D1, firmware v05E.0) EISA controllers,
  350. * in any combination of private and shared IRQ.
  351. * PCI support has been tested using up to 2 DPT PM3224W (DPT SCSI BIOS
  352. * v003.D0, firmware v07G.0).
  353. *
  354. * DPT SmartRAID boards support "Hardware Array" - a group of disk drives
  355. * which are all members of the same RAID-0, RAID-1 or RAID-5 array implemented
  356. * in host adapter hardware. Hardware Arrays are fully compatible with this
  357. * driver, since they look to it as a single disk drive.
  358. *
  359. * WARNING: to create a RAID-0 "Hardware Array" you must select "Other Unix"
  360. * as the current OS in the DPTMGR "Initial System Installation" menu.
  361. * Otherwise RAID-0 is generated as an "Array Group" (i.e. software RAID-0),
  362. * which is not supported by the actual SCSI subsystem.
  363. * To get the "Array Group" functionality, the Linux MD driver must be used
  364. * instead of the DPT "Array Group" feature.
  365. *
  366. * Multiple ISA, EISA and PCI boards can be configured in the same system.
  367. * It is suggested to put all the EISA boards on the same IRQ level, all
  368. * the PCI boards on another IRQ level, while ISA boards cannot share
  369. * interrupts.
  370. *
  371. * If you configure multiple boards on the same IRQ, the interrupt must
  372. * be _level_ triggered (not _edge_ triggered).
  373. *
  374. * This driver detects EATA boards by probes at fixed port addresses,
  375. * so no BIOS32 or PCI BIOS support is required.
  376. * The suggested way to detect a generic EATA PCI board is to force on it
  377. * any unused EISA address, even if there are other controllers on the EISA
  378. * bus, or even if you system has no EISA bus at all.
  379. * Do not force any ISA address on EATA PCI boards.
  380. *
  381. * If PCI bios support is configured into the kernel, BIOS32 is used to
  382. * include in the list of i/o ports to be probed all the PCI SCSI controllers.
  383. *
  384. * Due to a DPT BIOS "feature", it might not be possible to force an EISA
  385. * address on more than a single DPT PCI board, so in this case you have to
  386. * let the PCI BIOS assign the addresses.
  387. *
  388. * The sequence of detection probes is:
  389. *
  390. * - ISA 0x1F0;
  391. * - PCI SCSI controllers (only if BIOS32 is available);
  392. * - EISA/PCI 0x1C88 through 0xFC88 (corresponding to EISA slots 1 to 15);
  393. * - ISA 0x170, 0x230, 0x330.
  394. *
  395. * The above list of detection probes can be totally replaced by the
  396. * boot command line option: "eata=port0,port1,port2,...", where the
  397. * port0, port1... arguments are ISA/EISA/PCI addresses to be probed.
  398. * For example using "eata=0x7410,0x7450,0x230", the driver probes
  399. * only the two PCI addresses 0x7410 and 0x7450 and the ISA address 0x230,
  400. * in this order; "eata=0" totally disables this driver.
  401. *
  402. * After the optional list of detection probes, other possible command line
  403. * options are:
  404. *
  405. * et:y force use of extended translation (255 heads, 63 sectors);
  406. * et:n use disk geometry detected by scsicam_bios_param;
  407. * rs:y reverse scan order while detecting PCI boards;
  408. * rs:n use BIOS order while detecting PCI boards;
  409. * lc:y enables linked commands;
  410. * lc:n disables linked commands;
  411. * tm:0 disables tagged commands (same as tc:n);
  412. * tm:1 use simple queue tags (same as tc:y);
  413. * tm:2 use ordered queue tags (same as tc:2);
  414. * mq:xx set the max queue depth to the value xx (2 <= xx <= 32).
  415. *
  416. * The default value is: "eata=lc:n,mq:16,tm:0,et:n,rs:n".
  417. * An example using the list of detection probes could be:
  418. * "eata=0x7410,0x230,lc:y,tm:2,mq:4,et:n".
  419. *
  420. * When loading as a module, parameters can be specified as well.
  421. * The above example would be (use 1 in place of y and 0 in place of n):
  422. *
  423. * modprobe eata io_port=0x7410,0x230 linked_comm=1 \
  424. * max_queue_depth=4 ext_tran=0 tag_mode=2 \
  425. * rev_scan=1
  426. *
  427. * ----------------------------------------------------------------------------
  428. * In this implementation, linked commands are designed to work with any DISK
  429. * or CD-ROM, since this linking has only the intent of clustering (time-wise)
  430. * and reordering by elevator sorting commands directed to each device,
  431. * without any relation with the actual SCSI protocol between the controller
  432. * and the device.
  433. * If Q is the queue depth reported at boot time for each device (also named
  434. * cmds/lun) and Q > 2, whenever there is already an active command to the
  435. * device all other commands to the same device (up to Q-1) are kept waiting
  436. * in the elevator sorting queue. When the active command completes, the
  437. * commands in this queue are sorted by sector address. The sort is chosen
  438. * between increasing or decreasing by minimizing the seek distance between
  439. * the sector of the commands just completed and the sector of the first
  440. * command in the list to be sorted.
  441. * Trivial math assures that the unsorted average seek distance when doing
  442. * random seeks over S sectors is S/3.
  443. * When (Q-1) requests are uniformly distributed over S sectors, the average
  444. * distance between two adjacent requests is S/((Q-1) + 1), so the sorted
  445. * average seek distance for (Q-1) random requests over S sectors is S/Q.
  446. * The elevator sorting hence divides the seek distance by a factor Q/3.
  447. * The above pure geometric remarks are valid in all cases and the
  448. * driver effectively reduces the seek distance by the predicted factor
  449. * when there are Q concurrent read i/o operations on the device, but this
  450. * does not necessarily results in a noticeable performance improvement:
  451. * your mileage may vary....
  452. *
  453. * Note: command reordering inside a batch of queued commands could cause
  454. * wrong results only if there is at least one write request and the
  455. * intersection (sector-wise) of all requests is not empty.
  456. * When the driver detects a batch including overlapping requests
  457. * (a really rare event) strict serial (pid) order is enforced.
  458. * ----------------------------------------------------------------------------
  459. * The extended translation option (et:y) is useful when using large physical
  460. * disks/arrays. It could also be useful when switching between Adaptec boards
  461. * and DPT boards without reformatting the disk.
  462. * When a boot disk is partitioned with extended translation, in order to
  463. * be able to boot it with a DPT board is could be necessary to add to
  464. * lilo.conf additional commands as in the following example:
  465. *
  466. * fix-table
  467. * disk=/dev/sda bios=0x80 sectors=63 heads=128 cylindres=546
  468. *
  469. * where the above geometry should be replaced with the one reported at
  470. * power up by the DPT controller.
  471. * ----------------------------------------------------------------------------
  472. *
  473. * The boards are named EATA0, EATA1,... according to the detection order.
  474. *
  475. * In order to support multiple ISA boards in a reliable way,
  476. * the driver sets host->wish_block = 1 for all ISA boards.
  477. */
  478. #include <linux/string.h>
  479. #include <linux/kernel.h>
  480. #include <linux/ioport.h>
  481. #include <linux/delay.h>
  482. #include <linux/proc_fs.h>
  483. #include <linux/blkdev.h>
  484. #include <linux/interrupt.h>
  485. #include <linux/stat.h>
  486. #include <linux/pci.h>
  487. #include <linux/init.h>
  488. #include <linux/ctype.h>
  489. #include <linux/spinlock.h>
  490. #include <linux/dma-mapping.h>
  491. #include <asm/byteorder.h>
  492. #include <asm/dma.h>
  493. #include <asm/io.h>
  494. #include <asm/irq.h>
  495. #include <scsi/scsi.h>
  496. #include <scsi/scsi_cmnd.h>
  497. #include <scsi/scsi_device.h>
  498. #include <scsi/scsi_host.h>
  499. #include <scsi/scsi_tcq.h>
  500. #include <scsi/scsicam.h>
  501. static int eata2x_detect(struct scsi_host_template *);
  502. static int eata2x_release(struct Scsi_Host *);
  503. static int eata2x_queuecommand(struct scsi_cmnd *,
  504. void (*done) (struct scsi_cmnd *));
  505. static int eata2x_eh_abort(struct scsi_cmnd *);
  506. static int eata2x_eh_host_reset(struct scsi_cmnd *);
  507. static int eata2x_bios_param(struct scsi_device *, struct block_device *,
  508. sector_t, int *);
  509. static int eata2x_slave_configure(struct scsi_device *);
  510. static struct scsi_host_template driver_template = {
  511. .name = "EATA/DMA 2.0x rev. 8.10.00 ",
  512. .detect = eata2x_detect,
  513. .release = eata2x_release,
  514. .queuecommand = eata2x_queuecommand,
  515. .eh_abort_handler = eata2x_eh_abort,
  516. .eh_host_reset_handler = eata2x_eh_host_reset,
  517. .bios_param = eata2x_bios_param,
  518. .slave_configure = eata2x_slave_configure,
  519. .this_id = 7,
  520. .unchecked_isa_dma = 1,
  521. .use_clustering = ENABLE_CLUSTERING,
  522. };
  523. #if !defined(__BIG_ENDIAN_BITFIELD) && !defined(__LITTLE_ENDIAN_BITFIELD)
  524. #error "Adjust your <asm/byteorder.h> defines"
  525. #endif
  526. /* Subversion values */
  527. #define ISA 0
  528. #define ESA 1
  529. #undef FORCE_CONFIG
  530. #undef DEBUG_LINKED_COMMANDS
  531. #undef DEBUG_DETECT
  532. #undef DEBUG_PCI_DETECT
  533. #undef DEBUG_INTERRUPT
  534. #undef DEBUG_RESET
  535. #undef DEBUG_GENERATE_ERRORS
  536. #undef DEBUG_GENERATE_ABORTS
  537. #undef DEBUG_GEOMETRY
  538. #define MAX_ISA 4
  539. #define MAX_VESA 0
  540. #define MAX_EISA 15
  541. #define MAX_PCI 16
  542. #define MAX_BOARDS (MAX_ISA + MAX_VESA + MAX_EISA + MAX_PCI)
  543. #define MAX_CHANNEL 4
  544. #define MAX_LUN 32
  545. #define MAX_TARGET 32
  546. #define MAX_MAILBOXES 64
  547. #define MAX_SGLIST 64
  548. #define MAX_LARGE_SGLIST 122
  549. #define MAX_INTERNAL_RETRIES 64
  550. #define MAX_CMD_PER_LUN 2
  551. #define MAX_TAGGED_CMD_PER_LUN (MAX_MAILBOXES - MAX_CMD_PER_LUN)
  552. #define SKIP ULONG_MAX
  553. #define FREE 0
  554. #define IN_USE 1
  555. #define LOCKED 2
  556. #define IN_RESET 3
  557. #define IGNORE 4
  558. #define READY 5
  559. #define ABORTING 6
  560. #define NO_DMA 0xff
  561. #define MAXLOOP 10000
  562. #define TAG_DISABLED 0
  563. #define TAG_SIMPLE 1
  564. #define TAG_ORDERED 2
  565. #define REG_CMD 7
  566. #define REG_STATUS 7
  567. #define REG_AUX_STATUS 8
  568. #define REG_DATA 0
  569. #define REG_DATA2 1
  570. #define REG_SEE 6
  571. #define REG_LOW 2
  572. #define REG_LM 3
  573. #define REG_MID 4
  574. #define REG_MSB 5
  575. #define REGION_SIZE 9UL
  576. #define MAX_ISA_ADDR 0x03ff
  577. #define MIN_EISA_ADDR 0x1c88
  578. #define MAX_EISA_ADDR 0xfc88
  579. #define BSY_ASSERTED 0x80
  580. #define DRQ_ASSERTED 0x08
  581. #define ABSY_ASSERTED 0x01
  582. #define IRQ_ASSERTED 0x02
  583. #define READ_CONFIG_PIO 0xf0
  584. #define SET_CONFIG_PIO 0xf1
  585. #define SEND_CP_PIO 0xf2
  586. #define RECEIVE_SP_PIO 0xf3
  587. #define TRUNCATE_XFR_PIO 0xf4
  588. #define RESET_PIO 0xf9
  589. #define READ_CONFIG_DMA 0xfd
  590. #define SET_CONFIG_DMA 0xfe
  591. #define SEND_CP_DMA 0xff
  592. #define ASOK 0x00
  593. #define ASST 0x01
  594. #define YESNO(a) ((a) ? 'y' : 'n')
  595. #define TLDEV(type) ((type) == TYPE_DISK || (type) == TYPE_ROM)
  596. /* "EATA", in Big Endian format */
  597. #define EATA_SIG_BE 0x45415441
  598. /* Number of valid bytes in the board config structure for EATA 2.0x */
  599. #define EATA_2_0A_SIZE 28
  600. #define EATA_2_0B_SIZE 30
  601. #define EATA_2_0C_SIZE 34
  602. /* Board info structure */
  603. struct eata_info {
  604. u_int32_t data_len; /* Number of valid bytes after this field */
  605. u_int32_t sign; /* ASCII "EATA" signature */
  606. #if defined(__BIG_ENDIAN_BITFIELD)
  607. unchar version : 4,
  608. : 4;
  609. unchar haaval : 1,
  610. ata : 1,
  611. drqvld : 1,
  612. dmasup : 1,
  613. morsup : 1,
  614. trnxfr : 1,
  615. tarsup : 1,
  616. ocsena : 1;
  617. #else
  618. unchar : 4, /* unused low nibble */
  619. version : 4; /* EATA version, should be 0x1 */
  620. unchar ocsena : 1, /* Overlap Command Support Enabled */
  621. tarsup : 1, /* Target Mode Supported */
  622. trnxfr : 1, /* Truncate Transfer Cmd NOT Necessary */
  623. morsup : 1, /* More Supported */
  624. dmasup : 1, /* DMA Supported */
  625. drqvld : 1, /* DRQ Index (DRQX) is valid */
  626. ata : 1, /* This is an ATA device */
  627. haaval : 1; /* Host Adapter Address Valid */
  628. #endif
  629. ushort cp_pad_len; /* Number of pad bytes after cp_len */
  630. unchar host_addr[4]; /* Host Adapter SCSI ID for channels 3, 2, 1, 0 */
  631. u_int32_t cp_len; /* Number of valid bytes in cp */
  632. u_int32_t sp_len; /* Number of valid bytes in sp */
  633. ushort queue_size; /* Max number of cp that can be queued */
  634. ushort unused;
  635. ushort scatt_size; /* Max number of entries in scatter/gather table */
  636. #if defined(__BIG_ENDIAN_BITFIELD)
  637. unchar drqx : 2,
  638. second : 1,
  639. irq_tr : 1,
  640. irq : 4;
  641. unchar sync;
  642. unchar : 4,
  643. res1 : 1,
  644. large_sg : 1,
  645. forcaddr : 1,
  646. isaena : 1;
  647. unchar max_chan : 3,
  648. max_id : 5;
  649. unchar max_lun;
  650. unchar eisa : 1,
  651. pci : 1,
  652. idquest : 1,
  653. m1 : 1,
  654. : 4;
  655. #else
  656. unchar irq : 4, /* Interrupt Request assigned to this controller */
  657. irq_tr : 1, /* 0 for edge triggered, 1 for level triggered */
  658. second : 1, /* 1 if this is a secondary (not primary) controller */
  659. drqx : 2; /* DRQ Index (0=DMA0, 1=DMA7, 2=DMA6, 3=DMA5) */
  660. unchar sync; /* 1 if scsi target id 7...0 is running sync scsi */
  661. /* Structure extension defined in EATA 2.0B */
  662. unchar isaena : 1, /* ISA i/o addressing is disabled/enabled */
  663. forcaddr : 1, /* Port address has been forced */
  664. large_sg : 1, /* 1 if large SG lists are supported */
  665. res1 : 1,
  666. : 4;
  667. unchar max_id : 5, /* Max SCSI target ID number */
  668. max_chan : 3; /* Max SCSI channel number on this board */
  669. /* Structure extension defined in EATA 2.0C */
  670. unchar max_lun; /* Max SCSI LUN number */
  671. unchar
  672. : 4,
  673. m1 : 1, /* This is a PCI with an M1 chip installed */
  674. idquest : 1, /* RAIDNUM returned is questionable */
  675. pci : 1, /* This board is PCI */
  676. eisa : 1; /* This board is EISA */
  677. #endif
  678. unchar raidnum; /* Uniquely identifies this HBA in a system */
  679. unchar notused;
  680. ushort ipad[247];
  681. };
  682. /* Board config structure */
  683. struct eata_config {
  684. ushort len; /* Number of bytes following this field */
  685. #if defined(__BIG_ENDIAN_BITFIELD)
  686. unchar : 4,
  687. tarena : 1,
  688. mdpena : 1,
  689. ocena : 1,
  690. edis : 1;
  691. #else
  692. unchar edis : 1, /* Disable EATA interface after config command */
  693. ocena : 1, /* Overlapped Commands Enabled */
  694. mdpena : 1, /* Transfer all Modified Data Pointer Messages */
  695. tarena : 1, /* Target Mode Enabled for this controller */
  696. : 4;
  697. #endif
  698. unchar cpad[511];
  699. };
  700. /* Returned status packet structure */
  701. struct mssp {
  702. #if defined(__BIG_ENDIAN_BITFIELD)
  703. unchar eoc : 1,
  704. adapter_status : 7;
  705. #else
  706. unchar adapter_status : 7, /* State related to current command */
  707. eoc : 1; /* End Of Command (1 = command completed) */
  708. #endif
  709. unchar target_status; /* SCSI status received after data transfer */
  710. unchar unused[2];
  711. u_int32_t inv_res_len; /* Number of bytes not transferred */
  712. u_int32_t cpp_index; /* Index of address set in cp */
  713. char mess[12];
  714. };
  715. struct sg_list {
  716. unsigned int address; /* Segment Address */
  717. unsigned int num_bytes; /* Segment Length */
  718. };
  719. /* MailBox SCSI Command Packet */
  720. struct mscp {
  721. #if defined(__BIG_ENDIAN_BITFIELD)
  722. unchar din : 1,
  723. dout : 1,
  724. interp : 1,
  725. : 1,
  726. sg : 1,
  727. reqsen :1,
  728. init : 1,
  729. sreset : 1;
  730. unchar sense_len;
  731. unchar unused[3];
  732. unchar : 7,
  733. fwnest : 1;
  734. unchar : 5,
  735. hbaci : 1,
  736. iat : 1,
  737. phsunit : 1;
  738. unchar channel : 3,
  739. target : 5;
  740. unchar one : 1,
  741. dispri : 1,
  742. luntar : 1,
  743. lun : 5;
  744. #else
  745. unchar sreset :1, /* SCSI Bus Reset Signal should be asserted */
  746. init :1, /* Re-initialize controller and self test */
  747. reqsen :1, /* Transfer Request Sense Data to addr using DMA */
  748. sg :1, /* Use Scatter/Gather */
  749. :1,
  750. interp :1, /* The controller interprets cp, not the target */
  751. dout :1, /* Direction of Transfer is Out (Host to Target) */
  752. din :1; /* Direction of Transfer is In (Target to Host) */
  753. unchar sense_len; /* Request Sense Length */
  754. unchar unused[3];
  755. unchar fwnest : 1, /* Send command to a component of an Array Group */
  756. : 7;
  757. unchar phsunit : 1, /* Send to Target Physical Unit (bypass RAID) */
  758. iat : 1, /* Inhibit Address Translation */
  759. hbaci : 1, /* Inhibit HBA Caching for this command */
  760. : 5;
  761. unchar target : 5, /* SCSI target ID */
  762. channel : 3; /* SCSI channel number */
  763. unchar lun : 5, /* SCSI logical unit number */
  764. luntar : 1, /* This cp is for Target (not LUN) */
  765. dispri : 1, /* Disconnect Privilege granted */
  766. one : 1; /* 1 */
  767. #endif
  768. unchar mess[3]; /* Massage to/from Target */
  769. unchar cdb[12]; /* Command Descriptor Block */
  770. u_int32_t data_len; /* If sg=0 Data Length, if sg=1 sglist length */
  771. u_int32_t cpp_index; /* Index of address to be returned in sp */
  772. u_int32_t data_address; /* If sg=0 Data Address, if sg=1 sglist address */
  773. u_int32_t sp_dma_addr; /* Address where sp is DMA'ed when cp completes */
  774. u_int32_t sense_addr; /* Address where Sense Data is DMA'ed on error */
  775. /* Additional fields begin here. */
  776. struct scsi_cmnd *SCpnt;
  777. /* All the cp structure is zero filled by queuecommand except the
  778. following CP_TAIL_SIZE bytes, initialized by detect */
  779. dma_addr_t cp_dma_addr; /* dma handle for this cp structure */
  780. struct sg_list *sglist; /* pointer to the allocated SG list */
  781. };
  782. #define CP_TAIL_SIZE (sizeof(struct sglist *) + sizeof(dma_addr_t))
  783. struct hostdata {
  784. struct mscp cp[MAX_MAILBOXES]; /* Mailboxes for this board */
  785. unsigned int cp_stat[MAX_MAILBOXES]; /* FREE, IN_USE, LOCKED, IN_RESET */
  786. unsigned int last_cp_used; /* Index of last mailbox used */
  787. unsigned int iocount; /* Total i/o done for this board */
  788. int board_number; /* Number of this board */
  789. char board_name[16]; /* Name of this board */
  790. int in_reset; /* True if board is doing a reset */
  791. int target_to[MAX_TARGET][MAX_CHANNEL]; /* N. of timeout errors on target */
  792. int target_redo[MAX_TARGET][MAX_CHANNEL]; /* If 1 redo i/o on target */
  793. unsigned int retries; /* Number of internal retries */
  794. unsigned long last_retried_pid; /* Pid of last retried command */
  795. unsigned char subversion; /* Bus type, either ISA or EISA/PCI */
  796. unsigned char protocol_rev; /* EATA 2.0 rev., 'A' or 'B' or 'C' */
  797. unsigned char is_pci; /* 1 is bus type is PCI */
  798. struct pci_dev *pdev; /* pdev for PCI bus, NULL otherwise */
  799. struct mssp *sp_cpu_addr; /* cpu addr for DMA buffer sp */
  800. dma_addr_t sp_dma_addr; /* dma handle for DMA buffer sp */
  801. struct mssp sp; /* Local copy of sp buffer */
  802. };
  803. static struct Scsi_Host *sh[MAX_BOARDS];
  804. static const char *driver_name = "EATA";
  805. static char sha[MAX_BOARDS];
  806. static DEFINE_SPINLOCK(driver_lock);
  807. /* Initialize num_boards so that ihdlr can work while detect is in progress */
  808. static unsigned int num_boards = MAX_BOARDS;
  809. static unsigned long io_port[] = {
  810. /* Space for MAX_INT_PARAM ports usable while loading as a module */
  811. SKIP, SKIP, SKIP, SKIP, SKIP, SKIP, SKIP, SKIP,
  812. SKIP, SKIP,
  813. /* First ISA */
  814. 0x1f0,
  815. /* Space for MAX_PCI ports possibly reported by PCI_BIOS */
  816. SKIP, SKIP, SKIP, SKIP, SKIP, SKIP, SKIP, SKIP,
  817. SKIP, SKIP, SKIP, SKIP, SKIP, SKIP, SKIP, SKIP,
  818. /* MAX_EISA ports */
  819. 0x1c88, 0x2c88, 0x3c88, 0x4c88, 0x5c88, 0x6c88, 0x7c88, 0x8c88,
  820. 0x9c88, 0xac88, 0xbc88, 0xcc88, 0xdc88, 0xec88, 0xfc88,
  821. /* Other (MAX_ISA - 1) ports */
  822. 0x170, 0x230, 0x330,
  823. /* End of list */
  824. 0x0
  825. };
  826. /* Device is Big Endian */
  827. #define H2DEV(x) cpu_to_be32(x)
  828. #define DEV2H(x) be32_to_cpu(x)
  829. #define H2DEV16(x) cpu_to_be16(x)
  830. #define DEV2H16(x) be16_to_cpu(x)
  831. /* But transfer orientation from the 16 bit data register is Little Endian */
  832. #define REG2H(x) le16_to_cpu(x)
  833. static irqreturn_t do_interrupt_handler(int, void *);
  834. static void flush_dev(struct scsi_device *, unsigned long, struct hostdata *,
  835. unsigned int);
  836. static int do_trace = 0;
  837. static int setup_done = 0;
  838. static int link_statistics;
  839. static int ext_tran = 0;
  840. static int rev_scan = 1;
  841. #if defined(CONFIG_SCSI_EATA_TAGGED_QUEUE)
  842. static int tag_mode = TAG_SIMPLE;
  843. #else
  844. static int tag_mode = TAG_DISABLED;
  845. #endif
  846. #if defined(CONFIG_SCSI_EATA_LINKED_COMMANDS)
  847. static int linked_comm = 1;
  848. #else
  849. static int linked_comm = 0;
  850. #endif
  851. #if defined(CONFIG_SCSI_EATA_MAX_TAGS)
  852. static int max_queue_depth = CONFIG_SCSI_EATA_MAX_TAGS;
  853. #else
  854. static int max_queue_depth = MAX_CMD_PER_LUN;
  855. #endif
  856. #if defined(CONFIG_ISA)
  857. static int isa_probe = 1;
  858. #else
  859. static int isa_probe = 0;
  860. #endif
  861. #if defined(CONFIG_EISA)
  862. static int eisa_probe = 1;
  863. #else
  864. static int eisa_probe = 0;
  865. #endif
  866. #if defined(CONFIG_PCI)
  867. static int pci_probe = 1;
  868. #else
  869. static int pci_probe = 0;
  870. #endif
  871. #define MAX_INT_PARAM 10
  872. #define MAX_BOOT_OPTIONS_SIZE 256
  873. static char boot_options[MAX_BOOT_OPTIONS_SIZE];
  874. #if defined(MODULE)
  875. #include <linux/module.h>
  876. #include <linux/moduleparam.h>
  877. module_param_string(eata, boot_options, MAX_BOOT_OPTIONS_SIZE, 0);
  878. MODULE_PARM_DESC(eata, " equivalent to the \"eata=...\" kernel boot option."
  879. " Example: modprobe eata \"eata=0x7410,0x230,lc:y,tm:0,mq:4,ep:n\"");
  880. MODULE_AUTHOR("Dario Ballabio");
  881. MODULE_LICENSE("GPL");
  882. MODULE_DESCRIPTION("EATA/DMA SCSI Driver");
  883. #endif
  884. static int eata2x_slave_configure(struct scsi_device *dev)
  885. {
  886. int tqd, utqd;
  887. char *tag_suffix, *link_suffix;
  888. utqd = MAX_CMD_PER_LUN;
  889. tqd = max_queue_depth;
  890. if (TLDEV(dev->type) && dev->tagged_supported) {
  891. if (tag_mode == TAG_SIMPLE) {
  892. scsi_adjust_queue_depth(dev, MSG_SIMPLE_TAG, tqd);
  893. tag_suffix = ", simple tags";
  894. } else if (tag_mode == TAG_ORDERED) {
  895. scsi_adjust_queue_depth(dev, MSG_ORDERED_TAG, tqd);
  896. tag_suffix = ", ordered tags";
  897. } else {
  898. scsi_adjust_queue_depth(dev, 0, tqd);
  899. tag_suffix = ", no tags";
  900. }
  901. } else if (TLDEV(dev->type) && linked_comm) {
  902. scsi_adjust_queue_depth(dev, 0, tqd);
  903. tag_suffix = ", untagged";
  904. } else {
  905. scsi_adjust_queue_depth(dev, 0, utqd);
  906. tag_suffix = "";
  907. }
  908. if (TLDEV(dev->type) && linked_comm && dev->queue_depth > 2)
  909. link_suffix = ", sorted";
  910. else if (TLDEV(dev->type))
  911. link_suffix = ", unsorted";
  912. else
  913. link_suffix = "";
  914. sdev_printk(KERN_INFO, dev,
  915. "cmds/lun %d%s%s.\n",
  916. dev->queue_depth, link_suffix, tag_suffix);
  917. return 0;
  918. }
  919. static int wait_on_busy(unsigned long iobase, unsigned int loop)
  920. {
  921. while (inb(iobase + REG_AUX_STATUS) & ABSY_ASSERTED) {
  922. udelay(1L);
  923. if (--loop == 0)
  924. return 1;
  925. }
  926. return 0;
  927. }
  928. static int do_dma(unsigned long iobase, unsigned long addr, unchar cmd)
  929. {
  930. unsigned char *byaddr;
  931. unsigned long devaddr;
  932. if (wait_on_busy(iobase, (addr ? MAXLOOP * 100 : MAXLOOP)))
  933. return 1;
  934. if (addr) {
  935. devaddr = H2DEV(addr);
  936. byaddr = (unsigned char *)&devaddr;
  937. outb(byaddr[3], iobase + REG_LOW);
  938. outb(byaddr[2], iobase + REG_LM);
  939. outb(byaddr[1], iobase + REG_MID);
  940. outb(byaddr[0], iobase + REG_MSB);
  941. }
  942. outb(cmd, iobase + REG_CMD);
  943. return 0;
  944. }
  945. static int read_pio(unsigned long iobase, ushort * start, ushort * end)
  946. {
  947. unsigned int loop = MAXLOOP;
  948. ushort *p;
  949. for (p = start; p <= end; p++) {
  950. while (!(inb(iobase + REG_STATUS) & DRQ_ASSERTED)) {
  951. udelay(1L);
  952. if (--loop == 0)
  953. return 1;
  954. }
  955. loop = MAXLOOP;
  956. *p = REG2H(inw(iobase));
  957. }
  958. return 0;
  959. }
  960. static struct pci_dev *get_pci_dev(unsigned long port_base)
  961. {
  962. #if defined(CONFIG_PCI)
  963. unsigned int addr;
  964. struct pci_dev *dev = NULL;
  965. while ((dev = pci_get_class(PCI_CLASS_STORAGE_SCSI << 8, dev))) {
  966. addr = pci_resource_start(dev, 0);
  967. #if defined(DEBUG_PCI_DETECT)
  968. printk("%s: get_pci_dev, bus %d, devfn 0x%x, addr 0x%x.\n",
  969. driver_name, dev->bus->number, dev->devfn, addr);
  970. #endif
  971. /* we are in so much trouble for a pci hotplug system with this driver
  972. * anyway, so doing this at least lets people unload the driver and not
  973. * cause memory problems, but in general this is a bad thing to do (this
  974. * driver needs to be converted to the proper PCI api someday... */
  975. pci_dev_put(dev);
  976. if (addr + PCI_BASE_ADDRESS_0 == port_base)
  977. return dev;
  978. }
  979. #endif /* end CONFIG_PCI */
  980. return NULL;
  981. }
  982. static void enable_pci_ports(void)
  983. {
  984. #if defined(CONFIG_PCI)
  985. struct pci_dev *dev = NULL;
  986. while ((dev = pci_get_class(PCI_CLASS_STORAGE_SCSI << 8, dev))) {
  987. #if defined(DEBUG_PCI_DETECT)
  988. printk("%s: enable_pci_ports, bus %d, devfn 0x%x.\n",
  989. driver_name, dev->bus->number, dev->devfn);
  990. #endif
  991. if (pci_enable_device(dev))
  992. printk
  993. ("%s: warning, pci_enable_device failed, bus %d devfn 0x%x.\n",
  994. driver_name, dev->bus->number, dev->devfn);
  995. }
  996. #endif /* end CONFIG_PCI */
  997. }
  998. static int port_detect(unsigned long port_base, unsigned int j,
  999. struct scsi_host_template *tpnt)
  1000. {
  1001. unsigned char irq, dma_channel, subversion, i, is_pci = 0;
  1002. unsigned char protocol_rev;
  1003. struct eata_info info;
  1004. char *bus_type, dma_name[16];
  1005. struct pci_dev *pdev;
  1006. /* Allowed DMA channels for ISA (0 indicates reserved) */
  1007. unsigned char dma_channel_table[4] = { 5, 6, 7, 0 };
  1008. struct Scsi_Host *shost;
  1009. struct hostdata *ha;
  1010. char name[16];
  1011. sprintf(name, "%s%d", driver_name, j);
  1012. if (!request_region(port_base, REGION_SIZE, driver_name)) {
  1013. #if defined(DEBUG_DETECT)
  1014. printk("%s: address 0x%03lx in use, skipping probe.\n", name,
  1015. port_base);
  1016. #endif
  1017. goto fail;
  1018. }
  1019. spin_lock_irq(&driver_lock);
  1020. if (do_dma(port_base, 0, READ_CONFIG_PIO)) {
  1021. #if defined(DEBUG_DETECT)
  1022. printk("%s: detect, do_dma failed at 0x%03lx.\n", name,
  1023. port_base);
  1024. #endif
  1025. goto freelock;
  1026. }
  1027. /* Read the info structure */
  1028. if (read_pio(port_base, (ushort *) & info, (ushort *) & info.ipad[0])) {
  1029. #if defined(DEBUG_DETECT)
  1030. printk("%s: detect, read_pio failed at 0x%03lx.\n", name,
  1031. port_base);
  1032. #endif
  1033. goto freelock;
  1034. }
  1035. info.data_len = DEV2H(info.data_len);
  1036. info.sign = DEV2H(info.sign);
  1037. info.cp_pad_len = DEV2H16(info.cp_pad_len);
  1038. info.cp_len = DEV2H(info.cp_len);
  1039. info.sp_len = DEV2H(info.sp_len);
  1040. info.scatt_size = DEV2H16(info.scatt_size);
  1041. info.queue_size = DEV2H16(info.queue_size);
  1042. /* Check the controller "EATA" signature */
  1043. if (info.sign != EATA_SIG_BE) {
  1044. #if defined(DEBUG_DETECT)
  1045. printk("%s: signature 0x%04x discarded.\n", name, info.sign);
  1046. #endif
  1047. goto freelock;
  1048. }
  1049. if (info.data_len < EATA_2_0A_SIZE) {
  1050. printk
  1051. ("%s: config structure size (%d bytes) too short, detaching.\n",
  1052. name, info.data_len);
  1053. goto freelock;
  1054. } else if (info.data_len == EATA_2_0A_SIZE)
  1055. protocol_rev = 'A';
  1056. else if (info.data_len == EATA_2_0B_SIZE)
  1057. protocol_rev = 'B';
  1058. else
  1059. protocol_rev = 'C';
  1060. if (protocol_rev != 'A' && info.forcaddr) {
  1061. printk("%s: warning, port address has been forced.\n", name);
  1062. bus_type = "PCI";
  1063. is_pci = 1;
  1064. subversion = ESA;
  1065. } else if (port_base > MAX_EISA_ADDR
  1066. || (protocol_rev == 'C' && info.pci)) {
  1067. bus_type = "PCI";
  1068. is_pci = 1;
  1069. subversion = ESA;
  1070. } else if (port_base >= MIN_EISA_ADDR
  1071. || (protocol_rev == 'C' && info.eisa)) {
  1072. bus_type = "EISA";
  1073. subversion = ESA;
  1074. } else if (protocol_rev == 'C' && !info.eisa && !info.pci) {
  1075. bus_type = "ISA";
  1076. subversion = ISA;
  1077. } else if (port_base > MAX_ISA_ADDR) {
  1078. bus_type = "PCI";
  1079. is_pci = 1;
  1080. subversion = ESA;
  1081. } else {
  1082. bus_type = "ISA";
  1083. subversion = ISA;
  1084. }
  1085. if (!info.haaval || info.ata) {
  1086. printk
  1087. ("%s: address 0x%03lx, unusable %s board (%d%d), detaching.\n",
  1088. name, port_base, bus_type, info.haaval, info.ata);
  1089. goto freelock;
  1090. }
  1091. if (info.drqvld) {
  1092. if (subversion == ESA)
  1093. printk("%s: warning, weird %s board using DMA.\n", name,
  1094. bus_type);
  1095. subversion = ISA;
  1096. dma_channel = dma_channel_table[3 - info.drqx];
  1097. } else {
  1098. if (subversion == ISA)
  1099. printk("%s: warning, weird %s board not using DMA.\n",
  1100. name, bus_type);
  1101. subversion = ESA;
  1102. dma_channel = NO_DMA;
  1103. }
  1104. if (!info.dmasup)
  1105. printk("%s: warning, DMA protocol support not asserted.\n",
  1106. name);
  1107. irq = info.irq;
  1108. if (subversion == ESA && !info.irq_tr)
  1109. printk
  1110. ("%s: warning, LEVEL triggering is suggested for IRQ %u.\n",
  1111. name, irq);
  1112. if (is_pci) {
  1113. pdev = get_pci_dev(port_base);
  1114. if (!pdev)
  1115. printk
  1116. ("%s: warning, failed to get pci_dev structure.\n",
  1117. name);
  1118. } else
  1119. pdev = NULL;
  1120. if (pdev && (irq != pdev->irq)) {
  1121. printk("%s: IRQ %u mapped to IO-APIC IRQ %u.\n", name, irq,
  1122. pdev->irq);
  1123. irq = pdev->irq;
  1124. }
  1125. /* Board detected, allocate its IRQ */
  1126. if (request_irq(irq, do_interrupt_handler,
  1127. IRQF_DISABLED | ((subversion == ESA) ? IRQF_SHARED : 0),
  1128. driver_name, (void *)&sha[j])) {
  1129. printk("%s: unable to allocate IRQ %u, detaching.\n", name,
  1130. irq);
  1131. goto freelock;
  1132. }
  1133. if (subversion == ISA && request_dma(dma_channel, driver_name)) {
  1134. printk("%s: unable to allocate DMA channel %u, detaching.\n",
  1135. name, dma_channel);
  1136. goto freeirq;
  1137. }
  1138. #if defined(FORCE_CONFIG)
  1139. {
  1140. struct eata_config *cf;
  1141. dma_addr_t cf_dma_addr;
  1142. cf = pci_alloc_consistent(pdev, sizeof(struct eata_config),
  1143. &cf_dma_addr);
  1144. if (!cf) {
  1145. printk
  1146. ("%s: config, pci_alloc_consistent failed, detaching.\n",
  1147. name);
  1148. goto freedma;
  1149. }
  1150. /* Set board configuration */
  1151. memset((char *)cf, 0, sizeof(struct eata_config));
  1152. cf->len = (ushort) H2DEV16((ushort) 510);
  1153. cf->ocena = 1;
  1154. if (do_dma(port_base, cf_dma_addr, SET_CONFIG_DMA)) {
  1155. printk
  1156. ("%s: busy timeout sending configuration, detaching.\n",
  1157. name);
  1158. pci_free_consistent(pdev, sizeof(struct eata_config),
  1159. cf, cf_dma_addr);
  1160. goto freedma;
  1161. }
  1162. }
  1163. #endif
  1164. spin_unlock_irq(&driver_lock);
  1165. sh[j] = shost = scsi_register(tpnt, sizeof(struct hostdata));
  1166. spin_lock_irq(&driver_lock);
  1167. if (shost == NULL) {
  1168. printk("%s: unable to register host, detaching.\n", name);
  1169. goto freedma;
  1170. }
  1171. shost->io_port = port_base;
  1172. shost->unique_id = port_base;
  1173. shost->n_io_port = REGION_SIZE;
  1174. shost->dma_channel = dma_channel;
  1175. shost->irq = irq;
  1176. shost->sg_tablesize = (ushort) info.scatt_size;
  1177. shost->this_id = (ushort) info.host_addr[3];
  1178. shost->can_queue = (ushort) info.queue_size;
  1179. shost->cmd_per_lun = MAX_CMD_PER_LUN;
  1180. ha = (struct hostdata *)shost->hostdata;
  1181. memset(ha, 0, sizeof(struct hostdata));
  1182. ha->subversion = subversion;
  1183. ha->protocol_rev = protocol_rev;
  1184. ha->is_pci = is_pci;
  1185. ha->pdev = pdev;
  1186. ha->board_number = j;
  1187. if (ha->subversion == ESA)
  1188. shost->unchecked_isa_dma = 0;
  1189. else {
  1190. unsigned long flags;
  1191. shost->unchecked_isa_dma = 1;
  1192. flags = claim_dma_lock();
  1193. disable_dma(dma_channel);
  1194. clear_dma_ff(dma_channel);
  1195. set_dma_mode(dma_channel, DMA_MODE_CASCADE);
  1196. enable_dma(dma_channel);
  1197. release_dma_lock(flags);
  1198. }
  1199. strcpy(ha->board_name, name);
  1200. /* DPT PM2012 does not allow to detect sg_tablesize correctly */
  1201. if (shost->sg_tablesize > MAX_SGLIST || shost->sg_tablesize < 2) {
  1202. printk("%s: detect, wrong n. of SG lists %d, fixed.\n",
  1203. ha->board_name, shost->sg_tablesize);
  1204. shost->sg_tablesize = MAX_SGLIST;
  1205. }
  1206. /* DPT PM2012 does not allow to detect can_queue correctly */
  1207. if (shost->can_queue > MAX_MAILBOXES || shost->can_queue < 2) {
  1208. printk("%s: detect, wrong n. of mbox %d, fixed.\n",
  1209. ha->board_name, shost->can_queue);
  1210. shost->can_queue = MAX_MAILBOXES;
  1211. }
  1212. if (protocol_rev != 'A') {
  1213. if (info.max_chan > 0 && info.max_chan < MAX_CHANNEL)
  1214. shost->max_channel = info.max_chan;
  1215. if (info.max_id > 7 && info.max_id < MAX_TARGET)
  1216. shost->max_id = info.max_id + 1;
  1217. if (info.large_sg && shost->sg_tablesize == MAX_SGLIST)
  1218. shost->sg_tablesize = MAX_LARGE_SGLIST;
  1219. }
  1220. if (protocol_rev == 'C') {
  1221. if (info.max_lun > 7 && info.max_lun < MAX_LUN)
  1222. shost->max_lun = info.max_lun + 1;
  1223. }
  1224. if (dma_channel == NO_DMA)
  1225. sprintf(dma_name, "%s", "BMST");
  1226. else
  1227. sprintf(dma_name, "DMA %u", dma_channel);
  1228. spin_unlock_irq(&driver_lock);
  1229. for (i = 0; i < shost->can_queue; i++)
  1230. ha->cp[i].cp_dma_addr = pci_map_single(ha->pdev,
  1231. &ha->cp[i],
  1232. sizeof(struct mscp),
  1233. PCI_DMA_BIDIRECTIONAL);
  1234. for (i = 0; i < shost->can_queue; i++) {
  1235. size_t sz = shost->sg_tablesize *sizeof(struct sg_list);
  1236. gfp_t gfp_mask = (shost->unchecked_isa_dma ? GFP_DMA : 0) | GFP_ATOMIC;
  1237. ha->cp[i].sglist = kmalloc(sz, gfp_mask);
  1238. if (!ha->cp[i].sglist) {
  1239. printk
  1240. ("%s: kmalloc SGlist failed, mbox %d, detaching.\n",
  1241. ha->board_name, i);
  1242. goto release;
  1243. }
  1244. }
  1245. if (!(ha->sp_cpu_addr = pci_alloc_consistent(ha->pdev,
  1246. sizeof(struct mssp),
  1247. &ha->sp_dma_addr))) {
  1248. printk("%s: pci_alloc_consistent failed, detaching.\n", ha->board_name);
  1249. goto release;
  1250. }
  1251. if (max_queue_depth > MAX_TAGGED_CMD_PER_LUN)
  1252. max_queue_depth = MAX_TAGGED_CMD_PER_LUN;
  1253. if (max_queue_depth < MAX_CMD_PER_LUN)
  1254. max_queue_depth = MAX_CMD_PER_LUN;
  1255. if (tag_mode != TAG_DISABLED && tag_mode != TAG_SIMPLE)
  1256. tag_mode = TAG_ORDERED;
  1257. if (j == 0) {
  1258. printk
  1259. ("EATA/DMA 2.0x: Copyright (C) 1994-2003 Dario Ballabio.\n");
  1260. printk
  1261. ("%s config options -> tm:%d, lc:%c, mq:%d, rs:%c, et:%c, "
  1262. "ip:%c, ep:%c, pp:%c.\n", driver_name, tag_mode,
  1263. YESNO(linked_comm), max_queue_depth, YESNO(rev_scan),
  1264. YESNO(ext_tran), YESNO(isa_probe), YESNO(eisa_probe),
  1265. YESNO(pci_probe));
  1266. }
  1267. printk("%s: 2.0%c, %s 0x%03lx, IRQ %u, %s, SG %d, MB %d.\n",
  1268. ha->board_name, ha->protocol_rev, bus_type,
  1269. (unsigned long)shost->io_port, shost->irq, dma_name,
  1270. shost->sg_tablesize, shost->can_queue);
  1271. if (shost->max_id > 8 || shost->max_lun > 8)
  1272. printk
  1273. ("%s: wide SCSI support enabled, max_id %u, max_lun %u.\n",
  1274. ha->board_name, shost->max_id, shost->max_lun);
  1275. for (i = 0; i <= shost->max_channel; i++)
  1276. printk("%s: SCSI channel %u enabled, host target ID %d.\n",
  1277. ha->board_name, i, info.host_addr[3 - i]);
  1278. #if defined(DEBUG_DETECT)
  1279. printk("%s: Vers. 0x%x, ocs %u, tar %u, trnxfr %u, more %u, SYNC 0x%x, "
  1280. "sec. %u, infol %d, cpl %d spl %d.\n", name, info.version,
  1281. info.ocsena, info.tarsup, info.trnxfr, info.morsup, info.sync,
  1282. info.second, info.data_len, info.cp_len, info.sp_len);
  1283. if (protocol_rev == 'B' || protocol_rev == 'C')
  1284. printk("%s: isaena %u, forcaddr %u, max_id %u, max_chan %u, "
  1285. "large_sg %u, res1 %u.\n", name, info.isaena,
  1286. info.forcaddr, info.max_id, info.max_chan, info.large_sg,
  1287. info.res1);
  1288. if (protocol_rev == 'C')
  1289. printk("%s: max_lun %u, m1 %u, idquest %u, pci %u, eisa %u, "
  1290. "raidnum %u.\n", name, info.max_lun, info.m1,
  1291. info.idquest, info.pci, info.eisa, info.raidnum);
  1292. #endif
  1293. if (ha->pdev) {
  1294. pci_set_master(ha->pdev);
  1295. if (pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(32)))
  1296. printk("%s: warning, pci_set_dma_mask failed.\n",
  1297. ha->board_name);
  1298. }
  1299. return 1;
  1300. freedma:
  1301. if (subversion == ISA)
  1302. free_dma(dma_channel);
  1303. freeirq:
  1304. free_irq(irq, &sha[j]);
  1305. freelock:
  1306. spin_unlock_irq(&driver_lock);
  1307. release_region(port_base, REGION_SIZE);
  1308. fail:
  1309. return 0;
  1310. release:
  1311. eata2x_release(shost);
  1312. return 0;
  1313. }
  1314. static void internal_setup(char *str, int *ints)
  1315. {
  1316. int i, argc = ints[0];
  1317. char *cur = str, *pc;
  1318. if (argc > 0) {
  1319. if (argc > MAX_INT_PARAM)
  1320. argc = MAX_INT_PARAM;
  1321. for (i = 0; i < argc; i++)
  1322. io_port[i] = ints[i + 1];
  1323. io_port[i] = 0;
  1324. setup_done = 1;
  1325. }
  1326. while (cur && (pc = strchr(cur, ':'))) {
  1327. int val = 0, c = *++pc;
  1328. if (c == 'n' || c == 'N')
  1329. val = 0;
  1330. else if (c == 'y' || c == 'Y')
  1331. val = 1;
  1332. else
  1333. val = (int)simple_strtoul(pc, NULL, 0);
  1334. if (!strncmp(cur, "lc:", 3))
  1335. linked_comm = val;
  1336. else if (!strncmp(cur, "tm:", 3))
  1337. tag_mode = val;
  1338. else if (!strncmp(cur, "tc:", 3))
  1339. tag_mode = val;
  1340. else if (!strncmp(cur, "mq:", 3))
  1341. max_queue_depth = val;
  1342. else if (!strncmp(cur, "ls:", 3))
  1343. link_statistics = val;
  1344. else if (!strncmp(cur, "et:", 3))
  1345. ext_tran = val;
  1346. else if (!strncmp(cur, "rs:", 3))
  1347. rev_scan = val;
  1348. else if (!strncmp(cur, "ip:", 3))
  1349. isa_probe = val;
  1350. else if (!strncmp(cur, "ep:", 3))
  1351. eisa_probe = val;
  1352. else if (!strncmp(cur, "pp:", 3))
  1353. pci_probe = val;
  1354. if ((cur = strchr(cur, ',')))
  1355. ++cur;
  1356. }
  1357. return;
  1358. }
  1359. static int option_setup(char *str)
  1360. {
  1361. int ints[MAX_INT_PARAM];
  1362. char *cur = str;
  1363. int i = 1;
  1364. while (cur && isdigit(*cur) && i <= MAX_INT_PARAM) {
  1365. ints[i++] = simple_strtoul(cur, NULL, 0);
  1366. if ((cur = strchr(cur, ',')) != NULL)
  1367. cur++;
  1368. }
  1369. ints[0] = i - 1;
  1370. internal_setup(cur, ints);
  1371. return 1;
  1372. }
  1373. static void add_pci_ports(void)
  1374. {
  1375. #if defined(CONFIG_PCI)
  1376. unsigned int addr, k;
  1377. struct pci_dev *dev = NULL;
  1378. for (k = 0; k < MAX_PCI; k++) {
  1379. if (!(dev = pci_get_class(PCI_CLASS_STORAGE_SCSI << 8, dev)))
  1380. break;
  1381. if (pci_enable_device(dev)) {
  1382. #if defined(DEBUG_PCI_DETECT)
  1383. printk
  1384. ("%s: detect, bus %d, devfn 0x%x, pci_enable_device failed.\n",
  1385. driver_name, dev->bus->number, dev->devfn);
  1386. #endif
  1387. continue;
  1388. }
  1389. addr = pci_resource_start(dev, 0);
  1390. #if defined(DEBUG_PCI_DETECT)
  1391. printk("%s: detect, seq. %d, bus %d, devfn 0x%x, addr 0x%x.\n",
  1392. driver_name, k, dev->bus->number, dev->devfn, addr);
  1393. #endif
  1394. /* Order addresses according to rev_scan value */
  1395. io_port[MAX_INT_PARAM + (rev_scan ? (MAX_PCI - k) : (1 + k))] =
  1396. addr + PCI_BASE_ADDRESS_0;
  1397. }
  1398. pci_dev_put(dev);
  1399. #endif /* end CONFIG_PCI */
  1400. }
  1401. static int eata2x_detect(struct scsi_host_template *tpnt)
  1402. {
  1403. unsigned int j = 0, k;
  1404. tpnt->proc_name = "eata2x";
  1405. if (strlen(boot_options))
  1406. option_setup(boot_options);
  1407. #if defined(MODULE)
  1408. /* io_port could have been modified when loading as a module */
  1409. if (io_port[0] != SKIP) {
  1410. setup_done = 1;
  1411. io_port[MAX_INT_PARAM] = 0;
  1412. }
  1413. #endif
  1414. for (k = MAX_INT_PARAM; io_port[k]; k++)
  1415. if (io_port[k] == SKIP)
  1416. continue;
  1417. else if (io_port[k] <= MAX_ISA_ADDR) {
  1418. if (!isa_probe)
  1419. io_port[k] = SKIP;
  1420. } else if (io_port[k] >= MIN_EISA_ADDR
  1421. && io_port[k] <= MAX_EISA_ADDR) {
  1422. if (!eisa_probe)
  1423. io_port[k] = SKIP;
  1424. }
  1425. if (pci_probe) {
  1426. if (!setup_done)
  1427. add_pci_ports();
  1428. else
  1429. enable_pci_ports();
  1430. }
  1431. for (k = 0; io_port[k]; k++) {
  1432. if (io_port[k] == SKIP)
  1433. continue;
  1434. if (j < MAX_BOARDS && port_detect(io_port[k], j, tpnt))
  1435. j++;
  1436. }
  1437. num_boards = j;
  1438. return j;
  1439. }
  1440. static void map_dma(unsigned int i, struct hostdata *ha)
  1441. {
  1442. unsigned int k, pci_dir;
  1443. int count;
  1444. struct scatterlist *sg;
  1445. struct mscp *cpp;
  1446. struct scsi_cmnd *SCpnt;
  1447. cpp = &ha->cp[i];
  1448. SCpnt = cpp->SCpnt;
  1449. pci_dir = SCpnt->sc_data_direction;
  1450. if (SCpnt->sense_buffer)
  1451. cpp->sense_addr =
  1452. H2DEV(pci_map_single(ha->pdev, SCpnt->sense_buffer,
  1453. SCSI_SENSE_BUFFERSIZE, PCI_DMA_FROMDEVICE));
  1454. cpp->sense_len = SCSI_SENSE_BUFFERSIZE;
  1455. if (!scsi_sg_count(SCpnt)) {
  1456. cpp->data_len = 0;
  1457. return;
  1458. }
  1459. count = pci_map_sg(ha->pdev, scsi_sglist(SCpnt), scsi_sg_count(SCpnt),
  1460. pci_dir);
  1461. BUG_ON(!count);
  1462. scsi_for_each_sg(SCpnt, sg, count, k) {
  1463. cpp->sglist[k].address = H2DEV(sg_dma_address(sg));
  1464. cpp->sglist[k].num_bytes = H2DEV(sg_dma_len(sg));
  1465. }
  1466. cpp->sg = 1;
  1467. cpp->data_address = H2DEV(pci_map_single(ha->pdev, cpp->sglist,
  1468. scsi_sg_count(SCpnt) *
  1469. sizeof(struct sg_list),
  1470. pci_dir));
  1471. cpp->data_len = H2DEV((scsi_sg_count(SCpnt) * sizeof(struct sg_list)));
  1472. }
  1473. static void unmap_dma(unsigned int i, struct hostdata *ha)
  1474. {
  1475. unsigned int pci_dir;
  1476. struct mscp *cpp;
  1477. struct scsi_cmnd *SCpnt;
  1478. cpp = &ha->cp[i];
  1479. SCpnt = cpp->SCpnt;
  1480. pci_dir = SCpnt->sc_data_direction;
  1481. if (DEV2H(cpp->sense_addr))
  1482. pci_unmap_single(ha->pdev, DEV2H(cpp->sense_addr),
  1483. DEV2H(cpp->sense_len), PCI_DMA_FROMDEVICE);
  1484. if (scsi_sg_count(SCpnt))
  1485. pci_unmap_sg(ha->pdev, scsi_sglist(SCpnt), scsi_sg_count(SCpnt),
  1486. pci_dir);
  1487. if (!DEV2H(cpp->data_len))
  1488. pci_dir = PCI_DMA_BIDIRECTIONAL;
  1489. if (DEV2H(cpp->data_address))
  1490. pci_unmap_single(ha->pdev, DEV2H(cpp->data_address),
  1491. DEV2H(cpp->data_len), pci_dir);
  1492. }
  1493. static void sync_dma(unsigned int i, struct hostdata *ha)
  1494. {
  1495. unsigned int pci_dir;
  1496. struct mscp *cpp;
  1497. struct scsi_cmnd *SCpnt;
  1498. cpp = &ha->cp[i];
  1499. SCpnt = cpp->SCpnt;
  1500. pci_dir = SCpnt->sc_data_direction;
  1501. if (DEV2H(cpp->sense_addr))
  1502. pci_dma_sync_single_for_cpu(ha->pdev, DEV2H(cpp->sense_addr),
  1503. DEV2H(cpp->sense_len),
  1504. PCI_DMA_FROMDEVICE);
  1505. if (scsi_sg_count(SCpnt))
  1506. pci_dma_sync_sg_for_cpu(ha->pdev, scsi_sglist(SCpnt),
  1507. scsi_sg_count(SCpnt), pci_dir);
  1508. if (!DEV2H(cpp->data_len))
  1509. pci_dir = PCI_DMA_BIDIRECTIONAL;
  1510. if (DEV2H(cpp->data_address))
  1511. pci_dma_sync_single_for_cpu(ha->pdev,
  1512. DEV2H(cpp->data_address),
  1513. DEV2H(cpp->data_len), pci_dir);
  1514. }
  1515. static void scsi_to_dev_dir(unsigned int i, struct hostdata *ha)
  1516. {
  1517. unsigned int k;
  1518. static const unsigned char data_out_cmds[] = {
  1519. 0x0a, 0x2a, 0x15, 0x55, 0x04, 0x07, 0x18, 0x1d, 0x24, 0x2e,
  1520. 0x30, 0x31, 0x32, 0x38, 0x39, 0x3a, 0x3b, 0x3d, 0x3f, 0x40,
  1521. 0x41, 0x4c, 0xaa, 0xae, 0xb0, 0xb1, 0xb2, 0xb6, 0xea, 0x1b, 0x5d
  1522. };
  1523. static const unsigned char data_none_cmds[] = {
  1524. 0x01, 0x0b, 0x10, 0x11, 0x13, 0x16, 0x17, 0x19, 0x2b, 0x1e,
  1525. 0x2c, 0xac, 0x2f, 0xaf, 0x33, 0xb3, 0x35, 0x36, 0x45, 0x47,
  1526. 0x48, 0x49, 0xa9, 0x4b, 0xa5, 0xa6, 0xb5, 0x00
  1527. };
  1528. struct mscp *cpp;
  1529. struct scsi_cmnd *SCpnt;
  1530. cpp = &ha->cp[i];
  1531. SCpnt = cpp->SCpnt;
  1532. if (SCpnt->sc_data_direction == DMA_FROM_DEVICE) {
  1533. cpp->din = 1;
  1534. cpp->dout = 0;
  1535. return;
  1536. } else if (SCpnt->sc_data_direction == DMA_TO_DEVICE) {
  1537. cpp->din = 0;
  1538. cpp->dout = 1;
  1539. return;
  1540. } else if (SCpnt->sc_data_direction == DMA_NONE) {
  1541. cpp->din = 0;
  1542. cpp->dout = 0;
  1543. return;
  1544. }
  1545. if (SCpnt->sc_data_direction != DMA_BIDIRECTIONAL)
  1546. panic("%s: qcomm, invalid SCpnt->sc_data_direction.\n",
  1547. ha->board_name);
  1548. for (k = 0; k < ARRAY_SIZE(data_out_cmds); k++)
  1549. if (SCpnt->cmnd[0] == data_out_cmds[k]) {
  1550. cpp->dout = 1;
  1551. break;
  1552. }
  1553. if ((cpp->din = !cpp->dout))
  1554. for (k = 0; k < ARRAY_SIZE(data_none_cmds); k++)
  1555. if (SCpnt->cmnd[0] == data_none_cmds[k]) {
  1556. cpp->din = 0;
  1557. break;
  1558. }
  1559. }
  1560. static int eata2x_queuecommand(struct scsi_cmnd *SCpnt,
  1561. void (*done) (struct scsi_cmnd *))
  1562. {
  1563. struct Scsi_Host *shost = SCpnt->device->host;
  1564. struct hostdata *ha = (struct hostdata *)shost->hostdata;
  1565. unsigned int i, k;
  1566. struct mscp *cpp;
  1567. if (SCpnt->host_scribble)
  1568. panic("%s: qcomm, pid %ld, SCpnt %p already active.\n",
  1569. ha->board_name, SCpnt->serial_number, SCpnt);
  1570. /* i is the mailbox number, look for the first free mailbox
  1571. starting from last_cp_used */
  1572. i = ha->last_cp_used + 1;
  1573. for (k = 0; k < shost->can_queue; k++, i++) {
  1574. if (i >= shost->can_queue)
  1575. i = 0;
  1576. if (ha->cp_stat[i] == FREE) {
  1577. ha->last_cp_used = i;
  1578. break;
  1579. }
  1580. }
  1581. if (k == shost->can_queue) {
  1582. printk("%s: qcomm, no free mailbox.\n", ha->board_name);
  1583. return 1;
  1584. }
  1585. /* Set pointer to control packet structure */
  1586. cpp = &ha->cp[i];
  1587. memset(cpp, 0, sizeof(struct mscp) - CP_TAIL_SIZE);
  1588. /* Set pointer to status packet structure, Big Endian format */
  1589. cpp->sp_dma_addr = H2DEV(ha->sp_dma_addr);
  1590. SCpnt->scsi_done = done;
  1591. cpp->cpp_index = i;
  1592. SCpnt->host_scribble = (unsigned char *)&cpp->cpp_index;
  1593. if (do_trace)
  1594. scmd_printk(KERN_INFO, SCpnt,
  1595. "qcomm, mbox %d, pid %ld.\n", i, SCpnt->serial_number);
  1596. cpp->reqsen = 1;
  1597. cpp->dispri = 1;
  1598. #if 0
  1599. if (SCpnt->device->type == TYPE_TAPE)
  1600. cpp->hbaci = 1;
  1601. #endif
  1602. cpp->one = 1;
  1603. cpp->channel = SCpnt->device->channel;
  1604. cpp->target = SCpnt->device->id;
  1605. cpp->lun = SCpnt->device->lun;
  1606. cpp->SCpnt = SCpnt;
  1607. memcpy(cpp->cdb, SCpnt->cmnd, SCpnt->cmd_len);
  1608. /* Use data transfer direction SCpnt->sc_data_direction */
  1609. scsi_to_dev_dir(i, ha);
  1610. /* Map DMA buffers and SG list */
  1611. map_dma(i, ha);
  1612. if (linked_comm && SCpnt->device->queue_depth > 2
  1613. && TLDEV(SCpnt->device->type)) {
  1614. ha->cp_stat[i] = READY;
  1615. flush_dev(SCpnt->device, blk_rq_pos(SCpnt->request), ha, 0);
  1616. return 0;
  1617. }
  1618. /* Send control packet to the board */
  1619. if (do_dma(shost->io_port, cpp->cp_dma_addr, SEND_CP_DMA)) {
  1620. unmap_dma(i, ha);
  1621. SCpnt->host_scribble = NULL;
  1622. scmd_printk(KERN_INFO, SCpnt,
  1623. "qcomm, pid %ld, adapter busy.\n", SCpnt->serial_number);
  1624. return 1;
  1625. }
  1626. ha->cp_stat[i] = IN_USE;
  1627. return 0;
  1628. }
  1629. static int eata2x_eh_abort(struct scsi_cmnd *SCarg)
  1630. {
  1631. struct Scsi_Host *shost = SCarg->device->host;
  1632. struct hostdata *ha = (struct hostdata *)shost->hostdata;
  1633. unsigned int i;
  1634. if (SCarg->host_scribble == NULL) {
  1635. scmd_printk(KERN_INFO, SCarg,
  1636. "abort, pid %ld inactive.\n", SCarg->serial_number);
  1637. return SUCCESS;
  1638. }
  1639. i = *(unsigned int *)SCarg->host_scribble;
  1640. scmd_printk(KERN_WARNING, SCarg,
  1641. "abort, mbox %d, pid %ld.\n", i, SCarg->serial_number);
  1642. if (i >= shost->can_queue)
  1643. panic("%s: abort, invalid SCarg->host_scribble.\n", ha->board_name);
  1644. if (wait_on_busy(shost->io_port, MAXLOOP)) {
  1645. printk("%s: abort, timeout error.\n", ha->board_name);
  1646. return FAILED;
  1647. }
  1648. if (ha->cp_stat[i] == FREE) {
  1649. printk("%s: abort, mbox %d is free.\n", ha->board_name, i);
  1650. return SUCCESS;
  1651. }
  1652. if (ha->cp_stat[i] == IN_USE) {
  1653. printk("%s: abort, mbox %d is in use.\n", ha->board_name, i);
  1654. if (SCarg != ha->cp[i].SCpnt)
  1655. panic("%s: abort, mbox %d, SCarg %p, cp SCpnt %p.\n",
  1656. ha->board_name, i, SCarg, ha->cp[i].SCpnt);
  1657. if (inb(shost->io_port + REG_AUX_STATUS) & IRQ_ASSERTED)
  1658. printk("%s: abort, mbox %d, interrupt pending.\n",
  1659. ha->board_name, i);
  1660. return FAILED;
  1661. }
  1662. if (ha->cp_stat[i] == IN_RESET) {
  1663. printk("%s: abort, mbox %d is in reset.\n", ha->board_name, i);
  1664. return FAILED;
  1665. }
  1666. if (ha->cp_stat[i] == LOCKED) {
  1667. printk("%s: abort, mbox %d is locked.\n", ha->board_name, i);
  1668. return SUCCESS;
  1669. }
  1670. if (ha->cp_stat[i] == READY || ha->cp_stat[i] == ABORTING) {
  1671. unmap_dma(i, ha);
  1672. SCarg->result = DID_ABORT << 16;
  1673. SCarg->host_scribble = NULL;
  1674. ha->cp_stat[i] = FREE;
  1675. printk("%s, abort, mbox %d ready, DID_ABORT, pid %ld done.\n",
  1676. ha->board_name, i, SCarg->serial_number);
  1677. SCarg->scsi_done(SCarg);
  1678. return SUCCESS;
  1679. }
  1680. panic("%s: abort, mbox %d, invalid cp_stat.\n", ha->board_name, i);
  1681. }
  1682. static int eata2x_eh_host_reset(struct scsi_cmnd *SCarg)
  1683. {
  1684. unsigned int i, time, k, c, limit = 0;
  1685. int arg_done = 0;
  1686. struct scsi_cmnd *SCpnt;
  1687. struct Scsi_Host *shost = SCarg->device->host;
  1688. struct hostdata *ha = (struct hostdata *)shost->hostdata;
  1689. scmd_printk(KERN_INFO, SCarg,
  1690. "reset, enter, pid %ld.\n", SCarg->serial_number);
  1691. spin_lock_irq(shost->host_lock);
  1692. if (SCarg->host_scribble == NULL)
  1693. printk("%s: reset, pid %ld inactive.\n", ha->board_name, SCarg->serial_number);
  1694. if (ha->in_reset) {
  1695. printk("%s: reset, exit, already in reset.\n", ha->board_name);
  1696. spin_unlock_irq(shost->host_lock);
  1697. return FAILED;
  1698. }
  1699. if (wait_on_busy(shost->io_port, MAXLOOP)) {
  1700. printk("%s: reset, exit, timeout error.\n", ha->board_name);
  1701. spin_unlock_irq(shost->host_lock);
  1702. return FAILED;
  1703. }
  1704. ha->retries = 0;
  1705. for (c = 0; c <= shost->max_channel; c++)
  1706. for (k = 0; k < shost->max_id; k++) {
  1707. ha->target_redo[k][c] = 1;
  1708. ha->target_to[k][c] = 0;
  1709. }
  1710. for (i = 0; i < shost->can_queue; i++) {
  1711. if (ha->cp_stat[i] == FREE)
  1712. continue;
  1713. if (ha->cp_stat[i] == LOCKED) {
  1714. ha->cp_stat[i] = FREE;
  1715. printk("%s: reset, locked mbox %d forced free.\n",
  1716. ha->board_name, i);
  1717. continue;
  1718. }
  1719. if (!(SCpnt = ha->cp[i].SCpnt))
  1720. panic("%s: reset, mbox %d, SCpnt == NULL.\n", ha->board_name, i);
  1721. if (ha->cp_stat[i] == READY || ha->cp_stat[i] == ABORTING) {
  1722. ha->cp_stat[i] = ABORTING;
  1723. printk("%s: reset, mbox %d aborting, pid %ld.\n",
  1724. ha->board_name, i, SCpnt->serial_number);
  1725. }
  1726. else {
  1727. ha->cp_stat[i] = IN_RESET;
  1728. printk("%s: reset, mbox %d in reset, pid %ld.\n",
  1729. ha->board_name, i, SCpnt->serial_number);
  1730. }
  1731. if (SCpnt->host_scribble == NULL)
  1732. panic("%s: reset, mbox %d, garbled SCpnt.\n", ha->board_name, i);
  1733. if (*(unsigned int *)SCpnt->host_scribble != i)
  1734. panic("%s: reset, mbox %d, index mismatch.\n", ha->board_name, i);
  1735. if (SCpnt->scsi_done == NULL)
  1736. panic("%s: reset, mbox %d, SCpnt->scsi_done == NULL.\n",
  1737. ha->board_name, i);
  1738. if (SCpnt == SCarg)
  1739. arg_done = 1;
  1740. }
  1741. if (do_dma(shost->io_port, 0, RESET_PIO)) {
  1742. printk("%s: reset, cannot reset, timeout error.\n", ha->board_name);
  1743. spin_unlock_irq(shost->host_lock);
  1744. return FAILED;
  1745. }
  1746. printk("%s: reset, board reset done, enabling interrupts.\n", ha->board_name);
  1747. #if defined(DEBUG_RESET)
  1748. do_trace = 1;
  1749. #endif
  1750. ha->in_reset = 1;
  1751. spin_unlock_irq(shost->host_lock);
  1752. /* FIXME: use a sleep instead */
  1753. time = jiffies;
  1754. while ((jiffies - time) < (10 * HZ) && limit++ < 200000)
  1755. udelay(100L);
  1756. spin_lock_irq(shost->host_lock);
  1757. printk("%s: reset, interrupts disabled, loops %d.\n", ha->board_name, limit);
  1758. for (i = 0; i < shost->can_queue; i++) {
  1759. if (ha->cp_stat[i] == IN_RESET) {
  1760. SCpnt = ha->cp[i].SCpnt;
  1761. unmap_dma(i, ha);
  1762. SCpnt->result = DID_RESET << 16;
  1763. SCpnt->host_scribble = NULL;
  1764. /* This mailbox is still waiting for its interrupt */
  1765. ha->cp_stat[i] = LOCKED;
  1766. printk
  1767. ("%s, reset, mbox %d locked, DID_RESET, pid %ld done.\n",
  1768. ha->board_name, i, SCpnt->serial_number);
  1769. }
  1770. else if (ha->cp_stat[i] == ABORTING) {
  1771. SCpnt = ha->cp[i].SCpnt;
  1772. unmap_dma(i, ha);
  1773. SCpnt->result = DID_RESET << 16;
  1774. SCpnt->host_scribble = NULL;
  1775. /* This mailbox was never queued to the adapter */
  1776. ha->cp_stat[i] = FREE;
  1777. printk
  1778. ("%s, reset, mbox %d aborting, DID_RESET, pid %ld done.\n",
  1779. ha->board_name, i, SCpnt->serial_number);
  1780. }
  1781. else
  1782. /* Any other mailbox has already been set free by interrupt */
  1783. continue;
  1784. SCpnt->scsi_done(SCpnt);
  1785. }
  1786. ha->in_reset = 0;
  1787. do_trace = 0;
  1788. if (arg_done)
  1789. printk("%s: reset, exit, pid %ld done.\n", ha->board_name, SCarg->serial_number);
  1790. else
  1791. printk("%s: reset, exit.\n", ha->board_name);
  1792. spin_unlock_irq(shost->host_lock);
  1793. return SUCCESS;
  1794. }
  1795. int eata2x_bios_param(struct scsi_device *sdev, struct block_device *bdev,
  1796. sector_t capacity, int *dkinfo)
  1797. {
  1798. unsigned int size = capacity;
  1799. if (ext_tran || (scsicam_bios_param(bdev, capacity, dkinfo) < 0)) {
  1800. dkinfo[0] = 255;
  1801. dkinfo[1] = 63;
  1802. dkinfo[2] = size / (dkinfo[0] * dkinfo[1]);
  1803. }
  1804. #if defined (DEBUG_GEOMETRY)
  1805. printk("%s: bios_param, head=%d, sec=%d, cyl=%d.\n", driver_name,
  1806. dkinfo[0], dkinfo[1], dkinfo[2]);
  1807. #endif
  1808. return 0;
  1809. }
  1810. static void sort(unsigned long sk[], unsigned int da[], unsigned int n,
  1811. unsigned int rev)
  1812. {
  1813. unsigned int i, j, k, y;
  1814. unsigned long x;
  1815. for (i = 0; i < n - 1; i++) {
  1816. k = i;
  1817. for (j = k + 1; j < n; j++)
  1818. if (rev) {
  1819. if (sk[j] > sk[k])
  1820. k = j;
  1821. } else {
  1822. if (sk[j] < sk[k])
  1823. k = j;
  1824. }
  1825. if (k != i) {
  1826. x = sk[k];
  1827. sk[k] = sk[i];
  1828. sk[i] = x;
  1829. y = da[k];
  1830. da[k] = da[i];
  1831. da[i] = y;
  1832. }
  1833. }
  1834. return;
  1835. }
  1836. static int reorder(struct hostdata *ha, unsigned long cursec,
  1837. unsigned int ihdlr, unsigned int il[], unsigned int n_ready)
  1838. {
  1839. struct scsi_cmnd *SCpnt;
  1840. struct mscp *cpp;
  1841. unsigned int k, n;
  1842. unsigned int rev = 0, s = 1, r = 1;
  1843. unsigned int input_only = 1, overlap = 0;
  1844. unsigned long sl[n_ready], pl[n_ready], ll[n_ready];
  1845. unsigned long maxsec = 0, minsec = ULONG_MAX, seek = 0, iseek = 0;
  1846. unsigned long ioseek = 0;
  1847. static unsigned int flushcount = 0, batchcount = 0, sortcount = 0;
  1848. static unsigned int readycount = 0, ovlcount = 0, inputcount = 0;
  1849. static unsigned int readysorted = 0, revcount = 0;
  1850. static unsigned long seeksorted = 0, seeknosort = 0;
  1851. if (link_statistics && !(++flushcount % link_statistics))
  1852. printk("fc %d bc %d ic %d oc %d rc %d rs %d sc %d re %d"
  1853. " av %ldK as %ldK.\n", flushcount, batchcount,
  1854. inputcount, ovlcount, readycount, readysorted, sortcount,
  1855. revcount, seeknosort / (readycount + 1),
  1856. seeksorted / (readycount + 1));
  1857. if (n_ready <= 1)
  1858. return 0;
  1859. for (n = 0; n < n_ready; n++) {
  1860. k = il[n];
  1861. cpp = &ha->cp[k];
  1862. SCpnt = cpp->SCpnt;
  1863. if (!cpp->din)
  1864. input_only = 0;
  1865. if (blk_rq_pos(SCpnt->request) < minsec)
  1866. minsec = blk_rq_pos(SCpnt->request);
  1867. if (blk_rq_pos(SCpnt->request) > maxsec)
  1868. maxsec = blk_rq_pos(SCpnt->request);
  1869. sl[n] = blk_rq_pos(SCpnt->request);
  1870. ioseek += blk_rq_sectors(SCpnt->request);
  1871. if (!n)
  1872. continue;
  1873. if (sl[n] < sl[n - 1])
  1874. s = 0;
  1875. if (sl[n] > sl[n - 1])
  1876. r = 0;
  1877. if (link_statistics) {
  1878. if (sl[n] > sl[n - 1])
  1879. seek += sl[n] - sl[n - 1];
  1880. else
  1881. seek += sl[n - 1] - sl[n];
  1882. }
  1883. }
  1884. if (link_statistics) {
  1885. if (cursec > sl[0])
  1886. seek += cursec - sl[0];
  1887. else
  1888. seek += sl[0] - cursec;
  1889. }
  1890. if (cursec > ((maxsec + minsec) / 2))
  1891. rev = 1;
  1892. if (ioseek > ((maxsec - minsec) / 2))
  1893. rev = 0;
  1894. if (!((rev && r) || (!rev && s)))
  1895. sort(sl, il, n_ready, rev);
  1896. if (!input_only)
  1897. for (n = 0; n < n_ready; n++) {
  1898. k = il[n];
  1899. cpp = &ha->cp[k];
  1900. SCpnt = cpp->SCpnt;
  1901. ll[n] = blk_rq_sectors(SCpnt->request);
  1902. pl[n] = SCpnt->serial_number;
  1903. if (!n)
  1904. continue;
  1905. if ((sl[n] == sl[n - 1])
  1906. || (!rev && ((sl[n - 1] + ll[n - 1]) > sl[n]))
  1907. || (rev && ((sl[n] + ll[n]) > sl[n - 1])))
  1908. overlap = 1;
  1909. }
  1910. if (overlap)
  1911. sort(pl, il, n_ready, 0);
  1912. if (link_statistics) {
  1913. if (cursec > sl[0])
  1914. iseek = cursec - sl[0];
  1915. else
  1916. iseek = sl[0] - cursec;
  1917. batchcount++;
  1918. readycount += n_ready;
  1919. seeknosort += seek / 1024;
  1920. if (input_only)
  1921. inputcount++;
  1922. if (overlap) {
  1923. ovlcount++;
  1924. seeksorted += iseek / 1024;
  1925. } else
  1926. seeksorted += (iseek + maxsec - minsec) / 1024;
  1927. if (rev && !r) {
  1928. revcount++;
  1929. readysorted += n_ready;
  1930. }
  1931. if (!rev && !s) {
  1932. sortcount++;
  1933. readysorted += n_ready;
  1934. }
  1935. }
  1936. #if defined(DEBUG_LINKED_COMMANDS)
  1937. if (link_statistics && (overlap || !(flushcount % link_statistics)))
  1938. for (n = 0; n < n_ready; n++) {
  1939. k = il[n];
  1940. cpp = &ha->cp[k];
  1941. SCpnt = cpp->SCpnt;
  1942. scmd_printk(KERN_INFO, SCpnt,
  1943. "%s pid %ld mb %d fc %d nr %d sec %ld ns %u"
  1944. " cur %ld s:%c r:%c rev:%c in:%c ov:%c xd %d.\n",
  1945. (ihdlr ? "ihdlr" : "qcomm"),
  1946. SCpnt->serial_number, k, flushcount,
  1947. n_ready, blk_rq_pos(SCpnt->request),
  1948. blk_rq_sectors(SCpnt->request), cursec, YESNO(s),
  1949. YESNO(r), YESNO(rev), YESNO(input_only),
  1950. YESNO(overlap), cpp->din);
  1951. }
  1952. #endif
  1953. return overlap;
  1954. }
  1955. static void flush_dev(struct scsi_device *dev, unsigned long cursec,
  1956. struct hostdata *ha, unsigned int ihdlr)
  1957. {
  1958. struct scsi_cmnd *SCpnt;
  1959. struct mscp *cpp;
  1960. unsigned int k, n, n_ready = 0, il[MAX_MAILBOXES];
  1961. for (k = 0; k < dev->host->can_queue; k++) {
  1962. if (ha->cp_stat[k] != READY && ha->cp_stat[k] != IN_USE)
  1963. continue;
  1964. cpp = &ha->cp[k];
  1965. SCpnt = cpp->SCpnt;
  1966. if (SCpnt->device != dev)
  1967. continue;
  1968. if (ha->cp_stat[k] == IN_USE)
  1969. return;
  1970. il[n_ready++] = k;
  1971. }
  1972. if (reorder(ha, cursec, ihdlr, il, n_ready))
  1973. n_ready = 1;
  1974. for (n = 0; n < n_ready; n++) {
  1975. k = il[n];
  1976. cpp = &ha->cp[k];
  1977. SCpnt = cpp->SCpnt;
  1978. if (do_dma(dev->host->io_port, cpp->cp_dma_addr, SEND_CP_DMA)) {
  1979. scmd_printk(KERN_INFO, SCpnt,
  1980. "%s, pid %ld, mbox %d, adapter"
  1981. " busy, will abort.\n",
  1982. (ihdlr ? "ihdlr" : "qcomm"),
  1983. SCpnt->serial_number, k);
  1984. ha->cp_stat[k] = ABORTING;
  1985. continue;
  1986. }
  1987. ha->cp_stat[k] = IN_USE;
  1988. }
  1989. }
  1990. static irqreturn_t ihdlr(struct Scsi_Host *shost)
  1991. {
  1992. struct scsi_cmnd *SCpnt;
  1993. unsigned int i, k, c, status, tstatus, reg;
  1994. struct mssp *spp;
  1995. struct mscp *cpp;
  1996. struct hostdata *ha = (struct hostdata *)shost->hostdata;
  1997. int irq = shost->irq;
  1998. /* Check if this board need to be serviced */
  1999. if (!(inb(shost->io_port + REG_AUX_STATUS) & IRQ_ASSERTED))
  2000. goto none;
  2001. ha->iocount++;
  2002. if (do_trace)
  2003. printk("%s: ihdlr, enter, irq %d, count %d.\n", ha->board_name, irq,
  2004. ha->iocount);
  2005. /* Check if this board is still busy */
  2006. if (wait_on_busy(shost->io_port, 20 * MAXLOOP)) {
  2007. reg = inb(shost->io_port + REG_STATUS);
  2008. printk
  2009. ("%s: ihdlr, busy timeout error, irq %d, reg 0x%x, count %d.\n",
  2010. ha->board_name, irq, reg, ha->iocount);
  2011. goto none;
  2012. }
  2013. spp = &ha->sp;
  2014. /* Make a local copy just before clearing the interrupt indication */
  2015. memcpy(spp, ha->sp_cpu_addr, sizeof(struct mssp));
  2016. /* Clear the completion flag and cp pointer on the dynamic copy of sp */
  2017. memset(ha->sp_cpu_addr, 0, sizeof(struct mssp));
  2018. /* Read the status register to clear the interrupt indication */
  2019. reg = inb(shost->io_port + REG_STATUS);
  2020. #if defined (DEBUG_INTERRUPT)
  2021. {
  2022. unsigned char *bytesp;
  2023. int cnt;
  2024. bytesp = (unsigned char *)spp;
  2025. if (ha->iocount < 200) {
  2026. printk("sp[] =");
  2027. for (cnt = 0; cnt < 15; cnt++)
  2028. printk(" 0x%x", bytesp[cnt]);
  2029. printk("\n");
  2030. }
  2031. }
  2032. #endif
  2033. /* Reject any sp with supspect data */
  2034. if (spp->eoc == 0 && ha->iocount > 1)
  2035. printk
  2036. ("%s: ihdlr, spp->eoc == 0, irq %d, reg 0x%x, count %d.\n",
  2037. ha->board_name, irq, reg, ha->iocount);
  2038. if (spp->cpp_index < 0 || spp->cpp_index >= shost->can_queue)
  2039. printk
  2040. ("%s: ihdlr, bad spp->cpp_index %d, irq %d, reg 0x%x, count %d.\n",
  2041. ha->board_name, spp->cpp_index, irq, reg, ha->iocount);
  2042. if (spp->eoc == 0 || spp->cpp_index < 0
  2043. || spp->cpp_index >= shost->can_queue)
  2044. goto handled;
  2045. /* Find the mailbox to be serviced on this board */
  2046. i = spp->cpp_index;
  2047. cpp = &(ha->cp[i]);
  2048. #if defined(DEBUG_GENERATE_ABORTS)
  2049. if ((ha->iocount > 500) && ((ha->iocount % 500) < 3))
  2050. goto handled;
  2051. #endif
  2052. if (ha->cp_stat[i] == IGNORE) {
  2053. ha->cp_stat[i] = FREE;
  2054. goto handled;
  2055. } else if (ha->cp_stat[i] == LOCKED) {
  2056. ha->cp_stat[i] = FREE;
  2057. printk("%s: ihdlr, mbox %d unlocked, count %d.\n", ha->board_name, i,
  2058. ha->iocount);
  2059. goto handled;
  2060. } else if (ha->cp_stat[i] == FREE) {
  2061. printk("%s: ihdlr, mbox %d is free, count %d.\n", ha->board_name, i,
  2062. ha->iocount);
  2063. goto handled;
  2064. } else if (ha->cp_stat[i] == IN_RESET)
  2065. printk("%s: ihdlr, mbox %d is in reset.\n", ha->board_name, i);
  2066. else if (ha->cp_stat[i] != IN_USE)
  2067. panic("%s: ihdlr, mbox %d, invalid cp_stat: %d.\n",
  2068. ha->board_name, i, ha->cp_stat[i]);
  2069. ha->cp_stat[i] = FREE;
  2070. SCpnt = cpp->SCpnt;
  2071. if (SCpnt == NULL)
  2072. panic("%s: ihdlr, mbox %d, SCpnt == NULL.\n", ha->board_name, i);
  2073. if (SCpnt->host_scribble == NULL)
  2074. panic("%s: ihdlr, mbox %d, pid %ld, SCpnt %p garbled.\n", ha->board_name,
  2075. i, SCpnt->serial_number, SCpnt);
  2076. if (*(unsigned int *)SCpnt->host_scribble != i)
  2077. panic("%s: ihdlr, mbox %d, pid %ld, index mismatch %d.\n",
  2078. ha->board_name, i, SCpnt->serial_number,
  2079. *(unsigned int *)SCpnt->host_scribble);
  2080. sync_dma(i, ha);
  2081. if (linked_comm && SCpnt->device->queue_depth > 2
  2082. && TLDEV(SCpnt->device->type))
  2083. flush_dev(SCpnt->device, blk_rq_pos(SCpnt->request), ha, 1);
  2084. tstatus = status_byte(spp->target_status);
  2085. #if defined(DEBUG_GENERATE_ERRORS)
  2086. if ((ha->iocount > 500) && ((ha->iocount % 200) < 2))
  2087. spp->adapter_status = 0x01;
  2088. #endif
  2089. switch (spp->adapter_status) {
  2090. case ASOK: /* status OK */
  2091. /* Forces a reset if a disk drive keeps returning BUSY */
  2092. if (tstatus == BUSY && SCpnt->device->type != TYPE_TAPE)
  2093. status = DID_ERROR << 16;
  2094. /* If there was a bus reset, redo operation on each target */
  2095. else if (tstatus != GOOD && SCpnt->device->type == TYPE_DISK
  2096. && ha->target_redo[SCpnt->device->id][SCpnt->
  2097. device->
  2098. channel])
  2099. status = DID_BUS_BUSY << 16;
  2100. /* Works around a flaw in scsi.c */
  2101. else if (tstatus == CHECK_CONDITION
  2102. && SCpnt->device->type == TYPE_DISK
  2103. && (SCpnt->sense_buffer[2] & 0xf) == RECOVERED_ERROR)
  2104. status = DID_BUS_BUSY << 16;
  2105. else
  2106. status = DID_OK << 16;
  2107. if (tstatus == GOOD)
  2108. ha->target_redo[SCpnt->device->id][SCpnt->device->
  2109. channel] = 0;
  2110. if (spp->target_status && SCpnt->device->type == TYPE_DISK &&
  2111. (!(tstatus == CHECK_CONDITION && ha->iocount <= 1000 &&
  2112. (SCpnt->sense_buffer[2] & 0xf) == NOT_READY)))
  2113. printk("%s: ihdlr, target %d.%d:%d, pid %ld, "
  2114. "target_status 0x%x, sense key 0x%x.\n",
  2115. ha->board_name,
  2116. SCpnt->device->channel, SCpnt->device->id,
  2117. SCpnt->device->lun, SCpnt->serial_number,
  2118. spp->target_status, SCpnt->sense_buffer[2]);
  2119. ha->target_to[SCpnt->device->id][SCpnt->device->channel] = 0;
  2120. if (ha->last_retried_pid == SCpnt->serial_number)
  2121. ha->retries = 0;
  2122. break;
  2123. case ASST: /* Selection Time Out */
  2124. case 0x02: /* Command Time Out */
  2125. if (ha->target_to[SCpnt->device->id][SCpnt->device->channel] > 1)
  2126. status = DID_ERROR << 16;
  2127. else {
  2128. status = DID_TIME_OUT << 16;
  2129. ha->target_to[SCpnt->device->id][SCpnt->device->
  2130. channel]++;
  2131. }
  2132. break;
  2133. /* Perform a limited number of internal retries */
  2134. case 0x03: /* SCSI Bus Reset Received */
  2135. case 0x04: /* Initial Controller Power-up */
  2136. for (c = 0; c <= shost->max_channel; c++)
  2137. for (k = 0; k < shost->max_id; k++)
  2138. ha->target_redo[k][c] = 1;
  2139. if (SCpnt->device->type != TYPE_TAPE
  2140. && ha->retries < MAX_INTERNAL_RETRIES) {
  2141. #if defined(DID_SOFT_ERROR)
  2142. status = DID_SOFT_ERROR << 16;
  2143. #else
  2144. status = DID_BUS_BUSY << 16;
  2145. #endif
  2146. ha->retries++;
  2147. ha->last_retried_pid = SCpnt->serial_number;
  2148. } else
  2149. status = DID_ERROR << 16;
  2150. break;
  2151. case 0x05: /* Unexpected Bus Phase */
  2152. case 0x06: /* Unexpected Bus Free */
  2153. case 0x07: /* Bus Parity Error */
  2154. case 0x08: /* SCSI Hung */
  2155. case 0x09: /* Unexpected Message Reject */
  2156. case 0x0a: /* SCSI Bus Reset Stuck */
  2157. case 0x0b: /* Auto Request-Sense Failed */
  2158. case 0x0c: /* Controller Ram Parity Error */
  2159. default:
  2160. status = DID_ERROR << 16;
  2161. break;
  2162. }
  2163. SCpnt->result = status | spp->target_status;
  2164. #if defined(DEBUG_INTERRUPT)
  2165. if (SCpnt->result || do_trace)
  2166. #else
  2167. if ((spp->adapter_status != ASOK && ha->iocount > 1000) ||
  2168. (spp->adapter_status != ASOK &&
  2169. spp->adapter_status != ASST && ha->iocount <= 1000) ||
  2170. do_trace || msg_byte(spp->target_status))
  2171. #endif
  2172. scmd_printk(KERN_INFO, SCpnt, "ihdlr, mbox %2d, err 0x%x:%x,"
  2173. " pid %ld, reg 0x%x, count %d.\n",
  2174. i, spp->adapter_status, spp->target_status,
  2175. SCpnt->serial_number, reg, ha->iocount);
  2176. unmap_dma(i, ha);
  2177. /* Set the command state to inactive */
  2178. SCpnt->host_scribble = NULL;
  2179. SCpnt->scsi_done(SCpnt);
  2180. if (do_trace)
  2181. printk("%s: ihdlr, exit, irq %d, count %d.\n", ha->board_name,
  2182. irq, ha->iocount);
  2183. handled:
  2184. return IRQ_HANDLED;
  2185. none:
  2186. return IRQ_NONE;
  2187. }
  2188. static irqreturn_t do_interrupt_handler(int dummy, void *shap)
  2189. {
  2190. struct Scsi_Host *shost;
  2191. unsigned int j;
  2192. unsigned long spin_flags;
  2193. irqreturn_t ret;
  2194. /* Check if the interrupt must be processed by this handler */
  2195. if ((j = (unsigned int)((char *)shap - sha)) >= num_boards)
  2196. return IRQ_NONE;
  2197. shost = sh[j];
  2198. spin_lock_irqsave(shost->host_lock, spin_flags);
  2199. ret = ihdlr(shost);
  2200. spin_unlock_irqrestore(shost->host_lock, spin_flags);
  2201. return ret;
  2202. }
  2203. static int eata2x_release(struct Scsi_Host *shost)
  2204. {
  2205. struct hostdata *ha = (struct hostdata *)shost->hostdata;
  2206. unsigned int i;
  2207. for (i = 0; i < shost->can_queue; i++)
  2208. kfree((&ha->cp[i])->sglist);
  2209. for (i = 0; i < shost->can_queue; i++)
  2210. pci_unmap_single(ha->pdev, ha->cp[i].cp_dma_addr,
  2211. sizeof(struct mscp), PCI_DMA_BIDIRECTIONAL);
  2212. if (ha->sp_cpu_addr)
  2213. pci_free_consistent(ha->pdev, sizeof(struct mssp),
  2214. ha->sp_cpu_addr, ha->sp_dma_addr);
  2215. free_irq(shost->irq, &sha[ha->board_number]);
  2216. if (shost->dma_channel != NO_DMA)
  2217. free_dma(shost->dma_channel);
  2218. release_region(shost->io_port, shost->n_io_port);
  2219. scsi_unregister(shost);
  2220. return 0;
  2221. }
  2222. #include "scsi_module.c"
  2223. #ifndef MODULE
  2224. __setup("eata=", option_setup);
  2225. #endif /* end MODULE */