sbp2.c 79 KB

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