sbp2.c 82 KB

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