lpfc_attr.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. /*******************************************************************
  2. * This file is part of the Emulex Linux Device Driver for *
  3. * Fibre Channel Host Bus Adapters. *
  4. * Copyright (C) 2004-2006 Emulex. All rights reserved. *
  5. * EMULEX and SLI are trademarks of Emulex. *
  6. * www.emulex.com *
  7. * Portions Copyright (C) 2004-2005 Christoph Hellwig *
  8. * *
  9. * This program is free software; you can redistribute it and/or *
  10. * modify it under the terms of version 2 of the GNU General *
  11. * Public License as published by the Free Software Foundation. *
  12. * This program is distributed in the hope that it will be useful. *
  13. * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
  14. * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
  15. * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
  16. * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
  17. * TO BE LEGALLY INVALID. See the GNU General Public License for *
  18. * more details, a copy of which can be found in the file COPYING *
  19. * included with this package. *
  20. *******************************************************************/
  21. #include <linux/ctype.h>
  22. #include <linux/pci.h>
  23. #include <linux/interrupt.h>
  24. #include <scsi/scsi.h>
  25. #include <scsi/scsi_device.h>
  26. #include <scsi/scsi_host.h>
  27. #include <scsi/scsi_tcq.h>
  28. #include <scsi/scsi_transport_fc.h>
  29. #include "lpfc_hw.h"
  30. #include "lpfc_sli.h"
  31. #include "lpfc_disc.h"
  32. #include "lpfc_scsi.h"
  33. #include "lpfc.h"
  34. #include "lpfc_logmsg.h"
  35. #include "lpfc_version.h"
  36. #include "lpfc_compat.h"
  37. #include "lpfc_crtn.h"
  38. #define LPFC_DEF_DEVLOSS_TMO 30
  39. #define LPFC_MIN_DEVLOSS_TMO 1
  40. #define LPFC_MAX_DEVLOSS_TMO 255
  41. static void
  42. lpfc_jedec_to_ascii(int incr, char hdw[])
  43. {
  44. int i, j;
  45. for (i = 0; i < 8; i++) {
  46. j = (incr & 0xf);
  47. if (j <= 9)
  48. hdw[7 - i] = 0x30 + j;
  49. else
  50. hdw[7 - i] = 0x61 + j - 10;
  51. incr = (incr >> 4);
  52. }
  53. hdw[8] = 0;
  54. return;
  55. }
  56. static ssize_t
  57. lpfc_drvr_version_show(struct class_device *cdev, char *buf)
  58. {
  59. return snprintf(buf, PAGE_SIZE, LPFC_MODULE_DESC "\n");
  60. }
  61. static ssize_t
  62. management_version_show(struct class_device *cdev, char *buf)
  63. {
  64. return snprintf(buf, PAGE_SIZE, DFC_API_VERSION "\n");
  65. }
  66. static ssize_t
  67. lpfc_info_show(struct class_device *cdev, char *buf)
  68. {
  69. struct Scsi_Host *host = class_to_shost(cdev);
  70. return snprintf(buf, PAGE_SIZE, "%s\n",lpfc_info(host));
  71. }
  72. static ssize_t
  73. lpfc_serialnum_show(struct class_device *cdev, char *buf)
  74. {
  75. struct Scsi_Host *host = class_to_shost(cdev);
  76. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  77. return snprintf(buf, PAGE_SIZE, "%s\n",phba->SerialNumber);
  78. }
  79. static ssize_t
  80. lpfc_modeldesc_show(struct class_device *cdev, char *buf)
  81. {
  82. struct Scsi_Host *host = class_to_shost(cdev);
  83. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  84. return snprintf(buf, PAGE_SIZE, "%s\n",phba->ModelDesc);
  85. }
  86. static ssize_t
  87. lpfc_modelname_show(struct class_device *cdev, char *buf)
  88. {
  89. struct Scsi_Host *host = class_to_shost(cdev);
  90. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  91. return snprintf(buf, PAGE_SIZE, "%s\n",phba->ModelName);
  92. }
  93. static ssize_t
  94. lpfc_programtype_show(struct class_device *cdev, char *buf)
  95. {
  96. struct Scsi_Host *host = class_to_shost(cdev);
  97. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  98. return snprintf(buf, PAGE_SIZE, "%s\n",phba->ProgramType);
  99. }
  100. static ssize_t
  101. lpfc_portnum_show(struct class_device *cdev, char *buf)
  102. {
  103. struct Scsi_Host *host = class_to_shost(cdev);
  104. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  105. return snprintf(buf, PAGE_SIZE, "%s\n",phba->Port);
  106. }
  107. static ssize_t
  108. lpfc_fwrev_show(struct class_device *cdev, char *buf)
  109. {
  110. struct Scsi_Host *host = class_to_shost(cdev);
  111. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  112. char fwrev[32];
  113. lpfc_decode_firmware_rev(phba, fwrev, 1);
  114. return snprintf(buf, PAGE_SIZE, "%s\n",fwrev);
  115. }
  116. static ssize_t
  117. lpfc_hdw_show(struct class_device *cdev, char *buf)
  118. {
  119. char hdw[9];
  120. struct Scsi_Host *host = class_to_shost(cdev);
  121. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  122. lpfc_vpd_t *vp = &phba->vpd;
  123. lpfc_jedec_to_ascii(vp->rev.biuRev, hdw);
  124. return snprintf(buf, PAGE_SIZE, "%s\n", hdw);
  125. }
  126. static ssize_t
  127. lpfc_option_rom_version_show(struct class_device *cdev, char *buf)
  128. {
  129. struct Scsi_Host *host = class_to_shost(cdev);
  130. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  131. return snprintf(buf, PAGE_SIZE, "%s\n", phba->OptionROMVersion);
  132. }
  133. static ssize_t
  134. lpfc_state_show(struct class_device *cdev, char *buf)
  135. {
  136. struct Scsi_Host *host = class_to_shost(cdev);
  137. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  138. int len = 0;
  139. switch (phba->hba_state) {
  140. case LPFC_STATE_UNKNOWN:
  141. case LPFC_WARM_START:
  142. case LPFC_INIT_START:
  143. case LPFC_INIT_MBX_CMDS:
  144. case LPFC_LINK_DOWN:
  145. len += snprintf(buf + len, PAGE_SIZE-len, "Link Down\n");
  146. break;
  147. case LPFC_LINK_UP:
  148. case LPFC_LOCAL_CFG_LINK:
  149. len += snprintf(buf + len, PAGE_SIZE-len, "Link Up\n");
  150. break;
  151. case LPFC_FLOGI:
  152. case LPFC_FABRIC_CFG_LINK:
  153. case LPFC_NS_REG:
  154. case LPFC_NS_QRY:
  155. case LPFC_BUILD_DISC_LIST:
  156. case LPFC_DISC_AUTH:
  157. case LPFC_CLEAR_LA:
  158. len += snprintf(buf + len, PAGE_SIZE-len,
  159. "Link Up - Discovery\n");
  160. break;
  161. case LPFC_HBA_READY:
  162. len += snprintf(buf + len, PAGE_SIZE-len,
  163. "Link Up - Ready:\n");
  164. if (phba->fc_topology == TOPOLOGY_LOOP) {
  165. if (phba->fc_flag & FC_PUBLIC_LOOP)
  166. len += snprintf(buf + len, PAGE_SIZE-len,
  167. " Public Loop\n");
  168. else
  169. len += snprintf(buf + len, PAGE_SIZE-len,
  170. " Private Loop\n");
  171. } else {
  172. if (phba->fc_flag & FC_FABRIC)
  173. len += snprintf(buf + len, PAGE_SIZE-len,
  174. " Fabric\n");
  175. else
  176. len += snprintf(buf + len, PAGE_SIZE-len,
  177. " Point-2-Point\n");
  178. }
  179. }
  180. return len;
  181. }
  182. static ssize_t
  183. lpfc_num_discovered_ports_show(struct class_device *cdev, char *buf)
  184. {
  185. struct Scsi_Host *host = class_to_shost(cdev);
  186. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  187. return snprintf(buf, PAGE_SIZE, "%d\n", phba->fc_map_cnt +
  188. phba->fc_unmap_cnt);
  189. }
  190. static int
  191. lpfc_issue_lip(struct Scsi_Host *host)
  192. {
  193. struct lpfc_hba *phba = (struct lpfc_hba *) host->hostdata;
  194. LPFC_MBOXQ_t *pmboxq;
  195. int mbxstatus = MBXERR_ERROR;
  196. if ((phba->fc_flag & FC_OFFLINE_MODE) ||
  197. (phba->hba_state != LPFC_HBA_READY))
  198. return -EPERM;
  199. pmboxq = mempool_alloc(phba->mbox_mem_pool,GFP_KERNEL);
  200. if (!pmboxq)
  201. return -ENOMEM;
  202. memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
  203. pmboxq->mb.mbxCommand = MBX_DOWN_LINK;
  204. pmboxq->mb.mbxOwner = OWN_HOST;
  205. mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq, LPFC_MBOX_TMO * 2);
  206. if ((mbxstatus == MBX_SUCCESS) && (pmboxq->mb.mbxStatus == 0)) {
  207. memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
  208. lpfc_init_link(phba, pmboxq, phba->cfg_topology,
  209. phba->cfg_link_speed);
  210. mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq,
  211. phba->fc_ratov * 2);
  212. }
  213. if (mbxstatus == MBX_TIMEOUT)
  214. pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  215. else
  216. mempool_free(pmboxq, phba->mbox_mem_pool);
  217. if (mbxstatus == MBXERR_ERROR)
  218. return -EIO;
  219. return 0;
  220. }
  221. static int
  222. lpfc_selective_reset(struct lpfc_hba *phba)
  223. {
  224. struct completion online_compl;
  225. int status = 0;
  226. init_completion(&online_compl);
  227. lpfc_workq_post_event(phba, &status, &online_compl,
  228. LPFC_EVT_OFFLINE);
  229. wait_for_completion(&online_compl);
  230. if (status != 0)
  231. return -EIO;
  232. init_completion(&online_compl);
  233. lpfc_workq_post_event(phba, &status, &online_compl,
  234. LPFC_EVT_ONLINE);
  235. wait_for_completion(&online_compl);
  236. if (status != 0)
  237. return -EIO;
  238. return 0;
  239. }
  240. static ssize_t
  241. lpfc_issue_reset(struct class_device *cdev, const char *buf, size_t count)
  242. {
  243. struct Scsi_Host *host = class_to_shost(cdev);
  244. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  245. int status = -EINVAL;
  246. if (strncmp(buf, "selective", sizeof("selective") - 1) == 0)
  247. status = lpfc_selective_reset(phba);
  248. if (status == 0)
  249. return strlen(buf);
  250. else
  251. return status;
  252. }
  253. static ssize_t
  254. lpfc_nport_evt_cnt_show(struct class_device *cdev, char *buf)
  255. {
  256. struct Scsi_Host *host = class_to_shost(cdev);
  257. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  258. return snprintf(buf, PAGE_SIZE, "%d\n", phba->nport_event_cnt);
  259. }
  260. static ssize_t
  261. lpfc_board_mode_show(struct class_device *cdev, char *buf)
  262. {
  263. struct Scsi_Host *host = class_to_shost(cdev);
  264. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  265. char * state;
  266. if (phba->hba_state == LPFC_HBA_ERROR)
  267. state = "error";
  268. else if (phba->hba_state == LPFC_WARM_START)
  269. state = "warm start";
  270. else if (phba->hba_state == LPFC_INIT_START)
  271. state = "offline";
  272. else
  273. state = "online";
  274. return snprintf(buf, PAGE_SIZE, "%s\n", state);
  275. }
  276. static ssize_t
  277. lpfc_board_mode_store(struct class_device *cdev, const char *buf, size_t count)
  278. {
  279. struct Scsi_Host *host = class_to_shost(cdev);
  280. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  281. struct completion online_compl;
  282. int status=0;
  283. init_completion(&online_compl);
  284. if(strncmp(buf, "online", sizeof("online") - 1) == 0)
  285. lpfc_workq_post_event(phba, &status, &online_compl,
  286. LPFC_EVT_ONLINE);
  287. else if (strncmp(buf, "offline", sizeof("offline") - 1) == 0)
  288. lpfc_workq_post_event(phba, &status, &online_compl,
  289. LPFC_EVT_OFFLINE);
  290. else if (strncmp(buf, "warm", sizeof("warm") - 1) == 0)
  291. lpfc_workq_post_event(phba, &status, &online_compl,
  292. LPFC_EVT_WARM_START);
  293. else if (strncmp(buf, "error", sizeof("error") - 1) == 0)
  294. lpfc_workq_post_event(phba, &status, &online_compl,
  295. LPFC_EVT_KILL);
  296. else
  297. return -EINVAL;
  298. wait_for_completion(&online_compl);
  299. if (!status)
  300. return strlen(buf);
  301. else
  302. return -EIO;
  303. }
  304. static ssize_t
  305. lpfc_poll_show(struct class_device *cdev, char *buf)
  306. {
  307. struct Scsi_Host *host = class_to_shost(cdev);
  308. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  309. return snprintf(buf, PAGE_SIZE, "%#x\n", phba->cfg_poll);
  310. }
  311. static ssize_t
  312. lpfc_poll_store(struct class_device *cdev, const char *buf,
  313. size_t count)
  314. {
  315. struct Scsi_Host *host = class_to_shost(cdev);
  316. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  317. uint32_t creg_val;
  318. uint32_t old_val;
  319. int val=0;
  320. if (!isdigit(buf[0]))
  321. return -EINVAL;
  322. if (sscanf(buf, "%i", &val) != 1)
  323. return -EINVAL;
  324. if ((val & 0x3) != val)
  325. return -EINVAL;
  326. spin_lock_irq(phba->host->host_lock);
  327. old_val = phba->cfg_poll;
  328. if (val & ENABLE_FCP_RING_POLLING) {
  329. if ((val & DISABLE_FCP_RING_INT) &&
  330. !(old_val & DISABLE_FCP_RING_INT)) {
  331. creg_val = readl(phba->HCregaddr);
  332. creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
  333. writel(creg_val, phba->HCregaddr);
  334. readl(phba->HCregaddr); /* flush */
  335. lpfc_poll_start_timer(phba);
  336. }
  337. } else if (val != 0x0) {
  338. spin_unlock_irq(phba->host->host_lock);
  339. return -EINVAL;
  340. }
  341. if (!(val & DISABLE_FCP_RING_INT) &&
  342. (old_val & DISABLE_FCP_RING_INT))
  343. {
  344. spin_unlock_irq(phba->host->host_lock);
  345. del_timer(&phba->fcp_poll_timer);
  346. spin_lock_irq(phba->host->host_lock);
  347. creg_val = readl(phba->HCregaddr);
  348. creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
  349. writel(creg_val, phba->HCregaddr);
  350. readl(phba->HCregaddr); /* flush */
  351. }
  352. phba->cfg_poll = val;
  353. spin_unlock_irq(phba->host->host_lock);
  354. return strlen(buf);
  355. }
  356. #define lpfc_param_show(attr) \
  357. static ssize_t \
  358. lpfc_##attr##_show(struct class_device *cdev, char *buf) \
  359. { \
  360. struct Scsi_Host *host = class_to_shost(cdev);\
  361. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;\
  362. int val = 0;\
  363. val = phba->cfg_##attr;\
  364. return snprintf(buf, PAGE_SIZE, "%d\n",\
  365. phba->cfg_##attr);\
  366. }
  367. #define lpfc_param_hex_show(attr) \
  368. static ssize_t \
  369. lpfc_##attr##_show(struct class_device *cdev, char *buf) \
  370. { \
  371. struct Scsi_Host *host = class_to_shost(cdev);\
  372. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;\
  373. int val = 0;\
  374. val = phba->cfg_##attr;\
  375. return snprintf(buf, PAGE_SIZE, "%#x\n",\
  376. phba->cfg_##attr);\
  377. }
  378. #define lpfc_param_init(attr, default, minval, maxval) \
  379. static int \
  380. lpfc_##attr##_init(struct lpfc_hba *phba, int val) \
  381. { \
  382. if (val >= minval && val <= maxval) {\
  383. phba->cfg_##attr = val;\
  384. return 0;\
  385. }\
  386. lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
  387. "%d:0449 lpfc_"#attr" attribute cannot be set to %d, "\
  388. "allowed range is ["#minval", "#maxval"]\n", \
  389. phba->brd_no, val); \
  390. phba->cfg_##attr = default;\
  391. return -EINVAL;\
  392. }
  393. #define lpfc_param_set(attr, default, minval, maxval) \
  394. static int \
  395. lpfc_##attr##_set(struct lpfc_hba *phba, int val) \
  396. { \
  397. if (val >= minval && val <= maxval) {\
  398. phba->cfg_##attr = val;\
  399. return 0;\
  400. }\
  401. lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
  402. "%d:0450 lpfc_"#attr" attribute cannot be set to %d, "\
  403. "allowed range is ["#minval", "#maxval"]\n", \
  404. phba->brd_no, val); \
  405. return -EINVAL;\
  406. }
  407. #define lpfc_param_store(attr) \
  408. static ssize_t \
  409. lpfc_##attr##_store(struct class_device *cdev, const char *buf, size_t count) \
  410. { \
  411. struct Scsi_Host *host = class_to_shost(cdev);\
  412. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;\
  413. int val=0;\
  414. if (!isdigit(buf[0]))\
  415. return -EINVAL;\
  416. if (sscanf(buf, "%i", &val) != 1)\
  417. return -EINVAL;\
  418. if (lpfc_##attr##_set(phba, val) == 0) \
  419. return strlen(buf);\
  420. else \
  421. return -EINVAL;\
  422. }
  423. #define LPFC_ATTR(name, defval, minval, maxval, desc) \
  424. static int lpfc_##name = defval;\
  425. module_param(lpfc_##name, int, 0);\
  426. MODULE_PARM_DESC(lpfc_##name, desc);\
  427. lpfc_param_init(name, defval, minval, maxval)
  428. #define LPFC_ATTR_R(name, defval, minval, maxval, desc) \
  429. static int lpfc_##name = defval;\
  430. module_param(lpfc_##name, int, 0);\
  431. MODULE_PARM_DESC(lpfc_##name, desc);\
  432. lpfc_param_show(name)\
  433. lpfc_param_init(name, defval, minval, maxval)\
  434. static CLASS_DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
  435. #define LPFC_ATTR_RW(name, defval, minval, maxval, desc) \
  436. static int lpfc_##name = defval;\
  437. module_param(lpfc_##name, int, 0);\
  438. MODULE_PARM_DESC(lpfc_##name, desc);\
  439. lpfc_param_show(name)\
  440. lpfc_param_init(name, defval, minval, maxval)\
  441. lpfc_param_set(name, defval, minval, maxval)\
  442. lpfc_param_store(name)\
  443. static CLASS_DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
  444. lpfc_##name##_show, lpfc_##name##_store)
  445. #define LPFC_ATTR_HEX_R(name, defval, minval, maxval, desc) \
  446. static int lpfc_##name = defval;\
  447. module_param(lpfc_##name, int, 0);\
  448. MODULE_PARM_DESC(lpfc_##name, desc);\
  449. lpfc_param_hex_show(name)\
  450. lpfc_param_init(name, defval, minval, maxval)\
  451. static CLASS_DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
  452. #define LPFC_ATTR_HEX_RW(name, defval, minval, maxval, desc) \
  453. static int lpfc_##name = defval;\
  454. module_param(lpfc_##name, int, 0);\
  455. MODULE_PARM_DESC(lpfc_##name, desc);\
  456. lpfc_param_hex_show(name)\
  457. lpfc_param_init(name, defval, minval, maxval)\
  458. lpfc_param_set(name, defval, minval, maxval)\
  459. lpfc_param_store(name)\
  460. static CLASS_DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
  461. lpfc_##name##_show, lpfc_##name##_store)
  462. static CLASS_DEVICE_ATTR(info, S_IRUGO, lpfc_info_show, NULL);
  463. static CLASS_DEVICE_ATTR(serialnum, S_IRUGO, lpfc_serialnum_show, NULL);
  464. static CLASS_DEVICE_ATTR(modeldesc, S_IRUGO, lpfc_modeldesc_show, NULL);
  465. static CLASS_DEVICE_ATTR(modelname, S_IRUGO, lpfc_modelname_show, NULL);
  466. static CLASS_DEVICE_ATTR(programtype, S_IRUGO, lpfc_programtype_show, NULL);
  467. static CLASS_DEVICE_ATTR(portnum, S_IRUGO, lpfc_portnum_show, NULL);
  468. static CLASS_DEVICE_ATTR(fwrev, S_IRUGO, lpfc_fwrev_show, NULL);
  469. static CLASS_DEVICE_ATTR(hdw, S_IRUGO, lpfc_hdw_show, NULL);
  470. static CLASS_DEVICE_ATTR(state, S_IRUGO, lpfc_state_show, NULL);
  471. static CLASS_DEVICE_ATTR(option_rom_version, S_IRUGO,
  472. lpfc_option_rom_version_show, NULL);
  473. static CLASS_DEVICE_ATTR(num_discovered_ports, S_IRUGO,
  474. lpfc_num_discovered_ports_show, NULL);
  475. static CLASS_DEVICE_ATTR(nport_evt_cnt, S_IRUGO, lpfc_nport_evt_cnt_show, NULL);
  476. static CLASS_DEVICE_ATTR(lpfc_drvr_version, S_IRUGO, lpfc_drvr_version_show,
  477. NULL);
  478. static CLASS_DEVICE_ATTR(management_version, S_IRUGO, management_version_show,
  479. NULL);
  480. static CLASS_DEVICE_ATTR(board_mode, S_IRUGO | S_IWUSR,
  481. lpfc_board_mode_show, lpfc_board_mode_store);
  482. static CLASS_DEVICE_ATTR(issue_reset, S_IWUSR, NULL, lpfc_issue_reset);
  483. static char *lpfc_soft_wwpn_key = "C99G71SL8032A";
  484. static ssize_t
  485. lpfc_soft_wwpn_enable_store(struct class_device *cdev, const char *buf,
  486. size_t count)
  487. {
  488. struct Scsi_Host *host = class_to_shost(cdev);
  489. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  490. unsigned int cnt = count;
  491. /*
  492. * We're doing a simple sanity check for soft_wwpn setting.
  493. * We require that the user write a specific key to enable
  494. * the soft_wwpn attribute to be settable. Once the attribute
  495. * is written, the enable key resets. If further updates are
  496. * desired, the key must be written again to re-enable the
  497. * attribute.
  498. *
  499. * The "key" is not secret - it is a hardcoded string shown
  500. * here. The intent is to protect against the random user or
  501. * application that is just writing attributes.
  502. */
  503. /* count may include a LF at end of string */
  504. if (buf[cnt-1] == '\n')
  505. cnt--;
  506. if ((cnt != strlen(lpfc_soft_wwpn_key)) ||
  507. (strncmp(buf, lpfc_soft_wwpn_key, strlen(lpfc_soft_wwpn_key)) != 0))
  508. return -EINVAL;
  509. phba->soft_wwpn_enable = 1;
  510. return count;
  511. }
  512. static CLASS_DEVICE_ATTR(lpfc_soft_wwpn_enable, S_IWUSR, NULL,
  513. lpfc_soft_wwpn_enable_store);
  514. static ssize_t
  515. lpfc_soft_wwpn_show(struct class_device *cdev, char *buf)
  516. {
  517. struct Scsi_Host *host = class_to_shost(cdev);
  518. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  519. return snprintf(buf, PAGE_SIZE, "0x%llx\n", phba->cfg_soft_wwpn);
  520. }
  521. static ssize_t
  522. lpfc_soft_wwpn_store(struct class_device *cdev, const char *buf, size_t count)
  523. {
  524. struct Scsi_Host *host = class_to_shost(cdev);
  525. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  526. struct completion online_compl;
  527. int stat1=0, stat2=0;
  528. unsigned int i, j, cnt=count;
  529. u8 wwpn[8];
  530. /* count may include a LF at end of string */
  531. if (buf[cnt-1] == '\n')
  532. cnt--;
  533. if (!phba->soft_wwpn_enable || (cnt < 16) || (cnt > 18) ||
  534. ((cnt == 17) && (*buf++ != 'x')) ||
  535. ((cnt == 18) && ((*buf++ != '0') || (*buf++ != 'x'))))
  536. return -EINVAL;
  537. phba->soft_wwpn_enable = 0;
  538. memset(wwpn, 0, sizeof(wwpn));
  539. /* Validate and store the new name */
  540. for (i=0, j=0; i < 16; i++) {
  541. if ((*buf >= 'a') && (*buf <= 'f'))
  542. j = ((j << 4) | ((*buf++ -'a') + 10));
  543. else if ((*buf >= 'A') && (*buf <= 'F'))
  544. j = ((j << 4) | ((*buf++ -'A') + 10));
  545. else if ((*buf >= '0') && (*buf <= '9'))
  546. j = ((j << 4) | (*buf++ -'0'));
  547. else
  548. return -EINVAL;
  549. if (i % 2) {
  550. wwpn[i/2] = j & 0xff;
  551. j = 0;
  552. }
  553. }
  554. phba->cfg_soft_wwpn = wwn_to_u64(wwpn);
  555. fc_host_port_name(host) = phba->cfg_soft_wwpn;
  556. dev_printk(KERN_NOTICE, &phba->pcidev->dev,
  557. "lpfc%d: Reinitializing to use soft_wwpn\n", phba->brd_no);
  558. init_completion(&online_compl);
  559. lpfc_workq_post_event(phba, &stat1, &online_compl, LPFC_EVT_OFFLINE);
  560. wait_for_completion(&online_compl);
  561. if (stat1)
  562. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  563. "%d:0463 lpfc_soft_wwpn attribute set failed to reinit "
  564. "adapter - %d\n", phba->brd_no, stat1);
  565. init_completion(&online_compl);
  566. lpfc_workq_post_event(phba, &stat2, &online_compl, LPFC_EVT_ONLINE);
  567. wait_for_completion(&online_compl);
  568. if (stat2)
  569. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  570. "%d:0464 lpfc_soft_wwpn attribute set failed to reinit "
  571. "adapter - %d\n", phba->brd_no, stat2);
  572. return (stat1 || stat2) ? -EIO : count;
  573. }
  574. static CLASS_DEVICE_ATTR(lpfc_soft_wwpn, S_IRUGO | S_IWUSR,\
  575. lpfc_soft_wwpn_show, lpfc_soft_wwpn_store);
  576. static int lpfc_poll = 0;
  577. module_param(lpfc_poll, int, 0);
  578. MODULE_PARM_DESC(lpfc_poll, "FCP ring polling mode control:"
  579. " 0 - none,"
  580. " 1 - poll with interrupts enabled"
  581. " 3 - poll and disable FCP ring interrupts");
  582. static CLASS_DEVICE_ATTR(lpfc_poll, S_IRUGO | S_IWUSR,
  583. lpfc_poll_show, lpfc_poll_store);
  584. /*
  585. # lpfc_nodev_tmo: If set, it will hold all I/O errors on devices that disappear
  586. # until the timer expires. Value range is [0,255]. Default value is 30.
  587. */
  588. static int lpfc_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
  589. static int lpfc_devloss_tmo = LPFC_DEF_DEVLOSS_TMO;
  590. module_param(lpfc_nodev_tmo, int, 0);
  591. MODULE_PARM_DESC(lpfc_nodev_tmo,
  592. "Seconds driver will hold I/O waiting "
  593. "for a device to come back");
  594. static ssize_t
  595. lpfc_nodev_tmo_show(struct class_device *cdev, char *buf)
  596. {
  597. struct Scsi_Host *host = class_to_shost(cdev);
  598. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  599. int val = 0;
  600. val = phba->cfg_devloss_tmo;
  601. return snprintf(buf, PAGE_SIZE, "%d\n",
  602. phba->cfg_devloss_tmo);
  603. }
  604. static int
  605. lpfc_nodev_tmo_init(struct lpfc_hba *phba, int val)
  606. {
  607. static int warned;
  608. if (phba->cfg_devloss_tmo != LPFC_DEF_DEVLOSS_TMO) {
  609. phba->cfg_nodev_tmo = phba->cfg_devloss_tmo;
  610. if (!warned && val != LPFC_DEF_DEVLOSS_TMO) {
  611. warned = 1;
  612. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  613. "%d:0402 Ignoring nodev_tmo module "
  614. "parameter because devloss_tmo is"
  615. " set.\n",
  616. phba->brd_no);
  617. }
  618. return 0;
  619. }
  620. if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
  621. phba->cfg_nodev_tmo = val;
  622. phba->cfg_devloss_tmo = val;
  623. return 0;
  624. }
  625. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  626. "%d:0400 lpfc_nodev_tmo attribute cannot be set to %d, "
  627. "allowed range is [%d, %d]\n",
  628. phba->brd_no, val,
  629. LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
  630. phba->cfg_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
  631. return -EINVAL;
  632. }
  633. static int
  634. lpfc_nodev_tmo_set(struct lpfc_hba *phba, int val)
  635. {
  636. if (phba->dev_loss_tmo_changed ||
  637. (lpfc_devloss_tmo != LPFC_DEF_DEVLOSS_TMO)) {
  638. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  639. "%d:0401 Ignoring change to nodev_tmo "
  640. "because devloss_tmo is set.\n",
  641. phba->brd_no);
  642. return 0;
  643. }
  644. if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
  645. phba->cfg_nodev_tmo = val;
  646. phba->cfg_devloss_tmo = val;
  647. return 0;
  648. }
  649. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  650. "%d:0403 lpfc_nodev_tmo attribute cannot be set to %d, "
  651. "allowed range is [%d, %d]\n",
  652. phba->brd_no, val, LPFC_MIN_DEVLOSS_TMO,
  653. LPFC_MAX_DEVLOSS_TMO);
  654. return -EINVAL;
  655. }
  656. lpfc_param_store(nodev_tmo)
  657. static CLASS_DEVICE_ATTR(lpfc_nodev_tmo, S_IRUGO | S_IWUSR,
  658. lpfc_nodev_tmo_show, lpfc_nodev_tmo_store);
  659. /*
  660. # lpfc_devloss_tmo: If set, it will hold all I/O errors on devices that
  661. # disappear until the timer expires. Value range is [0,255]. Default
  662. # value is 30.
  663. */
  664. module_param(lpfc_devloss_tmo, int, 0);
  665. MODULE_PARM_DESC(lpfc_devloss_tmo,
  666. "Seconds driver will hold I/O waiting "
  667. "for a device to come back");
  668. lpfc_param_init(devloss_tmo, LPFC_DEF_DEVLOSS_TMO,
  669. LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO)
  670. lpfc_param_show(devloss_tmo)
  671. static int
  672. lpfc_devloss_tmo_set(struct lpfc_hba *phba, int val)
  673. {
  674. if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
  675. phba->cfg_nodev_tmo = val;
  676. phba->cfg_devloss_tmo = val;
  677. phba->dev_loss_tmo_changed = 1;
  678. return 0;
  679. }
  680. lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
  681. "%d:0404 lpfc_devloss_tmo attribute cannot be set to"
  682. " %d, allowed range is [%d, %d]\n",
  683. phba->brd_no, val, LPFC_MIN_DEVLOSS_TMO,
  684. LPFC_MAX_DEVLOSS_TMO);
  685. return -EINVAL;
  686. }
  687. lpfc_param_store(devloss_tmo)
  688. static CLASS_DEVICE_ATTR(lpfc_devloss_tmo, S_IRUGO | S_IWUSR,
  689. lpfc_devloss_tmo_show, lpfc_devloss_tmo_store);
  690. /*
  691. # lpfc_log_verbose: Only turn this flag on if you are willing to risk being
  692. # deluged with LOTS of information.
  693. # You can set a bit mask to record specific types of verbose messages:
  694. #
  695. # LOG_ELS 0x1 ELS events
  696. # LOG_DISCOVERY 0x2 Link discovery events
  697. # LOG_MBOX 0x4 Mailbox events
  698. # LOG_INIT 0x8 Initialization events
  699. # LOG_LINK_EVENT 0x10 Link events
  700. # LOG_IP 0x20 IP traffic history
  701. # LOG_FCP 0x40 FCP traffic history
  702. # LOG_NODE 0x80 Node table events
  703. # LOG_MISC 0x400 Miscellaneous events
  704. # LOG_SLI 0x800 SLI events
  705. # LOG_CHK_COND 0x1000 FCP Check condition flag
  706. # LOG_LIBDFC 0x2000 LIBDFC events
  707. # LOG_ALL_MSG 0xffff LOG all messages
  708. */
  709. LPFC_ATTR_HEX_RW(log_verbose, 0x0, 0x0, 0xffff, "Verbose logging bit-mask");
  710. /*
  711. # lun_queue_depth: This parameter is used to limit the number of outstanding
  712. # commands per FCP LUN. Value range is [1,128]. Default value is 30.
  713. */
  714. LPFC_ATTR_R(lun_queue_depth, 30, 1, 128,
  715. "Max number of FCP commands we can queue to a specific LUN");
  716. /*
  717. # hba_queue_depth: This parameter is used to limit the number of outstanding
  718. # commands per lpfc HBA. Value range is [32,8192]. If this parameter
  719. # value is greater than the maximum number of exchanges supported by the HBA,
  720. # then maximum number of exchanges supported by the HBA is used to determine
  721. # the hba_queue_depth.
  722. */
  723. LPFC_ATTR_R(hba_queue_depth, 8192, 32, 8192,
  724. "Max number of FCP commands we can queue to a lpfc HBA");
  725. /*
  726. # Some disk devices have a "select ID" or "select Target" capability.
  727. # From a protocol standpoint "select ID" usually means select the
  728. # Fibre channel "ALPA". In the FC-AL Profile there is an "informative
  729. # annex" which contains a table that maps a "select ID" (a number
  730. # between 0 and 7F) to an ALPA. By default, for compatibility with
  731. # older drivers, the lpfc driver scans this table from low ALPA to high
  732. # ALPA.
  733. #
  734. # Turning on the scan-down variable (on = 1, off = 0) will
  735. # cause the lpfc driver to use an inverted table, effectively
  736. # scanning ALPAs from high to low. Value range is [0,1]. Default value is 1.
  737. #
  738. # (Note: This "select ID" functionality is a LOOP ONLY characteristic
  739. # and will not work across a fabric. Also this parameter will take
  740. # effect only in the case when ALPA map is not available.)
  741. */
  742. LPFC_ATTR_R(scan_down, 1, 0, 1,
  743. "Start scanning for devices from highest ALPA to lowest");
  744. /*
  745. # lpfc_topology: link topology for init link
  746. # 0x0 = attempt loop mode then point-to-point
  747. # 0x01 = internal loopback mode
  748. # 0x02 = attempt point-to-point mode only
  749. # 0x04 = attempt loop mode only
  750. # 0x06 = attempt point-to-point mode then loop
  751. # Set point-to-point mode if you want to run as an N_Port.
  752. # Set loop mode if you want to run as an NL_Port. Value range is [0,0x6].
  753. # Default value is 0.
  754. */
  755. LPFC_ATTR_RW(topology, 0, 0, 6, "Select Fibre Channel topology");
  756. /*
  757. # lpfc_link_speed: Link speed selection for initializing the Fibre Channel
  758. # connection.
  759. # 0 = auto select (default)
  760. # 1 = 1 Gigabaud
  761. # 2 = 2 Gigabaud
  762. # 4 = 4 Gigabaud
  763. # Value range is [0,4]. Default value is 0.
  764. */
  765. LPFC_ATTR_R(link_speed, 0, 0, 4, "Select link speed");
  766. /*
  767. # lpfc_fcp_class: Determines FC class to use for the FCP protocol.
  768. # Value range is [2,3]. Default value is 3.
  769. */
  770. LPFC_ATTR_R(fcp_class, 3, 2, 3,
  771. "Select Fibre Channel class of service for FCP sequences");
  772. /*
  773. # lpfc_use_adisc: Use ADISC for FCP rediscovery instead of PLOGI. Value range
  774. # is [0,1]. Default value is 0.
  775. */
  776. LPFC_ATTR_RW(use_adisc, 0, 0, 1,
  777. "Use ADISC on rediscovery to authenticate FCP devices");
  778. /*
  779. # lpfc_ack0: Use ACK0, instead of ACK1 for class 2 acknowledgement. Value
  780. # range is [0,1]. Default value is 0.
  781. */
  782. LPFC_ATTR_R(ack0, 0, 0, 1, "Enable ACK0 support");
  783. /*
  784. # lpfc_cr_delay & lpfc_cr_count: Default values for I/O colaesing
  785. # cr_delay (msec) or cr_count outstanding commands. cr_delay can take
  786. # value [0,63]. cr_count can take value [0,255]. Default value of cr_delay
  787. # is 0. Default value of cr_count is 1. The cr_count feature is disabled if
  788. # cr_delay is set to 0.
  789. */
  790. LPFC_ATTR_RW(cr_delay, 0, 0, 63, "A count of milliseconds after which an "
  791. "interrupt response is generated");
  792. LPFC_ATTR_RW(cr_count, 1, 1, 255, "A count of I/O completions after which an "
  793. "interrupt response is generated");
  794. /*
  795. # lpfc_multi_ring_support: Determines how many rings to spread available
  796. # cmd/rsp IOCB entries across.
  797. # Value range is [1,2]. Default value is 1.
  798. */
  799. LPFC_ATTR_R(multi_ring_support, 1, 1, 2, "Determines number of primary "
  800. "SLI rings to spread IOCB entries across");
  801. /*
  802. # lpfc_fdmi_on: controls FDMI support.
  803. # 0 = no FDMI support
  804. # 1 = support FDMI without attribute of hostname
  805. # 2 = support FDMI with attribute of hostname
  806. # Value range [0,2]. Default value is 0.
  807. */
  808. LPFC_ATTR_RW(fdmi_on, 0, 0, 2, "Enable FDMI support");
  809. /*
  810. # Specifies the maximum number of ELS cmds we can have outstanding (for
  811. # discovery). Value range is [1,64]. Default value = 32.
  812. */
  813. LPFC_ATTR(discovery_threads, 32, 1, 64, "Maximum number of ELS commands "
  814. "during discovery");
  815. /*
  816. # lpfc_max_luns: maximum allowed LUN.
  817. # Value range is [0,65535]. Default value is 255.
  818. # NOTE: The SCSI layer might probe all allowed LUN on some old targets.
  819. */
  820. LPFC_ATTR_R(max_luns, 255, 0, 65535,
  821. "Maximum allowed LUN");
  822. /*
  823. # lpfc_poll_tmo: .Milliseconds driver will wait between polling FCP ring.
  824. # Value range is [1,255], default value is 10.
  825. */
  826. LPFC_ATTR_RW(poll_tmo, 10, 1, 255,
  827. "Milliseconds driver will wait between polling FCP ring");
  828. struct class_device_attribute *lpfc_host_attrs[] = {
  829. &class_device_attr_info,
  830. &class_device_attr_serialnum,
  831. &class_device_attr_modeldesc,
  832. &class_device_attr_modelname,
  833. &class_device_attr_programtype,
  834. &class_device_attr_portnum,
  835. &class_device_attr_fwrev,
  836. &class_device_attr_hdw,
  837. &class_device_attr_option_rom_version,
  838. &class_device_attr_state,
  839. &class_device_attr_num_discovered_ports,
  840. &class_device_attr_lpfc_drvr_version,
  841. &class_device_attr_lpfc_log_verbose,
  842. &class_device_attr_lpfc_lun_queue_depth,
  843. &class_device_attr_lpfc_hba_queue_depth,
  844. &class_device_attr_lpfc_nodev_tmo,
  845. &class_device_attr_lpfc_devloss_tmo,
  846. &class_device_attr_lpfc_fcp_class,
  847. &class_device_attr_lpfc_use_adisc,
  848. &class_device_attr_lpfc_ack0,
  849. &class_device_attr_lpfc_topology,
  850. &class_device_attr_lpfc_scan_down,
  851. &class_device_attr_lpfc_link_speed,
  852. &class_device_attr_lpfc_cr_delay,
  853. &class_device_attr_lpfc_cr_count,
  854. &class_device_attr_lpfc_multi_ring_support,
  855. &class_device_attr_lpfc_fdmi_on,
  856. &class_device_attr_lpfc_max_luns,
  857. &class_device_attr_nport_evt_cnt,
  858. &class_device_attr_management_version,
  859. &class_device_attr_board_mode,
  860. &class_device_attr_issue_reset,
  861. &class_device_attr_lpfc_poll,
  862. &class_device_attr_lpfc_poll_tmo,
  863. &class_device_attr_lpfc_soft_wwpn,
  864. &class_device_attr_lpfc_soft_wwpn_enable,
  865. NULL,
  866. };
  867. static ssize_t
  868. sysfs_ctlreg_write(struct kobject *kobj, char *buf, loff_t off, size_t count)
  869. {
  870. size_t buf_off;
  871. struct Scsi_Host *host = class_to_shost(container_of(kobj,
  872. struct class_device, kobj));
  873. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  874. if ((off + count) > FF_REG_AREA_SIZE)
  875. return -ERANGE;
  876. if (count == 0) return 0;
  877. if (off % 4 || count % 4 || (unsigned long)buf % 4)
  878. return -EINVAL;
  879. spin_lock_irq(phba->host->host_lock);
  880. if (!(phba->fc_flag & FC_OFFLINE_MODE)) {
  881. spin_unlock_irq(phba->host->host_lock);
  882. return -EPERM;
  883. }
  884. for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t))
  885. writel(*((uint32_t *)(buf + buf_off)),
  886. phba->ctrl_regs_memmap_p + off + buf_off);
  887. spin_unlock_irq(phba->host->host_lock);
  888. return count;
  889. }
  890. static ssize_t
  891. sysfs_ctlreg_read(struct kobject *kobj, char *buf, loff_t off, size_t count)
  892. {
  893. size_t buf_off;
  894. uint32_t * tmp_ptr;
  895. struct Scsi_Host *host = class_to_shost(container_of(kobj,
  896. struct class_device, kobj));
  897. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  898. if (off > FF_REG_AREA_SIZE)
  899. return -ERANGE;
  900. if ((off + count) > FF_REG_AREA_SIZE)
  901. count = FF_REG_AREA_SIZE - off;
  902. if (count == 0) return 0;
  903. if (off % 4 || count % 4 || (unsigned long)buf % 4)
  904. return -EINVAL;
  905. spin_lock_irq(phba->host->host_lock);
  906. for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t)) {
  907. tmp_ptr = (uint32_t *)(buf + buf_off);
  908. *tmp_ptr = readl(phba->ctrl_regs_memmap_p + off + buf_off);
  909. }
  910. spin_unlock_irq(phba->host->host_lock);
  911. return count;
  912. }
  913. static struct bin_attribute sysfs_ctlreg_attr = {
  914. .attr = {
  915. .name = "ctlreg",
  916. .mode = S_IRUSR | S_IWUSR,
  917. .owner = THIS_MODULE,
  918. },
  919. .size = 256,
  920. .read = sysfs_ctlreg_read,
  921. .write = sysfs_ctlreg_write,
  922. };
  923. static void
  924. sysfs_mbox_idle (struct lpfc_hba * phba)
  925. {
  926. phba->sysfs_mbox.state = SMBOX_IDLE;
  927. phba->sysfs_mbox.offset = 0;
  928. if (phba->sysfs_mbox.mbox) {
  929. mempool_free(phba->sysfs_mbox.mbox,
  930. phba->mbox_mem_pool);
  931. phba->sysfs_mbox.mbox = NULL;
  932. }
  933. }
  934. static ssize_t
  935. sysfs_mbox_write(struct kobject *kobj, char *buf, loff_t off, size_t count)
  936. {
  937. struct Scsi_Host * host =
  938. class_to_shost(container_of(kobj, struct class_device, kobj));
  939. struct lpfc_hba * phba = (struct lpfc_hba*)host->hostdata;
  940. struct lpfcMboxq * mbox = NULL;
  941. if ((count + off) > MAILBOX_CMD_SIZE)
  942. return -ERANGE;
  943. if (off % 4 || count % 4 || (unsigned long)buf % 4)
  944. return -EINVAL;
  945. if (count == 0)
  946. return 0;
  947. if (off == 0) {
  948. mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  949. if (!mbox)
  950. return -ENOMEM;
  951. memset(mbox, 0, sizeof (LPFC_MBOXQ_t));
  952. }
  953. spin_lock_irq(host->host_lock);
  954. if (off == 0) {
  955. if (phba->sysfs_mbox.mbox)
  956. mempool_free(mbox, phba->mbox_mem_pool);
  957. else
  958. phba->sysfs_mbox.mbox = mbox;
  959. phba->sysfs_mbox.state = SMBOX_WRITING;
  960. } else {
  961. if (phba->sysfs_mbox.state != SMBOX_WRITING ||
  962. phba->sysfs_mbox.offset != off ||
  963. phba->sysfs_mbox.mbox == NULL ) {
  964. sysfs_mbox_idle(phba);
  965. spin_unlock_irq(host->host_lock);
  966. return -EAGAIN;
  967. }
  968. }
  969. memcpy((uint8_t *) & phba->sysfs_mbox.mbox->mb + off,
  970. buf, count);
  971. phba->sysfs_mbox.offset = off + count;
  972. spin_unlock_irq(host->host_lock);
  973. return count;
  974. }
  975. static ssize_t
  976. sysfs_mbox_read(struct kobject *kobj, char *buf, loff_t off, size_t count)
  977. {
  978. struct Scsi_Host *host =
  979. class_to_shost(container_of(kobj, struct class_device,
  980. kobj));
  981. struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata;
  982. int rc;
  983. if (off > sizeof(MAILBOX_t))
  984. return -ERANGE;
  985. if ((count + off) > sizeof(MAILBOX_t))
  986. count = sizeof(MAILBOX_t) - off;
  987. if (off % 4 || count % 4 || (unsigned long)buf % 4)
  988. return -EINVAL;
  989. if (off && count == 0)
  990. return 0;
  991. spin_lock_irq(phba->host->host_lock);
  992. if (off == 0 &&
  993. phba->sysfs_mbox.state == SMBOX_WRITING &&
  994. phba->sysfs_mbox.offset >= 2 * sizeof(uint32_t)) {
  995. switch (phba->sysfs_mbox.mbox->mb.mbxCommand) {
  996. /* Offline only */
  997. case MBX_WRITE_NV:
  998. case MBX_INIT_LINK:
  999. case MBX_DOWN_LINK:
  1000. case MBX_CONFIG_LINK:
  1001. case MBX_CONFIG_RING:
  1002. case MBX_RESET_RING:
  1003. case MBX_UNREG_LOGIN:
  1004. case MBX_CLEAR_LA:
  1005. case MBX_DUMP_CONTEXT:
  1006. case MBX_RUN_DIAGS:
  1007. case MBX_RESTART:
  1008. case MBX_FLASH_WR_ULA:
  1009. case MBX_SET_MASK:
  1010. case MBX_SET_SLIM:
  1011. case MBX_SET_DEBUG:
  1012. if (!(phba->fc_flag & FC_OFFLINE_MODE)) {
  1013. printk(KERN_WARNING "mbox_read:Command 0x%x "
  1014. "is illegal in on-line state\n",
  1015. phba->sysfs_mbox.mbox->mb.mbxCommand);
  1016. sysfs_mbox_idle(phba);
  1017. spin_unlock_irq(phba->host->host_lock);
  1018. return -EPERM;
  1019. }
  1020. case MBX_LOAD_SM:
  1021. case MBX_READ_NV:
  1022. case MBX_READ_CONFIG:
  1023. case MBX_READ_RCONFIG:
  1024. case MBX_READ_STATUS:
  1025. case MBX_READ_XRI:
  1026. case MBX_READ_REV:
  1027. case MBX_READ_LNK_STAT:
  1028. case MBX_DUMP_MEMORY:
  1029. case MBX_DOWN_LOAD:
  1030. case MBX_UPDATE_CFG:
  1031. case MBX_KILL_BOARD:
  1032. case MBX_LOAD_AREA:
  1033. case MBX_LOAD_EXP_ROM:
  1034. case MBX_BEACON:
  1035. case MBX_DEL_LD_ENTRY:
  1036. break;
  1037. case MBX_READ_SPARM64:
  1038. case MBX_READ_LA:
  1039. case MBX_READ_LA64:
  1040. case MBX_REG_LOGIN:
  1041. case MBX_REG_LOGIN64:
  1042. case MBX_CONFIG_PORT:
  1043. case MBX_RUN_BIU_DIAG:
  1044. printk(KERN_WARNING "mbox_read: Illegal Command 0x%x\n",
  1045. phba->sysfs_mbox.mbox->mb.mbxCommand);
  1046. sysfs_mbox_idle(phba);
  1047. spin_unlock_irq(phba->host->host_lock);
  1048. return -EPERM;
  1049. default:
  1050. printk(KERN_WARNING "mbox_read: Unknown Command 0x%x\n",
  1051. phba->sysfs_mbox.mbox->mb.mbxCommand);
  1052. sysfs_mbox_idle(phba);
  1053. spin_unlock_irq(phba->host->host_lock);
  1054. return -EPERM;
  1055. }
  1056. if ((phba->fc_flag & FC_OFFLINE_MODE) ||
  1057. (!(phba->sli.sli_flag & LPFC_SLI2_ACTIVE))){
  1058. spin_unlock_irq(phba->host->host_lock);
  1059. rc = lpfc_sli_issue_mbox (phba,
  1060. phba->sysfs_mbox.mbox,
  1061. MBX_POLL);
  1062. spin_lock_irq(phba->host->host_lock);
  1063. } else {
  1064. spin_unlock_irq(phba->host->host_lock);
  1065. rc = lpfc_sli_issue_mbox_wait (phba,
  1066. phba->sysfs_mbox.mbox,
  1067. lpfc_mbox_tmo_val(phba,
  1068. phba->sysfs_mbox.mbox->mb.mbxCommand) * HZ);
  1069. spin_lock_irq(phba->host->host_lock);
  1070. }
  1071. if (rc != MBX_SUCCESS) {
  1072. sysfs_mbox_idle(phba);
  1073. spin_unlock_irq(host->host_lock);
  1074. return (rc == MBX_TIMEOUT) ? -ETIME : -ENODEV;
  1075. }
  1076. phba->sysfs_mbox.state = SMBOX_READING;
  1077. }
  1078. else if (phba->sysfs_mbox.offset != off ||
  1079. phba->sysfs_mbox.state != SMBOX_READING) {
  1080. printk(KERN_WARNING "mbox_read: Bad State\n");
  1081. sysfs_mbox_idle(phba);
  1082. spin_unlock_irq(host->host_lock);
  1083. return -EAGAIN;
  1084. }
  1085. memcpy(buf, (uint8_t *) & phba->sysfs_mbox.mbox->mb + off, count);
  1086. phba->sysfs_mbox.offset = off + count;
  1087. if (phba->sysfs_mbox.offset == sizeof(MAILBOX_t))
  1088. sysfs_mbox_idle(phba);
  1089. spin_unlock_irq(phba->host->host_lock);
  1090. return count;
  1091. }
  1092. static struct bin_attribute sysfs_mbox_attr = {
  1093. .attr = {
  1094. .name = "mbox",
  1095. .mode = S_IRUSR | S_IWUSR,
  1096. .owner = THIS_MODULE,
  1097. },
  1098. .size = sizeof(MAILBOX_t),
  1099. .read = sysfs_mbox_read,
  1100. .write = sysfs_mbox_write,
  1101. };
  1102. int
  1103. lpfc_alloc_sysfs_attr(struct lpfc_hba *phba)
  1104. {
  1105. struct Scsi_Host *host = phba->host;
  1106. int error;
  1107. error = sysfs_create_bin_file(&host->shost_classdev.kobj,
  1108. &sysfs_ctlreg_attr);
  1109. if (error)
  1110. goto out;
  1111. error = sysfs_create_bin_file(&host->shost_classdev.kobj,
  1112. &sysfs_mbox_attr);
  1113. if (error)
  1114. goto out_remove_ctlreg_attr;
  1115. return 0;
  1116. out_remove_ctlreg_attr:
  1117. sysfs_remove_bin_file(&host->shost_classdev.kobj, &sysfs_ctlreg_attr);
  1118. out:
  1119. return error;
  1120. }
  1121. void
  1122. lpfc_free_sysfs_attr(struct lpfc_hba *phba)
  1123. {
  1124. struct Scsi_Host *host = phba->host;
  1125. sysfs_remove_bin_file(&host->shost_classdev.kobj, &sysfs_mbox_attr);
  1126. sysfs_remove_bin_file(&host->shost_classdev.kobj, &sysfs_ctlreg_attr);
  1127. }
  1128. /*
  1129. * Dynamic FC Host Attributes Support
  1130. */
  1131. static void
  1132. lpfc_get_host_port_id(struct Scsi_Host *shost)
  1133. {
  1134. struct lpfc_hba *phba = (struct lpfc_hba*)shost->hostdata;
  1135. /* note: fc_myDID already in cpu endianness */
  1136. fc_host_port_id(shost) = phba->fc_myDID;
  1137. }
  1138. static void
  1139. lpfc_get_host_port_type(struct Scsi_Host *shost)
  1140. {
  1141. struct lpfc_hba *phba = (struct lpfc_hba*)shost->hostdata;
  1142. spin_lock_irq(shost->host_lock);
  1143. if (phba->hba_state == LPFC_HBA_READY) {
  1144. if (phba->fc_topology == TOPOLOGY_LOOP) {
  1145. if (phba->fc_flag & FC_PUBLIC_LOOP)
  1146. fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
  1147. else
  1148. fc_host_port_type(shost) = FC_PORTTYPE_LPORT;
  1149. } else {
  1150. if (phba->fc_flag & FC_FABRIC)
  1151. fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
  1152. else
  1153. fc_host_port_type(shost) = FC_PORTTYPE_PTP;
  1154. }
  1155. } else
  1156. fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
  1157. spin_unlock_irq(shost->host_lock);
  1158. }
  1159. static void
  1160. lpfc_get_host_port_state(struct Scsi_Host *shost)
  1161. {
  1162. struct lpfc_hba *phba = (struct lpfc_hba*)shost->hostdata;
  1163. spin_lock_irq(shost->host_lock);
  1164. if (phba->fc_flag & FC_OFFLINE_MODE)
  1165. fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
  1166. else {
  1167. switch (phba->hba_state) {
  1168. case LPFC_STATE_UNKNOWN:
  1169. case LPFC_WARM_START:
  1170. case LPFC_INIT_START:
  1171. case LPFC_INIT_MBX_CMDS:
  1172. case LPFC_LINK_DOWN:
  1173. fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
  1174. break;
  1175. case LPFC_LINK_UP:
  1176. case LPFC_LOCAL_CFG_LINK:
  1177. case LPFC_FLOGI:
  1178. case LPFC_FABRIC_CFG_LINK:
  1179. case LPFC_NS_REG:
  1180. case LPFC_NS_QRY:
  1181. case LPFC_BUILD_DISC_LIST:
  1182. case LPFC_DISC_AUTH:
  1183. case LPFC_CLEAR_LA:
  1184. case LPFC_HBA_READY:
  1185. /* Links up, beyond this port_type reports state */
  1186. fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
  1187. break;
  1188. case LPFC_HBA_ERROR:
  1189. fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
  1190. break;
  1191. default:
  1192. fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
  1193. break;
  1194. }
  1195. }
  1196. spin_unlock_irq(shost->host_lock);
  1197. }
  1198. static void
  1199. lpfc_get_host_speed(struct Scsi_Host *shost)
  1200. {
  1201. struct lpfc_hba *phba = (struct lpfc_hba*)shost->hostdata;
  1202. spin_lock_irq(shost->host_lock);
  1203. if (phba->hba_state == LPFC_HBA_READY) {
  1204. switch(phba->fc_linkspeed) {
  1205. case LA_1GHZ_LINK:
  1206. fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
  1207. break;
  1208. case LA_2GHZ_LINK:
  1209. fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
  1210. break;
  1211. case LA_4GHZ_LINK:
  1212. fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
  1213. break;
  1214. default:
  1215. fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
  1216. break;
  1217. }
  1218. }
  1219. spin_unlock_irq(shost->host_lock);
  1220. }
  1221. static void
  1222. lpfc_get_host_fabric_name (struct Scsi_Host *shost)
  1223. {
  1224. struct lpfc_hba *phba = (struct lpfc_hba*)shost->hostdata;
  1225. u64 node_name;
  1226. spin_lock_irq(shost->host_lock);
  1227. if ((phba->fc_flag & FC_FABRIC) ||
  1228. ((phba->fc_topology == TOPOLOGY_LOOP) &&
  1229. (phba->fc_flag & FC_PUBLIC_LOOP)))
  1230. node_name = wwn_to_u64(phba->fc_fabparam.nodeName.u.wwn);
  1231. else
  1232. /* fabric is local port if there is no F/FL_Port */
  1233. node_name = wwn_to_u64(phba->fc_nodename.u.wwn);
  1234. spin_unlock_irq(shost->host_lock);
  1235. fc_host_fabric_name(shost) = node_name;
  1236. }
  1237. static void
  1238. lpfc_get_host_symbolic_name (struct Scsi_Host *shost)
  1239. {
  1240. struct lpfc_hba *phba = (struct lpfc_hba*)shost->hostdata;
  1241. spin_lock_irq(shost->host_lock);
  1242. lpfc_get_hba_sym_node_name(phba, fc_host_symbolic_name(shost));
  1243. spin_unlock_irq(shost->host_lock);
  1244. }
  1245. static struct fc_host_statistics *
  1246. lpfc_get_stats(struct Scsi_Host *shost)
  1247. {
  1248. struct lpfc_hba *phba = (struct lpfc_hba *)shost->hostdata;
  1249. struct lpfc_sli *psli = &phba->sli;
  1250. struct fc_host_statistics *hs = &phba->link_stats;
  1251. struct lpfc_lnk_stat * lso = &psli->lnk_stat_offsets;
  1252. LPFC_MBOXQ_t *pmboxq;
  1253. MAILBOX_t *pmb;
  1254. unsigned long seconds;
  1255. int rc = 0;
  1256. pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  1257. if (!pmboxq)
  1258. return NULL;
  1259. memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
  1260. pmb = &pmboxq->mb;
  1261. pmb->mbxCommand = MBX_READ_STATUS;
  1262. pmb->mbxOwner = OWN_HOST;
  1263. pmboxq->context1 = NULL;
  1264. if ((phba->fc_flag & FC_OFFLINE_MODE) ||
  1265. (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
  1266. rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
  1267. else
  1268. rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
  1269. if (rc != MBX_SUCCESS) {
  1270. if (rc == MBX_TIMEOUT)
  1271. pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  1272. else
  1273. mempool_free(pmboxq, phba->mbox_mem_pool);
  1274. return NULL;
  1275. }
  1276. memset(hs, 0, sizeof (struct fc_host_statistics));
  1277. hs->tx_frames = pmb->un.varRdStatus.xmitFrameCnt;
  1278. hs->tx_words = (pmb->un.varRdStatus.xmitByteCnt * 256);
  1279. hs->rx_frames = pmb->un.varRdStatus.rcvFrameCnt;
  1280. hs->rx_words = (pmb->un.varRdStatus.rcvByteCnt * 256);
  1281. memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
  1282. pmb->mbxCommand = MBX_READ_LNK_STAT;
  1283. pmb->mbxOwner = OWN_HOST;
  1284. pmboxq->context1 = NULL;
  1285. if ((phba->fc_flag & FC_OFFLINE_MODE) ||
  1286. (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
  1287. rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
  1288. else
  1289. rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
  1290. if (rc != MBX_SUCCESS) {
  1291. if (rc == MBX_TIMEOUT)
  1292. pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  1293. else
  1294. mempool_free( pmboxq, phba->mbox_mem_pool);
  1295. return NULL;
  1296. }
  1297. hs->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
  1298. hs->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
  1299. hs->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
  1300. hs->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
  1301. hs->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
  1302. hs->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
  1303. hs->error_frames = pmb->un.varRdLnk.crcCnt;
  1304. hs->link_failure_count -= lso->link_failure_count;
  1305. hs->loss_of_sync_count -= lso->loss_of_sync_count;
  1306. hs->loss_of_signal_count -= lso->loss_of_signal_count;
  1307. hs->prim_seq_protocol_err_count -= lso->prim_seq_protocol_err_count;
  1308. hs->invalid_tx_word_count -= lso->invalid_tx_word_count;
  1309. hs->invalid_crc_count -= lso->invalid_crc_count;
  1310. hs->error_frames -= lso->error_frames;
  1311. if (phba->fc_topology == TOPOLOGY_LOOP) {
  1312. hs->lip_count = (phba->fc_eventTag >> 1);
  1313. hs->lip_count -= lso->link_events;
  1314. hs->nos_count = -1;
  1315. } else {
  1316. hs->lip_count = -1;
  1317. hs->nos_count = (phba->fc_eventTag >> 1);
  1318. hs->nos_count -= lso->link_events;
  1319. }
  1320. hs->dumped_frames = -1;
  1321. seconds = get_seconds();
  1322. if (seconds < psli->stats_start)
  1323. hs->seconds_since_last_reset = seconds +
  1324. ((unsigned long)-1 - psli->stats_start);
  1325. else
  1326. hs->seconds_since_last_reset = seconds - psli->stats_start;
  1327. return hs;
  1328. }
  1329. static void
  1330. lpfc_reset_stats(struct Scsi_Host *shost)
  1331. {
  1332. struct lpfc_hba *phba = (struct lpfc_hba *)shost->hostdata;
  1333. struct lpfc_sli *psli = &phba->sli;
  1334. struct lpfc_lnk_stat * lso = &psli->lnk_stat_offsets;
  1335. LPFC_MBOXQ_t *pmboxq;
  1336. MAILBOX_t *pmb;
  1337. int rc = 0;
  1338. pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
  1339. if (!pmboxq)
  1340. return;
  1341. memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
  1342. pmb = &pmboxq->mb;
  1343. pmb->mbxCommand = MBX_READ_STATUS;
  1344. pmb->mbxOwner = OWN_HOST;
  1345. pmb->un.varWords[0] = 0x1; /* reset request */
  1346. pmboxq->context1 = NULL;
  1347. if ((phba->fc_flag & FC_OFFLINE_MODE) ||
  1348. (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
  1349. rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
  1350. else
  1351. rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
  1352. if (rc != MBX_SUCCESS) {
  1353. if (rc == MBX_TIMEOUT)
  1354. pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  1355. else
  1356. mempool_free(pmboxq, phba->mbox_mem_pool);
  1357. return;
  1358. }
  1359. memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
  1360. pmb->mbxCommand = MBX_READ_LNK_STAT;
  1361. pmb->mbxOwner = OWN_HOST;
  1362. pmboxq->context1 = NULL;
  1363. if ((phba->fc_flag & FC_OFFLINE_MODE) ||
  1364. (!(psli->sli_flag & LPFC_SLI2_ACTIVE)))
  1365. rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
  1366. else
  1367. rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
  1368. if (rc != MBX_SUCCESS) {
  1369. if (rc == MBX_TIMEOUT)
  1370. pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
  1371. else
  1372. mempool_free( pmboxq, phba->mbox_mem_pool);
  1373. return;
  1374. }
  1375. lso->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
  1376. lso->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
  1377. lso->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
  1378. lso->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
  1379. lso->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
  1380. lso->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
  1381. lso->error_frames = pmb->un.varRdLnk.crcCnt;
  1382. lso->link_events = (phba->fc_eventTag >> 1);
  1383. psli->stats_start = get_seconds();
  1384. return;
  1385. }
  1386. /*
  1387. * The LPFC driver treats linkdown handling as target loss events so there
  1388. * are no sysfs handlers for link_down_tmo.
  1389. */
  1390. static void
  1391. lpfc_get_starget_port_id(struct scsi_target *starget)
  1392. {
  1393. struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
  1394. struct lpfc_hba *phba = (struct lpfc_hba *) shost->hostdata;
  1395. uint32_t did = -1;
  1396. struct lpfc_nodelist *ndlp = NULL;
  1397. spin_lock_irq(shost->host_lock);
  1398. /* Search the mapped list for this target ID */
  1399. list_for_each_entry(ndlp, &phba->fc_nlpmap_list, nlp_listp) {
  1400. if (starget->id == ndlp->nlp_sid) {
  1401. did = ndlp->nlp_DID;
  1402. break;
  1403. }
  1404. }
  1405. spin_unlock_irq(shost->host_lock);
  1406. fc_starget_port_id(starget) = did;
  1407. }
  1408. static void
  1409. lpfc_get_starget_node_name(struct scsi_target *starget)
  1410. {
  1411. struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
  1412. struct lpfc_hba *phba = (struct lpfc_hba *) shost->hostdata;
  1413. u64 node_name = 0;
  1414. struct lpfc_nodelist *ndlp = NULL;
  1415. spin_lock_irq(shost->host_lock);
  1416. /* Search the mapped list for this target ID */
  1417. list_for_each_entry(ndlp, &phba->fc_nlpmap_list, nlp_listp) {
  1418. if (starget->id == ndlp->nlp_sid) {
  1419. node_name = wwn_to_u64(ndlp->nlp_nodename.u.wwn);
  1420. break;
  1421. }
  1422. }
  1423. spin_unlock_irq(shost->host_lock);
  1424. fc_starget_node_name(starget) = node_name;
  1425. }
  1426. static void
  1427. lpfc_get_starget_port_name(struct scsi_target *starget)
  1428. {
  1429. struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
  1430. struct lpfc_hba *phba = (struct lpfc_hba *) shost->hostdata;
  1431. u64 port_name = 0;
  1432. struct lpfc_nodelist *ndlp = NULL;
  1433. spin_lock_irq(shost->host_lock);
  1434. /* Search the mapped list for this target ID */
  1435. list_for_each_entry(ndlp, &phba->fc_nlpmap_list, nlp_listp) {
  1436. if (starget->id == ndlp->nlp_sid) {
  1437. port_name = wwn_to_u64(ndlp->nlp_portname.u.wwn);
  1438. break;
  1439. }
  1440. }
  1441. spin_unlock_irq(shost->host_lock);
  1442. fc_starget_port_name(starget) = port_name;
  1443. }
  1444. static void
  1445. lpfc_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
  1446. {
  1447. if (timeout)
  1448. rport->dev_loss_tmo = timeout;
  1449. else
  1450. rport->dev_loss_tmo = 1;
  1451. }
  1452. #define lpfc_rport_show_function(field, format_string, sz, cast) \
  1453. static ssize_t \
  1454. lpfc_show_rport_##field (struct class_device *cdev, char *buf) \
  1455. { \
  1456. struct fc_rport *rport = transport_class_to_rport(cdev); \
  1457. struct lpfc_rport_data *rdata = rport->hostdata; \
  1458. return snprintf(buf, sz, format_string, \
  1459. (rdata->target) ? cast rdata->target->field : 0); \
  1460. }
  1461. #define lpfc_rport_rd_attr(field, format_string, sz) \
  1462. lpfc_rport_show_function(field, format_string, sz, ) \
  1463. static FC_RPORT_ATTR(field, S_IRUGO, lpfc_show_rport_##field, NULL)
  1464. struct fc_function_template lpfc_transport_functions = {
  1465. /* fixed attributes the driver supports */
  1466. .show_host_node_name = 1,
  1467. .show_host_port_name = 1,
  1468. .show_host_supported_classes = 1,
  1469. .show_host_supported_fc4s = 1,
  1470. .show_host_supported_speeds = 1,
  1471. .show_host_maxframe_size = 1,
  1472. /* dynamic attributes the driver supports */
  1473. .get_host_port_id = lpfc_get_host_port_id,
  1474. .show_host_port_id = 1,
  1475. .get_host_port_type = lpfc_get_host_port_type,
  1476. .show_host_port_type = 1,
  1477. .get_host_port_state = lpfc_get_host_port_state,
  1478. .show_host_port_state = 1,
  1479. /* active_fc4s is shown but doesn't change (thus no get function) */
  1480. .show_host_active_fc4s = 1,
  1481. .get_host_speed = lpfc_get_host_speed,
  1482. .show_host_speed = 1,
  1483. .get_host_fabric_name = lpfc_get_host_fabric_name,
  1484. .show_host_fabric_name = 1,
  1485. .get_host_symbolic_name = lpfc_get_host_symbolic_name,
  1486. .show_host_symbolic_name = 1,
  1487. /*
  1488. * The LPFC driver treats linkdown handling as target loss events
  1489. * so there are no sysfs handlers for link_down_tmo.
  1490. */
  1491. .get_fc_host_stats = lpfc_get_stats,
  1492. .reset_fc_host_stats = lpfc_reset_stats,
  1493. .dd_fcrport_size = sizeof(struct lpfc_rport_data),
  1494. .show_rport_maxframe_size = 1,
  1495. .show_rport_supported_classes = 1,
  1496. .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
  1497. .show_rport_dev_loss_tmo = 1,
  1498. .get_starget_port_id = lpfc_get_starget_port_id,
  1499. .show_starget_port_id = 1,
  1500. .get_starget_node_name = lpfc_get_starget_node_name,
  1501. .show_starget_node_name = 1,
  1502. .get_starget_port_name = lpfc_get_starget_port_name,
  1503. .show_starget_port_name = 1,
  1504. .issue_fc_host_lip = lpfc_issue_lip,
  1505. .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
  1506. .terminate_rport_io = lpfc_terminate_rport_io,
  1507. };
  1508. void
  1509. lpfc_get_cfgparam(struct lpfc_hba *phba)
  1510. {
  1511. lpfc_log_verbose_init(phba, lpfc_log_verbose);
  1512. lpfc_cr_delay_init(phba, lpfc_cr_delay);
  1513. lpfc_cr_count_init(phba, lpfc_cr_count);
  1514. lpfc_multi_ring_support_init(phba, lpfc_multi_ring_support);
  1515. lpfc_lun_queue_depth_init(phba, lpfc_lun_queue_depth);
  1516. lpfc_fcp_class_init(phba, lpfc_fcp_class);
  1517. lpfc_use_adisc_init(phba, lpfc_use_adisc);
  1518. lpfc_ack0_init(phba, lpfc_ack0);
  1519. lpfc_topology_init(phba, lpfc_topology);
  1520. lpfc_scan_down_init(phba, lpfc_scan_down);
  1521. lpfc_link_speed_init(phba, lpfc_link_speed);
  1522. lpfc_fdmi_on_init(phba, lpfc_fdmi_on);
  1523. lpfc_discovery_threads_init(phba, lpfc_discovery_threads);
  1524. lpfc_max_luns_init(phba, lpfc_max_luns);
  1525. lpfc_poll_tmo_init(phba, lpfc_poll_tmo);
  1526. lpfc_devloss_tmo_init(phba, lpfc_devloss_tmo);
  1527. lpfc_nodev_tmo_init(phba, lpfc_nodev_tmo);
  1528. phba->cfg_poll = lpfc_poll;
  1529. phba->cfg_soft_wwpn = 0L;
  1530. /*
  1531. * The total number of segments is the configuration value plus 2
  1532. * since the IOCB need a command and response bde.
  1533. */
  1534. phba->cfg_sg_seg_cnt = LPFC_SG_SEG_CNT + 2;
  1535. /*
  1536. * Since the sg_tablesize is module parameter, the sg_dma_buf_size
  1537. * used to create the sg_dma_buf_pool must be dynamically calculated
  1538. */
  1539. phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
  1540. sizeof(struct fcp_rsp) +
  1541. (phba->cfg_sg_seg_cnt * sizeof(struct ulp_bde64));
  1542. switch (phba->pcidev->device) {
  1543. case PCI_DEVICE_ID_LP101:
  1544. case PCI_DEVICE_ID_BSMB:
  1545. case PCI_DEVICE_ID_ZSMB:
  1546. phba->cfg_hba_queue_depth = LPFC_LP101_HBA_Q_DEPTH;
  1547. break;
  1548. case PCI_DEVICE_ID_RFLY:
  1549. case PCI_DEVICE_ID_PFLY:
  1550. case PCI_DEVICE_ID_BMID:
  1551. case PCI_DEVICE_ID_ZMID:
  1552. case PCI_DEVICE_ID_TFLY:
  1553. phba->cfg_hba_queue_depth = LPFC_LC_HBA_Q_DEPTH;
  1554. break;
  1555. default:
  1556. phba->cfg_hba_queue_depth = LPFC_DFT_HBA_Q_DEPTH;
  1557. }
  1558. if (phba->cfg_hba_queue_depth > lpfc_hba_queue_depth)
  1559. lpfc_hba_queue_depth_init(phba, lpfc_hba_queue_depth);
  1560. return;
  1561. }