sbp2.c 79 KB

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