sbp2.c 80 KB

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