sun3_NCR5380.c 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961
  1. /* sun3_NCR5380.c -- adapted from atari_NCR5380.c for the sun3 by
  2. Sam Creasey. */
  3. /*
  4. * NCR 5380 generic driver routines. These should make it *trivial*
  5. * to implement 5380 SCSI drivers under Linux with a non-trantor
  6. * architecture.
  7. *
  8. * Note that these routines also work with NR53c400 family chips.
  9. *
  10. * Copyright 1993, Drew Eckhardt
  11. * Visionary Computing
  12. * (Unix and Linux consulting and custom programming)
  13. * drew@colorado.edu
  14. * +1 (303) 666-5836
  15. *
  16. * DISTRIBUTION RELEASE 6.
  17. *
  18. * For more information, please consult
  19. *
  20. * NCR 5380 Family
  21. * SCSI Protocol Controller
  22. * Databook
  23. *
  24. * NCR Microelectronics
  25. * 1635 Aeroplaza Drive
  26. * Colorado Springs, CO 80916
  27. * 1+ (719) 578-3400
  28. * 1+ (800) 334-5454
  29. */
  30. /*
  31. * ++roman: To port the 5380 driver to the Atari, I had to do some changes in
  32. * this file, too:
  33. *
  34. * - Some of the debug statements were incorrect (undefined variables and the
  35. * like). I fixed that.
  36. *
  37. * - In information_transfer(), I think a #ifdef was wrong. Looking at the
  38. * possible DMA transfer size should also happen for REAL_DMA. I added this
  39. * in the #if statement.
  40. *
  41. * - When using real DMA, information_transfer() should return in a DATAOUT
  42. * phase after starting the DMA. It has nothing more to do.
  43. *
  44. * - The interrupt service routine should run main after end of DMA, too (not
  45. * only after RESELECTION interrupts). Additionally, it should _not_ test
  46. * for more interrupts after running main, since a DMA process may have
  47. * been started and interrupts are turned on now. The new int could happen
  48. * inside the execution of NCR5380_intr(), leading to recursive
  49. * calls.
  50. *
  51. * - I've deleted all the stuff for AUTOPROBE_IRQ, REAL_DMA_POLL, PSEUDO_DMA
  52. * and USLEEP, because these were messing up readability and will never be
  53. * needed for Atari SCSI.
  54. *
  55. * - I've revised the NCR5380_main() calling scheme (relax the 'main_running'
  56. * stuff), and 'main' is executed in a bottom half if awoken by an
  57. * interrupt.
  58. *
  59. * - The code was quite cluttered up by "#if (NDEBUG & NDEBUG_*) printk..."
  60. * constructs. In my eyes, this made the source rather unreadable, so I
  61. * finally replaced that by the *_PRINTK() macros.
  62. *
  63. */
  64. #include <scsi/scsi_dbg.h>
  65. #include <scsi/scsi_transport_spi.h>
  66. /*
  67. * Further development / testing that should be done :
  68. * 1. Test linked command handling code after Eric is ready with
  69. * the high level code.
  70. */
  71. #if (NDEBUG & NDEBUG_LISTS)
  72. #define LIST(x,y) \
  73. { printk("LINE:%d Adding %p to %p\n", __LINE__, (void*)(x), (void*)(y)); \
  74. if ((x)==(y)) udelay(5); }
  75. #define REMOVE(w,x,y,z) \
  76. { printk("LINE:%d Removing: %p->%p %p->%p \n", __LINE__, \
  77. (void*)(w), (void*)(x), (void*)(y), (void*)(z)); \
  78. if ((x)==(y)) udelay(5); }
  79. #else
  80. #define LIST(x,y)
  81. #define REMOVE(w,x,y,z)
  82. #endif
  83. #ifndef notyet
  84. #undef LINKED
  85. #endif
  86. /*
  87. * Design
  88. * Issues :
  89. *
  90. * The other Linux SCSI drivers were written when Linux was Intel PC-only,
  91. * and specifically for each board rather than each chip. This makes their
  92. * adaptation to platforms like the Mac (Some of which use NCR5380's)
  93. * more difficult than it has to be.
  94. *
  95. * Also, many of the SCSI drivers were written before the command queuing
  96. * routines were implemented, meaning their implementations of queued
  97. * commands were hacked on rather than designed in from the start.
  98. *
  99. * When I designed the Linux SCSI drivers I figured that
  100. * while having two different SCSI boards in a system might be useful
  101. * for debugging things, two of the same type wouldn't be used.
  102. * Well, I was wrong and a number of users have mailed me about running
  103. * multiple high-performance SCSI boards in a server.
  104. *
  105. * Finally, when I get questions from users, I have no idea what
  106. * revision of my driver they are running.
  107. *
  108. * This driver attempts to address these problems :
  109. * This is a generic 5380 driver. To use it on a different platform,
  110. * one simply writes appropriate system specific macros (ie, data
  111. * transfer - some PC's will use the I/O bus, 68K's must use
  112. * memory mapped) and drops this file in their 'C' wrapper.
  113. *
  114. * As far as command queueing, two queues are maintained for
  115. * each 5380 in the system - commands that haven't been issued yet,
  116. * and commands that are currently executing. This means that an
  117. * unlimited number of commands may be queued, letting
  118. * more commands propagate from the higher driver levels giving higher
  119. * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported,
  120. * allowing multiple commands to propagate all the way to a SCSI-II device
  121. * while a command is already executing.
  122. *
  123. * To solve the multiple-boards-in-the-same-system problem,
  124. * there is a separate instance structure for each instance
  125. * of a 5380 in the system. So, multiple NCR5380 drivers will
  126. * be able to coexist with appropriate changes to the high level
  127. * SCSI code.
  128. *
  129. * A NCR5380_PUBLIC_REVISION macro is provided, with the release
  130. * number (updated for each public release) printed by the
  131. * NCR5380_print_options command, which should be called from the
  132. * wrapper detect function, so that I know what release of the driver
  133. * users are using.
  134. *
  135. * Issues specific to the NCR5380 :
  136. *
  137. * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead
  138. * piece of hardware that requires you to sit in a loop polling for
  139. * the REQ signal as long as you are connected. Some devices are
  140. * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect
  141. * while doing long seek operations.
  142. *
  143. * The workaround for this is to keep track of devices that have
  144. * disconnected. If the device hasn't disconnected, for commands that
  145. * should disconnect, we do something like
  146. *
  147. * while (!REQ is asserted) { sleep for N usecs; poll for M usecs }
  148. *
  149. * Some tweaking of N and M needs to be done. An algorithm based
  150. * on "time to data" would give the best results as long as short time
  151. * to datas (ie, on the same track) were considered, however these
  152. * broken devices are the exception rather than the rule and I'd rather
  153. * spend my time optimizing for the normal case.
  154. *
  155. * Architecture :
  156. *
  157. * At the heart of the design is a coroutine, NCR5380_main,
  158. * which is started when not running by the interrupt handler,
  159. * timer, and queue command function. It attempts to establish
  160. * I_T_L or I_T_L_Q nexuses by removing the commands from the
  161. * issue queue and calling NCR5380_select() if a nexus
  162. * is not established.
  163. *
  164. * Once a nexus is established, the NCR5380_information_transfer()
  165. * phase goes through the various phases as instructed by the target.
  166. * if the target goes into MSG IN and sends a DISCONNECT message,
  167. * the command structure is placed into the per instance disconnected
  168. * queue, and NCR5380_main tries to find more work. If USLEEP
  169. * was defined, and the target is idle for too long, the system
  170. * will try to sleep.
  171. *
  172. * If a command has disconnected, eventually an interrupt will trigger,
  173. * calling NCR5380_intr() which will in turn call NCR5380_reselect
  174. * to reestablish a nexus. This will run main if necessary.
  175. *
  176. * On command termination, the done function will be called as
  177. * appropriate.
  178. *
  179. * SCSI pointers are maintained in the SCp field of SCSI command
  180. * structures, being initialized after the command is connected
  181. * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
  182. * Note that in violation of the standard, an implicit SAVE POINTERS operation
  183. * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
  184. */
  185. /*
  186. * Using this file :
  187. * This file a skeleton Linux SCSI driver for the NCR 5380 series
  188. * of chips. To use it, you write an architecture specific functions
  189. * and macros and include this file in your driver.
  190. *
  191. * These macros control options :
  192. * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
  193. * for commands that return with a CHECK CONDITION status.
  194. *
  195. * LINKED - if defined, linked commands are supported.
  196. *
  197. * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
  198. *
  199. * SUPPORT_TAGS - if defined, SCSI-2 tagged queuing is used where possible
  200. *
  201. * These macros MUST be defined :
  202. *
  203. * NCR5380_read(register) - read from the specified register
  204. *
  205. * NCR5380_write(register, value) - write to the specific register
  206. *
  207. * Either real DMA *or* pseudo DMA may be implemented
  208. * REAL functions :
  209. * NCR5380_REAL_DMA should be defined if real DMA is to be used.
  210. * Note that the DMA setup functions should return the number of bytes
  211. * that they were able to program the controller for.
  212. *
  213. * Also note that generic i386/PC versions of these macros are
  214. * available as NCR5380_i386_dma_write_setup,
  215. * NCR5380_i386_dma_read_setup, and NCR5380_i386_dma_residual.
  216. *
  217. * NCR5380_dma_write_setup(instance, src, count) - initialize
  218. * NCR5380_dma_read_setup(instance, dst, count) - initialize
  219. * NCR5380_dma_residual(instance); - residual count
  220. *
  221. * PSEUDO functions :
  222. * NCR5380_pwrite(instance, src, count)
  223. * NCR5380_pread(instance, dst, count);
  224. *
  225. * If nothing specific to this implementation needs doing (ie, with external
  226. * hardware), you must also define
  227. *
  228. * NCR5380_queue_command
  229. * NCR5380_reset
  230. * NCR5380_abort
  231. * NCR5380_proc_info
  232. *
  233. * to be the global entry points into the specific driver, ie
  234. * #define NCR5380_queue_command t128_queue_command.
  235. *
  236. * If this is not done, the routines will be defined as static functions
  237. * with the NCR5380* names and the user must provide a globally
  238. * accessible wrapper function.
  239. *
  240. * The generic driver is initialized by calling NCR5380_init(instance),
  241. * after setting the appropriate host specific fields and ID. If the
  242. * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
  243. * possible) function may be used. Before the specific driver initialization
  244. * code finishes, NCR5380_print_options should be called.
  245. */
  246. static struct Scsi_Host *first_instance = NULL;
  247. static struct scsi_host_template *the_template = NULL;
  248. /* Macros ease life... :-) */
  249. #define SETUP_HOSTDATA(in) \
  250. struct NCR5380_hostdata *hostdata = \
  251. (struct NCR5380_hostdata *)(in)->hostdata
  252. #define HOSTDATA(in) ((struct NCR5380_hostdata *)(in)->hostdata)
  253. #define NEXT(cmd) ((struct scsi_cmnd *)(cmd)->host_scribble)
  254. #define SET_NEXT(cmd, next) ((cmd)->host_scribble = (void *)(next))
  255. #define NEXTADDR(cmd) ((struct scsi_cmnd **)&((cmd)->host_scribble))
  256. #define HOSTNO instance->host_no
  257. #define H_NO(cmd) (cmd)->device->host->host_no
  258. #define SGADDR(buffer) (void *)(((unsigned long)sg_virt(((buffer)))))
  259. #ifdef SUPPORT_TAGS
  260. /*
  261. * Functions for handling tagged queuing
  262. * =====================================
  263. *
  264. * ++roman (01/96): Now I've implemented SCSI-2 tagged queuing. Some notes:
  265. *
  266. * Using consecutive numbers for the tags is no good idea in my eyes. There
  267. * could be wrong re-usings if the counter (8 bit!) wraps and some early
  268. * command has been preempted for a long time. My solution: a bitfield for
  269. * remembering used tags.
  270. *
  271. * There's also the problem that each target has a certain queue size, but we
  272. * cannot know it in advance :-( We just see a QUEUE_FULL status being
  273. * returned. So, in this case, the driver internal queue size assumption is
  274. * reduced to the number of active tags if QUEUE_FULL is returned by the
  275. * target. The command is returned to the mid-level, but with status changed
  276. * to BUSY, since --as I've seen-- the mid-level can't handle QUEUE_FULL
  277. * correctly.
  278. *
  279. * We're also not allowed running tagged commands as long as an untagged
  280. * command is active. And REQUEST SENSE commands after a contingent allegiance
  281. * condition _must_ be untagged. To keep track whether an untagged command has
  282. * been issued, the host->busy array is still employed, as it is without
  283. * support for tagged queuing.
  284. *
  285. * One could suspect that there are possible race conditions between
  286. * is_lun_busy(), cmd_get_tag() and cmd_free_tag(). But I think this isn't the
  287. * case: is_lun_busy() and cmd_get_tag() are both called from NCR5380_main(),
  288. * which already guaranteed to be running at most once. It is also the only
  289. * place where tags/LUNs are allocated. So no other allocation can slip
  290. * between that pair, there could only happen a reselection, which can free a
  291. * tag, but that doesn't hurt. Only the sequence in cmd_free_tag() becomes
  292. * important: the tag bit must be cleared before 'nr_allocated' is decreased.
  293. */
  294. /* -1 for TAG_NONE is not possible with unsigned char cmd->tag */
  295. #undef TAG_NONE
  296. #define TAG_NONE 0xff
  297. /* For the m68k, the number of bits in 'allocated' must be a multiple of 32! */
  298. #if (MAX_TAGS % 32) != 0
  299. #error "MAX_TAGS must be a multiple of 32!"
  300. #endif
  301. typedef struct {
  302. char allocated[MAX_TAGS/8];
  303. int nr_allocated;
  304. int queue_size;
  305. } TAG_ALLOC;
  306. static TAG_ALLOC TagAlloc[8][8]; /* 8 targets and 8 LUNs */
  307. static void __init init_tags( void )
  308. {
  309. int target, lun;
  310. TAG_ALLOC *ta;
  311. if (!setup_use_tagged_queuing)
  312. return;
  313. for( target = 0; target < 8; ++target ) {
  314. for( lun = 0; lun < 8; ++lun ) {
  315. ta = &TagAlloc[target][lun];
  316. memset( &ta->allocated, 0, MAX_TAGS/8 );
  317. ta->nr_allocated = 0;
  318. /* At the beginning, assume the maximum queue size we could
  319. * support (MAX_TAGS). This value will be decreased if the target
  320. * returns QUEUE_FULL status.
  321. */
  322. ta->queue_size = MAX_TAGS;
  323. }
  324. }
  325. }
  326. /* Check if we can issue a command to this LUN: First see if the LUN is marked
  327. * busy by an untagged command. If the command should use tagged queuing, also
  328. * check that there is a free tag and the target's queue won't overflow. This
  329. * function should be called with interrupts disabled to avoid race
  330. * conditions.
  331. */
  332. static int is_lun_busy(struct scsi_cmnd *cmd, int should_be_tagged)
  333. {
  334. SETUP_HOSTDATA(cmd->device->host);
  335. if (hostdata->busy[cmd->device->id] & (1 << cmd->device->lun))
  336. return( 1 );
  337. if (!should_be_tagged ||
  338. !setup_use_tagged_queuing || !cmd->device->tagged_supported)
  339. return( 0 );
  340. if (TagAlloc[cmd->device->id][cmd->device->lun].nr_allocated >=
  341. TagAlloc[cmd->device->id][cmd->device->lun].queue_size ) {
  342. TAG_PRINTK( "scsi%d: target %d lun %d: no free tags\n",
  343. H_NO(cmd), cmd->device->id, cmd->device->lun );
  344. return( 1 );
  345. }
  346. return( 0 );
  347. }
  348. /* Allocate a tag for a command (there are no checks anymore, check_lun_busy()
  349. * must be called before!), or reserve the LUN in 'busy' if the command is
  350. * untagged.
  351. */
  352. static void cmd_get_tag(struct scsi_cmnd *cmd, int should_be_tagged)
  353. {
  354. SETUP_HOSTDATA(cmd->device->host);
  355. /* If we or the target don't support tagged queuing, allocate the LUN for
  356. * an untagged command.
  357. */
  358. if (!should_be_tagged ||
  359. !setup_use_tagged_queuing || !cmd->device->tagged_supported) {
  360. cmd->tag = TAG_NONE;
  361. hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
  362. TAG_PRINTK( "scsi%d: target %d lun %d now allocated by untagged "
  363. "command\n", H_NO(cmd), cmd->device->id, cmd->device->lun );
  364. }
  365. else {
  366. TAG_ALLOC *ta = &TagAlloc[cmd->device->id][cmd->device->lun];
  367. cmd->tag = find_first_zero_bit( &ta->allocated, MAX_TAGS );
  368. set_bit( cmd->tag, &ta->allocated );
  369. ta->nr_allocated++;
  370. TAG_PRINTK( "scsi%d: using tag %d for target %d lun %d "
  371. "(now %d tags in use)\n",
  372. H_NO(cmd), cmd->tag, cmd->device->id, cmd->device->lun,
  373. ta->nr_allocated );
  374. }
  375. }
  376. /* Mark the tag of command 'cmd' as free, or in case of an untagged command,
  377. * unlock the LUN.
  378. */
  379. static void cmd_free_tag(struct scsi_cmnd *cmd)
  380. {
  381. SETUP_HOSTDATA(cmd->device->host);
  382. if (cmd->tag == TAG_NONE) {
  383. hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
  384. TAG_PRINTK( "scsi%d: target %d lun %d untagged cmd finished\n",
  385. H_NO(cmd), cmd->device->id, cmd->device->lun );
  386. }
  387. else if (cmd->tag >= MAX_TAGS) {
  388. printk(KERN_NOTICE "scsi%d: trying to free bad tag %d!\n",
  389. H_NO(cmd), cmd->tag );
  390. }
  391. else {
  392. TAG_ALLOC *ta = &TagAlloc[cmd->device->id][cmd->device->lun];
  393. clear_bit( cmd->tag, &ta->allocated );
  394. ta->nr_allocated--;
  395. TAG_PRINTK( "scsi%d: freed tag %d for target %d lun %d\n",
  396. H_NO(cmd), cmd->tag, cmd->device->id, cmd->device->lun );
  397. }
  398. }
  399. static void free_all_tags( void )
  400. {
  401. int target, lun;
  402. TAG_ALLOC *ta;
  403. if (!setup_use_tagged_queuing)
  404. return;
  405. for( target = 0; target < 8; ++target ) {
  406. for( lun = 0; lun < 8; ++lun ) {
  407. ta = &TagAlloc[target][lun];
  408. memset( &ta->allocated, 0, MAX_TAGS/8 );
  409. ta->nr_allocated = 0;
  410. }
  411. }
  412. }
  413. #endif /* SUPPORT_TAGS */
  414. /*
  415. * Function : void initialize_SCp(struct scsi_cmnd *cmd)
  416. *
  417. * Purpose : initialize the saved data pointers for cmd to point to the
  418. * start of the buffer.
  419. *
  420. * Inputs : cmd - struct scsi_cmnd structure to have pointers reset.
  421. */
  422. static __inline__ void initialize_SCp(struct scsi_cmnd *cmd)
  423. {
  424. /*
  425. * Initialize the Scsi Pointer field so that all of the commands in the
  426. * various queues are valid.
  427. */
  428. if (scsi_bufflen(cmd)) {
  429. cmd->SCp.buffer = scsi_sglist(cmd);
  430. cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
  431. cmd->SCp.ptr = (char *) SGADDR(cmd->SCp.buffer);
  432. cmd->SCp.this_residual = cmd->SCp.buffer->length;
  433. } else {
  434. cmd->SCp.buffer = NULL;
  435. cmd->SCp.buffers_residual = 0;
  436. cmd->SCp.ptr = NULL;
  437. cmd->SCp.this_residual = 0;
  438. }
  439. }
  440. #include <linux/delay.h>
  441. #if 1
  442. static struct {
  443. unsigned char mask;
  444. const char * name;}
  445. signals[] = {{ SR_DBP, "PARITY"}, { SR_RST, "RST" }, { SR_BSY, "BSY" },
  446. { SR_REQ, "REQ" }, { SR_MSG, "MSG" }, { SR_CD, "CD" }, { SR_IO, "IO" },
  447. { SR_SEL, "SEL" }, {0, NULL}},
  448. basrs[] = {{BASR_ATN, "ATN"}, {BASR_ACK, "ACK"}, {0, NULL}},
  449. icrs[] = {{ICR_ASSERT_RST, "ASSERT RST"},{ICR_ASSERT_ACK, "ASSERT ACK"},
  450. {ICR_ASSERT_BSY, "ASSERT BSY"}, {ICR_ASSERT_SEL, "ASSERT SEL"},
  451. {ICR_ASSERT_ATN, "ASSERT ATN"}, {ICR_ASSERT_DATA, "ASSERT DATA"},
  452. {0, NULL}},
  453. mrs[] = {{MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"}, {MR_TARGET, "MODE TARGET"},
  454. {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"}, {MR_ENABLE_PAR_INTR,
  455. "MODE PARITY INTR"}, {MR_ENABLE_EOP_INTR,"MODE EOP INTR"},
  456. {MR_MONITOR_BSY, "MODE MONITOR BSY"},
  457. {MR_DMA_MODE, "MODE DMA"}, {MR_ARBITRATE, "MODE ARBITRATION"},
  458. {0, NULL}};
  459. /*
  460. * Function : void NCR5380_print(struct Scsi_Host *instance)
  461. *
  462. * Purpose : print the SCSI bus signals for debugging purposes
  463. *
  464. * Input : instance - which NCR5380
  465. */
  466. static void NCR5380_print(struct Scsi_Host *instance) {
  467. unsigned char status, data, basr, mr, icr, i;
  468. unsigned long flags;
  469. local_irq_save(flags);
  470. data = NCR5380_read(CURRENT_SCSI_DATA_REG);
  471. status = NCR5380_read(STATUS_REG);
  472. mr = NCR5380_read(MODE_REG);
  473. icr = NCR5380_read(INITIATOR_COMMAND_REG);
  474. basr = NCR5380_read(BUS_AND_STATUS_REG);
  475. local_irq_restore(flags);
  476. printk("STATUS_REG: %02x ", status);
  477. for (i = 0; signals[i].mask ; ++i)
  478. if (status & signals[i].mask)
  479. printk(",%s", signals[i].name);
  480. printk("\nBASR: %02x ", basr);
  481. for (i = 0; basrs[i].mask ; ++i)
  482. if (basr & basrs[i].mask)
  483. printk(",%s", basrs[i].name);
  484. printk("\nICR: %02x ", icr);
  485. for (i = 0; icrs[i].mask; ++i)
  486. if (icr & icrs[i].mask)
  487. printk(",%s", icrs[i].name);
  488. printk("\nMODE: %02x ", mr);
  489. for (i = 0; mrs[i].mask; ++i)
  490. if (mr & mrs[i].mask)
  491. printk(",%s", mrs[i].name);
  492. printk("\n");
  493. }
  494. static struct {
  495. unsigned char value;
  496. const char *name;
  497. } phases[] = {
  498. {PHASE_DATAOUT, "DATAOUT"}, {PHASE_DATAIN, "DATAIN"}, {PHASE_CMDOUT, "CMDOUT"},
  499. {PHASE_STATIN, "STATIN"}, {PHASE_MSGOUT, "MSGOUT"}, {PHASE_MSGIN, "MSGIN"},
  500. {PHASE_UNKNOWN, "UNKNOWN"}};
  501. /*
  502. * Function : void NCR5380_print_phase(struct Scsi_Host *instance)
  503. *
  504. * Purpose : print the current SCSI phase for debugging purposes
  505. *
  506. * Input : instance - which NCR5380
  507. */
  508. static void NCR5380_print_phase(struct Scsi_Host *instance)
  509. {
  510. unsigned char status;
  511. int i;
  512. status = NCR5380_read(STATUS_REG);
  513. if (!(status & SR_REQ))
  514. printk(KERN_DEBUG "scsi%d: REQ not asserted, phase unknown.\n", HOSTNO);
  515. else {
  516. for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
  517. (phases[i].value != (status & PHASE_MASK)); ++i);
  518. printk(KERN_DEBUG "scsi%d: phase %s\n", HOSTNO, phases[i].name);
  519. }
  520. }
  521. #else /* !NDEBUG */
  522. /* dummies... */
  523. __inline__ void NCR5380_print(struct Scsi_Host *instance) { };
  524. __inline__ void NCR5380_print_phase(struct Scsi_Host *instance) { };
  525. #endif
  526. /*
  527. * ++roman: New scheme of calling NCR5380_main()
  528. *
  529. * If we're not in an interrupt, we can call our main directly, it cannot be
  530. * already running. Else, we queue it on a task queue, if not 'main_running'
  531. * tells us that a lower level is already executing it. This way,
  532. * 'main_running' needs not be protected in a special way.
  533. *
  534. * queue_main() is a utility function for putting our main onto the task
  535. * queue, if main_running is false. It should be called only from a
  536. * interrupt or bottom half.
  537. */
  538. #include <linux/gfp.h>
  539. #include <linux/workqueue.h>
  540. #include <linux/interrupt.h>
  541. static volatile int main_running = 0;
  542. static DECLARE_WORK(NCR5380_tqueue, NCR5380_main);
  543. static __inline__ void queue_main(void)
  544. {
  545. if (!main_running) {
  546. /* If in interrupt and NCR5380_main() not already running,
  547. queue it on the 'immediate' task queue, to be processed
  548. immediately after the current interrupt processing has
  549. finished. */
  550. schedule_work(&NCR5380_tqueue);
  551. }
  552. /* else: nothing to do: the running NCR5380_main() will pick up
  553. any newly queued command. */
  554. }
  555. static inline void NCR5380_all_init (void)
  556. {
  557. static int done = 0;
  558. if (!done) {
  559. INI_PRINTK("scsi : NCR5380_all_init()\n");
  560. done = 1;
  561. }
  562. }
  563. /*
  564. * Function : void NCR58380_print_options (struct Scsi_Host *instance)
  565. *
  566. * Purpose : called by probe code indicating the NCR5380 driver
  567. * options that were selected.
  568. *
  569. * Inputs : instance, pointer to this instance. Unused.
  570. */
  571. static void __init NCR5380_print_options (struct Scsi_Host *instance)
  572. {
  573. printk(" generic options"
  574. #ifdef AUTOSENSE
  575. " AUTOSENSE"
  576. #endif
  577. #ifdef REAL_DMA
  578. " REAL DMA"
  579. #endif
  580. #ifdef PARITY
  581. " PARITY"
  582. #endif
  583. #ifdef SUPPORT_TAGS
  584. " SCSI-2 TAGGED QUEUING"
  585. #endif
  586. );
  587. printk(" generic release=%d", NCR5380_PUBLIC_RELEASE);
  588. }
  589. /*
  590. * Function : void NCR5380_print_status (struct Scsi_Host *instance)
  591. *
  592. * Purpose : print commands in the various queues, called from
  593. * NCR5380_abort and NCR5380_debug to aid debugging.
  594. *
  595. * Inputs : instance, pointer to this instance.
  596. */
  597. static void NCR5380_print_status (struct Scsi_Host *instance)
  598. {
  599. char *pr_bfr;
  600. char *start;
  601. int len;
  602. NCR_PRINT(NDEBUG_ANY);
  603. NCR_PRINT_PHASE(NDEBUG_ANY);
  604. pr_bfr = (char *) __get_free_page(GFP_ATOMIC);
  605. if (!pr_bfr) {
  606. printk("NCR5380_print_status: no memory for print buffer\n");
  607. return;
  608. }
  609. len = NCR5380_proc_info(instance, pr_bfr, &start, 0, PAGE_SIZE, 0);
  610. pr_bfr[len] = 0;
  611. printk("\n%s\n", pr_bfr);
  612. free_page((unsigned long) pr_bfr);
  613. }
  614. /******************************************/
  615. /*
  616. * /proc/scsi/[dtc pas16 t128 generic]/[0-ASC_NUM_BOARD_SUPPORTED]
  617. *
  618. * *buffer: I/O buffer
  619. * **start: if inout == FALSE pointer into buffer where user read should start
  620. * offset: current offset
  621. * length: length of buffer
  622. * hostno: Scsi_Host host_no
  623. * inout: TRUE - user is writing; FALSE - user is reading
  624. *
  625. * Return the number of bytes read from or written
  626. */
  627. #undef SPRINTF
  628. #define SPRINTF(fmt,args...) \
  629. do { if (pos + strlen(fmt) + 20 /* slop */ < buffer + length) \
  630. pos += sprintf(pos, fmt , ## args); } while(0)
  631. static
  632. char *lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, char *pos, char *buffer,
  633. int length);
  634. static int NCR5380_proc_info(struct Scsi_Host *instance, char *buffer,
  635. char **start, off_t offset, int length, int inout)
  636. {
  637. char *pos = buffer;
  638. struct NCR5380_hostdata *hostdata;
  639. struct scsi_cmnd *ptr;
  640. unsigned long flags;
  641. off_t begin = 0;
  642. #define check_offset() \
  643. do { \
  644. if (pos - buffer < offset - begin) { \
  645. begin += pos - buffer; \
  646. pos = buffer; \
  647. } \
  648. } while (0)
  649. hostdata = (struct NCR5380_hostdata *)instance->hostdata;
  650. if (inout) { /* Has data been written to the file ? */
  651. return(-ENOSYS); /* Currently this is a no-op */
  652. }
  653. SPRINTF("NCR5380 core release=%d.\n", NCR5380_PUBLIC_RELEASE);
  654. check_offset();
  655. local_irq_save(flags);
  656. SPRINTF("NCR5380: coroutine is%s running.\n", main_running ? "" : "n't");
  657. check_offset();
  658. if (!hostdata->connected)
  659. SPRINTF("scsi%d: no currently connected command\n", HOSTNO);
  660. else
  661. pos = lprint_Scsi_Cmnd ((struct scsi_cmnd *) hostdata->connected,
  662. pos, buffer, length);
  663. SPRINTF("scsi%d: issue_queue\n", HOSTNO);
  664. check_offset();
  665. for (ptr = (struct scsi_cmnd *) hostdata->issue_queue; ptr; ptr = NEXT(ptr))
  666. {
  667. pos = lprint_Scsi_Cmnd (ptr, pos, buffer, length);
  668. check_offset();
  669. }
  670. SPRINTF("scsi%d: disconnected_queue\n", HOSTNO);
  671. check_offset();
  672. for (ptr = (struct scsi_cmnd *) hostdata->disconnected_queue; ptr;
  673. ptr = NEXT(ptr)) {
  674. pos = lprint_Scsi_Cmnd (ptr, pos, buffer, length);
  675. check_offset();
  676. }
  677. local_irq_restore(flags);
  678. *start = buffer + (offset - begin);
  679. if (pos - buffer < offset - begin)
  680. return 0;
  681. else if (pos - buffer - (offset - begin) < length)
  682. return pos - buffer - (offset - begin);
  683. return length;
  684. }
  685. static char *lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, char *pos, char *buffer,
  686. int length)
  687. {
  688. int i, s;
  689. unsigned char *command;
  690. SPRINTF("scsi%d: destination target %d, lun %d\n",
  691. H_NO(cmd), cmd->device->id, cmd->device->lun);
  692. SPRINTF(" command = ");
  693. command = cmd->cmnd;
  694. SPRINTF("%2d (0x%02x)", command[0], command[0]);
  695. for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
  696. SPRINTF(" %02x", command[i]);
  697. SPRINTF("\n");
  698. return pos;
  699. }
  700. /*
  701. * Function : void NCR5380_init (struct Scsi_Host *instance)
  702. *
  703. * Purpose : initializes *instance and corresponding 5380 chip.
  704. *
  705. * Inputs : instance - instantiation of the 5380 driver.
  706. *
  707. * Notes : I assume that the host, hostno, and id bits have been
  708. * set correctly. I don't care about the irq and other fields.
  709. *
  710. */
  711. static int __init NCR5380_init(struct Scsi_Host *instance, int flags)
  712. {
  713. int i;
  714. SETUP_HOSTDATA(instance);
  715. NCR5380_all_init();
  716. hostdata->aborted = 0;
  717. hostdata->id_mask = 1 << instance->this_id;
  718. hostdata->id_higher_mask = 0;
  719. for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
  720. if (i > hostdata->id_mask)
  721. hostdata->id_higher_mask |= i;
  722. for (i = 0; i < 8; ++i)
  723. hostdata->busy[i] = 0;
  724. #ifdef SUPPORT_TAGS
  725. init_tags();
  726. #endif
  727. #if defined (REAL_DMA)
  728. hostdata->dma_len = 0;
  729. #endif
  730. hostdata->targets_present = 0;
  731. hostdata->connected = NULL;
  732. hostdata->issue_queue = NULL;
  733. hostdata->disconnected_queue = NULL;
  734. hostdata->flags = FLAG_CHECK_LAST_BYTE_SENT;
  735. if (!the_template) {
  736. the_template = instance->hostt;
  737. first_instance = instance;
  738. }
  739. #ifndef AUTOSENSE
  740. if ((instance->cmd_per_lun > 1) || (instance->can_queue > 1))
  741. printk("scsi%d: WARNING : support for multiple outstanding commands enabled\n"
  742. " without AUTOSENSE option, contingent allegiance conditions may\n"
  743. " be incorrectly cleared.\n", HOSTNO);
  744. #endif /* def AUTOSENSE */
  745. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  746. NCR5380_write(MODE_REG, MR_BASE);
  747. NCR5380_write(TARGET_COMMAND_REG, 0);
  748. NCR5380_write(SELECT_ENABLE_REG, 0);
  749. return 0;
  750. }
  751. static void NCR5380_exit(struct Scsi_Host *instance)
  752. {
  753. /* Empty, as we didn't schedule any delayed work */
  754. }
  755. /*
  756. * Function : int NCR5380_queue_command (struct scsi_cmnd *cmd,
  757. * void (*done)(struct scsi_cmnd *))
  758. *
  759. * Purpose : enqueues a SCSI command
  760. *
  761. * Inputs : cmd - SCSI command, done - function called on completion, with
  762. * a pointer to the command descriptor.
  763. *
  764. * Returns : 0
  765. *
  766. * Side effects :
  767. * cmd is added to the per instance issue_queue, with minor
  768. * twiddling done to the host specific fields of cmd. If the
  769. * main coroutine is not running, it is restarted.
  770. *
  771. */
  772. /* Only make static if a wrapper function is used */
  773. static int NCR5380_queue_command_lck(struct scsi_cmnd *cmd,
  774. void (*done)(struct scsi_cmnd *))
  775. {
  776. SETUP_HOSTDATA(cmd->device->host);
  777. struct scsi_cmnd *tmp;
  778. unsigned long flags;
  779. #if (NDEBUG & NDEBUG_NO_WRITE)
  780. switch (cmd->cmnd[0]) {
  781. case WRITE_6:
  782. case WRITE_10:
  783. printk(KERN_NOTICE "scsi%d: WRITE attempted with NO_WRITE debugging flag set\n",
  784. H_NO(cmd));
  785. cmd->result = (DID_ERROR << 16);
  786. done(cmd);
  787. return 0;
  788. }
  789. #endif /* (NDEBUG & NDEBUG_NO_WRITE) */
  790. #ifdef NCR5380_STATS
  791. # if 0
  792. if (!hostdata->connected && !hostdata->issue_queue &&
  793. !hostdata->disconnected_queue) {
  794. hostdata->timebase = jiffies;
  795. }
  796. # endif
  797. # ifdef NCR5380_STAT_LIMIT
  798. if (scsi_bufflen(cmd) > NCR5380_STAT_LIMIT)
  799. # endif
  800. switch (cmd->cmnd[0])
  801. {
  802. case WRITE:
  803. case WRITE_6:
  804. case WRITE_10:
  805. hostdata->time_write[cmd->device->id] -= (jiffies - hostdata->timebase);
  806. hostdata->bytes_write[cmd->device->id] += scsi_bufflen(cmd);
  807. hostdata->pendingw++;
  808. break;
  809. case READ:
  810. case READ_6:
  811. case READ_10:
  812. hostdata->time_read[cmd->device->id] -= (jiffies - hostdata->timebase);
  813. hostdata->bytes_read[cmd->device->id] += scsi_bufflen(cmd);
  814. hostdata->pendingr++;
  815. break;
  816. }
  817. #endif
  818. /*
  819. * We use the host_scribble field as a pointer to the next command
  820. * in a queue
  821. */
  822. SET_NEXT(cmd, NULL);
  823. cmd->scsi_done = done;
  824. cmd->result = 0;
  825. /*
  826. * Insert the cmd into the issue queue. Note that REQUEST SENSE
  827. * commands are added to the head of the queue since any command will
  828. * clear the contingent allegiance condition that exists and the
  829. * sense data is only guaranteed to be valid while the condition exists.
  830. */
  831. local_irq_save(flags);
  832. /* ++guenther: now that the issue queue is being set up, we can lock ST-DMA.
  833. * Otherwise a running NCR5380_main may steal the lock.
  834. * Lock before actually inserting due to fairness reasons explained in
  835. * atari_scsi.c. If we insert first, then it's impossible for this driver
  836. * to release the lock.
  837. * Stop timer for this command while waiting for the lock, or timeouts
  838. * may happen (and they really do), and it's no good if the command doesn't
  839. * appear in any of the queues.
  840. * ++roman: Just disabling the NCR interrupt isn't sufficient here,
  841. * because also a timer int can trigger an abort or reset, which would
  842. * alter queues and touch the lock.
  843. */
  844. if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
  845. LIST(cmd, hostdata->issue_queue);
  846. SET_NEXT(cmd, hostdata->issue_queue);
  847. hostdata->issue_queue = cmd;
  848. } else {
  849. for (tmp = (struct scsi_cmnd *)hostdata->issue_queue;
  850. NEXT(tmp); tmp = NEXT(tmp))
  851. ;
  852. LIST(cmd, tmp);
  853. SET_NEXT(tmp, cmd);
  854. }
  855. local_irq_restore(flags);
  856. QU_PRINTK("scsi%d: command added to %s of queue\n", H_NO(cmd),
  857. (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
  858. /* If queue_command() is called from an interrupt (real one or bottom
  859. * half), we let queue_main() do the job of taking care about main. If it
  860. * is already running, this is a no-op, else main will be queued.
  861. *
  862. * If we're not in an interrupt, we can call NCR5380_main()
  863. * unconditionally, because it cannot be already running.
  864. */
  865. if (in_interrupt() || ((flags >> 8) & 7) >= 6)
  866. queue_main();
  867. else
  868. NCR5380_main(NULL);
  869. return 0;
  870. }
  871. static DEF_SCSI_QCMD(NCR5380_queue_command)
  872. /*
  873. * Function : NCR5380_main (void)
  874. *
  875. * Purpose : NCR5380_main is a coroutine that runs as long as more work can
  876. * be done on the NCR5380 host adapters in a system. Both
  877. * NCR5380_queue_command() and NCR5380_intr() will try to start it
  878. * in case it is not running.
  879. *
  880. * NOTE : NCR5380_main exits with interrupts *disabled*, the caller should
  881. * reenable them. This prevents reentrancy and kernel stack overflow.
  882. */
  883. static void NCR5380_main (struct work_struct *bl)
  884. {
  885. struct scsi_cmnd *tmp, *prev;
  886. struct Scsi_Host *instance = first_instance;
  887. struct NCR5380_hostdata *hostdata = HOSTDATA(instance);
  888. int done;
  889. unsigned long flags;
  890. /*
  891. * We run (with interrupts disabled) until we're sure that none of
  892. * the host adapters have anything that can be done, at which point
  893. * we set main_running to 0 and exit.
  894. *
  895. * Interrupts are enabled before doing various other internal
  896. * instructions, after we've decided that we need to run through
  897. * the loop again.
  898. *
  899. * this should prevent any race conditions.
  900. *
  901. * ++roman: Just disabling the NCR interrupt isn't sufficient here,
  902. * because also a timer int can trigger an abort or reset, which can
  903. * alter queues and touch the Falcon lock.
  904. */
  905. /* Tell int handlers main() is now already executing. Note that
  906. no races are possible here. If an int comes in before
  907. 'main_running' is set here, and queues/executes main via the
  908. task queue, it doesn't do any harm, just this instance of main
  909. won't find any work left to do. */
  910. if (main_running)
  911. return;
  912. main_running = 1;
  913. local_save_flags(flags);
  914. do {
  915. local_irq_disable(); /* Freeze request queues */
  916. done = 1;
  917. if (!hostdata->connected) {
  918. MAIN_PRINTK( "scsi%d: not connected\n", HOSTNO );
  919. /*
  920. * Search through the issue_queue for a command destined
  921. * for a target that's not busy.
  922. */
  923. #if (NDEBUG & NDEBUG_LISTS)
  924. for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL;
  925. tmp && (tmp != prev); prev = tmp, tmp = NEXT(tmp))
  926. ;
  927. if ((tmp == prev) && tmp) printk(" LOOP\n");/* else printk("\n");*/
  928. #endif
  929. for (tmp = (struct scsi_cmnd *) hostdata->issue_queue,
  930. prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp) ) {
  931. #if (NDEBUG & NDEBUG_LISTS)
  932. if (prev != tmp)
  933. printk("MAIN tmp=%p target=%d busy=%d lun=%d\n",
  934. tmp, tmp->target, hostdata->busy[tmp->target],
  935. tmp->lun);
  936. #endif
  937. /* When we find one, remove it from the issue queue. */
  938. /* ++guenther: possible race with Falcon locking */
  939. if (
  940. #ifdef SUPPORT_TAGS
  941. !is_lun_busy( tmp, tmp->cmnd[0] != REQUEST_SENSE)
  942. #else
  943. !(hostdata->busy[tmp->device->id] & (1 << tmp->device->lun))
  944. #endif
  945. ) {
  946. /* ++guenther: just to be sure, this must be atomic */
  947. local_irq_disable();
  948. if (prev) {
  949. REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
  950. SET_NEXT(prev, NEXT(tmp));
  951. } else {
  952. REMOVE(-1, hostdata->issue_queue, tmp, NEXT(tmp));
  953. hostdata->issue_queue = NEXT(tmp);
  954. }
  955. SET_NEXT(tmp, NULL);
  956. /* reenable interrupts after finding one */
  957. local_irq_restore(flags);
  958. /*
  959. * Attempt to establish an I_T_L nexus here.
  960. * On success, instance->hostdata->connected is set.
  961. * On failure, we must add the command back to the
  962. * issue queue so we can keep trying.
  963. */
  964. MAIN_PRINTK("scsi%d: main(): command for target %d "
  965. "lun %d removed from issue_queue\n",
  966. HOSTNO, tmp->target, tmp->lun);
  967. /*
  968. * REQUEST SENSE commands are issued without tagged
  969. * queueing, even on SCSI-II devices because the
  970. * contingent allegiance condition exists for the
  971. * entire unit.
  972. */
  973. /* ++roman: ...and the standard also requires that
  974. * REQUEST SENSE command are untagged.
  975. */
  976. #ifdef SUPPORT_TAGS
  977. cmd_get_tag( tmp, tmp->cmnd[0] != REQUEST_SENSE );
  978. #endif
  979. if (!NCR5380_select(instance, tmp,
  980. (tmp->cmnd[0] == REQUEST_SENSE) ? TAG_NONE :
  981. TAG_NEXT)) {
  982. break;
  983. } else {
  984. local_irq_disable();
  985. LIST(tmp, hostdata->issue_queue);
  986. SET_NEXT(tmp, hostdata->issue_queue);
  987. hostdata->issue_queue = tmp;
  988. #ifdef SUPPORT_TAGS
  989. cmd_free_tag( tmp );
  990. #endif
  991. local_irq_restore(flags);
  992. MAIN_PRINTK("scsi%d: main(): select() failed, "
  993. "returned to issue_queue\n", HOSTNO);
  994. if (hostdata->connected)
  995. break;
  996. }
  997. } /* if target/lun/target queue is not busy */
  998. } /* for issue_queue */
  999. } /* if (!hostdata->connected) */
  1000. if (hostdata->connected
  1001. #ifdef REAL_DMA
  1002. && !hostdata->dma_len
  1003. #endif
  1004. ) {
  1005. local_irq_restore(flags);
  1006. MAIN_PRINTK("scsi%d: main: performing information transfer\n",
  1007. HOSTNO);
  1008. NCR5380_information_transfer(instance);
  1009. MAIN_PRINTK("scsi%d: main: done set false\n", HOSTNO);
  1010. done = 0;
  1011. }
  1012. } while (!done);
  1013. /* Better allow ints _after_ 'main_running' has been cleared, else
  1014. an interrupt could believe we'll pick up the work it left for
  1015. us, but we won't see it anymore here... */
  1016. main_running = 0;
  1017. local_irq_restore(flags);
  1018. }
  1019. #ifdef REAL_DMA
  1020. /*
  1021. * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
  1022. *
  1023. * Purpose : Called by interrupt handler when DMA finishes or a phase
  1024. * mismatch occurs (which would finish the DMA transfer).
  1025. *
  1026. * Inputs : instance - this instance of the NCR5380.
  1027. *
  1028. */
  1029. static void NCR5380_dma_complete( struct Scsi_Host *instance )
  1030. {
  1031. SETUP_HOSTDATA(instance);
  1032. int transfered;
  1033. unsigned char **data;
  1034. volatile int *count;
  1035. if (!hostdata->connected) {
  1036. printk(KERN_WARNING "scsi%d: received end of DMA interrupt with "
  1037. "no connected cmd\n", HOSTNO);
  1038. return;
  1039. }
  1040. DMA_PRINTK("scsi%d: real DMA transfer complete, basr 0x%X, sr 0x%X\n",
  1041. HOSTNO, NCR5380_read(BUS_AND_STATUS_REG),
  1042. NCR5380_read(STATUS_REG));
  1043. if((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
  1044. printk("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n", HOSTNO);
  1045. printk("please e-mail sammy@sammy.net with a description of how this\n");
  1046. printk("error was produced.\n");
  1047. BUG();
  1048. }
  1049. /* make sure we're not stuck in a data phase */
  1050. if((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH |
  1051. BASR_ACK)) ==
  1052. (BASR_PHASE_MATCH | BASR_ACK)) {
  1053. printk("scsi%d: BASR %02x\n", HOSTNO, NCR5380_read(BUS_AND_STATUS_REG));
  1054. printk("scsi%d: bus stuck in data phase -- probably a single byte "
  1055. "overrun!\n", HOSTNO);
  1056. printk("not prepared for this error!\n");
  1057. printk("please e-mail sammy@sammy.net with a description of how this\n");
  1058. printk("error was produced.\n");
  1059. BUG();
  1060. }
  1061. (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1062. NCR5380_write(MODE_REG, MR_BASE);
  1063. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1064. transfered = hostdata->dma_len - NCR5380_dma_residual(instance);
  1065. hostdata->dma_len = 0;
  1066. data = (unsigned char **) &(hostdata->connected->SCp.ptr);
  1067. count = &(hostdata->connected->SCp.this_residual);
  1068. *data += transfered;
  1069. *count -= transfered;
  1070. }
  1071. #endif /* REAL_DMA */
  1072. /*
  1073. * Function : void NCR5380_intr (int irq)
  1074. *
  1075. * Purpose : handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
  1076. * from the disconnected queue, and restarting NCR5380_main()
  1077. * as required.
  1078. *
  1079. * Inputs : int irq, irq that caused this interrupt.
  1080. *
  1081. */
  1082. static irqreturn_t NCR5380_intr (int irq, void *dev_id)
  1083. {
  1084. struct Scsi_Host *instance = first_instance;
  1085. int done = 1, handled = 0;
  1086. unsigned char basr;
  1087. INT_PRINTK("scsi%d: NCR5380 irq triggered\n", HOSTNO);
  1088. /* Look for pending interrupts */
  1089. basr = NCR5380_read(BUS_AND_STATUS_REG);
  1090. INT_PRINTK("scsi%d: BASR=%02x\n", HOSTNO, basr);
  1091. /* dispatch to appropriate routine if found and done=0 */
  1092. if (basr & BASR_IRQ) {
  1093. NCR_PRINT(NDEBUG_INTR);
  1094. if ((NCR5380_read(STATUS_REG) & (SR_SEL|SR_IO)) == (SR_SEL|SR_IO)) {
  1095. done = 0;
  1096. // ENABLE_IRQ();
  1097. INT_PRINTK("scsi%d: SEL interrupt\n", HOSTNO);
  1098. NCR5380_reselect(instance);
  1099. (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1100. }
  1101. else if (basr & BASR_PARITY_ERROR) {
  1102. INT_PRINTK("scsi%d: PARITY interrupt\n", HOSTNO);
  1103. (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1104. }
  1105. else if ((NCR5380_read(STATUS_REG) & SR_RST) == SR_RST) {
  1106. INT_PRINTK("scsi%d: RESET interrupt\n", HOSTNO);
  1107. (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1108. }
  1109. else {
  1110. /*
  1111. * The rest of the interrupt conditions can occur only during a
  1112. * DMA transfer
  1113. */
  1114. #if defined(REAL_DMA)
  1115. /*
  1116. * We should only get PHASE MISMATCH and EOP interrupts if we have
  1117. * DMA enabled, so do a sanity check based on the current setting
  1118. * of the MODE register.
  1119. */
  1120. if ((NCR5380_read(MODE_REG) & MR_DMA_MODE) &&
  1121. ((basr & BASR_END_DMA_TRANSFER) ||
  1122. !(basr & BASR_PHASE_MATCH))) {
  1123. INT_PRINTK("scsi%d: PHASE MISM or EOP interrupt\n", HOSTNO);
  1124. NCR5380_dma_complete( instance );
  1125. done = 0;
  1126. // ENABLE_IRQ();
  1127. } else
  1128. #endif /* REAL_DMA */
  1129. {
  1130. /* MS: Ignore unknown phase mismatch interrupts (caused by EOP interrupt) */
  1131. if (basr & BASR_PHASE_MATCH)
  1132. INT_PRINTK("scsi%d: unknown interrupt, "
  1133. "BASR 0x%x, MR 0x%x, SR 0x%x\n",
  1134. HOSTNO, basr, NCR5380_read(MODE_REG),
  1135. NCR5380_read(STATUS_REG));
  1136. (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1137. #ifdef SUN3_SCSI_VME
  1138. dregs->csr |= CSR_DMA_ENABLE;
  1139. #endif
  1140. }
  1141. } /* if !(SELECTION || PARITY) */
  1142. handled = 1;
  1143. } /* BASR & IRQ */
  1144. else {
  1145. printk(KERN_NOTICE "scsi%d: interrupt without IRQ bit set in BASR, "
  1146. "BASR 0x%X, MR 0x%X, SR 0x%x\n", HOSTNO, basr,
  1147. NCR5380_read(MODE_REG), NCR5380_read(STATUS_REG));
  1148. (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1149. #ifdef SUN3_SCSI_VME
  1150. dregs->csr |= CSR_DMA_ENABLE;
  1151. #endif
  1152. }
  1153. if (!done) {
  1154. INT_PRINTK("scsi%d: in int routine, calling main\n", HOSTNO);
  1155. /* Put a call to NCR5380_main() on the queue... */
  1156. queue_main();
  1157. }
  1158. return IRQ_RETVAL(handled);
  1159. }
  1160. #ifdef NCR5380_STATS
  1161. static void collect_stats(struct NCR5380_hostdata *hostdata,
  1162. struct scsi_cmnd *cmd)
  1163. {
  1164. # ifdef NCR5380_STAT_LIMIT
  1165. if (scsi_bufflen(cmd) > NCR5380_STAT_LIMIT)
  1166. # endif
  1167. switch (cmd->cmnd[0])
  1168. {
  1169. case WRITE:
  1170. case WRITE_6:
  1171. case WRITE_10:
  1172. hostdata->time_write[cmd->device->id] += (jiffies - hostdata->timebase);
  1173. /*hostdata->bytes_write[cmd->device->id] += scsi_bufflen(cmd);*/
  1174. hostdata->pendingw--;
  1175. break;
  1176. case READ:
  1177. case READ_6:
  1178. case READ_10:
  1179. hostdata->time_read[cmd->device->id] += (jiffies - hostdata->timebase);
  1180. /*hostdata->bytes_read[cmd->device->id] += scsi_bufflen(cmd);*/
  1181. hostdata->pendingr--;
  1182. break;
  1183. }
  1184. }
  1185. #endif
  1186. /*
  1187. * Function : int NCR5380_select(struct Scsi_Host *instance,
  1188. * struct scsi_cmnd *cmd, int tag);
  1189. *
  1190. * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
  1191. * including ARBITRATION, SELECTION, and initial message out for
  1192. * IDENTIFY and queue messages.
  1193. *
  1194. * Inputs : instance - instantiation of the 5380 driver on which this
  1195. * target lives, cmd - SCSI command to execute, tag - set to TAG_NEXT for
  1196. * new tag, TAG_NONE for untagged queueing, otherwise set to the tag for
  1197. * the command that is presently connected.
  1198. *
  1199. * Returns : -1 if selection could not execute for some reason,
  1200. * 0 if selection succeeded or failed because the target
  1201. * did not respond.
  1202. *
  1203. * Side effects :
  1204. * If bus busy, arbitration failed, etc, NCR5380_select() will exit
  1205. * with registers as they should have been on entry - ie
  1206. * SELECT_ENABLE will be set appropriately, the NCR5380
  1207. * will cease to drive any SCSI bus signals.
  1208. *
  1209. * If successful : I_T_L or I_T_L_Q nexus will be established,
  1210. * instance->connected will be set to cmd.
  1211. * SELECT interrupt will be disabled.
  1212. *
  1213. * If failed (no target) : cmd->scsi_done() will be called, and the
  1214. * cmd->result host byte set to DID_BAD_TARGET.
  1215. */
  1216. static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd,
  1217. int tag)
  1218. {
  1219. SETUP_HOSTDATA(instance);
  1220. unsigned char tmp[3], phase;
  1221. unsigned char *data;
  1222. int len;
  1223. unsigned long timeout;
  1224. unsigned long flags;
  1225. hostdata->restart_select = 0;
  1226. NCR_PRINT(NDEBUG_ARBITRATION);
  1227. ARB_PRINTK("scsi%d: starting arbitration, id = %d\n", HOSTNO,
  1228. instance->this_id);
  1229. /*
  1230. * Set the phase bits to 0, otherwise the NCR5380 won't drive the
  1231. * data bus during SELECTION.
  1232. */
  1233. local_irq_save(flags);
  1234. if (hostdata->connected) {
  1235. local_irq_restore(flags);
  1236. return -1;
  1237. }
  1238. NCR5380_write(TARGET_COMMAND_REG, 0);
  1239. /*
  1240. * Start arbitration.
  1241. */
  1242. NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
  1243. NCR5380_write(MODE_REG, MR_ARBITRATE);
  1244. local_irq_restore(flags);
  1245. /* Wait for arbitration logic to complete */
  1246. #ifdef NCR_TIMEOUT
  1247. {
  1248. unsigned long timeout = jiffies + 2*NCR_TIMEOUT;
  1249. while (!(NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_PROGRESS)
  1250. && time_before(jiffies, timeout) && !hostdata->connected)
  1251. ;
  1252. if (time_after_eq(jiffies, timeout))
  1253. {
  1254. printk("scsi : arbitration timeout at %d\n", __LINE__);
  1255. NCR5380_write(MODE_REG, MR_BASE);
  1256. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1257. return -1;
  1258. }
  1259. }
  1260. #else /* NCR_TIMEOUT */
  1261. while (!(NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_PROGRESS)
  1262. && !hostdata->connected);
  1263. #endif
  1264. ARB_PRINTK("scsi%d: arbitration complete\n", HOSTNO);
  1265. if (hostdata->connected) {
  1266. NCR5380_write(MODE_REG, MR_BASE);
  1267. return -1;
  1268. }
  1269. /*
  1270. * The arbitration delay is 2.2us, but this is a minimum and there is
  1271. * no maximum so we can safely sleep for ceil(2.2) usecs to accommodate
  1272. * the integral nature of udelay().
  1273. *
  1274. */
  1275. udelay(3);
  1276. /* Check for lost arbitration */
  1277. if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
  1278. (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
  1279. (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
  1280. hostdata->connected) {
  1281. NCR5380_write(MODE_REG, MR_BASE);
  1282. ARB_PRINTK("scsi%d: lost arbitration, deasserting MR_ARBITRATE\n",
  1283. HOSTNO);
  1284. return -1;
  1285. }
  1286. /* after/during arbitration, BSY should be asserted.
  1287. IBM DPES-31080 Version S31Q works now */
  1288. /* Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman) */
  1289. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_SEL |
  1290. ICR_ASSERT_BSY ) ;
  1291. if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
  1292. hostdata->connected) {
  1293. NCR5380_write(MODE_REG, MR_BASE);
  1294. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1295. ARB_PRINTK("scsi%d: lost arbitration, deasserting ICR_ASSERT_SEL\n",
  1296. HOSTNO);
  1297. return -1;
  1298. }
  1299. /*
  1300. * Again, bus clear + bus settle time is 1.2us, however, this is
  1301. * a minimum so we'll udelay ceil(1.2)
  1302. */
  1303. #ifdef CONFIG_ATARI_SCSI_TOSHIBA_DELAY
  1304. /* ++roman: But some targets (see above :-) seem to need a bit more... */
  1305. udelay(15);
  1306. #else
  1307. udelay(2);
  1308. #endif
  1309. if (hostdata->connected) {
  1310. NCR5380_write(MODE_REG, MR_BASE);
  1311. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1312. return -1;
  1313. }
  1314. ARB_PRINTK("scsi%d: won arbitration\n", HOSTNO);
  1315. /*
  1316. * Now that we have won arbitration, start Selection process, asserting
  1317. * the host and target ID's on the SCSI bus.
  1318. */
  1319. NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << cmd->device->id)));
  1320. /*
  1321. * Raise ATN while SEL is true before BSY goes false from arbitration,
  1322. * since this is the only way to guarantee that we'll get a MESSAGE OUT
  1323. * phase immediately after selection.
  1324. */
  1325. NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY |
  1326. ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL ));
  1327. NCR5380_write(MODE_REG, MR_BASE);
  1328. /*
  1329. * Reselect interrupts must be turned off prior to the dropping of BSY,
  1330. * otherwise we will trigger an interrupt.
  1331. */
  1332. if (hostdata->connected) {
  1333. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1334. return -1;
  1335. }
  1336. NCR5380_write(SELECT_ENABLE_REG, 0);
  1337. /*
  1338. * The initiator shall then wait at least two deskew delays and release
  1339. * the BSY signal.
  1340. */
  1341. udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
  1342. /* Reset BSY */
  1343. NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA |
  1344. ICR_ASSERT_ATN | ICR_ASSERT_SEL));
  1345. /*
  1346. * Something weird happens when we cease to drive BSY - looks
  1347. * like the board/chip is letting us do another read before the
  1348. * appropriate propagation delay has expired, and we're confusing
  1349. * a BSY signal from ourselves as the target's response to SELECTION.
  1350. *
  1351. * A small delay (the 'C++' frontend breaks the pipeline with an
  1352. * unnecessary jump, making it work on my 386-33/Trantor T128, the
  1353. * tighter 'C' code breaks and requires this) solves the problem -
  1354. * the 1 us delay is arbitrary, and only used because this delay will
  1355. * be the same on other platforms and since it works here, it should
  1356. * work there.
  1357. *
  1358. * wingel suggests that this could be due to failing to wait
  1359. * one deskew delay.
  1360. */
  1361. udelay(1);
  1362. SEL_PRINTK("scsi%d: selecting target %d\n", HOSTNO, cmd->device->id);
  1363. /*
  1364. * The SCSI specification calls for a 250 ms timeout for the actual
  1365. * selection.
  1366. */
  1367. timeout = jiffies + 25;
  1368. /*
  1369. * XXX very interesting - we're seeing a bounce where the BSY we
  1370. * asserted is being reflected / still asserted (propagation delay?)
  1371. * and it's detecting as true. Sigh.
  1372. */
  1373. #if 0
  1374. /* ++roman: If a target conformed to the SCSI standard, it wouldn't assert
  1375. * IO while SEL is true. But again, there are some disks out the in the
  1376. * world that do that nevertheless. (Somebody claimed that this announces
  1377. * reselection capability of the target.) So we better skip that test and
  1378. * only wait for BSY... (Famous german words: Der Klügere gibt nach :-)
  1379. */
  1380. while (time_before(jiffies, timeout) && !(NCR5380_read(STATUS_REG) &
  1381. (SR_BSY | SR_IO)));
  1382. if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) ==
  1383. (SR_SEL | SR_IO)) {
  1384. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1385. NCR5380_reselect(instance);
  1386. printk (KERN_ERR "scsi%d: reselection after won arbitration?\n",
  1387. HOSTNO);
  1388. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1389. return -1;
  1390. }
  1391. #else
  1392. while (time_before(jiffies, timeout) && !(NCR5380_read(STATUS_REG) & SR_BSY));
  1393. #endif
  1394. /*
  1395. * No less than two deskew delays after the initiator detects the
  1396. * BSY signal is true, it shall release the SEL signal and may
  1397. * change the DATA BUS. -wingel
  1398. */
  1399. udelay(1);
  1400. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
  1401. if (!(NCR5380_read(STATUS_REG) & SR_BSY)) {
  1402. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1403. if (hostdata->targets_present & (1 << cmd->device->id)) {
  1404. printk(KERN_ERR "scsi%d: weirdness\n", HOSTNO);
  1405. if (hostdata->restart_select)
  1406. printk(KERN_NOTICE "\trestart select\n");
  1407. NCR_PRINT(NDEBUG_ANY);
  1408. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1409. return -1;
  1410. }
  1411. cmd->result = DID_BAD_TARGET << 16;
  1412. #ifdef NCR5380_STATS
  1413. collect_stats(hostdata, cmd);
  1414. #endif
  1415. #ifdef SUPPORT_TAGS
  1416. cmd_free_tag( cmd );
  1417. #endif
  1418. cmd->scsi_done(cmd);
  1419. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1420. SEL_PRINTK("scsi%d: target did not respond within 250ms\n", HOSTNO);
  1421. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1422. return 0;
  1423. }
  1424. hostdata->targets_present |= (1 << cmd->device->id);
  1425. /*
  1426. * Since we followed the SCSI spec, and raised ATN while SEL
  1427. * was true but before BSY was false during selection, the information
  1428. * transfer phase should be a MESSAGE OUT phase so that we can send the
  1429. * IDENTIFY message.
  1430. *
  1431. * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
  1432. * message (2 bytes) with a tag ID that we increment with every command
  1433. * until it wraps back to 0.
  1434. *
  1435. * XXX - it turns out that there are some broken SCSI-II devices,
  1436. * which claim to support tagged queuing but fail when more than
  1437. * some number of commands are issued at once.
  1438. */
  1439. /* Wait for start of REQ/ACK handshake */
  1440. while (!(NCR5380_read(STATUS_REG) & SR_REQ));
  1441. SEL_PRINTK("scsi%d: target %d selected, going into MESSAGE OUT phase.\n",
  1442. HOSTNO, cmd->device->id);
  1443. tmp[0] = IDENTIFY(1, cmd->device->lun);
  1444. #ifdef SUPPORT_TAGS
  1445. if (cmd->tag != TAG_NONE) {
  1446. tmp[1] = hostdata->last_message = SIMPLE_QUEUE_TAG;
  1447. tmp[2] = cmd->tag;
  1448. len = 3;
  1449. } else
  1450. len = 1;
  1451. #else
  1452. len = 1;
  1453. cmd->tag=0;
  1454. #endif /* SUPPORT_TAGS */
  1455. /* Send message(s) */
  1456. data = tmp;
  1457. phase = PHASE_MSGOUT;
  1458. NCR5380_transfer_pio(instance, &phase, &len, &data);
  1459. SEL_PRINTK("scsi%d: nexus established.\n", HOSTNO);
  1460. /* XXX need to handle errors here */
  1461. hostdata->connected = cmd;
  1462. #ifndef SUPPORT_TAGS
  1463. hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
  1464. #endif
  1465. #ifdef SUN3_SCSI_VME
  1466. dregs->csr |= CSR_INTR;
  1467. #endif
  1468. initialize_SCp(cmd);
  1469. return 0;
  1470. }
  1471. /*
  1472. * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
  1473. * unsigned char *phase, int *count, unsigned char **data)
  1474. *
  1475. * Purpose : transfers data in given phase using polled I/O
  1476. *
  1477. * Inputs : instance - instance of driver, *phase - pointer to
  1478. * what phase is expected, *count - pointer to number of
  1479. * bytes to transfer, **data - pointer to data pointer.
  1480. *
  1481. * Returns : -1 when different phase is entered without transferring
  1482. * maximum number of bytes, 0 if all bytes are transferred or exit
  1483. * is in same phase.
  1484. *
  1485. * Also, *phase, *count, *data are modified in place.
  1486. *
  1487. * XXX Note : handling for bus free may be useful.
  1488. */
  1489. /*
  1490. * Note : this code is not as quick as it could be, however it
  1491. * IS 100% reliable, and for the actual data transfer where speed
  1492. * counts, we will always do a pseudo DMA or DMA transfer.
  1493. */
  1494. static int NCR5380_transfer_pio( struct Scsi_Host *instance,
  1495. unsigned char *phase, int *count,
  1496. unsigned char **data)
  1497. {
  1498. register unsigned char p = *phase, tmp;
  1499. register int c = *count;
  1500. register unsigned char *d = *data;
  1501. /*
  1502. * The NCR5380 chip will only drive the SCSI bus when the
  1503. * phase specified in the appropriate bits of the TARGET COMMAND
  1504. * REGISTER match the STATUS REGISTER
  1505. */
  1506. NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
  1507. do {
  1508. /*
  1509. * Wait for assertion of REQ, after which the phase bits will be
  1510. * valid
  1511. */
  1512. while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ));
  1513. HSH_PRINTK("scsi%d: REQ detected\n", HOSTNO);
  1514. /* Check for phase mismatch */
  1515. if ((tmp & PHASE_MASK) != p) {
  1516. PIO_PRINTK("scsi%d: phase mismatch\n", HOSTNO);
  1517. NCR_PRINT_PHASE(NDEBUG_PIO);
  1518. break;
  1519. }
  1520. /* Do actual transfer from SCSI bus to / from memory */
  1521. if (!(p & SR_IO))
  1522. NCR5380_write(OUTPUT_DATA_REG, *d);
  1523. else
  1524. *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
  1525. ++d;
  1526. /*
  1527. * The SCSI standard suggests that in MSGOUT phase, the initiator
  1528. * should drop ATN on the last byte of the message phase
  1529. * after REQ has been asserted for the handshake but before
  1530. * the initiator raises ACK.
  1531. */
  1532. if (!(p & SR_IO)) {
  1533. if (!((p & SR_MSG) && c > 1)) {
  1534. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
  1535. ICR_ASSERT_DATA);
  1536. NCR_PRINT(NDEBUG_PIO);
  1537. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
  1538. ICR_ASSERT_DATA | ICR_ASSERT_ACK);
  1539. } else {
  1540. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
  1541. ICR_ASSERT_DATA | ICR_ASSERT_ATN);
  1542. NCR_PRINT(NDEBUG_PIO);
  1543. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
  1544. ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
  1545. }
  1546. } else {
  1547. NCR_PRINT(NDEBUG_PIO);
  1548. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
  1549. }
  1550. while (NCR5380_read(STATUS_REG) & SR_REQ);
  1551. HSH_PRINTK("scsi%d: req false, handshake complete\n", HOSTNO);
  1552. /*
  1553. * We have several special cases to consider during REQ/ACK handshaking :
  1554. * 1. We were in MSGOUT phase, and we are on the last byte of the
  1555. * message. ATN must be dropped as ACK is dropped.
  1556. *
  1557. * 2. We are in a MSGIN phase, and we are on the last byte of the
  1558. * message. We must exit with ACK asserted, so that the calling
  1559. * code may raise ATN before dropping ACK to reject the message.
  1560. *
  1561. * 3. ACK and ATN are clear and the target may proceed as normal.
  1562. */
  1563. if (!(p == PHASE_MSGIN && c == 1)) {
  1564. if (p == PHASE_MSGOUT && c > 1)
  1565. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
  1566. else
  1567. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1568. }
  1569. } while (--c);
  1570. PIO_PRINTK("scsi%d: residual %d\n", HOSTNO, c);
  1571. *count = c;
  1572. *data = d;
  1573. tmp = NCR5380_read(STATUS_REG);
  1574. /* The phase read from the bus is valid if either REQ is (already)
  1575. * asserted or if ACK hasn't been released yet. The latter is the case if
  1576. * we're in MSGIN and all wanted bytes have been received. */
  1577. if ((tmp & SR_REQ) || (p == PHASE_MSGIN && c == 0))
  1578. *phase = tmp & PHASE_MASK;
  1579. else
  1580. *phase = PHASE_UNKNOWN;
  1581. if (!c || (*phase == p))
  1582. return 0;
  1583. else
  1584. return -1;
  1585. }
  1586. /*
  1587. * Function : do_abort (Scsi_Host *host)
  1588. *
  1589. * Purpose : abort the currently established nexus. Should only be
  1590. * called from a routine which can drop into a
  1591. *
  1592. * Returns : 0 on success, -1 on failure.
  1593. */
  1594. static int do_abort (struct Scsi_Host *host)
  1595. {
  1596. unsigned char tmp, *msgptr, phase;
  1597. int len;
  1598. /* Request message out phase */
  1599. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
  1600. /*
  1601. * Wait for the target to indicate a valid phase by asserting
  1602. * REQ. Once this happens, we'll have either a MSGOUT phase
  1603. * and can immediately send the ABORT message, or we'll have some
  1604. * other phase and will have to source/sink data.
  1605. *
  1606. * We really don't care what value was on the bus or what value
  1607. * the target sees, so we just handshake.
  1608. */
  1609. while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ));
  1610. NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
  1611. if ((tmp & PHASE_MASK) != PHASE_MSGOUT) {
  1612. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
  1613. ICR_ASSERT_ACK);
  1614. while (NCR5380_read(STATUS_REG) & SR_REQ);
  1615. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
  1616. }
  1617. tmp = ABORT;
  1618. msgptr = &tmp;
  1619. len = 1;
  1620. phase = PHASE_MSGOUT;
  1621. NCR5380_transfer_pio (host, &phase, &len, &msgptr);
  1622. /*
  1623. * If we got here, and the command completed successfully,
  1624. * we're about to go into bus free state.
  1625. */
  1626. return len ? -1 : 0;
  1627. }
  1628. #if defined(REAL_DMA)
  1629. /*
  1630. * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
  1631. * unsigned char *phase, int *count, unsigned char **data)
  1632. *
  1633. * Purpose : transfers data in given phase using either real
  1634. * or pseudo DMA.
  1635. *
  1636. * Inputs : instance - instance of driver, *phase - pointer to
  1637. * what phase is expected, *count - pointer to number of
  1638. * bytes to transfer, **data - pointer to data pointer.
  1639. *
  1640. * Returns : -1 when different phase is entered without transferring
  1641. * maximum number of bytes, 0 if all bytes or transferred or exit
  1642. * is in same phase.
  1643. *
  1644. * Also, *phase, *count, *data are modified in place.
  1645. *
  1646. */
  1647. static int NCR5380_transfer_dma( struct Scsi_Host *instance,
  1648. unsigned char *phase, int *count,
  1649. unsigned char **data)
  1650. {
  1651. SETUP_HOSTDATA(instance);
  1652. register int c = *count;
  1653. register unsigned char p = *phase;
  1654. unsigned long flags;
  1655. /* sanity check */
  1656. if(!sun3_dma_setup_done) {
  1657. printk("scsi%d: transfer_dma without setup!\n", HOSTNO);
  1658. BUG();
  1659. }
  1660. hostdata->dma_len = c;
  1661. DMA_PRINTK("scsi%d: initializing DMA for %s, %d bytes %s %p\n",
  1662. HOSTNO, (p & SR_IO) ? "reading" : "writing",
  1663. c, (p & SR_IO) ? "to" : "from", *data);
  1664. /* netbsd turns off ints here, why not be safe and do it too */
  1665. local_irq_save(flags);
  1666. /* send start chain */
  1667. sun3scsi_dma_start(c, *data);
  1668. if (p & SR_IO) {
  1669. NCR5380_write(TARGET_COMMAND_REG, 1);
  1670. NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1671. NCR5380_write(INITIATOR_COMMAND_REG, 0);
  1672. NCR5380_write(MODE_REG, (NCR5380_read(MODE_REG) | MR_DMA_MODE | MR_ENABLE_EOP_INTR));
  1673. NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
  1674. } else {
  1675. NCR5380_write(TARGET_COMMAND_REG, 0);
  1676. NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1677. NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_DATA);
  1678. NCR5380_write(MODE_REG, (NCR5380_read(MODE_REG) | MR_DMA_MODE | MR_ENABLE_EOP_INTR));
  1679. NCR5380_write(START_DMA_SEND_REG, 0);
  1680. }
  1681. #ifdef SUN3_SCSI_VME
  1682. dregs->csr |= CSR_DMA_ENABLE;
  1683. #endif
  1684. local_irq_restore(flags);
  1685. sun3_dma_active = 1;
  1686. return 0;
  1687. }
  1688. #endif /* defined(REAL_DMA) */
  1689. /*
  1690. * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
  1691. *
  1692. * Purpose : run through the various SCSI phases and do as the target
  1693. * directs us to. Operates on the currently connected command,
  1694. * instance->connected.
  1695. *
  1696. * Inputs : instance, instance for which we are doing commands
  1697. *
  1698. * Side effects : SCSI things happen, the disconnected queue will be
  1699. * modified if a command disconnects, *instance->connected will
  1700. * change.
  1701. *
  1702. * XXX Note : we need to watch for bus free or a reset condition here
  1703. * to recover from an unexpected bus free condition.
  1704. */
  1705. static void NCR5380_information_transfer (struct Scsi_Host *instance)
  1706. {
  1707. SETUP_HOSTDATA(instance);
  1708. unsigned long flags;
  1709. unsigned char msgout = NOP;
  1710. int sink = 0;
  1711. int len;
  1712. #if defined(REAL_DMA)
  1713. int transfersize;
  1714. #endif
  1715. unsigned char *data;
  1716. unsigned char phase, tmp, extended_msg[10], old_phase=0xff;
  1717. struct scsi_cmnd *cmd = (struct scsi_cmnd *) hostdata->connected;
  1718. #ifdef SUN3_SCSI_VME
  1719. dregs->csr |= CSR_INTR;
  1720. #endif
  1721. while (1) {
  1722. tmp = NCR5380_read(STATUS_REG);
  1723. /* We only have a valid SCSI phase when REQ is asserted */
  1724. if (tmp & SR_REQ) {
  1725. phase = (tmp & PHASE_MASK);
  1726. if (phase != old_phase) {
  1727. old_phase = phase;
  1728. NCR_PRINT_PHASE(NDEBUG_INFORMATION);
  1729. }
  1730. if(phase == PHASE_CMDOUT) {
  1731. void *d;
  1732. unsigned long count;
  1733. if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
  1734. count = cmd->SCp.buffer->length;
  1735. d = SGADDR(cmd->SCp.buffer);
  1736. } else {
  1737. count = cmd->SCp.this_residual;
  1738. d = cmd->SCp.ptr;
  1739. }
  1740. #ifdef REAL_DMA
  1741. /* this command setup for dma yet? */
  1742. if((count > SUN3_DMA_MINSIZE) && (sun3_dma_setup_done
  1743. != cmd))
  1744. {
  1745. if (cmd->request->cmd_type == REQ_TYPE_FS) {
  1746. sun3scsi_dma_setup(d, count,
  1747. rq_data_dir(cmd->request));
  1748. sun3_dma_setup_done = cmd;
  1749. }
  1750. }
  1751. #endif
  1752. #ifdef SUN3_SCSI_VME
  1753. dregs->csr |= CSR_INTR;
  1754. #endif
  1755. }
  1756. if (sink && (phase != PHASE_MSGOUT)) {
  1757. NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
  1758. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
  1759. ICR_ASSERT_ACK);
  1760. while (NCR5380_read(STATUS_REG) & SR_REQ);
  1761. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
  1762. ICR_ASSERT_ATN);
  1763. sink = 0;
  1764. continue;
  1765. }
  1766. switch (phase) {
  1767. case PHASE_DATAOUT:
  1768. #if (NDEBUG & NDEBUG_NO_DATAOUT)
  1769. printk("scsi%d: NDEBUG_NO_DATAOUT set, attempted DATAOUT "
  1770. "aborted\n", HOSTNO);
  1771. sink = 1;
  1772. do_abort(instance);
  1773. cmd->result = DID_ERROR << 16;
  1774. cmd->scsi_done(cmd);
  1775. return;
  1776. #endif
  1777. case PHASE_DATAIN:
  1778. /*
  1779. * If there is no room left in the current buffer in the
  1780. * scatter-gather list, move onto the next one.
  1781. */
  1782. if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
  1783. ++cmd->SCp.buffer;
  1784. --cmd->SCp.buffers_residual;
  1785. cmd->SCp.this_residual = cmd->SCp.buffer->length;
  1786. cmd->SCp.ptr = SGADDR(cmd->SCp.buffer);
  1787. INF_PRINTK("scsi%d: %d bytes and %d buffers left\n",
  1788. HOSTNO, cmd->SCp.this_residual,
  1789. cmd->SCp.buffers_residual);
  1790. }
  1791. /*
  1792. * The preferred transfer method is going to be
  1793. * PSEUDO-DMA for systems that are strictly PIO,
  1794. * since we can let the hardware do the handshaking.
  1795. *
  1796. * For this to work, we need to know the transfersize
  1797. * ahead of time, since the pseudo-DMA code will sit
  1798. * in an unconditional loop.
  1799. */
  1800. /* ++roman: I suggest, this should be
  1801. * #if def(REAL_DMA)
  1802. * instead of leaving REAL_DMA out.
  1803. */
  1804. #if defined(REAL_DMA)
  1805. // if (!cmd->device->borken &&
  1806. if((transfersize =
  1807. NCR5380_dma_xfer_len(instance,cmd,phase)) > SUN3_DMA_MINSIZE) {
  1808. len = transfersize;
  1809. cmd->SCp.phase = phase;
  1810. if (NCR5380_transfer_dma(instance, &phase,
  1811. &len, (unsigned char **) &cmd->SCp.ptr)) {
  1812. /*
  1813. * If the watchdog timer fires, all future
  1814. * accesses to this device will use the
  1815. * polled-IO. */
  1816. printk(KERN_NOTICE "scsi%d: switching target %d "
  1817. "lun %d to slow handshake\n", HOSTNO,
  1818. cmd->device->id, cmd->device->lun);
  1819. cmd->device->borken = 1;
  1820. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
  1821. ICR_ASSERT_ATN);
  1822. sink = 1;
  1823. do_abort(instance);
  1824. cmd->result = DID_ERROR << 16;
  1825. cmd->scsi_done(cmd);
  1826. /* XXX - need to source or sink data here, as appropriate */
  1827. } else {
  1828. #ifdef REAL_DMA
  1829. /* ++roman: When using real DMA,
  1830. * information_transfer() should return after
  1831. * starting DMA since it has nothing more to
  1832. * do.
  1833. */
  1834. return;
  1835. #else
  1836. cmd->SCp.this_residual -= transfersize - len;
  1837. #endif
  1838. }
  1839. } else
  1840. #endif /* defined(REAL_DMA) */
  1841. NCR5380_transfer_pio(instance, &phase,
  1842. (int *) &cmd->SCp.this_residual, (unsigned char **)
  1843. &cmd->SCp.ptr);
  1844. #ifdef REAL_DMA
  1845. /* if we had intended to dma that command clear it */
  1846. if(sun3_dma_setup_done == cmd)
  1847. sun3_dma_setup_done = NULL;
  1848. #endif
  1849. break;
  1850. case PHASE_MSGIN:
  1851. len = 1;
  1852. data = &tmp;
  1853. NCR5380_write(SELECT_ENABLE_REG, 0); /* disable reselects */
  1854. NCR5380_transfer_pio(instance, &phase, &len, &data);
  1855. cmd->SCp.Message = tmp;
  1856. switch (tmp) {
  1857. /*
  1858. * Linking lets us reduce the time required to get the
  1859. * next command out to the device, hopefully this will
  1860. * mean we don't waste another revolution due to the delays
  1861. * required by ARBITRATION and another SELECTION.
  1862. *
  1863. * In the current implementation proposal, low level drivers
  1864. * merely have to start the next command, pointed to by
  1865. * next_link, done() is called as with unlinked commands.
  1866. */
  1867. #ifdef LINKED
  1868. case LINKED_CMD_COMPLETE:
  1869. case LINKED_FLG_CMD_COMPLETE:
  1870. /* Accept message by clearing ACK */
  1871. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1872. LNK_PRINTK("scsi%d: target %d lun %d linked command "
  1873. "complete.\n", HOSTNO, cmd->device->id, cmd->device->lun);
  1874. /* Enable reselect interrupts */
  1875. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1876. /*
  1877. * Sanity check : A linked command should only terminate
  1878. * with one of these messages if there are more linked
  1879. * commands available.
  1880. */
  1881. if (!cmd->next_link) {
  1882. printk(KERN_NOTICE "scsi%d: target %d lun %d "
  1883. "linked command complete, no next_link\n",
  1884. HOSTNO, cmd->device->id, cmd->device->lun);
  1885. sink = 1;
  1886. do_abort (instance);
  1887. return;
  1888. }
  1889. initialize_SCp(cmd->next_link);
  1890. /* The next command is still part of this process; copy it
  1891. * and don't free it! */
  1892. cmd->next_link->tag = cmd->tag;
  1893. cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
  1894. LNK_PRINTK("scsi%d: target %d lun %d linked request "
  1895. "done, calling scsi_done().\n",
  1896. HOSTNO, cmd->device->id, cmd->device->lun);
  1897. #ifdef NCR5380_STATS
  1898. collect_stats(hostdata, cmd);
  1899. #endif
  1900. cmd->scsi_done(cmd);
  1901. cmd = hostdata->connected;
  1902. break;
  1903. #endif /* def LINKED */
  1904. case ABORT:
  1905. case COMMAND_COMPLETE:
  1906. /* Accept message by clearing ACK */
  1907. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1908. hostdata->connected = NULL;
  1909. QU_PRINTK("scsi%d: command for target %d, lun %d "
  1910. "completed\n", HOSTNO, cmd->device->id, cmd->device->lun);
  1911. #ifdef SUPPORT_TAGS
  1912. cmd_free_tag( cmd );
  1913. if (status_byte(cmd->SCp.Status) == QUEUE_FULL) {
  1914. /* Turn a QUEUE FULL status into BUSY, I think the
  1915. * mid level cannot handle QUEUE FULL :-( (The
  1916. * command is retried after BUSY). Also update our
  1917. * queue size to the number of currently issued
  1918. * commands now.
  1919. */
  1920. /* ++Andreas: the mid level code knows about
  1921. QUEUE_FULL now. */
  1922. TAG_ALLOC *ta = &TagAlloc[cmd->device->id][cmd->device->lun];
  1923. TAG_PRINTK("scsi%d: target %d lun %d returned "
  1924. "QUEUE_FULL after %d commands\n",
  1925. HOSTNO, cmd->device->id, cmd->device->lun,
  1926. ta->nr_allocated);
  1927. if (ta->queue_size > ta->nr_allocated)
  1928. ta->nr_allocated = ta->queue_size;
  1929. }
  1930. #else
  1931. hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
  1932. #endif
  1933. /* Enable reselect interrupts */
  1934. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1935. /*
  1936. * I'm not sure what the correct thing to do here is :
  1937. *
  1938. * If the command that just executed is NOT a request
  1939. * sense, the obvious thing to do is to set the result
  1940. * code to the values of the stored parameters.
  1941. *
  1942. * If it was a REQUEST SENSE command, we need some way to
  1943. * differentiate between the failure code of the original
  1944. * and the failure code of the REQUEST sense - the obvious
  1945. * case is success, where we fall through and leave the
  1946. * result code unchanged.
  1947. *
  1948. * The non-obvious place is where the REQUEST SENSE failed
  1949. */
  1950. if (cmd->cmnd[0] != REQUEST_SENSE)
  1951. cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
  1952. else if (status_byte(cmd->SCp.Status) != GOOD)
  1953. cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
  1954. #ifdef AUTOSENSE
  1955. if ((cmd->cmnd[0] == REQUEST_SENSE) &&
  1956. hostdata->ses.cmd_len) {
  1957. scsi_eh_restore_cmnd(cmd, &hostdata->ses);
  1958. hostdata->ses.cmd_len = 0 ;
  1959. }
  1960. if ((cmd->cmnd[0] != REQUEST_SENSE) &&
  1961. (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
  1962. scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
  1963. ASEN_PRINTK("scsi%d: performing request sense\n",
  1964. HOSTNO);
  1965. /* this is initialized from initialize_SCp
  1966. cmd->SCp.buffer = NULL;
  1967. cmd->SCp.buffers_residual = 0;
  1968. */
  1969. local_irq_save(flags);
  1970. LIST(cmd,hostdata->issue_queue);
  1971. SET_NEXT(cmd, hostdata->issue_queue);
  1972. hostdata->issue_queue = (struct scsi_cmnd *) cmd;
  1973. local_irq_restore(flags);
  1974. QU_PRINTK("scsi%d: REQUEST SENSE added to head of "
  1975. "issue queue\n", H_NO(cmd));
  1976. } else
  1977. #endif /* def AUTOSENSE */
  1978. {
  1979. #ifdef NCR5380_STATS
  1980. collect_stats(hostdata, cmd);
  1981. #endif
  1982. cmd->scsi_done(cmd);
  1983. }
  1984. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1985. /*
  1986. * Restore phase bits to 0 so an interrupted selection,
  1987. * arbitration can resume.
  1988. */
  1989. NCR5380_write(TARGET_COMMAND_REG, 0);
  1990. while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
  1991. barrier();
  1992. return;
  1993. case MESSAGE_REJECT:
  1994. /* Accept message by clearing ACK */
  1995. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1996. /* Enable reselect interrupts */
  1997. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1998. switch (hostdata->last_message) {
  1999. case HEAD_OF_QUEUE_TAG:
  2000. case ORDERED_QUEUE_TAG:
  2001. case SIMPLE_QUEUE_TAG:
  2002. /* The target obviously doesn't support tagged
  2003. * queuing, even though it announced this ability in
  2004. * its INQUIRY data ?!? (maybe only this LUN?) Ok,
  2005. * clear 'tagged_supported' and lock the LUN, since
  2006. * the command is treated as untagged further on.
  2007. */
  2008. cmd->device->tagged_supported = 0;
  2009. hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
  2010. cmd->tag = TAG_NONE;
  2011. TAG_PRINTK("scsi%d: target %d lun %d rejected "
  2012. "QUEUE_TAG message; tagged queuing "
  2013. "disabled\n",
  2014. HOSTNO, cmd->device->id, cmd->device->lun);
  2015. break;
  2016. }
  2017. break;
  2018. case DISCONNECT:
  2019. /* Accept message by clearing ACK */
  2020. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2021. local_irq_save(flags);
  2022. cmd->device->disconnect = 1;
  2023. LIST(cmd,hostdata->disconnected_queue);
  2024. SET_NEXT(cmd, hostdata->disconnected_queue);
  2025. hostdata->connected = NULL;
  2026. hostdata->disconnected_queue = cmd;
  2027. local_irq_restore(flags);
  2028. QU_PRINTK("scsi%d: command for target %d lun %d was "
  2029. "moved from connected to the "
  2030. "disconnected_queue\n", HOSTNO,
  2031. cmd->device->id, cmd->device->lun);
  2032. /*
  2033. * Restore phase bits to 0 so an interrupted selection,
  2034. * arbitration can resume.
  2035. */
  2036. NCR5380_write(TARGET_COMMAND_REG, 0);
  2037. /* Enable reselect interrupts */
  2038. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2039. /* Wait for bus free to avoid nasty timeouts */
  2040. while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
  2041. barrier();
  2042. #ifdef SUN3_SCSI_VME
  2043. dregs->csr |= CSR_DMA_ENABLE;
  2044. #endif
  2045. return;
  2046. /*
  2047. * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
  2048. * operation, in violation of the SCSI spec so we can safely
  2049. * ignore SAVE/RESTORE pointers calls.
  2050. *
  2051. * Unfortunately, some disks violate the SCSI spec and
  2052. * don't issue the required SAVE_POINTERS message before
  2053. * disconnecting, and we have to break spec to remain
  2054. * compatible.
  2055. */
  2056. case SAVE_POINTERS:
  2057. case RESTORE_POINTERS:
  2058. /* Accept message by clearing ACK */
  2059. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2060. /* Enable reselect interrupts */
  2061. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2062. break;
  2063. case EXTENDED_MESSAGE:
  2064. /*
  2065. * Extended messages are sent in the following format :
  2066. * Byte
  2067. * 0 EXTENDED_MESSAGE == 1
  2068. * 1 length (includes one byte for code, doesn't
  2069. * include first two bytes)
  2070. * 2 code
  2071. * 3..length+1 arguments
  2072. *
  2073. * Start the extended message buffer with the EXTENDED_MESSAGE
  2074. * byte, since spi_print_msg() wants the whole thing.
  2075. */
  2076. extended_msg[0] = EXTENDED_MESSAGE;
  2077. /* Accept first byte by clearing ACK */
  2078. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2079. EXT_PRINTK("scsi%d: receiving extended message\n", HOSTNO);
  2080. len = 2;
  2081. data = extended_msg + 1;
  2082. phase = PHASE_MSGIN;
  2083. NCR5380_transfer_pio(instance, &phase, &len, &data);
  2084. EXT_PRINTK("scsi%d: length=%d, code=0x%02x\n", HOSTNO,
  2085. (int)extended_msg[1], (int)extended_msg[2]);
  2086. if (!len && extended_msg[1] <=
  2087. (sizeof (extended_msg) - 1)) {
  2088. /* Accept third byte by clearing ACK */
  2089. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2090. len = extended_msg[1] - 1;
  2091. data = extended_msg + 3;
  2092. phase = PHASE_MSGIN;
  2093. NCR5380_transfer_pio(instance, &phase, &len, &data);
  2094. EXT_PRINTK("scsi%d: message received, residual %d\n",
  2095. HOSTNO, len);
  2096. switch (extended_msg[2]) {
  2097. case EXTENDED_SDTR:
  2098. case EXTENDED_WDTR:
  2099. case EXTENDED_MODIFY_DATA_POINTER:
  2100. case EXTENDED_EXTENDED_IDENTIFY:
  2101. tmp = 0;
  2102. }
  2103. } else if (len) {
  2104. printk(KERN_NOTICE "scsi%d: error receiving "
  2105. "extended message\n", HOSTNO);
  2106. tmp = 0;
  2107. } else {
  2108. printk(KERN_NOTICE "scsi%d: extended message "
  2109. "code %02x length %d is too long\n",
  2110. HOSTNO, extended_msg[2], extended_msg[1]);
  2111. tmp = 0;
  2112. }
  2113. /* Fall through to reject message */
  2114. /*
  2115. * If we get something weird that we aren't expecting,
  2116. * reject it.
  2117. */
  2118. default:
  2119. if (!tmp) {
  2120. printk(KERN_DEBUG "scsi%d: rejecting message ", HOSTNO);
  2121. spi_print_msg(extended_msg);
  2122. printk("\n");
  2123. } else if (tmp != EXTENDED_MESSAGE)
  2124. printk(KERN_DEBUG "scsi%d: rejecting unknown "
  2125. "message %02x from target %d, lun %d\n",
  2126. HOSTNO, tmp, cmd->device->id, cmd->device->lun);
  2127. else
  2128. printk(KERN_DEBUG "scsi%d: rejecting unknown "
  2129. "extended message "
  2130. "code %02x, length %d from target %d, lun %d\n",
  2131. HOSTNO, extended_msg[1], extended_msg[0],
  2132. cmd->device->id, cmd->device->lun);
  2133. msgout = MESSAGE_REJECT;
  2134. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
  2135. ICR_ASSERT_ATN);
  2136. break;
  2137. } /* switch (tmp) */
  2138. break;
  2139. case PHASE_MSGOUT:
  2140. len = 1;
  2141. data = &msgout;
  2142. hostdata->last_message = msgout;
  2143. NCR5380_transfer_pio(instance, &phase, &len, &data);
  2144. if (msgout == ABORT) {
  2145. #ifdef SUPPORT_TAGS
  2146. cmd_free_tag( cmd );
  2147. #else
  2148. hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
  2149. #endif
  2150. hostdata->connected = NULL;
  2151. cmd->result = DID_ERROR << 16;
  2152. #ifdef NCR5380_STATS
  2153. collect_stats(hostdata, cmd);
  2154. #endif
  2155. cmd->scsi_done(cmd);
  2156. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2157. return;
  2158. }
  2159. msgout = NOP;
  2160. break;
  2161. case PHASE_CMDOUT:
  2162. len = cmd->cmd_len;
  2163. data = cmd->cmnd;
  2164. /*
  2165. * XXX for performance reasons, on machines with a
  2166. * PSEUDO-DMA architecture we should probably
  2167. * use the dma transfer function.
  2168. */
  2169. NCR5380_transfer_pio(instance, &phase, &len,
  2170. &data);
  2171. break;
  2172. case PHASE_STATIN:
  2173. len = 1;
  2174. data = &tmp;
  2175. NCR5380_transfer_pio(instance, &phase, &len, &data);
  2176. cmd->SCp.Status = tmp;
  2177. break;
  2178. default:
  2179. printk("scsi%d: unknown phase\n", HOSTNO);
  2180. NCR_PRINT(NDEBUG_ANY);
  2181. } /* switch(phase) */
  2182. } /* if (tmp * SR_REQ) */
  2183. } /* while (1) */
  2184. }
  2185. /*
  2186. * Function : void NCR5380_reselect (struct Scsi_Host *instance)
  2187. *
  2188. * Purpose : does reselection, initializing the instance->connected
  2189. * field to point to the struct scsi_cmnd for which the I_T_L or I_T_L_Q
  2190. * nexus has been reestablished,
  2191. *
  2192. * Inputs : instance - this instance of the NCR5380.
  2193. *
  2194. */
  2195. /* it might eventually prove necessary to do a dma setup on
  2196. reselection, but it doesn't seem to be needed now -- sam */
  2197. static void NCR5380_reselect (struct Scsi_Host *instance)
  2198. {
  2199. SETUP_HOSTDATA(instance);
  2200. unsigned char target_mask;
  2201. unsigned char lun;
  2202. #ifdef SUPPORT_TAGS
  2203. unsigned char tag;
  2204. #endif
  2205. unsigned char msg[3];
  2206. struct scsi_cmnd *tmp = NULL, *prev;
  2207. /* unsigned long flags; */
  2208. /*
  2209. * Disable arbitration, etc. since the host adapter obviously
  2210. * lost, and tell an interrupted NCR5380_select() to restart.
  2211. */
  2212. NCR5380_write(MODE_REG, MR_BASE);
  2213. hostdata->restart_select = 1;
  2214. target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
  2215. RSL_PRINTK("scsi%d: reselect\n", HOSTNO);
  2216. /*
  2217. * At this point, we have detected that our SCSI ID is on the bus,
  2218. * SEL is true and BSY was false for at least one bus settle delay
  2219. * (400 ns).
  2220. *
  2221. * We must assert BSY ourselves, until the target drops the SEL
  2222. * signal.
  2223. */
  2224. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
  2225. while (NCR5380_read(STATUS_REG) & SR_SEL);
  2226. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2227. /*
  2228. * Wait for target to go into MSGIN.
  2229. */
  2230. while (!(NCR5380_read(STATUS_REG) & SR_REQ));
  2231. #if 1
  2232. // acknowledge toggle to MSGIN
  2233. NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
  2234. // peek at the byte without really hitting the bus
  2235. msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
  2236. #endif
  2237. if (!(msg[0] & 0x80)) {
  2238. printk(KERN_DEBUG "scsi%d: expecting IDENTIFY message, got ", HOSTNO);
  2239. spi_print_msg(msg);
  2240. do_abort(instance);
  2241. return;
  2242. }
  2243. lun = (msg[0] & 0x07);
  2244. /*
  2245. * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
  2246. * just reestablished, and remove it from the disconnected queue.
  2247. */
  2248. for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL;
  2249. tmp; prev = tmp, tmp = NEXT(tmp) ) {
  2250. if ((target_mask == (1 << tmp->device->id)) && (lun == tmp->device->lun)
  2251. #ifdef SUPPORT_TAGS
  2252. && (tag == tmp->tag)
  2253. #endif
  2254. ) {
  2255. if (prev) {
  2256. REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
  2257. SET_NEXT(prev, NEXT(tmp));
  2258. } else {
  2259. REMOVE(-1, hostdata->disconnected_queue, tmp, NEXT(tmp));
  2260. hostdata->disconnected_queue = NEXT(tmp);
  2261. }
  2262. SET_NEXT(tmp, NULL);
  2263. break;
  2264. }
  2265. }
  2266. if (!tmp) {
  2267. printk(KERN_WARNING "scsi%d: warning: target bitmask %02x lun %d "
  2268. #ifdef SUPPORT_TAGS
  2269. "tag %d "
  2270. #endif
  2271. "not in disconnected_queue.\n",
  2272. HOSTNO, target_mask, lun
  2273. #ifdef SUPPORT_TAGS
  2274. , tag
  2275. #endif
  2276. );
  2277. /*
  2278. * Since we have an established nexus that we can't do anything
  2279. * with, we must abort it.
  2280. */
  2281. do_abort(instance);
  2282. return;
  2283. }
  2284. #if 1
  2285. /* engage dma setup for the command we just saw */
  2286. {
  2287. void *d;
  2288. unsigned long count;
  2289. if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
  2290. count = tmp->SCp.buffer->length;
  2291. d = SGADDR(tmp->SCp.buffer);
  2292. } else {
  2293. count = tmp->SCp.this_residual;
  2294. d = tmp->SCp.ptr;
  2295. }
  2296. #ifdef REAL_DMA
  2297. /* setup this command for dma if not already */
  2298. if((count > SUN3_DMA_MINSIZE) && (sun3_dma_setup_done != tmp))
  2299. {
  2300. sun3scsi_dma_setup(d, count, rq_data_dir(tmp->request));
  2301. sun3_dma_setup_done = tmp;
  2302. }
  2303. #endif
  2304. }
  2305. #endif
  2306. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
  2307. /* Accept message by clearing ACK */
  2308. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2309. #ifdef SUPPORT_TAGS
  2310. /* If the phase is still MSGIN, the target wants to send some more
  2311. * messages. In case it supports tagged queuing, this is probably a
  2312. * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
  2313. */
  2314. tag = TAG_NONE;
  2315. if (phase == PHASE_MSGIN && setup_use_tagged_queuing) {
  2316. /* Accept previous IDENTIFY message by clearing ACK */
  2317. NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE );
  2318. len = 2;
  2319. data = msg+1;
  2320. if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
  2321. msg[1] == SIMPLE_QUEUE_TAG)
  2322. tag = msg[2];
  2323. TAG_PRINTK("scsi%d: target mask %02x, lun %d sent tag %d at "
  2324. "reselection\n", HOSTNO, target_mask, lun, tag);
  2325. }
  2326. #endif
  2327. hostdata->connected = tmp;
  2328. RSL_PRINTK("scsi%d: nexus established, target = %d, lun = %d, tag = %d\n",
  2329. HOSTNO, tmp->target, tmp->lun, tmp->tag);
  2330. }
  2331. /*
  2332. * Function : int NCR5380_abort(struct scsi_cmnd *cmd)
  2333. *
  2334. * Purpose : abort a command
  2335. *
  2336. * Inputs : cmd - the struct scsi_cmnd to abort, code - code to set the
  2337. * host byte of the result field to, if zero DID_ABORTED is
  2338. * used.
  2339. *
  2340. * Returns : SUCCESS - success, FAILED on failure.
  2341. *
  2342. * XXX - there is no way to abort the command that is currently
  2343. * connected, you have to wait for it to complete. If this is
  2344. * a problem, we could implement longjmp() / setjmp(), setjmp()
  2345. * called where the loop started in NCR5380_main().
  2346. */
  2347. static int NCR5380_abort(struct scsi_cmnd *cmd)
  2348. {
  2349. struct Scsi_Host *instance = cmd->device->host;
  2350. SETUP_HOSTDATA(instance);
  2351. struct scsi_cmnd *tmp, **prev;
  2352. unsigned long flags;
  2353. printk(KERN_NOTICE "scsi%d: aborting command\n", HOSTNO);
  2354. scsi_print_command(cmd);
  2355. NCR5380_print_status (instance);
  2356. local_irq_save(flags);
  2357. ABRT_PRINTK("scsi%d: abort called basr 0x%02x, sr 0x%02x\n", HOSTNO,
  2358. NCR5380_read(BUS_AND_STATUS_REG),
  2359. NCR5380_read(STATUS_REG));
  2360. #if 1
  2361. /*
  2362. * Case 1 : If the command is the currently executing command,
  2363. * we'll set the aborted flag and return control so that
  2364. * information transfer routine can exit cleanly.
  2365. */
  2366. if (hostdata->connected == cmd) {
  2367. ABRT_PRINTK("scsi%d: aborting connected command\n", HOSTNO);
  2368. /*
  2369. * We should perform BSY checking, and make sure we haven't slipped
  2370. * into BUS FREE.
  2371. */
  2372. /* NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN); */
  2373. /*
  2374. * Since we can't change phases until we've completed the current
  2375. * handshake, we have to source or sink a byte of data if the current
  2376. * phase is not MSGOUT.
  2377. */
  2378. /*
  2379. * Return control to the executing NCR drive so we can clear the
  2380. * aborted flag and get back into our main loop.
  2381. */
  2382. if (do_abort(instance) == 0) {
  2383. hostdata->aborted = 1;
  2384. hostdata->connected = NULL;
  2385. cmd->result = DID_ABORT << 16;
  2386. #ifdef SUPPORT_TAGS
  2387. cmd_free_tag( cmd );
  2388. #else
  2389. hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
  2390. #endif
  2391. local_irq_restore(flags);
  2392. cmd->scsi_done(cmd);
  2393. return SCSI_ABORT_SUCCESS;
  2394. } else {
  2395. /* local_irq_restore(flags); */
  2396. printk("scsi%d: abort of connected command failed!\n", HOSTNO);
  2397. return SCSI_ABORT_ERROR;
  2398. }
  2399. }
  2400. #endif
  2401. /*
  2402. * Case 2 : If the command hasn't been issued yet, we simply remove it
  2403. * from the issue queue.
  2404. */
  2405. for (prev = (struct scsi_cmnd **) &(hostdata->issue_queue),
  2406. tmp = (struct scsi_cmnd *) hostdata->issue_queue;
  2407. tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp))
  2408. if (cmd == tmp) {
  2409. REMOVE(5, *prev, tmp, NEXT(tmp));
  2410. (*prev) = NEXT(tmp);
  2411. SET_NEXT(tmp, NULL);
  2412. tmp->result = DID_ABORT << 16;
  2413. local_irq_restore(flags);
  2414. ABRT_PRINTK("scsi%d: abort removed command from issue queue.\n",
  2415. HOSTNO);
  2416. /* Tagged queuing note: no tag to free here, hasn't been assigned
  2417. * yet... */
  2418. tmp->scsi_done(tmp);
  2419. return SCSI_ABORT_SUCCESS;
  2420. }
  2421. /*
  2422. * Case 3 : If any commands are connected, we're going to fail the abort
  2423. * and let the high level SCSI driver retry at a later time or
  2424. * issue a reset.
  2425. *
  2426. * Timeouts, and therefore aborted commands, will be highly unlikely
  2427. * and handling them cleanly in this situation would make the common
  2428. * case of noresets less efficient, and would pollute our code. So,
  2429. * we fail.
  2430. */
  2431. if (hostdata->connected) {
  2432. local_irq_restore(flags);
  2433. ABRT_PRINTK("scsi%d: abort failed, command connected.\n", HOSTNO);
  2434. return SCSI_ABORT_SNOOZE;
  2435. }
  2436. /*
  2437. * Case 4: If the command is currently disconnected from the bus, and
  2438. * there are no connected commands, we reconnect the I_T_L or
  2439. * I_T_L_Q nexus associated with it, go into message out, and send
  2440. * an abort message.
  2441. *
  2442. * This case is especially ugly. In order to reestablish the nexus, we
  2443. * need to call NCR5380_select(). The easiest way to implement this
  2444. * function was to abort if the bus was busy, and let the interrupt
  2445. * handler triggered on the SEL for reselect take care of lost arbitrations
  2446. * where necessary, meaning interrupts need to be enabled.
  2447. *
  2448. * When interrupts are enabled, the queues may change - so we
  2449. * can't remove it from the disconnected queue before selecting it
  2450. * because that could cause a failure in hashing the nexus if that
  2451. * device reselected.
  2452. *
  2453. * Since the queues may change, we can't use the pointers from when we
  2454. * first locate it.
  2455. *
  2456. * So, we must first locate the command, and if NCR5380_select()
  2457. * succeeds, then issue the abort, relocate the command and remove
  2458. * it from the disconnected queue.
  2459. */
  2460. for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp;
  2461. tmp = NEXT(tmp))
  2462. if (cmd == tmp) {
  2463. local_irq_restore(flags);
  2464. ABRT_PRINTK("scsi%d: aborting disconnected command.\n", HOSTNO);
  2465. if (NCR5380_select (instance, cmd, (int) cmd->tag))
  2466. return SCSI_ABORT_BUSY;
  2467. ABRT_PRINTK("scsi%d: nexus reestablished.\n", HOSTNO);
  2468. do_abort (instance);
  2469. local_irq_save(flags);
  2470. for (prev = (struct scsi_cmnd **) &(hostdata->disconnected_queue),
  2471. tmp = (struct scsi_cmnd *) hostdata->disconnected_queue;
  2472. tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp) )
  2473. if (cmd == tmp) {
  2474. REMOVE(5, *prev, tmp, NEXT(tmp));
  2475. *prev = NEXT(tmp);
  2476. SET_NEXT(tmp, NULL);
  2477. tmp->result = DID_ABORT << 16;
  2478. /* We must unlock the tag/LUN immediately here, since the
  2479. * target goes to BUS FREE and doesn't send us another
  2480. * message (COMMAND_COMPLETE or the like)
  2481. */
  2482. #ifdef SUPPORT_TAGS
  2483. cmd_free_tag( tmp );
  2484. #else
  2485. hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
  2486. #endif
  2487. local_irq_restore(flags);
  2488. tmp->scsi_done(tmp);
  2489. return SCSI_ABORT_SUCCESS;
  2490. }
  2491. }
  2492. /*
  2493. * Case 5 : If we reached this point, the command was not found in any of
  2494. * the queues.
  2495. *
  2496. * We probably reached this point because of an unlikely race condition
  2497. * between the command completing successfully and the abortion code,
  2498. * so we won't panic, but we will notify the user in case something really
  2499. * broke.
  2500. */
  2501. local_irq_restore(flags);
  2502. printk(KERN_INFO "scsi%d: warning : SCSI command probably completed successfully before abortion\n", HOSTNO);
  2503. return SCSI_ABORT_NOT_RUNNING;
  2504. }
  2505. /*
  2506. * Function : int NCR5380_bus_reset(struct scsi_cmnd *cmd)
  2507. *
  2508. * Purpose : reset the SCSI bus.
  2509. *
  2510. * Returns : SCSI_RESET_WAKEUP
  2511. *
  2512. */
  2513. static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
  2514. {
  2515. SETUP_HOSTDATA(cmd->device->host);
  2516. int i;
  2517. unsigned long flags;
  2518. #if 1
  2519. struct scsi_cmnd *connected, *disconnected_queue;
  2520. #endif
  2521. NCR5380_print_status (cmd->device->host);
  2522. /* get in phase */
  2523. NCR5380_write( TARGET_COMMAND_REG,
  2524. PHASE_SR_TO_TCR( NCR5380_read(STATUS_REG) ));
  2525. /* assert RST */
  2526. NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST );
  2527. udelay (40);
  2528. /* reset NCR registers */
  2529. NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE );
  2530. NCR5380_write( MODE_REG, MR_BASE );
  2531. NCR5380_write( TARGET_COMMAND_REG, 0 );
  2532. NCR5380_write( SELECT_ENABLE_REG, 0 );
  2533. /* ++roman: reset interrupt condition! otherwise no interrupts don't get
  2534. * through anymore ... */
  2535. (void)NCR5380_read( RESET_PARITY_INTERRUPT_REG );
  2536. #if 1 /* XXX Should now be done by midlevel code, but it's broken XXX */
  2537. /* XXX see below XXX */
  2538. /* MSch: old-style reset: actually abort all command processing here */
  2539. /* After the reset, there are no more connected or disconnected commands
  2540. * and no busy units; to avoid problems with re-inserting the commands
  2541. * into the issue_queue (via scsi_done()), the aborted commands are
  2542. * remembered in local variables first.
  2543. */
  2544. local_irq_save(flags);
  2545. connected = (struct scsi_cmnd *)hostdata->connected;
  2546. hostdata->connected = NULL;
  2547. disconnected_queue = (struct scsi_cmnd *)hostdata->disconnected_queue;
  2548. hostdata->disconnected_queue = NULL;
  2549. #ifdef SUPPORT_TAGS
  2550. free_all_tags();
  2551. #endif
  2552. for( i = 0; i < 8; ++i )
  2553. hostdata->busy[i] = 0;
  2554. #ifdef REAL_DMA
  2555. hostdata->dma_len = 0;
  2556. #endif
  2557. local_irq_restore(flags);
  2558. /* In order to tell the mid-level code which commands were aborted,
  2559. * set the command status to DID_RESET and call scsi_done() !!!
  2560. * This ultimately aborts processing of these commands in the mid-level.
  2561. */
  2562. if ((cmd = connected)) {
  2563. ABRT_PRINTK("scsi%d: reset aborted a connected command\n", H_NO(cmd));
  2564. cmd->result = (cmd->result & 0xffff) | (DID_RESET << 16);
  2565. cmd->scsi_done( cmd );
  2566. }
  2567. for (i = 0; (cmd = disconnected_queue); ++i) {
  2568. disconnected_queue = NEXT(cmd);
  2569. SET_NEXT(cmd, NULL);
  2570. cmd->result = (cmd->result & 0xffff) | (DID_RESET << 16);
  2571. cmd->scsi_done( cmd );
  2572. }
  2573. if (i > 0)
  2574. ABRT_PRINTK("scsi: reset aborted %d disconnected command(s)\n", i);
  2575. /* since all commands have been explicitly terminated, we need to tell
  2576. * the midlevel code that the reset was SUCCESSFUL, and there is no
  2577. * need to 'wake up' the commands by a request_sense
  2578. */
  2579. return SCSI_RESET_SUCCESS | SCSI_RESET_BUS_RESET;
  2580. #else /* 1 */
  2581. /* MSch: new-style reset handling: let the mid-level do what it can */
  2582. /* ++guenther: MID-LEVEL IS STILL BROKEN.
  2583. * Mid-level is supposed to requeue all commands that were active on the
  2584. * various low-level queues. In fact it does this, but that's not enough
  2585. * because all these commands are subject to timeout. And if a timeout
  2586. * happens for any removed command, *_abort() is called but all queues
  2587. * are now empty. Abort then gives up the falcon lock, which is fatal,
  2588. * since the mid-level will queue more commands and must have the lock
  2589. * (it's all happening inside timer interrupt handler!!).
  2590. * Even worse, abort will return NOT_RUNNING for all those commands not
  2591. * on any queue, so they won't be retried ...
  2592. *
  2593. * Conclusion: either scsi.c disables timeout for all resetted commands
  2594. * immediately, or we lose! As of linux-2.0.20 it doesn't.
  2595. */
  2596. /* After the reset, there are no more connected or disconnected commands
  2597. * and no busy units; so clear the low-level status here to avoid
  2598. * conflicts when the mid-level code tries to wake up the affected
  2599. * commands!
  2600. */
  2601. if (hostdata->issue_queue)
  2602. ABRT_PRINTK("scsi%d: reset aborted issued command(s)\n", H_NO(cmd));
  2603. if (hostdata->connected)
  2604. ABRT_PRINTK("scsi%d: reset aborted a connected command\n", H_NO(cmd));
  2605. if (hostdata->disconnected_queue)
  2606. ABRT_PRINTK("scsi%d: reset aborted disconnected command(s)\n", H_NO(cmd));
  2607. local_irq_save(flags);
  2608. hostdata->issue_queue = NULL;
  2609. hostdata->connected = NULL;
  2610. hostdata->disconnected_queue = NULL;
  2611. #ifdef SUPPORT_TAGS
  2612. free_all_tags();
  2613. #endif
  2614. for( i = 0; i < 8; ++i )
  2615. hostdata->busy[i] = 0;
  2616. #ifdef REAL_DMA
  2617. hostdata->dma_len = 0;
  2618. #endif
  2619. local_irq_restore(flags);
  2620. /* we did no complete reset of all commands, so a wakeup is required */
  2621. return SCSI_RESET_WAKEUP | SCSI_RESET_BUS_RESET;
  2622. #endif /* 1 */
  2623. }
  2624. /* Local Variables: */
  2625. /* tab-width: 8 */
  2626. /* End: */