atari_NCR5380.c 91 KB

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