sbp2.c 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895
  1. /*
  2. * sbp2.c - SBP-2 protocol driver for IEEE-1394
  3. *
  4. * Copyright (C) 2000 James Goodwin, Filanet Corporation (www.filanet.com)
  5. * jamesg@filanet.com (JSG)
  6. *
  7. * Copyright (C) 2003 Ben Collins <bcollins@debian.org>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software Foundation,
  21. * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. */
  23. /*
  24. * Brief Description:
  25. *
  26. * This driver implements the Serial Bus Protocol 2 (SBP-2) over IEEE-1394
  27. * under Linux. The SBP-2 driver is implemented as an IEEE-1394 high-level
  28. * driver. It also registers as a SCSI lower-level driver in order to accept
  29. * SCSI commands for transport using SBP-2.
  30. *
  31. * You may access any attached SBP-2 storage devices as if they were SCSI
  32. * devices (e.g. mount /dev/sda1, fdisk, mkfs, etc.).
  33. *
  34. * Current Issues:
  35. *
  36. * - Error Handling: SCSI aborts and bus reset requests are handled somewhat
  37. * but the code needs additional debugging.
  38. */
  39. #include <linux/config.h>
  40. #include <linux/kernel.h>
  41. #include <linux/list.h>
  42. #include <linux/string.h>
  43. #include <linux/slab.h>
  44. #include <linux/interrupt.h>
  45. #include <linux/fs.h>
  46. #include <linux/poll.h>
  47. #include <linux/module.h>
  48. #include <linux/moduleparam.h>
  49. #include <linux/types.h>
  50. #include <linux/delay.h>
  51. #include <linux/sched.h>
  52. #include <linux/blkdev.h>
  53. #include <linux/smp_lock.h>
  54. #include <linux/init.h>
  55. #include <linux/pci.h>
  56. #include <asm/current.h>
  57. #include <asm/uaccess.h>
  58. #include <asm/io.h>
  59. #include <asm/byteorder.h>
  60. #include <asm/atomic.h>
  61. #include <asm/system.h>
  62. #include <asm/scatterlist.h>
  63. #include <scsi/scsi.h>
  64. #include <scsi/scsi_cmnd.h>
  65. #include <scsi/scsi_dbg.h>
  66. #include <scsi/scsi_device.h>
  67. #include <scsi/scsi_host.h>
  68. #include "csr1212.h"
  69. #include "ieee1394.h"
  70. #include "ieee1394_types.h"
  71. #include "ieee1394_core.h"
  72. #include "nodemgr.h"
  73. #include "hosts.h"
  74. #include "highlevel.h"
  75. #include "ieee1394_transactions.h"
  76. #include "sbp2.h"
  77. static char version[] __devinitdata =
  78. "$Rev: 1306 $ Ben Collins <bcollins@debian.org>";
  79. /*
  80. * Module load parameter definitions
  81. */
  82. /*
  83. * Change max_speed on module load if you have a bad IEEE-1394
  84. * controller that has trouble running 2KB packets at 400mb.
  85. *
  86. * NOTE: On certain OHCI parts I have seen short packets on async transmit
  87. * (probably due to PCI latency/throughput issues with the part). You can
  88. * bump down the speed if you are running into problems.
  89. */
  90. static int max_speed = IEEE1394_SPEED_MAX;
  91. module_param(max_speed, int, 0644);
  92. MODULE_PARM_DESC(max_speed, "Force max speed (3 = 800mb, 2 = 400mb, 1 = 200mb, 0 = 100mb)");
  93. /*
  94. * Set serialize_io to 1 if you'd like only one scsi command sent
  95. * down to us at a time (debugging). This might be necessary for very
  96. * badly behaved sbp2 devices.
  97. *
  98. * TODO: Make this configurable per device.
  99. */
  100. static int serialize_io = 1;
  101. module_param(serialize_io, int, 0444);
  102. MODULE_PARM_DESC(serialize_io, "Serialize I/O coming from scsi drivers (default = 1, faster = 0)");
  103. /*
  104. * Bump up max_sectors if you'd like to support very large sized
  105. * transfers. Please note that some older sbp2 bridge chips are broken for
  106. * transfers greater or equal to 128KB. Default is a value of 255
  107. * sectors, or just under 128KB (at 512 byte sector size). I can note that
  108. * the Oxsemi sbp2 chipsets have no problems supporting very large
  109. * transfer sizes.
  110. */
  111. static int max_sectors = SBP2_MAX_SECTORS;
  112. module_param(max_sectors, int, 0444);
  113. MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported (default = 255)");
  114. /*
  115. * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
  116. * do an exclusive login, as it's generally unsafe to have two hosts
  117. * talking to a single sbp2 device at the same time (filesystem coherency,
  118. * etc.). If you're running an sbp2 device that supports multiple logins,
  119. * and you're either running read-only filesystems or some sort of special
  120. * filesystem supporting multiple hosts (one such filesystem is OpenGFS,
  121. * see opengfs.sourceforge.net for more info), then set exclusive_login
  122. * to zero. Note: The Oxsemi OXFW911 sbp2 chipset supports up to four
  123. * concurrent logins.
  124. */
  125. static int exclusive_login = 1;
  126. module_param(exclusive_login, int, 0644);
  127. MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device (default = 1)");
  128. /*
  129. * SCSI inquiry hack for really badly behaved sbp2 devices. Turn this on
  130. * if your sbp2 device is not properly handling the SCSI inquiry command.
  131. * This hack makes the inquiry look more like a typical MS Windows
  132. * inquiry.
  133. *
  134. * If force_inquiry_hack=1 is required for your device to work,
  135. * please submit the logged sbp2_firmware_revision value of this device to
  136. * the linux1394-devel mailing list.
  137. */
  138. static int force_inquiry_hack;
  139. module_param(force_inquiry_hack, int, 0444);
  140. MODULE_PARM_DESC(force_inquiry_hack, "Force SCSI inquiry hack (default = 0)");
  141. /*
  142. * Export information about protocols/devices supported by this driver.
  143. */
  144. static struct ieee1394_device_id sbp2_id_table[] = {
  145. {
  146. .match_flags =IEEE1394_MATCH_SPECIFIER_ID |
  147. IEEE1394_MATCH_VERSION,
  148. .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
  149. .version = SBP2_SW_VERSION_ENTRY & 0xffffff
  150. },
  151. { }
  152. };
  153. MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
  154. /*
  155. * Debug levels, configured via kernel config, or enable here.
  156. */
  157. #define CONFIG_IEEE1394_SBP2_DEBUG 0
  158. /* #define CONFIG_IEEE1394_SBP2_DEBUG_ORBS */
  159. /* #define CONFIG_IEEE1394_SBP2_DEBUG_DMA */
  160. /* #define CONFIG_IEEE1394_SBP2_DEBUG 1 */
  161. /* #define CONFIG_IEEE1394_SBP2_DEBUG 2 */
  162. /* #define CONFIG_IEEE1394_SBP2_PACKET_DUMP */
  163. #ifdef CONFIG_IEEE1394_SBP2_DEBUG_ORBS
  164. #define SBP2_ORB_DEBUG(fmt, args...) HPSB_ERR("sbp2(%s): "fmt, __FUNCTION__, ## args)
  165. static u32 global_outstanding_command_orbs = 0;
  166. #define outstanding_orb_incr global_outstanding_command_orbs++
  167. #define outstanding_orb_decr global_outstanding_command_orbs--
  168. #else
  169. #define SBP2_ORB_DEBUG(fmt, args...)
  170. #define outstanding_orb_incr
  171. #define outstanding_orb_decr
  172. #endif
  173. #ifdef CONFIG_IEEE1394_SBP2_DEBUG_DMA
  174. #define SBP2_DMA_ALLOC(fmt, args...) \
  175. HPSB_ERR("sbp2(%s)alloc(%d): "fmt, __FUNCTION__, \
  176. ++global_outstanding_dmas, ## args)
  177. #define SBP2_DMA_FREE(fmt, args...) \
  178. HPSB_ERR("sbp2(%s)free(%d): "fmt, __FUNCTION__, \
  179. --global_outstanding_dmas, ## args)
  180. static u32 global_outstanding_dmas = 0;
  181. #else
  182. #define SBP2_DMA_ALLOC(fmt, args...)
  183. #define SBP2_DMA_FREE(fmt, args...)
  184. #endif
  185. #if CONFIG_IEEE1394_SBP2_DEBUG >= 2
  186. #define SBP2_DEBUG(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  187. #define SBP2_INFO(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  188. #define SBP2_NOTICE(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  189. #define SBP2_WARN(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  190. #elif CONFIG_IEEE1394_SBP2_DEBUG == 1
  191. #define SBP2_DEBUG(fmt, args...) HPSB_DEBUG("sbp2: "fmt, ## args)
  192. #define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
  193. #define SBP2_NOTICE(fmt, args...) HPSB_NOTICE("sbp2: "fmt, ## args)
  194. #define SBP2_WARN(fmt, args...) HPSB_WARN("sbp2: "fmt, ## args)
  195. #else
  196. #define SBP2_DEBUG(fmt, args...)
  197. #define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
  198. #define SBP2_NOTICE(fmt, args...) HPSB_NOTICE("sbp2: "fmt, ## args)
  199. #define SBP2_WARN(fmt, args...) HPSB_WARN("sbp2: "fmt, ## args)
  200. #endif
  201. #define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  202. /*
  203. * Globals
  204. */
  205. static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
  206. u32 status);
  207. static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
  208. u32 scsi_status, struct scsi_cmnd *SCpnt,
  209. void (*done)(struct scsi_cmnd *));
  210. static struct scsi_host_template scsi_driver_template;
  211. static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
  212. static void sbp2_host_reset(struct hpsb_host *host);
  213. static int sbp2_probe(struct device *dev);
  214. static int sbp2_remove(struct device *dev);
  215. static int sbp2_update(struct unit_directory *ud);
  216. static struct hpsb_highlevel sbp2_highlevel = {
  217. .name = SBP2_DEVICE_NAME,
  218. .host_reset = sbp2_host_reset,
  219. };
  220. static struct hpsb_address_ops sbp2_ops = {
  221. .write = sbp2_handle_status_write
  222. };
  223. #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
  224. static struct hpsb_address_ops sbp2_physdma_ops = {
  225. .read = sbp2_handle_physdma_read,
  226. .write = sbp2_handle_physdma_write,
  227. };
  228. #endif
  229. static struct hpsb_protocol_driver sbp2_driver = {
  230. .name = "SBP2 Driver",
  231. .id_table = sbp2_id_table,
  232. .update = sbp2_update,
  233. .driver = {
  234. .name = SBP2_DEVICE_NAME,
  235. .bus = &ieee1394_bus_type,
  236. .probe = sbp2_probe,
  237. .remove = sbp2_remove,
  238. },
  239. };
  240. /* List of device firmware's that require a forced 36 byte inquiry. */
  241. static u32 sbp2_broken_inquiry_list[] = {
  242. 0x00002800, /* Stefan Richter <richtest@bauwesen.tu-cottbus.de> */
  243. /* DViCO Momobay CX-1 */
  244. 0x00000200 /* Andreas Plesch <plesch@fas.harvard.edu> */
  245. /* QPS Fire DVDBurner */
  246. };
  247. #define NUM_BROKEN_INQUIRY_DEVS \
  248. (sizeof(sbp2_broken_inquiry_list)/sizeof(*sbp2_broken_inquiry_list))
  249. /**************************************
  250. * General utility functions
  251. **************************************/
  252. #ifndef __BIG_ENDIAN
  253. /*
  254. * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
  255. */
  256. static __inline__ void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
  257. {
  258. u32 *temp = buffer;
  259. for (length = (length >> 2); length--; )
  260. temp[length] = be32_to_cpu(temp[length]);
  261. return;
  262. }
  263. /*
  264. * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
  265. */
  266. static __inline__ void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
  267. {
  268. u32 *temp = buffer;
  269. for (length = (length >> 2); length--; )
  270. temp[length] = cpu_to_be32(temp[length]);
  271. return;
  272. }
  273. #else /* BIG_ENDIAN */
  274. /* Why waste the cpu cycles? */
  275. #define sbp2util_be32_to_cpu_buffer(x,y)
  276. #define sbp2util_cpu_to_be32_buffer(x,y)
  277. #endif
  278. #ifdef CONFIG_IEEE1394_SBP2_PACKET_DUMP
  279. /*
  280. * Debug packet dump routine. Length is in bytes.
  281. */
  282. static void sbp2util_packet_dump(void *buffer, int length, char *dump_name, u32 dump_phys_addr)
  283. {
  284. int i;
  285. unsigned char *dump = buffer;
  286. if (!dump || !length || !dump_name)
  287. return;
  288. if (dump_phys_addr)
  289. printk("[%s, 0x%x]", dump_name, dump_phys_addr);
  290. else
  291. printk("[%s]", dump_name);
  292. for (i = 0; i < length; i++) {
  293. if (i > 0x3f) {
  294. printk("\n ...");
  295. break;
  296. }
  297. if ((i & 0x3) == 0)
  298. printk(" ");
  299. if ((i & 0xf) == 0)
  300. printk("\n ");
  301. printk("%02x ", (int) dump[i]);
  302. }
  303. printk("\n");
  304. return;
  305. }
  306. #else
  307. #define sbp2util_packet_dump(w,x,y,z)
  308. #endif
  309. /*
  310. * Goofy routine that basically does a down_timeout function.
  311. */
  312. static int sbp2util_down_timeout(atomic_t *done, int timeout)
  313. {
  314. int i;
  315. for (i = timeout; (i > 0 && atomic_read(done) == 0); i-= HZ/10) {
  316. if (msleep_interruptible(100)) /* 100ms */
  317. return(1);
  318. }
  319. return ((i > 0) ? 0:1);
  320. }
  321. /* Free's an allocated packet */
  322. static void sbp2_free_packet(struct hpsb_packet *packet)
  323. {
  324. hpsb_free_tlabel(packet);
  325. hpsb_free_packet(packet);
  326. }
  327. /* This is much like hpsb_node_write(), except it ignores the response
  328. * subaction and returns immediately. Can be used from interrupts.
  329. */
  330. static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
  331. quadlet_t *buffer, size_t length)
  332. {
  333. struct hpsb_packet *packet;
  334. packet = hpsb_make_writepacket(ne->host, ne->nodeid,
  335. addr, buffer, length);
  336. if (!packet)
  337. return -ENOMEM;
  338. hpsb_set_packet_complete_task(packet, (void (*)(void*))sbp2_free_packet,
  339. packet);
  340. hpsb_node_fill_packet(ne, packet);
  341. if (hpsb_send_packet(packet) < 0) {
  342. sbp2_free_packet(packet);
  343. return -EIO;
  344. }
  345. return 0;
  346. }
  347. /*
  348. * This function is called to create a pool of command orbs used for
  349. * command processing. It is called when a new sbp2 device is detected.
  350. */
  351. static int sbp2util_create_command_orb_pool(struct scsi_id_instance_data *scsi_id)
  352. {
  353. struct sbp2scsi_host_info *hi = scsi_id->hi;
  354. int i;
  355. unsigned long flags, orbs;
  356. struct sbp2_command_info *command;
  357. orbs = serialize_io ? 2 : SBP2_MAX_CMDS;
  358. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  359. for (i = 0; i < orbs; i++) {
  360. command = (struct sbp2_command_info *)
  361. kmalloc(sizeof(struct sbp2_command_info), GFP_ATOMIC);
  362. if (!command) {
  363. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  364. return(-ENOMEM);
  365. }
  366. memset(command, '\0', sizeof(struct sbp2_command_info));
  367. command->command_orb_dma =
  368. pci_map_single (hi->host->pdev, &command->command_orb,
  369. sizeof(struct sbp2_command_orb),
  370. PCI_DMA_BIDIRECTIONAL);
  371. SBP2_DMA_ALLOC("single command orb DMA");
  372. command->sge_dma =
  373. pci_map_single (hi->host->pdev, &command->scatter_gather_element,
  374. sizeof(command->scatter_gather_element),
  375. PCI_DMA_BIDIRECTIONAL);
  376. SBP2_DMA_ALLOC("scatter_gather_element");
  377. INIT_LIST_HEAD(&command->list);
  378. list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
  379. }
  380. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  381. return 0;
  382. }
  383. /*
  384. * This function is called to delete a pool of command orbs.
  385. */
  386. static void sbp2util_remove_command_orb_pool(struct scsi_id_instance_data *scsi_id)
  387. {
  388. struct hpsb_host *host = scsi_id->hi->host;
  389. struct list_head *lh, *next;
  390. struct sbp2_command_info *command;
  391. unsigned long flags;
  392. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  393. if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
  394. list_for_each_safe(lh, next, &scsi_id->sbp2_command_orb_completed) {
  395. command = list_entry(lh, struct sbp2_command_info, list);
  396. /* Release our generic DMA's */
  397. pci_unmap_single(host->pdev, command->command_orb_dma,
  398. sizeof(struct sbp2_command_orb),
  399. PCI_DMA_BIDIRECTIONAL);
  400. SBP2_DMA_FREE("single command orb DMA");
  401. pci_unmap_single(host->pdev, command->sge_dma,
  402. sizeof(command->scatter_gather_element),
  403. PCI_DMA_BIDIRECTIONAL);
  404. SBP2_DMA_FREE("scatter_gather_element");
  405. kfree(command);
  406. }
  407. }
  408. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  409. return;
  410. }
  411. /*
  412. * This function finds the sbp2_command for a given outstanding command
  413. * orb.Only looks at the inuse list.
  414. */
  415. static struct sbp2_command_info *sbp2util_find_command_for_orb(
  416. struct scsi_id_instance_data *scsi_id, dma_addr_t orb)
  417. {
  418. struct sbp2_command_info *command;
  419. unsigned long flags;
  420. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  421. if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  422. list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list) {
  423. if (command->command_orb_dma == orb) {
  424. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  425. return (command);
  426. }
  427. }
  428. }
  429. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  430. SBP2_ORB_DEBUG("could not match command orb %x", (unsigned int)orb);
  431. return(NULL);
  432. }
  433. /*
  434. * This function finds the sbp2_command for a given outstanding SCpnt.
  435. * Only looks at the inuse list.
  436. */
  437. static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(struct scsi_id_instance_data *scsi_id, void *SCpnt)
  438. {
  439. struct sbp2_command_info *command;
  440. unsigned long flags;
  441. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  442. if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  443. list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list) {
  444. if (command->Current_SCpnt == SCpnt) {
  445. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  446. return (command);
  447. }
  448. }
  449. }
  450. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  451. return(NULL);
  452. }
  453. /*
  454. * This function allocates a command orb used to send a scsi command.
  455. */
  456. static struct sbp2_command_info *sbp2util_allocate_command_orb(
  457. struct scsi_id_instance_data *scsi_id,
  458. struct scsi_cmnd *Current_SCpnt,
  459. void (*Current_done)(struct scsi_cmnd *))
  460. {
  461. struct list_head *lh;
  462. struct sbp2_command_info *command = NULL;
  463. unsigned long flags;
  464. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  465. if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
  466. lh = scsi_id->sbp2_command_orb_completed.next;
  467. list_del(lh);
  468. command = list_entry(lh, struct sbp2_command_info, list);
  469. command->Current_done = Current_done;
  470. command->Current_SCpnt = Current_SCpnt;
  471. list_add_tail(&command->list, &scsi_id->sbp2_command_orb_inuse);
  472. } else {
  473. SBP2_ERR("sbp2util_allocate_command_orb - No orbs available!");
  474. }
  475. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  476. return (command);
  477. }
  478. /* Free our DMA's */
  479. static void sbp2util_free_command_dma(struct sbp2_command_info *command)
  480. {
  481. struct scsi_id_instance_data *scsi_id =
  482. (struct scsi_id_instance_data *)command->Current_SCpnt->device->host->hostdata[0];
  483. struct hpsb_host *host;
  484. if (!scsi_id) {
  485. printk(KERN_ERR "%s: scsi_id == NULL\n", __FUNCTION__);
  486. return;
  487. }
  488. host = scsi_id->ud->ne->host;
  489. if (command->cmd_dma) {
  490. if (command->dma_type == CMD_DMA_SINGLE) {
  491. pci_unmap_single(host->pdev, command->cmd_dma,
  492. command->dma_size, command->dma_dir);
  493. SBP2_DMA_FREE("single bulk");
  494. } else if (command->dma_type == CMD_DMA_PAGE) {
  495. pci_unmap_page(host->pdev, command->cmd_dma,
  496. command->dma_size, command->dma_dir);
  497. SBP2_DMA_FREE("single page");
  498. } /* XXX: Check for CMD_DMA_NONE bug */
  499. command->dma_type = CMD_DMA_NONE;
  500. command->cmd_dma = 0;
  501. }
  502. if (command->sge_buffer) {
  503. pci_unmap_sg(host->pdev, command->sge_buffer,
  504. command->dma_size, command->dma_dir);
  505. SBP2_DMA_FREE("scatter list");
  506. command->sge_buffer = NULL;
  507. }
  508. }
  509. /*
  510. * This function moves a command to the completed orb list.
  511. */
  512. static void sbp2util_mark_command_completed(struct scsi_id_instance_data *scsi_id, struct sbp2_command_info *command)
  513. {
  514. unsigned long flags;
  515. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  516. list_del(&command->list);
  517. sbp2util_free_command_dma(command);
  518. list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
  519. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  520. }
  521. /*
  522. * Is scsi_id valid? Is the 1394 node still present?
  523. */
  524. static inline int sbp2util_node_is_available(struct scsi_id_instance_data *scsi_id)
  525. {
  526. return scsi_id && scsi_id->ne && !scsi_id->ne->in_limbo;
  527. }
  528. /*********************************************
  529. * IEEE-1394 core driver stack related section
  530. *********************************************/
  531. static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud);
  532. static int sbp2_probe(struct device *dev)
  533. {
  534. struct unit_directory *ud;
  535. struct scsi_id_instance_data *scsi_id;
  536. SBP2_DEBUG("sbp2_probe");
  537. ud = container_of(dev, struct unit_directory, device);
  538. /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
  539. * instead. */
  540. if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
  541. return -ENODEV;
  542. scsi_id = sbp2_alloc_device(ud);
  543. if (!scsi_id)
  544. return -ENOMEM;
  545. sbp2_parse_unit_directory(scsi_id, ud);
  546. return sbp2_start_device(scsi_id);
  547. }
  548. static int sbp2_remove(struct device *dev)
  549. {
  550. struct unit_directory *ud;
  551. struct scsi_id_instance_data *scsi_id;
  552. struct scsi_device *sdev;
  553. SBP2_DEBUG("sbp2_remove");
  554. ud = container_of(dev, struct unit_directory, device);
  555. scsi_id = ud->device.driver_data;
  556. if (!scsi_id)
  557. return 0;
  558. /* Trigger shutdown functions in scsi's highlevel. */
  559. if (scsi_id->scsi_host)
  560. scsi_unblock_requests(scsi_id->scsi_host);
  561. sdev = scsi_id->sdev;
  562. if (sdev) {
  563. scsi_id->sdev = NULL;
  564. scsi_remove_device(sdev);
  565. }
  566. sbp2_logout_device(scsi_id);
  567. sbp2_remove_device(scsi_id);
  568. return 0;
  569. }
  570. static int sbp2_update(struct unit_directory *ud)
  571. {
  572. struct scsi_id_instance_data *scsi_id = ud->device.driver_data;
  573. SBP2_DEBUG("sbp2_update");
  574. if (sbp2_reconnect_device(scsi_id)) {
  575. /*
  576. * Ok, reconnect has failed. Perhaps we didn't
  577. * reconnect fast enough. Try doing a regular login, but
  578. * first do a logout just in case of any weirdness.
  579. */
  580. sbp2_logout_device(scsi_id);
  581. if (sbp2_login_device(scsi_id)) {
  582. /* Login failed too, just fail, and the backend
  583. * will call our sbp2_remove for us */
  584. SBP2_ERR("Failed to reconnect to sbp2 device!");
  585. return -EBUSY;
  586. }
  587. }
  588. /* Set max retries to something large on the device. */
  589. sbp2_set_busy_timeout(scsi_id);
  590. /* Do a SBP-2 fetch agent reset. */
  591. sbp2_agent_reset(scsi_id, 1);
  592. /* Get the max speed and packet size that we can use. */
  593. sbp2_max_speed_and_size(scsi_id);
  594. /* Complete any pending commands with busy (so they get
  595. * retried) and remove them from our queue
  596. */
  597. sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
  598. /* Make sure we unblock requests (since this is likely after a bus
  599. * reset). */
  600. scsi_unblock_requests(scsi_id->scsi_host);
  601. return 0;
  602. }
  603. /* This functions is called by the sbp2_probe, for each new device. We now
  604. * allocate one scsi host for each scsi_id (unit directory). */
  605. static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud)
  606. {
  607. struct sbp2scsi_host_info *hi;
  608. struct Scsi_Host *scsi_host = NULL;
  609. struct scsi_id_instance_data *scsi_id = NULL;
  610. SBP2_DEBUG("sbp2_alloc_device");
  611. scsi_id = kmalloc(sizeof(*scsi_id), GFP_KERNEL);
  612. if (!scsi_id) {
  613. SBP2_ERR("failed to create scsi_id");
  614. goto failed_alloc;
  615. }
  616. memset(scsi_id, 0, sizeof(*scsi_id));
  617. scsi_id->ne = ud->ne;
  618. scsi_id->ud = ud;
  619. scsi_id->speed_code = IEEE1394_SPEED_100;
  620. scsi_id->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
  621. atomic_set(&scsi_id->sbp2_login_complete, 0);
  622. INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_inuse);
  623. INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_completed);
  624. INIT_LIST_HEAD(&scsi_id->scsi_list);
  625. spin_lock_init(&scsi_id->sbp2_command_orb_lock);
  626. scsi_id->sbp2_device_type_and_lun = SBP2_DEVICE_TYPE_LUN_UNINITIALIZED;
  627. ud->device.driver_data = scsi_id;
  628. hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
  629. if (!hi) {
  630. hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host, sizeof(*hi));
  631. if (!hi) {
  632. SBP2_ERR("failed to allocate hostinfo");
  633. goto failed_alloc;
  634. }
  635. SBP2_DEBUG("sbp2_alloc_device: allocated hostinfo");
  636. hi->host = ud->ne->host;
  637. INIT_LIST_HEAD(&hi->scsi_ids);
  638. /* Register our sbp2 status address space... */
  639. hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host, &sbp2_ops,
  640. SBP2_STATUS_FIFO_ADDRESS,
  641. SBP2_STATUS_FIFO_ADDRESS +
  642. SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(SBP2_MAX_UDS_PER_NODE+1));
  643. #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
  644. /* Handle data movement if physical dma is not
  645. * enabled/supportedon host controller */
  646. hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host, &sbp2_physdma_ops,
  647. 0x0ULL, 0xfffffffcULL);
  648. #endif
  649. }
  650. scsi_id->hi = hi;
  651. list_add_tail(&scsi_id->scsi_list, &hi->scsi_ids);
  652. /* Register our host with the SCSI stack. */
  653. scsi_host = scsi_host_alloc(&scsi_driver_template,
  654. sizeof (unsigned long));
  655. if (!scsi_host) {
  656. SBP2_ERR("failed to register scsi host");
  657. goto failed_alloc;
  658. }
  659. scsi_host->hostdata[0] = (unsigned long)scsi_id;
  660. if (!scsi_add_host(scsi_host, &ud->device)) {
  661. scsi_id->scsi_host = scsi_host;
  662. return scsi_id;
  663. }
  664. SBP2_ERR("failed to add scsi host");
  665. scsi_host_put(scsi_host);
  666. failed_alloc:
  667. sbp2_remove_device(scsi_id);
  668. return NULL;
  669. }
  670. static void sbp2_host_reset(struct hpsb_host *host)
  671. {
  672. struct sbp2scsi_host_info *hi;
  673. struct scsi_id_instance_data *scsi_id;
  674. hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
  675. if (hi) {
  676. list_for_each_entry(scsi_id, &hi->scsi_ids, scsi_list)
  677. scsi_block_requests(scsi_id->scsi_host);
  678. }
  679. }
  680. /*
  681. * This function is where we first pull the node unique ids, and then
  682. * allocate memory and register a SBP-2 device.
  683. */
  684. static int sbp2_start_device(struct scsi_id_instance_data *scsi_id)
  685. {
  686. struct sbp2scsi_host_info *hi = scsi_id->hi;
  687. int error;
  688. SBP2_DEBUG("sbp2_start_device");
  689. /* Login FIFO DMA */
  690. scsi_id->login_response =
  691. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_login_response),
  692. &scsi_id->login_response_dma);
  693. if (!scsi_id->login_response)
  694. goto alloc_fail;
  695. SBP2_DMA_ALLOC("consistent DMA region for login FIFO");
  696. /* Query logins ORB DMA */
  697. scsi_id->query_logins_orb =
  698. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_query_logins_orb),
  699. &scsi_id->query_logins_orb_dma);
  700. if (!scsi_id->query_logins_orb)
  701. goto alloc_fail;
  702. SBP2_DMA_ALLOC("consistent DMA region for query logins ORB");
  703. /* Query logins response DMA */
  704. scsi_id->query_logins_response =
  705. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_query_logins_response),
  706. &scsi_id->query_logins_response_dma);
  707. if (!scsi_id->query_logins_response)
  708. goto alloc_fail;
  709. SBP2_DMA_ALLOC("consistent DMA region for query logins response");
  710. /* Reconnect ORB DMA */
  711. scsi_id->reconnect_orb =
  712. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_reconnect_orb),
  713. &scsi_id->reconnect_orb_dma);
  714. if (!scsi_id->reconnect_orb)
  715. goto alloc_fail;
  716. SBP2_DMA_ALLOC("consistent DMA region for reconnect ORB");
  717. /* Logout ORB DMA */
  718. scsi_id->logout_orb =
  719. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_logout_orb),
  720. &scsi_id->logout_orb_dma);
  721. if (!scsi_id->logout_orb)
  722. goto alloc_fail;
  723. SBP2_DMA_ALLOC("consistent DMA region for logout ORB");
  724. /* Login ORB DMA */
  725. scsi_id->login_orb =
  726. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_login_orb),
  727. &scsi_id->login_orb_dma);
  728. if (!scsi_id->login_orb) {
  729. alloc_fail:
  730. if (scsi_id->query_logins_response) {
  731. pci_free_consistent(hi->host->pdev,
  732. sizeof(struct sbp2_query_logins_response),
  733. scsi_id->query_logins_response,
  734. scsi_id->query_logins_response_dma);
  735. SBP2_DMA_FREE("query logins response DMA");
  736. }
  737. if (scsi_id->query_logins_orb) {
  738. pci_free_consistent(hi->host->pdev,
  739. sizeof(struct sbp2_query_logins_orb),
  740. scsi_id->query_logins_orb,
  741. scsi_id->query_logins_orb_dma);
  742. SBP2_DMA_FREE("query logins ORB DMA");
  743. }
  744. if (scsi_id->logout_orb) {
  745. pci_free_consistent(hi->host->pdev,
  746. sizeof(struct sbp2_logout_orb),
  747. scsi_id->logout_orb,
  748. scsi_id->logout_orb_dma);
  749. SBP2_DMA_FREE("logout ORB DMA");
  750. }
  751. if (scsi_id->reconnect_orb) {
  752. pci_free_consistent(hi->host->pdev,
  753. sizeof(struct sbp2_reconnect_orb),
  754. scsi_id->reconnect_orb,
  755. scsi_id->reconnect_orb_dma);
  756. SBP2_DMA_FREE("reconnect ORB DMA");
  757. }
  758. if (scsi_id->login_response) {
  759. pci_free_consistent(hi->host->pdev,
  760. sizeof(struct sbp2_login_response),
  761. scsi_id->login_response,
  762. scsi_id->login_response_dma);
  763. SBP2_DMA_FREE("login FIFO DMA");
  764. }
  765. list_del(&scsi_id->scsi_list);
  766. kfree(scsi_id);
  767. SBP2_ERR ("Could not allocate memory for scsi_id");
  768. return -ENOMEM;
  769. }
  770. SBP2_DMA_ALLOC("consistent DMA region for login ORB");
  771. SBP2_DEBUG("New SBP-2 device inserted, SCSI ID = %x", scsi_id->ud->id);
  772. /*
  773. * Create our command orb pool
  774. */
  775. if (sbp2util_create_command_orb_pool(scsi_id)) {
  776. SBP2_ERR("sbp2util_create_command_orb_pool failed!");
  777. sbp2_remove_device(scsi_id);
  778. return -ENOMEM;
  779. }
  780. /* Schedule a timeout here. The reason is that we may be so close
  781. * to a bus reset, that the device is not available for logins.
  782. * This can happen when the bus reset is caused by the host
  783. * connected to the sbp2 device being removed. That host would
  784. * have a certain amount of time to relogin before the sbp2 device
  785. * allows someone else to login instead. One second makes sense. */
  786. msleep_interruptible(1000);
  787. if (signal_pending(current)) {
  788. SBP2_WARN("aborting sbp2_start_device due to event");
  789. sbp2_remove_device(scsi_id);
  790. return -EINTR;
  791. }
  792. /*
  793. * Login to the sbp-2 device
  794. */
  795. if (sbp2_login_device(scsi_id)) {
  796. /* Login failed, just remove the device. */
  797. sbp2_remove_device(scsi_id);
  798. return -EBUSY;
  799. }
  800. /*
  801. * Set max retries to something large on the device
  802. */
  803. sbp2_set_busy_timeout(scsi_id);
  804. /*
  805. * Do a SBP-2 fetch agent reset
  806. */
  807. sbp2_agent_reset(scsi_id, 1);
  808. /*
  809. * Get the max speed and packet size that we can use
  810. */
  811. sbp2_max_speed_and_size(scsi_id);
  812. /* Add this device to the scsi layer now */
  813. error = scsi_add_device(scsi_id->scsi_host, 0, scsi_id->ud->id, 0);
  814. if (error) {
  815. SBP2_ERR("scsi_add_device failed");
  816. return error;
  817. }
  818. return 0;
  819. }
  820. /*
  821. * This function removes an sbp2 device from the sbp2scsi_host_info struct.
  822. */
  823. static void sbp2_remove_device(struct scsi_id_instance_data *scsi_id)
  824. {
  825. struct sbp2scsi_host_info *hi;
  826. SBP2_DEBUG("sbp2_remove_device");
  827. if (!scsi_id)
  828. return;
  829. hi = scsi_id->hi;
  830. /* This will remove our scsi device aswell */
  831. if (scsi_id->scsi_host) {
  832. scsi_remove_host(scsi_id->scsi_host);
  833. scsi_host_put(scsi_id->scsi_host);
  834. }
  835. sbp2util_remove_command_orb_pool(scsi_id);
  836. list_del(&scsi_id->scsi_list);
  837. if (scsi_id->login_response) {
  838. pci_free_consistent(hi->host->pdev,
  839. sizeof(struct sbp2_login_response),
  840. scsi_id->login_response,
  841. scsi_id->login_response_dma);
  842. SBP2_DMA_FREE("single login FIFO");
  843. }
  844. if (scsi_id->login_orb) {
  845. pci_free_consistent(hi->host->pdev,
  846. sizeof(struct sbp2_login_orb),
  847. scsi_id->login_orb,
  848. scsi_id->login_orb_dma);
  849. SBP2_DMA_FREE("single login ORB");
  850. }
  851. if (scsi_id->reconnect_orb) {
  852. pci_free_consistent(hi->host->pdev,
  853. sizeof(struct sbp2_reconnect_orb),
  854. scsi_id->reconnect_orb,
  855. scsi_id->reconnect_orb_dma);
  856. SBP2_DMA_FREE("single reconnect orb");
  857. }
  858. if (scsi_id->logout_orb) {
  859. pci_free_consistent(hi->host->pdev,
  860. sizeof(struct sbp2_logout_orb),
  861. scsi_id->logout_orb,
  862. scsi_id->logout_orb_dma);
  863. SBP2_DMA_FREE("single logout orb");
  864. }
  865. if (scsi_id->query_logins_orb) {
  866. pci_free_consistent(hi->host->pdev,
  867. sizeof(struct sbp2_query_logins_orb),
  868. scsi_id->query_logins_orb,
  869. scsi_id->query_logins_orb_dma);
  870. SBP2_DMA_FREE("single query logins orb");
  871. }
  872. if (scsi_id->query_logins_response) {
  873. pci_free_consistent(hi->host->pdev,
  874. sizeof(struct sbp2_query_logins_response),
  875. scsi_id->query_logins_response,
  876. scsi_id->query_logins_response_dma);
  877. SBP2_DMA_FREE("single query logins data");
  878. }
  879. scsi_id->ud->device.driver_data = NULL;
  880. SBP2_DEBUG("SBP-2 device removed, SCSI ID = %d", scsi_id->ud->id);
  881. kfree(scsi_id);
  882. }
  883. #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
  884. /*
  885. * This function deals with physical dma write requests (for adapters that do not support
  886. * physical dma in hardware). Mostly just here for debugging...
  887. */
  888. static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid, int destid, quadlet_t *data,
  889. u64 addr, size_t length, u16 flags)
  890. {
  891. /*
  892. * Manually put the data in the right place.
  893. */
  894. memcpy(bus_to_virt((u32)addr), data, length);
  895. sbp2util_packet_dump(data, length, "sbp2 phys dma write by device", (u32)addr);
  896. return(RCODE_COMPLETE);
  897. }
  898. /*
  899. * This function deals with physical dma read requests (for adapters that do not support
  900. * physical dma in hardware). Mostly just here for debugging...
  901. */
  902. static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid, quadlet_t *data,
  903. u64 addr, size_t length, u16 flags)
  904. {
  905. /*
  906. * Grab data from memory and send a read response.
  907. */
  908. memcpy(data, bus_to_virt((u32)addr), length);
  909. sbp2util_packet_dump(data, length, "sbp2 phys dma read by device", (u32)addr);
  910. return(RCODE_COMPLETE);
  911. }
  912. #endif
  913. /**************************************
  914. * SBP-2 protocol related section
  915. **************************************/
  916. /*
  917. * This function determines if we should convert scsi commands for a particular sbp2 device type
  918. */
  919. static __inline__ int sbp2_command_conversion_device_type(u8 device_type)
  920. {
  921. return (((device_type == TYPE_DISK) ||
  922. (device_type == TYPE_RBC) ||
  923. (device_type == TYPE_ROM)) ? 1:0);
  924. }
  925. /*
  926. * This function queries the device for the maximum concurrent logins it
  927. * supports.
  928. */
  929. static int sbp2_query_logins(struct scsi_id_instance_data *scsi_id)
  930. {
  931. struct sbp2scsi_host_info *hi = scsi_id->hi;
  932. quadlet_t data[2];
  933. int max_logins;
  934. int active_logins;
  935. SBP2_DEBUG("sbp2_query_logins");
  936. scsi_id->query_logins_orb->reserved1 = 0x0;
  937. scsi_id->query_logins_orb->reserved2 = 0x0;
  938. scsi_id->query_logins_orb->query_response_lo = scsi_id->query_logins_response_dma;
  939. scsi_id->query_logins_orb->query_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
  940. SBP2_DEBUG("sbp2_query_logins: query_response_hi/lo initialized");
  941. scsi_id->query_logins_orb->lun_misc = ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
  942. scsi_id->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
  943. if (scsi_id->sbp2_device_type_and_lun != SBP2_DEVICE_TYPE_LUN_UNINITIALIZED) {
  944. scsi_id->query_logins_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_device_type_and_lun);
  945. SBP2_DEBUG("sbp2_query_logins: set lun to %d",
  946. ORB_SET_LUN(scsi_id->sbp2_device_type_and_lun));
  947. }
  948. SBP2_DEBUG("sbp2_query_logins: lun_misc initialized");
  949. scsi_id->query_logins_orb->reserved_resp_length =
  950. ORB_SET_QUERY_LOGINS_RESP_LENGTH(sizeof(struct sbp2_query_logins_response));
  951. SBP2_DEBUG("sbp2_query_logins: reserved_resp_length initialized");
  952. scsi_id->query_logins_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO +
  953. SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(scsi_id->ud->id);
  954. scsi_id->query_logins_orb->status_FIFO_hi = (ORB_SET_NODE_ID(hi->host->node_id) |
  955. SBP2_STATUS_FIFO_ADDRESS_HI);
  956. SBP2_DEBUG("sbp2_query_logins: status FIFO initialized");
  957. sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb));
  958. SBP2_DEBUG("sbp2_query_logins: orb byte-swapped");
  959. sbp2util_packet_dump(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb),
  960. "sbp2 query logins orb", scsi_id->query_logins_orb_dma);
  961. memset(scsi_id->query_logins_response, 0, sizeof(struct sbp2_query_logins_response));
  962. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  963. SBP2_DEBUG("sbp2_query_logins: query_logins_response/status FIFO memset");
  964. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  965. data[1] = scsi_id->query_logins_orb_dma;
  966. sbp2util_cpu_to_be32_buffer(data, 8);
  967. atomic_set(&scsi_id->sbp2_login_complete, 0);
  968. SBP2_DEBUG("sbp2_query_logins: prepared to write");
  969. hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
  970. SBP2_DEBUG("sbp2_query_logins: written");
  971. if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, 2*HZ)) {
  972. SBP2_INFO("Error querying logins to SBP-2 device - timed out");
  973. return(-EIO);
  974. }
  975. if (scsi_id->status_block.ORB_offset_lo != scsi_id->query_logins_orb_dma) {
  976. SBP2_INFO("Error querying logins to SBP-2 device - timed out");
  977. return(-EIO);
  978. }
  979. if (STATUS_GET_RESP(scsi_id->status_block.ORB_offset_hi_misc) ||
  980. STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc) ||
  981. STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
  982. SBP2_INFO("Error querying logins to SBP-2 device - timed out");
  983. return(-EIO);
  984. }
  985. sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_response, sizeof(struct sbp2_query_logins_response));
  986. SBP2_DEBUG("length_max_logins = %x",
  987. (unsigned int)scsi_id->query_logins_response->length_max_logins);
  988. SBP2_DEBUG("Query logins to SBP-2 device successful");
  989. max_logins = RESPONSE_GET_MAX_LOGINS(scsi_id->query_logins_response->length_max_logins);
  990. SBP2_DEBUG("Maximum concurrent logins supported: %d", max_logins);
  991. active_logins = RESPONSE_GET_ACTIVE_LOGINS(scsi_id->query_logins_response->length_max_logins);
  992. SBP2_DEBUG("Number of active logins: %d", active_logins);
  993. if (active_logins >= max_logins) {
  994. return(-EIO);
  995. }
  996. return 0;
  997. }
  998. /*
  999. * This function is called in order to login to a particular SBP-2 device,
  1000. * after a bus reset.
  1001. */
  1002. static int sbp2_login_device(struct scsi_id_instance_data *scsi_id)
  1003. {
  1004. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1005. quadlet_t data[2];
  1006. SBP2_DEBUG("sbp2_login_device");
  1007. if (!scsi_id->login_orb) {
  1008. SBP2_DEBUG("sbp2_login_device: login_orb not alloc'd!");
  1009. return(-EIO);
  1010. }
  1011. if (!exclusive_login) {
  1012. if (sbp2_query_logins(scsi_id)) {
  1013. SBP2_INFO("Device does not support any more concurrent logins");
  1014. return(-EIO);
  1015. }
  1016. }
  1017. /* Set-up login ORB, assume no password */
  1018. scsi_id->login_orb->password_hi = 0;
  1019. scsi_id->login_orb->password_lo = 0;
  1020. SBP2_DEBUG("sbp2_login_device: password_hi/lo initialized");
  1021. scsi_id->login_orb->login_response_lo = scsi_id->login_response_dma;
  1022. scsi_id->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1023. SBP2_DEBUG("sbp2_login_device: login_response_hi/lo initialized");
  1024. scsi_id->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
  1025. scsi_id->login_orb->lun_misc |= ORB_SET_RECONNECT(0); /* One second reconnect time */
  1026. scsi_id->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(exclusive_login); /* Exclusive access to device */
  1027. scsi_id->login_orb->lun_misc |= ORB_SET_NOTIFY(1); /* Notify us of login complete */
  1028. /* Set the lun if we were able to pull it from the device's unit directory */
  1029. if (scsi_id->sbp2_device_type_and_lun != SBP2_DEVICE_TYPE_LUN_UNINITIALIZED) {
  1030. scsi_id->login_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_device_type_and_lun);
  1031. SBP2_DEBUG("sbp2_query_logins: set lun to %d",
  1032. ORB_SET_LUN(scsi_id->sbp2_device_type_and_lun));
  1033. }
  1034. SBP2_DEBUG("sbp2_login_device: lun_misc initialized");
  1035. scsi_id->login_orb->passwd_resp_lengths =
  1036. ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
  1037. SBP2_DEBUG("sbp2_login_device: passwd_resp_lengths initialized");
  1038. scsi_id->login_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO +
  1039. SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(scsi_id->ud->id);
  1040. scsi_id->login_orb->status_FIFO_hi = (ORB_SET_NODE_ID(hi->host->node_id) |
  1041. SBP2_STATUS_FIFO_ADDRESS_HI);
  1042. SBP2_DEBUG("sbp2_login_device: status FIFO initialized");
  1043. /*
  1044. * Byte swap ORB if necessary
  1045. */
  1046. sbp2util_cpu_to_be32_buffer(scsi_id->login_orb, sizeof(struct sbp2_login_orb));
  1047. SBP2_DEBUG("sbp2_login_device: orb byte-swapped");
  1048. sbp2util_packet_dump(scsi_id->login_orb, sizeof(struct sbp2_login_orb),
  1049. "sbp2 login orb", scsi_id->login_orb_dma);
  1050. /*
  1051. * Initialize login response and status fifo
  1052. */
  1053. memset(scsi_id->login_response, 0, sizeof(struct sbp2_login_response));
  1054. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  1055. SBP2_DEBUG("sbp2_login_device: login_response/status FIFO memset");
  1056. /*
  1057. * Ok, let's write to the target's management agent register
  1058. */
  1059. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1060. data[1] = scsi_id->login_orb_dma;
  1061. sbp2util_cpu_to_be32_buffer(data, 8);
  1062. atomic_set(&scsi_id->sbp2_login_complete, 0);
  1063. SBP2_DEBUG("sbp2_login_device: prepared to write to %08x",
  1064. (unsigned int)scsi_id->sbp2_management_agent_addr);
  1065. hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
  1066. SBP2_DEBUG("sbp2_login_device: written");
  1067. /*
  1068. * Wait for login status (up to 20 seconds)...
  1069. */
  1070. if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, 20*HZ)) {
  1071. SBP2_ERR("Error logging into SBP-2 device - login timed-out");
  1072. return(-EIO);
  1073. }
  1074. /*
  1075. * Sanity. Make sure status returned matches login orb.
  1076. */
  1077. if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma) {
  1078. SBP2_ERR("Error logging into SBP-2 device - login timed-out");
  1079. return(-EIO);
  1080. }
  1081. /*
  1082. * Check status
  1083. */
  1084. if (STATUS_GET_RESP(scsi_id->status_block.ORB_offset_hi_misc) ||
  1085. STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc) ||
  1086. STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
  1087. SBP2_ERR("Error logging into SBP-2 device - login failed");
  1088. return(-EIO);
  1089. }
  1090. /*
  1091. * Byte swap the login response, for use when reconnecting or
  1092. * logging out.
  1093. */
  1094. sbp2util_cpu_to_be32_buffer(scsi_id->login_response, sizeof(struct sbp2_login_response));
  1095. /*
  1096. * Grab our command block agent address from the login response.
  1097. */
  1098. SBP2_DEBUG("command_block_agent_hi = %x",
  1099. (unsigned int)scsi_id->login_response->command_block_agent_hi);
  1100. SBP2_DEBUG("command_block_agent_lo = %x",
  1101. (unsigned int)scsi_id->login_response->command_block_agent_lo);
  1102. scsi_id->sbp2_command_block_agent_addr =
  1103. ((u64)scsi_id->login_response->command_block_agent_hi) << 32;
  1104. scsi_id->sbp2_command_block_agent_addr |= ((u64)scsi_id->login_response->command_block_agent_lo);
  1105. scsi_id->sbp2_command_block_agent_addr &= 0x0000ffffffffffffULL;
  1106. SBP2_INFO("Logged into SBP-2 device");
  1107. return(0);
  1108. }
  1109. /*
  1110. * This function is called in order to logout from a particular SBP-2
  1111. * device, usually called during driver unload.
  1112. */
  1113. static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id)
  1114. {
  1115. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1116. quadlet_t data[2];
  1117. int error;
  1118. SBP2_DEBUG("sbp2_logout_device");
  1119. /*
  1120. * Set-up logout ORB
  1121. */
  1122. scsi_id->logout_orb->reserved1 = 0x0;
  1123. scsi_id->logout_orb->reserved2 = 0x0;
  1124. scsi_id->logout_orb->reserved3 = 0x0;
  1125. scsi_id->logout_orb->reserved4 = 0x0;
  1126. scsi_id->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
  1127. scsi_id->logout_orb->login_ID_misc |= ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
  1128. /* Notify us when complete */
  1129. scsi_id->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
  1130. scsi_id->logout_orb->reserved5 = 0x0;
  1131. scsi_id->logout_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO +
  1132. SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(scsi_id->ud->id);
  1133. scsi_id->logout_orb->status_FIFO_hi = (ORB_SET_NODE_ID(hi->host->node_id) |
  1134. SBP2_STATUS_FIFO_ADDRESS_HI);
  1135. /*
  1136. * Byte swap ORB if necessary
  1137. */
  1138. sbp2util_cpu_to_be32_buffer(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb));
  1139. sbp2util_packet_dump(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb),
  1140. "sbp2 logout orb", scsi_id->logout_orb_dma);
  1141. /*
  1142. * Ok, let's write to the target's management agent register
  1143. */
  1144. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1145. data[1] = scsi_id->logout_orb_dma;
  1146. sbp2util_cpu_to_be32_buffer(data, 8);
  1147. atomic_set(&scsi_id->sbp2_login_complete, 0);
  1148. error = hpsb_node_write(scsi_id->ne,
  1149. scsi_id->sbp2_management_agent_addr,
  1150. data, 8);
  1151. if (error)
  1152. return error;
  1153. /* Wait for device to logout...1 second. */
  1154. if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, HZ))
  1155. return -EIO;
  1156. SBP2_INFO("Logged out of SBP-2 device");
  1157. return(0);
  1158. }
  1159. /*
  1160. * This function is called in order to reconnect to a particular SBP-2
  1161. * device, after a bus reset.
  1162. */
  1163. static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id)
  1164. {
  1165. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1166. quadlet_t data[2];
  1167. int error;
  1168. SBP2_DEBUG("sbp2_reconnect_device");
  1169. /*
  1170. * Set-up reconnect ORB
  1171. */
  1172. scsi_id->reconnect_orb->reserved1 = 0x0;
  1173. scsi_id->reconnect_orb->reserved2 = 0x0;
  1174. scsi_id->reconnect_orb->reserved3 = 0x0;
  1175. scsi_id->reconnect_orb->reserved4 = 0x0;
  1176. scsi_id->reconnect_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
  1177. scsi_id->reconnect_orb->login_ID_misc |=
  1178. ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
  1179. /* Notify us when complete */
  1180. scsi_id->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
  1181. scsi_id->reconnect_orb->reserved5 = 0x0;
  1182. scsi_id->reconnect_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO +
  1183. SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(scsi_id->ud->id);
  1184. scsi_id->reconnect_orb->status_FIFO_hi =
  1185. (ORB_SET_NODE_ID(hi->host->node_id) | SBP2_STATUS_FIFO_ADDRESS_HI);
  1186. /*
  1187. * Byte swap ORB if necessary
  1188. */
  1189. sbp2util_cpu_to_be32_buffer(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb));
  1190. sbp2util_packet_dump(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb),
  1191. "sbp2 reconnect orb", scsi_id->reconnect_orb_dma);
  1192. /*
  1193. * Initialize status fifo
  1194. */
  1195. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  1196. /*
  1197. * Ok, let's write to the target's management agent register
  1198. */
  1199. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1200. data[1] = scsi_id->reconnect_orb_dma;
  1201. sbp2util_cpu_to_be32_buffer(data, 8);
  1202. atomic_set(&scsi_id->sbp2_login_complete, 0);
  1203. error = hpsb_node_write(scsi_id->ne,
  1204. scsi_id->sbp2_management_agent_addr,
  1205. data, 8);
  1206. if (error)
  1207. return error;
  1208. /*
  1209. * Wait for reconnect status (up to 1 second)...
  1210. */
  1211. if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, HZ)) {
  1212. SBP2_ERR("Error reconnecting to SBP-2 device - reconnect timed-out");
  1213. return(-EIO);
  1214. }
  1215. /*
  1216. * Sanity. Make sure status returned matches reconnect orb.
  1217. */
  1218. if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma) {
  1219. SBP2_ERR("Error reconnecting to SBP-2 device - reconnect timed-out");
  1220. return(-EIO);
  1221. }
  1222. /*
  1223. * Check status
  1224. */
  1225. if (STATUS_GET_RESP(scsi_id->status_block.ORB_offset_hi_misc) ||
  1226. STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc) ||
  1227. STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
  1228. SBP2_ERR("Error reconnecting to SBP-2 device - reconnect failed");
  1229. return(-EIO);
  1230. }
  1231. HPSB_DEBUG("Reconnected to SBP-2 device");
  1232. return(0);
  1233. }
  1234. /*
  1235. * This function is called in order to set the busy timeout (number of
  1236. * retries to attempt) on the sbp2 device.
  1237. */
  1238. static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id)
  1239. {
  1240. quadlet_t data;
  1241. SBP2_DEBUG("sbp2_set_busy_timeout");
  1242. /*
  1243. * Ok, let's write to the target's busy timeout register
  1244. */
  1245. data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
  1246. if (hpsb_node_write(scsi_id->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4)) {
  1247. SBP2_ERR("sbp2_set_busy_timeout error");
  1248. }
  1249. return(0);
  1250. }
  1251. /*
  1252. * This function is called to parse sbp2 device's config rom unit
  1253. * directory. Used to determine things like sbp2 management agent offset,
  1254. * and command set used (SCSI or RBC).
  1255. */
  1256. static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
  1257. struct unit_directory *ud)
  1258. {
  1259. struct csr1212_keyval *kv;
  1260. struct csr1212_dentry *dentry;
  1261. u64 management_agent_addr;
  1262. u32 command_set_spec_id, command_set, unit_characteristics,
  1263. firmware_revision, workarounds;
  1264. int i;
  1265. SBP2_DEBUG("sbp2_parse_unit_directory");
  1266. management_agent_addr = 0x0;
  1267. command_set_spec_id = 0x0;
  1268. command_set = 0x0;
  1269. unit_characteristics = 0x0;
  1270. firmware_revision = 0x0;
  1271. /* Handle different fields in the unit directory, based on keys */
  1272. csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
  1273. switch (kv->key.id) {
  1274. case CSR1212_KV_ID_DEPENDENT_INFO:
  1275. if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET) {
  1276. /* Save off the management agent address */
  1277. management_agent_addr =
  1278. CSR1212_REGISTER_SPACE_BASE +
  1279. (kv->value.csr_offset << 2);
  1280. SBP2_DEBUG("sbp2_management_agent_addr = %x",
  1281. (unsigned int) management_agent_addr);
  1282. } else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
  1283. scsi_id->sbp2_device_type_and_lun = kv->value.immediate;
  1284. }
  1285. break;
  1286. case SBP2_COMMAND_SET_SPEC_ID_KEY:
  1287. /* Command spec organization */
  1288. command_set_spec_id = kv->value.immediate;
  1289. SBP2_DEBUG("sbp2_command_set_spec_id = %x",
  1290. (unsigned int) command_set_spec_id);
  1291. break;
  1292. case SBP2_COMMAND_SET_KEY:
  1293. /* Command set used by sbp2 device */
  1294. command_set = kv->value.immediate;
  1295. SBP2_DEBUG("sbp2_command_set = %x",
  1296. (unsigned int) command_set);
  1297. break;
  1298. case SBP2_UNIT_CHARACTERISTICS_KEY:
  1299. /*
  1300. * Unit characterisitcs (orb related stuff
  1301. * that I'm not yet paying attention to)
  1302. */
  1303. unit_characteristics = kv->value.immediate;
  1304. SBP2_DEBUG("sbp2_unit_characteristics = %x",
  1305. (unsigned int) unit_characteristics);
  1306. break;
  1307. case SBP2_FIRMWARE_REVISION_KEY:
  1308. /* Firmware revision */
  1309. firmware_revision = kv->value.immediate;
  1310. if (force_inquiry_hack)
  1311. SBP2_INFO("sbp2_firmware_revision = %x",
  1312. (unsigned int) firmware_revision);
  1313. else SBP2_DEBUG("sbp2_firmware_revision = %x",
  1314. (unsigned int) firmware_revision);
  1315. break;
  1316. default:
  1317. break;
  1318. }
  1319. }
  1320. /* This is the start of our broken device checking. We try to hack
  1321. * around oddities and known defects. */
  1322. workarounds = 0x0;
  1323. /* If the vendor id is 0xa0b8 (Symbios vendor id), then we have a
  1324. * bridge with 128KB max transfer size limitation. For sanity, we
  1325. * only voice this when the current max_sectors setting
  1326. * exceeds the 128k limit. By default, that is not the case.
  1327. *
  1328. * It would be really nice if we could detect this before the scsi
  1329. * host gets initialized. That way we can down-force the
  1330. * max_sectors to account for it. That is not currently
  1331. * possible. */
  1332. if ((firmware_revision & 0xffff00) ==
  1333. SBP2_128KB_BROKEN_FIRMWARE &&
  1334. (max_sectors * 512) > (128*1024)) {
  1335. SBP2_WARN("Node " NODE_BUS_FMT ": Bridge only supports 128KB max transfer size.",
  1336. NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid));
  1337. SBP2_WARN("WARNING: Current max_sectors setting is larger than 128KB (%d sectors)!",
  1338. max_sectors);
  1339. workarounds |= SBP2_BREAKAGE_128K_MAX_TRANSFER;
  1340. }
  1341. /* Check for a blacklisted set of devices that require us to force
  1342. * a 36 byte host inquiry. This can be overriden as a module param
  1343. * (to force all hosts). */
  1344. for (i = 0; i < NUM_BROKEN_INQUIRY_DEVS; i++) {
  1345. if ((firmware_revision & 0xffff00) ==
  1346. sbp2_broken_inquiry_list[i]) {
  1347. SBP2_WARN("Node " NODE_BUS_FMT ": Using 36byte inquiry workaround",
  1348. NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid));
  1349. workarounds |= SBP2_BREAKAGE_INQUIRY_HACK;
  1350. break; /* No need to continue. */
  1351. }
  1352. }
  1353. /* If this is a logical unit directory entry, process the parent
  1354. * to get the values. */
  1355. if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
  1356. struct unit_directory *parent_ud =
  1357. container_of(ud->device.parent, struct unit_directory, device);
  1358. sbp2_parse_unit_directory(scsi_id, parent_ud);
  1359. } else {
  1360. scsi_id->sbp2_management_agent_addr = management_agent_addr;
  1361. scsi_id->sbp2_command_set_spec_id = command_set_spec_id;
  1362. scsi_id->sbp2_command_set = command_set;
  1363. scsi_id->sbp2_unit_characteristics = unit_characteristics;
  1364. scsi_id->sbp2_firmware_revision = firmware_revision;
  1365. scsi_id->workarounds = workarounds;
  1366. if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
  1367. scsi_id->sbp2_device_type_and_lun = ud->lun;
  1368. }
  1369. }
  1370. /*
  1371. * This function is called in order to determine the max speed and packet
  1372. * size we can use in our ORBs. Note, that we (the driver and host) only
  1373. * initiate the transaction. The SBP-2 device actually transfers the data
  1374. * (by reading from the DMA area we tell it). This means that the SBP-2
  1375. * device decides the actual maximum data it can transfer. We just tell it
  1376. * the speed that it needs to use, and the max_rec the host supports, and
  1377. * it takes care of the rest.
  1378. */
  1379. static int sbp2_max_speed_and_size(struct scsi_id_instance_data *scsi_id)
  1380. {
  1381. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1382. SBP2_DEBUG("sbp2_max_speed_and_size");
  1383. /* Initial setting comes from the hosts speed map */
  1384. scsi_id->speed_code = hi->host->speed_map[NODEID_TO_NODE(hi->host->node_id) * 64
  1385. + NODEID_TO_NODE(scsi_id->ne->nodeid)];
  1386. /* Bump down our speed if the user requested it */
  1387. if (scsi_id->speed_code > max_speed) {
  1388. scsi_id->speed_code = max_speed;
  1389. SBP2_ERR("Forcing SBP-2 max speed down to %s",
  1390. hpsb_speedto_str[scsi_id->speed_code]);
  1391. }
  1392. /* Payload size is the lesser of what our speed supports and what
  1393. * our host supports. */
  1394. scsi_id->max_payload_size = min(sbp2_speedto_max_payload[scsi_id->speed_code],
  1395. (u8)(hi->host->csr.max_rec - 1));
  1396. HPSB_DEBUG("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
  1397. NODE_BUS_ARGS(hi->host, scsi_id->ne->nodeid),
  1398. hpsb_speedto_str[scsi_id->speed_code],
  1399. 1 << ((u32)scsi_id->max_payload_size + 2));
  1400. return(0);
  1401. }
  1402. /*
  1403. * This function is called in order to perform a SBP-2 agent reset.
  1404. */
  1405. static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait)
  1406. {
  1407. quadlet_t data;
  1408. u64 addr;
  1409. int retval;
  1410. SBP2_DEBUG("sbp2_agent_reset");
  1411. /*
  1412. * Ok, let's write to the target's management agent register
  1413. */
  1414. data = ntohl(SBP2_AGENT_RESET_DATA);
  1415. addr = scsi_id->sbp2_command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
  1416. if (wait)
  1417. retval = hpsb_node_write(scsi_id->ne, addr, &data, 4);
  1418. else
  1419. retval = sbp2util_node_write_no_wait(scsi_id->ne, addr, &data, 4);
  1420. if (retval < 0) {
  1421. SBP2_ERR("hpsb_node_write failed.\n");
  1422. return -EIO;
  1423. }
  1424. /*
  1425. * Need to make sure orb pointer is written on next command
  1426. */
  1427. scsi_id->last_orb = NULL;
  1428. return(0);
  1429. }
  1430. /*
  1431. * This function is called to create the actual command orb and s/g list
  1432. * out of the scsi command itself.
  1433. */
  1434. static int sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id,
  1435. struct sbp2_command_info *command,
  1436. unchar *scsi_cmd,
  1437. unsigned int scsi_use_sg,
  1438. unsigned int scsi_request_bufflen,
  1439. void *scsi_request_buffer,
  1440. enum dma_data_direction dma_dir)
  1441. {
  1442. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1443. struct scatterlist *sgpnt = (struct scatterlist *) scsi_request_buffer;
  1444. struct sbp2_command_orb *command_orb = &command->command_orb;
  1445. struct sbp2_unrestricted_page_table *scatter_gather_element =
  1446. &command->scatter_gather_element[0];
  1447. u32 sg_count, sg_len, orb_direction;
  1448. dma_addr_t sg_addr;
  1449. int i;
  1450. /*
  1451. * Set-up our command ORB..
  1452. *
  1453. * NOTE: We're doing unrestricted page tables (s/g), as this is
  1454. * best performance (at least with the devices I have). This means
  1455. * that data_size becomes the number of s/g elements, and
  1456. * page_size should be zero (for unrestricted).
  1457. */
  1458. command_orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
  1459. command_orb->next_ORB_lo = 0x0;
  1460. command_orb->misc = ORB_SET_MAX_PAYLOAD(scsi_id->max_payload_size);
  1461. command_orb->misc |= ORB_SET_SPEED(scsi_id->speed_code);
  1462. command_orb->misc |= ORB_SET_NOTIFY(1); /* Notify us when complete */
  1463. /*
  1464. * Get the direction of the transfer. If the direction is unknown, then use our
  1465. * goofy table as a back-up.
  1466. */
  1467. switch (dma_dir) {
  1468. case DMA_NONE:
  1469. orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
  1470. break;
  1471. case DMA_TO_DEVICE:
  1472. orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
  1473. break;
  1474. case DMA_FROM_DEVICE:
  1475. orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
  1476. break;
  1477. case DMA_BIDIRECTIONAL:
  1478. default:
  1479. SBP2_ERR("SCSI data transfer direction not specified. "
  1480. "Update the SBP2 direction table in sbp2.h if "
  1481. "necessary for your application");
  1482. __scsi_print_command(scsi_cmd);
  1483. orb_direction = sbp2scsi_direction_table[*scsi_cmd];
  1484. break;
  1485. }
  1486. /*
  1487. * Set-up our pagetable stuff... unfortunately, this has become
  1488. * messier than I'd like. Need to clean this up a bit. ;-)
  1489. */
  1490. if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
  1491. SBP2_DEBUG("No data transfer");
  1492. /*
  1493. * Handle no data transfer
  1494. */
  1495. command_orb->data_descriptor_hi = 0x0;
  1496. command_orb->data_descriptor_lo = 0x0;
  1497. command_orb->misc |= ORB_SET_DIRECTION(1);
  1498. } else if (scsi_use_sg) {
  1499. SBP2_DEBUG("Use scatter/gather");
  1500. /*
  1501. * Special case if only one element (and less than 64KB in size)
  1502. */
  1503. if ((scsi_use_sg == 1) && (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
  1504. SBP2_DEBUG("Only one s/g element");
  1505. command->dma_dir = dma_dir;
  1506. command->dma_size = sgpnt[0].length;
  1507. command->dma_type = CMD_DMA_PAGE;
  1508. command->cmd_dma = pci_map_page(hi->host->pdev,
  1509. sgpnt[0].page,
  1510. sgpnt[0].offset,
  1511. command->dma_size,
  1512. command->dma_dir);
  1513. SBP2_DMA_ALLOC("single page scatter element");
  1514. command_orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1515. command_orb->data_descriptor_lo = command->cmd_dma;
  1516. command_orb->misc |= ORB_SET_DATA_SIZE(command->dma_size);
  1517. command_orb->misc |= ORB_SET_DIRECTION(orb_direction);
  1518. } else {
  1519. int count = pci_map_sg(hi->host->pdev, sgpnt, scsi_use_sg, dma_dir);
  1520. SBP2_DMA_ALLOC("scatter list");
  1521. command->dma_size = scsi_use_sg;
  1522. command->dma_dir = dma_dir;
  1523. command->sge_buffer = sgpnt;
  1524. /* use page tables (s/g) */
  1525. command_orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
  1526. command_orb->misc |= ORB_SET_DIRECTION(orb_direction);
  1527. command_orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1528. command_orb->data_descriptor_lo = command->sge_dma;
  1529. /*
  1530. * Loop through and fill out our sbp-2 page tables
  1531. * (and split up anything too large)
  1532. */
  1533. for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
  1534. sg_len = sg_dma_len(sgpnt);
  1535. sg_addr = sg_dma_address(sgpnt);
  1536. while (sg_len) {
  1537. scatter_gather_element[sg_count].segment_base_lo = sg_addr;
  1538. if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
  1539. scatter_gather_element[sg_count].length_segment_base_hi =
  1540. PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
  1541. sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
  1542. sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
  1543. } else {
  1544. scatter_gather_element[sg_count].length_segment_base_hi =
  1545. PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
  1546. sg_len = 0;
  1547. }
  1548. sg_count++;
  1549. }
  1550. }
  1551. /* Number of page table (s/g) elements */
  1552. command_orb->misc |= ORB_SET_DATA_SIZE(sg_count);
  1553. sbp2util_packet_dump(scatter_gather_element,
  1554. (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
  1555. "sbp2 s/g list", command->sge_dma);
  1556. /*
  1557. * Byte swap page tables if necessary
  1558. */
  1559. sbp2util_cpu_to_be32_buffer(scatter_gather_element,
  1560. (sizeof(struct sbp2_unrestricted_page_table)) *
  1561. sg_count);
  1562. }
  1563. } else {
  1564. SBP2_DEBUG("No scatter/gather");
  1565. command->dma_dir = dma_dir;
  1566. command->dma_size = scsi_request_bufflen;
  1567. command->dma_type = CMD_DMA_SINGLE;
  1568. command->cmd_dma = pci_map_single (hi->host->pdev, scsi_request_buffer,
  1569. command->dma_size,
  1570. command->dma_dir);
  1571. SBP2_DMA_ALLOC("single bulk");
  1572. /*
  1573. * Handle case where we get a command w/o s/g enabled (but
  1574. * check for transfers larger than 64K)
  1575. */
  1576. if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
  1577. command_orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1578. command_orb->data_descriptor_lo = command->cmd_dma;
  1579. command_orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
  1580. command_orb->misc |= ORB_SET_DIRECTION(orb_direction);
  1581. /*
  1582. * Sanity, in case our direction table is not
  1583. * up-to-date
  1584. */
  1585. if (!scsi_request_bufflen) {
  1586. command_orb->data_descriptor_hi = 0x0;
  1587. command_orb->data_descriptor_lo = 0x0;
  1588. command_orb->misc |= ORB_SET_DIRECTION(1);
  1589. }
  1590. } else {
  1591. /*
  1592. * Need to turn this into page tables, since the
  1593. * buffer is too large.
  1594. */
  1595. command_orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1596. command_orb->data_descriptor_lo = command->sge_dma;
  1597. /* Use page tables (s/g) */
  1598. command_orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
  1599. command_orb->misc |= ORB_SET_DIRECTION(orb_direction);
  1600. /*
  1601. * fill out our sbp-2 page tables (and split up
  1602. * the large buffer)
  1603. */
  1604. sg_count = 0;
  1605. sg_len = scsi_request_bufflen;
  1606. sg_addr = command->cmd_dma;
  1607. while (sg_len) {
  1608. scatter_gather_element[sg_count].segment_base_lo = sg_addr;
  1609. if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
  1610. scatter_gather_element[sg_count].length_segment_base_hi =
  1611. PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
  1612. sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
  1613. sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
  1614. } else {
  1615. scatter_gather_element[sg_count].length_segment_base_hi =
  1616. PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
  1617. sg_len = 0;
  1618. }
  1619. sg_count++;
  1620. }
  1621. /* Number of page table (s/g) elements */
  1622. command_orb->misc |= ORB_SET_DATA_SIZE(sg_count);
  1623. sbp2util_packet_dump(scatter_gather_element,
  1624. (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
  1625. "sbp2 s/g list", command->sge_dma);
  1626. /*
  1627. * Byte swap page tables if necessary
  1628. */
  1629. sbp2util_cpu_to_be32_buffer(scatter_gather_element,
  1630. (sizeof(struct sbp2_unrestricted_page_table)) *
  1631. sg_count);
  1632. }
  1633. }
  1634. /*
  1635. * Byte swap command ORB if necessary
  1636. */
  1637. sbp2util_cpu_to_be32_buffer(command_orb, sizeof(struct sbp2_command_orb));
  1638. /*
  1639. * Put our scsi command in the command ORB
  1640. */
  1641. memset(command_orb->cdb, 0, 12);
  1642. memcpy(command_orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
  1643. return(0);
  1644. }
  1645. /*
  1646. * This function is called in order to begin a regular SBP-2 command.
  1647. */
  1648. static int sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id,
  1649. struct sbp2_command_info *command)
  1650. {
  1651. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1652. struct sbp2_command_orb *command_orb = &command->command_orb;
  1653. struct node_entry *ne = scsi_id->ne;
  1654. u64 addr;
  1655. outstanding_orb_incr;
  1656. SBP2_ORB_DEBUG("sending command orb %p, total orbs = %x",
  1657. command_orb, global_outstanding_command_orbs);
  1658. pci_dma_sync_single_for_device(hi->host->pdev, command->command_orb_dma,
  1659. sizeof(struct sbp2_command_orb),
  1660. PCI_DMA_BIDIRECTIONAL);
  1661. pci_dma_sync_single_for_device(hi->host->pdev, command->sge_dma,
  1662. sizeof(command->scatter_gather_element),
  1663. PCI_DMA_BIDIRECTIONAL);
  1664. /*
  1665. * Check to see if there are any previous orbs to use
  1666. */
  1667. if (scsi_id->last_orb == NULL) {
  1668. quadlet_t data[2];
  1669. /*
  1670. * Ok, let's write to the target's management agent register
  1671. */
  1672. addr = scsi_id->sbp2_command_block_agent_addr + SBP2_ORB_POINTER_OFFSET;
  1673. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1674. data[1] = command->command_orb_dma;
  1675. sbp2util_cpu_to_be32_buffer(data, 8);
  1676. SBP2_ORB_DEBUG("write command agent, command orb %p", command_orb);
  1677. if (sbp2util_node_write_no_wait(ne, addr, data, 8) < 0) {
  1678. SBP2_ERR("sbp2util_node_write_no_wait failed.\n");
  1679. return -EIO;
  1680. }
  1681. SBP2_ORB_DEBUG("write command agent complete");
  1682. scsi_id->last_orb = command_orb;
  1683. scsi_id->last_orb_dma = command->command_orb_dma;
  1684. } else {
  1685. quadlet_t data;
  1686. /*
  1687. * We have an orb already sent (maybe or maybe not
  1688. * processed) that we can append this orb to. So do so,
  1689. * and ring the doorbell. Have to be very careful
  1690. * modifying these next orb pointers, as they are accessed
  1691. * both by the sbp2 device and us.
  1692. */
  1693. scsi_id->last_orb->next_ORB_lo =
  1694. cpu_to_be32(command->command_orb_dma);
  1695. /* Tells hardware that this pointer is valid */
  1696. scsi_id->last_orb->next_ORB_hi = 0x0;
  1697. pci_dma_sync_single_for_device(hi->host->pdev, scsi_id->last_orb_dma,
  1698. sizeof(struct sbp2_command_orb),
  1699. PCI_DMA_BIDIRECTIONAL);
  1700. /*
  1701. * Ring the doorbell
  1702. */
  1703. data = cpu_to_be32(command->command_orb_dma);
  1704. addr = scsi_id->sbp2_command_block_agent_addr + SBP2_DOORBELL_OFFSET;
  1705. SBP2_ORB_DEBUG("ring doorbell, command orb %p", command_orb);
  1706. if (sbp2util_node_write_no_wait(ne, addr, &data, 4) < 0) {
  1707. SBP2_ERR("sbp2util_node_write_no_wait failed");
  1708. return(-EIO);
  1709. }
  1710. scsi_id->last_orb = command_orb;
  1711. scsi_id->last_orb_dma = command->command_orb_dma;
  1712. }
  1713. return(0);
  1714. }
  1715. /*
  1716. * This function is called in order to begin a regular SBP-2 command.
  1717. */
  1718. static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
  1719. struct scsi_cmnd *SCpnt,
  1720. void (*done)(struct scsi_cmnd *))
  1721. {
  1722. unchar *cmd = (unchar *) SCpnt->cmnd;
  1723. unsigned int request_bufflen = SCpnt->request_bufflen;
  1724. struct sbp2_command_info *command;
  1725. SBP2_DEBUG("sbp2_send_command");
  1726. #if (CONFIG_IEEE1394_SBP2_DEBUG >= 2) || defined(CONFIG_IEEE1394_SBP2_PACKET_DUMP)
  1727. printk("[scsi command]\n ");
  1728. scsi_print_command(SCpnt);
  1729. #endif
  1730. SBP2_DEBUG("SCSI transfer size = %x", request_bufflen);
  1731. SBP2_DEBUG("SCSI s/g elements = %x", (unsigned int)SCpnt->use_sg);
  1732. /*
  1733. * Allocate a command orb and s/g structure
  1734. */
  1735. command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done);
  1736. if (!command) {
  1737. return(-EIO);
  1738. }
  1739. /*
  1740. * The scsi stack sends down a request_bufflen which does not match the
  1741. * length field in the scsi cdb. This causes some sbp2 devices to
  1742. * reject this inquiry command. Fix the request_bufflen.
  1743. */
  1744. if (*cmd == INQUIRY) {
  1745. if (force_inquiry_hack || scsi_id->workarounds & SBP2_BREAKAGE_INQUIRY_HACK)
  1746. request_bufflen = cmd[4] = 0x24;
  1747. else
  1748. request_bufflen = cmd[4];
  1749. }
  1750. /*
  1751. * Now actually fill in the comamnd orb and sbp2 s/g list
  1752. */
  1753. sbp2_create_command_orb(scsi_id, command, cmd, SCpnt->use_sg,
  1754. request_bufflen, SCpnt->request_buffer,
  1755. SCpnt->sc_data_direction);
  1756. /*
  1757. * Update our cdb if necessary (to handle sbp2 RBC command set
  1758. * differences). This is where the command set hacks go! =)
  1759. */
  1760. sbp2_check_sbp2_command(scsi_id, command->command_orb.cdb);
  1761. sbp2util_packet_dump(&command->command_orb, sizeof(struct sbp2_command_orb),
  1762. "sbp2 command orb", command->command_orb_dma);
  1763. /*
  1764. * Initialize status fifo
  1765. */
  1766. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  1767. /*
  1768. * Link up the orb, and ring the doorbell if needed
  1769. */
  1770. sbp2_link_orb_command(scsi_id, command);
  1771. return(0);
  1772. }
  1773. /*
  1774. * This function deals with command set differences between Linux scsi
  1775. * command set and sbp2 RBC command set.
  1776. */
  1777. static void sbp2_check_sbp2_command(struct scsi_id_instance_data *scsi_id, unchar *cmd)
  1778. {
  1779. unchar new_cmd[16];
  1780. u8 device_type = SBP2_DEVICE_TYPE (scsi_id->sbp2_device_type_and_lun);
  1781. SBP2_DEBUG("sbp2_check_sbp2_command");
  1782. switch (*cmd) {
  1783. case READ_6:
  1784. if (sbp2_command_conversion_device_type(device_type)) {
  1785. SBP2_DEBUG("Convert READ_6 to READ_10");
  1786. /*
  1787. * Need to turn read_6 into read_10
  1788. */
  1789. new_cmd[0] = 0x28;
  1790. new_cmd[1] = (cmd[1] & 0xe0);
  1791. new_cmd[2] = 0x0;
  1792. new_cmd[3] = (cmd[1] & 0x1f);
  1793. new_cmd[4] = cmd[2];
  1794. new_cmd[5] = cmd[3];
  1795. new_cmd[6] = 0x0;
  1796. new_cmd[7] = 0x0;
  1797. new_cmd[8] = cmd[4];
  1798. new_cmd[9] = cmd[5];
  1799. memcpy(cmd, new_cmd, 10);
  1800. }
  1801. break;
  1802. case WRITE_6:
  1803. if (sbp2_command_conversion_device_type(device_type)) {
  1804. SBP2_DEBUG("Convert WRITE_6 to WRITE_10");
  1805. /*
  1806. * Need to turn write_6 into write_10
  1807. */
  1808. new_cmd[0] = 0x2a;
  1809. new_cmd[1] = (cmd[1] & 0xe0);
  1810. new_cmd[2] = 0x0;
  1811. new_cmd[3] = (cmd[1] & 0x1f);
  1812. new_cmd[4] = cmd[2];
  1813. new_cmd[5] = cmd[3];
  1814. new_cmd[6] = 0x0;
  1815. new_cmd[7] = 0x0;
  1816. new_cmd[8] = cmd[4];
  1817. new_cmd[9] = cmd[5];
  1818. memcpy(cmd, new_cmd, 10);
  1819. }
  1820. break;
  1821. case MODE_SENSE:
  1822. if (sbp2_command_conversion_device_type(device_type)) {
  1823. SBP2_DEBUG("Convert MODE_SENSE_6 to MODE_SENSE_10");
  1824. /*
  1825. * Need to turn mode_sense_6 into mode_sense_10
  1826. */
  1827. new_cmd[0] = 0x5a;
  1828. new_cmd[1] = cmd[1];
  1829. new_cmd[2] = cmd[2];
  1830. new_cmd[3] = 0x0;
  1831. new_cmd[4] = 0x0;
  1832. new_cmd[5] = 0x0;
  1833. new_cmd[6] = 0x0;
  1834. new_cmd[7] = 0x0;
  1835. new_cmd[8] = cmd[4];
  1836. new_cmd[9] = cmd[5];
  1837. memcpy(cmd, new_cmd, 10);
  1838. }
  1839. break;
  1840. case MODE_SELECT:
  1841. /*
  1842. * TODO. Probably need to change mode select to 10 byte version
  1843. */
  1844. default:
  1845. break;
  1846. }
  1847. return;
  1848. }
  1849. /*
  1850. * Translates SBP-2 status into SCSI sense data for check conditions
  1851. */
  1852. static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data)
  1853. {
  1854. SBP2_DEBUG("sbp2_status_to_sense_data");
  1855. /*
  1856. * Ok, it's pretty ugly... ;-)
  1857. */
  1858. sense_data[0] = 0x70;
  1859. sense_data[1] = 0x0;
  1860. sense_data[2] = sbp2_status[9];
  1861. sense_data[3] = sbp2_status[12];
  1862. sense_data[4] = sbp2_status[13];
  1863. sense_data[5] = sbp2_status[14];
  1864. sense_data[6] = sbp2_status[15];
  1865. sense_data[7] = 10;
  1866. sense_data[8] = sbp2_status[16];
  1867. sense_data[9] = sbp2_status[17];
  1868. sense_data[10] = sbp2_status[18];
  1869. sense_data[11] = sbp2_status[19];
  1870. sense_data[12] = sbp2_status[10];
  1871. sense_data[13] = sbp2_status[11];
  1872. sense_data[14] = sbp2_status[20];
  1873. sense_data[15] = sbp2_status[21];
  1874. return(sbp2_status[8] & 0x3f); /* return scsi status */
  1875. }
  1876. /*
  1877. * This function is called after a command is completed, in order to do any necessary SBP-2
  1878. * response data translations for the SCSI stack
  1879. */
  1880. static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id,
  1881. struct scsi_cmnd *SCpnt)
  1882. {
  1883. u8 *scsi_buf = SCpnt->request_buffer;
  1884. u8 device_type = SBP2_DEVICE_TYPE (scsi_id->sbp2_device_type_and_lun);
  1885. SBP2_DEBUG("sbp2_check_sbp2_response");
  1886. switch (SCpnt->cmnd[0]) {
  1887. case INQUIRY:
  1888. /*
  1889. * If scsi_id->sbp2_device_type_and_lun is uninitialized, then fill
  1890. * this information in from the inquiry response data. Lun is set to zero.
  1891. */
  1892. if (scsi_id->sbp2_device_type_and_lun == SBP2_DEVICE_TYPE_LUN_UNINITIALIZED) {
  1893. SBP2_DEBUG("Creating sbp2_device_type_and_lun from scsi inquiry data");
  1894. scsi_id->sbp2_device_type_and_lun = (scsi_buf[0] & 0x1f) << 16;
  1895. }
  1896. /*
  1897. * Make sure data length is ok. Minimum length is 36 bytes
  1898. */
  1899. if (scsi_buf[4] == 0) {
  1900. scsi_buf[4] = 36 - 5;
  1901. }
  1902. /*
  1903. * Check for Simple Direct Access Device and change it to TYPE_DISK
  1904. */
  1905. if ((scsi_buf[0] & 0x1f) == TYPE_RBC) {
  1906. SBP2_DEBUG("Changing TYPE_RBC to TYPE_DISK");
  1907. scsi_buf[0] &= 0xe0;
  1908. }
  1909. /*
  1910. * Fix ansi revision and response data format
  1911. */
  1912. scsi_buf[2] |= 2;
  1913. scsi_buf[3] = (scsi_buf[3] & 0xf0) | 2;
  1914. break;
  1915. case MODE_SENSE:
  1916. if (sbp2_command_conversion_device_type(device_type)) {
  1917. SBP2_DEBUG("Modify mode sense response (10 byte version)");
  1918. scsi_buf[0] = scsi_buf[1]; /* Mode data length */
  1919. scsi_buf[1] = scsi_buf[2]; /* Medium type */
  1920. scsi_buf[2] = scsi_buf[3]; /* Device specific parameter */
  1921. scsi_buf[3] = scsi_buf[7]; /* Block descriptor length */
  1922. memcpy(scsi_buf + 4, scsi_buf + 8, scsi_buf[0]);
  1923. }
  1924. break;
  1925. case MODE_SELECT:
  1926. /*
  1927. * TODO. Probably need to change mode select to 10 byte version
  1928. */
  1929. default:
  1930. break;
  1931. }
  1932. return;
  1933. }
  1934. /*
  1935. * This function deals with status writes from the SBP-2 device
  1936. */
  1937. static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, int destid,
  1938. quadlet_t *data, u64 addr, size_t length, u16 fl)
  1939. {
  1940. struct sbp2scsi_host_info *hi;
  1941. struct scsi_id_instance_data *scsi_id = NULL, *scsi_id_tmp;
  1942. u32 id;
  1943. struct scsi_cmnd *SCpnt = NULL;
  1944. u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
  1945. struct sbp2_command_info *command;
  1946. SBP2_DEBUG("sbp2_handle_status_write");
  1947. sbp2util_packet_dump(data, length, "sbp2 status write by device", (u32)addr);
  1948. if (!host) {
  1949. SBP2_ERR("host is NULL - this is bad!");
  1950. return(RCODE_ADDRESS_ERROR);
  1951. }
  1952. hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
  1953. if (!hi) {
  1954. SBP2_ERR("host info is NULL - this is bad!");
  1955. return(RCODE_ADDRESS_ERROR);
  1956. }
  1957. /*
  1958. * Find our scsi_id structure by looking at the status fifo address written to by
  1959. * the sbp2 device.
  1960. */
  1961. id = SBP2_STATUS_FIFO_OFFSET_TO_ENTRY((u32)(addr - SBP2_STATUS_FIFO_ADDRESS));
  1962. list_for_each_entry(scsi_id_tmp, &hi->scsi_ids, scsi_list) {
  1963. if (scsi_id_tmp->ne->nodeid == nodeid && scsi_id_tmp->ud->id == id) {
  1964. scsi_id = scsi_id_tmp;
  1965. break;
  1966. }
  1967. }
  1968. if (!scsi_id) {
  1969. SBP2_ERR("scsi_id is NULL - device is gone?");
  1970. return(RCODE_ADDRESS_ERROR);
  1971. }
  1972. /*
  1973. * Put response into scsi_id status fifo...
  1974. */
  1975. memcpy(&scsi_id->status_block, data, length);
  1976. /*
  1977. * Byte swap first two quadlets (8 bytes) of status for processing
  1978. */
  1979. sbp2util_be32_to_cpu_buffer(&scsi_id->status_block, 8);
  1980. /*
  1981. * Handle command ORB status here if necessary. First, need to match status with command.
  1982. */
  1983. command = sbp2util_find_command_for_orb(scsi_id, scsi_id->status_block.ORB_offset_lo);
  1984. if (command) {
  1985. SBP2_DEBUG("Found status for command ORB");
  1986. pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
  1987. sizeof(struct sbp2_command_orb),
  1988. PCI_DMA_BIDIRECTIONAL);
  1989. pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
  1990. sizeof(command->scatter_gather_element),
  1991. PCI_DMA_BIDIRECTIONAL);
  1992. SBP2_ORB_DEBUG("matched command orb %p", &command->command_orb);
  1993. outstanding_orb_decr;
  1994. /*
  1995. * Matched status with command, now grab scsi command pointers and check status
  1996. */
  1997. SCpnt = command->Current_SCpnt;
  1998. sbp2util_mark_command_completed(scsi_id, command);
  1999. if (SCpnt) {
  2000. /*
  2001. * See if the target stored any scsi status information
  2002. */
  2003. if (STATUS_GET_LENGTH(scsi_id->status_block.ORB_offset_hi_misc) > 1) {
  2004. /*
  2005. * Translate SBP-2 status to SCSI sense data
  2006. */
  2007. SBP2_DEBUG("CHECK CONDITION");
  2008. scsi_status = sbp2_status_to_sense_data((unchar *)&scsi_id->status_block, SCpnt->sense_buffer);
  2009. }
  2010. /*
  2011. * Check to see if the dead bit is set. If so, we'll have to initiate
  2012. * a fetch agent reset.
  2013. */
  2014. if (STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc)) {
  2015. /*
  2016. * Initiate a fetch agent reset.
  2017. */
  2018. SBP2_DEBUG("Dead bit set - initiating fetch agent reset");
  2019. sbp2_agent_reset(scsi_id, 0);
  2020. }
  2021. SBP2_ORB_DEBUG("completing command orb %p", &command->command_orb);
  2022. }
  2023. /*
  2024. * Check here to see if there are no commands in-use. If there are none, we can
  2025. * null out last orb so that next time around we write directly to the orb pointer...
  2026. * Quick start saves one 1394 bus transaction.
  2027. */
  2028. if (list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  2029. scsi_id->last_orb = NULL;
  2030. }
  2031. } else {
  2032. /*
  2033. * It's probably a login/logout/reconnect status.
  2034. */
  2035. if ((scsi_id->login_orb_dma == scsi_id->status_block.ORB_offset_lo) ||
  2036. (scsi_id->query_logins_orb_dma == scsi_id->status_block.ORB_offset_lo) ||
  2037. (scsi_id->reconnect_orb_dma == scsi_id->status_block.ORB_offset_lo) ||
  2038. (scsi_id->logout_orb_dma == scsi_id->status_block.ORB_offset_lo)) {
  2039. atomic_set(&scsi_id->sbp2_login_complete, 1);
  2040. }
  2041. }
  2042. if (SCpnt) {
  2043. /* Complete the SCSI command. */
  2044. SBP2_DEBUG("Completing SCSI command");
  2045. sbp2scsi_complete_command(scsi_id, scsi_status, SCpnt,
  2046. command->Current_done);
  2047. SBP2_ORB_DEBUG("command orb completed");
  2048. }
  2049. return(RCODE_COMPLETE);
  2050. }
  2051. /**************************************
  2052. * SCSI interface related section
  2053. **************************************/
  2054. /*
  2055. * This routine is the main request entry routine for doing I/O. It is
  2056. * called from the scsi stack directly.
  2057. */
  2058. static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
  2059. void (*done)(struct scsi_cmnd *))
  2060. {
  2061. struct scsi_id_instance_data *scsi_id =
  2062. (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
  2063. struct sbp2scsi_host_info *hi;
  2064. int result = DID_NO_CONNECT << 16;
  2065. SBP2_DEBUG("sbp2scsi_queuecommand");
  2066. if (!sbp2util_node_is_available(scsi_id))
  2067. goto done;
  2068. hi = scsi_id->hi;
  2069. if (!hi) {
  2070. SBP2_ERR("sbp2scsi_host_info is NULL - this is bad!");
  2071. goto done;
  2072. }
  2073. /*
  2074. * Until we handle multiple luns, just return selection time-out
  2075. * to any IO directed at non-zero LUNs
  2076. */
  2077. if (SCpnt->device->lun)
  2078. goto done;
  2079. /*
  2080. * Check for request sense command, and handle it here
  2081. * (autorequest sense)
  2082. */
  2083. if (SCpnt->cmnd[0] == REQUEST_SENSE) {
  2084. SBP2_DEBUG("REQUEST_SENSE");
  2085. memcpy(SCpnt->request_buffer, SCpnt->sense_buffer, SCpnt->request_bufflen);
  2086. memset(SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer));
  2087. sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_GOOD, SCpnt, done);
  2088. return 0;
  2089. }
  2090. /*
  2091. * Check to see if we are in the middle of a bus reset.
  2092. */
  2093. if (!hpsb_node_entry_valid(scsi_id->ne)) {
  2094. SBP2_ERR("Bus reset in progress - rejecting command");
  2095. result = DID_BUS_BUSY << 16;
  2096. goto done;
  2097. }
  2098. /*
  2099. * Try and send our SCSI command
  2100. */
  2101. if (sbp2_send_command(scsi_id, SCpnt, done)) {
  2102. SBP2_ERR("Error sending SCSI command");
  2103. sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
  2104. SCpnt, done);
  2105. }
  2106. return 0;
  2107. done:
  2108. SCpnt->result = result;
  2109. done(SCpnt);
  2110. return 0;
  2111. }
  2112. /*
  2113. * This function is called in order to complete all outstanding SBP-2
  2114. * commands (in case of resets, etc.).
  2115. */
  2116. static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
  2117. u32 status)
  2118. {
  2119. struct sbp2scsi_host_info *hi = scsi_id->hi;
  2120. struct list_head *lh;
  2121. struct sbp2_command_info *command;
  2122. SBP2_DEBUG("sbp2scsi_complete_all_commands");
  2123. while (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  2124. SBP2_DEBUG("Found pending command to complete");
  2125. lh = scsi_id->sbp2_command_orb_inuse.next;
  2126. command = list_entry(lh, struct sbp2_command_info, list);
  2127. pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
  2128. sizeof(struct sbp2_command_orb),
  2129. PCI_DMA_BIDIRECTIONAL);
  2130. pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
  2131. sizeof(command->scatter_gather_element),
  2132. PCI_DMA_BIDIRECTIONAL);
  2133. sbp2util_mark_command_completed(scsi_id, command);
  2134. if (command->Current_SCpnt) {
  2135. command->Current_SCpnt->result = status << 16;
  2136. command->Current_done(command->Current_SCpnt);
  2137. }
  2138. }
  2139. return;
  2140. }
  2141. /*
  2142. * This function is called in order to complete a regular SBP-2 command.
  2143. *
  2144. * This can be called in interrupt context.
  2145. */
  2146. static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
  2147. u32 scsi_status, struct scsi_cmnd *SCpnt,
  2148. void (*done)(struct scsi_cmnd *))
  2149. {
  2150. SBP2_DEBUG("sbp2scsi_complete_command");
  2151. /*
  2152. * Sanity
  2153. */
  2154. if (!SCpnt) {
  2155. SBP2_ERR("SCpnt is NULL");
  2156. return;
  2157. }
  2158. /*
  2159. * If a bus reset is in progress and there was an error, don't
  2160. * complete the command, just let it get retried at the end of the
  2161. * bus reset.
  2162. */
  2163. if (!hpsb_node_entry_valid(scsi_id->ne) && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
  2164. SBP2_ERR("Bus reset in progress - retry command later");
  2165. return;
  2166. }
  2167. /*
  2168. * Switch on scsi status
  2169. */
  2170. switch (scsi_status) {
  2171. case SBP2_SCSI_STATUS_GOOD:
  2172. SCpnt->result = DID_OK;
  2173. break;
  2174. case SBP2_SCSI_STATUS_BUSY:
  2175. SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
  2176. SCpnt->result = DID_BUS_BUSY << 16;
  2177. break;
  2178. case SBP2_SCSI_STATUS_CHECK_CONDITION:
  2179. SBP2_DEBUG("SBP2_SCSI_STATUS_CHECK_CONDITION");
  2180. SCpnt->result = CHECK_CONDITION << 1;
  2181. /*
  2182. * Debug stuff
  2183. */
  2184. #if CONFIG_IEEE1394_SBP2_DEBUG >= 1
  2185. scsi_print_command(SCpnt);
  2186. scsi_print_sense("bh", SCpnt);
  2187. #endif
  2188. break;
  2189. case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
  2190. SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
  2191. SCpnt->result = DID_NO_CONNECT << 16;
  2192. scsi_print_command(SCpnt);
  2193. break;
  2194. case SBP2_SCSI_STATUS_CONDITION_MET:
  2195. case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
  2196. case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
  2197. SBP2_ERR("Bad SCSI status = %x", scsi_status);
  2198. SCpnt->result = DID_ERROR << 16;
  2199. scsi_print_command(SCpnt);
  2200. break;
  2201. default:
  2202. SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
  2203. SCpnt->result = DID_ERROR << 16;
  2204. }
  2205. /*
  2206. * Take care of any sbp2 response data mucking here (RBC stuff, etc.)
  2207. */
  2208. if (SCpnt->result == DID_OK) {
  2209. sbp2_check_sbp2_response(scsi_id, SCpnt);
  2210. }
  2211. /*
  2212. * If a bus reset is in progress and there was an error, complete
  2213. * the command as busy so that it will get retried.
  2214. */
  2215. if (!hpsb_node_entry_valid(scsi_id->ne) && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
  2216. SBP2_ERR("Completing command with busy (bus reset)");
  2217. SCpnt->result = DID_BUS_BUSY << 16;
  2218. }
  2219. /*
  2220. * If a unit attention occurs, return busy status so it gets
  2221. * retried... it could have happened because of a 1394 bus reset
  2222. * or hot-plug...
  2223. */
  2224. #if 0
  2225. if ((scsi_status == SBP2_SCSI_STATUS_CHECK_CONDITION) &&
  2226. (SCpnt->sense_buffer[2] == UNIT_ATTENTION)) {
  2227. SBP2_DEBUG("UNIT ATTENTION - return busy");
  2228. SCpnt->result = DID_BUS_BUSY << 16;
  2229. }
  2230. #endif
  2231. /*
  2232. * Tell scsi stack that we're done with this command
  2233. */
  2234. done (SCpnt);
  2235. }
  2236. static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
  2237. {
  2238. ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = sdev;
  2239. return 0;
  2240. }
  2241. static int sbp2scsi_slave_configure(struct scsi_device *sdev)
  2242. {
  2243. blk_queue_dma_alignment(sdev->request_queue, (512 - 1));
  2244. return 0;
  2245. }
  2246. static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
  2247. {
  2248. ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = NULL;
  2249. return;
  2250. }
  2251. /*
  2252. * Called by scsi stack when something has really gone wrong. Usually
  2253. * called when a command has timed-out for some reason.
  2254. */
  2255. static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
  2256. {
  2257. struct scsi_id_instance_data *scsi_id =
  2258. (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
  2259. struct sbp2scsi_host_info *hi = scsi_id->hi;
  2260. struct sbp2_command_info *command;
  2261. SBP2_ERR("aborting sbp2 command");
  2262. scsi_print_command(SCpnt);
  2263. if (sbp2util_node_is_available(scsi_id)) {
  2264. /*
  2265. * Right now, just return any matching command structures
  2266. * to the free pool.
  2267. */
  2268. command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
  2269. if (command) {
  2270. SBP2_DEBUG("Found command to abort");
  2271. pci_dma_sync_single_for_cpu(hi->host->pdev,
  2272. command->command_orb_dma,
  2273. sizeof(struct sbp2_command_orb),
  2274. PCI_DMA_BIDIRECTIONAL);
  2275. pci_dma_sync_single_for_cpu(hi->host->pdev,
  2276. command->sge_dma,
  2277. sizeof(command->scatter_gather_element),
  2278. PCI_DMA_BIDIRECTIONAL);
  2279. sbp2util_mark_command_completed(scsi_id, command);
  2280. if (command->Current_SCpnt) {
  2281. command->Current_SCpnt->result = DID_ABORT << 16;
  2282. command->Current_done(command->Current_SCpnt);
  2283. }
  2284. }
  2285. /*
  2286. * Initiate a fetch agent reset.
  2287. */
  2288. sbp2_agent_reset(scsi_id, 0);
  2289. sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
  2290. }
  2291. return(SUCCESS);
  2292. }
  2293. /*
  2294. * Called by scsi stack when something has really gone wrong.
  2295. */
  2296. static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
  2297. {
  2298. struct scsi_id_instance_data *scsi_id =
  2299. (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
  2300. unsigned long flags;
  2301. SBP2_ERR("reset requested");
  2302. spin_lock_irqsave(SCpnt->device->host->host_lock, flags);
  2303. if (sbp2util_node_is_available(scsi_id)) {
  2304. SBP2_ERR("Generating sbp2 fetch agent reset");
  2305. sbp2_agent_reset(scsi_id, 0);
  2306. }
  2307. spin_unlock_irqrestore(SCpnt->device->host->host_lock, flags);
  2308. return SUCCESS;
  2309. }
  2310. static const char *sbp2scsi_info (struct Scsi_Host *host)
  2311. {
  2312. return "SCSI emulation for IEEE-1394 SBP-2 Devices";
  2313. }
  2314. static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev, struct device_attribute *attr, char *buf)
  2315. {
  2316. struct scsi_device *sdev;
  2317. struct scsi_id_instance_data *scsi_id;
  2318. int lun;
  2319. if (!(sdev = to_scsi_device(dev)))
  2320. return 0;
  2321. if (!(scsi_id = (struct scsi_id_instance_data *)sdev->host->hostdata[0]))
  2322. return 0;
  2323. if (scsi_id->sbp2_device_type_and_lun == SBP2_DEVICE_TYPE_LUN_UNINITIALIZED)
  2324. lun = 0;
  2325. else
  2326. lun = ORB_SET_LUN(scsi_id->sbp2_device_type_and_lun);
  2327. return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)scsi_id->ne->guid,
  2328. scsi_id->ud->id, lun);
  2329. }
  2330. static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
  2331. static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
  2332. &dev_attr_ieee1394_id,
  2333. NULL
  2334. };
  2335. MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
  2336. MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
  2337. MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
  2338. MODULE_LICENSE("GPL");
  2339. /* SCSI host template */
  2340. static struct scsi_host_template scsi_driver_template = {
  2341. .module = THIS_MODULE,
  2342. .name = "SBP-2 IEEE-1394",
  2343. .proc_name = SBP2_DEVICE_NAME,
  2344. .info = sbp2scsi_info,
  2345. .queuecommand = sbp2scsi_queuecommand,
  2346. .eh_abort_handler = sbp2scsi_abort,
  2347. .eh_device_reset_handler = sbp2scsi_reset,
  2348. .eh_bus_reset_handler = sbp2scsi_reset,
  2349. .eh_host_reset_handler = sbp2scsi_reset,
  2350. .slave_alloc = sbp2scsi_slave_alloc,
  2351. .slave_configure = sbp2scsi_slave_configure,
  2352. .slave_destroy = sbp2scsi_slave_destroy,
  2353. .this_id = -1,
  2354. .sg_tablesize = SG_ALL,
  2355. .use_clustering = ENABLE_CLUSTERING,
  2356. .cmd_per_lun = SBP2_MAX_CMDS,
  2357. .can_queue = SBP2_MAX_CMDS,
  2358. .emulated = 1,
  2359. .sdev_attrs = sbp2_sysfs_sdev_attrs,
  2360. };
  2361. static int sbp2_module_init(void)
  2362. {
  2363. int ret;
  2364. SBP2_DEBUG("sbp2_module_init");
  2365. printk(KERN_INFO "sbp2: %s\n", version);
  2366. /* Module load debug option to force one command at a time (serializing I/O) */
  2367. if (serialize_io) {
  2368. SBP2_INFO("Driver forced to serialize I/O (serialize_io=1)");
  2369. SBP2_INFO("Try serialize_io=0 for better performance");
  2370. scsi_driver_template.can_queue = 1;
  2371. scsi_driver_template.cmd_per_lun = 1;
  2372. }
  2373. /* Set max sectors (module load option). Default is 255 sectors. */
  2374. scsi_driver_template.max_sectors = max_sectors;
  2375. /* Register our high level driver with 1394 stack */
  2376. hpsb_register_highlevel(&sbp2_highlevel);
  2377. ret = hpsb_register_protocol(&sbp2_driver);
  2378. if (ret) {
  2379. SBP2_ERR("Failed to register protocol");
  2380. hpsb_unregister_highlevel(&sbp2_highlevel);
  2381. return ret;
  2382. }
  2383. return 0;
  2384. }
  2385. static void __exit sbp2_module_exit(void)
  2386. {
  2387. SBP2_DEBUG("sbp2_module_exit");
  2388. hpsb_unregister_protocol(&sbp2_driver);
  2389. hpsb_unregister_highlevel(&sbp2_highlevel);
  2390. }
  2391. module_init(sbp2_module_init);
  2392. module_exit(sbp2_module_exit);