sbp2.c 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655
  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. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1016. data[1] = scsi_id->query_logins_orb_dma;
  1017. sbp2util_cpu_to_be32_buffer(data, 8);
  1018. atomic_set(&scsi_id->sbp2_login_complete, 0);
  1019. hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
  1020. if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, 2*HZ)) {
  1021. SBP2_INFO("Error querying logins to SBP-2 device - timed out");
  1022. return -EIO;
  1023. }
  1024. if (scsi_id->status_block.ORB_offset_lo != scsi_id->query_logins_orb_dma) {
  1025. SBP2_INFO("Error querying logins to SBP-2 device - timed out");
  1026. return -EIO;
  1027. }
  1028. if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
  1029. SBP2_INFO("Error querying logins to SBP-2 device - failed");
  1030. return -EIO;
  1031. }
  1032. sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_response, sizeof(struct sbp2_query_logins_response));
  1033. SBP2_DEBUG("length_max_logins = %x",
  1034. (unsigned int)scsi_id->query_logins_response->length_max_logins);
  1035. max_logins = RESPONSE_GET_MAX_LOGINS(scsi_id->query_logins_response->length_max_logins);
  1036. SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
  1037. active_logins = RESPONSE_GET_ACTIVE_LOGINS(scsi_id->query_logins_response->length_max_logins);
  1038. SBP2_INFO("Number of active logins: %d", active_logins);
  1039. if (active_logins >= max_logins) {
  1040. return -EIO;
  1041. }
  1042. return 0;
  1043. }
  1044. /*
  1045. * This function is called in order to login to a particular SBP-2 device,
  1046. * after a bus reset.
  1047. */
  1048. static int sbp2_login_device(struct scsi_id_instance_data *scsi_id)
  1049. {
  1050. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1051. quadlet_t data[2];
  1052. SBP2_DEBUG_ENTER();
  1053. if (!scsi_id->login_orb) {
  1054. SBP2_DEBUG("%s: login_orb not alloc'd!", __FUNCTION__);
  1055. return -EIO;
  1056. }
  1057. if (!exclusive_login) {
  1058. if (sbp2_query_logins(scsi_id)) {
  1059. SBP2_INFO("Device does not support any more concurrent logins");
  1060. return -EIO;
  1061. }
  1062. }
  1063. /* Set-up login ORB, assume no password */
  1064. scsi_id->login_orb->password_hi = 0;
  1065. scsi_id->login_orb->password_lo = 0;
  1066. scsi_id->login_orb->login_response_lo = scsi_id->login_response_dma;
  1067. scsi_id->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1068. scsi_id->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
  1069. scsi_id->login_orb->lun_misc |= ORB_SET_RECONNECT(0); /* One second reconnect time */
  1070. scsi_id->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(exclusive_login); /* Exclusive access to device */
  1071. scsi_id->login_orb->lun_misc |= ORB_SET_NOTIFY(1); /* Notify us of login complete */
  1072. scsi_id->login_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
  1073. scsi_id->login_orb->passwd_resp_lengths =
  1074. ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
  1075. scsi_id->login_orb->status_fifo_hi =
  1076. ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
  1077. scsi_id->login_orb->status_fifo_lo =
  1078. ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
  1079. sbp2util_cpu_to_be32_buffer(scsi_id->login_orb, sizeof(struct sbp2_login_orb));
  1080. sbp2util_packet_dump(scsi_id->login_orb, sizeof(struct sbp2_login_orb),
  1081. "sbp2 login orb", scsi_id->login_orb_dma);
  1082. memset(scsi_id->login_response, 0, sizeof(struct sbp2_login_response));
  1083. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1084. data[1] = scsi_id->login_orb_dma;
  1085. sbp2util_cpu_to_be32_buffer(data, 8);
  1086. atomic_set(&scsi_id->sbp2_login_complete, 0);
  1087. hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
  1088. /*
  1089. * Wait for login status (up to 20 seconds)...
  1090. */
  1091. if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, 20*HZ)) {
  1092. SBP2_ERR("Error logging into SBP-2 device - login timed-out");
  1093. return -EIO;
  1094. }
  1095. /*
  1096. * Sanity. Make sure status returned matches login orb.
  1097. */
  1098. if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma) {
  1099. SBP2_ERR("Error logging into SBP-2 device - timed out");
  1100. return -EIO;
  1101. }
  1102. if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
  1103. SBP2_ERR("Error logging into SBP-2 device - failed");
  1104. return -EIO;
  1105. }
  1106. /*
  1107. * Byte swap the login response, for use when reconnecting or
  1108. * logging out.
  1109. */
  1110. sbp2util_cpu_to_be32_buffer(scsi_id->login_response, sizeof(struct sbp2_login_response));
  1111. /*
  1112. * Grab our command block agent address from the login response.
  1113. */
  1114. SBP2_DEBUG("command_block_agent_hi = %x",
  1115. (unsigned int)scsi_id->login_response->command_block_agent_hi);
  1116. SBP2_DEBUG("command_block_agent_lo = %x",
  1117. (unsigned int)scsi_id->login_response->command_block_agent_lo);
  1118. scsi_id->sbp2_command_block_agent_addr =
  1119. ((u64)scsi_id->login_response->command_block_agent_hi) << 32;
  1120. scsi_id->sbp2_command_block_agent_addr |= ((u64)scsi_id->login_response->command_block_agent_lo);
  1121. scsi_id->sbp2_command_block_agent_addr &= 0x0000ffffffffffffULL;
  1122. SBP2_INFO("Logged into SBP-2 device");
  1123. return 0;
  1124. }
  1125. /*
  1126. * This function is called in order to logout from a particular SBP-2
  1127. * device, usually called during driver unload.
  1128. */
  1129. static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id)
  1130. {
  1131. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1132. quadlet_t data[2];
  1133. int error;
  1134. SBP2_DEBUG_ENTER();
  1135. /*
  1136. * Set-up logout ORB
  1137. */
  1138. scsi_id->logout_orb->reserved1 = 0x0;
  1139. scsi_id->logout_orb->reserved2 = 0x0;
  1140. scsi_id->logout_orb->reserved3 = 0x0;
  1141. scsi_id->logout_orb->reserved4 = 0x0;
  1142. scsi_id->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
  1143. scsi_id->logout_orb->login_ID_misc |= ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
  1144. /* Notify us when complete */
  1145. scsi_id->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
  1146. scsi_id->logout_orb->reserved5 = 0x0;
  1147. scsi_id->logout_orb->status_fifo_hi =
  1148. ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
  1149. scsi_id->logout_orb->status_fifo_lo =
  1150. ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
  1151. /*
  1152. * Byte swap ORB if necessary
  1153. */
  1154. sbp2util_cpu_to_be32_buffer(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb));
  1155. sbp2util_packet_dump(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb),
  1156. "sbp2 logout orb", scsi_id->logout_orb_dma);
  1157. /*
  1158. * Ok, let's write to the target's management agent register
  1159. */
  1160. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1161. data[1] = scsi_id->logout_orb_dma;
  1162. sbp2util_cpu_to_be32_buffer(data, 8);
  1163. atomic_set(&scsi_id->sbp2_login_complete, 0);
  1164. error = hpsb_node_write(scsi_id->ne,
  1165. scsi_id->sbp2_management_agent_addr, data, 8);
  1166. if (error)
  1167. return error;
  1168. /* Wait for device to logout...1 second. */
  1169. if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, HZ))
  1170. return -EIO;
  1171. SBP2_INFO("Logged out of SBP-2 device");
  1172. return 0;
  1173. }
  1174. /*
  1175. * This function is called in order to reconnect to a particular SBP-2
  1176. * device, after a bus reset.
  1177. */
  1178. static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id)
  1179. {
  1180. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1181. quadlet_t data[2];
  1182. int error;
  1183. SBP2_DEBUG_ENTER();
  1184. /*
  1185. * Set-up reconnect ORB
  1186. */
  1187. scsi_id->reconnect_orb->reserved1 = 0x0;
  1188. scsi_id->reconnect_orb->reserved2 = 0x0;
  1189. scsi_id->reconnect_orb->reserved3 = 0x0;
  1190. scsi_id->reconnect_orb->reserved4 = 0x0;
  1191. scsi_id->reconnect_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
  1192. scsi_id->reconnect_orb->login_ID_misc |=
  1193. ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
  1194. /* Notify us when complete */
  1195. scsi_id->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
  1196. scsi_id->reconnect_orb->reserved5 = 0x0;
  1197. scsi_id->reconnect_orb->status_fifo_hi =
  1198. ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
  1199. scsi_id->reconnect_orb->status_fifo_lo =
  1200. ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
  1201. /*
  1202. * Byte swap ORB if necessary
  1203. */
  1204. sbp2util_cpu_to_be32_buffer(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb));
  1205. sbp2util_packet_dump(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb),
  1206. "sbp2 reconnect orb", scsi_id->reconnect_orb_dma);
  1207. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1208. data[1] = scsi_id->reconnect_orb_dma;
  1209. sbp2util_cpu_to_be32_buffer(data, 8);
  1210. atomic_set(&scsi_id->sbp2_login_complete, 0);
  1211. error = hpsb_node_write(scsi_id->ne,
  1212. scsi_id->sbp2_management_agent_addr, data, 8);
  1213. if (error)
  1214. return error;
  1215. /*
  1216. * Wait for reconnect status (up to 1 second)...
  1217. */
  1218. if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, HZ)) {
  1219. SBP2_ERR("Error reconnecting to SBP-2 device - reconnect timed-out");
  1220. return -EIO;
  1221. }
  1222. /*
  1223. * Sanity. Make sure status returned matches reconnect orb.
  1224. */
  1225. if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma) {
  1226. SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
  1227. return -EIO;
  1228. }
  1229. if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
  1230. SBP2_ERR("Error reconnecting to SBP-2 device - failed");
  1231. return -EIO;
  1232. }
  1233. HPSB_DEBUG("Reconnected to SBP-2 device");
  1234. return 0;
  1235. }
  1236. /*
  1237. * This function is called in order to set the busy timeout (number of
  1238. * retries to attempt) on the sbp2 device.
  1239. */
  1240. static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id)
  1241. {
  1242. quadlet_t data;
  1243. SBP2_DEBUG_ENTER();
  1244. data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
  1245. if (hpsb_node_write(scsi_id->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
  1246. SBP2_ERR("%s error", __FUNCTION__);
  1247. return 0;
  1248. }
  1249. /*
  1250. * This function is called to parse sbp2 device's config rom unit
  1251. * directory. Used to determine things like sbp2 management agent offset,
  1252. * and command set used (SCSI or RBC).
  1253. */
  1254. static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
  1255. struct unit_directory *ud)
  1256. {
  1257. struct csr1212_keyval *kv;
  1258. struct csr1212_dentry *dentry;
  1259. u64 management_agent_addr;
  1260. u32 command_set_spec_id, command_set, unit_characteristics,
  1261. firmware_revision;
  1262. unsigned workarounds;
  1263. int i;
  1264. SBP2_DEBUG_ENTER();
  1265. management_agent_addr = 0x0;
  1266. command_set_spec_id = 0x0;
  1267. command_set = 0x0;
  1268. unit_characteristics = 0x0;
  1269. firmware_revision = 0x0;
  1270. /* Handle different fields in the unit directory, based on keys */
  1271. csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
  1272. switch (kv->key.id) {
  1273. case CSR1212_KV_ID_DEPENDENT_INFO:
  1274. if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET) {
  1275. /* Save off the management agent address */
  1276. management_agent_addr =
  1277. CSR1212_REGISTER_SPACE_BASE +
  1278. (kv->value.csr_offset << 2);
  1279. SBP2_DEBUG("sbp2_management_agent_addr = %x",
  1280. (unsigned int)management_agent_addr);
  1281. } else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
  1282. scsi_id->sbp2_lun =
  1283. ORB_SET_LUN(kv->value.immediate);
  1284. }
  1285. break;
  1286. case SBP2_COMMAND_SET_SPEC_ID_KEY:
  1287. /* Command spec organization */
  1288. command_set_spec_id = kv->value.immediate;
  1289. SBP2_DEBUG("sbp2_command_set_spec_id = %x",
  1290. (unsigned int)command_set_spec_id);
  1291. break;
  1292. case SBP2_COMMAND_SET_KEY:
  1293. /* Command set used by sbp2 device */
  1294. command_set = kv->value.immediate;
  1295. SBP2_DEBUG("sbp2_command_set = %x",
  1296. (unsigned int)command_set);
  1297. break;
  1298. case SBP2_UNIT_CHARACTERISTICS_KEY:
  1299. /*
  1300. * Unit characterisitcs (orb related stuff
  1301. * that I'm not yet paying attention to)
  1302. */
  1303. unit_characteristics = kv->value.immediate;
  1304. SBP2_DEBUG("sbp2_unit_characteristics = %x",
  1305. (unsigned int)unit_characteristics);
  1306. break;
  1307. case SBP2_FIRMWARE_REVISION_KEY:
  1308. /* Firmware revision */
  1309. firmware_revision = kv->value.immediate;
  1310. SBP2_DEBUG("sbp2_firmware_revision = %x",
  1311. (unsigned int)firmware_revision);
  1312. break;
  1313. default:
  1314. break;
  1315. }
  1316. }
  1317. workarounds = sbp2_default_workarounds;
  1318. if (force_inquiry_hack) {
  1319. SBP2_WARN("force_inquiry_hack is deprecated. "
  1320. "Use parameter 'workarounds' instead.");
  1321. workarounds |= SBP2_WORKAROUND_INQUIRY_36;
  1322. }
  1323. if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
  1324. for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
  1325. if (sbp2_workarounds_table[i].firmware_revision &&
  1326. sbp2_workarounds_table[i].firmware_revision !=
  1327. (firmware_revision & 0xffff00))
  1328. continue;
  1329. if (sbp2_workarounds_table[i].model_id &&
  1330. sbp2_workarounds_table[i].model_id != ud->model_id)
  1331. continue;
  1332. workarounds |= sbp2_workarounds_table[i].workarounds;
  1333. break;
  1334. }
  1335. if (workarounds)
  1336. SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
  1337. "(firmware_revision 0x%06x, vendor_id 0x%06x,"
  1338. " model_id 0x%06x)",
  1339. NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
  1340. workarounds, firmware_revision,
  1341. ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
  1342. ud->model_id);
  1343. /* We would need one SCSI host template for each target to adjust
  1344. * max_sectors on the fly, therefore warn only. */
  1345. if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
  1346. (max_sectors * 512) > (128 * 1024))
  1347. SBP2_WARN("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
  1348. "max transfer size. WARNING: Current max_sectors "
  1349. "setting is larger than 128KB (%d sectors)",
  1350. NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
  1351. max_sectors);
  1352. /* If this is a logical unit directory entry, process the parent
  1353. * to get the values. */
  1354. if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
  1355. struct unit_directory *parent_ud =
  1356. container_of(ud->device.parent, struct unit_directory, device);
  1357. sbp2_parse_unit_directory(scsi_id, parent_ud);
  1358. } else {
  1359. scsi_id->sbp2_management_agent_addr = management_agent_addr;
  1360. scsi_id->sbp2_command_set_spec_id = command_set_spec_id;
  1361. scsi_id->sbp2_command_set = command_set;
  1362. scsi_id->sbp2_unit_characteristics = unit_characteristics;
  1363. scsi_id->sbp2_firmware_revision = firmware_revision;
  1364. scsi_id->workarounds = workarounds;
  1365. if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
  1366. scsi_id->sbp2_lun = ORB_SET_LUN(ud->lun);
  1367. }
  1368. }
  1369. #define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
  1370. /*
  1371. * This function is called in order to determine the max speed and packet
  1372. * size we can use in our ORBs. Note, that we (the driver and host) only
  1373. * initiate the transaction. The SBP-2 device actually transfers the data
  1374. * (by reading from the DMA area we tell it). This means that the SBP-2
  1375. * device decides the actual maximum data it can transfer. We just tell it
  1376. * the speed that it needs to use, and the max_rec the host supports, and
  1377. * it takes care of the rest.
  1378. */
  1379. static int sbp2_max_speed_and_size(struct scsi_id_instance_data *scsi_id)
  1380. {
  1381. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1382. u8 payload;
  1383. SBP2_DEBUG_ENTER();
  1384. scsi_id->speed_code =
  1385. hi->host->speed[NODEID_TO_NODE(scsi_id->ne->nodeid)];
  1386. /* Bump down our speed if the user requested it */
  1387. if (scsi_id->speed_code > max_speed) {
  1388. scsi_id->speed_code = max_speed;
  1389. SBP2_ERR("Forcing SBP-2 max speed down to %s",
  1390. hpsb_speedto_str[scsi_id->speed_code]);
  1391. }
  1392. /* Payload size is the lesser of what our speed supports and what
  1393. * our host supports. */
  1394. payload = min(sbp2_speedto_max_payload[scsi_id->speed_code],
  1395. (u8) (hi->host->csr.max_rec - 1));
  1396. /* If physical DMA is off, work around limitation in ohci1394:
  1397. * packet size must not exceed PAGE_SIZE */
  1398. if (scsi_id->ne->host->low_addr_space < (1ULL << 32))
  1399. while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
  1400. payload)
  1401. payload--;
  1402. HPSB_DEBUG("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
  1403. NODE_BUS_ARGS(hi->host, scsi_id->ne->nodeid),
  1404. hpsb_speedto_str[scsi_id->speed_code],
  1405. SBP2_PAYLOAD_TO_BYTES(payload));
  1406. scsi_id->max_payload_size = payload;
  1407. return 0;
  1408. }
  1409. /*
  1410. * This function is called in order to perform a SBP-2 agent reset.
  1411. */
  1412. static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait)
  1413. {
  1414. quadlet_t data;
  1415. u64 addr;
  1416. int retval;
  1417. unsigned long flags;
  1418. SBP2_DEBUG_ENTER();
  1419. data = ntohl(SBP2_AGENT_RESET_DATA);
  1420. addr = scsi_id->sbp2_command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
  1421. if (wait)
  1422. retval = hpsb_node_write(scsi_id->ne, addr, &data, 4);
  1423. else
  1424. retval = sbp2util_node_write_no_wait(scsi_id->ne, addr, &data, 4);
  1425. if (retval < 0) {
  1426. SBP2_ERR("hpsb_node_write failed.\n");
  1427. return -EIO;
  1428. }
  1429. /*
  1430. * Need to make sure orb pointer is written on next command
  1431. */
  1432. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  1433. scsi_id->last_orb = NULL;
  1434. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  1435. return 0;
  1436. }
  1437. static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
  1438. struct sbp2scsi_host_info *hi,
  1439. struct sbp2_command_info *command,
  1440. unsigned int scsi_use_sg,
  1441. struct scatterlist *sgpnt,
  1442. u32 orb_direction,
  1443. enum dma_data_direction dma_dir)
  1444. {
  1445. command->dma_dir = dma_dir;
  1446. orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1447. orb->misc |= ORB_SET_DIRECTION(orb_direction);
  1448. /* Special case if only one element (and less than 64KB in size) */
  1449. if ((scsi_use_sg == 1) &&
  1450. (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
  1451. SBP2_DEBUG("Only one s/g element");
  1452. command->dma_size = sgpnt[0].length;
  1453. command->dma_type = CMD_DMA_PAGE;
  1454. command->cmd_dma = pci_map_page(hi->host->pdev,
  1455. sgpnt[0].page,
  1456. sgpnt[0].offset,
  1457. command->dma_size,
  1458. command->dma_dir);
  1459. SBP2_DMA_ALLOC("single page scatter element");
  1460. orb->data_descriptor_lo = command->cmd_dma;
  1461. orb->misc |= ORB_SET_DATA_SIZE(command->dma_size);
  1462. } else {
  1463. struct sbp2_unrestricted_page_table *sg_element =
  1464. &command->scatter_gather_element[0];
  1465. u32 sg_count, sg_len;
  1466. dma_addr_t sg_addr;
  1467. int i, count = pci_map_sg(hi->host->pdev, sgpnt, scsi_use_sg,
  1468. dma_dir);
  1469. SBP2_DMA_ALLOC("scatter list");
  1470. command->dma_size = scsi_use_sg;
  1471. command->sge_buffer = sgpnt;
  1472. /* use page tables (s/g) */
  1473. orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
  1474. orb->data_descriptor_lo = command->sge_dma;
  1475. /*
  1476. * Loop through and fill out our sbp-2 page tables
  1477. * (and split up anything too large)
  1478. */
  1479. for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
  1480. sg_len = sg_dma_len(sgpnt);
  1481. sg_addr = sg_dma_address(sgpnt);
  1482. while (sg_len) {
  1483. sg_element[sg_count].segment_base_lo = sg_addr;
  1484. if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
  1485. sg_element[sg_count].length_segment_base_hi =
  1486. PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
  1487. sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
  1488. sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
  1489. } else {
  1490. sg_element[sg_count].length_segment_base_hi =
  1491. PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
  1492. sg_len = 0;
  1493. }
  1494. sg_count++;
  1495. }
  1496. }
  1497. /* Number of page table (s/g) elements */
  1498. orb->misc |= ORB_SET_DATA_SIZE(sg_count);
  1499. sbp2util_packet_dump(sg_element,
  1500. (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
  1501. "sbp2 s/g list", command->sge_dma);
  1502. /* Byte swap page tables if necessary */
  1503. sbp2util_cpu_to_be32_buffer(sg_element,
  1504. (sizeof(struct sbp2_unrestricted_page_table)) *
  1505. sg_count);
  1506. }
  1507. }
  1508. static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
  1509. struct sbp2scsi_host_info *hi,
  1510. struct sbp2_command_info *command,
  1511. struct scatterlist *sgpnt,
  1512. u32 orb_direction,
  1513. unsigned int scsi_request_bufflen,
  1514. void *scsi_request_buffer,
  1515. enum dma_data_direction dma_dir)
  1516. {
  1517. command->dma_dir = dma_dir;
  1518. command->dma_size = scsi_request_bufflen;
  1519. command->dma_type = CMD_DMA_SINGLE;
  1520. command->cmd_dma = pci_map_single(hi->host->pdev, scsi_request_buffer,
  1521. command->dma_size, command->dma_dir);
  1522. orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1523. orb->misc |= ORB_SET_DIRECTION(orb_direction);
  1524. SBP2_DMA_ALLOC("single bulk");
  1525. /*
  1526. * Handle case where we get a command w/o s/g enabled (but
  1527. * check for transfers larger than 64K)
  1528. */
  1529. if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
  1530. orb->data_descriptor_lo = command->cmd_dma;
  1531. orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
  1532. } else {
  1533. struct sbp2_unrestricted_page_table *sg_element =
  1534. &command->scatter_gather_element[0];
  1535. u32 sg_count, sg_len;
  1536. dma_addr_t sg_addr;
  1537. /*
  1538. * Need to turn this into page tables, since the
  1539. * buffer is too large.
  1540. */
  1541. orb->data_descriptor_lo = command->sge_dma;
  1542. /* Use page tables (s/g) */
  1543. orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
  1544. /*
  1545. * fill out our sbp-2 page tables (and split up
  1546. * the large buffer)
  1547. */
  1548. sg_count = 0;
  1549. sg_len = scsi_request_bufflen;
  1550. sg_addr = command->cmd_dma;
  1551. while (sg_len) {
  1552. sg_element[sg_count].segment_base_lo = sg_addr;
  1553. if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
  1554. sg_element[sg_count].length_segment_base_hi =
  1555. PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
  1556. sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
  1557. sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
  1558. } else {
  1559. sg_element[sg_count].length_segment_base_hi =
  1560. PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
  1561. sg_len = 0;
  1562. }
  1563. sg_count++;
  1564. }
  1565. /* Number of page table (s/g) elements */
  1566. orb->misc |= ORB_SET_DATA_SIZE(sg_count);
  1567. sbp2util_packet_dump(sg_element,
  1568. (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
  1569. "sbp2 s/g list", command->sge_dma);
  1570. /* Byte swap page tables if necessary */
  1571. sbp2util_cpu_to_be32_buffer(sg_element,
  1572. (sizeof(struct sbp2_unrestricted_page_table)) *
  1573. sg_count);
  1574. }
  1575. }
  1576. /*
  1577. * This function is called to create the actual command orb and s/g list
  1578. * out of the scsi command itself.
  1579. */
  1580. static void sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id,
  1581. struct sbp2_command_info *command,
  1582. unchar *scsi_cmd,
  1583. unsigned int scsi_use_sg,
  1584. unsigned int scsi_request_bufflen,
  1585. void *scsi_request_buffer,
  1586. enum dma_data_direction dma_dir)
  1587. {
  1588. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1589. struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
  1590. struct sbp2_command_orb *command_orb = &command->command_orb;
  1591. u32 orb_direction;
  1592. /*
  1593. * Set-up our command ORB..
  1594. *
  1595. * NOTE: We're doing unrestricted page tables (s/g), as this is
  1596. * best performance (at least with the devices I have). This means
  1597. * that data_size becomes the number of s/g elements, and
  1598. * page_size should be zero (for unrestricted).
  1599. */
  1600. command_orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
  1601. command_orb->next_ORB_lo = 0x0;
  1602. command_orb->misc = ORB_SET_MAX_PAYLOAD(scsi_id->max_payload_size);
  1603. command_orb->misc |= ORB_SET_SPEED(scsi_id->speed_code);
  1604. command_orb->misc |= ORB_SET_NOTIFY(1); /* Notify us when complete */
  1605. if (dma_dir == DMA_NONE)
  1606. orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
  1607. else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
  1608. orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
  1609. else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
  1610. orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
  1611. else {
  1612. SBP2_WARN("Falling back to DMA_NONE");
  1613. orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
  1614. }
  1615. /* Set-up our pagetable stuff */
  1616. if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
  1617. SBP2_DEBUG("No data transfer");
  1618. command_orb->data_descriptor_hi = 0x0;
  1619. command_orb->data_descriptor_lo = 0x0;
  1620. command_orb->misc |= ORB_SET_DIRECTION(1);
  1621. } else if (scsi_use_sg) {
  1622. SBP2_DEBUG("Use scatter/gather");
  1623. sbp2_prep_command_orb_sg(command_orb, hi, command, scsi_use_sg,
  1624. sgpnt, orb_direction, dma_dir);
  1625. } else {
  1626. SBP2_DEBUG("No scatter/gather");
  1627. sbp2_prep_command_orb_no_sg(command_orb, hi, command, sgpnt,
  1628. orb_direction, scsi_request_bufflen,
  1629. scsi_request_buffer, dma_dir);
  1630. }
  1631. /* Byte swap command ORB if necessary */
  1632. sbp2util_cpu_to_be32_buffer(command_orb, sizeof(struct sbp2_command_orb));
  1633. /* Put our scsi command in the command ORB */
  1634. memset(command_orb->cdb, 0, 12);
  1635. memcpy(command_orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
  1636. }
  1637. /*
  1638. * This function is called in order to begin a regular SBP-2 command.
  1639. */
  1640. static void sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id,
  1641. struct sbp2_command_info *command)
  1642. {
  1643. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1644. struct sbp2_command_orb *command_orb = &command->command_orb;
  1645. struct sbp2_command_orb *last_orb;
  1646. dma_addr_t last_orb_dma;
  1647. u64 addr = scsi_id->sbp2_command_block_agent_addr;
  1648. quadlet_t data[2];
  1649. size_t length;
  1650. unsigned long flags;
  1651. outstanding_orb_incr;
  1652. SBP2_ORB_DEBUG("sending command orb %p, total orbs = %x",
  1653. command_orb, global_outstanding_command_orbs);
  1654. pci_dma_sync_single_for_device(hi->host->pdev, command->command_orb_dma,
  1655. sizeof(struct sbp2_command_orb),
  1656. PCI_DMA_TODEVICE);
  1657. pci_dma_sync_single_for_device(hi->host->pdev, command->sge_dma,
  1658. sizeof(command->scatter_gather_element),
  1659. PCI_DMA_BIDIRECTIONAL);
  1660. /*
  1661. * Check to see if there are any previous orbs to use
  1662. */
  1663. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  1664. last_orb = scsi_id->last_orb;
  1665. last_orb_dma = scsi_id->last_orb_dma;
  1666. if (!last_orb) {
  1667. /*
  1668. * last_orb == NULL means: We know that the target's fetch agent
  1669. * is not active right now.
  1670. */
  1671. addr += SBP2_ORB_POINTER_OFFSET;
  1672. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1673. data[1] = command->command_orb_dma;
  1674. sbp2util_cpu_to_be32_buffer(data, 8);
  1675. length = 8;
  1676. } else {
  1677. /*
  1678. * last_orb != NULL means: We know that the target's fetch agent
  1679. * is (very probably) not dead or in reset state right now.
  1680. * We have an ORB already sent that we can append a new one to.
  1681. * The target's fetch agent may or may not have read this
  1682. * previous ORB yet.
  1683. */
  1684. pci_dma_sync_single_for_cpu(hi->host->pdev, last_orb_dma,
  1685. sizeof(struct sbp2_command_orb),
  1686. PCI_DMA_TODEVICE);
  1687. last_orb->next_ORB_lo = cpu_to_be32(command->command_orb_dma);
  1688. wmb();
  1689. /* Tells hardware that this pointer is valid */
  1690. last_orb->next_ORB_hi = 0;
  1691. pci_dma_sync_single_for_device(hi->host->pdev, last_orb_dma,
  1692. sizeof(struct sbp2_command_orb),
  1693. PCI_DMA_TODEVICE);
  1694. addr += SBP2_DOORBELL_OFFSET;
  1695. data[0] = 0;
  1696. length = 4;
  1697. }
  1698. scsi_id->last_orb = command_orb;
  1699. scsi_id->last_orb_dma = command->command_orb_dma;
  1700. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  1701. SBP2_ORB_DEBUG("write to %s register, command orb %p",
  1702. last_orb ? "DOORBELL" : "ORB_POINTER", command_orb);
  1703. if (sbp2util_node_write_no_wait(scsi_id->ne, addr, data, length))
  1704. SBP2_ERR("sbp2util_node_write_no_wait failed.\n");
  1705. /* We rely on SCSI EH to deal with _node_write_ failures. */
  1706. }
  1707. /*
  1708. * This function is called in order to begin a regular SBP-2 command.
  1709. */
  1710. static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
  1711. struct scsi_cmnd *SCpnt,
  1712. void (*done)(struct scsi_cmnd *))
  1713. {
  1714. unchar *cmd = (unchar *) SCpnt->cmnd;
  1715. unsigned int request_bufflen = SCpnt->request_bufflen;
  1716. struct sbp2_command_info *command;
  1717. SBP2_DEBUG_ENTER();
  1718. SBP2_DEBUG("SCSI transfer size = %x", request_bufflen);
  1719. SBP2_DEBUG("SCSI s/g elements = %x", (unsigned int)SCpnt->use_sg);
  1720. /*
  1721. * Allocate a command orb and s/g structure
  1722. */
  1723. command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done);
  1724. if (!command) {
  1725. return -EIO;
  1726. }
  1727. /*
  1728. * Now actually fill in the comamnd orb and sbp2 s/g list
  1729. */
  1730. sbp2_create_command_orb(scsi_id, command, cmd, SCpnt->use_sg,
  1731. request_bufflen, SCpnt->request_buffer,
  1732. SCpnt->sc_data_direction);
  1733. sbp2util_packet_dump(&command->command_orb, sizeof(struct sbp2_command_orb),
  1734. "sbp2 command orb", command->command_orb_dma);
  1735. /*
  1736. * Link up the orb, and ring the doorbell if needed
  1737. */
  1738. sbp2_link_orb_command(scsi_id, command);
  1739. return 0;
  1740. }
  1741. /*
  1742. * Translates SBP-2 status into SCSI sense data for check conditions
  1743. */
  1744. static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data)
  1745. {
  1746. SBP2_DEBUG_ENTER();
  1747. /*
  1748. * Ok, it's pretty ugly... ;-)
  1749. */
  1750. sense_data[0] = 0x70;
  1751. sense_data[1] = 0x0;
  1752. sense_data[2] = sbp2_status[9];
  1753. sense_data[3] = sbp2_status[12];
  1754. sense_data[4] = sbp2_status[13];
  1755. sense_data[5] = sbp2_status[14];
  1756. sense_data[6] = sbp2_status[15];
  1757. sense_data[7] = 10;
  1758. sense_data[8] = sbp2_status[16];
  1759. sense_data[9] = sbp2_status[17];
  1760. sense_data[10] = sbp2_status[18];
  1761. sense_data[11] = sbp2_status[19];
  1762. sense_data[12] = sbp2_status[10];
  1763. sense_data[13] = sbp2_status[11];
  1764. sense_data[14] = sbp2_status[20];
  1765. sense_data[15] = sbp2_status[21];
  1766. return sbp2_status[8] & 0x3f; /* return scsi status */
  1767. }
  1768. /*
  1769. * This function deals with status writes from the SBP-2 device
  1770. */
  1771. static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
  1772. int destid, quadlet_t *data, u64 addr,
  1773. size_t length, u16 fl)
  1774. {
  1775. struct sbp2scsi_host_info *hi;
  1776. struct scsi_id_instance_data *scsi_id = NULL, *scsi_id_tmp;
  1777. struct scsi_cmnd *SCpnt = NULL;
  1778. struct sbp2_status_block *sb;
  1779. u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
  1780. struct sbp2_command_info *command;
  1781. unsigned long flags;
  1782. SBP2_DEBUG_ENTER();
  1783. sbp2util_packet_dump(data, length, "sbp2 status write by device", (u32)addr);
  1784. if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
  1785. SBP2_ERR("Wrong size of status block");
  1786. return RCODE_ADDRESS_ERROR;
  1787. }
  1788. if (unlikely(!host)) {
  1789. SBP2_ERR("host is NULL - this is bad!");
  1790. return RCODE_ADDRESS_ERROR;
  1791. }
  1792. hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
  1793. if (unlikely(!hi)) {
  1794. SBP2_ERR("host info is NULL - this is bad!");
  1795. return RCODE_ADDRESS_ERROR;
  1796. }
  1797. /*
  1798. * Find our scsi_id structure by looking at the status fifo address
  1799. * written to by the sbp2 device.
  1800. */
  1801. list_for_each_entry(scsi_id_tmp, &hi->scsi_ids, scsi_list) {
  1802. if (scsi_id_tmp->ne->nodeid == nodeid &&
  1803. scsi_id_tmp->status_fifo_addr == addr) {
  1804. scsi_id = scsi_id_tmp;
  1805. break;
  1806. }
  1807. }
  1808. if (unlikely(!scsi_id)) {
  1809. SBP2_ERR("scsi_id is NULL - device is gone?");
  1810. return RCODE_ADDRESS_ERROR;
  1811. }
  1812. /*
  1813. * Put response into scsi_id status fifo buffer. The first two bytes
  1814. * come in big endian bit order. Often the target writes only a
  1815. * truncated status block, minimally the first two quadlets. The rest
  1816. * is implied to be zeros.
  1817. */
  1818. sb = &scsi_id->status_block;
  1819. memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
  1820. memcpy(sb, data, length);
  1821. sbp2util_be32_to_cpu_buffer(sb, 8);
  1822. /*
  1823. * Ignore unsolicited status. Handle command ORB status.
  1824. */
  1825. if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
  1826. command = NULL;
  1827. else
  1828. command = sbp2util_find_command_for_orb(scsi_id,
  1829. sb->ORB_offset_lo);
  1830. if (command) {
  1831. SBP2_DEBUG("Found status for command ORB");
  1832. pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
  1833. sizeof(struct sbp2_command_orb),
  1834. PCI_DMA_TODEVICE);
  1835. pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
  1836. sizeof(command->scatter_gather_element),
  1837. PCI_DMA_BIDIRECTIONAL);
  1838. SBP2_ORB_DEBUG("matched command orb %p", &command->command_orb);
  1839. outstanding_orb_decr;
  1840. /*
  1841. * Matched status with command, now grab scsi command pointers
  1842. * and check status.
  1843. */
  1844. /*
  1845. * FIXME: If the src field in the status is 1, the ORB DMA must
  1846. * not be reused until status for a subsequent ORB is received.
  1847. */
  1848. SCpnt = command->Current_SCpnt;
  1849. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  1850. sbp2util_mark_command_completed(scsi_id, command);
  1851. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  1852. if (SCpnt) {
  1853. if (STATUS_TEST_RS(sb->ORB_offset_hi_misc))
  1854. scsi_status =
  1855. SBP2_SCSI_STATUS_COMMAND_TERMINATED;
  1856. /*
  1857. * See if the target stored any scsi status information.
  1858. */
  1859. if (STATUS_GET_LEN(sb->ORB_offset_hi_misc) > 1) {
  1860. SBP2_DEBUG("CHECK CONDITION");
  1861. scsi_status = sbp2_status_to_sense_data(
  1862. (unchar *)sb, SCpnt->sense_buffer);
  1863. }
  1864. /*
  1865. * Check to see if the dead bit is set. If so, we'll
  1866. * have to initiate a fetch agent reset.
  1867. */
  1868. if (STATUS_TEST_D(sb->ORB_offset_hi_misc)) {
  1869. SBP2_DEBUG("Dead bit set - "
  1870. "initiating fetch agent reset");
  1871. sbp2_agent_reset(scsi_id, 0);
  1872. }
  1873. SBP2_ORB_DEBUG("completing command orb %p", &command->command_orb);
  1874. }
  1875. /*
  1876. * Check here to see if there are no commands in-use. If there
  1877. * are none, we know that the fetch agent left the active state
  1878. * _and_ that we did not reactivate it yet. Therefore clear
  1879. * last_orb so that next time we write directly to the
  1880. * ORB_POINTER register. That way the fetch agent does not need
  1881. * to refetch the next_ORB.
  1882. */
  1883. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  1884. if (list_empty(&scsi_id->sbp2_command_orb_inuse))
  1885. scsi_id->last_orb = NULL;
  1886. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  1887. } else {
  1888. /*
  1889. * It's probably a login/logout/reconnect status.
  1890. */
  1891. if ((sb->ORB_offset_lo == scsi_id->reconnect_orb_dma) ||
  1892. (sb->ORB_offset_lo == scsi_id->login_orb_dma) ||
  1893. (sb->ORB_offset_lo == scsi_id->query_logins_orb_dma) ||
  1894. (sb->ORB_offset_lo == scsi_id->logout_orb_dma))
  1895. atomic_set(&scsi_id->sbp2_login_complete, 1);
  1896. }
  1897. if (SCpnt) {
  1898. SBP2_DEBUG("Completing SCSI command");
  1899. sbp2scsi_complete_command(scsi_id, scsi_status, SCpnt,
  1900. command->Current_done);
  1901. SBP2_ORB_DEBUG("command orb completed");
  1902. }
  1903. return RCODE_COMPLETE;
  1904. }
  1905. /**************************************
  1906. * SCSI interface related section
  1907. **************************************/
  1908. /*
  1909. * This routine is the main request entry routine for doing I/O. It is
  1910. * called from the scsi stack directly.
  1911. */
  1912. static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
  1913. void (*done)(struct scsi_cmnd *))
  1914. {
  1915. struct scsi_id_instance_data *scsi_id =
  1916. (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
  1917. struct sbp2scsi_host_info *hi;
  1918. int result = DID_NO_CONNECT << 16;
  1919. SBP2_DEBUG_ENTER();
  1920. #if (CONFIG_IEEE1394_SBP2_DEBUG >= 2) || defined(CONFIG_IEEE1394_SBP2_PACKET_DUMP)
  1921. scsi_print_command(SCpnt);
  1922. #endif
  1923. if (!sbp2util_node_is_available(scsi_id))
  1924. goto done;
  1925. hi = scsi_id->hi;
  1926. if (!hi) {
  1927. SBP2_ERR("sbp2scsi_host_info is NULL - this is bad!");
  1928. goto done;
  1929. }
  1930. /*
  1931. * Until we handle multiple luns, just return selection time-out
  1932. * to any IO directed at non-zero LUNs
  1933. */
  1934. if (SCpnt->device->lun)
  1935. goto done;
  1936. /*
  1937. * Check for request sense command, and handle it here
  1938. * (autorequest sense)
  1939. */
  1940. if (SCpnt->cmnd[0] == REQUEST_SENSE) {
  1941. SBP2_DEBUG("REQUEST_SENSE");
  1942. memcpy(SCpnt->request_buffer, SCpnt->sense_buffer, SCpnt->request_bufflen);
  1943. memset(SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer));
  1944. sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_GOOD, SCpnt, done);
  1945. return 0;
  1946. }
  1947. /*
  1948. * Check to see if we are in the middle of a bus reset.
  1949. */
  1950. if (!hpsb_node_entry_valid(scsi_id->ne)) {
  1951. SBP2_ERR("Bus reset in progress - rejecting command");
  1952. result = DID_BUS_BUSY << 16;
  1953. goto done;
  1954. }
  1955. /*
  1956. * Bidirectional commands are not yet implemented,
  1957. * and unknown transfer direction not handled.
  1958. */
  1959. if (SCpnt->sc_data_direction == DMA_BIDIRECTIONAL) {
  1960. SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
  1961. result = DID_ERROR << 16;
  1962. goto done;
  1963. }
  1964. /*
  1965. * Try and send our SCSI command
  1966. */
  1967. if (sbp2_send_command(scsi_id, SCpnt, done)) {
  1968. SBP2_ERR("Error sending SCSI command");
  1969. sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
  1970. SCpnt, done);
  1971. }
  1972. return 0;
  1973. done:
  1974. SCpnt->result = result;
  1975. done(SCpnt);
  1976. return 0;
  1977. }
  1978. /*
  1979. * This function is called in order to complete all outstanding SBP-2
  1980. * commands (in case of resets, etc.).
  1981. */
  1982. static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
  1983. u32 status)
  1984. {
  1985. struct sbp2scsi_host_info *hi = scsi_id->hi;
  1986. struct list_head *lh;
  1987. struct sbp2_command_info *command;
  1988. unsigned long flags;
  1989. SBP2_DEBUG_ENTER();
  1990. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  1991. while (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  1992. SBP2_DEBUG("Found pending command to complete");
  1993. lh = scsi_id->sbp2_command_orb_inuse.next;
  1994. command = list_entry(lh, struct sbp2_command_info, list);
  1995. pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
  1996. sizeof(struct sbp2_command_orb),
  1997. PCI_DMA_TODEVICE);
  1998. pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
  1999. sizeof(command->scatter_gather_element),
  2000. PCI_DMA_BIDIRECTIONAL);
  2001. sbp2util_mark_command_completed(scsi_id, command);
  2002. if (command->Current_SCpnt) {
  2003. command->Current_SCpnt->result = status << 16;
  2004. command->Current_done(command->Current_SCpnt);
  2005. }
  2006. }
  2007. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  2008. return;
  2009. }
  2010. /*
  2011. * This function is called in order to complete a regular SBP-2 command.
  2012. *
  2013. * This can be called in interrupt context.
  2014. */
  2015. static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
  2016. u32 scsi_status, struct scsi_cmnd *SCpnt,
  2017. void (*done)(struct scsi_cmnd *))
  2018. {
  2019. SBP2_DEBUG_ENTER();
  2020. /*
  2021. * Sanity
  2022. */
  2023. if (!SCpnt) {
  2024. SBP2_ERR("SCpnt is NULL");
  2025. return;
  2026. }
  2027. /*
  2028. * If a bus reset is in progress and there was an error, don't
  2029. * complete the command, just let it get retried at the end of the
  2030. * bus reset.
  2031. */
  2032. if (!hpsb_node_entry_valid(scsi_id->ne)
  2033. && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
  2034. SBP2_ERR("Bus reset in progress - retry command later");
  2035. return;
  2036. }
  2037. /*
  2038. * Switch on scsi status
  2039. */
  2040. switch (scsi_status) {
  2041. case SBP2_SCSI_STATUS_GOOD:
  2042. SCpnt->result = DID_OK << 16;
  2043. break;
  2044. case SBP2_SCSI_STATUS_BUSY:
  2045. SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
  2046. SCpnt->result = DID_BUS_BUSY << 16;
  2047. break;
  2048. case SBP2_SCSI_STATUS_CHECK_CONDITION:
  2049. SBP2_DEBUG("SBP2_SCSI_STATUS_CHECK_CONDITION");
  2050. SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
  2051. #if CONFIG_IEEE1394_SBP2_DEBUG >= 1
  2052. scsi_print_command(SCpnt);
  2053. scsi_print_sense(SBP2_DEVICE_NAME, SCpnt);
  2054. #endif
  2055. break;
  2056. case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
  2057. SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
  2058. SCpnt->result = DID_NO_CONNECT << 16;
  2059. scsi_print_command(SCpnt);
  2060. break;
  2061. case SBP2_SCSI_STATUS_CONDITION_MET:
  2062. case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
  2063. case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
  2064. SBP2_ERR("Bad SCSI status = %x", scsi_status);
  2065. SCpnt->result = DID_ERROR << 16;
  2066. scsi_print_command(SCpnt);
  2067. break;
  2068. default:
  2069. SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
  2070. SCpnt->result = DID_ERROR << 16;
  2071. }
  2072. /*
  2073. * If a bus reset is in progress and there was an error, complete
  2074. * the command as busy so that it will get retried.
  2075. */
  2076. if (!hpsb_node_entry_valid(scsi_id->ne)
  2077. && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
  2078. SBP2_ERR("Completing command with busy (bus reset)");
  2079. SCpnt->result = DID_BUS_BUSY << 16;
  2080. }
  2081. /*
  2082. * If a unit attention occurs, return busy status so it gets
  2083. * retried... it could have happened because of a 1394 bus reset
  2084. * or hot-plug...
  2085. * XXX DID_BUS_BUSY is actually a bad idea because it will defy
  2086. * the scsi layer's retry logic.
  2087. */
  2088. #if 0
  2089. if ((scsi_status == SBP2_SCSI_STATUS_CHECK_CONDITION) &&
  2090. (SCpnt->sense_buffer[2] == UNIT_ATTENTION)) {
  2091. SBP2_DEBUG("UNIT ATTENTION - return busy");
  2092. SCpnt->result = DID_BUS_BUSY << 16;
  2093. }
  2094. #endif
  2095. /*
  2096. * Tell scsi stack that we're done with this command
  2097. */
  2098. done(SCpnt);
  2099. }
  2100. static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
  2101. {
  2102. struct scsi_id_instance_data *scsi_id =
  2103. (struct scsi_id_instance_data *)sdev->host->hostdata[0];
  2104. scsi_id->sdev = sdev;
  2105. if (scsi_id->workarounds & SBP2_WORKAROUND_INQUIRY_36)
  2106. sdev->inquiry_len = 36;
  2107. return 0;
  2108. }
  2109. static int sbp2scsi_slave_configure(struct scsi_device *sdev)
  2110. {
  2111. struct scsi_id_instance_data *scsi_id =
  2112. (struct scsi_id_instance_data *)sdev->host->hostdata[0];
  2113. blk_queue_dma_alignment(sdev->request_queue, (512 - 1));
  2114. sdev->use_10_for_rw = 1;
  2115. sdev->use_10_for_ms = 1;
  2116. if (sdev->type == TYPE_DISK &&
  2117. scsi_id->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
  2118. sdev->skip_ms_page_8 = 1;
  2119. if (scsi_id->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
  2120. sdev->fix_capacity = 1;
  2121. if (scsi_id->ne->guid_vendor_id == 0x0010b9 && /* Maxtor's OUI */
  2122. (sdev->type == TYPE_DISK || sdev->type == TYPE_RBC))
  2123. sdev->allow_restart = 1;
  2124. return 0;
  2125. }
  2126. static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
  2127. {
  2128. ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = NULL;
  2129. return;
  2130. }
  2131. /*
  2132. * Called by scsi stack when something has really gone wrong. Usually
  2133. * called when a command has timed-out for some reason.
  2134. */
  2135. static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
  2136. {
  2137. struct scsi_id_instance_data *scsi_id =
  2138. (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
  2139. struct sbp2scsi_host_info *hi = scsi_id->hi;
  2140. struct sbp2_command_info *command;
  2141. unsigned long flags;
  2142. SBP2_ERR("aborting sbp2 command");
  2143. scsi_print_command(SCpnt);
  2144. if (sbp2util_node_is_available(scsi_id)) {
  2145. /*
  2146. * Right now, just return any matching command structures
  2147. * to the free pool.
  2148. */
  2149. spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
  2150. command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
  2151. if (command) {
  2152. SBP2_DEBUG("Found command to abort");
  2153. pci_dma_sync_single_for_cpu(hi->host->pdev,
  2154. command->command_orb_dma,
  2155. sizeof(struct sbp2_command_orb),
  2156. PCI_DMA_TODEVICE);
  2157. pci_dma_sync_single_for_cpu(hi->host->pdev,
  2158. command->sge_dma,
  2159. sizeof(command->scatter_gather_element),
  2160. PCI_DMA_BIDIRECTIONAL);
  2161. sbp2util_mark_command_completed(scsi_id, command);
  2162. if (command->Current_SCpnt) {
  2163. command->Current_SCpnt->result = DID_ABORT << 16;
  2164. command->Current_done(command->Current_SCpnt);
  2165. }
  2166. }
  2167. spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
  2168. /*
  2169. * Initiate a fetch agent reset.
  2170. */
  2171. sbp2_agent_reset(scsi_id, 0);
  2172. sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
  2173. }
  2174. return SUCCESS;
  2175. }
  2176. /*
  2177. * Called by scsi stack when something has really gone wrong.
  2178. */
  2179. static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
  2180. {
  2181. struct scsi_id_instance_data *scsi_id =
  2182. (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
  2183. SBP2_ERR("reset requested");
  2184. if (sbp2util_node_is_available(scsi_id)) {
  2185. SBP2_ERR("Generating sbp2 fetch agent reset");
  2186. sbp2_agent_reset(scsi_id, 0);
  2187. }
  2188. return SUCCESS;
  2189. }
  2190. static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
  2191. struct device_attribute *attr,
  2192. char *buf)
  2193. {
  2194. struct scsi_device *sdev;
  2195. struct scsi_id_instance_data *scsi_id;
  2196. int lun;
  2197. if (!(sdev = to_scsi_device(dev)))
  2198. return 0;
  2199. if (!(scsi_id = (struct scsi_id_instance_data *)sdev->host->hostdata[0]))
  2200. return 0;
  2201. lun = ORB_SET_LUN(scsi_id->sbp2_lun);
  2202. return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)scsi_id->ne->guid,
  2203. scsi_id->ud->id, lun);
  2204. }
  2205. static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
  2206. static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
  2207. &dev_attr_ieee1394_id,
  2208. NULL
  2209. };
  2210. MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
  2211. MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
  2212. MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
  2213. MODULE_LICENSE("GPL");
  2214. /* SCSI host template */
  2215. static struct scsi_host_template scsi_driver_template = {
  2216. .module = THIS_MODULE,
  2217. .name = "SBP-2 IEEE-1394",
  2218. .proc_name = SBP2_DEVICE_NAME,
  2219. .queuecommand = sbp2scsi_queuecommand,
  2220. .eh_abort_handler = sbp2scsi_abort,
  2221. .eh_device_reset_handler = sbp2scsi_reset,
  2222. .slave_alloc = sbp2scsi_slave_alloc,
  2223. .slave_configure = sbp2scsi_slave_configure,
  2224. .slave_destroy = sbp2scsi_slave_destroy,
  2225. .this_id = -1,
  2226. .sg_tablesize = SG_ALL,
  2227. .use_clustering = ENABLE_CLUSTERING,
  2228. .cmd_per_lun = SBP2_MAX_CMDS,
  2229. .can_queue = SBP2_MAX_CMDS,
  2230. .emulated = 1,
  2231. .sdev_attrs = sbp2_sysfs_sdev_attrs,
  2232. };
  2233. static int sbp2_module_init(void)
  2234. {
  2235. int ret;
  2236. SBP2_DEBUG_ENTER();
  2237. /* Module load debug option to force one command at a time (serializing I/O) */
  2238. if (serialize_io) {
  2239. SBP2_INFO("Driver forced to serialize I/O (serialize_io=1)");
  2240. SBP2_INFO("Try serialize_io=0 for better performance");
  2241. scsi_driver_template.can_queue = 1;
  2242. scsi_driver_template.cmd_per_lun = 1;
  2243. }
  2244. if (sbp2_default_workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
  2245. (max_sectors * 512) > (128 * 1024))
  2246. max_sectors = 128 * 1024 / 512;
  2247. scsi_driver_template.max_sectors = max_sectors;
  2248. /* Register our high level driver with 1394 stack */
  2249. hpsb_register_highlevel(&sbp2_highlevel);
  2250. ret = hpsb_register_protocol(&sbp2_driver);
  2251. if (ret) {
  2252. SBP2_ERR("Failed to register protocol");
  2253. hpsb_unregister_highlevel(&sbp2_highlevel);
  2254. return ret;
  2255. }
  2256. return 0;
  2257. }
  2258. static void __exit sbp2_module_exit(void)
  2259. {
  2260. SBP2_DEBUG_ENTER();
  2261. hpsb_unregister_protocol(&sbp2_driver);
  2262. hpsb_unregister_highlevel(&sbp2_highlevel);
  2263. }
  2264. module_init(sbp2_module_init);
  2265. module_exit(sbp2_module_exit);