qla_os.c 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943
  1. /*
  2. * QLogic Fibre Channel HBA Driver
  3. * Copyright (c) 2003-2008 QLogic Corporation
  4. *
  5. * See LICENSE.qla2xxx for copyright and licensing details.
  6. */
  7. #include "qla_def.h"
  8. #include <linux/moduleparam.h>
  9. #include <linux/vmalloc.h>
  10. #include <linux/delay.h>
  11. #include <linux/kthread.h>
  12. #include <linux/mutex.h>
  13. #include <scsi/scsi_tcq.h>
  14. #include <scsi/scsicam.h>
  15. #include <scsi/scsi_transport.h>
  16. #include <scsi/scsi_transport_fc.h>
  17. /*
  18. * Driver version
  19. */
  20. char qla2x00_version_str[40];
  21. /*
  22. * SRB allocation cache
  23. */
  24. static struct kmem_cache *srb_cachep;
  25. int ql2xlogintimeout = 20;
  26. module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
  27. MODULE_PARM_DESC(ql2xlogintimeout,
  28. "Login timeout value in seconds.");
  29. int qlport_down_retry;
  30. module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
  31. MODULE_PARM_DESC(qlport_down_retry,
  32. "Maximum number of command retries to a port that returns "
  33. "a PORT-DOWN status.");
  34. int ql2xplogiabsentdevice;
  35. module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
  36. MODULE_PARM_DESC(ql2xplogiabsentdevice,
  37. "Option to enable PLOGI to devices that are not present after "
  38. "a Fabric scan. This is needed for several broken switches. "
  39. "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
  40. int ql2xloginretrycount = 0;
  41. module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
  42. MODULE_PARM_DESC(ql2xloginretrycount,
  43. "Specify an alternate value for the NVRAM login retry count.");
  44. int ql2xallocfwdump = 1;
  45. module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
  46. MODULE_PARM_DESC(ql2xallocfwdump,
  47. "Option to enable allocation of memory for a firmware dump "
  48. "during HBA initialization. Memory allocation requirements "
  49. "vary by ISP type. Default is 1 - allocate memory.");
  50. int ql2xextended_error_logging;
  51. module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
  52. MODULE_PARM_DESC(ql2xextended_error_logging,
  53. "Option to enable extended error logging, "
  54. "Default is 0 - no logging. 1 - log errors.");
  55. static void qla2x00_free_device(scsi_qla_host_t *);
  56. static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
  57. int ql2xfdmienable=1;
  58. module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
  59. MODULE_PARM_DESC(ql2xfdmienable,
  60. "Enables FDMI registratons "
  61. "Default is 0 - no FDMI. 1 - perfom FDMI.");
  62. #define MAX_Q_DEPTH 32
  63. static int ql2xmaxqdepth = MAX_Q_DEPTH;
  64. module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
  65. MODULE_PARM_DESC(ql2xmaxqdepth,
  66. "Maximum queue depth to report for target devices.");
  67. int ql2xqfullrampup = 120;
  68. module_param(ql2xqfullrampup, int, S_IRUGO|S_IWUSR);
  69. MODULE_PARM_DESC(ql2xqfullrampup,
  70. "Number of seconds to wait to begin to ramp-up the queue "
  71. "depth for a device after a queue-full condition has been "
  72. "detected. Default is 120 seconds.");
  73. int ql2xiidmaenable=1;
  74. module_param(ql2xiidmaenable, int, S_IRUGO|S_IRUSR);
  75. MODULE_PARM_DESC(ql2xiidmaenable,
  76. "Enables iIDMA settings "
  77. "Default is 1 - perform iIDMA. 0 - no iIDMA.");
  78. /*
  79. * SCSI host template entry points
  80. */
  81. static int qla2xxx_slave_configure(struct scsi_device * device);
  82. static int qla2xxx_slave_alloc(struct scsi_device *);
  83. static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
  84. static void qla2xxx_scan_start(struct Scsi_Host *);
  85. static void qla2xxx_slave_destroy(struct scsi_device *);
  86. static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
  87. void (*fn)(struct scsi_cmnd *));
  88. static int qla24xx_queuecommand(struct scsi_cmnd *cmd,
  89. void (*fn)(struct scsi_cmnd *));
  90. static int qla2xxx_eh_abort(struct scsi_cmnd *);
  91. static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
  92. static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
  93. static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
  94. static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
  95. static int qla2x00_change_queue_depth(struct scsi_device *, int);
  96. static int qla2x00_change_queue_type(struct scsi_device *, int);
  97. static struct scsi_host_template qla2x00_driver_template = {
  98. .module = THIS_MODULE,
  99. .name = QLA2XXX_DRIVER_NAME,
  100. .queuecommand = qla2x00_queuecommand,
  101. .eh_abort_handler = qla2xxx_eh_abort,
  102. .eh_device_reset_handler = qla2xxx_eh_device_reset,
  103. .eh_target_reset_handler = qla2xxx_eh_target_reset,
  104. .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
  105. .eh_host_reset_handler = qla2xxx_eh_host_reset,
  106. .slave_configure = qla2xxx_slave_configure,
  107. .slave_alloc = qla2xxx_slave_alloc,
  108. .slave_destroy = qla2xxx_slave_destroy,
  109. .scan_finished = qla2xxx_scan_finished,
  110. .scan_start = qla2xxx_scan_start,
  111. .change_queue_depth = qla2x00_change_queue_depth,
  112. .change_queue_type = qla2x00_change_queue_type,
  113. .this_id = -1,
  114. .cmd_per_lun = 3,
  115. .use_clustering = ENABLE_CLUSTERING,
  116. .sg_tablesize = SG_ALL,
  117. /*
  118. * The RISC allows for each command to transfer (2^32-1) bytes of data,
  119. * which equates to 0x800000 sectors.
  120. */
  121. .max_sectors = 0xFFFF,
  122. .shost_attrs = qla2x00_host_attrs,
  123. };
  124. struct scsi_host_template qla24xx_driver_template = {
  125. .module = THIS_MODULE,
  126. .name = QLA2XXX_DRIVER_NAME,
  127. .queuecommand = qla24xx_queuecommand,
  128. .eh_abort_handler = qla2xxx_eh_abort,
  129. .eh_device_reset_handler = qla2xxx_eh_device_reset,
  130. .eh_target_reset_handler = qla2xxx_eh_target_reset,
  131. .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
  132. .eh_host_reset_handler = qla2xxx_eh_host_reset,
  133. .slave_configure = qla2xxx_slave_configure,
  134. .slave_alloc = qla2xxx_slave_alloc,
  135. .slave_destroy = qla2xxx_slave_destroy,
  136. .scan_finished = qla2xxx_scan_finished,
  137. .scan_start = qla2xxx_scan_start,
  138. .change_queue_depth = qla2x00_change_queue_depth,
  139. .change_queue_type = qla2x00_change_queue_type,
  140. .this_id = -1,
  141. .cmd_per_lun = 3,
  142. .use_clustering = ENABLE_CLUSTERING,
  143. .sg_tablesize = SG_ALL,
  144. .max_sectors = 0xFFFF,
  145. .shost_attrs = qla2x00_host_attrs,
  146. };
  147. static struct scsi_transport_template *qla2xxx_transport_template = NULL;
  148. struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
  149. /* TODO Convert to inlines
  150. *
  151. * Timer routines
  152. */
  153. __inline__ void
  154. qla2x00_start_timer(scsi_qla_host_t *ha, void *func, unsigned long interval)
  155. {
  156. init_timer(&ha->timer);
  157. ha->timer.expires = jiffies + interval * HZ;
  158. ha->timer.data = (unsigned long)ha;
  159. ha->timer.function = (void (*)(unsigned long))func;
  160. add_timer(&ha->timer);
  161. ha->timer_active = 1;
  162. }
  163. static inline void
  164. qla2x00_restart_timer(scsi_qla_host_t *ha, unsigned long interval)
  165. {
  166. mod_timer(&ha->timer, jiffies + interval * HZ);
  167. }
  168. static __inline__ void
  169. qla2x00_stop_timer(scsi_qla_host_t *ha)
  170. {
  171. del_timer_sync(&ha->timer);
  172. ha->timer_active = 0;
  173. }
  174. static int qla2x00_do_dpc(void *data);
  175. static void qla2x00_rst_aen(scsi_qla_host_t *);
  176. static int qla2x00_mem_alloc(scsi_qla_host_t *);
  177. static void qla2x00_mem_free(scsi_qla_host_t *ha);
  178. static void qla2x00_sp_free_dma(scsi_qla_host_t *, srb_t *);
  179. /* -------------------------------------------------------------------------- */
  180. static char *
  181. qla2x00_pci_info_str(struct scsi_qla_host *ha, char *str)
  182. {
  183. static char *pci_bus_modes[] = {
  184. "33", "66", "100", "133",
  185. };
  186. uint16_t pci_bus;
  187. strcpy(str, "PCI");
  188. pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
  189. if (pci_bus) {
  190. strcat(str, "-X (");
  191. strcat(str, pci_bus_modes[pci_bus]);
  192. } else {
  193. pci_bus = (ha->pci_attr & BIT_8) >> 8;
  194. strcat(str, " (");
  195. strcat(str, pci_bus_modes[pci_bus]);
  196. }
  197. strcat(str, " MHz)");
  198. return (str);
  199. }
  200. static char *
  201. qla24xx_pci_info_str(struct scsi_qla_host *ha, char *str)
  202. {
  203. static char *pci_bus_modes[] = { "33", "66", "100", "133", };
  204. uint32_t pci_bus;
  205. int pcie_reg;
  206. pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
  207. if (pcie_reg) {
  208. char lwstr[6];
  209. uint16_t pcie_lstat, lspeed, lwidth;
  210. pcie_reg += 0x12;
  211. pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
  212. lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
  213. lwidth = (pcie_lstat &
  214. (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
  215. strcpy(str, "PCIe (");
  216. if (lspeed == 1)
  217. strcat(str, "2.5GT/s ");
  218. else if (lspeed == 2)
  219. strcat(str, "5.0GT/s ");
  220. else
  221. strcat(str, "<unknown> ");
  222. snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
  223. strcat(str, lwstr);
  224. return str;
  225. }
  226. strcpy(str, "PCI");
  227. pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
  228. if (pci_bus == 0 || pci_bus == 8) {
  229. strcat(str, " (");
  230. strcat(str, pci_bus_modes[pci_bus >> 3]);
  231. } else {
  232. strcat(str, "-X ");
  233. if (pci_bus & BIT_2)
  234. strcat(str, "Mode 2");
  235. else
  236. strcat(str, "Mode 1");
  237. strcat(str, " (");
  238. strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
  239. }
  240. strcat(str, " MHz)");
  241. return str;
  242. }
  243. static char *
  244. qla2x00_fw_version_str(struct scsi_qla_host *ha, char *str)
  245. {
  246. char un_str[10];
  247. sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
  248. ha->fw_minor_version,
  249. ha->fw_subminor_version);
  250. if (ha->fw_attributes & BIT_9) {
  251. strcat(str, "FLX");
  252. return (str);
  253. }
  254. switch (ha->fw_attributes & 0xFF) {
  255. case 0x7:
  256. strcat(str, "EF");
  257. break;
  258. case 0x17:
  259. strcat(str, "TP");
  260. break;
  261. case 0x37:
  262. strcat(str, "IP");
  263. break;
  264. case 0x77:
  265. strcat(str, "VI");
  266. break;
  267. default:
  268. sprintf(un_str, "(%x)", ha->fw_attributes);
  269. strcat(str, un_str);
  270. break;
  271. }
  272. if (ha->fw_attributes & 0x100)
  273. strcat(str, "X");
  274. return (str);
  275. }
  276. static char *
  277. qla24xx_fw_version_str(struct scsi_qla_host *ha, char *str)
  278. {
  279. sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
  280. ha->fw_minor_version,
  281. ha->fw_subminor_version);
  282. if (ha->fw_attributes & BIT_0)
  283. strcat(str, "[Class 2] ");
  284. if (ha->fw_attributes & BIT_1)
  285. strcat(str, "[IP] ");
  286. if (ha->fw_attributes & BIT_2)
  287. strcat(str, "[Multi-ID] ");
  288. if (ha->fw_attributes & BIT_3)
  289. strcat(str, "[SB-2] ");
  290. if (ha->fw_attributes & BIT_4)
  291. strcat(str, "[T10 CRC] ");
  292. if (ha->fw_attributes & BIT_5)
  293. strcat(str, "[VI] ");
  294. if (ha->fw_attributes & BIT_10)
  295. strcat(str, "[84XX] ");
  296. if (ha->fw_attributes & BIT_13)
  297. strcat(str, "[Experimental]");
  298. return str;
  299. }
  300. static inline srb_t *
  301. qla2x00_get_new_sp(scsi_qla_host_t *ha, fc_port_t *fcport,
  302. struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
  303. {
  304. srb_t *sp;
  305. sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
  306. if (!sp)
  307. return sp;
  308. sp->ha = ha;
  309. sp->fcport = fcport;
  310. sp->cmd = cmd;
  311. sp->flags = 0;
  312. CMD_SP(cmd) = (void *)sp;
  313. cmd->scsi_done = done;
  314. return sp;
  315. }
  316. static int
  317. qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
  318. {
  319. scsi_qla_host_t *ha = shost_priv(cmd->device->host);
  320. fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
  321. struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
  322. srb_t *sp;
  323. int rval;
  324. if (unlikely(pci_channel_offline(ha->pdev))) {
  325. cmd->result = DID_REQUEUE << 16;
  326. goto qc_fail_command;
  327. }
  328. rval = fc_remote_port_chkready(rport);
  329. if (rval) {
  330. cmd->result = rval;
  331. goto qc_fail_command;
  332. }
  333. /* Close window on fcport/rport state-transitioning. */
  334. if (fcport->drport) {
  335. cmd->result = DID_IMM_RETRY << 16;
  336. goto qc_fail_command;
  337. }
  338. if (atomic_read(&fcport->state) != FCS_ONLINE) {
  339. if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
  340. atomic_read(&ha->loop_state) == LOOP_DEAD) {
  341. cmd->result = DID_NO_CONNECT << 16;
  342. goto qc_fail_command;
  343. }
  344. goto qc_host_busy;
  345. }
  346. spin_unlock_irq(ha->host->host_lock);
  347. sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
  348. if (!sp)
  349. goto qc_host_busy_lock;
  350. rval = qla2x00_start_scsi(sp);
  351. if (rval != QLA_SUCCESS)
  352. goto qc_host_busy_free_sp;
  353. spin_lock_irq(ha->host->host_lock);
  354. return 0;
  355. qc_host_busy_free_sp:
  356. qla2x00_sp_free_dma(ha, sp);
  357. mempool_free(sp, ha->srb_mempool);
  358. qc_host_busy_lock:
  359. spin_lock_irq(ha->host->host_lock);
  360. qc_host_busy:
  361. return SCSI_MLQUEUE_HOST_BUSY;
  362. qc_fail_command:
  363. done(cmd);
  364. return 0;
  365. }
  366. static int
  367. qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
  368. {
  369. scsi_qla_host_t *ha = shost_priv(cmd->device->host);
  370. fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
  371. struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
  372. srb_t *sp;
  373. int rval;
  374. scsi_qla_host_t *pha = to_qla_parent(ha);
  375. if (unlikely(pci_channel_offline(pha->pdev))) {
  376. cmd->result = DID_REQUEUE << 16;
  377. goto qc24_fail_command;
  378. }
  379. rval = fc_remote_port_chkready(rport);
  380. if (rval) {
  381. cmd->result = rval;
  382. goto qc24_fail_command;
  383. }
  384. /* Close window on fcport/rport state-transitioning. */
  385. if (fcport->drport) {
  386. cmd->result = DID_IMM_RETRY << 16;
  387. goto qc24_fail_command;
  388. }
  389. if (atomic_read(&fcport->state) != FCS_ONLINE) {
  390. if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
  391. atomic_read(&pha->loop_state) == LOOP_DEAD) {
  392. cmd->result = DID_NO_CONNECT << 16;
  393. goto qc24_fail_command;
  394. }
  395. goto qc24_host_busy;
  396. }
  397. spin_unlock_irq(ha->host->host_lock);
  398. sp = qla2x00_get_new_sp(pha, fcport, cmd, done);
  399. if (!sp)
  400. goto qc24_host_busy_lock;
  401. rval = qla24xx_start_scsi(sp);
  402. if (rval != QLA_SUCCESS)
  403. goto qc24_host_busy_free_sp;
  404. spin_lock_irq(ha->host->host_lock);
  405. return 0;
  406. qc24_host_busy_free_sp:
  407. qla2x00_sp_free_dma(pha, sp);
  408. mempool_free(sp, pha->srb_mempool);
  409. qc24_host_busy_lock:
  410. spin_lock_irq(ha->host->host_lock);
  411. qc24_host_busy:
  412. return SCSI_MLQUEUE_HOST_BUSY;
  413. qc24_fail_command:
  414. done(cmd);
  415. return 0;
  416. }
  417. /*
  418. * qla2x00_eh_wait_on_command
  419. * Waits for the command to be returned by the Firmware for some
  420. * max time.
  421. *
  422. * Input:
  423. * ha = actual ha whose done queue will contain the command
  424. * returned by firmware.
  425. * cmd = Scsi Command to wait on.
  426. * flag = Abort/Reset(Bus or Device Reset)
  427. *
  428. * Return:
  429. * Not Found : 0
  430. * Found : 1
  431. */
  432. static int
  433. qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd)
  434. {
  435. #define ABORT_POLLING_PERIOD 1000
  436. #define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
  437. unsigned long wait_iter = ABORT_WAIT_ITER;
  438. int ret = QLA_SUCCESS;
  439. while (CMD_SP(cmd)) {
  440. msleep(ABORT_POLLING_PERIOD);
  441. if (--wait_iter)
  442. break;
  443. }
  444. if (CMD_SP(cmd))
  445. ret = QLA_FUNCTION_FAILED;
  446. return ret;
  447. }
  448. /*
  449. * qla2x00_wait_for_hba_online
  450. * Wait till the HBA is online after going through
  451. * <= MAX_RETRIES_OF_ISP_ABORT or
  452. * finally HBA is disabled ie marked offline
  453. *
  454. * Input:
  455. * ha - pointer to host adapter structure
  456. *
  457. * Note:
  458. * Does context switching-Release SPIN_LOCK
  459. * (if any) before calling this routine.
  460. *
  461. * Return:
  462. * Success (Adapter is online) : 0
  463. * Failed (Adapter is offline/disabled) : 1
  464. */
  465. int
  466. qla2x00_wait_for_hba_online(scsi_qla_host_t *ha)
  467. {
  468. int return_status;
  469. unsigned long wait_online;
  470. scsi_qla_host_t *pha = to_qla_parent(ha);
  471. wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
  472. while (((test_bit(ISP_ABORT_NEEDED, &pha->dpc_flags)) ||
  473. test_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags) ||
  474. test_bit(ISP_ABORT_RETRY, &pha->dpc_flags) ||
  475. pha->dpc_active) && time_before(jiffies, wait_online)) {
  476. msleep(1000);
  477. }
  478. if (pha->flags.online)
  479. return_status = QLA_SUCCESS;
  480. else
  481. return_status = QLA_FUNCTION_FAILED;
  482. return (return_status);
  483. }
  484. /*
  485. * qla2x00_wait_for_loop_ready
  486. * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
  487. * to be in LOOP_READY state.
  488. * Input:
  489. * ha - pointer to host adapter structure
  490. *
  491. * Note:
  492. * Does context switching-Release SPIN_LOCK
  493. * (if any) before calling this routine.
  494. *
  495. *
  496. * Return:
  497. * Success (LOOP_READY) : 0
  498. * Failed (LOOP_NOT_READY) : 1
  499. */
  500. static inline int
  501. qla2x00_wait_for_loop_ready(scsi_qla_host_t *ha)
  502. {
  503. int return_status = QLA_SUCCESS;
  504. unsigned long loop_timeout ;
  505. scsi_qla_host_t *pha = to_qla_parent(ha);
  506. /* wait for 5 min at the max for loop to be ready */
  507. loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
  508. while ((!atomic_read(&pha->loop_down_timer) &&
  509. atomic_read(&pha->loop_state) == LOOP_DOWN) ||
  510. atomic_read(&pha->loop_state) != LOOP_READY) {
  511. if (atomic_read(&pha->loop_state) == LOOP_DEAD) {
  512. return_status = QLA_FUNCTION_FAILED;
  513. break;
  514. }
  515. msleep(1000);
  516. if (time_after_eq(jiffies, loop_timeout)) {
  517. return_status = QLA_FUNCTION_FAILED;
  518. break;
  519. }
  520. }
  521. return (return_status);
  522. }
  523. void
  524. qla2x00_abort_fcport_cmds(fc_port_t *fcport)
  525. {
  526. int cnt;
  527. unsigned long flags;
  528. srb_t *sp;
  529. scsi_qla_host_t *ha = fcport->ha;
  530. scsi_qla_host_t *pha = to_qla_parent(ha);
  531. spin_lock_irqsave(&pha->hardware_lock, flags);
  532. for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
  533. sp = pha->outstanding_cmds[cnt];
  534. if (!sp)
  535. continue;
  536. if (sp->fcport != fcport)
  537. continue;
  538. spin_unlock_irqrestore(&pha->hardware_lock, flags);
  539. if (ha->isp_ops->abort_command(ha, sp)) {
  540. DEBUG2(qla_printk(KERN_WARNING, ha,
  541. "Abort failed -- %lx\n", sp->cmd->serial_number));
  542. } else {
  543. if (qla2x00_eh_wait_on_command(ha, sp->cmd) !=
  544. QLA_SUCCESS)
  545. DEBUG2(qla_printk(KERN_WARNING, ha,
  546. "Abort failed while waiting -- %lx\n",
  547. sp->cmd->serial_number));
  548. }
  549. spin_lock_irqsave(&pha->hardware_lock, flags);
  550. }
  551. spin_unlock_irqrestore(&pha->hardware_lock, flags);
  552. }
  553. static void
  554. qla2x00_block_error_handler(struct scsi_cmnd *cmnd)
  555. {
  556. struct Scsi_Host *shost = cmnd->device->host;
  557. struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
  558. unsigned long flags;
  559. spin_lock_irqsave(shost->host_lock, flags);
  560. while (rport->port_state == FC_PORTSTATE_BLOCKED) {
  561. spin_unlock_irqrestore(shost->host_lock, flags);
  562. msleep(1000);
  563. spin_lock_irqsave(shost->host_lock, flags);
  564. }
  565. spin_unlock_irqrestore(shost->host_lock, flags);
  566. return;
  567. }
  568. /**************************************************************************
  569. * qla2xxx_eh_abort
  570. *
  571. * Description:
  572. * The abort function will abort the specified command.
  573. *
  574. * Input:
  575. * cmd = Linux SCSI command packet to be aborted.
  576. *
  577. * Returns:
  578. * Either SUCCESS or FAILED.
  579. *
  580. * Note:
  581. * Only return FAILED if command not returned by firmware.
  582. **************************************************************************/
  583. static int
  584. qla2xxx_eh_abort(struct scsi_cmnd *cmd)
  585. {
  586. scsi_qla_host_t *ha = shost_priv(cmd->device->host);
  587. srb_t *sp;
  588. int ret, i;
  589. unsigned int id, lun;
  590. unsigned long serial;
  591. unsigned long flags;
  592. int wait = 0;
  593. scsi_qla_host_t *pha = to_qla_parent(ha);
  594. qla2x00_block_error_handler(cmd);
  595. if (!CMD_SP(cmd))
  596. return SUCCESS;
  597. ret = SUCCESS;
  598. id = cmd->device->id;
  599. lun = cmd->device->lun;
  600. serial = cmd->serial_number;
  601. /* Check active list for command command. */
  602. spin_lock_irqsave(&pha->hardware_lock, flags);
  603. for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
  604. sp = pha->outstanding_cmds[i];
  605. if (sp == NULL)
  606. continue;
  607. if (sp->cmd != cmd)
  608. continue;
  609. DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld.\n",
  610. __func__, ha->host_no, sp, serial));
  611. spin_unlock_irqrestore(&pha->hardware_lock, flags);
  612. if (ha->isp_ops->abort_command(ha, sp)) {
  613. DEBUG2(printk("%s(%ld): abort_command "
  614. "mbx failed.\n", __func__, ha->host_no));
  615. } else {
  616. DEBUG3(printk("%s(%ld): abort_command "
  617. "mbx success.\n", __func__, ha->host_no));
  618. wait = 1;
  619. }
  620. spin_lock_irqsave(&pha->hardware_lock, flags);
  621. break;
  622. }
  623. spin_unlock_irqrestore(&pha->hardware_lock, flags);
  624. /* Wait for the command to be returned. */
  625. if (wait) {
  626. if (qla2x00_eh_wait_on_command(ha, cmd) != QLA_SUCCESS) {
  627. qla_printk(KERN_ERR, ha,
  628. "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
  629. "%x.\n", ha->host_no, id, lun, serial, ret);
  630. ret = FAILED;
  631. }
  632. }
  633. qla_printk(KERN_INFO, ha,
  634. "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
  635. ha->host_no, id, lun, wait, serial, ret);
  636. return ret;
  637. }
  638. enum nexus_wait_type {
  639. WAIT_HOST = 0,
  640. WAIT_TARGET,
  641. WAIT_LUN,
  642. };
  643. static int
  644. qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *ha, unsigned int t,
  645. unsigned int l, enum nexus_wait_type type)
  646. {
  647. int cnt, match, status;
  648. srb_t *sp;
  649. unsigned long flags;
  650. scsi_qla_host_t *pha = to_qla_parent(ha);
  651. status = QLA_SUCCESS;
  652. spin_lock_irqsave(&pha->hardware_lock, flags);
  653. for (cnt = 1; status == QLA_SUCCESS && cnt < MAX_OUTSTANDING_COMMANDS;
  654. cnt++) {
  655. sp = pha->outstanding_cmds[cnt];
  656. if (!sp)
  657. continue;
  658. if (ha->vp_idx != sp->fcport->ha->vp_idx)
  659. continue;
  660. match = 0;
  661. switch (type) {
  662. case WAIT_HOST:
  663. match = 1;
  664. break;
  665. case WAIT_TARGET:
  666. match = sp->cmd->device->id == t;
  667. break;
  668. case WAIT_LUN:
  669. match = (sp->cmd->device->id == t &&
  670. sp->cmd->device->lun == l);
  671. break;
  672. }
  673. if (!match)
  674. continue;
  675. spin_unlock_irqrestore(&pha->hardware_lock, flags);
  676. status = qla2x00_eh_wait_on_command(ha, sp->cmd);
  677. spin_lock_irqsave(&pha->hardware_lock, flags);
  678. }
  679. spin_unlock_irqrestore(&pha->hardware_lock, flags);
  680. return status;
  681. }
  682. static char *reset_errors[] = {
  683. "HBA not online",
  684. "HBA not ready",
  685. "Task management failed",
  686. "Waiting for command completions",
  687. };
  688. static int
  689. __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
  690. struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, unsigned int))
  691. {
  692. scsi_qla_host_t *ha = shost_priv(cmd->device->host);
  693. fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
  694. int err;
  695. qla2x00_block_error_handler(cmd);
  696. if (!fcport)
  697. return FAILED;
  698. qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET ISSUED.\n",
  699. ha->host_no, cmd->device->id, cmd->device->lun, name);
  700. err = 0;
  701. if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
  702. goto eh_reset_failed;
  703. err = 1;
  704. if (qla2x00_wait_for_loop_ready(ha) != QLA_SUCCESS)
  705. goto eh_reset_failed;
  706. err = 2;
  707. if (do_reset(fcport, cmd->device->lun) != QLA_SUCCESS)
  708. goto eh_reset_failed;
  709. err = 3;
  710. if (qla2x00_eh_wait_for_pending_commands(ha, cmd->device->id,
  711. cmd->device->lun, type) != QLA_SUCCESS)
  712. goto eh_reset_failed;
  713. qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n",
  714. ha->host_no, cmd->device->id, cmd->device->lun, name);
  715. return SUCCESS;
  716. eh_reset_failed:
  717. qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n",
  718. ha->host_no, cmd->device->id, cmd->device->lun, name,
  719. reset_errors[err]);
  720. return FAILED;
  721. }
  722. static int
  723. qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
  724. {
  725. scsi_qla_host_t *ha = shost_priv(cmd->device->host);
  726. return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
  727. ha->isp_ops->lun_reset);
  728. }
  729. static int
  730. qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
  731. {
  732. scsi_qla_host_t *ha = shost_priv(cmd->device->host);
  733. return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
  734. ha->isp_ops->target_reset);
  735. }
  736. /**************************************************************************
  737. * qla2xxx_eh_bus_reset
  738. *
  739. * Description:
  740. * The bus reset function will reset the bus and abort any executing
  741. * commands.
  742. *
  743. * Input:
  744. * cmd = Linux SCSI command packet of the command that cause the
  745. * bus reset.
  746. *
  747. * Returns:
  748. * SUCCESS/FAILURE (defined as macro in scsi.h).
  749. *
  750. **************************************************************************/
  751. static int
  752. qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
  753. {
  754. scsi_qla_host_t *ha = shost_priv(cmd->device->host);
  755. scsi_qla_host_t *pha = to_qla_parent(ha);
  756. fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
  757. int ret = FAILED;
  758. unsigned int id, lun;
  759. unsigned long serial;
  760. qla2x00_block_error_handler(cmd);
  761. id = cmd->device->id;
  762. lun = cmd->device->lun;
  763. serial = cmd->serial_number;
  764. if (!fcport)
  765. return ret;
  766. qla_printk(KERN_INFO, ha,
  767. "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", ha->host_no, id, lun);
  768. if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS) {
  769. DEBUG2(printk("%s failed:board disabled\n",__func__));
  770. goto eh_bus_reset_done;
  771. }
  772. if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
  773. if (qla2x00_loop_reset(ha) == QLA_SUCCESS)
  774. ret = SUCCESS;
  775. }
  776. if (ret == FAILED)
  777. goto eh_bus_reset_done;
  778. /* Flush outstanding commands. */
  779. if (qla2x00_eh_wait_for_pending_commands(pha, 0, 0, WAIT_HOST) !=
  780. QLA_SUCCESS)
  781. ret = FAILED;
  782. eh_bus_reset_done:
  783. qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
  784. (ret == FAILED) ? "failed" : "succeded");
  785. return ret;
  786. }
  787. /**************************************************************************
  788. * qla2xxx_eh_host_reset
  789. *
  790. * Description:
  791. * The reset function will reset the Adapter.
  792. *
  793. * Input:
  794. * cmd = Linux SCSI command packet of the command that cause the
  795. * adapter reset.
  796. *
  797. * Returns:
  798. * Either SUCCESS or FAILED.
  799. *
  800. * Note:
  801. **************************************************************************/
  802. static int
  803. qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
  804. {
  805. scsi_qla_host_t *ha = shost_priv(cmd->device->host);
  806. fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
  807. int ret = FAILED;
  808. unsigned int id, lun;
  809. unsigned long serial;
  810. scsi_qla_host_t *pha = to_qla_parent(ha);
  811. qla2x00_block_error_handler(cmd);
  812. id = cmd->device->id;
  813. lun = cmd->device->lun;
  814. serial = cmd->serial_number;
  815. if (!fcport)
  816. return ret;
  817. qla_printk(KERN_INFO, ha,
  818. "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no, id, lun);
  819. if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
  820. goto eh_host_reset_lock;
  821. /*
  822. * Fixme-may be dpc thread is active and processing
  823. * loop_resync,so wait a while for it to
  824. * be completed and then issue big hammer.Otherwise
  825. * it may cause I/O failure as big hammer marks the
  826. * devices as lost kicking of the port_down_timer
  827. * while dpc is stuck for the mailbox to complete.
  828. */
  829. qla2x00_wait_for_loop_ready(ha);
  830. set_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
  831. if (qla2x00_abort_isp(pha)) {
  832. clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
  833. /* failed. schedule dpc to try */
  834. set_bit(ISP_ABORT_NEEDED, &pha->dpc_flags);
  835. if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
  836. goto eh_host_reset_lock;
  837. }
  838. clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
  839. /* Waiting for our command in done_queue to be returned to OS.*/
  840. if (qla2x00_eh_wait_for_pending_commands(pha, 0, 0, WAIT_HOST) ==
  841. QLA_SUCCESS)
  842. ret = SUCCESS;
  843. if (ha->parent)
  844. qla2x00_vp_abort_isp(ha);
  845. eh_host_reset_lock:
  846. qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
  847. (ret == FAILED) ? "failed" : "succeded");
  848. return ret;
  849. }
  850. /*
  851. * qla2x00_loop_reset
  852. * Issue loop reset.
  853. *
  854. * Input:
  855. * ha = adapter block pointer.
  856. *
  857. * Returns:
  858. * 0 = success
  859. */
  860. int
  861. qla2x00_loop_reset(scsi_qla_host_t *ha)
  862. {
  863. int ret;
  864. struct fc_port *fcport;
  865. if (ha->flags.enable_lip_full_login) {
  866. ret = qla2x00_full_login_lip(ha);
  867. if (ret != QLA_SUCCESS) {
  868. DEBUG2_3(printk("%s(%ld): bus_reset failed: "
  869. "full_login_lip=%d.\n", __func__, ha->host_no,
  870. ret));
  871. }
  872. atomic_set(&ha->loop_state, LOOP_DOWN);
  873. atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
  874. qla2x00_mark_all_devices_lost(ha, 0);
  875. qla2x00_wait_for_loop_ready(ha);
  876. }
  877. if (ha->flags.enable_lip_reset) {
  878. ret = qla2x00_lip_reset(ha);
  879. if (ret != QLA_SUCCESS) {
  880. DEBUG2_3(printk("%s(%ld): bus_reset failed: "
  881. "lip_reset=%d.\n", __func__, ha->host_no, ret));
  882. }
  883. qla2x00_wait_for_loop_ready(ha);
  884. }
  885. if (ha->flags.enable_target_reset) {
  886. list_for_each_entry(fcport, &ha->fcports, list) {
  887. if (fcport->port_type != FCT_TARGET)
  888. continue;
  889. ret = ha->isp_ops->target_reset(fcport, 0);
  890. if (ret != QLA_SUCCESS) {
  891. DEBUG2_3(printk("%s(%ld): bus_reset failed: "
  892. "target_reset=%d d_id=%x.\n", __func__,
  893. ha->host_no, ret, fcport->d_id.b24));
  894. }
  895. }
  896. }
  897. /* Issue marker command only when we are going to start the I/O */
  898. ha->marker_needed = 1;
  899. return QLA_SUCCESS;
  900. }
  901. void
  902. qla2x00_abort_all_cmds(scsi_qla_host_t *ha, int res)
  903. {
  904. int cnt;
  905. unsigned long flags;
  906. srb_t *sp;
  907. spin_lock_irqsave(&ha->hardware_lock, flags);
  908. for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
  909. sp = ha->outstanding_cmds[cnt];
  910. if (sp) {
  911. ha->outstanding_cmds[cnt] = NULL;
  912. sp->cmd->result = res;
  913. qla2x00_sp_compl(ha, sp);
  914. }
  915. }
  916. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  917. }
  918. static int
  919. qla2xxx_slave_alloc(struct scsi_device *sdev)
  920. {
  921. struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
  922. if (!rport || fc_remote_port_chkready(rport))
  923. return -ENXIO;
  924. sdev->hostdata = *(fc_port_t **)rport->dd_data;
  925. return 0;
  926. }
  927. static int
  928. qla2xxx_slave_configure(struct scsi_device *sdev)
  929. {
  930. scsi_qla_host_t *ha = shost_priv(sdev->host);
  931. struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
  932. if (sdev->tagged_supported)
  933. scsi_activate_tcq(sdev, ha->max_q_depth);
  934. else
  935. scsi_deactivate_tcq(sdev, ha->max_q_depth);
  936. rport->dev_loss_tmo = ha->port_down_retry_count;
  937. return 0;
  938. }
  939. static void
  940. qla2xxx_slave_destroy(struct scsi_device *sdev)
  941. {
  942. sdev->hostdata = NULL;
  943. }
  944. static int
  945. qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
  946. {
  947. scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
  948. return sdev->queue_depth;
  949. }
  950. static int
  951. qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
  952. {
  953. if (sdev->tagged_supported) {
  954. scsi_set_tag_type(sdev, tag_type);
  955. if (tag_type)
  956. scsi_activate_tcq(sdev, sdev->queue_depth);
  957. else
  958. scsi_deactivate_tcq(sdev, sdev->queue_depth);
  959. } else
  960. tag_type = 0;
  961. return tag_type;
  962. }
  963. /**
  964. * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
  965. * @ha: HA context
  966. *
  967. * At exit, the @ha's flags.enable_64bit_addressing set to indicated
  968. * supported addressing method.
  969. */
  970. static void
  971. qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
  972. {
  973. /* Assume a 32bit DMA mask. */
  974. ha->flags.enable_64bit_addressing = 0;
  975. if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
  976. /* Any upper-dword bits set? */
  977. if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
  978. !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
  979. /* Ok, a 64bit DMA mask is applicable. */
  980. ha->flags.enable_64bit_addressing = 1;
  981. ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
  982. ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
  983. return;
  984. }
  985. }
  986. dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
  987. pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
  988. }
  989. static void
  990. qla2x00_enable_intrs(scsi_qla_host_t *ha)
  991. {
  992. unsigned long flags = 0;
  993. struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
  994. spin_lock_irqsave(&ha->hardware_lock, flags);
  995. ha->interrupts_on = 1;
  996. /* enable risc and host interrupts */
  997. WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
  998. RD_REG_WORD(&reg->ictrl);
  999. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  1000. }
  1001. static void
  1002. qla2x00_disable_intrs(scsi_qla_host_t *ha)
  1003. {
  1004. unsigned long flags = 0;
  1005. struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
  1006. spin_lock_irqsave(&ha->hardware_lock, flags);
  1007. ha->interrupts_on = 0;
  1008. /* disable risc and host interrupts */
  1009. WRT_REG_WORD(&reg->ictrl, 0);
  1010. RD_REG_WORD(&reg->ictrl);
  1011. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  1012. }
  1013. static void
  1014. qla24xx_enable_intrs(scsi_qla_host_t *ha)
  1015. {
  1016. unsigned long flags = 0;
  1017. struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
  1018. spin_lock_irqsave(&ha->hardware_lock, flags);
  1019. ha->interrupts_on = 1;
  1020. WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
  1021. RD_REG_DWORD(&reg->ictrl);
  1022. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  1023. }
  1024. static void
  1025. qla24xx_disable_intrs(scsi_qla_host_t *ha)
  1026. {
  1027. unsigned long flags = 0;
  1028. struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
  1029. spin_lock_irqsave(&ha->hardware_lock, flags);
  1030. ha->interrupts_on = 0;
  1031. WRT_REG_DWORD(&reg->ictrl, 0);
  1032. RD_REG_DWORD(&reg->ictrl);
  1033. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  1034. }
  1035. static struct isp_operations qla2100_isp_ops = {
  1036. .pci_config = qla2100_pci_config,
  1037. .reset_chip = qla2x00_reset_chip,
  1038. .chip_diag = qla2x00_chip_diag,
  1039. .config_rings = qla2x00_config_rings,
  1040. .reset_adapter = qla2x00_reset_adapter,
  1041. .nvram_config = qla2x00_nvram_config,
  1042. .update_fw_options = qla2x00_update_fw_options,
  1043. .load_risc = qla2x00_load_risc,
  1044. .pci_info_str = qla2x00_pci_info_str,
  1045. .fw_version_str = qla2x00_fw_version_str,
  1046. .intr_handler = qla2100_intr_handler,
  1047. .enable_intrs = qla2x00_enable_intrs,
  1048. .disable_intrs = qla2x00_disable_intrs,
  1049. .abort_command = qla2x00_abort_command,
  1050. .target_reset = qla2x00_abort_target,
  1051. .lun_reset = qla2x00_lun_reset,
  1052. .fabric_login = qla2x00_login_fabric,
  1053. .fabric_logout = qla2x00_fabric_logout,
  1054. .calc_req_entries = qla2x00_calc_iocbs_32,
  1055. .build_iocbs = qla2x00_build_scsi_iocbs_32,
  1056. .prep_ms_iocb = qla2x00_prep_ms_iocb,
  1057. .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
  1058. .read_nvram = qla2x00_read_nvram_data,
  1059. .write_nvram = qla2x00_write_nvram_data,
  1060. .fw_dump = qla2100_fw_dump,
  1061. .beacon_on = NULL,
  1062. .beacon_off = NULL,
  1063. .beacon_blink = NULL,
  1064. .read_optrom = qla2x00_read_optrom_data,
  1065. .write_optrom = qla2x00_write_optrom_data,
  1066. .get_flash_version = qla2x00_get_flash_version,
  1067. };
  1068. static struct isp_operations qla2300_isp_ops = {
  1069. .pci_config = qla2300_pci_config,
  1070. .reset_chip = qla2x00_reset_chip,
  1071. .chip_diag = qla2x00_chip_diag,
  1072. .config_rings = qla2x00_config_rings,
  1073. .reset_adapter = qla2x00_reset_adapter,
  1074. .nvram_config = qla2x00_nvram_config,
  1075. .update_fw_options = qla2x00_update_fw_options,
  1076. .load_risc = qla2x00_load_risc,
  1077. .pci_info_str = qla2x00_pci_info_str,
  1078. .fw_version_str = qla2x00_fw_version_str,
  1079. .intr_handler = qla2300_intr_handler,
  1080. .enable_intrs = qla2x00_enable_intrs,
  1081. .disable_intrs = qla2x00_disable_intrs,
  1082. .abort_command = qla2x00_abort_command,
  1083. .target_reset = qla2x00_abort_target,
  1084. .lun_reset = qla2x00_lun_reset,
  1085. .fabric_login = qla2x00_login_fabric,
  1086. .fabric_logout = qla2x00_fabric_logout,
  1087. .calc_req_entries = qla2x00_calc_iocbs_32,
  1088. .build_iocbs = qla2x00_build_scsi_iocbs_32,
  1089. .prep_ms_iocb = qla2x00_prep_ms_iocb,
  1090. .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
  1091. .read_nvram = qla2x00_read_nvram_data,
  1092. .write_nvram = qla2x00_write_nvram_data,
  1093. .fw_dump = qla2300_fw_dump,
  1094. .beacon_on = qla2x00_beacon_on,
  1095. .beacon_off = qla2x00_beacon_off,
  1096. .beacon_blink = qla2x00_beacon_blink,
  1097. .read_optrom = qla2x00_read_optrom_data,
  1098. .write_optrom = qla2x00_write_optrom_data,
  1099. .get_flash_version = qla2x00_get_flash_version,
  1100. };
  1101. static struct isp_operations qla24xx_isp_ops = {
  1102. .pci_config = qla24xx_pci_config,
  1103. .reset_chip = qla24xx_reset_chip,
  1104. .chip_diag = qla24xx_chip_diag,
  1105. .config_rings = qla24xx_config_rings,
  1106. .reset_adapter = qla24xx_reset_adapter,
  1107. .nvram_config = qla24xx_nvram_config,
  1108. .update_fw_options = qla24xx_update_fw_options,
  1109. .load_risc = qla24xx_load_risc,
  1110. .pci_info_str = qla24xx_pci_info_str,
  1111. .fw_version_str = qla24xx_fw_version_str,
  1112. .intr_handler = qla24xx_intr_handler,
  1113. .enable_intrs = qla24xx_enable_intrs,
  1114. .disable_intrs = qla24xx_disable_intrs,
  1115. .abort_command = qla24xx_abort_command,
  1116. .target_reset = qla24xx_abort_target,
  1117. .lun_reset = qla24xx_lun_reset,
  1118. .fabric_login = qla24xx_login_fabric,
  1119. .fabric_logout = qla24xx_fabric_logout,
  1120. .calc_req_entries = NULL,
  1121. .build_iocbs = NULL,
  1122. .prep_ms_iocb = qla24xx_prep_ms_iocb,
  1123. .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
  1124. .read_nvram = qla24xx_read_nvram_data,
  1125. .write_nvram = qla24xx_write_nvram_data,
  1126. .fw_dump = qla24xx_fw_dump,
  1127. .beacon_on = qla24xx_beacon_on,
  1128. .beacon_off = qla24xx_beacon_off,
  1129. .beacon_blink = qla24xx_beacon_blink,
  1130. .read_optrom = qla24xx_read_optrom_data,
  1131. .write_optrom = qla24xx_write_optrom_data,
  1132. .get_flash_version = qla24xx_get_flash_version,
  1133. };
  1134. static struct isp_operations qla25xx_isp_ops = {
  1135. .pci_config = qla25xx_pci_config,
  1136. .reset_chip = qla24xx_reset_chip,
  1137. .chip_diag = qla24xx_chip_diag,
  1138. .config_rings = qla24xx_config_rings,
  1139. .reset_adapter = qla24xx_reset_adapter,
  1140. .nvram_config = qla24xx_nvram_config,
  1141. .update_fw_options = qla24xx_update_fw_options,
  1142. .load_risc = qla24xx_load_risc,
  1143. .pci_info_str = qla24xx_pci_info_str,
  1144. .fw_version_str = qla24xx_fw_version_str,
  1145. .intr_handler = qla24xx_intr_handler,
  1146. .enable_intrs = qla24xx_enable_intrs,
  1147. .disable_intrs = qla24xx_disable_intrs,
  1148. .abort_command = qla24xx_abort_command,
  1149. .target_reset = qla24xx_abort_target,
  1150. .lun_reset = qla24xx_lun_reset,
  1151. .fabric_login = qla24xx_login_fabric,
  1152. .fabric_logout = qla24xx_fabric_logout,
  1153. .calc_req_entries = NULL,
  1154. .build_iocbs = NULL,
  1155. .prep_ms_iocb = qla24xx_prep_ms_iocb,
  1156. .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
  1157. .read_nvram = qla25xx_read_nvram_data,
  1158. .write_nvram = qla25xx_write_nvram_data,
  1159. .fw_dump = qla25xx_fw_dump,
  1160. .beacon_on = qla24xx_beacon_on,
  1161. .beacon_off = qla24xx_beacon_off,
  1162. .beacon_blink = qla24xx_beacon_blink,
  1163. .read_optrom = qla25xx_read_optrom_data,
  1164. .write_optrom = qla24xx_write_optrom_data,
  1165. .get_flash_version = qla24xx_get_flash_version,
  1166. };
  1167. static inline void
  1168. qla2x00_set_isp_flags(scsi_qla_host_t *ha)
  1169. {
  1170. ha->device_type = DT_EXTENDED_IDS;
  1171. switch (ha->pdev->device) {
  1172. case PCI_DEVICE_ID_QLOGIC_ISP2100:
  1173. ha->device_type |= DT_ISP2100;
  1174. ha->device_type &= ~DT_EXTENDED_IDS;
  1175. ha->fw_srisc_address = RISC_START_ADDRESS_2100;
  1176. break;
  1177. case PCI_DEVICE_ID_QLOGIC_ISP2200:
  1178. ha->device_type |= DT_ISP2200;
  1179. ha->device_type &= ~DT_EXTENDED_IDS;
  1180. ha->fw_srisc_address = RISC_START_ADDRESS_2100;
  1181. break;
  1182. case PCI_DEVICE_ID_QLOGIC_ISP2300:
  1183. ha->device_type |= DT_ISP2300;
  1184. ha->device_type |= DT_ZIO_SUPPORTED;
  1185. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1186. break;
  1187. case PCI_DEVICE_ID_QLOGIC_ISP2312:
  1188. ha->device_type |= DT_ISP2312;
  1189. ha->device_type |= DT_ZIO_SUPPORTED;
  1190. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1191. break;
  1192. case PCI_DEVICE_ID_QLOGIC_ISP2322:
  1193. ha->device_type |= DT_ISP2322;
  1194. ha->device_type |= DT_ZIO_SUPPORTED;
  1195. if (ha->pdev->subsystem_vendor == 0x1028 &&
  1196. ha->pdev->subsystem_device == 0x0170)
  1197. ha->device_type |= DT_OEM_001;
  1198. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1199. break;
  1200. case PCI_DEVICE_ID_QLOGIC_ISP6312:
  1201. ha->device_type |= DT_ISP6312;
  1202. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1203. break;
  1204. case PCI_DEVICE_ID_QLOGIC_ISP6322:
  1205. ha->device_type |= DT_ISP6322;
  1206. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1207. break;
  1208. case PCI_DEVICE_ID_QLOGIC_ISP2422:
  1209. ha->device_type |= DT_ISP2422;
  1210. ha->device_type |= DT_ZIO_SUPPORTED;
  1211. ha->device_type |= DT_FWI2;
  1212. ha->device_type |= DT_IIDMA;
  1213. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1214. break;
  1215. case PCI_DEVICE_ID_QLOGIC_ISP2432:
  1216. ha->device_type |= DT_ISP2432;
  1217. ha->device_type |= DT_ZIO_SUPPORTED;
  1218. ha->device_type |= DT_FWI2;
  1219. ha->device_type |= DT_IIDMA;
  1220. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1221. break;
  1222. case PCI_DEVICE_ID_QLOGIC_ISP8432:
  1223. ha->device_type |= DT_ISP8432;
  1224. ha->device_type |= DT_ZIO_SUPPORTED;
  1225. ha->device_type |= DT_FWI2;
  1226. ha->device_type |= DT_IIDMA;
  1227. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1228. break;
  1229. case PCI_DEVICE_ID_QLOGIC_ISP5422:
  1230. ha->device_type |= DT_ISP5422;
  1231. ha->device_type |= DT_FWI2;
  1232. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1233. break;
  1234. case PCI_DEVICE_ID_QLOGIC_ISP5432:
  1235. ha->device_type |= DT_ISP5432;
  1236. ha->device_type |= DT_FWI2;
  1237. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1238. break;
  1239. case PCI_DEVICE_ID_QLOGIC_ISP2532:
  1240. ha->device_type |= DT_ISP2532;
  1241. ha->device_type |= DT_ZIO_SUPPORTED;
  1242. ha->device_type |= DT_FWI2;
  1243. ha->device_type |= DT_IIDMA;
  1244. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1245. break;
  1246. }
  1247. }
  1248. static int
  1249. qla2x00_iospace_config(scsi_qla_host_t *ha)
  1250. {
  1251. resource_size_t pio;
  1252. if (pci_request_selected_regions(ha->pdev, ha->bars,
  1253. QLA2XXX_DRIVER_NAME)) {
  1254. qla_printk(KERN_WARNING, ha,
  1255. "Failed to reserve PIO/MMIO regions (%s)\n",
  1256. pci_name(ha->pdev));
  1257. goto iospace_error_exit;
  1258. }
  1259. if (!(ha->bars & 1))
  1260. goto skip_pio;
  1261. /* We only need PIO for Flash operations on ISP2312 v2 chips. */
  1262. pio = pci_resource_start(ha->pdev, 0);
  1263. if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
  1264. if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
  1265. qla_printk(KERN_WARNING, ha,
  1266. "Invalid PCI I/O region size (%s)...\n",
  1267. pci_name(ha->pdev));
  1268. pio = 0;
  1269. }
  1270. } else {
  1271. qla_printk(KERN_WARNING, ha,
  1272. "region #0 not a PIO resource (%s)...\n",
  1273. pci_name(ha->pdev));
  1274. pio = 0;
  1275. }
  1276. ha->pio_address = pio;
  1277. skip_pio:
  1278. /* Use MMIO operations for all accesses. */
  1279. if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
  1280. qla_printk(KERN_ERR, ha,
  1281. "region #1 not an MMIO resource (%s), aborting\n",
  1282. pci_name(ha->pdev));
  1283. goto iospace_error_exit;
  1284. }
  1285. if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
  1286. qla_printk(KERN_ERR, ha,
  1287. "Invalid PCI mem region size (%s), aborting\n",
  1288. pci_name(ha->pdev));
  1289. goto iospace_error_exit;
  1290. }
  1291. ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
  1292. if (!ha->iobase) {
  1293. qla_printk(KERN_ERR, ha,
  1294. "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
  1295. goto iospace_error_exit;
  1296. }
  1297. return (0);
  1298. iospace_error_exit:
  1299. return (-ENOMEM);
  1300. }
  1301. static void
  1302. qla2xxx_scan_start(struct Scsi_Host *shost)
  1303. {
  1304. scsi_qla_host_t *ha = shost_priv(shost);
  1305. set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
  1306. set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
  1307. set_bit(RSCN_UPDATE, &ha->dpc_flags);
  1308. set_bit(NPIV_CONFIG_NEEDED, &ha->dpc_flags);
  1309. }
  1310. static int
  1311. qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
  1312. {
  1313. scsi_qla_host_t *ha = shost_priv(shost);
  1314. if (!ha->host)
  1315. return 1;
  1316. if (time > ha->loop_reset_delay * HZ)
  1317. return 1;
  1318. return atomic_read(&ha->loop_state) == LOOP_READY;
  1319. }
  1320. /*
  1321. * PCI driver interface
  1322. */
  1323. static int __devinit
  1324. qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
  1325. {
  1326. int ret = -ENODEV;
  1327. struct Scsi_Host *host;
  1328. scsi_qla_host_t *ha;
  1329. char pci_info[30];
  1330. char fw_str[30];
  1331. struct scsi_host_template *sht;
  1332. int bars, mem_only = 0;
  1333. bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
  1334. sht = &qla2x00_driver_template;
  1335. if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
  1336. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
  1337. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
  1338. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
  1339. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
  1340. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532) {
  1341. bars = pci_select_bars(pdev, IORESOURCE_MEM);
  1342. sht = &qla24xx_driver_template;
  1343. mem_only = 1;
  1344. }
  1345. if (mem_only) {
  1346. if (pci_enable_device_mem(pdev))
  1347. goto probe_out;
  1348. } else {
  1349. if (pci_enable_device(pdev))
  1350. goto probe_out;
  1351. }
  1352. if (pci_find_aer_capability(pdev))
  1353. if (pci_enable_pcie_error_reporting(pdev))
  1354. goto probe_out;
  1355. host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
  1356. if (host == NULL) {
  1357. printk(KERN_WARNING
  1358. "qla2xxx: Couldn't allocate host from scsi layer!\n");
  1359. goto probe_disable_device;
  1360. }
  1361. /* Clear our data area */
  1362. ha = shost_priv(host);
  1363. memset(ha, 0, sizeof(scsi_qla_host_t));
  1364. ha->pdev = pdev;
  1365. ha->host = host;
  1366. ha->host_no = host->host_no;
  1367. sprintf(ha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, ha->host_no);
  1368. ha->parent = NULL;
  1369. ha->bars = bars;
  1370. ha->mem_only = mem_only;
  1371. spin_lock_init(&ha->hardware_lock);
  1372. /* Set ISP-type information. */
  1373. qla2x00_set_isp_flags(ha);
  1374. /* Configure PCI I/O space */
  1375. ret = qla2x00_iospace_config(ha);
  1376. if (ret)
  1377. goto probe_failed;
  1378. qla_printk(KERN_INFO, ha,
  1379. "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
  1380. ha->iobase);
  1381. ha->prev_topology = 0;
  1382. ha->init_cb_size = sizeof(init_cb_t);
  1383. ha->mgmt_svr_loop_id = MANAGEMENT_SERVER + ha->vp_idx;
  1384. ha->link_data_rate = PORT_SPEED_UNKNOWN;
  1385. ha->optrom_size = OPTROM_SIZE_2300;
  1386. ha->max_q_depth = MAX_Q_DEPTH;
  1387. if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
  1388. ha->max_q_depth = ql2xmaxqdepth;
  1389. /* Assign ISP specific operations. */
  1390. if (IS_QLA2100(ha)) {
  1391. host->max_id = MAX_TARGETS_2100;
  1392. ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
  1393. ha->request_q_length = REQUEST_ENTRY_CNT_2100;
  1394. ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
  1395. ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
  1396. host->sg_tablesize = 32;
  1397. ha->gid_list_info_size = 4;
  1398. ha->isp_ops = &qla2100_isp_ops;
  1399. } else if (IS_QLA2200(ha)) {
  1400. host->max_id = MAX_TARGETS_2200;
  1401. ha->mbx_count = MAILBOX_REGISTER_COUNT;
  1402. ha->request_q_length = REQUEST_ENTRY_CNT_2200;
  1403. ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
  1404. ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
  1405. ha->gid_list_info_size = 4;
  1406. ha->isp_ops = &qla2100_isp_ops;
  1407. } else if (IS_QLA23XX(ha)) {
  1408. host->max_id = MAX_TARGETS_2200;
  1409. ha->mbx_count = MAILBOX_REGISTER_COUNT;
  1410. ha->request_q_length = REQUEST_ENTRY_CNT_2200;
  1411. ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
  1412. ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
  1413. ha->gid_list_info_size = 6;
  1414. if (IS_QLA2322(ha) || IS_QLA6322(ha))
  1415. ha->optrom_size = OPTROM_SIZE_2322;
  1416. ha->isp_ops = &qla2300_isp_ops;
  1417. } else if (IS_QLA24XX_TYPE(ha)) {
  1418. host->max_id = MAX_TARGETS_2200;
  1419. ha->mbx_count = MAILBOX_REGISTER_COUNT;
  1420. ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
  1421. ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
  1422. ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
  1423. ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
  1424. ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
  1425. ha->gid_list_info_size = 8;
  1426. ha->optrom_size = OPTROM_SIZE_24XX;
  1427. ha->isp_ops = &qla24xx_isp_ops;
  1428. } else if (IS_QLA25XX(ha)) {
  1429. host->max_id = MAX_TARGETS_2200;
  1430. ha->mbx_count = MAILBOX_REGISTER_COUNT;
  1431. ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
  1432. ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
  1433. ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
  1434. ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
  1435. ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
  1436. ha->gid_list_info_size = 8;
  1437. ha->optrom_size = OPTROM_SIZE_25XX;
  1438. ha->isp_ops = &qla25xx_isp_ops;
  1439. }
  1440. host->can_queue = ha->request_q_length + 128;
  1441. mutex_init(&ha->vport_lock);
  1442. init_completion(&ha->mbx_cmd_comp);
  1443. complete(&ha->mbx_cmd_comp);
  1444. init_completion(&ha->mbx_intr_comp);
  1445. INIT_LIST_HEAD(&ha->list);
  1446. INIT_LIST_HEAD(&ha->fcports);
  1447. INIT_LIST_HEAD(&ha->vp_list);
  1448. INIT_LIST_HEAD(&ha->work_list);
  1449. set_bit(0, (unsigned long *) ha->vp_idx_map);
  1450. qla2x00_config_dma_addressing(ha);
  1451. if (qla2x00_mem_alloc(ha)) {
  1452. qla_printk(KERN_WARNING, ha,
  1453. "[ERROR] Failed to allocate memory for adapter\n");
  1454. ret = -ENOMEM;
  1455. goto probe_failed;
  1456. }
  1457. if (qla2x00_initialize_adapter(ha)) {
  1458. qla_printk(KERN_WARNING, ha,
  1459. "Failed to initialize adapter\n");
  1460. DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
  1461. "Adapter flags %x.\n",
  1462. ha->host_no, ha->device_flags));
  1463. ret = -ENODEV;
  1464. goto probe_failed;
  1465. }
  1466. /*
  1467. * Startup the kernel thread for this host adapter
  1468. */
  1469. ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
  1470. "%s_dpc", ha->host_str);
  1471. if (IS_ERR(ha->dpc_thread)) {
  1472. qla_printk(KERN_WARNING, ha,
  1473. "Unable to start DPC thread!\n");
  1474. ret = PTR_ERR(ha->dpc_thread);
  1475. goto probe_failed;
  1476. }
  1477. host->this_id = 255;
  1478. host->cmd_per_lun = 3;
  1479. host->unique_id = host->host_no;
  1480. host->max_cmd_len = MAX_CMDSZ;
  1481. host->max_channel = MAX_BUSES - 1;
  1482. host->max_lun = MAX_LUNS;
  1483. host->transportt = qla2xxx_transport_template;
  1484. ret = qla2x00_request_irqs(ha);
  1485. if (ret)
  1486. goto probe_failed;
  1487. /* Initialized the timer */
  1488. qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
  1489. DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
  1490. ha->host_no, ha));
  1491. pci_set_drvdata(pdev, ha);
  1492. ha->flags.init_done = 1;
  1493. ha->flags.online = 1;
  1494. ret = scsi_add_host(host, &pdev->dev);
  1495. if (ret)
  1496. goto probe_failed;
  1497. ha->isp_ops->enable_intrs(ha);
  1498. scsi_scan_host(host);
  1499. qla2x00_alloc_sysfs_attr(ha);
  1500. qla2x00_init_host_attr(ha);
  1501. qla2x00_dfs_setup(ha);
  1502. qla_printk(KERN_INFO, ha, "\n"
  1503. " QLogic Fibre Channel HBA Driver: %s\n"
  1504. " QLogic %s - %s\n"
  1505. " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
  1506. qla2x00_version_str, ha->model_number,
  1507. ha->model_desc ? ha->model_desc: "", pdev->device,
  1508. ha->isp_ops->pci_info_str(ha, pci_info), pci_name(pdev),
  1509. ha->flags.enable_64bit_addressing ? '+': '-', ha->host_no,
  1510. ha->isp_ops->fw_version_str(ha, fw_str));
  1511. return 0;
  1512. probe_failed:
  1513. qla2x00_free_device(ha);
  1514. scsi_host_put(host);
  1515. probe_disable_device:
  1516. pci_disable_device(pdev);
  1517. probe_out:
  1518. return ret;
  1519. }
  1520. static void
  1521. qla2x00_remove_one(struct pci_dev *pdev)
  1522. {
  1523. scsi_qla_host_t *ha, *vha, *temp;
  1524. ha = pci_get_drvdata(pdev);
  1525. list_for_each_entry_safe(vha, temp, &ha->vp_list, vp_list)
  1526. fc_vport_terminate(vha->fc_vport);
  1527. set_bit(UNLOADING, &ha->dpc_flags);
  1528. qla2x00_dfs_remove(ha);
  1529. qla84xx_put_chip(ha);
  1530. qla2x00_free_sysfs_attr(ha);
  1531. fc_remove_host(ha->host);
  1532. scsi_remove_host(ha->host);
  1533. qla2x00_free_device(ha);
  1534. scsi_host_put(ha->host);
  1535. pci_disable_device(pdev);
  1536. pci_set_drvdata(pdev, NULL);
  1537. }
  1538. static void
  1539. qla2x00_free_device(scsi_qla_host_t *ha)
  1540. {
  1541. qla2x00_abort_all_cmds(ha, DID_NO_CONNECT << 16);
  1542. /* Disable timer */
  1543. if (ha->timer_active)
  1544. qla2x00_stop_timer(ha);
  1545. ha->flags.online = 0;
  1546. /* Kill the kernel thread for this host */
  1547. if (ha->dpc_thread) {
  1548. struct task_struct *t = ha->dpc_thread;
  1549. /*
  1550. * qla2xxx_wake_dpc checks for ->dpc_thread
  1551. * so we need to zero it out.
  1552. */
  1553. ha->dpc_thread = NULL;
  1554. kthread_stop(t);
  1555. }
  1556. if (ha->flags.fce_enabled)
  1557. qla2x00_disable_fce_trace(ha, NULL, NULL);
  1558. if (ha->eft)
  1559. qla2x00_disable_eft_trace(ha);
  1560. /* Stop currently executing firmware. */
  1561. qla2x00_try_to_stop_firmware(ha);
  1562. /* turn-off interrupts on the card */
  1563. if (ha->interrupts_on)
  1564. ha->isp_ops->disable_intrs(ha);
  1565. qla2x00_mem_free(ha);
  1566. qla2x00_free_irqs(ha);
  1567. /* release io space registers */
  1568. if (ha->iobase)
  1569. iounmap(ha->iobase);
  1570. pci_release_selected_regions(ha->pdev, ha->bars);
  1571. }
  1572. static inline void
  1573. qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport,
  1574. int defer)
  1575. {
  1576. struct fc_rport *rport;
  1577. scsi_qla_host_t *pha = to_qla_parent(ha);
  1578. if (!fcport->rport)
  1579. return;
  1580. rport = fcport->rport;
  1581. if (defer) {
  1582. spin_lock_irq(ha->host->host_lock);
  1583. fcport->drport = rport;
  1584. spin_unlock_irq(ha->host->host_lock);
  1585. set_bit(FCPORT_UPDATE_NEEDED, &pha->dpc_flags);
  1586. qla2xxx_wake_dpc(pha);
  1587. } else
  1588. fc_remote_port_delete(rport);
  1589. }
  1590. /*
  1591. * qla2x00_mark_device_lost Updates fcport state when device goes offline.
  1592. *
  1593. * Input: ha = adapter block pointer. fcport = port structure pointer.
  1594. *
  1595. * Return: None.
  1596. *
  1597. * Context:
  1598. */
  1599. void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
  1600. int do_login, int defer)
  1601. {
  1602. if (atomic_read(&fcport->state) == FCS_ONLINE &&
  1603. ha->vp_idx == fcport->vp_idx)
  1604. qla2x00_schedule_rport_del(ha, fcport, defer);
  1605. /*
  1606. * We may need to retry the login, so don't change the state of the
  1607. * port but do the retries.
  1608. */
  1609. if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
  1610. atomic_set(&fcport->state, FCS_DEVICE_LOST);
  1611. if (!do_login)
  1612. return;
  1613. if (fcport->login_retry == 0) {
  1614. fcport->login_retry = ha->login_retry_count;
  1615. set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
  1616. DEBUG(printk("scsi(%ld): Port login retry: "
  1617. "%02x%02x%02x%02x%02x%02x%02x%02x, "
  1618. "id = 0x%04x retry cnt=%d\n",
  1619. ha->host_no,
  1620. fcport->port_name[0],
  1621. fcport->port_name[1],
  1622. fcport->port_name[2],
  1623. fcport->port_name[3],
  1624. fcport->port_name[4],
  1625. fcport->port_name[5],
  1626. fcport->port_name[6],
  1627. fcport->port_name[7],
  1628. fcport->loop_id,
  1629. fcport->login_retry));
  1630. }
  1631. }
  1632. /*
  1633. * qla2x00_mark_all_devices_lost
  1634. * Updates fcport state when device goes offline.
  1635. *
  1636. * Input:
  1637. * ha = adapter block pointer.
  1638. * fcport = port structure pointer.
  1639. *
  1640. * Return:
  1641. * None.
  1642. *
  1643. * Context:
  1644. */
  1645. void
  1646. qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer)
  1647. {
  1648. fc_port_t *fcport;
  1649. scsi_qla_host_t *pha = to_qla_parent(ha);
  1650. list_for_each_entry(fcport, &pha->fcports, list) {
  1651. if (ha->vp_idx != fcport->vp_idx)
  1652. continue;
  1653. /*
  1654. * No point in marking the device as lost, if the device is
  1655. * already DEAD.
  1656. */
  1657. if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
  1658. continue;
  1659. if (atomic_read(&fcport->state) == FCS_ONLINE)
  1660. qla2x00_schedule_rport_del(ha, fcport, defer);
  1661. atomic_set(&fcport->state, FCS_DEVICE_LOST);
  1662. }
  1663. }
  1664. /*
  1665. * qla2x00_mem_alloc
  1666. * Allocates adapter memory.
  1667. *
  1668. * Returns:
  1669. * 0 = success.
  1670. * !0 = failure.
  1671. */
  1672. static int
  1673. qla2x00_mem_alloc(scsi_qla_host_t *ha)
  1674. {
  1675. char name[16];
  1676. ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
  1677. (ha->request_q_length + 1) * sizeof(request_t), &ha->request_dma,
  1678. GFP_KERNEL);
  1679. if (!ha->request_ring)
  1680. goto fail;
  1681. ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
  1682. (ha->response_q_length + 1) * sizeof(response_t),
  1683. &ha->response_dma, GFP_KERNEL);
  1684. if (!ha->response_ring)
  1685. goto fail_free_request_ring;
  1686. ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
  1687. &ha->gid_list_dma, GFP_KERNEL);
  1688. if (!ha->gid_list)
  1689. goto fail_free_response_ring;
  1690. ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
  1691. &ha->init_cb_dma, GFP_KERNEL);
  1692. if (!ha->init_cb)
  1693. goto fail_free_gid_list;
  1694. snprintf(name, sizeof(name), "%s_%ld", QLA2XXX_DRIVER_NAME,
  1695. ha->host_no);
  1696. ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
  1697. DMA_POOL_SIZE, 8, 0);
  1698. if (!ha->s_dma_pool)
  1699. goto fail_free_init_cb;
  1700. ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
  1701. if (!ha->srb_mempool)
  1702. goto fail_free_s_dma_pool;
  1703. /* Get memory for cached NVRAM */
  1704. ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
  1705. if (!ha->nvram)
  1706. goto fail_free_srb_mempool;
  1707. /* Allocate memory for SNS commands */
  1708. if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
  1709. /* Get consistent memory allocated for SNS commands */
  1710. ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
  1711. sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
  1712. if (!ha->sns_cmd)
  1713. goto fail_free_nvram;
  1714. } else {
  1715. /* Get consistent memory allocated for MS IOCB */
  1716. ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
  1717. &ha->ms_iocb_dma);
  1718. if (!ha->ms_iocb)
  1719. goto fail_free_nvram;
  1720. /* Get consistent memory allocated for CT SNS commands */
  1721. ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
  1722. sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
  1723. if (!ha->ct_sns)
  1724. goto fail_free_ms_iocb;
  1725. }
  1726. return 0;
  1727. fail_free_ms_iocb:
  1728. dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
  1729. ha->ms_iocb = NULL;
  1730. ha->ms_iocb_dma = 0;
  1731. fail_free_nvram:
  1732. kfree(ha->nvram);
  1733. ha->nvram = NULL;
  1734. fail_free_srb_mempool:
  1735. mempool_destroy(ha->srb_mempool);
  1736. ha->srb_mempool = NULL;
  1737. fail_free_s_dma_pool:
  1738. dma_pool_destroy(ha->s_dma_pool);
  1739. ha->s_dma_pool = NULL;
  1740. fail_free_init_cb:
  1741. dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
  1742. ha->init_cb_dma);
  1743. ha->init_cb = NULL;
  1744. ha->init_cb_dma = 0;
  1745. fail_free_gid_list:
  1746. dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
  1747. ha->gid_list_dma);
  1748. ha->gid_list = NULL;
  1749. ha->gid_list_dma = 0;
  1750. fail_free_response_ring:
  1751. dma_free_coherent(&ha->pdev->dev, (ha->response_q_length + 1) *
  1752. sizeof(response_t), ha->response_ring, ha->response_dma);
  1753. ha->response_ring = NULL;
  1754. ha->response_dma = 0;
  1755. fail_free_request_ring:
  1756. dma_free_coherent(&ha->pdev->dev, (ha->request_q_length + 1) *
  1757. sizeof(request_t), ha->request_ring, ha->request_dma);
  1758. ha->request_ring = NULL;
  1759. ha->request_dma = 0;
  1760. fail:
  1761. return -ENOMEM;
  1762. }
  1763. /*
  1764. * qla2x00_mem_free
  1765. * Frees all adapter allocated memory.
  1766. *
  1767. * Input:
  1768. * ha = adapter block pointer.
  1769. */
  1770. static void
  1771. qla2x00_mem_free(scsi_qla_host_t *ha)
  1772. {
  1773. struct list_head *fcpl, *fcptemp;
  1774. fc_port_t *fcport;
  1775. if (ha->srb_mempool)
  1776. mempool_destroy(ha->srb_mempool);
  1777. if (ha->fce)
  1778. dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
  1779. ha->fce_dma);
  1780. if (ha->fw_dump) {
  1781. if (ha->eft)
  1782. dma_free_coherent(&ha->pdev->dev,
  1783. ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
  1784. vfree(ha->fw_dump);
  1785. }
  1786. if (ha->sns_cmd)
  1787. dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
  1788. ha->sns_cmd, ha->sns_cmd_dma);
  1789. if (ha->ct_sns)
  1790. dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
  1791. ha->ct_sns, ha->ct_sns_dma);
  1792. if (ha->sfp_data)
  1793. dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
  1794. if (ha->ms_iocb)
  1795. dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
  1796. if (ha->s_dma_pool)
  1797. dma_pool_destroy(ha->s_dma_pool);
  1798. if (ha->init_cb)
  1799. dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
  1800. ha->init_cb, ha->init_cb_dma);
  1801. if (ha->gid_list)
  1802. dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
  1803. ha->gid_list_dma);
  1804. if (ha->response_ring)
  1805. dma_free_coherent(&ha->pdev->dev,
  1806. (ha->response_q_length + 1) * sizeof(response_t),
  1807. ha->response_ring, ha->response_dma);
  1808. if (ha->request_ring)
  1809. dma_free_coherent(&ha->pdev->dev,
  1810. (ha->request_q_length + 1) * sizeof(request_t),
  1811. ha->request_ring, ha->request_dma);
  1812. ha->srb_mempool = NULL;
  1813. ha->eft = NULL;
  1814. ha->eft_dma = 0;
  1815. ha->sns_cmd = NULL;
  1816. ha->sns_cmd_dma = 0;
  1817. ha->ct_sns = NULL;
  1818. ha->ct_sns_dma = 0;
  1819. ha->ms_iocb = NULL;
  1820. ha->ms_iocb_dma = 0;
  1821. ha->init_cb = NULL;
  1822. ha->init_cb_dma = 0;
  1823. ha->s_dma_pool = NULL;
  1824. ha->gid_list = NULL;
  1825. ha->gid_list_dma = 0;
  1826. ha->response_ring = NULL;
  1827. ha->response_dma = 0;
  1828. ha->request_ring = NULL;
  1829. ha->request_dma = 0;
  1830. list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
  1831. fcport = list_entry(fcpl, fc_port_t, list);
  1832. /* fc ports */
  1833. list_del_init(&fcport->list);
  1834. kfree(fcport);
  1835. }
  1836. INIT_LIST_HEAD(&ha->fcports);
  1837. ha->fw_dump = NULL;
  1838. ha->fw_dumped = 0;
  1839. ha->fw_dump_reading = 0;
  1840. vfree(ha->optrom_buffer);
  1841. kfree(ha->nvram);
  1842. }
  1843. static struct qla_work_evt *
  1844. qla2x00_alloc_work(struct scsi_qla_host *ha, enum qla_work_type type,
  1845. int locked)
  1846. {
  1847. struct qla_work_evt *e;
  1848. e = kzalloc(sizeof(struct qla_work_evt), locked ? GFP_ATOMIC:
  1849. GFP_KERNEL);
  1850. if (!e)
  1851. return NULL;
  1852. INIT_LIST_HEAD(&e->list);
  1853. e->type = type;
  1854. e->flags = QLA_EVT_FLAG_FREE;
  1855. return e;
  1856. }
  1857. static int
  1858. qla2x00_post_work(struct scsi_qla_host *ha, struct qla_work_evt *e, int locked)
  1859. {
  1860. unsigned long uninitialized_var(flags);
  1861. scsi_qla_host_t *pha = to_qla_parent(ha);
  1862. if (!locked)
  1863. spin_lock_irqsave(&pha->hardware_lock, flags);
  1864. list_add_tail(&e->list, &ha->work_list);
  1865. qla2xxx_wake_dpc(ha);
  1866. if (!locked)
  1867. spin_unlock_irqrestore(&pha->hardware_lock, flags);
  1868. return QLA_SUCCESS;
  1869. }
  1870. int
  1871. qla2x00_post_aen_work(struct scsi_qla_host *ha, enum fc_host_event_code code,
  1872. u32 data)
  1873. {
  1874. struct qla_work_evt *e;
  1875. e = qla2x00_alloc_work(ha, QLA_EVT_AEN, 1);
  1876. if (!e)
  1877. return QLA_FUNCTION_FAILED;
  1878. e->u.aen.code = code;
  1879. e->u.aen.data = data;
  1880. return qla2x00_post_work(ha, e, 1);
  1881. }
  1882. int
  1883. qla2x00_post_hwe_work(struct scsi_qla_host *ha, uint16_t code, uint16_t d1,
  1884. uint16_t d2, uint16_t d3)
  1885. {
  1886. struct qla_work_evt *e;
  1887. e = qla2x00_alloc_work(ha, QLA_EVT_HWE_LOG, 1);
  1888. if (!e)
  1889. return QLA_FUNCTION_FAILED;
  1890. e->u.hwe.code = code;
  1891. e->u.hwe.d1 = d1;
  1892. e->u.hwe.d2 = d2;
  1893. e->u.hwe.d3 = d3;
  1894. return qla2x00_post_work(ha, e, 1);
  1895. }
  1896. static void
  1897. qla2x00_do_work(struct scsi_qla_host *ha)
  1898. {
  1899. struct qla_work_evt *e;
  1900. scsi_qla_host_t *pha = to_qla_parent(ha);
  1901. spin_lock_irq(&pha->hardware_lock);
  1902. while (!list_empty(&ha->work_list)) {
  1903. e = list_entry(ha->work_list.next, struct qla_work_evt, list);
  1904. list_del_init(&e->list);
  1905. spin_unlock_irq(&pha->hardware_lock);
  1906. switch (e->type) {
  1907. case QLA_EVT_AEN:
  1908. fc_host_post_event(ha->host, fc_get_event_number(),
  1909. e->u.aen.code, e->u.aen.data);
  1910. break;
  1911. case QLA_EVT_HWE_LOG:
  1912. qla2xxx_hw_event_log(ha, e->u.hwe.code, e->u.hwe.d1,
  1913. e->u.hwe.d2, e->u.hwe.d3);
  1914. break;
  1915. }
  1916. if (e->flags & QLA_EVT_FLAG_FREE)
  1917. kfree(e);
  1918. spin_lock_irq(&pha->hardware_lock);
  1919. }
  1920. spin_unlock_irq(&pha->hardware_lock);
  1921. }
  1922. /**************************************************************************
  1923. * qla2x00_do_dpc
  1924. * This kernel thread is a task that is schedule by the interrupt handler
  1925. * to perform the background processing for interrupts.
  1926. *
  1927. * Notes:
  1928. * This task always run in the context of a kernel thread. It
  1929. * is kick-off by the driver's detect code and starts up
  1930. * up one per adapter. It immediately goes to sleep and waits for
  1931. * some fibre event. When either the interrupt handler or
  1932. * the timer routine detects a event it will one of the task
  1933. * bits then wake us up.
  1934. **************************************************************************/
  1935. static int
  1936. qla2x00_do_dpc(void *data)
  1937. {
  1938. int rval;
  1939. scsi_qla_host_t *ha;
  1940. fc_port_t *fcport;
  1941. uint8_t status;
  1942. uint16_t next_loopid;
  1943. struct scsi_qla_host *vha;
  1944. int i;
  1945. ha = (scsi_qla_host_t *)data;
  1946. set_user_nice(current, -20);
  1947. while (!kthread_should_stop()) {
  1948. DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
  1949. set_current_state(TASK_INTERRUPTIBLE);
  1950. schedule();
  1951. __set_current_state(TASK_RUNNING);
  1952. DEBUG3(printk("qla2x00: DPC handler waking up\n"));
  1953. /* Initialization not yet finished. Don't do anything yet. */
  1954. if (!ha->flags.init_done)
  1955. continue;
  1956. DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
  1957. ha->dpc_active = 1;
  1958. if (ha->flags.mbox_busy) {
  1959. ha->dpc_active = 0;
  1960. continue;
  1961. }
  1962. qla2x00_do_work(ha);
  1963. if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
  1964. DEBUG(printk("scsi(%ld): dpc: sched "
  1965. "qla2x00_abort_isp ha = %p\n",
  1966. ha->host_no, ha));
  1967. if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
  1968. &ha->dpc_flags))) {
  1969. if (qla2x00_abort_isp(ha)) {
  1970. /* failed. retry later */
  1971. set_bit(ISP_ABORT_NEEDED,
  1972. &ha->dpc_flags);
  1973. }
  1974. clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
  1975. }
  1976. for_each_mapped_vp_idx(ha, i) {
  1977. list_for_each_entry(vha, &ha->vp_list,
  1978. vp_list) {
  1979. if (i == vha->vp_idx) {
  1980. set_bit(ISP_ABORT_NEEDED,
  1981. &vha->dpc_flags);
  1982. break;
  1983. }
  1984. }
  1985. }
  1986. DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
  1987. ha->host_no));
  1988. }
  1989. if (test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags)) {
  1990. qla2x00_update_fcports(ha);
  1991. clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags);
  1992. }
  1993. if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
  1994. (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
  1995. DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
  1996. ha->host_no));
  1997. qla2x00_rst_aen(ha);
  1998. clear_bit(RESET_ACTIVE, &ha->dpc_flags);
  1999. }
  2000. /* Retry each device up to login retry count */
  2001. if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
  2002. !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
  2003. atomic_read(&ha->loop_state) != LOOP_DOWN) {
  2004. DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
  2005. ha->host_no));
  2006. next_loopid = 0;
  2007. list_for_each_entry(fcport, &ha->fcports, list) {
  2008. /*
  2009. * If the port is not ONLINE then try to login
  2010. * to it if we haven't run out of retries.
  2011. */
  2012. if (atomic_read(&fcport->state) != FCS_ONLINE &&
  2013. fcport->login_retry) {
  2014. if (fcport->flags & FCF_FABRIC_DEVICE) {
  2015. if (fcport->flags &
  2016. FCF_TAPE_PRESENT)
  2017. ha->isp_ops->fabric_logout(
  2018. ha, fcport->loop_id,
  2019. fcport->d_id.b.domain,
  2020. fcport->d_id.b.area,
  2021. fcport->d_id.b.al_pa);
  2022. status = qla2x00_fabric_login(
  2023. ha, fcport, &next_loopid);
  2024. } else
  2025. status =
  2026. qla2x00_local_device_login(
  2027. ha, fcport);
  2028. fcport->login_retry--;
  2029. if (status == QLA_SUCCESS) {
  2030. fcport->old_loop_id = fcport->loop_id;
  2031. DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
  2032. ha->host_no, fcport->loop_id));
  2033. qla2x00_update_fcport(ha,
  2034. fcport);
  2035. } else if (status == 1) {
  2036. set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
  2037. /* retry the login again */
  2038. DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
  2039. ha->host_no,
  2040. fcport->login_retry, fcport->loop_id));
  2041. } else {
  2042. fcport->login_retry = 0;
  2043. }
  2044. if (fcport->login_retry == 0 && status != QLA_SUCCESS)
  2045. fcport->loop_id = FC_NO_LOOP_ID;
  2046. }
  2047. if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
  2048. break;
  2049. }
  2050. DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
  2051. ha->host_no));
  2052. }
  2053. if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
  2054. DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
  2055. ha->host_no));
  2056. if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
  2057. &ha->dpc_flags))) {
  2058. rval = qla2x00_loop_resync(ha);
  2059. clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
  2060. }
  2061. DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
  2062. ha->host_no));
  2063. }
  2064. if (test_bit(NPIV_CONFIG_NEEDED, &ha->dpc_flags) &&
  2065. atomic_read(&ha->loop_state) == LOOP_READY) {
  2066. clear_bit(NPIV_CONFIG_NEEDED, &ha->dpc_flags);
  2067. qla2xxx_flash_npiv_conf(ha);
  2068. }
  2069. if (!ha->interrupts_on)
  2070. ha->isp_ops->enable_intrs(ha);
  2071. if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags))
  2072. ha->isp_ops->beacon_blink(ha);
  2073. qla2x00_do_dpc_all_vps(ha);
  2074. ha->dpc_active = 0;
  2075. } /* End of while(1) */
  2076. DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
  2077. /*
  2078. * Make sure that nobody tries to wake us up again.
  2079. */
  2080. ha->dpc_active = 0;
  2081. return 0;
  2082. }
  2083. void
  2084. qla2xxx_wake_dpc(scsi_qla_host_t *ha)
  2085. {
  2086. struct task_struct *t = ha->dpc_thread;
  2087. if (!test_bit(UNLOADING, &ha->dpc_flags) && t)
  2088. wake_up_process(t);
  2089. }
  2090. /*
  2091. * qla2x00_rst_aen
  2092. * Processes asynchronous reset.
  2093. *
  2094. * Input:
  2095. * ha = adapter block pointer.
  2096. */
  2097. static void
  2098. qla2x00_rst_aen(scsi_qla_host_t *ha)
  2099. {
  2100. if (ha->flags.online && !ha->flags.reset_active &&
  2101. !atomic_read(&ha->loop_down_timer) &&
  2102. !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
  2103. do {
  2104. clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
  2105. /*
  2106. * Issue marker command only when we are going to start
  2107. * the I/O.
  2108. */
  2109. ha->marker_needed = 1;
  2110. } while (!atomic_read(&ha->loop_down_timer) &&
  2111. (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
  2112. }
  2113. }
  2114. static void
  2115. qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
  2116. {
  2117. struct scsi_cmnd *cmd = sp->cmd;
  2118. if (sp->flags & SRB_DMA_VALID) {
  2119. scsi_dma_unmap(cmd);
  2120. sp->flags &= ~SRB_DMA_VALID;
  2121. }
  2122. CMD_SP(cmd) = NULL;
  2123. }
  2124. void
  2125. qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
  2126. {
  2127. struct scsi_cmnd *cmd = sp->cmd;
  2128. qla2x00_sp_free_dma(ha, sp);
  2129. mempool_free(sp, ha->srb_mempool);
  2130. cmd->scsi_done(cmd);
  2131. }
  2132. /**************************************************************************
  2133. * qla2x00_timer
  2134. *
  2135. * Description:
  2136. * One second timer
  2137. *
  2138. * Context: Interrupt
  2139. ***************************************************************************/
  2140. void
  2141. qla2x00_timer(scsi_qla_host_t *ha)
  2142. {
  2143. unsigned long cpu_flags = 0;
  2144. fc_port_t *fcport;
  2145. int start_dpc = 0;
  2146. int index;
  2147. srb_t *sp;
  2148. int t;
  2149. scsi_qla_host_t *pha = to_qla_parent(ha);
  2150. /*
  2151. * Ports - Port down timer.
  2152. *
  2153. * Whenever, a port is in the LOST state we start decrementing its port
  2154. * down timer every second until it reaches zero. Once it reaches zero
  2155. * the port it marked DEAD.
  2156. */
  2157. t = 0;
  2158. list_for_each_entry(fcport, &ha->fcports, list) {
  2159. if (fcport->port_type != FCT_TARGET)
  2160. continue;
  2161. if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
  2162. if (atomic_read(&fcport->port_down_timer) == 0)
  2163. continue;
  2164. if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
  2165. atomic_set(&fcport->state, FCS_DEVICE_DEAD);
  2166. DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
  2167. "%d remaining\n",
  2168. ha->host_no,
  2169. t, atomic_read(&fcport->port_down_timer)));
  2170. }
  2171. t++;
  2172. } /* End of for fcport */
  2173. /* Loop down handler. */
  2174. if (atomic_read(&ha->loop_down_timer) > 0 &&
  2175. !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
  2176. if (atomic_read(&ha->loop_down_timer) ==
  2177. ha->loop_down_abort_time) {
  2178. DEBUG(printk("scsi(%ld): Loop Down - aborting the "
  2179. "queues before time expire\n",
  2180. ha->host_no));
  2181. if (!IS_QLA2100(ha) && ha->link_down_timeout)
  2182. atomic_set(&ha->loop_state, LOOP_DEAD);
  2183. /* Schedule an ISP abort to return any tape commands. */
  2184. /* NPIV - scan physical port only */
  2185. if (!ha->parent) {
  2186. spin_lock_irqsave(&ha->hardware_lock,
  2187. cpu_flags);
  2188. for (index = 1;
  2189. index < MAX_OUTSTANDING_COMMANDS;
  2190. index++) {
  2191. fc_port_t *sfcp;
  2192. sp = ha->outstanding_cmds[index];
  2193. if (!sp)
  2194. continue;
  2195. sfcp = sp->fcport;
  2196. if (!(sfcp->flags & FCF_TAPE_PRESENT))
  2197. continue;
  2198. set_bit(ISP_ABORT_NEEDED,
  2199. &ha->dpc_flags);
  2200. break;
  2201. }
  2202. spin_unlock_irqrestore(&ha->hardware_lock,
  2203. cpu_flags);
  2204. }
  2205. set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
  2206. start_dpc++;
  2207. }
  2208. /* if the loop has been down for 4 minutes, reinit adapter */
  2209. if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
  2210. DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
  2211. "restarting queues.\n",
  2212. ha->host_no));
  2213. set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
  2214. start_dpc++;
  2215. if (!(ha->device_flags & DFLG_NO_CABLE) &&
  2216. !ha->parent) {
  2217. DEBUG(printk("scsi(%ld): Loop down - "
  2218. "aborting ISP.\n",
  2219. ha->host_no));
  2220. qla_printk(KERN_WARNING, ha,
  2221. "Loop down - aborting ISP.\n");
  2222. set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
  2223. }
  2224. }
  2225. DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
  2226. ha->host_no,
  2227. atomic_read(&ha->loop_down_timer)));
  2228. }
  2229. /* Check if beacon LED needs to be blinked */
  2230. if (ha->beacon_blink_led == 1) {
  2231. set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags);
  2232. start_dpc++;
  2233. }
  2234. /* Process any deferred work. */
  2235. if (!list_empty(&ha->work_list))
  2236. start_dpc++;
  2237. /* Schedule the DPC routine if needed */
  2238. if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
  2239. test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
  2240. test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) ||
  2241. start_dpc ||
  2242. test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
  2243. test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) ||
  2244. test_bit(VP_DPC_NEEDED, &ha->dpc_flags) ||
  2245. test_bit(RELOGIN_NEEDED, &ha->dpc_flags)))
  2246. qla2xxx_wake_dpc(pha);
  2247. qla2x00_restart_timer(ha, WATCH_INTERVAL);
  2248. }
  2249. /* Firmware interface routines. */
  2250. #define FW_BLOBS 6
  2251. #define FW_ISP21XX 0
  2252. #define FW_ISP22XX 1
  2253. #define FW_ISP2300 2
  2254. #define FW_ISP2322 3
  2255. #define FW_ISP24XX 4
  2256. #define FW_ISP25XX 5
  2257. #define FW_FILE_ISP21XX "ql2100_fw.bin"
  2258. #define FW_FILE_ISP22XX "ql2200_fw.bin"
  2259. #define FW_FILE_ISP2300 "ql2300_fw.bin"
  2260. #define FW_FILE_ISP2322 "ql2322_fw.bin"
  2261. #define FW_FILE_ISP24XX "ql2400_fw.bin"
  2262. #define FW_FILE_ISP25XX "ql2500_fw.bin"
  2263. static DEFINE_MUTEX(qla_fw_lock);
  2264. static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
  2265. { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
  2266. { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
  2267. { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
  2268. { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
  2269. { .name = FW_FILE_ISP24XX, },
  2270. { .name = FW_FILE_ISP25XX, },
  2271. };
  2272. struct fw_blob *
  2273. qla2x00_request_firmware(scsi_qla_host_t *ha)
  2274. {
  2275. struct fw_blob *blob;
  2276. blob = NULL;
  2277. if (IS_QLA2100(ha)) {
  2278. blob = &qla_fw_blobs[FW_ISP21XX];
  2279. } else if (IS_QLA2200(ha)) {
  2280. blob = &qla_fw_blobs[FW_ISP22XX];
  2281. } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
  2282. blob = &qla_fw_blobs[FW_ISP2300];
  2283. } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
  2284. blob = &qla_fw_blobs[FW_ISP2322];
  2285. } else if (IS_QLA24XX_TYPE(ha)) {
  2286. blob = &qla_fw_blobs[FW_ISP24XX];
  2287. } else if (IS_QLA25XX(ha)) {
  2288. blob = &qla_fw_blobs[FW_ISP25XX];
  2289. }
  2290. mutex_lock(&qla_fw_lock);
  2291. if (blob->fw)
  2292. goto out;
  2293. if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
  2294. DEBUG2(printk("scsi(%ld): Failed to load firmware image "
  2295. "(%s).\n", ha->host_no, blob->name));
  2296. blob->fw = NULL;
  2297. blob = NULL;
  2298. goto out;
  2299. }
  2300. out:
  2301. mutex_unlock(&qla_fw_lock);
  2302. return blob;
  2303. }
  2304. static void
  2305. qla2x00_release_firmware(void)
  2306. {
  2307. int idx;
  2308. mutex_lock(&qla_fw_lock);
  2309. for (idx = 0; idx < FW_BLOBS; idx++)
  2310. if (qla_fw_blobs[idx].fw)
  2311. release_firmware(qla_fw_blobs[idx].fw);
  2312. mutex_unlock(&qla_fw_lock);
  2313. }
  2314. static pci_ers_result_t
  2315. qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
  2316. {
  2317. switch (state) {
  2318. case pci_channel_io_normal:
  2319. return PCI_ERS_RESULT_CAN_RECOVER;
  2320. case pci_channel_io_frozen:
  2321. pci_disable_device(pdev);
  2322. return PCI_ERS_RESULT_NEED_RESET;
  2323. case pci_channel_io_perm_failure:
  2324. qla2x00_remove_one(pdev);
  2325. return PCI_ERS_RESULT_DISCONNECT;
  2326. }
  2327. return PCI_ERS_RESULT_NEED_RESET;
  2328. }
  2329. static pci_ers_result_t
  2330. qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
  2331. {
  2332. int risc_paused = 0;
  2333. uint32_t stat;
  2334. unsigned long flags;
  2335. scsi_qla_host_t *ha = pci_get_drvdata(pdev);
  2336. struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
  2337. struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
  2338. spin_lock_irqsave(&ha->hardware_lock, flags);
  2339. if (IS_QLA2100(ha) || IS_QLA2200(ha)){
  2340. stat = RD_REG_DWORD(&reg->hccr);
  2341. if (stat & HCCR_RISC_PAUSE)
  2342. risc_paused = 1;
  2343. } else if (IS_QLA23XX(ha)) {
  2344. stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
  2345. if (stat & HSR_RISC_PAUSED)
  2346. risc_paused = 1;
  2347. } else if (IS_FWI2_CAPABLE(ha)) {
  2348. stat = RD_REG_DWORD(&reg24->host_status);
  2349. if (stat & HSRX_RISC_PAUSED)
  2350. risc_paused = 1;
  2351. }
  2352. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  2353. if (risc_paused) {
  2354. qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
  2355. "Dumping firmware!\n");
  2356. ha->isp_ops->fw_dump(ha, 0);
  2357. return PCI_ERS_RESULT_NEED_RESET;
  2358. } else
  2359. return PCI_ERS_RESULT_RECOVERED;
  2360. }
  2361. static pci_ers_result_t
  2362. qla2xxx_pci_slot_reset(struct pci_dev *pdev)
  2363. {
  2364. pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
  2365. scsi_qla_host_t *ha = pci_get_drvdata(pdev);
  2366. int rc;
  2367. if (ha->mem_only)
  2368. rc = pci_enable_device_mem(pdev);
  2369. else
  2370. rc = pci_enable_device(pdev);
  2371. if (rc) {
  2372. qla_printk(KERN_WARNING, ha,
  2373. "Can't re-enable PCI device after reset.\n");
  2374. return ret;
  2375. }
  2376. pci_set_master(pdev);
  2377. if (ha->isp_ops->pci_config(ha))
  2378. return ret;
  2379. set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
  2380. if (qla2x00_abort_isp(ha)== QLA_SUCCESS)
  2381. ret = PCI_ERS_RESULT_RECOVERED;
  2382. clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
  2383. return ret;
  2384. }
  2385. static void
  2386. qla2xxx_pci_resume(struct pci_dev *pdev)
  2387. {
  2388. scsi_qla_host_t *ha = pci_get_drvdata(pdev);
  2389. int ret;
  2390. ret = qla2x00_wait_for_hba_online(ha);
  2391. if (ret != QLA_SUCCESS) {
  2392. qla_printk(KERN_ERR, ha,
  2393. "the device failed to resume I/O "
  2394. "from slot/link_reset");
  2395. }
  2396. pci_cleanup_aer_uncorrect_error_status(pdev);
  2397. }
  2398. static struct pci_error_handlers qla2xxx_err_handler = {
  2399. .error_detected = qla2xxx_pci_error_detected,
  2400. .mmio_enabled = qla2xxx_pci_mmio_enabled,
  2401. .slot_reset = qla2xxx_pci_slot_reset,
  2402. .resume = qla2xxx_pci_resume,
  2403. };
  2404. static struct pci_device_id qla2xxx_pci_tbl[] = {
  2405. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
  2406. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
  2407. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
  2408. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
  2409. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
  2410. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
  2411. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
  2412. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
  2413. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
  2414. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
  2415. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
  2416. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
  2417. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
  2418. { 0 },
  2419. };
  2420. MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
  2421. static struct pci_driver qla2xxx_pci_driver = {
  2422. .name = QLA2XXX_DRIVER_NAME,
  2423. .driver = {
  2424. .owner = THIS_MODULE,
  2425. },
  2426. .id_table = qla2xxx_pci_tbl,
  2427. .probe = qla2x00_probe_one,
  2428. .remove = qla2x00_remove_one,
  2429. .err_handler = &qla2xxx_err_handler,
  2430. };
  2431. /**
  2432. * qla2x00_module_init - Module initialization.
  2433. **/
  2434. static int __init
  2435. qla2x00_module_init(void)
  2436. {
  2437. int ret = 0;
  2438. /* Allocate cache for SRBs. */
  2439. srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
  2440. SLAB_HWCACHE_ALIGN, NULL);
  2441. if (srb_cachep == NULL) {
  2442. printk(KERN_ERR
  2443. "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
  2444. return -ENOMEM;
  2445. }
  2446. /* Derive version string. */
  2447. strcpy(qla2x00_version_str, QLA2XXX_VERSION);
  2448. if (ql2xextended_error_logging)
  2449. strcat(qla2x00_version_str, "-debug");
  2450. qla2xxx_transport_template =
  2451. fc_attach_transport(&qla2xxx_transport_functions);
  2452. if (!qla2xxx_transport_template) {
  2453. kmem_cache_destroy(srb_cachep);
  2454. return -ENODEV;
  2455. }
  2456. qla2xxx_transport_vport_template =
  2457. fc_attach_transport(&qla2xxx_transport_vport_functions);
  2458. if (!qla2xxx_transport_vport_template) {
  2459. kmem_cache_destroy(srb_cachep);
  2460. fc_release_transport(qla2xxx_transport_template);
  2461. return -ENODEV;
  2462. }
  2463. printk(KERN_INFO "QLogic Fibre Channel HBA Driver: %s\n",
  2464. qla2x00_version_str);
  2465. ret = pci_register_driver(&qla2xxx_pci_driver);
  2466. if (ret) {
  2467. kmem_cache_destroy(srb_cachep);
  2468. fc_release_transport(qla2xxx_transport_template);
  2469. fc_release_transport(qla2xxx_transport_vport_template);
  2470. }
  2471. return ret;
  2472. }
  2473. /**
  2474. * qla2x00_module_exit - Module cleanup.
  2475. **/
  2476. static void __exit
  2477. qla2x00_module_exit(void)
  2478. {
  2479. pci_unregister_driver(&qla2xxx_pci_driver);
  2480. qla2x00_release_firmware();
  2481. kmem_cache_destroy(srb_cachep);
  2482. fc_release_transport(qla2xxx_transport_template);
  2483. fc_release_transport(qla2xxx_transport_vport_template);
  2484. }
  2485. module_init(qla2x00_module_init);
  2486. module_exit(qla2x00_module_exit);
  2487. MODULE_AUTHOR("QLogic Corporation");
  2488. MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
  2489. MODULE_LICENSE("GPL");
  2490. MODULE_VERSION(QLA2XXX_VERSION);
  2491. MODULE_FIRMWARE(FW_FILE_ISP21XX);
  2492. MODULE_FIRMWARE(FW_FILE_ISP22XX);
  2493. MODULE_FIRMWARE(FW_FILE_ISP2300);
  2494. MODULE_FIRMWARE(FW_FILE_ISP2322);
  2495. MODULE_FIRMWARE(FW_FILE_ISP24XX);
  2496. MODULE_FIRMWARE(FW_FILE_ISP25XX);