qla_os.c 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928
  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(ha->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->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->flags = 0;
  913. sp->cmd->result = res;
  914. sp->cmd->host_scribble = (unsigned char *)NULL;
  915. qla2x00_sp_compl(ha, sp);
  916. }
  917. }
  918. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  919. }
  920. static int
  921. qla2xxx_slave_alloc(struct scsi_device *sdev)
  922. {
  923. struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
  924. if (!rport || fc_remote_port_chkready(rport))
  925. return -ENXIO;
  926. sdev->hostdata = *(fc_port_t **)rport->dd_data;
  927. return 0;
  928. }
  929. static int
  930. qla2xxx_slave_configure(struct scsi_device *sdev)
  931. {
  932. scsi_qla_host_t *ha = shost_priv(sdev->host);
  933. struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
  934. if (sdev->tagged_supported)
  935. scsi_activate_tcq(sdev, ha->max_q_depth);
  936. else
  937. scsi_deactivate_tcq(sdev, ha->max_q_depth);
  938. rport->dev_loss_tmo = ha->port_down_retry_count;
  939. return 0;
  940. }
  941. static void
  942. qla2xxx_slave_destroy(struct scsi_device *sdev)
  943. {
  944. sdev->hostdata = NULL;
  945. }
  946. static int
  947. qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
  948. {
  949. scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
  950. return sdev->queue_depth;
  951. }
  952. static int
  953. qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
  954. {
  955. if (sdev->tagged_supported) {
  956. scsi_set_tag_type(sdev, tag_type);
  957. if (tag_type)
  958. scsi_activate_tcq(sdev, sdev->queue_depth);
  959. else
  960. scsi_deactivate_tcq(sdev, sdev->queue_depth);
  961. } else
  962. tag_type = 0;
  963. return tag_type;
  964. }
  965. /**
  966. * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
  967. * @ha: HA context
  968. *
  969. * At exit, the @ha's flags.enable_64bit_addressing set to indicated
  970. * supported addressing method.
  971. */
  972. static void
  973. qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
  974. {
  975. /* Assume a 32bit DMA mask. */
  976. ha->flags.enable_64bit_addressing = 0;
  977. if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
  978. /* Any upper-dword bits set? */
  979. if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
  980. !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
  981. /* Ok, a 64bit DMA mask is applicable. */
  982. ha->flags.enable_64bit_addressing = 1;
  983. ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
  984. ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
  985. return;
  986. }
  987. }
  988. dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
  989. pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
  990. }
  991. static void
  992. qla2x00_enable_intrs(scsi_qla_host_t *ha)
  993. {
  994. unsigned long flags = 0;
  995. struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
  996. spin_lock_irqsave(&ha->hardware_lock, flags);
  997. ha->interrupts_on = 1;
  998. /* enable risc and host interrupts */
  999. WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
  1000. RD_REG_WORD(&reg->ictrl);
  1001. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  1002. }
  1003. static void
  1004. qla2x00_disable_intrs(scsi_qla_host_t *ha)
  1005. {
  1006. unsigned long flags = 0;
  1007. struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
  1008. spin_lock_irqsave(&ha->hardware_lock, flags);
  1009. ha->interrupts_on = 0;
  1010. /* disable risc and host interrupts */
  1011. WRT_REG_WORD(&reg->ictrl, 0);
  1012. RD_REG_WORD(&reg->ictrl);
  1013. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  1014. }
  1015. static void
  1016. qla24xx_enable_intrs(scsi_qla_host_t *ha)
  1017. {
  1018. unsigned long flags = 0;
  1019. struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
  1020. spin_lock_irqsave(&ha->hardware_lock, flags);
  1021. ha->interrupts_on = 1;
  1022. WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
  1023. RD_REG_DWORD(&reg->ictrl);
  1024. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  1025. }
  1026. static void
  1027. qla24xx_disable_intrs(scsi_qla_host_t *ha)
  1028. {
  1029. unsigned long flags = 0;
  1030. struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
  1031. spin_lock_irqsave(&ha->hardware_lock, flags);
  1032. ha->interrupts_on = 0;
  1033. WRT_REG_DWORD(&reg->ictrl, 0);
  1034. RD_REG_DWORD(&reg->ictrl);
  1035. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  1036. }
  1037. static struct isp_operations qla2100_isp_ops = {
  1038. .pci_config = qla2100_pci_config,
  1039. .reset_chip = qla2x00_reset_chip,
  1040. .chip_diag = qla2x00_chip_diag,
  1041. .config_rings = qla2x00_config_rings,
  1042. .reset_adapter = qla2x00_reset_adapter,
  1043. .nvram_config = qla2x00_nvram_config,
  1044. .update_fw_options = qla2x00_update_fw_options,
  1045. .load_risc = qla2x00_load_risc,
  1046. .pci_info_str = qla2x00_pci_info_str,
  1047. .fw_version_str = qla2x00_fw_version_str,
  1048. .intr_handler = qla2100_intr_handler,
  1049. .enable_intrs = qla2x00_enable_intrs,
  1050. .disable_intrs = qla2x00_disable_intrs,
  1051. .abort_command = qla2x00_abort_command,
  1052. .target_reset = qla2x00_abort_target,
  1053. .lun_reset = qla2x00_lun_reset,
  1054. .fabric_login = qla2x00_login_fabric,
  1055. .fabric_logout = qla2x00_fabric_logout,
  1056. .calc_req_entries = qla2x00_calc_iocbs_32,
  1057. .build_iocbs = qla2x00_build_scsi_iocbs_32,
  1058. .prep_ms_iocb = qla2x00_prep_ms_iocb,
  1059. .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
  1060. .read_nvram = qla2x00_read_nvram_data,
  1061. .write_nvram = qla2x00_write_nvram_data,
  1062. .fw_dump = qla2100_fw_dump,
  1063. .beacon_on = NULL,
  1064. .beacon_off = NULL,
  1065. .beacon_blink = NULL,
  1066. .read_optrom = qla2x00_read_optrom_data,
  1067. .write_optrom = qla2x00_write_optrom_data,
  1068. .get_flash_version = qla2x00_get_flash_version,
  1069. };
  1070. static struct isp_operations qla2300_isp_ops = {
  1071. .pci_config = qla2300_pci_config,
  1072. .reset_chip = qla2x00_reset_chip,
  1073. .chip_diag = qla2x00_chip_diag,
  1074. .config_rings = qla2x00_config_rings,
  1075. .reset_adapter = qla2x00_reset_adapter,
  1076. .nvram_config = qla2x00_nvram_config,
  1077. .update_fw_options = qla2x00_update_fw_options,
  1078. .load_risc = qla2x00_load_risc,
  1079. .pci_info_str = qla2x00_pci_info_str,
  1080. .fw_version_str = qla2x00_fw_version_str,
  1081. .intr_handler = qla2300_intr_handler,
  1082. .enable_intrs = qla2x00_enable_intrs,
  1083. .disable_intrs = qla2x00_disable_intrs,
  1084. .abort_command = qla2x00_abort_command,
  1085. .target_reset = qla2x00_abort_target,
  1086. .lun_reset = qla2x00_lun_reset,
  1087. .fabric_login = qla2x00_login_fabric,
  1088. .fabric_logout = qla2x00_fabric_logout,
  1089. .calc_req_entries = qla2x00_calc_iocbs_32,
  1090. .build_iocbs = qla2x00_build_scsi_iocbs_32,
  1091. .prep_ms_iocb = qla2x00_prep_ms_iocb,
  1092. .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
  1093. .read_nvram = qla2x00_read_nvram_data,
  1094. .write_nvram = qla2x00_write_nvram_data,
  1095. .fw_dump = qla2300_fw_dump,
  1096. .beacon_on = qla2x00_beacon_on,
  1097. .beacon_off = qla2x00_beacon_off,
  1098. .beacon_blink = qla2x00_beacon_blink,
  1099. .read_optrom = qla2x00_read_optrom_data,
  1100. .write_optrom = qla2x00_write_optrom_data,
  1101. .get_flash_version = qla2x00_get_flash_version,
  1102. };
  1103. static struct isp_operations qla24xx_isp_ops = {
  1104. .pci_config = qla24xx_pci_config,
  1105. .reset_chip = qla24xx_reset_chip,
  1106. .chip_diag = qla24xx_chip_diag,
  1107. .config_rings = qla24xx_config_rings,
  1108. .reset_adapter = qla24xx_reset_adapter,
  1109. .nvram_config = qla24xx_nvram_config,
  1110. .update_fw_options = qla24xx_update_fw_options,
  1111. .load_risc = qla24xx_load_risc,
  1112. .pci_info_str = qla24xx_pci_info_str,
  1113. .fw_version_str = qla24xx_fw_version_str,
  1114. .intr_handler = qla24xx_intr_handler,
  1115. .enable_intrs = qla24xx_enable_intrs,
  1116. .disable_intrs = qla24xx_disable_intrs,
  1117. .abort_command = qla24xx_abort_command,
  1118. .target_reset = qla24xx_abort_target,
  1119. .lun_reset = qla24xx_lun_reset,
  1120. .fabric_login = qla24xx_login_fabric,
  1121. .fabric_logout = qla24xx_fabric_logout,
  1122. .calc_req_entries = NULL,
  1123. .build_iocbs = NULL,
  1124. .prep_ms_iocb = qla24xx_prep_ms_iocb,
  1125. .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
  1126. .read_nvram = qla24xx_read_nvram_data,
  1127. .write_nvram = qla24xx_write_nvram_data,
  1128. .fw_dump = qla24xx_fw_dump,
  1129. .beacon_on = qla24xx_beacon_on,
  1130. .beacon_off = qla24xx_beacon_off,
  1131. .beacon_blink = qla24xx_beacon_blink,
  1132. .read_optrom = qla24xx_read_optrom_data,
  1133. .write_optrom = qla24xx_write_optrom_data,
  1134. .get_flash_version = qla24xx_get_flash_version,
  1135. };
  1136. static struct isp_operations qla25xx_isp_ops = {
  1137. .pci_config = qla25xx_pci_config,
  1138. .reset_chip = qla24xx_reset_chip,
  1139. .chip_diag = qla24xx_chip_diag,
  1140. .config_rings = qla24xx_config_rings,
  1141. .reset_adapter = qla24xx_reset_adapter,
  1142. .nvram_config = qla24xx_nvram_config,
  1143. .update_fw_options = qla24xx_update_fw_options,
  1144. .load_risc = qla24xx_load_risc,
  1145. .pci_info_str = qla24xx_pci_info_str,
  1146. .fw_version_str = qla24xx_fw_version_str,
  1147. .intr_handler = qla24xx_intr_handler,
  1148. .enable_intrs = qla24xx_enable_intrs,
  1149. .disable_intrs = qla24xx_disable_intrs,
  1150. .abort_command = qla24xx_abort_command,
  1151. .target_reset = qla24xx_abort_target,
  1152. .lun_reset = qla24xx_lun_reset,
  1153. .fabric_login = qla24xx_login_fabric,
  1154. .fabric_logout = qla24xx_fabric_logout,
  1155. .calc_req_entries = NULL,
  1156. .build_iocbs = NULL,
  1157. .prep_ms_iocb = qla24xx_prep_ms_iocb,
  1158. .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
  1159. .read_nvram = qla25xx_read_nvram_data,
  1160. .write_nvram = qla25xx_write_nvram_data,
  1161. .fw_dump = qla25xx_fw_dump,
  1162. .beacon_on = qla24xx_beacon_on,
  1163. .beacon_off = qla24xx_beacon_off,
  1164. .beacon_blink = qla24xx_beacon_blink,
  1165. .read_optrom = qla25xx_read_optrom_data,
  1166. .write_optrom = qla24xx_write_optrom_data,
  1167. .get_flash_version = qla24xx_get_flash_version,
  1168. };
  1169. static inline void
  1170. qla2x00_set_isp_flags(scsi_qla_host_t *ha)
  1171. {
  1172. ha->device_type = DT_EXTENDED_IDS;
  1173. switch (ha->pdev->device) {
  1174. case PCI_DEVICE_ID_QLOGIC_ISP2100:
  1175. ha->device_type |= DT_ISP2100;
  1176. ha->device_type &= ~DT_EXTENDED_IDS;
  1177. ha->fw_srisc_address = RISC_START_ADDRESS_2100;
  1178. break;
  1179. case PCI_DEVICE_ID_QLOGIC_ISP2200:
  1180. ha->device_type |= DT_ISP2200;
  1181. ha->device_type &= ~DT_EXTENDED_IDS;
  1182. ha->fw_srisc_address = RISC_START_ADDRESS_2100;
  1183. break;
  1184. case PCI_DEVICE_ID_QLOGIC_ISP2300:
  1185. ha->device_type |= DT_ISP2300;
  1186. ha->device_type |= DT_ZIO_SUPPORTED;
  1187. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1188. break;
  1189. case PCI_DEVICE_ID_QLOGIC_ISP2312:
  1190. ha->device_type |= DT_ISP2312;
  1191. ha->device_type |= DT_ZIO_SUPPORTED;
  1192. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1193. break;
  1194. case PCI_DEVICE_ID_QLOGIC_ISP2322:
  1195. ha->device_type |= DT_ISP2322;
  1196. ha->device_type |= DT_ZIO_SUPPORTED;
  1197. if (ha->pdev->subsystem_vendor == 0x1028 &&
  1198. ha->pdev->subsystem_device == 0x0170)
  1199. ha->device_type |= DT_OEM_001;
  1200. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1201. break;
  1202. case PCI_DEVICE_ID_QLOGIC_ISP6312:
  1203. ha->device_type |= DT_ISP6312;
  1204. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1205. break;
  1206. case PCI_DEVICE_ID_QLOGIC_ISP6322:
  1207. ha->device_type |= DT_ISP6322;
  1208. ha->fw_srisc_address = RISC_START_ADDRESS_2300;
  1209. break;
  1210. case PCI_DEVICE_ID_QLOGIC_ISP2422:
  1211. ha->device_type |= DT_ISP2422;
  1212. ha->device_type |= DT_ZIO_SUPPORTED;
  1213. ha->device_type |= DT_FWI2;
  1214. ha->device_type |= DT_IIDMA;
  1215. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1216. break;
  1217. case PCI_DEVICE_ID_QLOGIC_ISP2432:
  1218. ha->device_type |= DT_ISP2432;
  1219. ha->device_type |= DT_ZIO_SUPPORTED;
  1220. ha->device_type |= DT_FWI2;
  1221. ha->device_type |= DT_IIDMA;
  1222. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1223. break;
  1224. case PCI_DEVICE_ID_QLOGIC_ISP8432:
  1225. ha->device_type |= DT_ISP8432;
  1226. ha->device_type |= DT_ZIO_SUPPORTED;
  1227. ha->device_type |= DT_FWI2;
  1228. ha->device_type |= DT_IIDMA;
  1229. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1230. break;
  1231. case PCI_DEVICE_ID_QLOGIC_ISP5422:
  1232. ha->device_type |= DT_ISP5422;
  1233. ha->device_type |= DT_FWI2;
  1234. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1235. break;
  1236. case PCI_DEVICE_ID_QLOGIC_ISP5432:
  1237. ha->device_type |= DT_ISP5432;
  1238. ha->device_type |= DT_FWI2;
  1239. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1240. break;
  1241. case PCI_DEVICE_ID_QLOGIC_ISP2532:
  1242. ha->device_type |= DT_ISP2532;
  1243. ha->device_type |= DT_ZIO_SUPPORTED;
  1244. ha->device_type |= DT_FWI2;
  1245. ha->device_type |= DT_IIDMA;
  1246. ha->fw_srisc_address = RISC_START_ADDRESS_2400;
  1247. break;
  1248. }
  1249. }
  1250. static int
  1251. qla2x00_iospace_config(scsi_qla_host_t *ha)
  1252. {
  1253. resource_size_t pio;
  1254. if (pci_request_selected_regions(ha->pdev, ha->bars,
  1255. QLA2XXX_DRIVER_NAME)) {
  1256. qla_printk(KERN_WARNING, ha,
  1257. "Failed to reserve PIO/MMIO regions (%s)\n",
  1258. pci_name(ha->pdev));
  1259. goto iospace_error_exit;
  1260. }
  1261. if (!(ha->bars & 1))
  1262. goto skip_pio;
  1263. /* We only need PIO for Flash operations on ISP2312 v2 chips. */
  1264. pio = pci_resource_start(ha->pdev, 0);
  1265. if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
  1266. if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
  1267. qla_printk(KERN_WARNING, ha,
  1268. "Invalid PCI I/O region size (%s)...\n",
  1269. pci_name(ha->pdev));
  1270. pio = 0;
  1271. }
  1272. } else {
  1273. qla_printk(KERN_WARNING, ha,
  1274. "region #0 not a PIO resource (%s)...\n",
  1275. pci_name(ha->pdev));
  1276. pio = 0;
  1277. }
  1278. ha->pio_address = pio;
  1279. skip_pio:
  1280. /* Use MMIO operations for all accesses. */
  1281. if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
  1282. qla_printk(KERN_ERR, ha,
  1283. "region #1 not an MMIO resource (%s), aborting\n",
  1284. pci_name(ha->pdev));
  1285. goto iospace_error_exit;
  1286. }
  1287. if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
  1288. qla_printk(KERN_ERR, ha,
  1289. "Invalid PCI mem region size (%s), aborting\n",
  1290. pci_name(ha->pdev));
  1291. goto iospace_error_exit;
  1292. }
  1293. ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
  1294. if (!ha->iobase) {
  1295. qla_printk(KERN_ERR, ha,
  1296. "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
  1297. goto iospace_error_exit;
  1298. }
  1299. return (0);
  1300. iospace_error_exit:
  1301. return (-ENOMEM);
  1302. }
  1303. static void
  1304. qla2xxx_scan_start(struct Scsi_Host *shost)
  1305. {
  1306. scsi_qla_host_t *ha = shost_priv(shost);
  1307. set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
  1308. set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
  1309. set_bit(RSCN_UPDATE, &ha->dpc_flags);
  1310. }
  1311. static int
  1312. qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
  1313. {
  1314. scsi_qla_host_t *ha = shost_priv(shost);
  1315. if (!ha->host)
  1316. return 1;
  1317. if (time > ha->loop_reset_delay * HZ)
  1318. return 1;
  1319. return atomic_read(&ha->loop_state) == LOOP_READY;
  1320. }
  1321. /*
  1322. * PCI driver interface
  1323. */
  1324. static int __devinit
  1325. qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
  1326. {
  1327. int ret = -ENODEV;
  1328. struct Scsi_Host *host;
  1329. scsi_qla_host_t *ha;
  1330. char pci_info[30];
  1331. char fw_str[30];
  1332. struct scsi_host_template *sht;
  1333. int bars, mem_only = 0;
  1334. bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
  1335. sht = &qla2x00_driver_template;
  1336. if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
  1337. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
  1338. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
  1339. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
  1340. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
  1341. pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532) {
  1342. bars = pci_select_bars(pdev, IORESOURCE_MEM);
  1343. sht = &qla24xx_driver_template;
  1344. mem_only = 1;
  1345. }
  1346. if (mem_only) {
  1347. if (pci_enable_device_mem(pdev))
  1348. goto probe_out;
  1349. } else {
  1350. if (pci_enable_device(pdev))
  1351. goto probe_out;
  1352. }
  1353. if (pci_find_aer_capability(pdev))
  1354. if (pci_enable_pcie_error_reporting(pdev))
  1355. goto probe_out;
  1356. host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
  1357. if (host == NULL) {
  1358. printk(KERN_WARNING
  1359. "qla2xxx: Couldn't allocate host from scsi layer!\n");
  1360. goto probe_disable_device;
  1361. }
  1362. /* Clear our data area */
  1363. ha = shost_priv(host);
  1364. memset(ha, 0, sizeof(scsi_qla_host_t));
  1365. ha->pdev = pdev;
  1366. ha->host = host;
  1367. ha->host_no = host->host_no;
  1368. sprintf(ha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, ha->host_no);
  1369. ha->parent = NULL;
  1370. ha->bars = bars;
  1371. ha->mem_only = mem_only;
  1372. spin_lock_init(&ha->hardware_lock);
  1373. /* Set ISP-type information. */
  1374. qla2x00_set_isp_flags(ha);
  1375. /* Configure PCI I/O space */
  1376. ret = qla2x00_iospace_config(ha);
  1377. if (ret)
  1378. goto probe_failed;
  1379. qla_printk(KERN_INFO, ha,
  1380. "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
  1381. ha->iobase);
  1382. ha->prev_topology = 0;
  1383. ha->init_cb_size = sizeof(init_cb_t);
  1384. ha->mgmt_svr_loop_id = MANAGEMENT_SERVER + ha->vp_idx;
  1385. ha->link_data_rate = PORT_SPEED_UNKNOWN;
  1386. ha->optrom_size = OPTROM_SIZE_2300;
  1387. ha->max_q_depth = MAX_Q_DEPTH;
  1388. if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
  1389. ha->max_q_depth = ql2xmaxqdepth;
  1390. /* Assign ISP specific operations. */
  1391. if (IS_QLA2100(ha)) {
  1392. host->max_id = MAX_TARGETS_2100;
  1393. ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
  1394. ha->request_q_length = REQUEST_ENTRY_CNT_2100;
  1395. ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
  1396. ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
  1397. host->sg_tablesize = 32;
  1398. ha->gid_list_info_size = 4;
  1399. ha->isp_ops = &qla2100_isp_ops;
  1400. } else if (IS_QLA2200(ha)) {
  1401. host->max_id = MAX_TARGETS_2200;
  1402. ha->mbx_count = MAILBOX_REGISTER_COUNT;
  1403. ha->request_q_length = REQUEST_ENTRY_CNT_2200;
  1404. ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
  1405. ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
  1406. ha->gid_list_info_size = 4;
  1407. ha->isp_ops = &qla2100_isp_ops;
  1408. } else if (IS_QLA23XX(ha)) {
  1409. host->max_id = MAX_TARGETS_2200;
  1410. ha->mbx_count = MAILBOX_REGISTER_COUNT;
  1411. ha->request_q_length = REQUEST_ENTRY_CNT_2200;
  1412. ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
  1413. ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
  1414. ha->gid_list_info_size = 6;
  1415. if (IS_QLA2322(ha) || IS_QLA6322(ha))
  1416. ha->optrom_size = OPTROM_SIZE_2322;
  1417. ha->isp_ops = &qla2300_isp_ops;
  1418. } else if (IS_QLA24XX_TYPE(ha)) {
  1419. host->max_id = MAX_TARGETS_2200;
  1420. ha->mbx_count = MAILBOX_REGISTER_COUNT;
  1421. ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
  1422. ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
  1423. ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
  1424. ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
  1425. ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
  1426. ha->gid_list_info_size = 8;
  1427. ha->optrom_size = OPTROM_SIZE_24XX;
  1428. ha->isp_ops = &qla24xx_isp_ops;
  1429. } else if (IS_QLA25XX(ha)) {
  1430. host->max_id = MAX_TARGETS_2200;
  1431. ha->mbx_count = MAILBOX_REGISTER_COUNT;
  1432. ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
  1433. ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
  1434. ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
  1435. ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
  1436. ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
  1437. ha->gid_list_info_size = 8;
  1438. ha->optrom_size = OPTROM_SIZE_25XX;
  1439. ha->isp_ops = &qla25xx_isp_ops;
  1440. ha->hw_event_start = PCI_FUNC(pdev->devfn) ?
  1441. FA_HW_EVENT1_ADDR: FA_HW_EVENT0_ADDR;
  1442. }
  1443. host->can_queue = ha->request_q_length + 128;
  1444. mutex_init(&ha->vport_lock);
  1445. init_completion(&ha->mbx_cmd_comp);
  1446. complete(&ha->mbx_cmd_comp);
  1447. init_completion(&ha->mbx_intr_comp);
  1448. INIT_LIST_HEAD(&ha->list);
  1449. INIT_LIST_HEAD(&ha->fcports);
  1450. INIT_LIST_HEAD(&ha->vp_list);
  1451. INIT_LIST_HEAD(&ha->work_list);
  1452. set_bit(0, (unsigned long *) ha->vp_idx_map);
  1453. qla2x00_config_dma_addressing(ha);
  1454. if (qla2x00_mem_alloc(ha)) {
  1455. qla_printk(KERN_WARNING, ha,
  1456. "[ERROR] Failed to allocate memory for adapter\n");
  1457. ret = -ENOMEM;
  1458. goto probe_failed;
  1459. }
  1460. if (qla2x00_initialize_adapter(ha)) {
  1461. qla_printk(KERN_WARNING, ha,
  1462. "Failed to initialize adapter\n");
  1463. DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
  1464. "Adapter flags %x.\n",
  1465. ha->host_no, ha->device_flags));
  1466. ret = -ENODEV;
  1467. goto probe_failed;
  1468. }
  1469. /*
  1470. * Startup the kernel thread for this host adapter
  1471. */
  1472. ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
  1473. "%s_dpc", ha->host_str);
  1474. if (IS_ERR(ha->dpc_thread)) {
  1475. qla_printk(KERN_WARNING, ha,
  1476. "Unable to start DPC thread!\n");
  1477. ret = PTR_ERR(ha->dpc_thread);
  1478. goto probe_failed;
  1479. }
  1480. host->this_id = 255;
  1481. host->cmd_per_lun = 3;
  1482. host->unique_id = host->host_no;
  1483. host->max_cmd_len = MAX_CMDSZ;
  1484. host->max_channel = MAX_BUSES - 1;
  1485. host->max_lun = MAX_LUNS;
  1486. host->transportt = qla2xxx_transport_template;
  1487. ret = qla2x00_request_irqs(ha);
  1488. if (ret)
  1489. goto probe_failed;
  1490. /* Initialized the timer */
  1491. qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
  1492. DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
  1493. ha->host_no, ha));
  1494. pci_set_drvdata(pdev, ha);
  1495. ha->flags.init_done = 1;
  1496. ha->flags.online = 1;
  1497. ret = scsi_add_host(host, &pdev->dev);
  1498. if (ret)
  1499. goto probe_failed;
  1500. scsi_scan_host(host);
  1501. qla2x00_alloc_sysfs_attr(ha);
  1502. qla2x00_init_host_attr(ha);
  1503. qla2x00_dfs_setup(ha);
  1504. qla_printk(KERN_INFO, ha, "\n"
  1505. " QLogic Fibre Channel HBA Driver: %s\n"
  1506. " QLogic %s - %s\n"
  1507. " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
  1508. qla2x00_version_str, ha->model_number,
  1509. ha->model_desc ? ha->model_desc: "", pdev->device,
  1510. ha->isp_ops->pci_info_str(ha, pci_info), pci_name(pdev),
  1511. ha->flags.enable_64bit_addressing ? '+': '-', ha->host_no,
  1512. ha->isp_ops->fw_version_str(ha, fw_str));
  1513. return 0;
  1514. probe_failed:
  1515. qla2x00_free_device(ha);
  1516. scsi_host_put(host);
  1517. probe_disable_device:
  1518. pci_disable_device(pdev);
  1519. probe_out:
  1520. return ret;
  1521. }
  1522. static void
  1523. qla2x00_remove_one(struct pci_dev *pdev)
  1524. {
  1525. scsi_qla_host_t *ha;
  1526. ha = pci_get_drvdata(pdev);
  1527. qla2x00_dfs_remove(ha);
  1528. qla84xx_put_chip(ha);
  1529. qla2x00_free_sysfs_attr(ha);
  1530. fc_remove_host(ha->host);
  1531. scsi_remove_host(ha->host);
  1532. qla2x00_free_device(ha);
  1533. scsi_host_put(ha->host);
  1534. pci_disable_device(pdev);
  1535. pci_set_drvdata(pdev, NULL);
  1536. }
  1537. static void
  1538. qla2x00_free_device(scsi_qla_host_t *ha)
  1539. {
  1540. qla2x00_abort_all_cmds(ha, DID_NO_CONNECT << 16);
  1541. /* Disable timer */
  1542. if (ha->timer_active)
  1543. qla2x00_stop_timer(ha);
  1544. ha->flags.online = 0;
  1545. /* Kill the kernel thread for this host */
  1546. if (ha->dpc_thread) {
  1547. struct task_struct *t = ha->dpc_thread;
  1548. /*
  1549. * qla2xxx_wake_dpc checks for ->dpc_thread
  1550. * so we need to zero it out.
  1551. */
  1552. ha->dpc_thread = NULL;
  1553. kthread_stop(t);
  1554. }
  1555. if (ha->flags.fce_enabled)
  1556. qla2x00_disable_fce_trace(ha, NULL, NULL);
  1557. if (ha->eft)
  1558. qla2x00_disable_eft_trace(ha);
  1559. /* Stop currently executing firmware. */
  1560. qla2x00_try_to_stop_firmware(ha);
  1561. /* turn-off interrupts on the card */
  1562. if (ha->interrupts_on)
  1563. ha->isp_ops->disable_intrs(ha);
  1564. qla2x00_mem_free(ha);
  1565. qla2x00_free_irqs(ha);
  1566. /* release io space registers */
  1567. if (ha->iobase)
  1568. iounmap(ha->iobase);
  1569. pci_release_selected_regions(ha->pdev, ha->bars);
  1570. }
  1571. static inline void
  1572. qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport,
  1573. int defer)
  1574. {
  1575. struct fc_rport *rport;
  1576. scsi_qla_host_t *pha = to_qla_parent(ha);
  1577. if (!fcport->rport)
  1578. return;
  1579. rport = fcport->rport;
  1580. if (defer) {
  1581. spin_lock_irq(ha->host->host_lock);
  1582. fcport->drport = rport;
  1583. spin_unlock_irq(ha->host->host_lock);
  1584. set_bit(FCPORT_UPDATE_NEEDED, &pha->dpc_flags);
  1585. qla2xxx_wake_dpc(pha);
  1586. } else
  1587. fc_remote_port_delete(rport);
  1588. }
  1589. /*
  1590. * qla2x00_mark_device_lost Updates fcport state when device goes offline.
  1591. *
  1592. * Input: ha = adapter block pointer. fcport = port structure pointer.
  1593. *
  1594. * Return: None.
  1595. *
  1596. * Context:
  1597. */
  1598. void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
  1599. int do_login, int defer)
  1600. {
  1601. if (atomic_read(&fcport->state) == FCS_ONLINE &&
  1602. ha->vp_idx == fcport->vp_idx)
  1603. qla2x00_schedule_rport_del(ha, fcport, defer);
  1604. /*
  1605. * We may need to retry the login, so don't change the state of the
  1606. * port but do the retries.
  1607. */
  1608. if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
  1609. atomic_set(&fcport->state, FCS_DEVICE_LOST);
  1610. if (!do_login)
  1611. return;
  1612. if (fcport->login_retry == 0) {
  1613. fcport->login_retry = ha->login_retry_count;
  1614. set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
  1615. DEBUG(printk("scsi(%ld): Port login retry: "
  1616. "%02x%02x%02x%02x%02x%02x%02x%02x, "
  1617. "id = 0x%04x retry cnt=%d\n",
  1618. ha->host_no,
  1619. fcport->port_name[0],
  1620. fcport->port_name[1],
  1621. fcport->port_name[2],
  1622. fcport->port_name[3],
  1623. fcport->port_name[4],
  1624. fcport->port_name[5],
  1625. fcport->port_name[6],
  1626. fcport->port_name[7],
  1627. fcport->loop_id,
  1628. fcport->login_retry));
  1629. }
  1630. }
  1631. /*
  1632. * qla2x00_mark_all_devices_lost
  1633. * Updates fcport state when device goes offline.
  1634. *
  1635. * Input:
  1636. * ha = adapter block pointer.
  1637. * fcport = port structure pointer.
  1638. *
  1639. * Return:
  1640. * None.
  1641. *
  1642. * Context:
  1643. */
  1644. void
  1645. qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer)
  1646. {
  1647. fc_port_t *fcport;
  1648. scsi_qla_host_t *pha = to_qla_parent(ha);
  1649. list_for_each_entry(fcport, &pha->fcports, list) {
  1650. if (ha->vp_idx != fcport->vp_idx)
  1651. continue;
  1652. /*
  1653. * No point in marking the device as lost, if the device is
  1654. * already DEAD.
  1655. */
  1656. if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
  1657. continue;
  1658. if (atomic_read(&fcport->state) == FCS_ONLINE)
  1659. qla2x00_schedule_rport_del(ha, fcport, defer);
  1660. atomic_set(&fcport->state, FCS_DEVICE_LOST);
  1661. }
  1662. }
  1663. /*
  1664. * qla2x00_mem_alloc
  1665. * Allocates adapter memory.
  1666. *
  1667. * Returns:
  1668. * 0 = success.
  1669. * !0 = failure.
  1670. */
  1671. static int
  1672. qla2x00_mem_alloc(scsi_qla_host_t *ha)
  1673. {
  1674. char name[16];
  1675. ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
  1676. (ha->request_q_length + 1) * sizeof(request_t), &ha->request_dma,
  1677. GFP_KERNEL);
  1678. if (!ha->request_ring)
  1679. goto fail;
  1680. ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
  1681. (ha->response_q_length + 1) * sizeof(response_t),
  1682. &ha->response_dma, GFP_KERNEL);
  1683. if (!ha->response_ring)
  1684. goto fail_free_request_ring;
  1685. ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
  1686. &ha->gid_list_dma, GFP_KERNEL);
  1687. if (!ha->gid_list)
  1688. goto fail_free_response_ring;
  1689. ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
  1690. &ha->init_cb_dma, GFP_KERNEL);
  1691. if (!ha->init_cb)
  1692. goto fail_free_gid_list;
  1693. snprintf(name, sizeof(name), "%s_%ld", QLA2XXX_DRIVER_NAME,
  1694. ha->host_no);
  1695. ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
  1696. DMA_POOL_SIZE, 8, 0);
  1697. if (!ha->s_dma_pool)
  1698. goto fail_free_init_cb;
  1699. ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
  1700. if (!ha->srb_mempool)
  1701. goto fail_free_s_dma_pool;
  1702. /* Get memory for cached NVRAM */
  1703. ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
  1704. if (!ha->nvram)
  1705. goto fail_free_srb_mempool;
  1706. /* Allocate memory for SNS commands */
  1707. if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
  1708. /* Get consistent memory allocated for SNS commands */
  1709. ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
  1710. sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
  1711. if (!ha->sns_cmd)
  1712. goto fail_free_nvram;
  1713. } else {
  1714. /* Get consistent memory allocated for MS IOCB */
  1715. ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
  1716. &ha->ms_iocb_dma);
  1717. if (!ha->ms_iocb)
  1718. goto fail_free_nvram;
  1719. /* Get consistent memory allocated for CT SNS commands */
  1720. ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
  1721. sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
  1722. if (!ha->ct_sns)
  1723. goto fail_free_ms_iocb;
  1724. }
  1725. return 0;
  1726. fail_free_ms_iocb:
  1727. dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
  1728. ha->ms_iocb = NULL;
  1729. ha->ms_iocb_dma = 0;
  1730. fail_free_nvram:
  1731. kfree(ha->nvram);
  1732. ha->nvram = NULL;
  1733. fail_free_srb_mempool:
  1734. mempool_destroy(ha->srb_mempool);
  1735. ha->srb_mempool = NULL;
  1736. fail_free_s_dma_pool:
  1737. dma_pool_destroy(ha->s_dma_pool);
  1738. ha->s_dma_pool = NULL;
  1739. fail_free_init_cb:
  1740. dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
  1741. ha->init_cb_dma);
  1742. ha->init_cb = NULL;
  1743. ha->init_cb_dma = 0;
  1744. fail_free_gid_list:
  1745. dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
  1746. ha->gid_list_dma);
  1747. ha->gid_list = NULL;
  1748. ha->gid_list_dma = 0;
  1749. fail_free_response_ring:
  1750. dma_free_coherent(&ha->pdev->dev, (ha->response_q_length + 1) *
  1751. sizeof(response_t), ha->response_ring, ha->response_dma);
  1752. ha->response_ring = NULL;
  1753. ha->response_dma = 0;
  1754. fail_free_request_ring:
  1755. dma_free_coherent(&ha->pdev->dev, (ha->request_q_length + 1) *
  1756. sizeof(request_t), ha->request_ring, ha->request_dma);
  1757. ha->request_ring = NULL;
  1758. ha->request_dma = 0;
  1759. fail:
  1760. return -ENOMEM;
  1761. }
  1762. /*
  1763. * qla2x00_mem_free
  1764. * Frees all adapter allocated memory.
  1765. *
  1766. * Input:
  1767. * ha = adapter block pointer.
  1768. */
  1769. static void
  1770. qla2x00_mem_free(scsi_qla_host_t *ha)
  1771. {
  1772. struct list_head *fcpl, *fcptemp;
  1773. fc_port_t *fcport;
  1774. if (ha->srb_mempool)
  1775. mempool_destroy(ha->srb_mempool);
  1776. if (ha->fce)
  1777. dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
  1778. ha->fce_dma);
  1779. if (ha->fw_dump) {
  1780. if (ha->eft)
  1781. dma_free_coherent(&ha->pdev->dev,
  1782. ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
  1783. vfree(ha->fw_dump);
  1784. }
  1785. if (ha->sns_cmd)
  1786. dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
  1787. ha->sns_cmd, ha->sns_cmd_dma);
  1788. if (ha->ct_sns)
  1789. dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
  1790. ha->ct_sns, ha->ct_sns_dma);
  1791. if (ha->sfp_data)
  1792. dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
  1793. if (ha->ms_iocb)
  1794. dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
  1795. if (ha->s_dma_pool)
  1796. dma_pool_destroy(ha->s_dma_pool);
  1797. if (ha->init_cb)
  1798. dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
  1799. ha->init_cb, ha->init_cb_dma);
  1800. if (ha->gid_list)
  1801. dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
  1802. ha->gid_list_dma);
  1803. if (ha->response_ring)
  1804. dma_free_coherent(&ha->pdev->dev,
  1805. (ha->response_q_length + 1) * sizeof(response_t),
  1806. ha->response_ring, ha->response_dma);
  1807. if (ha->request_ring)
  1808. dma_free_coherent(&ha->pdev->dev,
  1809. (ha->request_q_length + 1) * sizeof(request_t),
  1810. ha->request_ring, ha->request_dma);
  1811. ha->srb_mempool = NULL;
  1812. ha->eft = NULL;
  1813. ha->eft_dma = 0;
  1814. ha->sns_cmd = NULL;
  1815. ha->sns_cmd_dma = 0;
  1816. ha->ct_sns = NULL;
  1817. ha->ct_sns_dma = 0;
  1818. ha->ms_iocb = NULL;
  1819. ha->ms_iocb_dma = 0;
  1820. ha->init_cb = NULL;
  1821. ha->init_cb_dma = 0;
  1822. ha->s_dma_pool = NULL;
  1823. ha->gid_list = NULL;
  1824. ha->gid_list_dma = 0;
  1825. ha->response_ring = NULL;
  1826. ha->response_dma = 0;
  1827. ha->request_ring = NULL;
  1828. ha->request_dma = 0;
  1829. list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
  1830. fcport = list_entry(fcpl, fc_port_t, list);
  1831. /* fc ports */
  1832. list_del_init(&fcport->list);
  1833. kfree(fcport);
  1834. }
  1835. INIT_LIST_HEAD(&ha->fcports);
  1836. ha->fw_dump = NULL;
  1837. ha->fw_dumped = 0;
  1838. ha->fw_dump_reading = 0;
  1839. vfree(ha->optrom_buffer);
  1840. kfree(ha->nvram);
  1841. }
  1842. static struct qla_work_evt *
  1843. qla2x00_alloc_work(struct scsi_qla_host *ha, enum qla_work_type type,
  1844. int locked)
  1845. {
  1846. struct qla_work_evt *e;
  1847. e = kzalloc(sizeof(struct qla_work_evt), locked ? GFP_ATOMIC:
  1848. GFP_KERNEL);
  1849. if (!e)
  1850. return NULL;
  1851. INIT_LIST_HEAD(&e->list);
  1852. e->type = type;
  1853. e->flags = QLA_EVT_FLAG_FREE;
  1854. return e;
  1855. }
  1856. static int
  1857. qla2x00_post_work(struct scsi_qla_host *ha, struct qla_work_evt *e, int locked)
  1858. {
  1859. unsigned long uninitialized_var(flags);
  1860. scsi_qla_host_t *pha = to_qla_parent(ha);
  1861. if (!locked)
  1862. spin_lock_irqsave(&pha->hardware_lock, flags);
  1863. list_add_tail(&e->list, &ha->work_list);
  1864. qla2xxx_wake_dpc(ha);
  1865. if (!locked)
  1866. spin_unlock_irqrestore(&pha->hardware_lock, flags);
  1867. return QLA_SUCCESS;
  1868. }
  1869. int
  1870. qla2x00_post_aen_work(struct scsi_qla_host *ha, enum fc_host_event_code code,
  1871. u32 data)
  1872. {
  1873. struct qla_work_evt *e;
  1874. e = qla2x00_alloc_work(ha, QLA_EVT_AEN, 1);
  1875. if (!e)
  1876. return QLA_FUNCTION_FAILED;
  1877. e->u.aen.code = code;
  1878. e->u.aen.data = data;
  1879. return qla2x00_post_work(ha, e, 1);
  1880. }
  1881. int
  1882. qla2x00_post_hwe_work(struct scsi_qla_host *ha, uint16_t code, uint16_t d1,
  1883. uint16_t d2, uint16_t d3)
  1884. {
  1885. struct qla_work_evt *e;
  1886. e = qla2x00_alloc_work(ha, QLA_EVT_HWE_LOG, 1);
  1887. if (!e)
  1888. return QLA_FUNCTION_FAILED;
  1889. e->u.hwe.code = code;
  1890. e->u.hwe.d1 = d1;
  1891. e->u.hwe.d2 = d2;
  1892. e->u.hwe.d3 = d3;
  1893. return qla2x00_post_work(ha, e, 1);
  1894. }
  1895. static void
  1896. qla2x00_do_work(struct scsi_qla_host *ha)
  1897. {
  1898. struct qla_work_evt *e;
  1899. scsi_qla_host_t *pha = to_qla_parent(ha);
  1900. spin_lock_irq(&pha->hardware_lock);
  1901. while (!list_empty(&ha->work_list)) {
  1902. e = list_entry(ha->work_list.next, struct qla_work_evt, list);
  1903. list_del_init(&e->list);
  1904. spin_unlock_irq(&pha->hardware_lock);
  1905. switch (e->type) {
  1906. case QLA_EVT_AEN:
  1907. fc_host_post_event(ha->host, fc_get_event_number(),
  1908. e->u.aen.code, e->u.aen.data);
  1909. break;
  1910. case QLA_EVT_HWE_LOG:
  1911. qla2xxx_hw_event_log(ha, e->u.hwe.code, e->u.hwe.d1,
  1912. e->u.hwe.d2, e->u.hwe.d3);
  1913. break;
  1914. }
  1915. if (e->flags & QLA_EVT_FLAG_FREE)
  1916. kfree(e);
  1917. spin_lock_irq(&pha->hardware_lock);
  1918. }
  1919. spin_unlock_irq(&pha->hardware_lock);
  1920. }
  1921. /**************************************************************************
  1922. * qla2x00_do_dpc
  1923. * This kernel thread is a task that is schedule by the interrupt handler
  1924. * to perform the background processing for interrupts.
  1925. *
  1926. * Notes:
  1927. * This task always run in the context of a kernel thread. It
  1928. * is kick-off by the driver's detect code and starts up
  1929. * up one per adapter. It immediately goes to sleep and waits for
  1930. * some fibre event. When either the interrupt handler or
  1931. * the timer routine detects a event it will one of the task
  1932. * bits then wake us up.
  1933. **************************************************************************/
  1934. static int
  1935. qla2x00_do_dpc(void *data)
  1936. {
  1937. int rval;
  1938. scsi_qla_host_t *ha;
  1939. fc_port_t *fcport;
  1940. uint8_t status;
  1941. uint16_t next_loopid;
  1942. struct scsi_qla_host *vha;
  1943. int i;
  1944. ha = (scsi_qla_host_t *)data;
  1945. set_user_nice(current, -20);
  1946. while (!kthread_should_stop()) {
  1947. DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
  1948. set_current_state(TASK_INTERRUPTIBLE);
  1949. schedule();
  1950. __set_current_state(TASK_RUNNING);
  1951. DEBUG3(printk("qla2x00: DPC handler waking up\n"));
  1952. /* Initialization not yet finished. Don't do anything yet. */
  1953. if (!ha->flags.init_done)
  1954. continue;
  1955. DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
  1956. ha->dpc_active = 1;
  1957. if (ha->flags.mbox_busy) {
  1958. ha->dpc_active = 0;
  1959. continue;
  1960. }
  1961. qla2x00_do_work(ha);
  1962. if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
  1963. DEBUG(printk("scsi(%ld): dpc: sched "
  1964. "qla2x00_abort_isp ha = %p\n",
  1965. ha->host_no, ha));
  1966. if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
  1967. &ha->dpc_flags))) {
  1968. if (qla2x00_abort_isp(ha)) {
  1969. /* failed. retry later */
  1970. set_bit(ISP_ABORT_NEEDED,
  1971. &ha->dpc_flags);
  1972. }
  1973. clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
  1974. }
  1975. for_each_mapped_vp_idx(ha, i) {
  1976. list_for_each_entry(vha, &ha->vp_list,
  1977. vp_list) {
  1978. if (i == vha->vp_idx) {
  1979. set_bit(ISP_ABORT_NEEDED,
  1980. &vha->dpc_flags);
  1981. break;
  1982. }
  1983. }
  1984. }
  1985. DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
  1986. ha->host_no));
  1987. }
  1988. if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags))
  1989. qla2x00_update_fcports(ha);
  1990. if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
  1991. (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
  1992. DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
  1993. ha->host_no));
  1994. qla2x00_rst_aen(ha);
  1995. clear_bit(RESET_ACTIVE, &ha->dpc_flags);
  1996. }
  1997. /* Retry each device up to login retry count */
  1998. if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
  1999. !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
  2000. atomic_read(&ha->loop_state) != LOOP_DOWN) {
  2001. DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
  2002. ha->host_no));
  2003. next_loopid = 0;
  2004. list_for_each_entry(fcport, &ha->fcports, list) {
  2005. /*
  2006. * If the port is not ONLINE then try to login
  2007. * to it if we haven't run out of retries.
  2008. */
  2009. if (atomic_read(&fcport->state) != FCS_ONLINE &&
  2010. fcport->login_retry) {
  2011. if (fcport->flags & FCF_FABRIC_DEVICE) {
  2012. if (fcport->flags &
  2013. FCF_TAPE_PRESENT)
  2014. ha->isp_ops->fabric_logout(
  2015. ha, fcport->loop_id,
  2016. fcport->d_id.b.domain,
  2017. fcport->d_id.b.area,
  2018. fcport->d_id.b.al_pa);
  2019. status = qla2x00_fabric_login(
  2020. ha, fcport, &next_loopid);
  2021. } else
  2022. status =
  2023. qla2x00_local_device_login(
  2024. ha, fcport);
  2025. fcport->login_retry--;
  2026. if (status == QLA_SUCCESS) {
  2027. fcport->old_loop_id = fcport->loop_id;
  2028. DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
  2029. ha->host_no, fcport->loop_id));
  2030. qla2x00_update_fcport(ha,
  2031. fcport);
  2032. } else if (status == 1) {
  2033. set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
  2034. /* retry the login again */
  2035. DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
  2036. ha->host_no,
  2037. fcport->login_retry, fcport->loop_id));
  2038. } else {
  2039. fcport->login_retry = 0;
  2040. }
  2041. if (fcport->login_retry == 0 && status != QLA_SUCCESS)
  2042. fcport->loop_id = FC_NO_LOOP_ID;
  2043. }
  2044. if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
  2045. break;
  2046. }
  2047. DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
  2048. ha->host_no));
  2049. }
  2050. if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
  2051. DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
  2052. ha->host_no));
  2053. if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
  2054. &ha->dpc_flags))) {
  2055. rval = qla2x00_loop_resync(ha);
  2056. clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
  2057. }
  2058. DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
  2059. ha->host_no));
  2060. }
  2061. if (!ha->interrupts_on)
  2062. ha->isp_ops->enable_intrs(ha);
  2063. if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags))
  2064. ha->isp_ops->beacon_blink(ha);
  2065. qla2x00_do_dpc_all_vps(ha);
  2066. ha->dpc_active = 0;
  2067. } /* End of while(1) */
  2068. DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
  2069. /*
  2070. * Make sure that nobody tries to wake us up again.
  2071. */
  2072. ha->dpc_active = 0;
  2073. return 0;
  2074. }
  2075. void
  2076. qla2xxx_wake_dpc(scsi_qla_host_t *ha)
  2077. {
  2078. if (ha->dpc_thread)
  2079. wake_up_process(ha->dpc_thread);
  2080. }
  2081. /*
  2082. * qla2x00_rst_aen
  2083. * Processes asynchronous reset.
  2084. *
  2085. * Input:
  2086. * ha = adapter block pointer.
  2087. */
  2088. static void
  2089. qla2x00_rst_aen(scsi_qla_host_t *ha)
  2090. {
  2091. if (ha->flags.online && !ha->flags.reset_active &&
  2092. !atomic_read(&ha->loop_down_timer) &&
  2093. !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
  2094. do {
  2095. clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
  2096. /*
  2097. * Issue marker command only when we are going to start
  2098. * the I/O.
  2099. */
  2100. ha->marker_needed = 1;
  2101. } while (!atomic_read(&ha->loop_down_timer) &&
  2102. (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
  2103. }
  2104. }
  2105. static void
  2106. qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
  2107. {
  2108. struct scsi_cmnd *cmd = sp->cmd;
  2109. if (sp->flags & SRB_DMA_VALID) {
  2110. scsi_dma_unmap(cmd);
  2111. sp->flags &= ~SRB_DMA_VALID;
  2112. }
  2113. CMD_SP(cmd) = NULL;
  2114. }
  2115. void
  2116. qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
  2117. {
  2118. struct scsi_cmnd *cmd = sp->cmd;
  2119. qla2x00_sp_free_dma(ha, sp);
  2120. mempool_free(sp, ha->srb_mempool);
  2121. cmd->scsi_done(cmd);
  2122. }
  2123. /**************************************************************************
  2124. * qla2x00_timer
  2125. *
  2126. * Description:
  2127. * One second timer
  2128. *
  2129. * Context: Interrupt
  2130. ***************************************************************************/
  2131. void
  2132. qla2x00_timer(scsi_qla_host_t *ha)
  2133. {
  2134. unsigned long cpu_flags = 0;
  2135. fc_port_t *fcport;
  2136. int start_dpc = 0;
  2137. int index;
  2138. srb_t *sp;
  2139. int t;
  2140. scsi_qla_host_t *pha = to_qla_parent(ha);
  2141. /*
  2142. * Ports - Port down timer.
  2143. *
  2144. * Whenever, a port is in the LOST state we start decrementing its port
  2145. * down timer every second until it reaches zero. Once it reaches zero
  2146. * the port it marked DEAD.
  2147. */
  2148. t = 0;
  2149. list_for_each_entry(fcport, &ha->fcports, list) {
  2150. if (fcport->port_type != FCT_TARGET)
  2151. continue;
  2152. if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
  2153. if (atomic_read(&fcport->port_down_timer) == 0)
  2154. continue;
  2155. if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
  2156. atomic_set(&fcport->state, FCS_DEVICE_DEAD);
  2157. DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
  2158. "%d remaining\n",
  2159. ha->host_no,
  2160. t, atomic_read(&fcport->port_down_timer)));
  2161. }
  2162. t++;
  2163. } /* End of for fcport */
  2164. /* Loop down handler. */
  2165. if (atomic_read(&ha->loop_down_timer) > 0 &&
  2166. !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
  2167. if (atomic_read(&ha->loop_down_timer) ==
  2168. ha->loop_down_abort_time) {
  2169. DEBUG(printk("scsi(%ld): Loop Down - aborting the "
  2170. "queues before time expire\n",
  2171. ha->host_no));
  2172. if (!IS_QLA2100(ha) && ha->link_down_timeout)
  2173. atomic_set(&ha->loop_state, LOOP_DEAD);
  2174. /* Schedule an ISP abort to return any tape commands. */
  2175. /* NPIV - scan physical port only */
  2176. if (!ha->parent) {
  2177. spin_lock_irqsave(&ha->hardware_lock,
  2178. cpu_flags);
  2179. for (index = 1;
  2180. index < MAX_OUTSTANDING_COMMANDS;
  2181. index++) {
  2182. fc_port_t *sfcp;
  2183. sp = ha->outstanding_cmds[index];
  2184. if (!sp)
  2185. continue;
  2186. sfcp = sp->fcport;
  2187. if (!(sfcp->flags & FCF_TAPE_PRESENT))
  2188. continue;
  2189. set_bit(ISP_ABORT_NEEDED,
  2190. &ha->dpc_flags);
  2191. break;
  2192. }
  2193. spin_unlock_irqrestore(&ha->hardware_lock,
  2194. cpu_flags);
  2195. }
  2196. set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
  2197. start_dpc++;
  2198. }
  2199. /* if the loop has been down for 4 minutes, reinit adapter */
  2200. if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
  2201. DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
  2202. "restarting queues.\n",
  2203. ha->host_no));
  2204. set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
  2205. start_dpc++;
  2206. if (!(ha->device_flags & DFLG_NO_CABLE) &&
  2207. !ha->parent) {
  2208. DEBUG(printk("scsi(%ld): Loop down - "
  2209. "aborting ISP.\n",
  2210. ha->host_no));
  2211. qla_printk(KERN_WARNING, ha,
  2212. "Loop down - aborting ISP.\n");
  2213. set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
  2214. }
  2215. }
  2216. DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
  2217. ha->host_no,
  2218. atomic_read(&ha->loop_down_timer)));
  2219. }
  2220. /* Check if beacon LED needs to be blinked */
  2221. if (ha->beacon_blink_led == 1) {
  2222. set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags);
  2223. start_dpc++;
  2224. }
  2225. /* Process any deferred work. */
  2226. if (!list_empty(&ha->work_list))
  2227. start_dpc++;
  2228. /* Schedule the DPC routine if needed */
  2229. if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
  2230. test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
  2231. test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) ||
  2232. start_dpc ||
  2233. test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
  2234. test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) ||
  2235. test_bit(VP_DPC_NEEDED, &ha->dpc_flags) ||
  2236. test_bit(RELOGIN_NEEDED, &ha->dpc_flags)))
  2237. qla2xxx_wake_dpc(pha);
  2238. qla2x00_restart_timer(ha, WATCH_INTERVAL);
  2239. }
  2240. /* Firmware interface routines. */
  2241. #define FW_BLOBS 6
  2242. #define FW_ISP21XX 0
  2243. #define FW_ISP22XX 1
  2244. #define FW_ISP2300 2
  2245. #define FW_ISP2322 3
  2246. #define FW_ISP24XX 4
  2247. #define FW_ISP25XX 5
  2248. #define FW_FILE_ISP21XX "ql2100_fw.bin"
  2249. #define FW_FILE_ISP22XX "ql2200_fw.bin"
  2250. #define FW_FILE_ISP2300 "ql2300_fw.bin"
  2251. #define FW_FILE_ISP2322 "ql2322_fw.bin"
  2252. #define FW_FILE_ISP24XX "ql2400_fw.bin"
  2253. #define FW_FILE_ISP25XX "ql2500_fw.bin"
  2254. static DEFINE_MUTEX(qla_fw_lock);
  2255. static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
  2256. { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
  2257. { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
  2258. { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
  2259. { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
  2260. { .name = FW_FILE_ISP24XX, },
  2261. { .name = FW_FILE_ISP25XX, },
  2262. };
  2263. struct fw_blob *
  2264. qla2x00_request_firmware(scsi_qla_host_t *ha)
  2265. {
  2266. struct fw_blob *blob;
  2267. blob = NULL;
  2268. if (IS_QLA2100(ha)) {
  2269. blob = &qla_fw_blobs[FW_ISP21XX];
  2270. } else if (IS_QLA2200(ha)) {
  2271. blob = &qla_fw_blobs[FW_ISP22XX];
  2272. } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
  2273. blob = &qla_fw_blobs[FW_ISP2300];
  2274. } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
  2275. blob = &qla_fw_blobs[FW_ISP2322];
  2276. } else if (IS_QLA24XX_TYPE(ha)) {
  2277. blob = &qla_fw_blobs[FW_ISP24XX];
  2278. } else if (IS_QLA25XX(ha)) {
  2279. blob = &qla_fw_blobs[FW_ISP25XX];
  2280. }
  2281. mutex_lock(&qla_fw_lock);
  2282. if (blob->fw)
  2283. goto out;
  2284. if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
  2285. DEBUG2(printk("scsi(%ld): Failed to load firmware image "
  2286. "(%s).\n", ha->host_no, blob->name));
  2287. blob->fw = NULL;
  2288. blob = NULL;
  2289. goto out;
  2290. }
  2291. out:
  2292. mutex_unlock(&qla_fw_lock);
  2293. return blob;
  2294. }
  2295. static void
  2296. qla2x00_release_firmware(void)
  2297. {
  2298. int idx;
  2299. mutex_lock(&qla_fw_lock);
  2300. for (idx = 0; idx < FW_BLOBS; idx++)
  2301. if (qla_fw_blobs[idx].fw)
  2302. release_firmware(qla_fw_blobs[idx].fw);
  2303. mutex_unlock(&qla_fw_lock);
  2304. }
  2305. static pci_ers_result_t
  2306. qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
  2307. {
  2308. switch (state) {
  2309. case pci_channel_io_normal:
  2310. return PCI_ERS_RESULT_CAN_RECOVER;
  2311. case pci_channel_io_frozen:
  2312. pci_disable_device(pdev);
  2313. return PCI_ERS_RESULT_NEED_RESET;
  2314. case pci_channel_io_perm_failure:
  2315. qla2x00_remove_one(pdev);
  2316. return PCI_ERS_RESULT_DISCONNECT;
  2317. }
  2318. return PCI_ERS_RESULT_NEED_RESET;
  2319. }
  2320. static pci_ers_result_t
  2321. qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
  2322. {
  2323. int risc_paused = 0;
  2324. uint32_t stat;
  2325. unsigned long flags;
  2326. scsi_qla_host_t *ha = pci_get_drvdata(pdev);
  2327. struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
  2328. struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
  2329. spin_lock_irqsave(&ha->hardware_lock, flags);
  2330. if (IS_QLA2100(ha) || IS_QLA2200(ha)){
  2331. stat = RD_REG_DWORD(&reg->hccr);
  2332. if (stat & HCCR_RISC_PAUSE)
  2333. risc_paused = 1;
  2334. } else if (IS_QLA23XX(ha)) {
  2335. stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
  2336. if (stat & HSR_RISC_PAUSED)
  2337. risc_paused = 1;
  2338. } else if (IS_FWI2_CAPABLE(ha)) {
  2339. stat = RD_REG_DWORD(&reg24->host_status);
  2340. if (stat & HSRX_RISC_PAUSED)
  2341. risc_paused = 1;
  2342. }
  2343. spin_unlock_irqrestore(&ha->hardware_lock, flags);
  2344. if (risc_paused) {
  2345. qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
  2346. "Dumping firmware!\n");
  2347. ha->isp_ops->fw_dump(ha, 0);
  2348. return PCI_ERS_RESULT_NEED_RESET;
  2349. } else
  2350. return PCI_ERS_RESULT_RECOVERED;
  2351. }
  2352. static pci_ers_result_t
  2353. qla2xxx_pci_slot_reset(struct pci_dev *pdev)
  2354. {
  2355. pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
  2356. scsi_qla_host_t *ha = pci_get_drvdata(pdev);
  2357. int rc;
  2358. if (ha->mem_only)
  2359. rc = pci_enable_device_mem(pdev);
  2360. else
  2361. rc = pci_enable_device(pdev);
  2362. if (rc) {
  2363. qla_printk(KERN_WARNING, ha,
  2364. "Can't re-enable PCI device after reset.\n");
  2365. return ret;
  2366. }
  2367. pci_set_master(pdev);
  2368. if (ha->isp_ops->pci_config(ha))
  2369. return ret;
  2370. set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
  2371. if (qla2x00_abort_isp(ha)== QLA_SUCCESS)
  2372. ret = PCI_ERS_RESULT_RECOVERED;
  2373. clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
  2374. return ret;
  2375. }
  2376. static void
  2377. qla2xxx_pci_resume(struct pci_dev *pdev)
  2378. {
  2379. scsi_qla_host_t *ha = pci_get_drvdata(pdev);
  2380. int ret;
  2381. ret = qla2x00_wait_for_hba_online(ha);
  2382. if (ret != QLA_SUCCESS) {
  2383. qla_printk(KERN_ERR, ha,
  2384. "the device failed to resume I/O "
  2385. "from slot/link_reset");
  2386. }
  2387. pci_cleanup_aer_uncorrect_error_status(pdev);
  2388. }
  2389. static struct pci_error_handlers qla2xxx_err_handler = {
  2390. .error_detected = qla2xxx_pci_error_detected,
  2391. .mmio_enabled = qla2xxx_pci_mmio_enabled,
  2392. .slot_reset = qla2xxx_pci_slot_reset,
  2393. .resume = qla2xxx_pci_resume,
  2394. };
  2395. static struct pci_device_id qla2xxx_pci_tbl[] = {
  2396. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
  2397. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
  2398. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
  2399. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
  2400. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
  2401. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
  2402. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
  2403. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
  2404. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
  2405. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
  2406. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
  2407. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
  2408. { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
  2409. { 0 },
  2410. };
  2411. MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
  2412. static struct pci_driver qla2xxx_pci_driver = {
  2413. .name = QLA2XXX_DRIVER_NAME,
  2414. .driver = {
  2415. .owner = THIS_MODULE,
  2416. },
  2417. .id_table = qla2xxx_pci_tbl,
  2418. .probe = qla2x00_probe_one,
  2419. .remove = qla2x00_remove_one,
  2420. .err_handler = &qla2xxx_err_handler,
  2421. };
  2422. /**
  2423. * qla2x00_module_init - Module initialization.
  2424. **/
  2425. static int __init
  2426. qla2x00_module_init(void)
  2427. {
  2428. int ret = 0;
  2429. /* Allocate cache for SRBs. */
  2430. srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
  2431. SLAB_HWCACHE_ALIGN, NULL);
  2432. if (srb_cachep == NULL) {
  2433. printk(KERN_ERR
  2434. "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
  2435. return -ENOMEM;
  2436. }
  2437. /* Derive version string. */
  2438. strcpy(qla2x00_version_str, QLA2XXX_VERSION);
  2439. if (ql2xextended_error_logging)
  2440. strcat(qla2x00_version_str, "-debug");
  2441. qla2xxx_transport_template =
  2442. fc_attach_transport(&qla2xxx_transport_functions);
  2443. if (!qla2xxx_transport_template) {
  2444. kmem_cache_destroy(srb_cachep);
  2445. return -ENODEV;
  2446. }
  2447. qla2xxx_transport_vport_template =
  2448. fc_attach_transport(&qla2xxx_transport_vport_functions);
  2449. if (!qla2xxx_transport_vport_template) {
  2450. kmem_cache_destroy(srb_cachep);
  2451. fc_release_transport(qla2xxx_transport_template);
  2452. return -ENODEV;
  2453. }
  2454. printk(KERN_INFO "QLogic Fibre Channel HBA Driver: %s\n",
  2455. qla2x00_version_str);
  2456. ret = pci_register_driver(&qla2xxx_pci_driver);
  2457. if (ret) {
  2458. kmem_cache_destroy(srb_cachep);
  2459. fc_release_transport(qla2xxx_transport_template);
  2460. fc_release_transport(qla2xxx_transport_vport_template);
  2461. }
  2462. return ret;
  2463. }
  2464. /**
  2465. * qla2x00_module_exit - Module cleanup.
  2466. **/
  2467. static void __exit
  2468. qla2x00_module_exit(void)
  2469. {
  2470. pci_unregister_driver(&qla2xxx_pci_driver);
  2471. qla2x00_release_firmware();
  2472. kmem_cache_destroy(srb_cachep);
  2473. fc_release_transport(qla2xxx_transport_template);
  2474. fc_release_transport(qla2xxx_transport_vport_template);
  2475. }
  2476. module_init(qla2x00_module_init);
  2477. module_exit(qla2x00_module_exit);
  2478. MODULE_AUTHOR("QLogic Corporation");
  2479. MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
  2480. MODULE_LICENSE("GPL");
  2481. MODULE_VERSION(QLA2XXX_VERSION);
  2482. MODULE_FIRMWARE(FW_FILE_ISP21XX);
  2483. MODULE_FIRMWARE(FW_FILE_ISP22XX);
  2484. MODULE_FIRMWARE(FW_FILE_ISP2300);
  2485. MODULE_FIRMWARE(FW_FILE_ISP2322);
  2486. MODULE_FIRMWARE(FW_FILE_ISP24XX);
  2487. MODULE_FIRMWARE(FW_FILE_ISP25XX);