atari_NCR5380.c 94 KB

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