]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/scsi/lpfc/lpfc_attr.c
scsi: lpfc: Correct topology type reporting on G7 adapters
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / lpfc / lpfc_attr.c
1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2017-2018 Broadcom. All Rights Reserved. The term *
5 * “Broadcom” refers to Broadcom Limited and/or its subsidiaries. *
6 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
7 * EMULEX and SLI are trademarks of Emulex. *
8 * www.broadcom.com *
9 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
10 * *
11 * This program is free software; you can redistribute it and/or *
12 * modify it under the terms of version 2 of the GNU General *
13 * Public License as published by the Free Software Foundation. *
14 * This program is distributed in the hope that it will be useful. *
15 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
16 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
17 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
18 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
19 * TO BE LEGALLY INVALID. See the GNU General Public License for *
20 * more details, a copy of which can be found in the file COPYING *
21 * included with this package. *
22 *******************************************************************/
23
24 #include <linux/ctype.h>
25 #include <linux/delay.h>
26 #include <linux/pci.h>
27 #include <linux/interrupt.h>
28 #include <linux/module.h>
29 #include <linux/aer.h>
30 #include <linux/gfp.h>
31 #include <linux/kernel.h>
32
33 #include <scsi/scsi.h>
34 #include <scsi/scsi_device.h>
35 #include <scsi/scsi_host.h>
36 #include <scsi/scsi_tcq.h>
37 #include <scsi/scsi_transport_fc.h>
38 #include <scsi/fc/fc_fs.h>
39
40 #include <linux/nvme-fc-driver.h>
41
42 #include "lpfc_hw4.h"
43 #include "lpfc_hw.h"
44 #include "lpfc_sli.h"
45 #include "lpfc_sli4.h"
46 #include "lpfc_nl.h"
47 #include "lpfc_disc.h"
48 #include "lpfc.h"
49 #include "lpfc_scsi.h"
50 #include "lpfc_nvme.h"
51 #include "lpfc_nvmet.h"
52 #include "lpfc_logmsg.h"
53 #include "lpfc_version.h"
54 #include "lpfc_compat.h"
55 #include "lpfc_crtn.h"
56 #include "lpfc_vport.h"
57 #include "lpfc_attr.h"
58
59 #define LPFC_DEF_DEVLOSS_TMO 30
60 #define LPFC_MIN_DEVLOSS_TMO 1
61 #define LPFC_MAX_DEVLOSS_TMO 255
62
63 #define LPFC_DEF_MRQ_POST 512
64 #define LPFC_MIN_MRQ_POST 512
65 #define LPFC_MAX_MRQ_POST 2048
66
67 /*
68 * Write key size should be multiple of 4. If write key is changed
69 * make sure that library write key is also changed.
70 */
71 #define LPFC_REG_WRITE_KEY_SIZE 4
72 #define LPFC_REG_WRITE_KEY "EMLX"
73
74 /**
75 * lpfc_jedec_to_ascii - Hex to ascii convertor according to JEDEC rules
76 * @incr: integer to convert.
77 * @hdw: ascii string holding converted integer plus a string terminator.
78 *
79 * Description:
80 * JEDEC Joint Electron Device Engineering Council.
81 * Convert a 32 bit integer composed of 8 nibbles into an 8 byte ascii
82 * character string. The string is then terminated with a NULL in byte 9.
83 * Hex 0-9 becomes ascii '0' to '9'.
84 * Hex a-f becomes ascii '=' to 'B' capital B.
85 *
86 * Notes:
87 * Coded for 32 bit integers only.
88 **/
89 static void
90 lpfc_jedec_to_ascii(int incr, char hdw[])
91 {
92 int i, j;
93 for (i = 0; i < 8; i++) {
94 j = (incr & 0xf);
95 if (j <= 9)
96 hdw[7 - i] = 0x30 + j;
97 else
98 hdw[7 - i] = 0x61 + j - 10;
99 incr = (incr >> 4);
100 }
101 hdw[8] = 0;
102 return;
103 }
104
105 /**
106 * lpfc_drvr_version_show - Return the Emulex driver string with version number
107 * @dev: class unused variable.
108 * @attr: device attribute, not used.
109 * @buf: on return contains the module description text.
110 *
111 * Returns: size of formatted string.
112 **/
113 static ssize_t
114 lpfc_drvr_version_show(struct device *dev, struct device_attribute *attr,
115 char *buf)
116 {
117 return scnprintf(buf, PAGE_SIZE, LPFC_MODULE_DESC "\n");
118 }
119
120 /**
121 * lpfc_enable_fip_show - Return the fip mode of the HBA
122 * @dev: class unused variable.
123 * @attr: device attribute, not used.
124 * @buf: on return contains the module description text.
125 *
126 * Returns: size of formatted string.
127 **/
128 static ssize_t
129 lpfc_enable_fip_show(struct device *dev, struct device_attribute *attr,
130 char *buf)
131 {
132 struct Scsi_Host *shost = class_to_shost(dev);
133 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
134 struct lpfc_hba *phba = vport->phba;
135
136 if (phba->hba_flag & HBA_FIP_SUPPORT)
137 return scnprintf(buf, PAGE_SIZE, "1\n");
138 else
139 return scnprintf(buf, PAGE_SIZE, "0\n");
140 }
141
142 static ssize_t
143 lpfc_nvme_info_show(struct device *dev, struct device_attribute *attr,
144 char *buf)
145 {
146 struct Scsi_Host *shost = class_to_shost(dev);
147 struct lpfc_vport *vport = shost_priv(shost);
148 struct lpfc_hba *phba = vport->phba;
149 struct lpfc_nvmet_tgtport *tgtp;
150 struct nvme_fc_local_port *localport;
151 struct lpfc_nvme_lport *lport;
152 struct lpfc_nodelist *ndlp;
153 struct nvme_fc_remote_port *nrport;
154 uint64_t data1, data2, data3, tot;
155 char *statep;
156 int len = 0;
157
158 if (!(phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME)) {
159 len += snprintf(buf, PAGE_SIZE, "NVME Disabled\n");
160 return len;
161 }
162 if (phba->nvmet_support) {
163 if (!phba->targetport) {
164 len = snprintf(buf, PAGE_SIZE,
165 "NVME Target: x%llx is not allocated\n",
166 wwn_to_u64(vport->fc_portname.u.wwn));
167 return len;
168 }
169 /* Port state is only one of two values for now. */
170 if (phba->targetport->port_id)
171 statep = "REGISTERED";
172 else
173 statep = "INIT";
174 len += snprintf(buf + len, PAGE_SIZE - len,
175 "NVME Target Enabled State %s\n",
176 statep);
177 len += snprintf(buf + len, PAGE_SIZE - len,
178 "%s%d WWPN x%llx WWNN x%llx DID x%06x\n",
179 "NVME Target: lpfc",
180 phba->brd_no,
181 wwn_to_u64(vport->fc_portname.u.wwn),
182 wwn_to_u64(vport->fc_nodename.u.wwn),
183 phba->targetport->port_id);
184
185 len += snprintf(buf + len, PAGE_SIZE - len,
186 "\nNVME Target: Statistics\n");
187 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
188 len += snprintf(buf+len, PAGE_SIZE-len,
189 "LS: Rcv %08x Drop %08x Abort %08x\n",
190 atomic_read(&tgtp->rcv_ls_req_in),
191 atomic_read(&tgtp->rcv_ls_req_drop),
192 atomic_read(&tgtp->xmt_ls_abort));
193 if (atomic_read(&tgtp->rcv_ls_req_in) !=
194 atomic_read(&tgtp->rcv_ls_req_out)) {
195 len += snprintf(buf+len, PAGE_SIZE-len,
196 "Rcv LS: in %08x != out %08x\n",
197 atomic_read(&tgtp->rcv_ls_req_in),
198 atomic_read(&tgtp->rcv_ls_req_out));
199 }
200
201 len += snprintf(buf+len, PAGE_SIZE-len,
202 "LS: Xmt %08x Drop %08x Cmpl %08x\n",
203 atomic_read(&tgtp->xmt_ls_rsp),
204 atomic_read(&tgtp->xmt_ls_drop),
205 atomic_read(&tgtp->xmt_ls_rsp_cmpl));
206
207 len += snprintf(buf + len, PAGE_SIZE - len,
208 "LS: RSP Abort %08x xb %08x Err %08x\n",
209 atomic_read(&tgtp->xmt_ls_rsp_aborted),
210 atomic_read(&tgtp->xmt_ls_rsp_xb_set),
211 atomic_read(&tgtp->xmt_ls_rsp_error));
212
213 len += snprintf(buf+len, PAGE_SIZE-len,
214 "FCP: Rcv %08x Defer %08x Release %08x "
215 "Drop %08x\n",
216 atomic_read(&tgtp->rcv_fcp_cmd_in),
217 atomic_read(&tgtp->rcv_fcp_cmd_defer),
218 atomic_read(&tgtp->xmt_fcp_release),
219 atomic_read(&tgtp->rcv_fcp_cmd_drop));
220
221 if (atomic_read(&tgtp->rcv_fcp_cmd_in) !=
222 atomic_read(&tgtp->rcv_fcp_cmd_out)) {
223 len += snprintf(buf+len, PAGE_SIZE-len,
224 "Rcv FCP: in %08x != out %08x\n",
225 atomic_read(&tgtp->rcv_fcp_cmd_in),
226 atomic_read(&tgtp->rcv_fcp_cmd_out));
227 }
228
229 len += snprintf(buf+len, PAGE_SIZE-len,
230 "FCP Rsp: RD %08x rsp %08x WR %08x rsp %08x "
231 "drop %08x\n",
232 atomic_read(&tgtp->xmt_fcp_read),
233 atomic_read(&tgtp->xmt_fcp_read_rsp),
234 atomic_read(&tgtp->xmt_fcp_write),
235 atomic_read(&tgtp->xmt_fcp_rsp),
236 atomic_read(&tgtp->xmt_fcp_drop));
237
238 len += snprintf(buf+len, PAGE_SIZE-len,
239 "FCP Rsp Cmpl: %08x err %08x drop %08x\n",
240 atomic_read(&tgtp->xmt_fcp_rsp_cmpl),
241 atomic_read(&tgtp->xmt_fcp_rsp_error),
242 atomic_read(&tgtp->xmt_fcp_rsp_drop));
243
244 len += snprintf(buf+len, PAGE_SIZE-len,
245 "FCP Rsp Abort: %08x xb %08x xricqe %08x\n",
246 atomic_read(&tgtp->xmt_fcp_rsp_aborted),
247 atomic_read(&tgtp->xmt_fcp_rsp_xb_set),
248 atomic_read(&tgtp->xmt_fcp_xri_abort_cqe));
249
250 len += snprintf(buf + len, PAGE_SIZE - len,
251 "ABORT: Xmt %08x Cmpl %08x\n",
252 atomic_read(&tgtp->xmt_fcp_abort),
253 atomic_read(&tgtp->xmt_fcp_abort_cmpl));
254
255 len += snprintf(buf + len, PAGE_SIZE - len,
256 "ABORT: Sol %08x Usol %08x Err %08x Cmpl %08x",
257 atomic_read(&tgtp->xmt_abort_sol),
258 atomic_read(&tgtp->xmt_abort_unsol),
259 atomic_read(&tgtp->xmt_abort_rsp),
260 atomic_read(&tgtp->xmt_abort_rsp_error));
261
262 len += snprintf(buf + len, PAGE_SIZE - len,
263 "DELAY: ctx %08x fod %08x wqfull %08x\n",
264 atomic_read(&tgtp->defer_ctx),
265 atomic_read(&tgtp->defer_fod),
266 atomic_read(&tgtp->defer_wqfull));
267
268 /* Calculate outstanding IOs */
269 tot = atomic_read(&tgtp->rcv_fcp_cmd_drop);
270 tot += atomic_read(&tgtp->xmt_fcp_release);
271 tot = atomic_read(&tgtp->rcv_fcp_cmd_in) - tot;
272
273 len += snprintf(buf + len, PAGE_SIZE - len,
274 "IO_CTX: %08x WAIT: cur %08x tot %08x\n"
275 "CTX Outstanding %08llx\n",
276 phba->sli4_hba.nvmet_xri_cnt,
277 phba->sli4_hba.nvmet_io_wait_cnt,
278 phba->sli4_hba.nvmet_io_wait_total,
279 tot);
280
281 len += snprintf(buf+len, PAGE_SIZE-len, "\n");
282 return len;
283 }
284
285 localport = vport->localport;
286 if (!localport) {
287 len = snprintf(buf, PAGE_SIZE,
288 "NVME Initiator x%llx is not allocated\n",
289 wwn_to_u64(vport->fc_portname.u.wwn));
290 return len;
291 }
292 lport = (struct lpfc_nvme_lport *)localport->private;
293 len = snprintf(buf, PAGE_SIZE, "NVME Initiator Enabled\n");
294
295 spin_lock_irq(shost->host_lock);
296
297 /* Port state is only one of two values for now. */
298 if (localport->port_id)
299 statep = "ONLINE";
300 else
301 statep = "UNKNOWN ";
302
303 len += snprintf(buf + len, PAGE_SIZE - len,
304 "%s%d WWPN x%llx WWNN x%llx DID x%06x %s\n",
305 "NVME LPORT lpfc",
306 phba->brd_no,
307 wwn_to_u64(vport->fc_portname.u.wwn),
308 wwn_to_u64(vport->fc_nodename.u.wwn),
309 localport->port_id, statep);
310
311 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
312 if (!ndlp->nrport)
313 continue;
314
315 /* local short-hand pointer. */
316 nrport = ndlp->nrport->remoteport;
317
318 /* Port state is only one of two values for now. */
319 switch (nrport->port_state) {
320 case FC_OBJSTATE_ONLINE:
321 statep = "ONLINE";
322 break;
323 case FC_OBJSTATE_UNKNOWN:
324 statep = "UNKNOWN ";
325 break;
326 default:
327 statep = "UNSUPPORTED";
328 break;
329 }
330
331 /* Tab in to show lport ownership. */
332 len += snprintf(buf + len, PAGE_SIZE - len,
333 "NVME RPORT ");
334 if (phba->brd_no >= 10)
335 len += snprintf(buf + len, PAGE_SIZE - len, " ");
336
337 len += snprintf(buf + len, PAGE_SIZE - len, "WWPN x%llx ",
338 nrport->port_name);
339 len += snprintf(buf + len, PAGE_SIZE - len, "WWNN x%llx ",
340 nrport->node_name);
341 len += snprintf(buf + len, PAGE_SIZE - len, "DID x%06x ",
342 nrport->port_id);
343
344 /* An NVME rport can have multiple roles. */
345 if (nrport->port_role & FC_PORT_ROLE_NVME_INITIATOR)
346 len += snprintf(buf + len, PAGE_SIZE - len,
347 "INITIATOR ");
348 if (nrport->port_role & FC_PORT_ROLE_NVME_TARGET)
349 len += snprintf(buf + len, PAGE_SIZE - len,
350 "TARGET ");
351 if (nrport->port_role & FC_PORT_ROLE_NVME_DISCOVERY)
352 len += snprintf(buf + len, PAGE_SIZE - len,
353 "DISCSRVC ");
354 if (nrport->port_role & ~(FC_PORT_ROLE_NVME_INITIATOR |
355 FC_PORT_ROLE_NVME_TARGET |
356 FC_PORT_ROLE_NVME_DISCOVERY))
357 len += snprintf(buf + len, PAGE_SIZE - len,
358 "UNKNOWN ROLE x%x",
359 nrport->port_role);
360
361 len += snprintf(buf + len, PAGE_SIZE - len, "%s ", statep);
362 /* Terminate the string. */
363 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
364 }
365 spin_unlock_irq(shost->host_lock);
366
367 len += snprintf(buf + len, PAGE_SIZE - len, "\nNVME Statistics\n");
368 len += snprintf(buf+len, PAGE_SIZE-len,
369 "LS: Xmt %010x Cmpl %010x Abort %08x\n",
370 atomic_read(&phba->fc4NvmeLsRequests),
371 atomic_read(&phba->fc4NvmeLsCmpls),
372 atomic_read(&lport->xmt_ls_abort));
373
374 len += snprintf(buf + len, PAGE_SIZE - len,
375 "LS XMIT: Err %08x CMPL: xb %08x Err %08x\n",
376 atomic_read(&lport->xmt_ls_err),
377 atomic_read(&lport->cmpl_ls_xb),
378 atomic_read(&lport->cmpl_ls_err));
379
380 tot = atomic_read(&phba->fc4NvmeIoCmpls);
381 data1 = atomic_read(&phba->fc4NvmeInputRequests);
382 data2 = atomic_read(&phba->fc4NvmeOutputRequests);
383 data3 = atomic_read(&phba->fc4NvmeControlRequests);
384 len += snprintf(buf+len, PAGE_SIZE-len,
385 "FCP: Rd %016llx Wr %016llx IO %016llx\n",
386 data1, data2, data3);
387
388 len += snprintf(buf+len, PAGE_SIZE-len,
389 " noxri %08x nondlp %08x qdepth %08x "
390 "wqerr %08x\n",
391 atomic_read(&lport->xmt_fcp_noxri),
392 atomic_read(&lport->xmt_fcp_bad_ndlp),
393 atomic_read(&lport->xmt_fcp_qdepth),
394 atomic_read(&lport->xmt_fcp_wqerr));
395
396 len += snprintf(buf + len, PAGE_SIZE - len,
397 " Cmpl %016llx Outstanding %016llx Abort %08x\n",
398 tot, ((data1 + data2 + data3) - tot),
399 atomic_read(&lport->xmt_fcp_abort));
400
401 len += snprintf(buf + len, PAGE_SIZE - len,
402 "FCP CMPL: xb %08x Err %08x\n",
403 atomic_read(&lport->cmpl_fcp_xb),
404 atomic_read(&lport->cmpl_fcp_err));
405 return len;
406 }
407
408 static ssize_t
409 lpfc_bg_info_show(struct device *dev, struct device_attribute *attr,
410 char *buf)
411 {
412 struct Scsi_Host *shost = class_to_shost(dev);
413 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
414 struct lpfc_hba *phba = vport->phba;
415
416 if (phba->cfg_enable_bg) {
417 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED)
418 return scnprintf(buf, PAGE_SIZE,
419 "BlockGuard Enabled\n");
420 else
421 return scnprintf(buf, PAGE_SIZE,
422 "BlockGuard Not Supported\n");
423 } else
424 return scnprintf(buf, PAGE_SIZE,
425 "BlockGuard Disabled\n");
426 }
427
428 static ssize_t
429 lpfc_bg_guard_err_show(struct device *dev, struct device_attribute *attr,
430 char *buf)
431 {
432 struct Scsi_Host *shost = class_to_shost(dev);
433 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
434 struct lpfc_hba *phba = vport->phba;
435
436 return scnprintf(buf, PAGE_SIZE, "%llu\n",
437 (unsigned long long)phba->bg_guard_err_cnt);
438 }
439
440 static ssize_t
441 lpfc_bg_apptag_err_show(struct device *dev, struct device_attribute *attr,
442 char *buf)
443 {
444 struct Scsi_Host *shost = class_to_shost(dev);
445 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
446 struct lpfc_hba *phba = vport->phba;
447
448 return scnprintf(buf, PAGE_SIZE, "%llu\n",
449 (unsigned long long)phba->bg_apptag_err_cnt);
450 }
451
452 static ssize_t
453 lpfc_bg_reftag_err_show(struct device *dev, struct device_attribute *attr,
454 char *buf)
455 {
456 struct Scsi_Host *shost = class_to_shost(dev);
457 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
458 struct lpfc_hba *phba = vport->phba;
459
460 return scnprintf(buf, PAGE_SIZE, "%llu\n",
461 (unsigned long long)phba->bg_reftag_err_cnt);
462 }
463
464 /**
465 * lpfc_info_show - Return some pci info about the host in ascii
466 * @dev: class converted to a Scsi_host structure.
467 * @attr: device attribute, not used.
468 * @buf: on return contains the formatted text from lpfc_info().
469 *
470 * Returns: size of formatted string.
471 **/
472 static ssize_t
473 lpfc_info_show(struct device *dev, struct device_attribute *attr,
474 char *buf)
475 {
476 struct Scsi_Host *host = class_to_shost(dev);
477
478 return scnprintf(buf, PAGE_SIZE, "%s\n", lpfc_info(host));
479 }
480
481 /**
482 * lpfc_serialnum_show - Return the hba serial number in ascii
483 * @dev: class converted to a Scsi_host structure.
484 * @attr: device attribute, not used.
485 * @buf: on return contains the formatted text serial number.
486 *
487 * Returns: size of formatted string.
488 **/
489 static ssize_t
490 lpfc_serialnum_show(struct device *dev, struct device_attribute *attr,
491 char *buf)
492 {
493 struct Scsi_Host *shost = class_to_shost(dev);
494 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
495 struct lpfc_hba *phba = vport->phba;
496
497 return scnprintf(buf, PAGE_SIZE, "%s\n", phba->SerialNumber);
498 }
499
500 /**
501 * lpfc_temp_sensor_show - Return the temperature sensor level
502 * @dev: class converted to a Scsi_host structure.
503 * @attr: device attribute, not used.
504 * @buf: on return contains the formatted support level.
505 *
506 * Description:
507 * Returns a number indicating the temperature sensor level currently
508 * supported, zero or one in ascii.
509 *
510 * Returns: size of formatted string.
511 **/
512 static ssize_t
513 lpfc_temp_sensor_show(struct device *dev, struct device_attribute *attr,
514 char *buf)
515 {
516 struct Scsi_Host *shost = class_to_shost(dev);
517 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
518 struct lpfc_hba *phba = vport->phba;
519 return scnprintf(buf, PAGE_SIZE, "%d\n", phba->temp_sensor_support);
520 }
521
522 /**
523 * lpfc_modeldesc_show - Return the model description of the hba
524 * @dev: class converted to a Scsi_host structure.
525 * @attr: device attribute, not used.
526 * @buf: on return contains the scsi vpd model description.
527 *
528 * Returns: size of formatted string.
529 **/
530 static ssize_t
531 lpfc_modeldesc_show(struct device *dev, struct device_attribute *attr,
532 char *buf)
533 {
534 struct Scsi_Host *shost = class_to_shost(dev);
535 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
536 struct lpfc_hba *phba = vport->phba;
537
538 return scnprintf(buf, PAGE_SIZE, "%s\n", phba->ModelDesc);
539 }
540
541 /**
542 * lpfc_modelname_show - Return the model name of the hba
543 * @dev: class converted to a Scsi_host structure.
544 * @attr: device attribute, not used.
545 * @buf: on return contains the scsi vpd model name.
546 *
547 * Returns: size of formatted string.
548 **/
549 static ssize_t
550 lpfc_modelname_show(struct device *dev, struct device_attribute *attr,
551 char *buf)
552 {
553 struct Scsi_Host *shost = class_to_shost(dev);
554 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
555 struct lpfc_hba *phba = vport->phba;
556
557 return scnprintf(buf, PAGE_SIZE, "%s\n", phba->ModelName);
558 }
559
560 /**
561 * lpfc_programtype_show - Return the program type of the hba
562 * @dev: class converted to a Scsi_host structure.
563 * @attr: device attribute, not used.
564 * @buf: on return contains the scsi vpd program type.
565 *
566 * Returns: size of formatted string.
567 **/
568 static ssize_t
569 lpfc_programtype_show(struct device *dev, struct device_attribute *attr,
570 char *buf)
571 {
572 struct Scsi_Host *shost = class_to_shost(dev);
573 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
574 struct lpfc_hba *phba = vport->phba;
575
576 return scnprintf(buf, PAGE_SIZE, "%s\n", phba->ProgramType);
577 }
578
579 /**
580 * lpfc_mlomgmt_show - Return the Menlo Maintenance sli flag
581 * @dev: class converted to a Scsi_host structure.
582 * @attr: device attribute, not used.
583 * @buf: on return contains the Menlo Maintenance sli flag.
584 *
585 * Returns: size of formatted string.
586 **/
587 static ssize_t
588 lpfc_mlomgmt_show(struct device *dev, struct device_attribute *attr, char *buf)
589 {
590 struct Scsi_Host *shost = class_to_shost(dev);
591 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
592 struct lpfc_hba *phba = vport->phba;
593
594 return scnprintf(buf, PAGE_SIZE, "%d\n",
595 (phba->sli.sli_flag & LPFC_MENLO_MAINT));
596 }
597
598 /**
599 * lpfc_vportnum_show - Return the port number in ascii of the hba
600 * @dev: class converted to a Scsi_host structure.
601 * @attr: device attribute, not used.
602 * @buf: on return contains scsi vpd program type.
603 *
604 * Returns: size of formatted string.
605 **/
606 static ssize_t
607 lpfc_vportnum_show(struct device *dev, struct device_attribute *attr,
608 char *buf)
609 {
610 struct Scsi_Host *shost = class_to_shost(dev);
611 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
612 struct lpfc_hba *phba = vport->phba;
613
614 return scnprintf(buf, PAGE_SIZE, "%s\n", phba->Port);
615 }
616
617 /**
618 * lpfc_fwrev_show - Return the firmware rev running in the hba
619 * @dev: class converted to a Scsi_host structure.
620 * @attr: device attribute, not used.
621 * @buf: on return contains the scsi vpd program type.
622 *
623 * Returns: size of formatted string.
624 **/
625 static ssize_t
626 lpfc_fwrev_show(struct device *dev, struct device_attribute *attr,
627 char *buf)
628 {
629 struct Scsi_Host *shost = class_to_shost(dev);
630 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
631 struct lpfc_hba *phba = vport->phba;
632 uint32_t if_type;
633 uint8_t sli_family;
634 char fwrev[FW_REV_STR_SIZE];
635 int len;
636
637 lpfc_decode_firmware_rev(phba, fwrev, 1);
638 if_type = phba->sli4_hba.pc_sli4_params.if_type;
639 sli_family = phba->sli4_hba.pc_sli4_params.sli_family;
640
641 if (phba->sli_rev < LPFC_SLI_REV4)
642 len = scnprintf(buf, PAGE_SIZE, "%s, sli-%d\n",
643 fwrev, phba->sli_rev);
644 else
645 len = scnprintf(buf, PAGE_SIZE, "%s, sli-%d:%d:%x\n",
646 fwrev, phba->sli_rev, if_type, sli_family);
647
648 return len;
649 }
650
651 /**
652 * lpfc_hdw_show - Return the jedec information about the hba
653 * @dev: class converted to a Scsi_host structure.
654 * @attr: device attribute, not used.
655 * @buf: on return contains the scsi vpd program type.
656 *
657 * Returns: size of formatted string.
658 **/
659 static ssize_t
660 lpfc_hdw_show(struct device *dev, struct device_attribute *attr, char *buf)
661 {
662 char hdw[9];
663 struct Scsi_Host *shost = class_to_shost(dev);
664 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
665 struct lpfc_hba *phba = vport->phba;
666 lpfc_vpd_t *vp = &phba->vpd;
667
668 lpfc_jedec_to_ascii(vp->rev.biuRev, hdw);
669 return scnprintf(buf, PAGE_SIZE, "%s\n", hdw);
670 }
671
672 /**
673 * lpfc_option_rom_version_show - Return the adapter ROM FCode version
674 * @dev: class converted to a Scsi_host structure.
675 * @attr: device attribute, not used.
676 * @buf: on return contains the ROM and FCode ascii strings.
677 *
678 * Returns: size of formatted string.
679 **/
680 static ssize_t
681 lpfc_option_rom_version_show(struct device *dev, struct device_attribute *attr,
682 char *buf)
683 {
684 struct Scsi_Host *shost = class_to_shost(dev);
685 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
686 struct lpfc_hba *phba = vport->phba;
687 char fwrev[FW_REV_STR_SIZE];
688
689 if (phba->sli_rev < LPFC_SLI_REV4)
690 return scnprintf(buf, PAGE_SIZE, "%s\n",
691 phba->OptionROMVersion);
692
693 lpfc_decode_firmware_rev(phba, fwrev, 1);
694 return scnprintf(buf, PAGE_SIZE, "%s\n", fwrev);
695 }
696
697 /**
698 * lpfc_state_show - Return the link state of the port
699 * @dev: class converted to a Scsi_host structure.
700 * @attr: device attribute, not used.
701 * @buf: on return contains text describing the state of the link.
702 *
703 * Notes:
704 * The switch statement has no default so zero will be returned.
705 *
706 * Returns: size of formatted string.
707 **/
708 static ssize_t
709 lpfc_link_state_show(struct device *dev, struct device_attribute *attr,
710 char *buf)
711 {
712 struct Scsi_Host *shost = class_to_shost(dev);
713 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
714 struct lpfc_hba *phba = vport->phba;
715 int len = 0;
716
717 switch (phba->link_state) {
718 case LPFC_LINK_UNKNOWN:
719 case LPFC_WARM_START:
720 case LPFC_INIT_START:
721 case LPFC_INIT_MBX_CMDS:
722 case LPFC_LINK_DOWN:
723 case LPFC_HBA_ERROR:
724 if (phba->hba_flag & LINK_DISABLED)
725 len += scnprintf(buf + len, PAGE_SIZE-len,
726 "Link Down - User disabled\n");
727 else
728 len += scnprintf(buf + len, PAGE_SIZE-len,
729 "Link Down\n");
730 break;
731 case LPFC_LINK_UP:
732 case LPFC_CLEAR_LA:
733 case LPFC_HBA_READY:
734 len += scnprintf(buf + len, PAGE_SIZE-len, "Link Up - ");
735
736 switch (vport->port_state) {
737 case LPFC_LOCAL_CFG_LINK:
738 len += scnprintf(buf + len, PAGE_SIZE-len,
739 "Configuring Link\n");
740 break;
741 case LPFC_FDISC:
742 case LPFC_FLOGI:
743 case LPFC_FABRIC_CFG_LINK:
744 case LPFC_NS_REG:
745 case LPFC_NS_QRY:
746 case LPFC_BUILD_DISC_LIST:
747 case LPFC_DISC_AUTH:
748 len += scnprintf(buf + len, PAGE_SIZE - len,
749 "Discovery\n");
750 break;
751 case LPFC_VPORT_READY:
752 len += scnprintf(buf + len, PAGE_SIZE - len,
753 "Ready\n");
754 break;
755
756 case LPFC_VPORT_FAILED:
757 len += scnprintf(buf + len, PAGE_SIZE - len,
758 "Failed\n");
759 break;
760
761 case LPFC_VPORT_UNKNOWN:
762 len += scnprintf(buf + len, PAGE_SIZE - len,
763 "Unknown\n");
764 break;
765 }
766 if (phba->sli.sli_flag & LPFC_MENLO_MAINT)
767 len += scnprintf(buf + len, PAGE_SIZE-len,
768 " Menlo Maint Mode\n");
769 else if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
770 if (vport->fc_flag & FC_PUBLIC_LOOP)
771 len += scnprintf(buf + len, PAGE_SIZE-len,
772 " Public Loop\n");
773 else
774 len += scnprintf(buf + len, PAGE_SIZE-len,
775 " Private Loop\n");
776 } else {
777 if (vport->fc_flag & FC_FABRIC)
778 len += scnprintf(buf + len, PAGE_SIZE-len,
779 " Fabric\n");
780 else
781 len += scnprintf(buf + len, PAGE_SIZE-len,
782 " Point-2-Point\n");
783 }
784 }
785
786 return len;
787 }
788
789 /**
790 * lpfc_sli4_protocol_show - Return the fip mode of the HBA
791 * @dev: class unused variable.
792 * @attr: device attribute, not used.
793 * @buf: on return contains the module description text.
794 *
795 * Returns: size of formatted string.
796 **/
797 static ssize_t
798 lpfc_sli4_protocol_show(struct device *dev, struct device_attribute *attr,
799 char *buf)
800 {
801 struct Scsi_Host *shost = class_to_shost(dev);
802 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
803 struct lpfc_hba *phba = vport->phba;
804
805 if (phba->sli_rev < LPFC_SLI_REV4)
806 return scnprintf(buf, PAGE_SIZE, "fc\n");
807
808 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL) {
809 if (phba->sli4_hba.lnk_info.lnk_tp == LPFC_LNK_TYPE_GE)
810 return scnprintf(buf, PAGE_SIZE, "fcoe\n");
811 if (phba->sli4_hba.lnk_info.lnk_tp == LPFC_LNK_TYPE_FC)
812 return scnprintf(buf, PAGE_SIZE, "fc\n");
813 }
814 return scnprintf(buf, PAGE_SIZE, "unknown\n");
815 }
816
817 /**
818 * lpfc_oas_supported_show - Return whether or not Optimized Access Storage
819 * (OAS) is supported.
820 * @dev: class unused variable.
821 * @attr: device attribute, not used.
822 * @buf: on return contains the module description text.
823 *
824 * Returns: size of formatted string.
825 **/
826 static ssize_t
827 lpfc_oas_supported_show(struct device *dev, struct device_attribute *attr,
828 char *buf)
829 {
830 struct Scsi_Host *shost = class_to_shost(dev);
831 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
832 struct lpfc_hba *phba = vport->phba;
833
834 return scnprintf(buf, PAGE_SIZE, "%d\n",
835 phba->sli4_hba.pc_sli4_params.oas_supported);
836 }
837
838 /**
839 * lpfc_link_state_store - Transition the link_state on an HBA port
840 * @dev: class device that is converted into a Scsi_host.
841 * @attr: device attribute, not used.
842 * @buf: one or more lpfc_polling_flags values.
843 * @count: not used.
844 *
845 * Returns:
846 * -EINVAL if the buffer is not "up" or "down"
847 * return from link state change function if non-zero
848 * length of the buf on success
849 **/
850 static ssize_t
851 lpfc_link_state_store(struct device *dev, struct device_attribute *attr,
852 const char *buf, size_t count)
853 {
854 struct Scsi_Host *shost = class_to_shost(dev);
855 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
856 struct lpfc_hba *phba = vport->phba;
857
858 int status = -EINVAL;
859
860 if ((strncmp(buf, "up", sizeof("up") - 1) == 0) &&
861 (phba->link_state == LPFC_LINK_DOWN))
862 status = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
863 else if ((strncmp(buf, "down", sizeof("down") - 1) == 0) &&
864 (phba->link_state >= LPFC_LINK_UP))
865 status = phba->lpfc_hba_down_link(phba, MBX_NOWAIT);
866
867 if (status == 0)
868 return strlen(buf);
869 else
870 return status;
871 }
872
873 /**
874 * lpfc_num_discovered_ports_show - Return sum of mapped and unmapped vports
875 * @dev: class device that is converted into a Scsi_host.
876 * @attr: device attribute, not used.
877 * @buf: on return contains the sum of fc mapped and unmapped.
878 *
879 * Description:
880 * Returns the ascii text number of the sum of the fc mapped and unmapped
881 * vport counts.
882 *
883 * Returns: size of formatted string.
884 **/
885 static ssize_t
886 lpfc_num_discovered_ports_show(struct device *dev,
887 struct device_attribute *attr, char *buf)
888 {
889 struct Scsi_Host *shost = class_to_shost(dev);
890 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
891
892 return scnprintf(buf, PAGE_SIZE, "%d\n",
893 vport->fc_map_cnt + vport->fc_unmap_cnt);
894 }
895
896 /**
897 * lpfc_issue_lip - Misnomer, name carried over from long ago
898 * @shost: Scsi_Host pointer.
899 *
900 * Description:
901 * Bring the link down gracefully then re-init the link. The firmware will
902 * re-init the fiber channel interface as required. Does not issue a LIP.
903 *
904 * Returns:
905 * -EPERM port offline or management commands are being blocked
906 * -ENOMEM cannot allocate memory for the mailbox command
907 * -EIO error sending the mailbox command
908 * zero for success
909 **/
910 static int
911 lpfc_issue_lip(struct Scsi_Host *shost)
912 {
913 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
914 struct lpfc_hba *phba = vport->phba;
915 LPFC_MBOXQ_t *pmboxq;
916 int mbxstatus = MBXERR_ERROR;
917
918 /*
919 * If the link is offline, disabled or BLOCK_MGMT_IO
920 * it doesn't make any sense to allow issue_lip
921 */
922 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
923 (phba->hba_flag & LINK_DISABLED) ||
924 (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO))
925 return -EPERM;
926
927 pmboxq = mempool_alloc(phba->mbox_mem_pool,GFP_KERNEL);
928
929 if (!pmboxq)
930 return -ENOMEM;
931
932 memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
933 pmboxq->u.mb.mbxCommand = MBX_DOWN_LINK;
934 pmboxq->u.mb.mbxOwner = OWN_HOST;
935
936 mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq, LPFC_MBOX_TMO * 2);
937
938 if ((mbxstatus == MBX_SUCCESS) &&
939 (pmboxq->u.mb.mbxStatus == 0 ||
940 pmboxq->u.mb.mbxStatus == MBXERR_LINK_DOWN)) {
941 memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
942 lpfc_init_link(phba, pmboxq, phba->cfg_topology,
943 phba->cfg_link_speed);
944 mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq,
945 phba->fc_ratov * 2);
946 if ((mbxstatus == MBX_SUCCESS) &&
947 (pmboxq->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
948 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
949 "2859 SLI authentication is required "
950 "for INIT_LINK but has not done yet\n");
951 }
952
953 lpfc_set_loopback_flag(phba);
954 if (mbxstatus != MBX_TIMEOUT)
955 mempool_free(pmboxq, phba->mbox_mem_pool);
956
957 if (mbxstatus == MBXERR_ERROR)
958 return -EIO;
959
960 return 0;
961 }
962
963 int
964 lpfc_emptyq_wait(struct lpfc_hba *phba, struct list_head *q, spinlock_t *lock)
965 {
966 int cnt = 0;
967
968 spin_lock_irq(lock);
969 while (!list_empty(q)) {
970 spin_unlock_irq(lock);
971 msleep(20);
972 if (cnt++ > 250) { /* 5 secs */
973 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
974 "0466 %s %s\n",
975 "Outstanding IO when ",
976 "bringing Adapter offline\n");
977 return 0;
978 }
979 spin_lock_irq(lock);
980 }
981 spin_unlock_irq(lock);
982 return 1;
983 }
984
985 /**
986 * lpfc_do_offline - Issues a mailbox command to bring the link down
987 * @phba: lpfc_hba pointer.
988 * @type: LPFC_EVT_OFFLINE, LPFC_EVT_WARM_START, LPFC_EVT_KILL.
989 *
990 * Notes:
991 * Assumes any error from lpfc_do_offline() will be negative.
992 * Can wait up to 5 seconds for the port ring buffers count
993 * to reach zero, prints a warning if it is not zero and continues.
994 * lpfc_workq_post_event() returns a non-zero return code if call fails.
995 *
996 * Returns:
997 * -EIO error posting the event
998 * zero for success
999 **/
1000 static int
1001 lpfc_do_offline(struct lpfc_hba *phba, uint32_t type)
1002 {
1003 struct completion online_compl;
1004 struct lpfc_queue *qp = NULL;
1005 struct lpfc_sli_ring *pring;
1006 struct lpfc_sli *psli;
1007 int status = 0;
1008 int i;
1009 int rc;
1010
1011 init_completion(&online_compl);
1012 rc = lpfc_workq_post_event(phba, &status, &online_compl,
1013 LPFC_EVT_OFFLINE_PREP);
1014 if (rc == 0)
1015 return -ENOMEM;
1016
1017 wait_for_completion(&online_compl);
1018
1019 if (status != 0)
1020 return -EIO;
1021
1022 psli = &phba->sli;
1023
1024 /* Wait a little for things to settle down, but not
1025 * long enough for dev loss timeout to expire.
1026 */
1027 if (phba->sli_rev != LPFC_SLI_REV4) {
1028 for (i = 0; i < psli->num_rings; i++) {
1029 pring = &psli->sli3_ring[i];
1030 if (!lpfc_emptyq_wait(phba, &pring->txcmplq,
1031 &phba->hbalock))
1032 goto out;
1033 }
1034 } else {
1035 list_for_each_entry(qp, &phba->sli4_hba.lpfc_wq_list, wq_list) {
1036 pring = qp->pring;
1037 if (!pring)
1038 continue;
1039 if (!lpfc_emptyq_wait(phba, &pring->txcmplq,
1040 &pring->ring_lock))
1041 goto out;
1042 }
1043 }
1044 out:
1045 init_completion(&online_compl);
1046 rc = lpfc_workq_post_event(phba, &status, &online_compl, type);
1047 if (rc == 0)
1048 return -ENOMEM;
1049
1050 wait_for_completion(&online_compl);
1051
1052 if (status != 0)
1053 return -EIO;
1054
1055 return 0;
1056 }
1057
1058 /**
1059 * lpfc_selective_reset - Offline then onlines the port
1060 * @phba: lpfc_hba pointer.
1061 *
1062 * Description:
1063 * If the port is configured to allow a reset then the hba is brought
1064 * offline then online.
1065 *
1066 * Notes:
1067 * Assumes any error from lpfc_do_offline() will be negative.
1068 * Do not make this function static.
1069 *
1070 * Returns:
1071 * lpfc_do_offline() return code if not zero
1072 * -EIO reset not configured or error posting the event
1073 * zero for success
1074 **/
1075 int
1076 lpfc_selective_reset(struct lpfc_hba *phba)
1077 {
1078 struct completion online_compl;
1079 int status = 0;
1080 int rc;
1081
1082 if (!phba->cfg_enable_hba_reset)
1083 return -EACCES;
1084
1085 if (!(phba->pport->fc_flag & FC_OFFLINE_MODE)) {
1086 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
1087
1088 if (status != 0)
1089 return status;
1090 }
1091
1092 init_completion(&online_compl);
1093 rc = lpfc_workq_post_event(phba, &status, &online_compl,
1094 LPFC_EVT_ONLINE);
1095 if (rc == 0)
1096 return -ENOMEM;
1097
1098 wait_for_completion(&online_compl);
1099
1100 if (status != 0)
1101 return -EIO;
1102
1103 return 0;
1104 }
1105
1106 /**
1107 * lpfc_issue_reset - Selectively resets an adapter
1108 * @dev: class device that is converted into a Scsi_host.
1109 * @attr: device attribute, not used.
1110 * @buf: containing the string "selective".
1111 * @count: unused variable.
1112 *
1113 * Description:
1114 * If the buf contains the string "selective" then lpfc_selective_reset()
1115 * is called to perform the reset.
1116 *
1117 * Notes:
1118 * Assumes any error from lpfc_selective_reset() will be negative.
1119 * If lpfc_selective_reset() returns zero then the length of the buffer
1120 * is returned which indicates success
1121 *
1122 * Returns:
1123 * -EINVAL if the buffer does not contain the string "selective"
1124 * length of buf if lpfc-selective_reset() if the call succeeds
1125 * return value of lpfc_selective_reset() if the call fails
1126 **/
1127 static ssize_t
1128 lpfc_issue_reset(struct device *dev, struct device_attribute *attr,
1129 const char *buf, size_t count)
1130 {
1131 struct Scsi_Host *shost = class_to_shost(dev);
1132 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1133 struct lpfc_hba *phba = vport->phba;
1134 int status = -EINVAL;
1135
1136 if (!phba->cfg_enable_hba_reset)
1137 return -EACCES;
1138
1139 if (strncmp(buf, "selective", sizeof("selective") - 1) == 0)
1140 status = phba->lpfc_selective_reset(phba);
1141
1142 if (status == 0)
1143 return strlen(buf);
1144 else
1145 return status;
1146 }
1147
1148 /**
1149 * lpfc_sli4_pdev_status_reg_wait - Wait for pdev status register for readyness
1150 * @phba: lpfc_hba pointer.
1151 *
1152 * Description:
1153 * SLI4 interface type-2 device to wait on the sliport status register for
1154 * the readyness after performing a firmware reset.
1155 *
1156 * Returns:
1157 * zero for success, -EPERM when port does not have privilege to perform the
1158 * reset, -EIO when port timeout from recovering from the reset.
1159 *
1160 * Note:
1161 * As the caller will interpret the return code by value, be careful in making
1162 * change or addition to return codes.
1163 **/
1164 int
1165 lpfc_sli4_pdev_status_reg_wait(struct lpfc_hba *phba)
1166 {
1167 struct lpfc_register portstat_reg = {0};
1168 int i;
1169
1170 msleep(100);
1171 lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
1172 &portstat_reg.word0);
1173
1174 /* verify if privileged for the request operation */
1175 if (!bf_get(lpfc_sliport_status_rn, &portstat_reg) &&
1176 !bf_get(lpfc_sliport_status_err, &portstat_reg))
1177 return -EPERM;
1178
1179 /* wait for the SLI port firmware ready after firmware reset */
1180 for (i = 0; i < LPFC_FW_RESET_MAXIMUM_WAIT_10MS_CNT; i++) {
1181 msleep(10);
1182 lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
1183 &portstat_reg.word0);
1184 if (!bf_get(lpfc_sliport_status_err, &portstat_reg))
1185 continue;
1186 if (!bf_get(lpfc_sliport_status_rn, &portstat_reg))
1187 continue;
1188 if (!bf_get(lpfc_sliport_status_rdy, &portstat_reg))
1189 continue;
1190 break;
1191 }
1192
1193 if (i < LPFC_FW_RESET_MAXIMUM_WAIT_10MS_CNT)
1194 return 0;
1195 else
1196 return -EIO;
1197 }
1198
1199 /**
1200 * lpfc_sli4_pdev_reg_request - Request physical dev to perform a register acc
1201 * @phba: lpfc_hba pointer.
1202 *
1203 * Description:
1204 * Request SLI4 interface type-2 device to perform a physical register set
1205 * access.
1206 *
1207 * Returns:
1208 * zero for success
1209 **/
1210 static ssize_t
1211 lpfc_sli4_pdev_reg_request(struct lpfc_hba *phba, uint32_t opcode)
1212 {
1213 struct completion online_compl;
1214 struct pci_dev *pdev = phba->pcidev;
1215 uint32_t before_fc_flag;
1216 uint32_t sriov_nr_virtfn;
1217 uint32_t reg_val;
1218 int status = 0, rc = 0;
1219 int job_posted = 1, sriov_err;
1220
1221 if (!phba->cfg_enable_hba_reset)
1222 return -EACCES;
1223
1224 if ((phba->sli_rev < LPFC_SLI_REV4) ||
1225 (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) <
1226 LPFC_SLI_INTF_IF_TYPE_2))
1227 return -EPERM;
1228
1229 /* Keep state if we need to restore back */
1230 before_fc_flag = phba->pport->fc_flag;
1231 sriov_nr_virtfn = phba->cfg_sriov_nr_virtfn;
1232
1233 /* Disable SR-IOV virtual functions if enabled */
1234 if (phba->cfg_sriov_nr_virtfn) {
1235 pci_disable_sriov(pdev);
1236 phba->cfg_sriov_nr_virtfn = 0;
1237 }
1238
1239 if (opcode == LPFC_FW_DUMP)
1240 phba->hba_flag |= HBA_FW_DUMP_OP;
1241
1242 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
1243
1244 if (status != 0) {
1245 phba->hba_flag &= ~HBA_FW_DUMP_OP;
1246 return status;
1247 }
1248
1249 /* wait for the device to be quiesced before firmware reset */
1250 msleep(100);
1251
1252 reg_val = readl(phba->sli4_hba.conf_regs_memmap_p +
1253 LPFC_CTL_PDEV_CTL_OFFSET);
1254
1255 if (opcode == LPFC_FW_DUMP)
1256 reg_val |= LPFC_FW_DUMP_REQUEST;
1257 else if (opcode == LPFC_FW_RESET)
1258 reg_val |= LPFC_CTL_PDEV_CTL_FRST;
1259 else if (opcode == LPFC_DV_RESET)
1260 reg_val |= LPFC_CTL_PDEV_CTL_DRST;
1261
1262 writel(reg_val, phba->sli4_hba.conf_regs_memmap_p +
1263 LPFC_CTL_PDEV_CTL_OFFSET);
1264 /* flush */
1265 readl(phba->sli4_hba.conf_regs_memmap_p + LPFC_CTL_PDEV_CTL_OFFSET);
1266
1267 /* delay driver action following IF_TYPE_2 reset */
1268 rc = lpfc_sli4_pdev_status_reg_wait(phba);
1269
1270 if (rc == -EPERM) {
1271 /* no privilege for reset */
1272 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
1273 "3150 No privilege to perform the requested "
1274 "access: x%x\n", reg_val);
1275 } else if (rc == -EIO) {
1276 /* reset failed, there is nothing more we can do */
1277 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
1278 "3153 Fail to perform the requested "
1279 "access: x%x\n", reg_val);
1280 return rc;
1281 }
1282
1283 /* keep the original port state */
1284 if (before_fc_flag & FC_OFFLINE_MODE)
1285 goto out;
1286
1287 init_completion(&online_compl);
1288 job_posted = lpfc_workq_post_event(phba, &status, &online_compl,
1289 LPFC_EVT_ONLINE);
1290 if (!job_posted)
1291 goto out;
1292
1293 wait_for_completion(&online_compl);
1294
1295 out:
1296 /* in any case, restore the virtual functions enabled as before */
1297 if (sriov_nr_virtfn) {
1298 sriov_err =
1299 lpfc_sli_probe_sriov_nr_virtfn(phba, sriov_nr_virtfn);
1300 if (!sriov_err)
1301 phba->cfg_sriov_nr_virtfn = sriov_nr_virtfn;
1302 }
1303
1304 /* return proper error code */
1305 if (!rc) {
1306 if (!job_posted)
1307 rc = -ENOMEM;
1308 else if (status)
1309 rc = -EIO;
1310 }
1311 return rc;
1312 }
1313
1314 /**
1315 * lpfc_nport_evt_cnt_show - Return the number of nport events
1316 * @dev: class device that is converted into a Scsi_host.
1317 * @attr: device attribute, not used.
1318 * @buf: on return contains the ascii number of nport events.
1319 *
1320 * Returns: size of formatted string.
1321 **/
1322 static ssize_t
1323 lpfc_nport_evt_cnt_show(struct device *dev, struct device_attribute *attr,
1324 char *buf)
1325 {
1326 struct Scsi_Host *shost = class_to_shost(dev);
1327 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1328 struct lpfc_hba *phba = vport->phba;
1329
1330 return scnprintf(buf, PAGE_SIZE, "%d\n", phba->nport_event_cnt);
1331 }
1332
1333 /**
1334 * lpfc_board_mode_show - Return the state of the board
1335 * @dev: class device that is converted into a Scsi_host.
1336 * @attr: device attribute, not used.
1337 * @buf: on return contains the state of the adapter.
1338 *
1339 * Returns: size of formatted string.
1340 **/
1341 static ssize_t
1342 lpfc_board_mode_show(struct device *dev, struct device_attribute *attr,
1343 char *buf)
1344 {
1345 struct Scsi_Host *shost = class_to_shost(dev);
1346 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1347 struct lpfc_hba *phba = vport->phba;
1348 char * state;
1349
1350 if (phba->link_state == LPFC_HBA_ERROR)
1351 state = "error";
1352 else if (phba->link_state == LPFC_WARM_START)
1353 state = "warm start";
1354 else if (phba->link_state == LPFC_INIT_START)
1355 state = "offline";
1356 else
1357 state = "online";
1358
1359 return scnprintf(buf, PAGE_SIZE, "%s\n", state);
1360 }
1361
1362 /**
1363 * lpfc_board_mode_store - Puts the hba in online, offline, warm or error state
1364 * @dev: class device that is converted into a Scsi_host.
1365 * @attr: device attribute, not used.
1366 * @buf: containing one of the strings "online", "offline", "warm" or "error".
1367 * @count: unused variable.
1368 *
1369 * Returns:
1370 * -EACCES if enable hba reset not enabled
1371 * -EINVAL if the buffer does not contain a valid string (see above)
1372 * -EIO if lpfc_workq_post_event() or lpfc_do_offline() fails
1373 * buf length greater than zero indicates success
1374 **/
1375 static ssize_t
1376 lpfc_board_mode_store(struct device *dev, struct device_attribute *attr,
1377 const char *buf, size_t count)
1378 {
1379 struct Scsi_Host *shost = class_to_shost(dev);
1380 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1381 struct lpfc_hba *phba = vport->phba;
1382 struct completion online_compl;
1383 char *board_mode_str = NULL;
1384 int status = 0;
1385 int rc;
1386
1387 if (!phba->cfg_enable_hba_reset) {
1388 status = -EACCES;
1389 goto board_mode_out;
1390 }
1391
1392 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1393 "3050 lpfc_board_mode set to %s\n", buf);
1394
1395 init_completion(&online_compl);
1396
1397 if(strncmp(buf, "online", sizeof("online") - 1) == 0) {
1398 rc = lpfc_workq_post_event(phba, &status, &online_compl,
1399 LPFC_EVT_ONLINE);
1400 if (rc == 0) {
1401 status = -ENOMEM;
1402 goto board_mode_out;
1403 }
1404 wait_for_completion(&online_compl);
1405 if (status)
1406 status = -EIO;
1407 } else if (strncmp(buf, "offline", sizeof("offline") - 1) == 0)
1408 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
1409 else if (strncmp(buf, "warm", sizeof("warm") - 1) == 0)
1410 if (phba->sli_rev == LPFC_SLI_REV4)
1411 status = -EINVAL;
1412 else
1413 status = lpfc_do_offline(phba, LPFC_EVT_WARM_START);
1414 else if (strncmp(buf, "error", sizeof("error") - 1) == 0)
1415 if (phba->sli_rev == LPFC_SLI_REV4)
1416 status = -EINVAL;
1417 else
1418 status = lpfc_do_offline(phba, LPFC_EVT_KILL);
1419 else if (strncmp(buf, "dump", sizeof("dump") - 1) == 0)
1420 status = lpfc_sli4_pdev_reg_request(phba, LPFC_FW_DUMP);
1421 else if (strncmp(buf, "fw_reset", sizeof("fw_reset") - 1) == 0)
1422 status = lpfc_sli4_pdev_reg_request(phba, LPFC_FW_RESET);
1423 else if (strncmp(buf, "dv_reset", sizeof("dv_reset") - 1) == 0)
1424 status = lpfc_sli4_pdev_reg_request(phba, LPFC_DV_RESET);
1425 else
1426 status = -EINVAL;
1427
1428 board_mode_out:
1429 if (!status)
1430 return strlen(buf);
1431 else {
1432 board_mode_str = strchr(buf, '\n');
1433 if (board_mode_str)
1434 *board_mode_str = '\0';
1435 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1436 "3097 Failed \"%s\", status(%d), "
1437 "fc_flag(x%x)\n",
1438 buf, status, phba->pport->fc_flag);
1439 return status;
1440 }
1441 }
1442
1443 /**
1444 * lpfc_get_hba_info - Return various bits of informaton about the adapter
1445 * @phba: pointer to the adapter structure.
1446 * @mxri: max xri count.
1447 * @axri: available xri count.
1448 * @mrpi: max rpi count.
1449 * @arpi: available rpi count.
1450 * @mvpi: max vpi count.
1451 * @avpi: available vpi count.
1452 *
1453 * Description:
1454 * If an integer pointer for an count is not null then the value for the
1455 * count is returned.
1456 *
1457 * Returns:
1458 * zero on error
1459 * one for success
1460 **/
1461 static int
1462 lpfc_get_hba_info(struct lpfc_hba *phba,
1463 uint32_t *mxri, uint32_t *axri,
1464 uint32_t *mrpi, uint32_t *arpi,
1465 uint32_t *mvpi, uint32_t *avpi)
1466 {
1467 struct lpfc_mbx_read_config *rd_config;
1468 LPFC_MBOXQ_t *pmboxq;
1469 MAILBOX_t *pmb;
1470 int rc = 0;
1471 uint32_t max_vpi;
1472
1473 /*
1474 * prevent udev from issuing mailbox commands until the port is
1475 * configured.
1476 */
1477 if (phba->link_state < LPFC_LINK_DOWN ||
1478 !phba->mbox_mem_pool ||
1479 (phba->sli.sli_flag & LPFC_SLI_ACTIVE) == 0)
1480 return 0;
1481
1482 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
1483 return 0;
1484
1485 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1486 if (!pmboxq)
1487 return 0;
1488 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
1489
1490 pmb = &pmboxq->u.mb;
1491 pmb->mbxCommand = MBX_READ_CONFIG;
1492 pmb->mbxOwner = OWN_HOST;
1493 pmboxq->context1 = NULL;
1494
1495 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
1496 rc = MBX_NOT_FINISHED;
1497 else
1498 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
1499
1500 if (rc != MBX_SUCCESS) {
1501 if (rc != MBX_TIMEOUT)
1502 mempool_free(pmboxq, phba->mbox_mem_pool);
1503 return 0;
1504 }
1505
1506 if (phba->sli_rev == LPFC_SLI_REV4) {
1507 rd_config = &pmboxq->u.mqe.un.rd_config;
1508 if (mrpi)
1509 *mrpi = bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config);
1510 if (arpi)
1511 *arpi = bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config) -
1512 phba->sli4_hba.max_cfg_param.rpi_used;
1513 if (mxri)
1514 *mxri = bf_get(lpfc_mbx_rd_conf_xri_count, rd_config);
1515 if (axri)
1516 *axri = bf_get(lpfc_mbx_rd_conf_xri_count, rd_config) -
1517 phba->sli4_hba.max_cfg_param.xri_used;
1518
1519 /* Account for differences with SLI-3. Get vpi count from
1520 * mailbox data and subtract one for max vpi value.
1521 */
1522 max_vpi = (bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config) > 0) ?
1523 (bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config) - 1) : 0;
1524
1525 /* Limit the max we support */
1526 if (max_vpi > LPFC_MAX_VPI)
1527 max_vpi = LPFC_MAX_VPI;
1528 if (mvpi)
1529 *mvpi = max_vpi;
1530 if (avpi)
1531 *avpi = max_vpi - phba->sli4_hba.max_cfg_param.vpi_used;
1532 } else {
1533 if (mrpi)
1534 *mrpi = pmb->un.varRdConfig.max_rpi;
1535 if (arpi)
1536 *arpi = pmb->un.varRdConfig.avail_rpi;
1537 if (mxri)
1538 *mxri = pmb->un.varRdConfig.max_xri;
1539 if (axri)
1540 *axri = pmb->un.varRdConfig.avail_xri;
1541 if (mvpi)
1542 *mvpi = pmb->un.varRdConfig.max_vpi;
1543 if (avpi) {
1544 /* avail_vpi is only valid if link is up and ready */
1545 if (phba->link_state == LPFC_HBA_READY)
1546 *avpi = pmb->un.varRdConfig.avail_vpi;
1547 else
1548 *avpi = pmb->un.varRdConfig.max_vpi;
1549 }
1550 }
1551
1552 mempool_free(pmboxq, phba->mbox_mem_pool);
1553 return 1;
1554 }
1555
1556 /**
1557 * lpfc_max_rpi_show - Return maximum rpi
1558 * @dev: class device that is converted into a Scsi_host.
1559 * @attr: device attribute, not used.
1560 * @buf: on return contains the maximum rpi count in decimal or "Unknown".
1561 *
1562 * Description:
1563 * Calls lpfc_get_hba_info() asking for just the mrpi count.
1564 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1565 * to "Unknown" and the buffer length is returned, therefore the caller
1566 * must check for "Unknown" in the buffer to detect a failure.
1567 *
1568 * Returns: size of formatted string.
1569 **/
1570 static ssize_t
1571 lpfc_max_rpi_show(struct device *dev, struct device_attribute *attr,
1572 char *buf)
1573 {
1574 struct Scsi_Host *shost = class_to_shost(dev);
1575 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1576 struct lpfc_hba *phba = vport->phba;
1577 uint32_t cnt;
1578
1579 if (lpfc_get_hba_info(phba, NULL, NULL, &cnt, NULL, NULL, NULL))
1580 return scnprintf(buf, PAGE_SIZE, "%d\n", cnt);
1581 return scnprintf(buf, PAGE_SIZE, "Unknown\n");
1582 }
1583
1584 /**
1585 * lpfc_used_rpi_show - Return maximum rpi minus available rpi
1586 * @dev: class device that is converted into a Scsi_host.
1587 * @attr: device attribute, not used.
1588 * @buf: containing the used rpi count in decimal or "Unknown".
1589 *
1590 * Description:
1591 * Calls lpfc_get_hba_info() asking for just the mrpi and arpi counts.
1592 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1593 * to "Unknown" and the buffer length is returned, therefore the caller
1594 * must check for "Unknown" in the buffer to detect a failure.
1595 *
1596 * Returns: size of formatted string.
1597 **/
1598 static ssize_t
1599 lpfc_used_rpi_show(struct device *dev, struct device_attribute *attr,
1600 char *buf)
1601 {
1602 struct Scsi_Host *shost = class_to_shost(dev);
1603 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1604 struct lpfc_hba *phba = vport->phba;
1605 uint32_t cnt, acnt;
1606
1607 if (lpfc_get_hba_info(phba, NULL, NULL, &cnt, &acnt, NULL, NULL))
1608 return scnprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1609 return scnprintf(buf, PAGE_SIZE, "Unknown\n");
1610 }
1611
1612 /**
1613 * lpfc_max_xri_show - Return maximum xri
1614 * @dev: class device that is converted into a Scsi_host.
1615 * @attr: device attribute, not used.
1616 * @buf: on return contains the maximum xri count in decimal or "Unknown".
1617 *
1618 * Description:
1619 * Calls lpfc_get_hba_info() asking for just the mrpi count.
1620 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1621 * to "Unknown" and the buffer length is returned, therefore the caller
1622 * must check for "Unknown" in the buffer to detect a failure.
1623 *
1624 * Returns: size of formatted string.
1625 **/
1626 static ssize_t
1627 lpfc_max_xri_show(struct device *dev, struct device_attribute *attr,
1628 char *buf)
1629 {
1630 struct Scsi_Host *shost = class_to_shost(dev);
1631 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1632 struct lpfc_hba *phba = vport->phba;
1633 uint32_t cnt;
1634
1635 if (lpfc_get_hba_info(phba, &cnt, NULL, NULL, NULL, NULL, NULL))
1636 return scnprintf(buf, PAGE_SIZE, "%d\n", cnt);
1637 return scnprintf(buf, PAGE_SIZE, "Unknown\n");
1638 }
1639
1640 /**
1641 * lpfc_used_xri_show - Return maximum xpi minus the available xpi
1642 * @dev: class device that is converted into a Scsi_host.
1643 * @attr: device attribute, not used.
1644 * @buf: on return contains the used xri count in decimal or "Unknown".
1645 *
1646 * Description:
1647 * Calls lpfc_get_hba_info() asking for just the mxri and axri counts.
1648 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1649 * to "Unknown" and the buffer length is returned, therefore the caller
1650 * must check for "Unknown" in the buffer to detect a failure.
1651 *
1652 * Returns: size of formatted string.
1653 **/
1654 static ssize_t
1655 lpfc_used_xri_show(struct device *dev, struct device_attribute *attr,
1656 char *buf)
1657 {
1658 struct Scsi_Host *shost = class_to_shost(dev);
1659 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1660 struct lpfc_hba *phba = vport->phba;
1661 uint32_t cnt, acnt;
1662
1663 if (lpfc_get_hba_info(phba, &cnt, &acnt, NULL, NULL, NULL, NULL))
1664 return scnprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1665 return scnprintf(buf, PAGE_SIZE, "Unknown\n");
1666 }
1667
1668 /**
1669 * lpfc_max_vpi_show - Return maximum vpi
1670 * @dev: class device that is converted into a Scsi_host.
1671 * @attr: device attribute, not used.
1672 * @buf: on return contains the maximum vpi count in decimal or "Unknown".
1673 *
1674 * Description:
1675 * Calls lpfc_get_hba_info() asking for just the mvpi count.
1676 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1677 * to "Unknown" and the buffer length is returned, therefore the caller
1678 * must check for "Unknown" in the buffer to detect a failure.
1679 *
1680 * Returns: size of formatted string.
1681 **/
1682 static ssize_t
1683 lpfc_max_vpi_show(struct device *dev, struct device_attribute *attr,
1684 char *buf)
1685 {
1686 struct Scsi_Host *shost = class_to_shost(dev);
1687 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1688 struct lpfc_hba *phba = vport->phba;
1689 uint32_t cnt;
1690
1691 if (lpfc_get_hba_info(phba, NULL, NULL, NULL, NULL, &cnt, NULL))
1692 return scnprintf(buf, PAGE_SIZE, "%d\n", cnt);
1693 return scnprintf(buf, PAGE_SIZE, "Unknown\n");
1694 }
1695
1696 /**
1697 * lpfc_used_vpi_show - Return maximum vpi minus the available vpi
1698 * @dev: class device that is converted into a Scsi_host.
1699 * @attr: device attribute, not used.
1700 * @buf: on return contains the used vpi count in decimal or "Unknown".
1701 *
1702 * Description:
1703 * Calls lpfc_get_hba_info() asking for just the mvpi and avpi counts.
1704 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1705 * to "Unknown" and the buffer length is returned, therefore the caller
1706 * must check for "Unknown" in the buffer to detect a failure.
1707 *
1708 * Returns: size of formatted string.
1709 **/
1710 static ssize_t
1711 lpfc_used_vpi_show(struct device *dev, struct device_attribute *attr,
1712 char *buf)
1713 {
1714 struct Scsi_Host *shost = class_to_shost(dev);
1715 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1716 struct lpfc_hba *phba = vport->phba;
1717 uint32_t cnt, acnt;
1718
1719 if (lpfc_get_hba_info(phba, NULL, NULL, NULL, NULL, &cnt, &acnt))
1720 return scnprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1721 return scnprintf(buf, PAGE_SIZE, "Unknown\n");
1722 }
1723
1724 /**
1725 * lpfc_npiv_info_show - Return text about NPIV support for the adapter
1726 * @dev: class device that is converted into a Scsi_host.
1727 * @attr: device attribute, not used.
1728 * @buf: text that must be interpreted to determine if npiv is supported.
1729 *
1730 * Description:
1731 * Buffer will contain text indicating npiv is not suppoerted on the port,
1732 * the port is an NPIV physical port, or it is an npiv virtual port with
1733 * the id of the vport.
1734 *
1735 * Returns: size of formatted string.
1736 **/
1737 static ssize_t
1738 lpfc_npiv_info_show(struct device *dev, struct device_attribute *attr,
1739 char *buf)
1740 {
1741 struct Scsi_Host *shost = class_to_shost(dev);
1742 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1743 struct lpfc_hba *phba = vport->phba;
1744
1745 if (!(phba->max_vpi))
1746 return scnprintf(buf, PAGE_SIZE, "NPIV Not Supported\n");
1747 if (vport->port_type == LPFC_PHYSICAL_PORT)
1748 return scnprintf(buf, PAGE_SIZE, "NPIV Physical\n");
1749 return scnprintf(buf, PAGE_SIZE, "NPIV Virtual (VPI %d)\n", vport->vpi);
1750 }
1751
1752 /**
1753 * lpfc_poll_show - Return text about poll support for the adapter
1754 * @dev: class device that is converted into a Scsi_host.
1755 * @attr: device attribute, not used.
1756 * @buf: on return contains the cfg_poll in hex.
1757 *
1758 * Notes:
1759 * cfg_poll should be a lpfc_polling_flags type.
1760 *
1761 * Returns: size of formatted string.
1762 **/
1763 static ssize_t
1764 lpfc_poll_show(struct device *dev, struct device_attribute *attr,
1765 char *buf)
1766 {
1767 struct Scsi_Host *shost = class_to_shost(dev);
1768 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1769 struct lpfc_hba *phba = vport->phba;
1770
1771 return scnprintf(buf, PAGE_SIZE, "%#x\n", phba->cfg_poll);
1772 }
1773
1774 /**
1775 * lpfc_poll_store - Set the value of cfg_poll for the adapter
1776 * @dev: class device that is converted into a Scsi_host.
1777 * @attr: device attribute, not used.
1778 * @buf: one or more lpfc_polling_flags values.
1779 * @count: not used.
1780 *
1781 * Notes:
1782 * buf contents converted to integer and checked for a valid value.
1783 *
1784 * Returns:
1785 * -EINVAL if the buffer connot be converted or is out of range
1786 * length of the buf on success
1787 **/
1788 static ssize_t
1789 lpfc_poll_store(struct device *dev, struct device_attribute *attr,
1790 const char *buf, size_t count)
1791 {
1792 struct Scsi_Host *shost = class_to_shost(dev);
1793 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1794 struct lpfc_hba *phba = vport->phba;
1795 uint32_t creg_val;
1796 uint32_t old_val;
1797 int val=0;
1798
1799 if (!isdigit(buf[0]))
1800 return -EINVAL;
1801
1802 if (sscanf(buf, "%i", &val) != 1)
1803 return -EINVAL;
1804
1805 if ((val & 0x3) != val)
1806 return -EINVAL;
1807
1808 if (phba->sli_rev == LPFC_SLI_REV4)
1809 val = 0;
1810
1811 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
1812 "3051 lpfc_poll changed from %d to %d\n",
1813 phba->cfg_poll, val);
1814
1815 spin_lock_irq(&phba->hbalock);
1816
1817 old_val = phba->cfg_poll;
1818
1819 if (val & ENABLE_FCP_RING_POLLING) {
1820 if ((val & DISABLE_FCP_RING_INT) &&
1821 !(old_val & DISABLE_FCP_RING_INT)) {
1822 if (lpfc_readl(phba->HCregaddr, &creg_val)) {
1823 spin_unlock_irq(&phba->hbalock);
1824 return -EINVAL;
1825 }
1826 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
1827 writel(creg_val, phba->HCregaddr);
1828 readl(phba->HCregaddr); /* flush */
1829
1830 lpfc_poll_start_timer(phba);
1831 }
1832 } else if (val != 0x0) {
1833 spin_unlock_irq(&phba->hbalock);
1834 return -EINVAL;
1835 }
1836
1837 if (!(val & DISABLE_FCP_RING_INT) &&
1838 (old_val & DISABLE_FCP_RING_INT))
1839 {
1840 spin_unlock_irq(&phba->hbalock);
1841 del_timer(&phba->fcp_poll_timer);
1842 spin_lock_irq(&phba->hbalock);
1843 if (lpfc_readl(phba->HCregaddr, &creg_val)) {
1844 spin_unlock_irq(&phba->hbalock);
1845 return -EINVAL;
1846 }
1847 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
1848 writel(creg_val, phba->HCregaddr);
1849 readl(phba->HCregaddr); /* flush */
1850 }
1851
1852 phba->cfg_poll = val;
1853
1854 spin_unlock_irq(&phba->hbalock);
1855
1856 return strlen(buf);
1857 }
1858
1859 /**
1860 * lpfc_fips_level_show - Return the current FIPS level for the HBA
1861 * @dev: class unused variable.
1862 * @attr: device attribute, not used.
1863 * @buf: on return contains the module description text.
1864 *
1865 * Returns: size of formatted string.
1866 **/
1867 static ssize_t
1868 lpfc_fips_level_show(struct device *dev, struct device_attribute *attr,
1869 char *buf)
1870 {
1871 struct Scsi_Host *shost = class_to_shost(dev);
1872 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1873 struct lpfc_hba *phba = vport->phba;
1874
1875 return scnprintf(buf, PAGE_SIZE, "%d\n", phba->fips_level);
1876 }
1877
1878 /**
1879 * lpfc_fips_rev_show - Return the FIPS Spec revision for the HBA
1880 * @dev: class unused variable.
1881 * @attr: device attribute, not used.
1882 * @buf: on return contains the module description text.
1883 *
1884 * Returns: size of formatted string.
1885 **/
1886 static ssize_t
1887 lpfc_fips_rev_show(struct device *dev, struct device_attribute *attr,
1888 char *buf)
1889 {
1890 struct Scsi_Host *shost = class_to_shost(dev);
1891 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1892 struct lpfc_hba *phba = vport->phba;
1893
1894 return scnprintf(buf, PAGE_SIZE, "%d\n", phba->fips_spec_rev);
1895 }
1896
1897 /**
1898 * lpfc_dss_show - Return the current state of dss and the configured state
1899 * @dev: class converted to a Scsi_host structure.
1900 * @attr: device attribute, not used.
1901 * @buf: on return contains the formatted text.
1902 *
1903 * Returns: size of formatted string.
1904 **/
1905 static ssize_t
1906 lpfc_dss_show(struct device *dev, struct device_attribute *attr,
1907 char *buf)
1908 {
1909 struct Scsi_Host *shost = class_to_shost(dev);
1910 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1911 struct lpfc_hba *phba = vport->phba;
1912
1913 return scnprintf(buf, PAGE_SIZE, "%s - %sOperational\n",
1914 (phba->cfg_enable_dss) ? "Enabled" : "Disabled",
1915 (phba->sli3_options & LPFC_SLI3_DSS_ENABLED) ?
1916 "" : "Not ");
1917 }
1918
1919 /**
1920 * lpfc_sriov_hw_max_virtfn_show - Return maximum number of virtual functions
1921 * @dev: class converted to a Scsi_host structure.
1922 * @attr: device attribute, not used.
1923 * @buf: on return contains the formatted support level.
1924 *
1925 * Description:
1926 * Returns the maximum number of virtual functions a physical function can
1927 * support, 0 will be returned if called on virtual function.
1928 *
1929 * Returns: size of formatted string.
1930 **/
1931 static ssize_t
1932 lpfc_sriov_hw_max_virtfn_show(struct device *dev,
1933 struct device_attribute *attr,
1934 char *buf)
1935 {
1936 struct Scsi_Host *shost = class_to_shost(dev);
1937 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1938 struct lpfc_hba *phba = vport->phba;
1939 uint16_t max_nr_virtfn;
1940
1941 max_nr_virtfn = lpfc_sli_sriov_nr_virtfn_get(phba);
1942 return scnprintf(buf, PAGE_SIZE, "%d\n", max_nr_virtfn);
1943 }
1944
1945 static inline bool lpfc_rangecheck(uint val, uint min, uint max)
1946 {
1947 return val >= min && val <= max;
1948 }
1949
1950 /**
1951 * lpfc_enable_bbcr_set: Sets an attribute value.
1952 * @phba: pointer the the adapter structure.
1953 * @val: integer attribute value.
1954 *
1955 * Description:
1956 * Validates the min and max values then sets the
1957 * adapter config field if in the valid range. prints error message
1958 * and does not set the parameter if invalid.
1959 *
1960 * Returns:
1961 * zero on success
1962 * -EINVAL if val is invalid
1963 */
1964 static ssize_t
1965 lpfc_enable_bbcr_set(struct lpfc_hba *phba, uint val)
1966 {
1967 if (lpfc_rangecheck(val, 0, 1) && phba->sli_rev == LPFC_SLI_REV4) {
1968 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1969 "3068 %s_enable_bbcr changed from %d to %d\n",
1970 LPFC_DRIVER_NAME, phba->cfg_enable_bbcr, val);
1971 phba->cfg_enable_bbcr = val;
1972 return 0;
1973 }
1974 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1975 "0451 %s_enable_bbcr cannot set to %d, range is 0, 1\n",
1976 LPFC_DRIVER_NAME, val);
1977 return -EINVAL;
1978 }
1979
1980 /**
1981 * lpfc_param_show - Return a cfg attribute value in decimal
1982 *
1983 * Description:
1984 * Macro that given an attr e.g. hba_queue_depth expands
1985 * into a function with the name lpfc_hba_queue_depth_show.
1986 *
1987 * lpfc_##attr##_show: Return the decimal value of an adapters cfg_xxx field.
1988 * @dev: class device that is converted into a Scsi_host.
1989 * @attr: device attribute, not used.
1990 * @buf: on return contains the attribute value in decimal.
1991 *
1992 * Returns: size of formatted string.
1993 **/
1994 #define lpfc_param_show(attr) \
1995 static ssize_t \
1996 lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1997 char *buf) \
1998 { \
1999 struct Scsi_Host *shost = class_to_shost(dev);\
2000 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
2001 struct lpfc_hba *phba = vport->phba;\
2002 return scnprintf(buf, PAGE_SIZE, "%d\n",\
2003 phba->cfg_##attr);\
2004 }
2005
2006 /**
2007 * lpfc_param_hex_show - Return a cfg attribute value in hex
2008 *
2009 * Description:
2010 * Macro that given an attr e.g. hba_queue_depth expands
2011 * into a function with the name lpfc_hba_queue_depth_show
2012 *
2013 * lpfc_##attr##_show: Return the hex value of an adapters cfg_xxx field.
2014 * @dev: class device that is converted into a Scsi_host.
2015 * @attr: device attribute, not used.
2016 * @buf: on return contains the attribute value in hexadecimal.
2017 *
2018 * Returns: size of formatted string.
2019 **/
2020 #define lpfc_param_hex_show(attr) \
2021 static ssize_t \
2022 lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
2023 char *buf) \
2024 { \
2025 struct Scsi_Host *shost = class_to_shost(dev);\
2026 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
2027 struct lpfc_hba *phba = vport->phba;\
2028 uint val = 0;\
2029 val = phba->cfg_##attr;\
2030 return scnprintf(buf, PAGE_SIZE, "%#x\n",\
2031 phba->cfg_##attr);\
2032 }
2033
2034 /**
2035 * lpfc_param_init - Initializes a cfg attribute
2036 *
2037 * Description:
2038 * Macro that given an attr e.g. hba_queue_depth expands
2039 * into a function with the name lpfc_hba_queue_depth_init. The macro also
2040 * takes a default argument, a minimum and maximum argument.
2041 *
2042 * lpfc_##attr##_init: Initializes an attribute.
2043 * @phba: pointer the the adapter structure.
2044 * @val: integer attribute value.
2045 *
2046 * Validates the min and max values then sets the adapter config field
2047 * accordingly, or uses the default if out of range and prints an error message.
2048 *
2049 * Returns:
2050 * zero on success
2051 * -EINVAL if default used
2052 **/
2053 #define lpfc_param_init(attr, default, minval, maxval) \
2054 static int \
2055 lpfc_##attr##_init(struct lpfc_hba *phba, uint val) \
2056 { \
2057 if (lpfc_rangecheck(val, minval, maxval)) {\
2058 phba->cfg_##attr = val;\
2059 return 0;\
2060 }\
2061 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
2062 "0449 lpfc_"#attr" attribute cannot be set to %d, "\
2063 "allowed range is ["#minval", "#maxval"]\n", val); \
2064 phba->cfg_##attr = default;\
2065 return -EINVAL;\
2066 }
2067
2068 /**
2069 * lpfc_param_set - Set a cfg attribute value
2070 *
2071 * Description:
2072 * Macro that given an attr e.g. hba_queue_depth expands
2073 * into a function with the name lpfc_hba_queue_depth_set
2074 *
2075 * lpfc_##attr##_set: Sets an attribute value.
2076 * @phba: pointer the the adapter structure.
2077 * @val: integer attribute value.
2078 *
2079 * Description:
2080 * Validates the min and max values then sets the
2081 * adapter config field if in the valid range. prints error message
2082 * and does not set the parameter if invalid.
2083 *
2084 * Returns:
2085 * zero on success
2086 * -EINVAL if val is invalid
2087 **/
2088 #define lpfc_param_set(attr, default, minval, maxval) \
2089 static int \
2090 lpfc_##attr##_set(struct lpfc_hba *phba, uint val) \
2091 { \
2092 if (lpfc_rangecheck(val, minval, maxval)) {\
2093 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
2094 "3052 lpfc_" #attr " changed from %d to %d\n", \
2095 phba->cfg_##attr, val); \
2096 phba->cfg_##attr = val;\
2097 return 0;\
2098 }\
2099 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
2100 "0450 lpfc_"#attr" attribute cannot be set to %d, "\
2101 "allowed range is ["#minval", "#maxval"]\n", val); \
2102 return -EINVAL;\
2103 }
2104
2105 /**
2106 * lpfc_param_store - Set a vport attribute value
2107 *
2108 * Description:
2109 * Macro that given an attr e.g. hba_queue_depth expands
2110 * into a function with the name lpfc_hba_queue_depth_store.
2111 *
2112 * lpfc_##attr##_store: Set an sttribute value.
2113 * @dev: class device that is converted into a Scsi_host.
2114 * @attr: device attribute, not used.
2115 * @buf: contains the attribute value in ascii.
2116 * @count: not used.
2117 *
2118 * Description:
2119 * Convert the ascii text number to an integer, then
2120 * use the lpfc_##attr##_set function to set the value.
2121 *
2122 * Returns:
2123 * -EINVAL if val is invalid or lpfc_##attr##_set() fails
2124 * length of buffer upon success.
2125 **/
2126 #define lpfc_param_store(attr) \
2127 static ssize_t \
2128 lpfc_##attr##_store(struct device *dev, struct device_attribute *attr, \
2129 const char *buf, size_t count) \
2130 { \
2131 struct Scsi_Host *shost = class_to_shost(dev);\
2132 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
2133 struct lpfc_hba *phba = vport->phba;\
2134 uint val = 0;\
2135 if (!isdigit(buf[0]))\
2136 return -EINVAL;\
2137 if (sscanf(buf, "%i", &val) != 1)\
2138 return -EINVAL;\
2139 if (lpfc_##attr##_set(phba, val) == 0) \
2140 return strlen(buf);\
2141 else \
2142 return -EINVAL;\
2143 }
2144
2145 /**
2146 * lpfc_vport_param_show - Return decimal formatted cfg attribute value
2147 *
2148 * Description:
2149 * Macro that given an attr e.g. hba_queue_depth expands
2150 * into a function with the name lpfc_hba_queue_depth_show
2151 *
2152 * lpfc_##attr##_show: prints the attribute value in decimal.
2153 * @dev: class device that is converted into a Scsi_host.
2154 * @attr: device attribute, not used.
2155 * @buf: on return contains the attribute value in decimal.
2156 *
2157 * Returns: length of formatted string.
2158 **/
2159 #define lpfc_vport_param_show(attr) \
2160 static ssize_t \
2161 lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
2162 char *buf) \
2163 { \
2164 struct Scsi_Host *shost = class_to_shost(dev);\
2165 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
2166 return scnprintf(buf, PAGE_SIZE, "%d\n", vport->cfg_##attr);\
2167 }
2168
2169 /**
2170 * lpfc_vport_param_hex_show - Return hex formatted attribute value
2171 *
2172 * Description:
2173 * Macro that given an attr e.g.
2174 * hba_queue_depth expands into a function with the name
2175 * lpfc_hba_queue_depth_show
2176 *
2177 * lpfc_##attr##_show: prints the attribute value in hexadecimal.
2178 * @dev: class device that is converted into a Scsi_host.
2179 * @attr: device attribute, not used.
2180 * @buf: on return contains the attribute value in hexadecimal.
2181 *
2182 * Returns: length of formatted string.
2183 **/
2184 #define lpfc_vport_param_hex_show(attr) \
2185 static ssize_t \
2186 lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
2187 char *buf) \
2188 { \
2189 struct Scsi_Host *shost = class_to_shost(dev);\
2190 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
2191 return scnprintf(buf, PAGE_SIZE, "%#x\n", vport->cfg_##attr);\
2192 }
2193
2194 /**
2195 * lpfc_vport_param_init - Initialize a vport cfg attribute
2196 *
2197 * Description:
2198 * Macro that given an attr e.g. hba_queue_depth expands
2199 * into a function with the name lpfc_hba_queue_depth_init. The macro also
2200 * takes a default argument, a minimum and maximum argument.
2201 *
2202 * lpfc_##attr##_init: validates the min and max values then sets the
2203 * adapter config field accordingly, or uses the default if out of range
2204 * and prints an error message.
2205 * @phba: pointer the the adapter structure.
2206 * @val: integer attribute value.
2207 *
2208 * Returns:
2209 * zero on success
2210 * -EINVAL if default used
2211 **/
2212 #define lpfc_vport_param_init(attr, default, minval, maxval) \
2213 static int \
2214 lpfc_##attr##_init(struct lpfc_vport *vport, uint val) \
2215 { \
2216 if (lpfc_rangecheck(val, minval, maxval)) {\
2217 vport->cfg_##attr = val;\
2218 return 0;\
2219 }\
2220 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
2221 "0423 lpfc_"#attr" attribute cannot be set to %d, "\
2222 "allowed range is ["#minval", "#maxval"]\n", val); \
2223 vport->cfg_##attr = default;\
2224 return -EINVAL;\
2225 }
2226
2227 /**
2228 * lpfc_vport_param_set - Set a vport cfg attribute
2229 *
2230 * Description:
2231 * Macro that given an attr e.g. hba_queue_depth expands
2232 * into a function with the name lpfc_hba_queue_depth_set
2233 *
2234 * lpfc_##attr##_set: validates the min and max values then sets the
2235 * adapter config field if in the valid range. prints error message
2236 * and does not set the parameter if invalid.
2237 * @phba: pointer the the adapter structure.
2238 * @val: integer attribute value.
2239 *
2240 * Returns:
2241 * zero on success
2242 * -EINVAL if val is invalid
2243 **/
2244 #define lpfc_vport_param_set(attr, default, minval, maxval) \
2245 static int \
2246 lpfc_##attr##_set(struct lpfc_vport *vport, uint val) \
2247 { \
2248 if (lpfc_rangecheck(val, minval, maxval)) {\
2249 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
2250 "3053 lpfc_" #attr \
2251 " changed from %d (x%x) to %d (x%x)\n", \
2252 vport->cfg_##attr, vport->cfg_##attr, \
2253 val, val); \
2254 vport->cfg_##attr = val;\
2255 return 0;\
2256 }\
2257 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
2258 "0424 lpfc_"#attr" attribute cannot be set to %d, "\
2259 "allowed range is ["#minval", "#maxval"]\n", val); \
2260 return -EINVAL;\
2261 }
2262
2263 /**
2264 * lpfc_vport_param_store - Set a vport attribute
2265 *
2266 * Description:
2267 * Macro that given an attr e.g. hba_queue_depth
2268 * expands into a function with the name lpfc_hba_queue_depth_store
2269 *
2270 * lpfc_##attr##_store: convert the ascii text number to an integer, then
2271 * use the lpfc_##attr##_set function to set the value.
2272 * @cdev: class device that is converted into a Scsi_host.
2273 * @buf: contains the attribute value in decimal.
2274 * @count: not used.
2275 *
2276 * Returns:
2277 * -EINVAL if val is invalid or lpfc_##attr##_set() fails
2278 * length of buffer upon success.
2279 **/
2280 #define lpfc_vport_param_store(attr) \
2281 static ssize_t \
2282 lpfc_##attr##_store(struct device *dev, struct device_attribute *attr, \
2283 const char *buf, size_t count) \
2284 { \
2285 struct Scsi_Host *shost = class_to_shost(dev);\
2286 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
2287 uint val = 0;\
2288 if (!isdigit(buf[0]))\
2289 return -EINVAL;\
2290 if (sscanf(buf, "%i", &val) != 1)\
2291 return -EINVAL;\
2292 if (lpfc_##attr##_set(vport, val) == 0) \
2293 return strlen(buf);\
2294 else \
2295 return -EINVAL;\
2296 }
2297
2298
2299 static DEVICE_ATTR(nvme_info, 0444, lpfc_nvme_info_show, NULL);
2300 static DEVICE_ATTR(bg_info, S_IRUGO, lpfc_bg_info_show, NULL);
2301 static DEVICE_ATTR(bg_guard_err, S_IRUGO, lpfc_bg_guard_err_show, NULL);
2302 static DEVICE_ATTR(bg_apptag_err, S_IRUGO, lpfc_bg_apptag_err_show, NULL);
2303 static DEVICE_ATTR(bg_reftag_err, S_IRUGO, lpfc_bg_reftag_err_show, NULL);
2304 static DEVICE_ATTR(info, S_IRUGO, lpfc_info_show, NULL);
2305 static DEVICE_ATTR(serialnum, S_IRUGO, lpfc_serialnum_show, NULL);
2306 static DEVICE_ATTR(modeldesc, S_IRUGO, lpfc_modeldesc_show, NULL);
2307 static DEVICE_ATTR(modelname, S_IRUGO, lpfc_modelname_show, NULL);
2308 static DEVICE_ATTR(programtype, S_IRUGO, lpfc_programtype_show, NULL);
2309 static DEVICE_ATTR(portnum, S_IRUGO, lpfc_vportnum_show, NULL);
2310 static DEVICE_ATTR(fwrev, S_IRUGO, lpfc_fwrev_show, NULL);
2311 static DEVICE_ATTR(hdw, S_IRUGO, lpfc_hdw_show, NULL);
2312 static DEVICE_ATTR(link_state, S_IRUGO | S_IWUSR, lpfc_link_state_show,
2313 lpfc_link_state_store);
2314 static DEVICE_ATTR(option_rom_version, S_IRUGO,
2315 lpfc_option_rom_version_show, NULL);
2316 static DEVICE_ATTR(num_discovered_ports, S_IRUGO,
2317 lpfc_num_discovered_ports_show, NULL);
2318 static DEVICE_ATTR(menlo_mgmt_mode, S_IRUGO, lpfc_mlomgmt_show, NULL);
2319 static DEVICE_ATTR(nport_evt_cnt, S_IRUGO, lpfc_nport_evt_cnt_show, NULL);
2320 static DEVICE_ATTR_RO(lpfc_drvr_version);
2321 static DEVICE_ATTR_RO(lpfc_enable_fip);
2322 static DEVICE_ATTR(board_mode, S_IRUGO | S_IWUSR,
2323 lpfc_board_mode_show, lpfc_board_mode_store);
2324 static DEVICE_ATTR(issue_reset, S_IWUSR, NULL, lpfc_issue_reset);
2325 static DEVICE_ATTR(max_vpi, S_IRUGO, lpfc_max_vpi_show, NULL);
2326 static DEVICE_ATTR(used_vpi, S_IRUGO, lpfc_used_vpi_show, NULL);
2327 static DEVICE_ATTR(max_rpi, S_IRUGO, lpfc_max_rpi_show, NULL);
2328 static DEVICE_ATTR(used_rpi, S_IRUGO, lpfc_used_rpi_show, NULL);
2329 static DEVICE_ATTR(max_xri, S_IRUGO, lpfc_max_xri_show, NULL);
2330 static DEVICE_ATTR(used_xri, S_IRUGO, lpfc_used_xri_show, NULL);
2331 static DEVICE_ATTR(npiv_info, S_IRUGO, lpfc_npiv_info_show, NULL);
2332 static DEVICE_ATTR_RO(lpfc_temp_sensor);
2333 static DEVICE_ATTR_RO(lpfc_fips_level);
2334 static DEVICE_ATTR_RO(lpfc_fips_rev);
2335 static DEVICE_ATTR_RO(lpfc_dss);
2336 static DEVICE_ATTR_RO(lpfc_sriov_hw_max_virtfn);
2337 static DEVICE_ATTR(protocol, S_IRUGO, lpfc_sli4_protocol_show, NULL);
2338 static DEVICE_ATTR(lpfc_xlane_supported, S_IRUGO, lpfc_oas_supported_show,
2339 NULL);
2340
2341 static char *lpfc_soft_wwn_key = "C99G71SL8032A";
2342 #define WWN_SZ 8
2343 /**
2344 * lpfc_wwn_set - Convert string to the 8 byte WWN value.
2345 * @buf: WWN string.
2346 * @cnt: Length of string.
2347 * @wwn: Array to receive converted wwn value.
2348 *
2349 * Returns:
2350 * -EINVAL if the buffer does not contain a valid wwn
2351 * 0 success
2352 **/
2353 static size_t
2354 lpfc_wwn_set(const char *buf, size_t cnt, char wwn[])
2355 {
2356 unsigned int i, j;
2357
2358 /* Count may include a LF at end of string */
2359 if (buf[cnt-1] == '\n')
2360 cnt--;
2361
2362 if ((cnt < 16) || (cnt > 18) || ((cnt == 17) && (*buf++ != 'x')) ||
2363 ((cnt == 18) && ((*buf++ != '0') || (*buf++ != 'x'))))
2364 return -EINVAL;
2365
2366 memset(wwn, 0, WWN_SZ);
2367
2368 /* Validate and store the new name */
2369 for (i = 0, j = 0; i < 16; i++) {
2370 if ((*buf >= 'a') && (*buf <= 'f'))
2371 j = ((j << 4) | ((*buf++ - 'a') + 10));
2372 else if ((*buf >= 'A') && (*buf <= 'F'))
2373 j = ((j << 4) | ((*buf++ - 'A') + 10));
2374 else if ((*buf >= '0') && (*buf <= '9'))
2375 j = ((j << 4) | (*buf++ - '0'));
2376 else
2377 return -EINVAL;
2378 if (i % 2) {
2379 wwn[i/2] = j & 0xff;
2380 j = 0;
2381 }
2382 }
2383 return 0;
2384 }
2385 /**
2386 * lpfc_soft_wwn_enable_store - Allows setting of the wwn if the key is valid
2387 * @dev: class device that is converted into a Scsi_host.
2388 * @attr: device attribute, not used.
2389 * @buf: containing the string lpfc_soft_wwn_key.
2390 * @count: must be size of lpfc_soft_wwn_key.
2391 *
2392 * Returns:
2393 * -EINVAL if the buffer does not contain lpfc_soft_wwn_key
2394 * length of buf indicates success
2395 **/
2396 static ssize_t
2397 lpfc_soft_wwn_enable_store(struct device *dev, struct device_attribute *attr,
2398 const char *buf, size_t count)
2399 {
2400 struct Scsi_Host *shost = class_to_shost(dev);
2401 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2402 struct lpfc_hba *phba = vport->phba;
2403 unsigned int cnt = count;
2404 uint8_t vvvl = vport->fc_sparam.cmn.valid_vendor_ver_level;
2405 u32 *fawwpn_key = (uint32_t *)&vport->fc_sparam.un.vendorVersion[0];
2406
2407 /*
2408 * We're doing a simple sanity check for soft_wwpn setting.
2409 * We require that the user write a specific key to enable
2410 * the soft_wwpn attribute to be settable. Once the attribute
2411 * is written, the enable key resets. If further updates are
2412 * desired, the key must be written again to re-enable the
2413 * attribute.
2414 *
2415 * The "key" is not secret - it is a hardcoded string shown
2416 * here. The intent is to protect against the random user or
2417 * application that is just writing attributes.
2418 */
2419 if (vvvl == 1 && cpu_to_be32(*fawwpn_key) == FAPWWN_KEY_VENDOR) {
2420 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2421 "0051 "LPFC_DRIVER_NAME" soft wwpn can not"
2422 " be enabled: fawwpn is enabled\n");
2423 return -EINVAL;
2424 }
2425
2426 /* count may include a LF at end of string */
2427 if (buf[cnt-1] == '\n')
2428 cnt--;
2429
2430 if ((cnt != strlen(lpfc_soft_wwn_key)) ||
2431 (strncmp(buf, lpfc_soft_wwn_key, strlen(lpfc_soft_wwn_key)) != 0))
2432 return -EINVAL;
2433
2434 phba->soft_wwn_enable = 1;
2435
2436 dev_printk(KERN_WARNING, &phba->pcidev->dev,
2437 "lpfc%d: soft_wwpn assignment has been enabled.\n",
2438 phba->brd_no);
2439 dev_printk(KERN_WARNING, &phba->pcidev->dev,
2440 " The soft_wwpn feature is not supported by Broadcom.");
2441
2442 return count;
2443 }
2444 static DEVICE_ATTR_WO(lpfc_soft_wwn_enable);
2445
2446 /**
2447 * lpfc_soft_wwpn_show - Return the cfg soft ww port name of the adapter
2448 * @dev: class device that is converted into a Scsi_host.
2449 * @attr: device attribute, not used.
2450 * @buf: on return contains the wwpn in hexadecimal.
2451 *
2452 * Returns: size of formatted string.
2453 **/
2454 static ssize_t
2455 lpfc_soft_wwpn_show(struct device *dev, struct device_attribute *attr,
2456 char *buf)
2457 {
2458 struct Scsi_Host *shost = class_to_shost(dev);
2459 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2460 struct lpfc_hba *phba = vport->phba;
2461
2462 return scnprintf(buf, PAGE_SIZE, "0x%llx\n",
2463 (unsigned long long)phba->cfg_soft_wwpn);
2464 }
2465
2466 /**
2467 * lpfc_soft_wwpn_store - Set the ww port name of the adapter
2468 * @dev class device that is converted into a Scsi_host.
2469 * @attr: device attribute, not used.
2470 * @buf: contains the wwpn in hexadecimal.
2471 * @count: number of wwpn bytes in buf
2472 *
2473 * Returns:
2474 * -EACCES hba reset not enabled, adapter over temp
2475 * -EINVAL soft wwn not enabled, count is invalid, invalid wwpn byte invalid
2476 * -EIO error taking adapter offline or online
2477 * value of count on success
2478 **/
2479 static ssize_t
2480 lpfc_soft_wwpn_store(struct device *dev, struct device_attribute *attr,
2481 const char *buf, size_t count)
2482 {
2483 struct Scsi_Host *shost = class_to_shost(dev);
2484 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2485 struct lpfc_hba *phba = vport->phba;
2486 struct completion online_compl;
2487 int stat1 = 0, stat2 = 0;
2488 unsigned int cnt = count;
2489 u8 wwpn[WWN_SZ];
2490 int rc;
2491
2492 if (!phba->cfg_enable_hba_reset)
2493 return -EACCES;
2494 spin_lock_irq(&phba->hbalock);
2495 if (phba->over_temp_state == HBA_OVER_TEMP) {
2496 spin_unlock_irq(&phba->hbalock);
2497 return -EACCES;
2498 }
2499 spin_unlock_irq(&phba->hbalock);
2500 /* count may include a LF at end of string */
2501 if (buf[cnt-1] == '\n')
2502 cnt--;
2503
2504 if (!phba->soft_wwn_enable)
2505 return -EINVAL;
2506
2507 /* lock setting wwpn, wwnn down */
2508 phba->soft_wwn_enable = 0;
2509
2510 rc = lpfc_wwn_set(buf, cnt, wwpn);
2511 if (rc) {
2512 /* not able to set wwpn, unlock it */
2513 phba->soft_wwn_enable = 1;
2514 return rc;
2515 }
2516
2517 phba->cfg_soft_wwpn = wwn_to_u64(wwpn);
2518 fc_host_port_name(shost) = phba->cfg_soft_wwpn;
2519 if (phba->cfg_soft_wwnn)
2520 fc_host_node_name(shost) = phba->cfg_soft_wwnn;
2521
2522 dev_printk(KERN_NOTICE, &phba->pcidev->dev,
2523 "lpfc%d: Reinitializing to use soft_wwpn\n", phba->brd_no);
2524
2525 stat1 = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
2526 if (stat1)
2527 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2528 "0463 lpfc_soft_wwpn attribute set failed to "
2529 "reinit adapter - %d\n", stat1);
2530 init_completion(&online_compl);
2531 rc = lpfc_workq_post_event(phba, &stat2, &online_compl,
2532 LPFC_EVT_ONLINE);
2533 if (rc == 0)
2534 return -ENOMEM;
2535
2536 wait_for_completion(&online_compl);
2537 if (stat2)
2538 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2539 "0464 lpfc_soft_wwpn attribute set failed to "
2540 "reinit adapter - %d\n", stat2);
2541 return (stat1 || stat2) ? -EIO : count;
2542 }
2543 static DEVICE_ATTR_RW(lpfc_soft_wwpn);
2544
2545 /**
2546 * lpfc_soft_wwnn_show - Return the cfg soft ww node name for the adapter
2547 * @dev: class device that is converted into a Scsi_host.
2548 * @attr: device attribute, not used.
2549 * @buf: on return contains the wwnn in hexadecimal.
2550 *
2551 * Returns: size of formatted string.
2552 **/
2553 static ssize_t
2554 lpfc_soft_wwnn_show(struct device *dev, struct device_attribute *attr,
2555 char *buf)
2556 {
2557 struct Scsi_Host *shost = class_to_shost(dev);
2558 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2559 return scnprintf(buf, PAGE_SIZE, "0x%llx\n",
2560 (unsigned long long)phba->cfg_soft_wwnn);
2561 }
2562
2563 /**
2564 * lpfc_soft_wwnn_store - sets the ww node name of the adapter
2565 * @cdev: class device that is converted into a Scsi_host.
2566 * @buf: contains the ww node name in hexadecimal.
2567 * @count: number of wwnn bytes in buf.
2568 *
2569 * Returns:
2570 * -EINVAL soft wwn not enabled, count is invalid, invalid wwnn byte invalid
2571 * value of count on success
2572 **/
2573 static ssize_t
2574 lpfc_soft_wwnn_store(struct device *dev, struct device_attribute *attr,
2575 const char *buf, size_t count)
2576 {
2577 struct Scsi_Host *shost = class_to_shost(dev);
2578 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2579 unsigned int cnt = count;
2580 u8 wwnn[WWN_SZ];
2581 int rc;
2582
2583 /* count may include a LF at end of string */
2584 if (buf[cnt-1] == '\n')
2585 cnt--;
2586
2587 if (!phba->soft_wwn_enable)
2588 return -EINVAL;
2589
2590 rc = lpfc_wwn_set(buf, cnt, wwnn);
2591 if (rc) {
2592 /* Allow wwnn to be set many times, as long as the enable
2593 * is set. However, once the wwpn is set, everything locks.
2594 */
2595 return rc;
2596 }
2597
2598 phba->cfg_soft_wwnn = wwn_to_u64(wwnn);
2599
2600 dev_printk(KERN_NOTICE, &phba->pcidev->dev,
2601 "lpfc%d: soft_wwnn set. Value will take effect upon "
2602 "setting of the soft_wwpn\n", phba->brd_no);
2603
2604 return count;
2605 }
2606 static DEVICE_ATTR_RW(lpfc_soft_wwnn);
2607
2608 /**
2609 * lpfc_oas_tgt_show - Return wwpn of target whose luns maybe enabled for
2610 * Optimized Access Storage (OAS) operations.
2611 * @dev: class device that is converted into a Scsi_host.
2612 * @attr: device attribute, not used.
2613 * @buf: buffer for passing information.
2614 *
2615 * Returns:
2616 * value of count
2617 **/
2618 static ssize_t
2619 lpfc_oas_tgt_show(struct device *dev, struct device_attribute *attr,
2620 char *buf)
2621 {
2622 struct Scsi_Host *shost = class_to_shost(dev);
2623 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2624
2625 return scnprintf(buf, PAGE_SIZE, "0x%llx\n",
2626 wwn_to_u64(phba->cfg_oas_tgt_wwpn));
2627 }
2628
2629 /**
2630 * lpfc_oas_tgt_store - Store wwpn of target whose luns maybe enabled for
2631 * Optimized Access Storage (OAS) operations.
2632 * @dev: class device that is converted into a Scsi_host.
2633 * @attr: device attribute, not used.
2634 * @buf: buffer for passing information.
2635 * @count: Size of the data buffer.
2636 *
2637 * Returns:
2638 * -EINVAL count is invalid, invalid wwpn byte invalid
2639 * -EPERM oas is not supported by hba
2640 * value of count on success
2641 **/
2642 static ssize_t
2643 lpfc_oas_tgt_store(struct device *dev, struct device_attribute *attr,
2644 const char *buf, size_t count)
2645 {
2646 struct Scsi_Host *shost = class_to_shost(dev);
2647 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2648 unsigned int cnt = count;
2649 uint8_t wwpn[WWN_SZ];
2650 int rc;
2651
2652 if (!phba->cfg_fof)
2653 return -EPERM;
2654
2655 /* count may include a LF at end of string */
2656 if (buf[cnt-1] == '\n')
2657 cnt--;
2658
2659 rc = lpfc_wwn_set(buf, cnt, wwpn);
2660 if (rc)
2661 return rc;
2662
2663 memcpy(phba->cfg_oas_tgt_wwpn, wwpn, (8 * sizeof(uint8_t)));
2664 memcpy(phba->sli4_hba.oas_next_tgt_wwpn, wwpn, (8 * sizeof(uint8_t)));
2665 if (wwn_to_u64(wwpn) == 0)
2666 phba->cfg_oas_flags |= OAS_FIND_ANY_TARGET;
2667 else
2668 phba->cfg_oas_flags &= ~OAS_FIND_ANY_TARGET;
2669 phba->cfg_oas_flags &= ~OAS_LUN_VALID;
2670 phba->sli4_hba.oas_next_lun = FIND_FIRST_OAS_LUN;
2671 return count;
2672 }
2673 static DEVICE_ATTR(lpfc_xlane_tgt, S_IRUGO | S_IWUSR,
2674 lpfc_oas_tgt_show, lpfc_oas_tgt_store);
2675
2676 /**
2677 * lpfc_oas_priority_show - Return wwpn of target whose luns maybe enabled for
2678 * Optimized Access Storage (OAS) operations.
2679 * @dev: class device that is converted into a Scsi_host.
2680 * @attr: device attribute, not used.
2681 * @buf: buffer for passing information.
2682 *
2683 * Returns:
2684 * value of count
2685 **/
2686 static ssize_t
2687 lpfc_oas_priority_show(struct device *dev, struct device_attribute *attr,
2688 char *buf)
2689 {
2690 struct Scsi_Host *shost = class_to_shost(dev);
2691 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2692
2693 return scnprintf(buf, PAGE_SIZE, "%d\n", phba->cfg_oas_priority);
2694 }
2695
2696 /**
2697 * lpfc_oas_priority_store - Store wwpn of target whose luns maybe enabled for
2698 * Optimized Access Storage (OAS) operations.
2699 * @dev: class device that is converted into a Scsi_host.
2700 * @attr: device attribute, not used.
2701 * @buf: buffer for passing information.
2702 * @count: Size of the data buffer.
2703 *
2704 * Returns:
2705 * -EINVAL count is invalid, invalid wwpn byte invalid
2706 * -EPERM oas is not supported by hba
2707 * value of count on success
2708 **/
2709 static ssize_t
2710 lpfc_oas_priority_store(struct device *dev, struct device_attribute *attr,
2711 const char *buf, size_t count)
2712 {
2713 struct Scsi_Host *shost = class_to_shost(dev);
2714 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2715 unsigned int cnt = count;
2716 unsigned long val;
2717 int ret;
2718
2719 if (!phba->cfg_fof)
2720 return -EPERM;
2721
2722 /* count may include a LF at end of string */
2723 if (buf[cnt-1] == '\n')
2724 cnt--;
2725
2726 ret = kstrtoul(buf, 0, &val);
2727 if (ret || (val > 0x7f))
2728 return -EINVAL;
2729
2730 if (val)
2731 phba->cfg_oas_priority = (uint8_t)val;
2732 else
2733 phba->cfg_oas_priority = phba->cfg_XLanePriority;
2734 return count;
2735 }
2736 static DEVICE_ATTR(lpfc_xlane_priority, S_IRUGO | S_IWUSR,
2737 lpfc_oas_priority_show, lpfc_oas_priority_store);
2738
2739 /**
2740 * lpfc_oas_vpt_show - Return wwpn of vport whose targets maybe enabled
2741 * for Optimized Access Storage (OAS) operations.
2742 * @dev: class device that is converted into a Scsi_host.
2743 * @attr: device attribute, not used.
2744 * @buf: buffer for passing information.
2745 *
2746 * Returns:
2747 * value of count on success
2748 **/
2749 static ssize_t
2750 lpfc_oas_vpt_show(struct device *dev, struct device_attribute *attr,
2751 char *buf)
2752 {
2753 struct Scsi_Host *shost = class_to_shost(dev);
2754 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2755
2756 return scnprintf(buf, PAGE_SIZE, "0x%llx\n",
2757 wwn_to_u64(phba->cfg_oas_vpt_wwpn));
2758 }
2759
2760 /**
2761 * lpfc_oas_vpt_store - Store wwpn of vport whose targets maybe enabled
2762 * for Optimized Access Storage (OAS) operations.
2763 * @dev: class device that is converted into a Scsi_host.
2764 * @attr: device attribute, not used.
2765 * @buf: buffer for passing information.
2766 * @count: Size of the data buffer.
2767 *
2768 * Returns:
2769 * -EINVAL count is invalid, invalid wwpn byte invalid
2770 * -EPERM oas is not supported by hba
2771 * value of count on success
2772 **/
2773 static ssize_t
2774 lpfc_oas_vpt_store(struct device *dev, struct device_attribute *attr,
2775 const char *buf, size_t count)
2776 {
2777 struct Scsi_Host *shost = class_to_shost(dev);
2778 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2779 unsigned int cnt = count;
2780 uint8_t wwpn[WWN_SZ];
2781 int rc;
2782
2783 if (!phba->cfg_fof)
2784 return -EPERM;
2785
2786 /* count may include a LF at end of string */
2787 if (buf[cnt-1] == '\n')
2788 cnt--;
2789
2790 rc = lpfc_wwn_set(buf, cnt, wwpn);
2791 if (rc)
2792 return rc;
2793
2794 memcpy(phba->cfg_oas_vpt_wwpn, wwpn, (8 * sizeof(uint8_t)));
2795 memcpy(phba->sli4_hba.oas_next_vpt_wwpn, wwpn, (8 * sizeof(uint8_t)));
2796 if (wwn_to_u64(wwpn) == 0)
2797 phba->cfg_oas_flags |= OAS_FIND_ANY_VPORT;
2798 else
2799 phba->cfg_oas_flags &= ~OAS_FIND_ANY_VPORT;
2800 phba->cfg_oas_flags &= ~OAS_LUN_VALID;
2801 if (phba->cfg_oas_priority == 0)
2802 phba->cfg_oas_priority = phba->cfg_XLanePriority;
2803 phba->sli4_hba.oas_next_lun = FIND_FIRST_OAS_LUN;
2804 return count;
2805 }
2806 static DEVICE_ATTR(lpfc_xlane_vpt, S_IRUGO | S_IWUSR,
2807 lpfc_oas_vpt_show, lpfc_oas_vpt_store);
2808
2809 /**
2810 * lpfc_oas_lun_state_show - Return the current state (enabled or disabled)
2811 * of whether luns will be enabled or disabled
2812 * for Optimized Access Storage (OAS) operations.
2813 * @dev: class device that is converted into a Scsi_host.
2814 * @attr: device attribute, not used.
2815 * @buf: buffer for passing information.
2816 *
2817 * Returns:
2818 * size of formatted string.
2819 **/
2820 static ssize_t
2821 lpfc_oas_lun_state_show(struct device *dev, struct device_attribute *attr,
2822 char *buf)
2823 {
2824 struct Scsi_Host *shost = class_to_shost(dev);
2825 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2826
2827 return scnprintf(buf, PAGE_SIZE, "%d\n", phba->cfg_oas_lun_state);
2828 }
2829
2830 /**
2831 * lpfc_oas_lun_state_store - Store the state (enabled or disabled)
2832 * of whether luns will be enabled or disabled
2833 * for Optimized Access Storage (OAS) operations.
2834 * @dev: class device that is converted into a Scsi_host.
2835 * @attr: device attribute, not used.
2836 * @buf: buffer for passing information.
2837 * @count: Size of the data buffer.
2838 *
2839 * Returns:
2840 * -EINVAL count is invalid, invalid wwpn byte invalid
2841 * -EPERM oas is not supported by hba
2842 * value of count on success
2843 **/
2844 static ssize_t
2845 lpfc_oas_lun_state_store(struct device *dev, struct device_attribute *attr,
2846 const char *buf, size_t count)
2847 {
2848 struct Scsi_Host *shost = class_to_shost(dev);
2849 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2850 int val = 0;
2851
2852 if (!phba->cfg_fof)
2853 return -EPERM;
2854
2855 if (!isdigit(buf[0]))
2856 return -EINVAL;
2857
2858 if (sscanf(buf, "%i", &val) != 1)
2859 return -EINVAL;
2860
2861 if ((val != 0) && (val != 1))
2862 return -EINVAL;
2863
2864 phba->cfg_oas_lun_state = val;
2865 return strlen(buf);
2866 }
2867 static DEVICE_ATTR(lpfc_xlane_lun_state, S_IRUGO | S_IWUSR,
2868 lpfc_oas_lun_state_show, lpfc_oas_lun_state_store);
2869
2870 /**
2871 * lpfc_oas_lun_status_show - Return the status of the Optimized Access
2872 * Storage (OAS) lun returned by the
2873 * lpfc_oas_lun_show function.
2874 * @dev: class device that is converted into a Scsi_host.
2875 * @attr: device attribute, not used.
2876 * @buf: buffer for passing information.
2877 *
2878 * Returns:
2879 * size of formatted string.
2880 **/
2881 static ssize_t
2882 lpfc_oas_lun_status_show(struct device *dev, struct device_attribute *attr,
2883 char *buf)
2884 {
2885 struct Scsi_Host *shost = class_to_shost(dev);
2886 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
2887
2888 if (!(phba->cfg_oas_flags & OAS_LUN_VALID))
2889 return -EFAULT;
2890
2891 return scnprintf(buf, PAGE_SIZE, "%d\n", phba->cfg_oas_lun_status);
2892 }
2893 static DEVICE_ATTR(lpfc_xlane_lun_status, S_IRUGO,
2894 lpfc_oas_lun_status_show, NULL);
2895
2896
2897 /**
2898 * lpfc_oas_lun_state_set - enable or disable a lun for Optimized Access Storage
2899 * (OAS) operations.
2900 * @phba: lpfc_hba pointer.
2901 * @ndlp: pointer to fcp target node.
2902 * @lun: the fc lun for setting oas state.
2903 * @oas_state: the oas state to be set to the lun.
2904 *
2905 * Returns:
2906 * SUCCESS : 0
2907 * -EPERM OAS is not enabled or not supported by this port.
2908 *
2909 */
2910 static size_t
2911 lpfc_oas_lun_state_set(struct lpfc_hba *phba, uint8_t vpt_wwpn[],
2912 uint8_t tgt_wwpn[], uint64_t lun,
2913 uint32_t oas_state, uint8_t pri)
2914 {
2915
2916 int rc = 0;
2917
2918 if (!phba->cfg_fof)
2919 return -EPERM;
2920
2921 if (oas_state) {
2922 if (!lpfc_enable_oas_lun(phba, (struct lpfc_name *)vpt_wwpn,
2923 (struct lpfc_name *)tgt_wwpn,
2924 lun, pri))
2925 rc = -ENOMEM;
2926 } else {
2927 lpfc_disable_oas_lun(phba, (struct lpfc_name *)vpt_wwpn,
2928 (struct lpfc_name *)tgt_wwpn, lun, pri);
2929 }
2930 return rc;
2931
2932 }
2933
2934 /**
2935 * lpfc_oas_lun_get_next - get the next lun that has been enabled for Optimized
2936 * Access Storage (OAS) operations.
2937 * @phba: lpfc_hba pointer.
2938 * @vpt_wwpn: wwpn of the vport associated with the returned lun
2939 * @tgt_wwpn: wwpn of the target associated with the returned lun
2940 * @lun_status: status of the lun returned lun
2941 *
2942 * Returns the first or next lun enabled for OAS operations for the vport/target
2943 * specified. If a lun is found, its vport wwpn, target wwpn and status is
2944 * returned. If the lun is not found, NOT_OAS_ENABLED_LUN is returned.
2945 *
2946 * Return:
2947 * lun that is OAS enabled for the vport/target
2948 * NOT_OAS_ENABLED_LUN when no oas enabled lun found.
2949 */
2950 static uint64_t
2951 lpfc_oas_lun_get_next(struct lpfc_hba *phba, uint8_t vpt_wwpn[],
2952 uint8_t tgt_wwpn[], uint32_t *lun_status,
2953 uint32_t *lun_pri)
2954 {
2955 uint64_t found_lun;
2956
2957 if (unlikely(!phba) || !vpt_wwpn || !tgt_wwpn)
2958 return NOT_OAS_ENABLED_LUN;
2959 if (lpfc_find_next_oas_lun(phba, (struct lpfc_name *)
2960 phba->sli4_hba.oas_next_vpt_wwpn,
2961 (struct lpfc_name *)
2962 phba->sli4_hba.oas_next_tgt_wwpn,
2963 &phba->sli4_hba.oas_next_lun,
2964 (struct lpfc_name *)vpt_wwpn,
2965 (struct lpfc_name *)tgt_wwpn,
2966 &found_lun, lun_status, lun_pri))
2967 return found_lun;
2968 else
2969 return NOT_OAS_ENABLED_LUN;
2970 }
2971
2972 /**
2973 * lpfc_oas_lun_state_change - enable/disable a lun for OAS operations
2974 * @phba: lpfc_hba pointer.
2975 * @vpt_wwpn: vport wwpn by reference.
2976 * @tgt_wwpn: target wwpn by reference.
2977 * @lun: the fc lun for setting oas state.
2978 * @oas_state: the oas state to be set to the oas_lun.
2979 *
2980 * This routine enables (OAS_LUN_ENABLE) or disables (OAS_LUN_DISABLE)
2981 * a lun for OAS operations.
2982 *
2983 * Return:
2984 * SUCCESS: 0
2985 * -ENOMEM: failed to enable an lun for OAS operations
2986 * -EPERM: OAS is not enabled
2987 */
2988 static ssize_t
2989 lpfc_oas_lun_state_change(struct lpfc_hba *phba, uint8_t vpt_wwpn[],
2990 uint8_t tgt_wwpn[], uint64_t lun,
2991 uint32_t oas_state, uint8_t pri)
2992 {
2993
2994 int rc;
2995
2996 rc = lpfc_oas_lun_state_set(phba, vpt_wwpn, tgt_wwpn, lun,
2997 oas_state, pri);
2998 return rc;
2999 }
3000
3001 /**
3002 * lpfc_oas_lun_show - Return oas enabled luns from a chosen target
3003 * @dev: class device that is converted into a Scsi_host.
3004 * @attr: device attribute, not used.
3005 * @buf: buffer for passing information.
3006 *
3007 * This routine returns a lun enabled for OAS each time the function
3008 * is called.
3009 *
3010 * Returns:
3011 * SUCCESS: size of formatted string.
3012 * -EFAULT: target or vport wwpn was not set properly.
3013 * -EPERM: oas is not enabled.
3014 **/
3015 static ssize_t
3016 lpfc_oas_lun_show(struct device *dev, struct device_attribute *attr,
3017 char *buf)
3018 {
3019 struct Scsi_Host *shost = class_to_shost(dev);
3020 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
3021
3022 uint64_t oas_lun;
3023 int len = 0;
3024
3025 if (!phba->cfg_fof)
3026 return -EPERM;
3027
3028 if (wwn_to_u64(phba->cfg_oas_vpt_wwpn) == 0)
3029 if (!(phba->cfg_oas_flags & OAS_FIND_ANY_VPORT))
3030 return -EFAULT;
3031
3032 if (wwn_to_u64(phba->cfg_oas_tgt_wwpn) == 0)
3033 if (!(phba->cfg_oas_flags & OAS_FIND_ANY_TARGET))
3034 return -EFAULT;
3035
3036 oas_lun = lpfc_oas_lun_get_next(phba, phba->cfg_oas_vpt_wwpn,
3037 phba->cfg_oas_tgt_wwpn,
3038 &phba->cfg_oas_lun_status,
3039 &phba->cfg_oas_priority);
3040 if (oas_lun != NOT_OAS_ENABLED_LUN)
3041 phba->cfg_oas_flags |= OAS_LUN_VALID;
3042
3043 len += scnprintf(buf + len, PAGE_SIZE-len, "0x%llx", oas_lun);
3044
3045 return len;
3046 }
3047
3048 /**
3049 * lpfc_oas_lun_store - Sets the OAS state for lun
3050 * @dev: class device that is converted into a Scsi_host.
3051 * @attr: device attribute, not used.
3052 * @buf: buffer for passing information.
3053 *
3054 * This function sets the OAS state for lun. Before this function is called,
3055 * the vport wwpn, target wwpn, and oas state need to be set.
3056 *
3057 * Returns:
3058 * SUCCESS: size of formatted string.
3059 * -EFAULT: target or vport wwpn was not set properly.
3060 * -EPERM: oas is not enabled.
3061 * size of formatted string.
3062 **/
3063 static ssize_t
3064 lpfc_oas_lun_store(struct device *dev, struct device_attribute *attr,
3065 const char *buf, size_t count)
3066 {
3067 struct Scsi_Host *shost = class_to_shost(dev);
3068 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
3069 uint64_t scsi_lun;
3070 uint32_t pri;
3071 ssize_t rc;
3072
3073 if (!phba->cfg_fof)
3074 return -EPERM;
3075
3076 if (wwn_to_u64(phba->cfg_oas_vpt_wwpn) == 0)
3077 return -EFAULT;
3078
3079 if (wwn_to_u64(phba->cfg_oas_tgt_wwpn) == 0)
3080 return -EFAULT;
3081
3082 if (!isdigit(buf[0]))
3083 return -EINVAL;
3084
3085 if (sscanf(buf, "0x%llx", &scsi_lun) != 1)
3086 return -EINVAL;
3087
3088 pri = phba->cfg_oas_priority;
3089 if (pri == 0)
3090 pri = phba->cfg_XLanePriority;
3091
3092 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3093 "3372 Try to set vport 0x%llx target 0x%llx lun:0x%llx "
3094 "priority 0x%x with oas state %d\n",
3095 wwn_to_u64(phba->cfg_oas_vpt_wwpn),
3096 wwn_to_u64(phba->cfg_oas_tgt_wwpn), scsi_lun,
3097 pri, phba->cfg_oas_lun_state);
3098
3099 rc = lpfc_oas_lun_state_change(phba, phba->cfg_oas_vpt_wwpn,
3100 phba->cfg_oas_tgt_wwpn, scsi_lun,
3101 phba->cfg_oas_lun_state, pri);
3102 if (rc)
3103 return rc;
3104
3105 return count;
3106 }
3107 static DEVICE_ATTR(lpfc_xlane_lun, S_IRUGO | S_IWUSR,
3108 lpfc_oas_lun_show, lpfc_oas_lun_store);
3109
3110 int lpfc_enable_nvmet_cnt;
3111 unsigned long long lpfc_enable_nvmet[LPFC_NVMET_MAX_PORTS] = {
3112 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3113 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
3114 module_param_array(lpfc_enable_nvmet, ullong, &lpfc_enable_nvmet_cnt, 0444);
3115 MODULE_PARM_DESC(lpfc_enable_nvmet, "Enable HBA port(s) WWPN as a NVME Target");
3116
3117 static int lpfc_poll = 0;
3118 module_param(lpfc_poll, int, S_IRUGO);
3119 MODULE_PARM_DESC(lpfc_poll, "FCP ring polling mode control:"
3120 " 0 - none,"
3121 " 1 - poll with interrupts enabled"
3122 " 3 - poll and disable FCP ring interrupts");
3123
3124 static DEVICE_ATTR_RW(lpfc_poll);
3125
3126 int lpfc_no_hba_reset_cnt;
3127 unsigned long lpfc_no_hba_reset[MAX_HBAS_NO_RESET] = {
3128 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
3129 module_param_array(lpfc_no_hba_reset, ulong, &lpfc_no_hba_reset_cnt, 0444);
3130 MODULE_PARM_DESC(lpfc_no_hba_reset, "WWPN of HBAs that should not be reset");
3131
3132 LPFC_ATTR(sli_mode, 0, 0, 3,
3133 "SLI mode selector:"
3134 " 0 - auto (SLI-3 if supported),"
3135 " 2 - select SLI-2 even on SLI-3 capable HBAs,"
3136 " 3 - select SLI-3");
3137
3138 LPFC_ATTR_R(enable_npiv, 1, 0, 1,
3139 "Enable NPIV functionality");
3140
3141 LPFC_ATTR_R(fcf_failover_policy, 1, 1, 2,
3142 "FCF Fast failover=1 Priority failover=2");
3143
3144 /*
3145 # lpfc_enable_rrq: Track XRI/OXID reuse after IO failures
3146 # 0x0 = disabled, XRI/OXID use not tracked.
3147 # 0x1 = XRI/OXID reuse is timed with ratov, RRQ sent.
3148 # 0x2 = XRI/OXID reuse is timed with ratov, No RRQ sent.
3149 */
3150 LPFC_ATTR_R(enable_rrq, 2, 0, 2,
3151 "Enable RRQ functionality");
3152
3153 /*
3154 # lpfc_suppress_link_up: Bring link up at initialization
3155 # 0x0 = bring link up (issue MBX_INIT_LINK)
3156 # 0x1 = do NOT bring link up at initialization(MBX_INIT_LINK)
3157 # 0x2 = never bring up link
3158 # Default value is 0.
3159 */
3160 LPFC_ATTR_R(suppress_link_up, LPFC_INITIALIZE_LINK, LPFC_INITIALIZE_LINK,
3161 LPFC_DELAY_INIT_LINK_INDEFINITELY,
3162 "Suppress Link Up at initialization");
3163 /*
3164 # lpfc_cnt: Number of IOCBs allocated for ELS, CT, and ABTS
3165 # 1 - (1024)
3166 # 2 - (2048)
3167 # 3 - (3072)
3168 # 4 - (4096)
3169 # 5 - (5120)
3170 */
3171 static ssize_t
3172 lpfc_iocb_hw_show(struct device *dev, struct device_attribute *attr, char *buf)
3173 {
3174 struct Scsi_Host *shost = class_to_shost(dev);
3175 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
3176
3177 return scnprintf(buf, PAGE_SIZE, "%d\n", phba->iocb_max);
3178 }
3179
3180 static DEVICE_ATTR(iocb_hw, S_IRUGO,
3181 lpfc_iocb_hw_show, NULL);
3182 static ssize_t
3183 lpfc_txq_hw_show(struct device *dev, struct device_attribute *attr, char *buf)
3184 {
3185 struct Scsi_Host *shost = class_to_shost(dev);
3186 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
3187 struct lpfc_sli_ring *pring = lpfc_phba_elsring(phba);
3188
3189 return scnprintf(buf, PAGE_SIZE, "%d\n",
3190 pring ? pring->txq_max : 0);
3191 }
3192
3193 static DEVICE_ATTR(txq_hw, S_IRUGO,
3194 lpfc_txq_hw_show, NULL);
3195 static ssize_t
3196 lpfc_txcmplq_hw_show(struct device *dev, struct device_attribute *attr,
3197 char *buf)
3198 {
3199 struct Scsi_Host *shost = class_to_shost(dev);
3200 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
3201 struct lpfc_sli_ring *pring = lpfc_phba_elsring(phba);
3202
3203 return scnprintf(buf, PAGE_SIZE, "%d\n",
3204 pring ? pring->txcmplq_max : 0);
3205 }
3206
3207 static DEVICE_ATTR(txcmplq_hw, S_IRUGO,
3208 lpfc_txcmplq_hw_show, NULL);
3209
3210 LPFC_ATTR_R(iocb_cnt, 2, 1, 5,
3211 "Number of IOCBs alloc for ELS, CT, and ABTS: 1k to 5k IOCBs");
3212
3213 /*
3214 # lpfc_nodev_tmo: If set, it will hold all I/O errors on devices that disappear
3215 # until the timer expires. Value range is [0,255]. Default value is 30.
3216 */
3217 static int lpfc_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
3218 static int lpfc_devloss_tmo = LPFC_DEF_DEVLOSS_TMO;
3219 module_param(lpfc_nodev_tmo, int, 0);
3220 MODULE_PARM_DESC(lpfc_nodev_tmo,
3221 "Seconds driver will hold I/O waiting "
3222 "for a device to come back");
3223
3224 /**
3225 * lpfc_nodev_tmo_show - Return the hba dev loss timeout value
3226 * @dev: class converted to a Scsi_host structure.
3227 * @attr: device attribute, not used.
3228 * @buf: on return contains the dev loss timeout in decimal.
3229 *
3230 * Returns: size of formatted string.
3231 **/
3232 static ssize_t
3233 lpfc_nodev_tmo_show(struct device *dev, struct device_attribute *attr,
3234 char *buf)
3235 {
3236 struct Scsi_Host *shost = class_to_shost(dev);
3237 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3238
3239 return scnprintf(buf, PAGE_SIZE, "%d\n", vport->cfg_devloss_tmo);
3240 }
3241
3242 /**
3243 * lpfc_nodev_tmo_init - Set the hba nodev timeout value
3244 * @vport: lpfc vport structure pointer.
3245 * @val: contains the nodev timeout value.
3246 *
3247 * Description:
3248 * If the devloss tmo is already set then nodev tmo is set to devloss tmo,
3249 * a kernel error message is printed and zero is returned.
3250 * Else if val is in range then nodev tmo and devloss tmo are set to val.
3251 * Otherwise nodev tmo is set to the default value.
3252 *
3253 * Returns:
3254 * zero if already set or if val is in range
3255 * -EINVAL val out of range
3256 **/
3257 static int
3258 lpfc_nodev_tmo_init(struct lpfc_vport *vport, int val)
3259 {
3260 if (vport->cfg_devloss_tmo != LPFC_DEF_DEVLOSS_TMO) {
3261 vport->cfg_nodev_tmo = vport->cfg_devloss_tmo;
3262 if (val != LPFC_DEF_DEVLOSS_TMO)
3263 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3264 "0407 Ignoring lpfc_nodev_tmo module "
3265 "parameter because lpfc_devloss_tmo "
3266 "is set.\n");
3267 return 0;
3268 }
3269
3270 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
3271 vport->cfg_nodev_tmo = val;
3272 vport->cfg_devloss_tmo = val;
3273 return 0;
3274 }
3275 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3276 "0400 lpfc_nodev_tmo attribute cannot be set to"
3277 " %d, allowed range is [%d, %d]\n",
3278 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
3279 vport->cfg_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
3280 return -EINVAL;
3281 }
3282
3283 /**
3284 * lpfc_update_rport_devloss_tmo - Update dev loss tmo value
3285 * @vport: lpfc vport structure pointer.
3286 *
3287 * Description:
3288 * Update all the ndlp's dev loss tmo with the vport devloss tmo value.
3289 **/
3290 static void
3291 lpfc_update_rport_devloss_tmo(struct lpfc_vport *vport)
3292 {
3293 struct Scsi_Host *shost;
3294 struct lpfc_nodelist *ndlp;
3295
3296 shost = lpfc_shost_from_vport(vport);
3297 spin_lock_irq(shost->host_lock);
3298 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
3299 if (!NLP_CHK_NODE_ACT(ndlp))
3300 continue;
3301 if (ndlp->rport)
3302 ndlp->rport->dev_loss_tmo = vport->cfg_devloss_tmo;
3303 #if (IS_ENABLED(CONFIG_NVME_FC))
3304 if (ndlp->nrport)
3305 nvme_fc_set_remoteport_devloss(ndlp->nrport->remoteport,
3306 vport->cfg_devloss_tmo);
3307 #endif
3308 }
3309 spin_unlock_irq(shost->host_lock);
3310 }
3311
3312 /**
3313 * lpfc_nodev_tmo_set - Set the vport nodev tmo and devloss tmo values
3314 * @vport: lpfc vport structure pointer.
3315 * @val: contains the tmo value.
3316 *
3317 * Description:
3318 * If the devloss tmo is already set or the vport dev loss tmo has changed
3319 * then a kernel error message is printed and zero is returned.
3320 * Else if val is in range then nodev tmo and devloss tmo are set to val.
3321 * Otherwise nodev tmo is set to the default value.
3322 *
3323 * Returns:
3324 * zero if already set or if val is in range
3325 * -EINVAL val out of range
3326 **/
3327 static int
3328 lpfc_nodev_tmo_set(struct lpfc_vport *vport, int val)
3329 {
3330 if (vport->dev_loss_tmo_changed ||
3331 (lpfc_devloss_tmo != LPFC_DEF_DEVLOSS_TMO)) {
3332 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3333 "0401 Ignoring change to lpfc_nodev_tmo "
3334 "because lpfc_devloss_tmo is set.\n");
3335 return 0;
3336 }
3337 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
3338 vport->cfg_nodev_tmo = val;
3339 vport->cfg_devloss_tmo = val;
3340 /*
3341 * For compat: set the fc_host dev loss so new rports
3342 * will get the value.
3343 */
3344 fc_host_dev_loss_tmo(lpfc_shost_from_vport(vport)) = val;
3345 lpfc_update_rport_devloss_tmo(vport);
3346 return 0;
3347 }
3348 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3349 "0403 lpfc_nodev_tmo attribute cannot be set to "
3350 "%d, allowed range is [%d, %d]\n",
3351 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
3352 return -EINVAL;
3353 }
3354
3355 lpfc_vport_param_store(nodev_tmo)
3356
3357 static DEVICE_ATTR_RW(lpfc_nodev_tmo);
3358
3359 /*
3360 # lpfc_devloss_tmo: If set, it will hold all I/O errors on devices that
3361 # disappear until the timer expires. Value range is [0,255]. Default
3362 # value is 30.
3363 */
3364 module_param(lpfc_devloss_tmo, int, S_IRUGO);
3365 MODULE_PARM_DESC(lpfc_devloss_tmo,
3366 "Seconds driver will hold I/O waiting "
3367 "for a device to come back");
3368 lpfc_vport_param_init(devloss_tmo, LPFC_DEF_DEVLOSS_TMO,
3369 LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO)
3370 lpfc_vport_param_show(devloss_tmo)
3371
3372 /**
3373 * lpfc_devloss_tmo_set - Sets vport nodev tmo, devloss tmo values, changed bit
3374 * @vport: lpfc vport structure pointer.
3375 * @val: contains the tmo value.
3376 *
3377 * Description:
3378 * If val is in a valid range then set the vport nodev tmo,
3379 * devloss tmo, also set the vport dev loss tmo changed flag.
3380 * Else a kernel error message is printed.
3381 *
3382 * Returns:
3383 * zero if val is in range
3384 * -EINVAL val out of range
3385 **/
3386 static int
3387 lpfc_devloss_tmo_set(struct lpfc_vport *vport, int val)
3388 {
3389 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
3390 vport->cfg_nodev_tmo = val;
3391 vport->cfg_devloss_tmo = val;
3392 vport->dev_loss_tmo_changed = 1;
3393 fc_host_dev_loss_tmo(lpfc_shost_from_vport(vport)) = val;
3394 lpfc_update_rport_devloss_tmo(vport);
3395 return 0;
3396 }
3397
3398 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3399 "0404 lpfc_devloss_tmo attribute cannot be set to "
3400 "%d, allowed range is [%d, %d]\n",
3401 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
3402 return -EINVAL;
3403 }
3404
3405 lpfc_vport_param_store(devloss_tmo)
3406 static DEVICE_ATTR_RW(lpfc_devloss_tmo);
3407
3408 /*
3409 * lpfc_suppress_rsp: Enable suppress rsp feature is firmware supports it
3410 * lpfc_suppress_rsp = 0 Disable
3411 * lpfc_suppress_rsp = 1 Enable (default)
3412 *
3413 */
3414 LPFC_ATTR_R(suppress_rsp, 1, 0, 1,
3415 "Enable suppress rsp feature is firmware supports it");
3416
3417 /*
3418 * lpfc_nvmet_mrq: Specify number of RQ pairs for processing NVMET cmds
3419 * lpfc_nvmet_mrq = 0 driver will calcualte optimal number of RQ pairs
3420 * lpfc_nvmet_mrq = 1 use a single RQ pair
3421 * lpfc_nvmet_mrq >= 2 use specified RQ pairs for MRQ
3422 *
3423 */
3424 LPFC_ATTR_R(nvmet_mrq,
3425 LPFC_NVMET_MRQ_AUTO, LPFC_NVMET_MRQ_AUTO, LPFC_NVMET_MRQ_MAX,
3426 "Specify number of RQ pairs for processing NVMET cmds");
3427
3428 /*
3429 * lpfc_enable_fc4_type: Defines what FC4 types are supported.
3430 * Supported Values: 1 - register just FCP
3431 * 3 - register both FCP and NVME
3432 * Supported values are [1,3]. Default value is 1
3433 */
3434 LPFC_ATTR_R(enable_fc4_type, LPFC_ENABLE_FCP,
3435 LPFC_ENABLE_FCP, LPFC_ENABLE_BOTH,
3436 "Enable FC4 Protocol support - FCP / NVME");
3437
3438 /*
3439 * lpfc_xri_split: Defines the division of XRI resources between SCSI and NVME
3440 * This parameter is only used if:
3441 * lpfc_enable_fc4_type is 3 - register both FCP and NVME and
3442 * port is not configured for NVMET.
3443 *
3444 * ELS/CT always get 10% of XRIs, up to a maximum of 250
3445 * The remaining XRIs get split up based on lpfc_xri_split per port:
3446 *
3447 * Supported Values are in percentages
3448 * the xri_split value is the percentage the SCSI port will get. The remaining
3449 * percentage will go to NVME.
3450 */
3451 LPFC_ATTR_R(xri_split, 50, 10, 90,
3452 "Percentage of FCP XRI resources versus NVME");
3453
3454 /*
3455 # lpfc_log_verbose: Only turn this flag on if you are willing to risk being
3456 # deluged with LOTS of information.
3457 # You can set a bit mask to record specific types of verbose messages:
3458 # See lpfc_logmsh.h for definitions.
3459 */
3460 LPFC_VPORT_ATTR_HEX_RW(log_verbose, 0x0, 0x0, 0xffffffff,
3461 "Verbose logging bit-mask");
3462
3463 /*
3464 # lpfc_enable_da_id: This turns on the DA_ID CT command that deregisters
3465 # objects that have been registered with the nameserver after login.
3466 */
3467 LPFC_VPORT_ATTR_R(enable_da_id, 1, 0, 1,
3468 "Deregister nameserver objects before LOGO");
3469
3470 /*
3471 # lun_queue_depth: This parameter is used to limit the number of outstanding
3472 # commands per FCP LUN. Value range is [1,512]. Default value is 30.
3473 # If this parameter value is greater than 1/8th the maximum number of exchanges
3474 # supported by the HBA port, then the lun queue depth will be reduced to
3475 # 1/8th the maximum number of exchanges.
3476 */
3477 LPFC_VPORT_ATTR_R(lun_queue_depth, 30, 1, 512,
3478 "Max number of FCP commands we can queue to a specific LUN");
3479
3480 /*
3481 # tgt_queue_depth: This parameter is used to limit the number of outstanding
3482 # commands per target port. Value range is [10,65535]. Default value is 65535.
3483 */
3484 LPFC_VPORT_ATTR_RW(tgt_queue_depth, 65535, 10, 65535,
3485 "Max number of FCP commands we can queue to a specific target port");
3486
3487 /*
3488 # hba_queue_depth: This parameter is used to limit the number of outstanding
3489 # commands per lpfc HBA. Value range is [32,8192]. If this parameter
3490 # value is greater than the maximum number of exchanges supported by the HBA,
3491 # then maximum number of exchanges supported by the HBA is used to determine
3492 # the hba_queue_depth.
3493 */
3494 LPFC_ATTR_R(hba_queue_depth, 8192, 32, 8192,
3495 "Max number of FCP commands we can queue to a lpfc HBA");
3496
3497 /*
3498 # peer_port_login: This parameter allows/prevents logins
3499 # between peer ports hosted on the same physical port.
3500 # When this parameter is set 0 peer ports of same physical port
3501 # are not allowed to login to each other.
3502 # When this parameter is set 1 peer ports of same physical port
3503 # are allowed to login to each other.
3504 # Default value of this parameter is 0.
3505 */
3506 LPFC_VPORT_ATTR_R(peer_port_login, 0, 0, 1,
3507 "Allow peer ports on the same physical port to login to each "
3508 "other.");
3509
3510 /*
3511 # restrict_login: This parameter allows/prevents logins
3512 # between Virtual Ports and remote initiators.
3513 # When this parameter is not set (0) Virtual Ports will accept PLOGIs from
3514 # other initiators and will attempt to PLOGI all remote ports.
3515 # When this parameter is set (1) Virtual Ports will reject PLOGIs from
3516 # remote ports and will not attempt to PLOGI to other initiators.
3517 # This parameter does not restrict to the physical port.
3518 # This parameter does not restrict logins to Fabric resident remote ports.
3519 # Default value of this parameter is 1.
3520 */
3521 static int lpfc_restrict_login = 1;
3522 module_param(lpfc_restrict_login, int, S_IRUGO);
3523 MODULE_PARM_DESC(lpfc_restrict_login,
3524 "Restrict virtual ports login to remote initiators.");
3525 lpfc_vport_param_show(restrict_login);
3526
3527 /**
3528 * lpfc_restrict_login_init - Set the vport restrict login flag
3529 * @vport: lpfc vport structure pointer.
3530 * @val: contains the restrict login value.
3531 *
3532 * Description:
3533 * If val is not in a valid range then log a kernel error message and set
3534 * the vport restrict login to one.
3535 * If the port type is physical clear the restrict login flag and return.
3536 * Else set the restrict login flag to val.
3537 *
3538 * Returns:
3539 * zero if val is in range
3540 * -EINVAL val out of range
3541 **/
3542 static int
3543 lpfc_restrict_login_init(struct lpfc_vport *vport, int val)
3544 {
3545 if (val < 0 || val > 1) {
3546 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3547 "0422 lpfc_restrict_login attribute cannot "
3548 "be set to %d, allowed range is [0, 1]\n",
3549 val);
3550 vport->cfg_restrict_login = 1;
3551 return -EINVAL;
3552 }
3553 if (vport->port_type == LPFC_PHYSICAL_PORT) {
3554 vport->cfg_restrict_login = 0;
3555 return 0;
3556 }
3557 vport->cfg_restrict_login = val;
3558 return 0;
3559 }
3560
3561 /**
3562 * lpfc_restrict_login_set - Set the vport restrict login flag
3563 * @vport: lpfc vport structure pointer.
3564 * @val: contains the restrict login value.
3565 *
3566 * Description:
3567 * If val is not in a valid range then log a kernel error message and set
3568 * the vport restrict login to one.
3569 * If the port type is physical and the val is not zero log a kernel
3570 * error message, clear the restrict login flag and return zero.
3571 * Else set the restrict login flag to val.
3572 *
3573 * Returns:
3574 * zero if val is in range
3575 * -EINVAL val out of range
3576 **/
3577 static int
3578 lpfc_restrict_login_set(struct lpfc_vport *vport, int val)
3579 {
3580 if (val < 0 || val > 1) {
3581 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3582 "0425 lpfc_restrict_login attribute cannot "
3583 "be set to %d, allowed range is [0, 1]\n",
3584 val);
3585 vport->cfg_restrict_login = 1;
3586 return -EINVAL;
3587 }
3588 if (vport->port_type == LPFC_PHYSICAL_PORT && val != 0) {
3589 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3590 "0468 lpfc_restrict_login must be 0 for "
3591 "Physical ports.\n");
3592 vport->cfg_restrict_login = 0;
3593 return 0;
3594 }
3595 vport->cfg_restrict_login = val;
3596 return 0;
3597 }
3598 lpfc_vport_param_store(restrict_login);
3599 static DEVICE_ATTR_RW(lpfc_restrict_login);
3600
3601 /*
3602 # Some disk devices have a "select ID" or "select Target" capability.
3603 # From a protocol standpoint "select ID" usually means select the
3604 # Fibre channel "ALPA". In the FC-AL Profile there is an "informative
3605 # annex" which contains a table that maps a "select ID" (a number
3606 # between 0 and 7F) to an ALPA. By default, for compatibility with
3607 # older drivers, the lpfc driver scans this table from low ALPA to high
3608 # ALPA.
3609 #
3610 # Turning on the scan-down variable (on = 1, off = 0) will
3611 # cause the lpfc driver to use an inverted table, effectively
3612 # scanning ALPAs from high to low. Value range is [0,1]. Default value is 1.
3613 #
3614 # (Note: This "select ID" functionality is a LOOP ONLY characteristic
3615 # and will not work across a fabric. Also this parameter will take
3616 # effect only in the case when ALPA map is not available.)
3617 */
3618 LPFC_VPORT_ATTR_R(scan_down, 1, 0, 1,
3619 "Start scanning for devices from highest ALPA to lowest");
3620
3621 /*
3622 # lpfc_topology: link topology for init link
3623 # 0x0 = attempt loop mode then point-to-point
3624 # 0x01 = internal loopback mode
3625 # 0x02 = attempt point-to-point mode only
3626 # 0x04 = attempt loop mode only
3627 # 0x06 = attempt point-to-point mode then loop
3628 # Set point-to-point mode if you want to run as an N_Port.
3629 # Set loop mode if you want to run as an NL_Port. Value range is [0,0x6].
3630 # Default value is 0.
3631 */
3632 LPFC_ATTR(topology, 0, 0, 6,
3633 "Select Fibre Channel topology");
3634
3635 /**
3636 * lpfc_topology_set - Set the adapters topology field
3637 * @phba: lpfc_hba pointer.
3638 * @val: topology value.
3639 *
3640 * Description:
3641 * If val is in a valid range then set the adapter's topology field and
3642 * issue a lip; if the lip fails reset the topology to the old value.
3643 *
3644 * If the value is not in range log a kernel error message and return an error.
3645 *
3646 * Returns:
3647 * zero if val is in range and lip okay
3648 * non-zero return value from lpfc_issue_lip()
3649 * -EINVAL val out of range
3650 **/
3651 static ssize_t
3652 lpfc_topology_store(struct device *dev, struct device_attribute *attr,
3653 const char *buf, size_t count)
3654 {
3655 struct Scsi_Host *shost = class_to_shost(dev);
3656 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3657 struct lpfc_hba *phba = vport->phba;
3658 int val = 0;
3659 int nolip = 0;
3660 const char *val_buf = buf;
3661 int err;
3662 uint32_t prev_val;
3663
3664 if (!strncmp(buf, "nolip ", strlen("nolip "))) {
3665 nolip = 1;
3666 val_buf = &buf[strlen("nolip ")];
3667 }
3668
3669 if (!isdigit(val_buf[0]))
3670 return -EINVAL;
3671 if (sscanf(val_buf, "%i", &val) != 1)
3672 return -EINVAL;
3673
3674 if (val >= 0 && val <= 6) {
3675 prev_val = phba->cfg_topology;
3676 if (phba->cfg_link_speed == LPFC_USER_LINK_SPEED_16G &&
3677 val == 4) {
3678 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3679 "3113 Loop mode not supported at speed %d\n",
3680 val);
3681 return -EINVAL;
3682 }
3683 if ((phba->pcidev->device == PCI_DEVICE_ID_LANCER_G6_FC ||
3684 phba->pcidev->device == PCI_DEVICE_ID_LANCER_G7_FC) &&
3685 val == 4) {
3686 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3687 "3114 Loop mode not supported\n");
3688 return -EINVAL;
3689 }
3690 phba->cfg_topology = val;
3691 if (nolip)
3692 return strlen(buf);
3693
3694 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
3695 "3054 lpfc_topology changed from %d to %d\n",
3696 prev_val, val);
3697 if (prev_val != val && phba->sli_rev == LPFC_SLI_REV4)
3698 phba->fc_topology_changed = 1;
3699 err = lpfc_issue_lip(lpfc_shost_from_vport(phba->pport));
3700 if (err) {
3701 phba->cfg_topology = prev_val;
3702 return -EINVAL;
3703 } else
3704 return strlen(buf);
3705 }
3706 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3707 "%d:0467 lpfc_topology attribute cannot be set to %d, "
3708 "allowed range is [0, 6]\n",
3709 phba->brd_no, val);
3710 return -EINVAL;
3711 }
3712
3713 lpfc_param_show(topology)
3714 static DEVICE_ATTR_RW(lpfc_topology);
3715
3716 /**
3717 * lpfc_static_vport_show: Read callback function for
3718 * lpfc_static_vport sysfs file.
3719 * @dev: Pointer to class device object.
3720 * @attr: device attribute structure.
3721 * @buf: Data buffer.
3722 *
3723 * This function is the read call back function for
3724 * lpfc_static_vport sysfs file. The lpfc_static_vport
3725 * sysfs file report the mageability of the vport.
3726 **/
3727 static ssize_t
3728 lpfc_static_vport_show(struct device *dev, struct device_attribute *attr,
3729 char *buf)
3730 {
3731 struct Scsi_Host *shost = class_to_shost(dev);
3732 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3733 if (vport->vport_flag & STATIC_VPORT)
3734 sprintf(buf, "1\n");
3735 else
3736 sprintf(buf, "0\n");
3737
3738 return strlen(buf);
3739 }
3740
3741 /*
3742 * Sysfs attribute to control the statistical data collection.
3743 */
3744 static DEVICE_ATTR_RO(lpfc_static_vport);
3745
3746 /**
3747 * lpfc_stat_data_ctrl_store - write call back for lpfc_stat_data_ctrl sysfs file
3748 * @dev: Pointer to class device.
3749 * @buf: Data buffer.
3750 * @count: Size of the data buffer.
3751 *
3752 * This function get called when a user write to the lpfc_stat_data_ctrl
3753 * sysfs file. This function parse the command written to the sysfs file
3754 * and take appropriate action. These commands are used for controlling
3755 * driver statistical data collection.
3756 * Following are the command this function handles.
3757 *
3758 * setbucket <bucket_type> <base> <step>
3759 * = Set the latency buckets.
3760 * destroybucket = destroy all the buckets.
3761 * start = start data collection
3762 * stop = stop data collection
3763 * reset = reset the collected data
3764 **/
3765 static ssize_t
3766 lpfc_stat_data_ctrl_store(struct device *dev, struct device_attribute *attr,
3767 const char *buf, size_t count)
3768 {
3769 struct Scsi_Host *shost = class_to_shost(dev);
3770 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3771 struct lpfc_hba *phba = vport->phba;
3772 #define LPFC_MAX_DATA_CTRL_LEN 1024
3773 static char bucket_data[LPFC_MAX_DATA_CTRL_LEN];
3774 unsigned long i;
3775 char *str_ptr, *token;
3776 struct lpfc_vport **vports;
3777 struct Scsi_Host *v_shost;
3778 char *bucket_type_str, *base_str, *step_str;
3779 unsigned long base, step, bucket_type;
3780
3781 if (!strncmp(buf, "setbucket", strlen("setbucket"))) {
3782 if (strlen(buf) > (LPFC_MAX_DATA_CTRL_LEN - 1))
3783 return -EINVAL;
3784
3785 strncpy(bucket_data, buf, LPFC_MAX_DATA_CTRL_LEN);
3786 str_ptr = &bucket_data[0];
3787 /* Ignore this token - this is command token */
3788 token = strsep(&str_ptr, "\t ");
3789 if (!token)
3790 return -EINVAL;
3791
3792 bucket_type_str = strsep(&str_ptr, "\t ");
3793 if (!bucket_type_str)
3794 return -EINVAL;
3795
3796 if (!strncmp(bucket_type_str, "linear", strlen("linear")))
3797 bucket_type = LPFC_LINEAR_BUCKET;
3798 else if (!strncmp(bucket_type_str, "power2", strlen("power2")))
3799 bucket_type = LPFC_POWER2_BUCKET;
3800 else
3801 return -EINVAL;
3802
3803 base_str = strsep(&str_ptr, "\t ");
3804 if (!base_str)
3805 return -EINVAL;
3806 base = simple_strtoul(base_str, NULL, 0);
3807
3808 step_str = strsep(&str_ptr, "\t ");
3809 if (!step_str)
3810 return -EINVAL;
3811 step = simple_strtoul(step_str, NULL, 0);
3812 if (!step)
3813 return -EINVAL;
3814
3815 /* Block the data collection for every vport */
3816 vports = lpfc_create_vport_work_array(phba);
3817 if (vports == NULL)
3818 return -ENOMEM;
3819
3820 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
3821 v_shost = lpfc_shost_from_vport(vports[i]);
3822 spin_lock_irq(v_shost->host_lock);
3823 /* Block and reset data collection */
3824 vports[i]->stat_data_blocked = 1;
3825 if (vports[i]->stat_data_enabled)
3826 lpfc_vport_reset_stat_data(vports[i]);
3827 spin_unlock_irq(v_shost->host_lock);
3828 }
3829
3830 /* Set the bucket attributes */
3831 phba->bucket_type = bucket_type;
3832 phba->bucket_base = base;
3833 phba->bucket_step = step;
3834
3835 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
3836 v_shost = lpfc_shost_from_vport(vports[i]);
3837
3838 /* Unblock data collection */
3839 spin_lock_irq(v_shost->host_lock);
3840 vports[i]->stat_data_blocked = 0;
3841 spin_unlock_irq(v_shost->host_lock);
3842 }
3843 lpfc_destroy_vport_work_array(phba, vports);
3844 return strlen(buf);
3845 }
3846
3847 if (!strncmp(buf, "destroybucket", strlen("destroybucket"))) {
3848 vports = lpfc_create_vport_work_array(phba);
3849 if (vports == NULL)
3850 return -ENOMEM;
3851
3852 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
3853 v_shost = lpfc_shost_from_vport(vports[i]);
3854 spin_lock_irq(shost->host_lock);
3855 vports[i]->stat_data_blocked = 1;
3856 lpfc_free_bucket(vport);
3857 vport->stat_data_enabled = 0;
3858 vports[i]->stat_data_blocked = 0;
3859 spin_unlock_irq(shost->host_lock);
3860 }
3861 lpfc_destroy_vport_work_array(phba, vports);
3862 phba->bucket_type = LPFC_NO_BUCKET;
3863 phba->bucket_base = 0;
3864 phba->bucket_step = 0;
3865 return strlen(buf);
3866 }
3867
3868 if (!strncmp(buf, "start", strlen("start"))) {
3869 /* If no buckets configured return error */
3870 if (phba->bucket_type == LPFC_NO_BUCKET)
3871 return -EINVAL;
3872 spin_lock_irq(shost->host_lock);
3873 if (vport->stat_data_enabled) {
3874 spin_unlock_irq(shost->host_lock);
3875 return strlen(buf);
3876 }
3877 lpfc_alloc_bucket(vport);
3878 vport->stat_data_enabled = 1;
3879 spin_unlock_irq(shost->host_lock);
3880 return strlen(buf);
3881 }
3882
3883 if (!strncmp(buf, "stop", strlen("stop"))) {
3884 spin_lock_irq(shost->host_lock);
3885 if (vport->stat_data_enabled == 0) {
3886 spin_unlock_irq(shost->host_lock);
3887 return strlen(buf);
3888 }
3889 lpfc_free_bucket(vport);
3890 vport->stat_data_enabled = 0;
3891 spin_unlock_irq(shost->host_lock);
3892 return strlen(buf);
3893 }
3894
3895 if (!strncmp(buf, "reset", strlen("reset"))) {
3896 if ((phba->bucket_type == LPFC_NO_BUCKET)
3897 || !vport->stat_data_enabled)
3898 return strlen(buf);
3899 spin_lock_irq(shost->host_lock);
3900 vport->stat_data_blocked = 1;
3901 lpfc_vport_reset_stat_data(vport);
3902 vport->stat_data_blocked = 0;
3903 spin_unlock_irq(shost->host_lock);
3904 return strlen(buf);
3905 }
3906 return -EINVAL;
3907 }
3908
3909
3910 /**
3911 * lpfc_stat_data_ctrl_show - Read function for lpfc_stat_data_ctrl sysfs file
3912 * @dev: Pointer to class device object.
3913 * @buf: Data buffer.
3914 *
3915 * This function is the read call back function for
3916 * lpfc_stat_data_ctrl sysfs file. This function report the
3917 * current statistical data collection state.
3918 **/
3919 static ssize_t
3920 lpfc_stat_data_ctrl_show(struct device *dev, struct device_attribute *attr,
3921 char *buf)
3922 {
3923 struct Scsi_Host *shost = class_to_shost(dev);
3924 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3925 struct lpfc_hba *phba = vport->phba;
3926 int index = 0;
3927 int i;
3928 char *bucket_type;
3929 unsigned long bucket_value;
3930
3931 switch (phba->bucket_type) {
3932 case LPFC_LINEAR_BUCKET:
3933 bucket_type = "linear";
3934 break;
3935 case LPFC_POWER2_BUCKET:
3936 bucket_type = "power2";
3937 break;
3938 default:
3939 bucket_type = "No Bucket";
3940 break;
3941 }
3942
3943 sprintf(&buf[index], "Statistical Data enabled :%d, "
3944 "blocked :%d, Bucket type :%s, Bucket base :%d,"
3945 " Bucket step :%d\nLatency Ranges :",
3946 vport->stat_data_enabled, vport->stat_data_blocked,
3947 bucket_type, phba->bucket_base, phba->bucket_step);
3948 index = strlen(buf);
3949 if (phba->bucket_type != LPFC_NO_BUCKET) {
3950 for (i = 0; i < LPFC_MAX_BUCKET_COUNT; i++) {
3951 if (phba->bucket_type == LPFC_LINEAR_BUCKET)
3952 bucket_value = phba->bucket_base +
3953 phba->bucket_step * i;
3954 else
3955 bucket_value = phba->bucket_base +
3956 (1 << i) * phba->bucket_step;
3957
3958 if (index + 10 > PAGE_SIZE)
3959 break;
3960 sprintf(&buf[index], "%08ld ", bucket_value);
3961 index = strlen(buf);
3962 }
3963 }
3964 sprintf(&buf[index], "\n");
3965 return strlen(buf);
3966 }
3967
3968 /*
3969 * Sysfs attribute to control the statistical data collection.
3970 */
3971 static DEVICE_ATTR_RW(lpfc_stat_data_ctrl);
3972
3973 /*
3974 * lpfc_drvr_stat_data: sysfs attr to get driver statistical data.
3975 */
3976
3977 /*
3978 * Each Bucket takes 11 characters and 1 new line + 17 bytes WWN
3979 * for each target.
3980 */
3981 #define STAT_DATA_SIZE_PER_TARGET(NUM_BUCKETS) ((NUM_BUCKETS) * 11 + 18)
3982 #define MAX_STAT_DATA_SIZE_PER_TARGET \
3983 STAT_DATA_SIZE_PER_TARGET(LPFC_MAX_BUCKET_COUNT)
3984
3985
3986 /**
3987 * sysfs_drvr_stat_data_read - Read function for lpfc_drvr_stat_data attribute
3988 * @filp: sysfs file
3989 * @kobj: Pointer to the kernel object
3990 * @bin_attr: Attribute object
3991 * @buff: Buffer pointer
3992 * @off: File offset
3993 * @count: Buffer size
3994 *
3995 * This function is the read call back function for lpfc_drvr_stat_data
3996 * sysfs file. This function export the statistical data to user
3997 * applications.
3998 **/
3999 static ssize_t
4000 sysfs_drvr_stat_data_read(struct file *filp, struct kobject *kobj,
4001 struct bin_attribute *bin_attr,
4002 char *buf, loff_t off, size_t count)
4003 {
4004 struct device *dev = container_of(kobj, struct device,
4005 kobj);
4006 struct Scsi_Host *shost = class_to_shost(dev);
4007 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4008 struct lpfc_hba *phba = vport->phba;
4009 int i = 0, index = 0;
4010 unsigned long nport_index;
4011 struct lpfc_nodelist *ndlp = NULL;
4012 nport_index = (unsigned long)off /
4013 MAX_STAT_DATA_SIZE_PER_TARGET;
4014
4015 if (!vport->stat_data_enabled || vport->stat_data_blocked
4016 || (phba->bucket_type == LPFC_NO_BUCKET))
4017 return 0;
4018
4019 spin_lock_irq(shost->host_lock);
4020 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
4021 if (!NLP_CHK_NODE_ACT(ndlp) || !ndlp->lat_data)
4022 continue;
4023
4024 if (nport_index > 0) {
4025 nport_index--;
4026 continue;
4027 }
4028
4029 if ((index + MAX_STAT_DATA_SIZE_PER_TARGET)
4030 > count)
4031 break;
4032
4033 if (!ndlp->lat_data)
4034 continue;
4035
4036 /* Print the WWN */
4037 sprintf(&buf[index], "%02x%02x%02x%02x%02x%02x%02x%02x:",
4038 ndlp->nlp_portname.u.wwn[0],
4039 ndlp->nlp_portname.u.wwn[1],
4040 ndlp->nlp_portname.u.wwn[2],
4041 ndlp->nlp_portname.u.wwn[3],
4042 ndlp->nlp_portname.u.wwn[4],
4043 ndlp->nlp_portname.u.wwn[5],
4044 ndlp->nlp_portname.u.wwn[6],
4045 ndlp->nlp_portname.u.wwn[7]);
4046
4047 index = strlen(buf);
4048
4049 for (i = 0; i < LPFC_MAX_BUCKET_COUNT; i++) {
4050 sprintf(&buf[index], "%010u,",
4051 ndlp->lat_data[i].cmd_count);
4052 index = strlen(buf);
4053 }
4054 sprintf(&buf[index], "\n");
4055 index = strlen(buf);
4056 }
4057 spin_unlock_irq(shost->host_lock);
4058 return index;
4059 }
4060
4061 static struct bin_attribute sysfs_drvr_stat_data_attr = {
4062 .attr = {
4063 .name = "lpfc_drvr_stat_data",
4064 .mode = S_IRUSR,
4065 },
4066 .size = LPFC_MAX_TARGET * MAX_STAT_DATA_SIZE_PER_TARGET,
4067 .read = sysfs_drvr_stat_data_read,
4068 .write = NULL,
4069 };
4070
4071 /*
4072 # lpfc_link_speed: Link speed selection for initializing the Fibre Channel
4073 # connection.
4074 # Value range is [0,16]. Default value is 0.
4075 */
4076 /**
4077 * lpfc_link_speed_set - Set the adapters link speed
4078 * @phba: lpfc_hba pointer.
4079 * @val: link speed value.
4080 *
4081 * Description:
4082 * If val is in a valid range then set the adapter's link speed field and
4083 * issue a lip; if the lip fails reset the link speed to the old value.
4084 *
4085 * Notes:
4086 * If the value is not in range log a kernel error message and return an error.
4087 *
4088 * Returns:
4089 * zero if val is in range and lip okay.
4090 * non-zero return value from lpfc_issue_lip()
4091 * -EINVAL val out of range
4092 **/
4093 static ssize_t
4094 lpfc_link_speed_store(struct device *dev, struct device_attribute *attr,
4095 const char *buf, size_t count)
4096 {
4097 struct Scsi_Host *shost = class_to_shost(dev);
4098 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4099 struct lpfc_hba *phba = vport->phba;
4100 int val = LPFC_USER_LINK_SPEED_AUTO;
4101 int nolip = 0;
4102 const char *val_buf = buf;
4103 int err;
4104 uint32_t prev_val, if_type;
4105
4106 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
4107 if (if_type >= LPFC_SLI_INTF_IF_TYPE_2 &&
4108 phba->hba_flag & HBA_FORCED_LINK_SPEED)
4109 return -EPERM;
4110
4111 if (!strncmp(buf, "nolip ", strlen("nolip "))) {
4112 nolip = 1;
4113 val_buf = &buf[strlen("nolip ")];
4114 }
4115
4116 if (!isdigit(val_buf[0]))
4117 return -EINVAL;
4118 if (sscanf(val_buf, "%i", &val) != 1)
4119 return -EINVAL;
4120
4121 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
4122 "3055 lpfc_link_speed changed from %d to %d %s\n",
4123 phba->cfg_link_speed, val, nolip ? "(nolip)" : "(lip)");
4124
4125 if (((val == LPFC_USER_LINK_SPEED_1G) && !(phba->lmt & LMT_1Gb)) ||
4126 ((val == LPFC_USER_LINK_SPEED_2G) && !(phba->lmt & LMT_2Gb)) ||
4127 ((val == LPFC_USER_LINK_SPEED_4G) && !(phba->lmt & LMT_4Gb)) ||
4128 ((val == LPFC_USER_LINK_SPEED_8G) && !(phba->lmt & LMT_8Gb)) ||
4129 ((val == LPFC_USER_LINK_SPEED_10G) && !(phba->lmt & LMT_10Gb)) ||
4130 ((val == LPFC_USER_LINK_SPEED_16G) && !(phba->lmt & LMT_16Gb)) ||
4131 ((val == LPFC_USER_LINK_SPEED_32G) && !(phba->lmt & LMT_32Gb)) ||
4132 ((val == LPFC_USER_LINK_SPEED_64G) && !(phba->lmt & LMT_64Gb))) {
4133 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4134 "2879 lpfc_link_speed attribute cannot be set "
4135 "to %d. Speed is not supported by this port.\n",
4136 val);
4137 return -EINVAL;
4138 }
4139 if (val >= LPFC_USER_LINK_SPEED_16G &&
4140 phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
4141 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4142 "3112 lpfc_link_speed attribute cannot be set "
4143 "to %d. Speed is not supported in loop mode.\n",
4144 val);
4145 return -EINVAL;
4146 }
4147
4148 switch (val) {
4149 case LPFC_USER_LINK_SPEED_AUTO:
4150 case LPFC_USER_LINK_SPEED_1G:
4151 case LPFC_USER_LINK_SPEED_2G:
4152 case LPFC_USER_LINK_SPEED_4G:
4153 case LPFC_USER_LINK_SPEED_8G:
4154 case LPFC_USER_LINK_SPEED_16G:
4155 case LPFC_USER_LINK_SPEED_32G:
4156 case LPFC_USER_LINK_SPEED_64G:
4157 prev_val = phba->cfg_link_speed;
4158 phba->cfg_link_speed = val;
4159 if (nolip)
4160 return strlen(buf);
4161
4162 err = lpfc_issue_lip(lpfc_shost_from_vport(phba->pport));
4163 if (err) {
4164 phba->cfg_link_speed = prev_val;
4165 return -EINVAL;
4166 }
4167 return strlen(buf);
4168 default:
4169 break;
4170 }
4171
4172 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4173 "0469 lpfc_link_speed attribute cannot be set to %d, "
4174 "allowed values are [%s]\n",
4175 val, LPFC_LINK_SPEED_STRING);
4176 return -EINVAL;
4177
4178 }
4179
4180 static int lpfc_link_speed = 0;
4181 module_param(lpfc_link_speed, int, S_IRUGO);
4182 MODULE_PARM_DESC(lpfc_link_speed, "Select link speed");
4183 lpfc_param_show(link_speed)
4184
4185 /**
4186 * lpfc_link_speed_init - Set the adapters link speed
4187 * @phba: lpfc_hba pointer.
4188 * @val: link speed value.
4189 *
4190 * Description:
4191 * If val is in a valid range then set the adapter's link speed field.
4192 *
4193 * Notes:
4194 * If the value is not in range log a kernel error message, clear the link
4195 * speed and return an error.
4196 *
4197 * Returns:
4198 * zero if val saved.
4199 * -EINVAL val out of range
4200 **/
4201 static int
4202 lpfc_link_speed_init(struct lpfc_hba *phba, int val)
4203 {
4204 if (val >= LPFC_USER_LINK_SPEED_16G && phba->cfg_topology == 4) {
4205 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4206 "3111 lpfc_link_speed of %d cannot "
4207 "support loop mode, setting topology to default.\n",
4208 val);
4209 phba->cfg_topology = 0;
4210 }
4211
4212 switch (val) {
4213 case LPFC_USER_LINK_SPEED_AUTO:
4214 case LPFC_USER_LINK_SPEED_1G:
4215 case LPFC_USER_LINK_SPEED_2G:
4216 case LPFC_USER_LINK_SPEED_4G:
4217 case LPFC_USER_LINK_SPEED_8G:
4218 case LPFC_USER_LINK_SPEED_16G:
4219 case LPFC_USER_LINK_SPEED_32G:
4220 case LPFC_USER_LINK_SPEED_64G:
4221 phba->cfg_link_speed = val;
4222 return 0;
4223 default:
4224 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4225 "0405 lpfc_link_speed attribute cannot "
4226 "be set to %d, allowed values are "
4227 "["LPFC_LINK_SPEED_STRING"]\n", val);
4228 phba->cfg_link_speed = LPFC_USER_LINK_SPEED_AUTO;
4229 return -EINVAL;
4230 }
4231 }
4232
4233 static DEVICE_ATTR_RW(lpfc_link_speed);
4234
4235 /*
4236 # lpfc_aer_support: Support PCIe device Advanced Error Reporting (AER)
4237 # 0 = aer disabled or not supported
4238 # 1 = aer supported and enabled (default)
4239 # Value range is [0,1]. Default value is 1.
4240 */
4241 LPFC_ATTR(aer_support, 1, 0, 1,
4242 "Enable PCIe device AER support");
4243 lpfc_param_show(aer_support)
4244
4245 /**
4246 * lpfc_aer_support_store - Set the adapter for aer support
4247 *
4248 * @dev: class device that is converted into a Scsi_host.
4249 * @attr: device attribute, not used.
4250 * @buf: containing enable or disable aer flag.
4251 * @count: unused variable.
4252 *
4253 * Description:
4254 * If the val is 1 and currently the device's AER capability was not
4255 * enabled, invoke the kernel's enable AER helper routine, trying to
4256 * enable the device's AER capability. If the helper routine enabling
4257 * AER returns success, update the device's cfg_aer_support flag to
4258 * indicate AER is supported by the device; otherwise, if the device
4259 * AER capability is already enabled to support AER, then do nothing.
4260 *
4261 * If the val is 0 and currently the device's AER support was enabled,
4262 * invoke the kernel's disable AER helper routine. After that, update
4263 * the device's cfg_aer_support flag to indicate AER is not supported
4264 * by the device; otherwise, if the device AER capability is already
4265 * disabled from supporting AER, then do nothing.
4266 *
4267 * Returns:
4268 * length of the buf on success if val is in range the intended mode
4269 * is supported.
4270 * -EINVAL if val out of range or intended mode is not supported.
4271 **/
4272 static ssize_t
4273 lpfc_aer_support_store(struct device *dev, struct device_attribute *attr,
4274 const char *buf, size_t count)
4275 {
4276 struct Scsi_Host *shost = class_to_shost(dev);
4277 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
4278 struct lpfc_hba *phba = vport->phba;
4279 int val = 0, rc = -EINVAL;
4280
4281 if (!isdigit(buf[0]))
4282 return -EINVAL;
4283 if (sscanf(buf, "%i", &val) != 1)
4284 return -EINVAL;
4285
4286 switch (val) {
4287 case 0:
4288 if (phba->hba_flag & HBA_AER_ENABLED) {
4289 rc = pci_disable_pcie_error_reporting(phba->pcidev);
4290 if (!rc) {
4291 spin_lock_irq(&phba->hbalock);
4292 phba->hba_flag &= ~HBA_AER_ENABLED;
4293 spin_unlock_irq(&phba->hbalock);
4294 phba->cfg_aer_support = 0;
4295 rc = strlen(buf);
4296 } else
4297 rc = -EPERM;
4298 } else {
4299 phba->cfg_aer_support = 0;
4300 rc = strlen(buf);
4301 }
4302 break;
4303 case 1:
4304 if (!(phba->hba_flag & HBA_AER_ENABLED)) {
4305 rc = pci_enable_pcie_error_reporting(phba->pcidev);
4306 if (!rc) {
4307 spin_lock_irq(&phba->hbalock);
4308 phba->hba_flag |= HBA_AER_ENABLED;
4309 spin_unlock_irq(&phba->hbalock);
4310 phba->cfg_aer_support = 1;
4311 rc = strlen(buf);
4312 } else
4313 rc = -EPERM;
4314 } else {
4315 phba->cfg_aer_support = 1;
4316 rc = strlen(buf);
4317 }
4318 break;
4319 default:
4320 rc = -EINVAL;
4321 break;
4322 }
4323 return rc;
4324 }
4325
4326 static DEVICE_ATTR_RW(lpfc_aer_support);
4327
4328 /**
4329 * lpfc_aer_cleanup_state - Clean up aer state to the aer enabled device
4330 * @dev: class device that is converted into a Scsi_host.
4331 * @attr: device attribute, not used.
4332 * @buf: containing flag 1 for aer cleanup state.
4333 * @count: unused variable.
4334 *
4335 * Description:
4336 * If the @buf contains 1 and the device currently has the AER support
4337 * enabled, then invokes the kernel AER helper routine
4338 * pci_cleanup_aer_uncorrect_error_status to clean up the uncorrectable
4339 * error status register.
4340 *
4341 * Notes:
4342 *
4343 * Returns:
4344 * -EINVAL if the buf does not contain the 1 or the device is not currently
4345 * enabled with the AER support.
4346 **/
4347 static ssize_t
4348 lpfc_aer_cleanup_state(struct device *dev, struct device_attribute *attr,
4349 const char *buf, size_t count)
4350 {
4351 struct Scsi_Host *shost = class_to_shost(dev);
4352 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4353 struct lpfc_hba *phba = vport->phba;
4354 int val, rc = -1;
4355
4356 if (!isdigit(buf[0]))
4357 return -EINVAL;
4358 if (sscanf(buf, "%i", &val) != 1)
4359 return -EINVAL;
4360 if (val != 1)
4361 return -EINVAL;
4362
4363 if (phba->hba_flag & HBA_AER_ENABLED)
4364 rc = pci_cleanup_aer_uncorrect_error_status(phba->pcidev);
4365
4366 if (rc == 0)
4367 return strlen(buf);
4368 else
4369 return -EPERM;
4370 }
4371
4372 static DEVICE_ATTR(lpfc_aer_state_cleanup, S_IWUSR, NULL,
4373 lpfc_aer_cleanup_state);
4374
4375 /**
4376 * lpfc_sriov_nr_virtfn_store - Enable the adapter for sr-iov virtual functions
4377 *
4378 * @dev: class device that is converted into a Scsi_host.
4379 * @attr: device attribute, not used.
4380 * @buf: containing the string the number of vfs to be enabled.
4381 * @count: unused variable.
4382 *
4383 * Description:
4384 * When this api is called either through user sysfs, the driver shall
4385 * try to enable or disable SR-IOV virtual functions according to the
4386 * following:
4387 *
4388 * If zero virtual function has been enabled to the physical function,
4389 * the driver shall invoke the pci enable virtual function api trying
4390 * to enable the virtual functions. If the nr_vfn provided is greater
4391 * than the maximum supported, the maximum virtual function number will
4392 * be used for invoking the api; otherwise, the nr_vfn provided shall
4393 * be used for invoking the api. If the api call returned success, the
4394 * actual number of virtual functions enabled will be set to the driver
4395 * cfg_sriov_nr_virtfn; otherwise, -EINVAL shall be returned and driver
4396 * cfg_sriov_nr_virtfn remains zero.
4397 *
4398 * If none-zero virtual functions have already been enabled to the
4399 * physical function, as reflected by the driver's cfg_sriov_nr_virtfn,
4400 * -EINVAL will be returned and the driver does nothing;
4401 *
4402 * If the nr_vfn provided is zero and none-zero virtual functions have
4403 * been enabled, as indicated by the driver's cfg_sriov_nr_virtfn, the
4404 * disabling virtual function api shall be invoded to disable all the
4405 * virtual functions and driver's cfg_sriov_nr_virtfn shall be set to
4406 * zero. Otherwise, if zero virtual function has been enabled, do
4407 * nothing.
4408 *
4409 * Returns:
4410 * length of the buf on success if val is in range the intended mode
4411 * is supported.
4412 * -EINVAL if val out of range or intended mode is not supported.
4413 **/
4414 static ssize_t
4415 lpfc_sriov_nr_virtfn_store(struct device *dev, struct device_attribute *attr,
4416 const char *buf, size_t count)
4417 {
4418 struct Scsi_Host *shost = class_to_shost(dev);
4419 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
4420 struct lpfc_hba *phba = vport->phba;
4421 struct pci_dev *pdev = phba->pcidev;
4422 int val = 0, rc = -EINVAL;
4423
4424 /* Sanity check on user data */
4425 if (!isdigit(buf[0]))
4426 return -EINVAL;
4427 if (sscanf(buf, "%i", &val) != 1)
4428 return -EINVAL;
4429 if (val < 0)
4430 return -EINVAL;
4431
4432 /* Request disabling virtual functions */
4433 if (val == 0) {
4434 if (phba->cfg_sriov_nr_virtfn > 0) {
4435 pci_disable_sriov(pdev);
4436 phba->cfg_sriov_nr_virtfn = 0;
4437 }
4438 return strlen(buf);
4439 }
4440
4441 /* Request enabling virtual functions */
4442 if (phba->cfg_sriov_nr_virtfn > 0) {
4443 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4444 "3018 There are %d virtual functions "
4445 "enabled on physical function.\n",
4446 phba->cfg_sriov_nr_virtfn);
4447 return -EEXIST;
4448 }
4449
4450 if (val <= LPFC_MAX_VFN_PER_PFN)
4451 phba->cfg_sriov_nr_virtfn = val;
4452 else {
4453 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4454 "3019 Enabling %d virtual functions is not "
4455 "allowed.\n", val);
4456 return -EINVAL;
4457 }
4458
4459 rc = lpfc_sli_probe_sriov_nr_virtfn(phba, phba->cfg_sriov_nr_virtfn);
4460 if (rc) {
4461 phba->cfg_sriov_nr_virtfn = 0;
4462 rc = -EPERM;
4463 } else
4464 rc = strlen(buf);
4465
4466 return rc;
4467 }
4468
4469 LPFC_ATTR(sriov_nr_virtfn, LPFC_DEF_VFN_PER_PFN, 0, LPFC_MAX_VFN_PER_PFN,
4470 "Enable PCIe device SR-IOV virtual fn");
4471
4472 lpfc_param_show(sriov_nr_virtfn)
4473 static DEVICE_ATTR_RW(lpfc_sriov_nr_virtfn);
4474
4475 /**
4476 * lpfc_request_firmware_store - Request for Linux generic firmware upgrade
4477 *
4478 * @dev: class device that is converted into a Scsi_host.
4479 * @attr: device attribute, not used.
4480 * @buf: containing the string the number of vfs to be enabled.
4481 * @count: unused variable.
4482 *
4483 * Description:
4484 *
4485 * Returns:
4486 * length of the buf on success if val is in range the intended mode
4487 * is supported.
4488 * -EINVAL if val out of range or intended mode is not supported.
4489 **/
4490 static ssize_t
4491 lpfc_request_firmware_upgrade_store(struct device *dev,
4492 struct device_attribute *attr,
4493 const char *buf, size_t count)
4494 {
4495 struct Scsi_Host *shost = class_to_shost(dev);
4496 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
4497 struct lpfc_hba *phba = vport->phba;
4498 int val = 0, rc = -EINVAL;
4499
4500 /* Sanity check on user data */
4501 if (!isdigit(buf[0]))
4502 return -EINVAL;
4503 if (sscanf(buf, "%i", &val) != 1)
4504 return -EINVAL;
4505 if (val != 1)
4506 return -EINVAL;
4507
4508 rc = lpfc_sli4_request_firmware_update(phba, RUN_FW_UPGRADE);
4509 if (rc)
4510 rc = -EPERM;
4511 else
4512 rc = strlen(buf);
4513 return rc;
4514 }
4515
4516 static int lpfc_req_fw_upgrade;
4517 module_param(lpfc_req_fw_upgrade, int, S_IRUGO|S_IWUSR);
4518 MODULE_PARM_DESC(lpfc_req_fw_upgrade, "Enable Linux generic firmware upgrade");
4519 lpfc_param_show(request_firmware_upgrade)
4520
4521 /**
4522 * lpfc_request_firmware_upgrade_init - Enable initial linux generic fw upgrade
4523 * @phba: lpfc_hba pointer.
4524 * @val: 0 or 1.
4525 *
4526 * Description:
4527 * Set the initial Linux generic firmware upgrade enable or disable flag.
4528 *
4529 * Returns:
4530 * zero if val saved.
4531 * -EINVAL val out of range
4532 **/
4533 static int
4534 lpfc_request_firmware_upgrade_init(struct lpfc_hba *phba, int val)
4535 {
4536 if (val >= 0 && val <= 1) {
4537 phba->cfg_request_firmware_upgrade = val;
4538 return 0;
4539 }
4540 return -EINVAL;
4541 }
4542 static DEVICE_ATTR(lpfc_req_fw_upgrade, S_IRUGO | S_IWUSR,
4543 lpfc_request_firmware_upgrade_show,
4544 lpfc_request_firmware_upgrade_store);
4545
4546 /**
4547 * lpfc_fcp_imax_store
4548 *
4549 * @dev: class device that is converted into a Scsi_host.
4550 * @attr: device attribute, not used.
4551 * @buf: string with the number of fast-path FCP interrupts per second.
4552 * @count: unused variable.
4553 *
4554 * Description:
4555 * If val is in a valid range [636,651042], then set the adapter's
4556 * maximum number of fast-path FCP interrupts per second.
4557 *
4558 * Returns:
4559 * length of the buf on success if val is in range the intended mode
4560 * is supported.
4561 * -EINVAL if val out of range or intended mode is not supported.
4562 **/
4563 static ssize_t
4564 lpfc_fcp_imax_store(struct device *dev, struct device_attribute *attr,
4565 const char *buf, size_t count)
4566 {
4567 struct Scsi_Host *shost = class_to_shost(dev);
4568 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
4569 struct lpfc_hba *phba = vport->phba;
4570 int val = 0, i;
4571
4572 /* fcp_imax is only valid for SLI4 */
4573 if (phba->sli_rev != LPFC_SLI_REV4)
4574 return -EINVAL;
4575
4576 /* Sanity check on user data */
4577 if (!isdigit(buf[0]))
4578 return -EINVAL;
4579 if (sscanf(buf, "%i", &val) != 1)
4580 return -EINVAL;
4581
4582 /*
4583 * Value range for the HBA is [5000,5000000]
4584 * The value for each EQ depends on how many EQs are configured.
4585 * Allow value == 0
4586 */
4587 if (val && (val < LPFC_MIN_IMAX || val > LPFC_MAX_IMAX))
4588 return -EINVAL;
4589
4590 phba->cfg_fcp_imax = (uint32_t)val;
4591 phba->initial_imax = phba->cfg_fcp_imax;
4592
4593 for (i = 0; i < phba->io_channel_irqs; i += LPFC_MAX_EQ_DELAY_EQID_CNT)
4594 lpfc_modify_hba_eq_delay(phba, i, LPFC_MAX_EQ_DELAY_EQID_CNT,
4595 val);
4596
4597 return strlen(buf);
4598 }
4599
4600 /*
4601 # lpfc_fcp_imax: The maximum number of fast-path FCP interrupts per second
4602 # for the HBA.
4603 #
4604 # Value range is [5,000 to 5,000,000]. Default value is 50,000.
4605 */
4606 static int lpfc_fcp_imax = LPFC_DEF_IMAX;
4607 module_param(lpfc_fcp_imax, int, S_IRUGO|S_IWUSR);
4608 MODULE_PARM_DESC(lpfc_fcp_imax,
4609 "Set the maximum number of FCP interrupts per second per HBA");
4610 lpfc_param_show(fcp_imax)
4611
4612 /**
4613 * lpfc_fcp_imax_init - Set the initial sr-iov virtual function enable
4614 * @phba: lpfc_hba pointer.
4615 * @val: link speed value.
4616 *
4617 * Description:
4618 * If val is in a valid range [636,651042], then initialize the adapter's
4619 * maximum number of fast-path FCP interrupts per second.
4620 *
4621 * Returns:
4622 * zero if val saved.
4623 * -EINVAL val out of range
4624 **/
4625 static int
4626 lpfc_fcp_imax_init(struct lpfc_hba *phba, int val)
4627 {
4628 if (phba->sli_rev != LPFC_SLI_REV4) {
4629 phba->cfg_fcp_imax = 0;
4630 return 0;
4631 }
4632
4633 if ((val >= LPFC_MIN_IMAX && val <= LPFC_MAX_IMAX) ||
4634 (val == 0)) {
4635 phba->cfg_fcp_imax = val;
4636 return 0;
4637 }
4638
4639 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4640 "3016 lpfc_fcp_imax: %d out of range, using default\n",
4641 val);
4642 phba->cfg_fcp_imax = LPFC_DEF_IMAX;
4643
4644 return 0;
4645 }
4646
4647 static DEVICE_ATTR_RW(lpfc_fcp_imax);
4648
4649 /*
4650 * lpfc_auto_imax: Controls Auto-interrupt coalescing values support.
4651 * 0 No auto_imax support
4652 * 1 auto imax on
4653 * Auto imax will change the value of fcp_imax on a per EQ basis, using
4654 * the EQ Delay Multiplier, depending on the activity for that EQ.
4655 * Value range [0,1]. Default value is 1.
4656 */
4657 LPFC_ATTR_RW(auto_imax, 1, 0, 1, "Enable Auto imax");
4658
4659 /**
4660 * lpfc_state_show - Display current driver CPU affinity
4661 * @dev: class converted to a Scsi_host structure.
4662 * @attr: device attribute, not used.
4663 * @buf: on return contains text describing the state of the link.
4664 *
4665 * Returns: size of formatted string.
4666 **/
4667 static ssize_t
4668 lpfc_fcp_cpu_map_show(struct device *dev, struct device_attribute *attr,
4669 char *buf)
4670 {
4671 struct Scsi_Host *shost = class_to_shost(dev);
4672 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
4673 struct lpfc_hba *phba = vport->phba;
4674 struct lpfc_vector_map_info *cpup;
4675 int len = 0;
4676
4677 if ((phba->sli_rev != LPFC_SLI_REV4) ||
4678 (phba->intr_type != MSIX))
4679 return len;
4680
4681 switch (phba->cfg_fcp_cpu_map) {
4682 case 0:
4683 len += scnprintf(buf + len, PAGE_SIZE-len,
4684 "fcp_cpu_map: No mapping (%d)\n",
4685 phba->cfg_fcp_cpu_map);
4686 return len;
4687 case 1:
4688 len += scnprintf(buf + len, PAGE_SIZE-len,
4689 "fcp_cpu_map: HBA centric mapping (%d): "
4690 "%d online CPUs\n",
4691 phba->cfg_fcp_cpu_map,
4692 phba->sli4_hba.num_online_cpu);
4693 break;
4694 case 2:
4695 len += scnprintf(buf + len, PAGE_SIZE-len,
4696 "fcp_cpu_map: Driver centric mapping (%d): "
4697 "%d online CPUs\n",
4698 phba->cfg_fcp_cpu_map,
4699 phba->sli4_hba.num_online_cpu);
4700 break;
4701 }
4702
4703 while (phba->sli4_hba.curr_disp_cpu < phba->sli4_hba.num_present_cpu) {
4704 cpup = &phba->sli4_hba.cpu_map[phba->sli4_hba.curr_disp_cpu];
4705
4706 /* margin should fit in this and the truncated message */
4707 if (cpup->irq == LPFC_VECTOR_MAP_EMPTY)
4708 len += scnprintf(buf + len, PAGE_SIZE-len,
4709 "CPU %02d io_chan %02d "
4710 "physid %d coreid %d\n",
4711 phba->sli4_hba.curr_disp_cpu,
4712 cpup->channel_id, cpup->phys_id,
4713 cpup->core_id);
4714 else
4715 len += scnprintf(buf + len, PAGE_SIZE-len,
4716 "CPU %02d io_chan %02d "
4717 "physid %d coreid %d IRQ %d\n",
4718 phba->sli4_hba.curr_disp_cpu,
4719 cpup->channel_id, cpup->phys_id,
4720 cpup->core_id, cpup->irq);
4721
4722 phba->sli4_hba.curr_disp_cpu++;
4723
4724 /* display max number of CPUs keeping some margin */
4725 if (phba->sli4_hba.curr_disp_cpu <
4726 phba->sli4_hba.num_present_cpu &&
4727 (len >= (PAGE_SIZE - 64))) {
4728 len += scnprintf(buf + len, PAGE_SIZE-len, "more...\n");
4729 break;
4730 }
4731 }
4732
4733 if (phba->sli4_hba.curr_disp_cpu == phba->sli4_hba.num_present_cpu)
4734 phba->sli4_hba.curr_disp_cpu = 0;
4735
4736 return len;
4737 }
4738
4739 /**
4740 * lpfc_fcp_cpu_map_store - Change CPU affinity of driver vectors
4741 * @dev: class device that is converted into a Scsi_host.
4742 * @attr: device attribute, not used.
4743 * @buf: one or more lpfc_polling_flags values.
4744 * @count: not used.
4745 *
4746 * Returns:
4747 * -EINVAL - Not implemented yet.
4748 **/
4749 static ssize_t
4750 lpfc_fcp_cpu_map_store(struct device *dev, struct device_attribute *attr,
4751 const char *buf, size_t count)
4752 {
4753 int status = -EINVAL;
4754 return status;
4755 }
4756
4757 /*
4758 # lpfc_fcp_cpu_map: Defines how to map CPUs to IRQ vectors
4759 # for the HBA.
4760 #
4761 # Value range is [0 to 2]. Default value is LPFC_DRIVER_CPU_MAP (2).
4762 # 0 - Do not affinitze IRQ vectors
4763 # 1 - Affintize HBA vectors with respect to each HBA
4764 # (start with CPU0 for each HBA)
4765 # 2 - Affintize HBA vectors with respect to the entire driver
4766 # (round robin thru all CPUs across all HBAs)
4767 */
4768 static int lpfc_fcp_cpu_map = LPFC_DRIVER_CPU_MAP;
4769 module_param(lpfc_fcp_cpu_map, int, S_IRUGO|S_IWUSR);
4770 MODULE_PARM_DESC(lpfc_fcp_cpu_map,
4771 "Defines how to map CPUs to IRQ vectors per HBA");
4772
4773 /**
4774 * lpfc_fcp_cpu_map_init - Set the initial sr-iov virtual function enable
4775 * @phba: lpfc_hba pointer.
4776 * @val: link speed value.
4777 *
4778 * Description:
4779 * If val is in a valid range [0-2], then affinitze the adapter's
4780 * MSIX vectors.
4781 *
4782 * Returns:
4783 * zero if val saved.
4784 * -EINVAL val out of range
4785 **/
4786 static int
4787 lpfc_fcp_cpu_map_init(struct lpfc_hba *phba, int val)
4788 {
4789 if (phba->sli_rev != LPFC_SLI_REV4) {
4790 phba->cfg_fcp_cpu_map = 0;
4791 return 0;
4792 }
4793
4794 if (val >= LPFC_MIN_CPU_MAP && val <= LPFC_MAX_CPU_MAP) {
4795 phba->cfg_fcp_cpu_map = val;
4796 return 0;
4797 }
4798
4799 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4800 "3326 lpfc_fcp_cpu_map: %d out of range, using "
4801 "default\n", val);
4802 phba->cfg_fcp_cpu_map = LPFC_DRIVER_CPU_MAP;
4803
4804 return 0;
4805 }
4806
4807 static DEVICE_ATTR_RW(lpfc_fcp_cpu_map);
4808
4809 /*
4810 # lpfc_fcp_class: Determines FC class to use for the FCP protocol.
4811 # Value range is [2,3]. Default value is 3.
4812 */
4813 LPFC_VPORT_ATTR_R(fcp_class, 3, 2, 3,
4814 "Select Fibre Channel class of service for FCP sequences");
4815
4816 /*
4817 # lpfc_use_adisc: Use ADISC for FCP rediscovery instead of PLOGI. Value range
4818 # is [0,1]. Default value is 0.
4819 */
4820 LPFC_VPORT_ATTR_RW(use_adisc, 0, 0, 1,
4821 "Use ADISC on rediscovery to authenticate FCP devices");
4822
4823 /*
4824 # lpfc_first_burst_size: First burst size to use on the NPorts
4825 # that support first burst.
4826 # Value range is [0,65536]. Default value is 0.
4827 */
4828 LPFC_VPORT_ATTR_RW(first_burst_size, 0, 0, 65536,
4829 "First burst size for Targets that support first burst");
4830
4831 /*
4832 * lpfc_nvmet_fb_size: NVME Target mode supported first burst size.
4833 * When the driver is configured as an NVME target, this value is
4834 * communicated to the NVME initiator in the PRLI response. It is
4835 * used only when the lpfc_nvme_enable_fb and lpfc_nvmet_support
4836 * parameters are set and the target is sending the PRLI RSP.
4837 * Parameter supported on physical port only - no NPIV support.
4838 * Value range is [0,65536]. Default value is 0.
4839 */
4840 LPFC_ATTR_RW(nvmet_fb_size, 0, 0, 65536,
4841 "NVME Target mode first burst size in 512B increments.");
4842
4843 /*
4844 * lpfc_nvme_enable_fb: Enable NVME first burst on I and T functions.
4845 * For the Initiator (I), enabling this parameter means that an NVMET
4846 * PRLI response with FBA enabled and an FB_SIZE set to a nonzero value will be
4847 * processed by the initiator for subsequent NVME FCP IO. For the target
4848 * function (T), enabling this parameter qualifies the lpfc_nvmet_fb_size
4849 * driver parameter as the target function's first burst size returned to the
4850 * initiator in the target's NVME PRLI response. Parameter supported on physical
4851 * port only - no NPIV support.
4852 * Value range is [0,1]. Default value is 0 (disabled).
4853 */
4854 LPFC_ATTR_RW(nvme_enable_fb, 0, 0, 1,
4855 "Enable First Burst feature on I and T functions.");
4856
4857 /*
4858 # lpfc_max_scsicmpl_time: Use scsi command completion time to control I/O queue
4859 # depth. Default value is 0. When the value of this parameter is zero the
4860 # SCSI command completion time is not used for controlling I/O queue depth. When
4861 # the parameter is set to a non-zero value, the I/O queue depth is controlled
4862 # to limit the I/O completion time to the parameter value.
4863 # The value is set in milliseconds.
4864 */
4865 LPFC_VPORT_ATTR(max_scsicmpl_time, 0, 0, 60000,
4866 "Use command completion time to control queue depth");
4867
4868 lpfc_vport_param_show(max_scsicmpl_time);
4869 static int
4870 lpfc_max_scsicmpl_time_set(struct lpfc_vport *vport, int val)
4871 {
4872 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4873 struct lpfc_nodelist *ndlp, *next_ndlp;
4874
4875 if (val == vport->cfg_max_scsicmpl_time)
4876 return 0;
4877 if ((val < 0) || (val > 60000))
4878 return -EINVAL;
4879 vport->cfg_max_scsicmpl_time = val;
4880
4881 spin_lock_irq(shost->host_lock);
4882 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
4883 if (!NLP_CHK_NODE_ACT(ndlp))
4884 continue;
4885 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
4886 continue;
4887 ndlp->cmd_qdepth = vport->cfg_tgt_queue_depth;
4888 }
4889 spin_unlock_irq(shost->host_lock);
4890 return 0;
4891 }
4892 lpfc_vport_param_store(max_scsicmpl_time);
4893 static DEVICE_ATTR_RW(lpfc_max_scsicmpl_time);
4894
4895 /*
4896 # lpfc_ack0: Use ACK0, instead of ACK1 for class 2 acknowledgement. Value
4897 # range is [0,1]. Default value is 0.
4898 */
4899 LPFC_ATTR_R(ack0, 0, 0, 1, "Enable ACK0 support");
4900
4901 /*
4902 * lpfc_io_sched: Determine scheduling algrithmn for issuing FCP cmds
4903 * range is [0,1]. Default value is 0.
4904 * For [0], FCP commands are issued to Work Queues ina round robin fashion.
4905 * For [1], FCP commands are issued to a Work Queue associated with the
4906 * current CPU.
4907 *
4908 * LPFC_FCP_SCHED_ROUND_ROBIN == 0
4909 * LPFC_FCP_SCHED_BY_CPU == 1
4910 *
4911 * The driver dynamically sets this to 1 (BY_CPU) if it's able to set up cpu
4912 * affinity for FCP/NVME I/Os through Work Queues associated with the current
4913 * CPU. Otherwise, the default 0 (Round Robin) scheduling of FCP/NVME I/Os
4914 * through WQs will be used.
4915 */
4916 LPFC_ATTR_RW(fcp_io_sched, LPFC_FCP_SCHED_ROUND_ROBIN,
4917 LPFC_FCP_SCHED_ROUND_ROBIN,
4918 LPFC_FCP_SCHED_BY_CPU,
4919 "Determine scheduling algorithm for "
4920 "issuing commands [0] - Round Robin, [1] - Current CPU");
4921
4922 /*
4923 # lpfc_fcp2_no_tgt_reset: Determine bus reset behavior
4924 # range is [0,1]. Default value is 0.
4925 # For [0], bus reset issues target reset to ALL devices
4926 # For [1], bus reset issues target reset to non-FCP2 devices
4927 */
4928 LPFC_ATTR_RW(fcp2_no_tgt_reset, 0, 0, 1, "Determine bus reset behavior for "
4929 "FCP2 devices [0] - issue tgt reset, [1] - no tgt reset");
4930
4931
4932 /*
4933 # lpfc_cr_delay & lpfc_cr_count: Default values for I/O colaesing
4934 # cr_delay (msec) or cr_count outstanding commands. cr_delay can take
4935 # value [0,63]. cr_count can take value [1,255]. Default value of cr_delay
4936 # is 0. Default value of cr_count is 1. The cr_count feature is disabled if
4937 # cr_delay is set to 0.
4938 */
4939 LPFC_ATTR_RW(cr_delay, 0, 0, 63, "A count of milliseconds after which an "
4940 "interrupt response is generated");
4941
4942 LPFC_ATTR_RW(cr_count, 1, 1, 255, "A count of I/O completions after which an "
4943 "interrupt response is generated");
4944
4945 /*
4946 # lpfc_multi_ring_support: Determines how many rings to spread available
4947 # cmd/rsp IOCB entries across.
4948 # Value range is [1,2]. Default value is 1.
4949 */
4950 LPFC_ATTR_R(multi_ring_support, 1, 1, 2, "Determines number of primary "
4951 "SLI rings to spread IOCB entries across");
4952
4953 /*
4954 # lpfc_multi_ring_rctl: If lpfc_multi_ring_support is enabled, this
4955 # identifies what rctl value to configure the additional ring for.
4956 # Value range is [1,0xff]. Default value is 4 (Unsolicated Data).
4957 */
4958 LPFC_ATTR_R(multi_ring_rctl, FC_RCTL_DD_UNSOL_DATA, 1,
4959 255, "Identifies RCTL for additional ring configuration");
4960
4961 /*
4962 # lpfc_multi_ring_type: If lpfc_multi_ring_support is enabled, this
4963 # identifies what type value to configure the additional ring for.
4964 # Value range is [1,0xff]. Default value is 5 (LLC/SNAP).
4965 */
4966 LPFC_ATTR_R(multi_ring_type, FC_TYPE_IP, 1,
4967 255, "Identifies TYPE for additional ring configuration");
4968
4969 /*
4970 # lpfc_enable_SmartSAN: Sets up FDMI support for SmartSAN
4971 # 0 = SmartSAN functionality disabled (default)
4972 # 1 = SmartSAN functionality enabled
4973 # This parameter will override the value of lpfc_fdmi_on module parameter.
4974 # Value range is [0,1]. Default value is 0.
4975 */
4976 LPFC_ATTR_R(enable_SmartSAN, 0, 0, 1, "Enable SmartSAN functionality");
4977
4978 /*
4979 # lpfc_fdmi_on: Controls FDMI support.
4980 # 0 No FDMI support (default)
4981 # 1 Traditional FDMI support
4982 # Traditional FDMI support means the driver will assume FDMI-2 support;
4983 # however, if that fails, it will fallback to FDMI-1.
4984 # If lpfc_enable_SmartSAN is set to 1, the driver ignores lpfc_fdmi_on.
4985 # If lpfc_enable_SmartSAN is set 0, the driver uses the current value of
4986 # lpfc_fdmi_on.
4987 # Value range [0,1]. Default value is 0.
4988 */
4989 LPFC_ATTR_R(fdmi_on, 0, 0, 1, "Enable FDMI support");
4990
4991 /*
4992 # Specifies the maximum number of ELS cmds we can have outstanding (for
4993 # discovery). Value range is [1,64]. Default value = 32.
4994 */
4995 LPFC_VPORT_ATTR(discovery_threads, 32, 1, 64, "Maximum number of ELS commands "
4996 "during discovery");
4997
4998 /*
4999 # lpfc_max_luns: maximum allowed LUN ID. This is the highest LUN ID that
5000 # will be scanned by the SCSI midlayer when sequential scanning is
5001 # used; and is also the highest LUN ID allowed when the SCSI midlayer
5002 # parses REPORT_LUN responses. The lpfc driver has no LUN count or
5003 # LUN ID limit, but the SCSI midlayer requires this field for the uses
5004 # above. The lpfc driver limits the default value to 255 for two reasons.
5005 # As it bounds the sequential scan loop, scanning for thousands of luns
5006 # on a target can take minutes of wall clock time. Additionally,
5007 # there are FC targets, such as JBODs, that only recognize 8-bits of
5008 # LUN ID. When they receive a value greater than 8 bits, they chop off
5009 # the high order bits. In other words, they see LUN IDs 0, 256, 512,
5010 # and so on all as LUN ID 0. This causes the linux kernel, which sees
5011 # valid responses at each of the LUN IDs, to believe there are multiple
5012 # devices present, when in fact, there is only 1.
5013 # A customer that is aware of their target behaviors, and the results as
5014 # indicated above, is welcome to increase the lpfc_max_luns value.
5015 # As mentioned, this value is not used by the lpfc driver, only the
5016 # SCSI midlayer.
5017 # Value range is [0,65535]. Default value is 255.
5018 # NOTE: The SCSI layer might probe all allowed LUN on some old targets.
5019 */
5020 LPFC_VPORT_ULL_ATTR_R(max_luns, 255, 0, 65535, "Maximum allowed LUN ID");
5021
5022 /*
5023 # lpfc_poll_tmo: .Milliseconds driver will wait between polling FCP ring.
5024 # Value range is [1,255], default value is 10.
5025 */
5026 LPFC_ATTR_RW(poll_tmo, 10, 1, 255,
5027 "Milliseconds driver will wait between polling FCP ring");
5028
5029 /*
5030 # lpfc_task_mgmt_tmo: Maximum time to wait for task management commands
5031 # to complete in seconds. Value range is [5,180], default value is 60.
5032 */
5033 LPFC_ATTR_RW(task_mgmt_tmo, 60, 5, 180,
5034 "Maximum time to wait for task management commands to complete");
5035 /*
5036 # lpfc_use_msi: Use MSI (Message Signaled Interrupts) in systems that
5037 # support this feature
5038 # 0 = MSI disabled
5039 # 1 = MSI enabled
5040 # 2 = MSI-X enabled (default)
5041 # Value range is [0,2]. Default value is 2.
5042 */
5043 LPFC_ATTR_R(use_msi, 2, 0, 2, "Use Message Signaled Interrupts (1) or "
5044 "MSI-X (2), if possible");
5045
5046 /*
5047 * lpfc_nvme_oas: Use the oas bit when sending NVME/NVMET IOs
5048 *
5049 * 0 = NVME OAS disabled
5050 * 1 = NVME OAS enabled
5051 *
5052 * Value range is [0,1]. Default value is 0.
5053 */
5054 LPFC_ATTR_RW(nvme_oas, 0, 0, 1,
5055 "Use OAS bit on NVME IOs");
5056
5057 /*
5058 * lpfc_nvme_embed_cmd: Use the oas bit when sending NVME/NVMET IOs
5059 *
5060 * 0 = Put NVME Command in SGL
5061 * 1 = Embed NVME Command in WQE (unless G7)
5062 * 2 = Embed NVME Command in WQE (force)
5063 *
5064 * Value range is [0,2]. Default value is 1.
5065 */
5066 LPFC_ATTR_RW(nvme_embed_cmd, 1, 0, 2,
5067 "Embed NVME Command in WQE");
5068
5069 /*
5070 * lpfc_fcp_io_channel: Set the number of FCP IO channels the driver
5071 * will advertise it supports to the SCSI layer. This also will map to
5072 * the number of WQs the driver will create.
5073 *
5074 * 0 = Configure the number of io channels to the number of active CPUs.
5075 * 1,32 = Manually specify how many io channels to use.
5076 *
5077 * Value range is [0,32]. Default value is 4.
5078 */
5079 LPFC_ATTR_R(fcp_io_channel,
5080 LPFC_FCP_IO_CHAN_DEF,
5081 LPFC_HBA_IO_CHAN_MIN, LPFC_HBA_IO_CHAN_MAX,
5082 "Set the number of FCP I/O channels");
5083
5084 /*
5085 * lpfc_nvme_io_channel: Set the number of IO hardware queues the driver
5086 * will advertise it supports to the NVME layer. This also will map to
5087 * the number of WQs the driver will create.
5088 *
5089 * This module parameter is valid when lpfc_enable_fc4_type is set
5090 * to support NVME.
5091 *
5092 * The NVME Layer will try to create this many, plus 1 administrative
5093 * hardware queue. The administrative queue will always map to WQ 0
5094 * A hardware IO queue maps (qidx) to a specific driver WQ.
5095 *
5096 * 0 = Configure the number of io channels to the number of active CPUs.
5097 * 1,32 = Manually specify how many io channels to use.
5098 *
5099 * Value range is [0,32]. Default value is 0.
5100 */
5101 LPFC_ATTR_R(nvme_io_channel,
5102 LPFC_NVME_IO_CHAN_DEF,
5103 LPFC_HBA_IO_CHAN_MIN, LPFC_HBA_IO_CHAN_MAX,
5104 "Set the number of NVME I/O channels");
5105
5106 /*
5107 # lpfc_enable_hba_reset: Allow or prevent HBA resets to the hardware.
5108 # 0 = HBA resets disabled
5109 # 1 = HBA resets enabled (default)
5110 # Value range is [0,1]. Default value is 1.
5111 */
5112 LPFC_ATTR_R(enable_hba_reset, 1, 0, 1, "Enable HBA resets from the driver.");
5113
5114 /*
5115 # lpfc_enable_hba_heartbeat: Disable HBA heartbeat timer..
5116 # 0 = HBA Heartbeat disabled
5117 # 1 = HBA Heartbeat enabled (default)
5118 # Value range is [0,1]. Default value is 1.
5119 */
5120 LPFC_ATTR_R(enable_hba_heartbeat, 0, 0, 1, "Enable HBA Heartbeat.");
5121
5122 /*
5123 # lpfc_EnableXLane: Enable Express Lane Feature
5124 # 0x0 Express Lane Feature disabled
5125 # 0x1 Express Lane Feature enabled
5126 # Value range is [0,1]. Default value is 0.
5127 */
5128 LPFC_ATTR_R(EnableXLane, 0, 0, 1, "Enable Express Lane Feature.");
5129
5130 /*
5131 # lpfc_XLanePriority: Define CS_CTL priority for Express Lane Feature
5132 # 0x0 - 0x7f = CS_CTL field in FC header (high 7 bits)
5133 # Value range is [0x0,0x7f]. Default value is 0
5134 */
5135 LPFC_ATTR_RW(XLanePriority, 0, 0x0, 0x7f, "CS_CTL for Express Lane Feature.");
5136
5137 /*
5138 # lpfc_enable_bg: Enable BlockGuard (Emulex's Implementation of T10-DIF)
5139 # 0 = BlockGuard disabled (default)
5140 # 1 = BlockGuard enabled
5141 # Value range is [0,1]. Default value is 0.
5142 */
5143 LPFC_ATTR_R(enable_bg, 0, 0, 1, "Enable BlockGuard Support");
5144
5145 /*
5146 # lpfc_fcp_look_ahead: Look ahead for completions in FCP start routine
5147 # 0 = disabled (default)
5148 # 1 = enabled
5149 # Value range is [0,1]. Default value is 0.
5150 #
5151 # This feature in under investigation and may be supported in the future.
5152 */
5153 unsigned int lpfc_fcp_look_ahead = LPFC_LOOK_AHEAD_OFF;
5154
5155 /*
5156 # lpfc_prot_mask: i
5157 # - Bit mask of host protection capabilities used to register with the
5158 # SCSI mid-layer
5159 # - Only meaningful if BG is turned on (lpfc_enable_bg=1).
5160 # - Allows you to ultimately specify which profiles to use
5161 # - Default will result in registering capabilities for all profiles.
5162 # - SHOST_DIF_TYPE1_PROTECTION 1
5163 # HBA supports T10 DIF Type 1: HBA to Target Type 1 Protection
5164 # - SHOST_DIX_TYPE0_PROTECTION 8
5165 # HBA supports DIX Type 0: Host to HBA protection only
5166 # - SHOST_DIX_TYPE1_PROTECTION 16
5167 # HBA supports DIX Type 1: Host to HBA Type 1 protection
5168 #
5169 */
5170 LPFC_ATTR(prot_mask,
5171 (SHOST_DIF_TYPE1_PROTECTION |
5172 SHOST_DIX_TYPE0_PROTECTION |
5173 SHOST_DIX_TYPE1_PROTECTION),
5174 0,
5175 (SHOST_DIF_TYPE1_PROTECTION |
5176 SHOST_DIX_TYPE0_PROTECTION |
5177 SHOST_DIX_TYPE1_PROTECTION),
5178 "T10-DIF host protection capabilities mask");
5179
5180 /*
5181 # lpfc_prot_guard: i
5182 # - Bit mask of protection guard types to register with the SCSI mid-layer
5183 # - Guard types are currently either 1) T10-DIF CRC 2) IP checksum
5184 # - Allows you to ultimately specify which profiles to use
5185 # - Default will result in registering capabilities for all guard types
5186 #
5187 */
5188 LPFC_ATTR(prot_guard,
5189 SHOST_DIX_GUARD_IP, SHOST_DIX_GUARD_CRC, SHOST_DIX_GUARD_IP,
5190 "T10-DIF host protection guard type");
5191
5192 /*
5193 * Delay initial NPort discovery when Clean Address bit is cleared in
5194 * FLOGI/FDISC accept and FCID/Fabric name/Fabric portname is changed.
5195 * This parameter can have value 0 or 1.
5196 * When this parameter is set to 0, no delay is added to the initial
5197 * discovery.
5198 * When this parameter is set to non-zero value, initial Nport discovery is
5199 * delayed by ra_tov seconds when Clean Address bit is cleared in FLOGI/FDISC
5200 * accept and FCID/Fabric name/Fabric portname is changed.
5201 * Driver always delay Nport discovery for subsequent FLOGI/FDISC completion
5202 * when Clean Address bit is cleared in FLOGI/FDISC
5203 * accept and FCID/Fabric name/Fabric portname is changed.
5204 * Default value is 0.
5205 */
5206 LPFC_ATTR(delay_discovery, 0, 0, 1,
5207 "Delay NPort discovery when Clean Address bit is cleared.");
5208
5209 /*
5210 * lpfc_sg_seg_cnt - Initial Maximum DMA Segment Count
5211 * This value can be set to values between 64 and 4096. The default value is
5212 * 64, but may be increased to allow for larger Max I/O sizes. The scsi layer
5213 * will be allowed to request I/Os of sizes up to (MAX_SEG_COUNT * SEG_SIZE).
5214 * Because of the additional overhead involved in setting up T10-DIF,
5215 * this parameter will be limited to 128 if BlockGuard is enabled under SLI4
5216 * and will be limited to 512 if BlockGuard is enabled under SLI3.
5217 */
5218 LPFC_ATTR_R(sg_seg_cnt, LPFC_DEFAULT_SG_SEG_CNT, LPFC_MIN_SG_SEG_CNT,
5219 LPFC_MAX_SG_SEG_CNT, "Max Scatter Gather Segment Count");
5220
5221 /*
5222 * lpfc_enable_mds_diags: Enable MDS Diagnostics
5223 * 0 = MDS Diagnostics disabled (default)
5224 * 1 = MDS Diagnostics enabled
5225 * Value range is [0,1]. Default value is 0.
5226 */
5227 LPFC_ATTR_R(enable_mds_diags, 0, 0, 1, "Enable MDS Diagnostics");
5228
5229 /*
5230 * lpfc_enable_bbcr: Enable BB Credit Recovery
5231 * 0 = BB Credit Recovery disabled
5232 * 1 = BB Credit Recovery enabled (default)
5233 * Value range is [0,1]. Default value is 1.
5234 */
5235 LPFC_BBCR_ATTR_RW(enable_bbcr, 1, 0, 1, "Enable BBC Recovery");
5236
5237 /*
5238 * lpfc_enable_dpp: Enable DPP on G7
5239 * 0 = DPP on G7 disabled
5240 * 1 = DPP on G7 enabled (default)
5241 * Value range is [0,1]. Default value is 1.
5242 */
5243 LPFC_ATTR_RW(enable_dpp, 1, 0, 1, "Enable Direct Packet Push");
5244
5245 struct device_attribute *lpfc_hba_attrs[] = {
5246 &dev_attr_nvme_info,
5247 &dev_attr_bg_info,
5248 &dev_attr_bg_guard_err,
5249 &dev_attr_bg_apptag_err,
5250 &dev_attr_bg_reftag_err,
5251 &dev_attr_info,
5252 &dev_attr_serialnum,
5253 &dev_attr_modeldesc,
5254 &dev_attr_modelname,
5255 &dev_attr_programtype,
5256 &dev_attr_portnum,
5257 &dev_attr_fwrev,
5258 &dev_attr_hdw,
5259 &dev_attr_option_rom_version,
5260 &dev_attr_link_state,
5261 &dev_attr_num_discovered_ports,
5262 &dev_attr_menlo_mgmt_mode,
5263 &dev_attr_lpfc_drvr_version,
5264 &dev_attr_lpfc_enable_fip,
5265 &dev_attr_lpfc_temp_sensor,
5266 &dev_attr_lpfc_log_verbose,
5267 &dev_attr_lpfc_lun_queue_depth,
5268 &dev_attr_lpfc_tgt_queue_depth,
5269 &dev_attr_lpfc_hba_queue_depth,
5270 &dev_attr_lpfc_peer_port_login,
5271 &dev_attr_lpfc_nodev_tmo,
5272 &dev_attr_lpfc_devloss_tmo,
5273 &dev_attr_lpfc_enable_fc4_type,
5274 &dev_attr_lpfc_xri_split,
5275 &dev_attr_lpfc_fcp_class,
5276 &dev_attr_lpfc_use_adisc,
5277 &dev_attr_lpfc_first_burst_size,
5278 &dev_attr_lpfc_ack0,
5279 &dev_attr_lpfc_topology,
5280 &dev_attr_lpfc_scan_down,
5281 &dev_attr_lpfc_link_speed,
5282 &dev_attr_lpfc_fcp_io_sched,
5283 &dev_attr_lpfc_fcp2_no_tgt_reset,
5284 &dev_attr_lpfc_cr_delay,
5285 &dev_attr_lpfc_cr_count,
5286 &dev_attr_lpfc_multi_ring_support,
5287 &dev_attr_lpfc_multi_ring_rctl,
5288 &dev_attr_lpfc_multi_ring_type,
5289 &dev_attr_lpfc_fdmi_on,
5290 &dev_attr_lpfc_enable_SmartSAN,
5291 &dev_attr_lpfc_max_luns,
5292 &dev_attr_lpfc_enable_npiv,
5293 &dev_attr_lpfc_fcf_failover_policy,
5294 &dev_attr_lpfc_enable_rrq,
5295 &dev_attr_nport_evt_cnt,
5296 &dev_attr_board_mode,
5297 &dev_attr_max_vpi,
5298 &dev_attr_used_vpi,
5299 &dev_attr_max_rpi,
5300 &dev_attr_used_rpi,
5301 &dev_attr_max_xri,
5302 &dev_attr_used_xri,
5303 &dev_attr_npiv_info,
5304 &dev_attr_issue_reset,
5305 &dev_attr_lpfc_poll,
5306 &dev_attr_lpfc_poll_tmo,
5307 &dev_attr_lpfc_task_mgmt_tmo,
5308 &dev_attr_lpfc_use_msi,
5309 &dev_attr_lpfc_nvme_oas,
5310 &dev_attr_lpfc_nvme_embed_cmd,
5311 &dev_attr_lpfc_auto_imax,
5312 &dev_attr_lpfc_fcp_imax,
5313 &dev_attr_lpfc_fcp_cpu_map,
5314 &dev_attr_lpfc_fcp_io_channel,
5315 &dev_attr_lpfc_suppress_rsp,
5316 &dev_attr_lpfc_nvme_io_channel,
5317 &dev_attr_lpfc_nvmet_mrq,
5318 &dev_attr_lpfc_nvme_enable_fb,
5319 &dev_attr_lpfc_nvmet_fb_size,
5320 &dev_attr_lpfc_enable_bg,
5321 &dev_attr_lpfc_soft_wwnn,
5322 &dev_attr_lpfc_soft_wwpn,
5323 &dev_attr_lpfc_soft_wwn_enable,
5324 &dev_attr_lpfc_enable_hba_reset,
5325 &dev_attr_lpfc_enable_hba_heartbeat,
5326 &dev_attr_lpfc_EnableXLane,
5327 &dev_attr_lpfc_XLanePriority,
5328 &dev_attr_lpfc_xlane_lun,
5329 &dev_attr_lpfc_xlane_tgt,
5330 &dev_attr_lpfc_xlane_vpt,
5331 &dev_attr_lpfc_xlane_lun_state,
5332 &dev_attr_lpfc_xlane_lun_status,
5333 &dev_attr_lpfc_xlane_priority,
5334 &dev_attr_lpfc_sg_seg_cnt,
5335 &dev_attr_lpfc_max_scsicmpl_time,
5336 &dev_attr_lpfc_stat_data_ctrl,
5337 &dev_attr_lpfc_aer_support,
5338 &dev_attr_lpfc_aer_state_cleanup,
5339 &dev_attr_lpfc_sriov_nr_virtfn,
5340 &dev_attr_lpfc_req_fw_upgrade,
5341 &dev_attr_lpfc_suppress_link_up,
5342 &dev_attr_lpfc_iocb_cnt,
5343 &dev_attr_iocb_hw,
5344 &dev_attr_txq_hw,
5345 &dev_attr_txcmplq_hw,
5346 &dev_attr_lpfc_fips_level,
5347 &dev_attr_lpfc_fips_rev,
5348 &dev_attr_lpfc_dss,
5349 &dev_attr_lpfc_sriov_hw_max_virtfn,
5350 &dev_attr_protocol,
5351 &dev_attr_lpfc_xlane_supported,
5352 &dev_attr_lpfc_enable_mds_diags,
5353 &dev_attr_lpfc_enable_bbcr,
5354 &dev_attr_lpfc_enable_dpp,
5355 NULL,
5356 };
5357
5358 struct device_attribute *lpfc_vport_attrs[] = {
5359 &dev_attr_info,
5360 &dev_attr_link_state,
5361 &dev_attr_num_discovered_ports,
5362 &dev_attr_lpfc_drvr_version,
5363 &dev_attr_lpfc_log_verbose,
5364 &dev_attr_lpfc_lun_queue_depth,
5365 &dev_attr_lpfc_tgt_queue_depth,
5366 &dev_attr_lpfc_nodev_tmo,
5367 &dev_attr_lpfc_devloss_tmo,
5368 &dev_attr_lpfc_hba_queue_depth,
5369 &dev_attr_lpfc_peer_port_login,
5370 &dev_attr_lpfc_restrict_login,
5371 &dev_attr_lpfc_fcp_class,
5372 &dev_attr_lpfc_use_adisc,
5373 &dev_attr_lpfc_first_burst_size,
5374 &dev_attr_lpfc_max_luns,
5375 &dev_attr_nport_evt_cnt,
5376 &dev_attr_npiv_info,
5377 &dev_attr_lpfc_enable_da_id,
5378 &dev_attr_lpfc_max_scsicmpl_time,
5379 &dev_attr_lpfc_stat_data_ctrl,
5380 &dev_attr_lpfc_static_vport,
5381 &dev_attr_lpfc_fips_level,
5382 &dev_attr_lpfc_fips_rev,
5383 NULL,
5384 };
5385
5386 /**
5387 * sysfs_ctlreg_write - Write method for writing to ctlreg
5388 * @filp: open sysfs file
5389 * @kobj: kernel kobject that contains the kernel class device.
5390 * @bin_attr: kernel attributes passed to us.
5391 * @buf: contains the data to be written to the adapter IOREG space.
5392 * @off: offset into buffer to beginning of data.
5393 * @count: bytes to transfer.
5394 *
5395 * Description:
5396 * Accessed via /sys/class/scsi_host/hostxxx/ctlreg.
5397 * Uses the adapter io control registers to send buf contents to the adapter.
5398 *
5399 * Returns:
5400 * -ERANGE off and count combo out of range
5401 * -EINVAL off, count or buff address invalid
5402 * -EPERM adapter is offline
5403 * value of count, buf contents written
5404 **/
5405 static ssize_t
5406 sysfs_ctlreg_write(struct file *filp, struct kobject *kobj,
5407 struct bin_attribute *bin_attr,
5408 char *buf, loff_t off, size_t count)
5409 {
5410 size_t buf_off;
5411 struct device *dev = container_of(kobj, struct device, kobj);
5412 struct Scsi_Host *shost = class_to_shost(dev);
5413 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5414 struct lpfc_hba *phba = vport->phba;
5415
5416 if (phba->sli_rev >= LPFC_SLI_REV4)
5417 return -EPERM;
5418
5419 if ((off + count) > FF_REG_AREA_SIZE)
5420 return -ERANGE;
5421
5422 if (count <= LPFC_REG_WRITE_KEY_SIZE)
5423 return 0;
5424
5425 if (off % 4 || count % 4 || (unsigned long)buf % 4)
5426 return -EINVAL;
5427
5428 /* This is to protect HBA registers from accidental writes. */
5429 if (memcmp(buf, LPFC_REG_WRITE_KEY, LPFC_REG_WRITE_KEY_SIZE))
5430 return -EINVAL;
5431
5432 if (!(vport->fc_flag & FC_OFFLINE_MODE))
5433 return -EPERM;
5434
5435 spin_lock_irq(&phba->hbalock);
5436 for (buf_off = 0; buf_off < count - LPFC_REG_WRITE_KEY_SIZE;
5437 buf_off += sizeof(uint32_t))
5438 writel(*((uint32_t *)(buf + buf_off + LPFC_REG_WRITE_KEY_SIZE)),
5439 phba->ctrl_regs_memmap_p + off + buf_off);
5440
5441 spin_unlock_irq(&phba->hbalock);
5442
5443 return count;
5444 }
5445
5446 /**
5447 * sysfs_ctlreg_read - Read method for reading from ctlreg
5448 * @filp: open sysfs file
5449 * @kobj: kernel kobject that contains the kernel class device.
5450 * @bin_attr: kernel attributes passed to us.
5451 * @buf: if successful contains the data from the adapter IOREG space.
5452 * @off: offset into buffer to beginning of data.
5453 * @count: bytes to transfer.
5454 *
5455 * Description:
5456 * Accessed via /sys/class/scsi_host/hostxxx/ctlreg.
5457 * Uses the adapter io control registers to read data into buf.
5458 *
5459 * Returns:
5460 * -ERANGE off and count combo out of range
5461 * -EINVAL off, count or buff address invalid
5462 * value of count, buf contents read
5463 **/
5464 static ssize_t
5465 sysfs_ctlreg_read(struct file *filp, struct kobject *kobj,
5466 struct bin_attribute *bin_attr,
5467 char *buf, loff_t off, size_t count)
5468 {
5469 size_t buf_off;
5470 uint32_t * tmp_ptr;
5471 struct device *dev = container_of(kobj, struct device, kobj);
5472 struct Scsi_Host *shost = class_to_shost(dev);
5473 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5474 struct lpfc_hba *phba = vport->phba;
5475
5476 if (phba->sli_rev >= LPFC_SLI_REV4)
5477 return -EPERM;
5478
5479 if (off > FF_REG_AREA_SIZE)
5480 return -ERANGE;
5481
5482 if ((off + count) > FF_REG_AREA_SIZE)
5483 count = FF_REG_AREA_SIZE - off;
5484
5485 if (count == 0) return 0;
5486
5487 if (off % 4 || count % 4 || (unsigned long)buf % 4)
5488 return -EINVAL;
5489
5490 spin_lock_irq(&phba->hbalock);
5491
5492 for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t)) {
5493 tmp_ptr = (uint32_t *)(buf + buf_off);
5494 *tmp_ptr = readl(phba->ctrl_regs_memmap_p + off + buf_off);
5495 }
5496
5497 spin_unlock_irq(&phba->hbalock);
5498
5499 return count;
5500 }
5501
5502 static struct bin_attribute sysfs_ctlreg_attr = {
5503 .attr = {
5504 .name = "ctlreg",
5505 .mode = S_IRUSR | S_IWUSR,
5506 },
5507 .size = 256,
5508 .read = sysfs_ctlreg_read,
5509 .write = sysfs_ctlreg_write,
5510 };
5511
5512 /**
5513 * sysfs_mbox_write - Write method for writing information via mbox
5514 * @filp: open sysfs file
5515 * @kobj: kernel kobject that contains the kernel class device.
5516 * @bin_attr: kernel attributes passed to us.
5517 * @buf: contains the data to be written to sysfs mbox.
5518 * @off: offset into buffer to beginning of data.
5519 * @count: bytes to transfer.
5520 *
5521 * Description:
5522 * Deprecated function. All mailbox access from user space is performed via the
5523 * bsg interface.
5524 *
5525 * Returns:
5526 * -EPERM operation not permitted
5527 **/
5528 static ssize_t
5529 sysfs_mbox_write(struct file *filp, struct kobject *kobj,
5530 struct bin_attribute *bin_attr,
5531 char *buf, loff_t off, size_t count)
5532 {
5533 return -EPERM;
5534 }
5535
5536 /**
5537 * sysfs_mbox_read - Read method for reading information via mbox
5538 * @filp: open sysfs file
5539 * @kobj: kernel kobject that contains the kernel class device.
5540 * @bin_attr: kernel attributes passed to us.
5541 * @buf: contains the data to be read from sysfs mbox.
5542 * @off: offset into buffer to beginning of data.
5543 * @count: bytes to transfer.
5544 *
5545 * Description:
5546 * Deprecated function. All mailbox access from user space is performed via the
5547 * bsg interface.
5548 *
5549 * Returns:
5550 * -EPERM operation not permitted
5551 **/
5552 static ssize_t
5553 sysfs_mbox_read(struct file *filp, struct kobject *kobj,
5554 struct bin_attribute *bin_attr,
5555 char *buf, loff_t off, size_t count)
5556 {
5557 return -EPERM;
5558 }
5559
5560 static struct bin_attribute sysfs_mbox_attr = {
5561 .attr = {
5562 .name = "mbox",
5563 .mode = S_IRUSR | S_IWUSR,
5564 },
5565 .size = MAILBOX_SYSFS_MAX,
5566 .read = sysfs_mbox_read,
5567 .write = sysfs_mbox_write,
5568 };
5569
5570 /**
5571 * lpfc_alloc_sysfs_attr - Creates the ctlreg and mbox entries
5572 * @vport: address of lpfc vport structure.
5573 *
5574 * Return codes:
5575 * zero on success
5576 * error return code from sysfs_create_bin_file()
5577 **/
5578 int
5579 lpfc_alloc_sysfs_attr(struct lpfc_vport *vport)
5580 {
5581 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5582 int error;
5583
5584 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
5585 &sysfs_drvr_stat_data_attr);
5586
5587 /* Virtual ports do not need ctrl_reg and mbox */
5588 if (error || vport->port_type == LPFC_NPIV_PORT)
5589 goto out;
5590
5591 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
5592 &sysfs_ctlreg_attr);
5593 if (error)
5594 goto out_remove_stat_attr;
5595
5596 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
5597 &sysfs_mbox_attr);
5598 if (error)
5599 goto out_remove_ctlreg_attr;
5600
5601 return 0;
5602 out_remove_ctlreg_attr:
5603 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_ctlreg_attr);
5604 out_remove_stat_attr:
5605 sysfs_remove_bin_file(&shost->shost_dev.kobj,
5606 &sysfs_drvr_stat_data_attr);
5607 out:
5608 return error;
5609 }
5610
5611 /**
5612 * lpfc_free_sysfs_attr - Removes the ctlreg and mbox entries
5613 * @vport: address of lpfc vport structure.
5614 **/
5615 void
5616 lpfc_free_sysfs_attr(struct lpfc_vport *vport)
5617 {
5618 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5619 sysfs_remove_bin_file(&shost->shost_dev.kobj,
5620 &sysfs_drvr_stat_data_attr);
5621 /* Virtual ports do not need ctrl_reg and mbox */
5622 if (vport->port_type == LPFC_NPIV_PORT)
5623 return;
5624 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_mbox_attr);
5625 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_ctlreg_attr);
5626 }
5627
5628 /*
5629 * Dynamic FC Host Attributes Support
5630 */
5631
5632 /**
5633 * lpfc_get_host_symbolic_name - Copy symbolic name into the scsi host
5634 * @shost: kernel scsi host pointer.
5635 **/
5636 static void
5637 lpfc_get_host_symbolic_name(struct Scsi_Host *shost)
5638 {
5639 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
5640
5641 lpfc_vport_symbolic_node_name(vport, fc_host_symbolic_name(shost),
5642 sizeof fc_host_symbolic_name(shost));
5643 }
5644
5645 /**
5646 * lpfc_get_host_port_id - Copy the vport DID into the scsi host port id
5647 * @shost: kernel scsi host pointer.
5648 **/
5649 static void
5650 lpfc_get_host_port_id(struct Scsi_Host *shost)
5651 {
5652 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5653
5654 /* note: fc_myDID already in cpu endianness */
5655 fc_host_port_id(shost) = vport->fc_myDID;
5656 }
5657
5658 /**
5659 * lpfc_get_host_port_type - Set the value of the scsi host port type
5660 * @shost: kernel scsi host pointer.
5661 **/
5662 static void
5663 lpfc_get_host_port_type(struct Scsi_Host *shost)
5664 {
5665 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5666 struct lpfc_hba *phba = vport->phba;
5667
5668 spin_lock_irq(shost->host_lock);
5669
5670 if (vport->port_type == LPFC_NPIV_PORT) {
5671 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
5672 } else if (lpfc_is_link_up(phba)) {
5673 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
5674 if (vport->fc_flag & FC_PUBLIC_LOOP)
5675 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
5676 else
5677 fc_host_port_type(shost) = FC_PORTTYPE_LPORT;
5678 } else {
5679 if (vport->fc_flag & FC_FABRIC)
5680 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
5681 else
5682 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
5683 }
5684 } else
5685 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
5686
5687 spin_unlock_irq(shost->host_lock);
5688 }
5689
5690 /**
5691 * lpfc_get_host_port_state - Set the value of the scsi host port state
5692 * @shost: kernel scsi host pointer.
5693 **/
5694 static void
5695 lpfc_get_host_port_state(struct Scsi_Host *shost)
5696 {
5697 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5698 struct lpfc_hba *phba = vport->phba;
5699
5700 spin_lock_irq(shost->host_lock);
5701
5702 if (vport->fc_flag & FC_OFFLINE_MODE)
5703 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
5704 else {
5705 switch (phba->link_state) {
5706 case LPFC_LINK_UNKNOWN:
5707 case LPFC_LINK_DOWN:
5708 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
5709 break;
5710 case LPFC_LINK_UP:
5711 case LPFC_CLEAR_LA:
5712 case LPFC_HBA_READY:
5713 /* Links up, reports port state accordingly */
5714 if (vport->port_state < LPFC_VPORT_READY)
5715 fc_host_port_state(shost) =
5716 FC_PORTSTATE_BYPASSED;
5717 else
5718 fc_host_port_state(shost) =
5719 FC_PORTSTATE_ONLINE;
5720 break;
5721 case LPFC_HBA_ERROR:
5722 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
5723 break;
5724 default:
5725 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
5726 break;
5727 }
5728 }
5729
5730 spin_unlock_irq(shost->host_lock);
5731 }
5732
5733 /**
5734 * lpfc_get_host_speed - Set the value of the scsi host speed
5735 * @shost: kernel scsi host pointer.
5736 **/
5737 static void
5738 lpfc_get_host_speed(struct Scsi_Host *shost)
5739 {
5740 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5741 struct lpfc_hba *phba = vport->phba;
5742
5743 spin_lock_irq(shost->host_lock);
5744
5745 if ((lpfc_is_link_up(phba)) && (!(phba->hba_flag & HBA_FCOE_MODE))) {
5746 switch(phba->fc_linkspeed) {
5747 case LPFC_LINK_SPEED_1GHZ:
5748 fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
5749 break;
5750 case LPFC_LINK_SPEED_2GHZ:
5751 fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
5752 break;
5753 case LPFC_LINK_SPEED_4GHZ:
5754 fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
5755 break;
5756 case LPFC_LINK_SPEED_8GHZ:
5757 fc_host_speed(shost) = FC_PORTSPEED_8GBIT;
5758 break;
5759 case LPFC_LINK_SPEED_10GHZ:
5760 fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
5761 break;
5762 case LPFC_LINK_SPEED_16GHZ:
5763 fc_host_speed(shost) = FC_PORTSPEED_16GBIT;
5764 break;
5765 case LPFC_LINK_SPEED_32GHZ:
5766 fc_host_speed(shost) = FC_PORTSPEED_32GBIT;
5767 break;
5768 case LPFC_LINK_SPEED_64GHZ:
5769 fc_host_speed(shost) = FC_PORTSPEED_64GBIT;
5770 break;
5771 default:
5772 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
5773 break;
5774 }
5775 } else
5776 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
5777
5778 spin_unlock_irq(shost->host_lock);
5779 }
5780
5781 /**
5782 * lpfc_get_host_fabric_name - Set the value of the scsi host fabric name
5783 * @shost: kernel scsi host pointer.
5784 **/
5785 static void
5786 lpfc_get_host_fabric_name (struct Scsi_Host *shost)
5787 {
5788 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5789 struct lpfc_hba *phba = vport->phba;
5790 u64 node_name;
5791
5792 spin_lock_irq(shost->host_lock);
5793
5794 if ((vport->port_state > LPFC_FLOGI) &&
5795 ((vport->fc_flag & FC_FABRIC) ||
5796 ((phba->fc_topology == LPFC_TOPOLOGY_LOOP) &&
5797 (vport->fc_flag & FC_PUBLIC_LOOP))))
5798 node_name = wwn_to_u64(phba->fc_fabparam.nodeName.u.wwn);
5799 else
5800 /* fabric is local port if there is no F/FL_Port */
5801 node_name = 0;
5802
5803 spin_unlock_irq(shost->host_lock);
5804
5805 fc_host_fabric_name(shost) = node_name;
5806 }
5807
5808 /**
5809 * lpfc_get_stats - Return statistical information about the adapter
5810 * @shost: kernel scsi host pointer.
5811 *
5812 * Notes:
5813 * NULL on error for link down, no mbox pool, sli2 active,
5814 * management not allowed, memory allocation error, or mbox error.
5815 *
5816 * Returns:
5817 * NULL for error
5818 * address of the adapter host statistics
5819 **/
5820 static struct fc_host_statistics *
5821 lpfc_get_stats(struct Scsi_Host *shost)
5822 {
5823 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5824 struct lpfc_hba *phba = vport->phba;
5825 struct lpfc_sli *psli = &phba->sli;
5826 struct fc_host_statistics *hs = &phba->link_stats;
5827 struct lpfc_lnk_stat * lso = &psli->lnk_stat_offsets;
5828 LPFC_MBOXQ_t *pmboxq;
5829 MAILBOX_t *pmb;
5830 unsigned long seconds;
5831 int rc = 0;
5832
5833 /*
5834 * prevent udev from issuing mailbox commands until the port is
5835 * configured.
5836 */
5837 if (phba->link_state < LPFC_LINK_DOWN ||
5838 !phba->mbox_mem_pool ||
5839 (phba->sli.sli_flag & LPFC_SLI_ACTIVE) == 0)
5840 return NULL;
5841
5842 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
5843 return NULL;
5844
5845 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5846 if (!pmboxq)
5847 return NULL;
5848 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
5849
5850 pmb = &pmboxq->u.mb;
5851 pmb->mbxCommand = MBX_READ_STATUS;
5852 pmb->mbxOwner = OWN_HOST;
5853 pmboxq->context1 = NULL;
5854 pmboxq->vport = vport;
5855
5856 if (vport->fc_flag & FC_OFFLINE_MODE)
5857 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
5858 else
5859 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
5860
5861 if (rc != MBX_SUCCESS) {
5862 if (rc != MBX_TIMEOUT)
5863 mempool_free(pmboxq, phba->mbox_mem_pool);
5864 return NULL;
5865 }
5866
5867 memset(hs, 0, sizeof (struct fc_host_statistics));
5868
5869 hs->tx_frames = pmb->un.varRdStatus.xmitFrameCnt;
5870 /*
5871 * The MBX_READ_STATUS returns tx_k_bytes which has to
5872 * converted to words
5873 */
5874 hs->tx_words = (uint64_t)
5875 ((uint64_t)pmb->un.varRdStatus.xmitByteCnt
5876 * (uint64_t)256);
5877 hs->rx_frames = pmb->un.varRdStatus.rcvFrameCnt;
5878 hs->rx_words = (uint64_t)
5879 ((uint64_t)pmb->un.varRdStatus.rcvByteCnt
5880 * (uint64_t)256);
5881
5882 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
5883 pmb->mbxCommand = MBX_READ_LNK_STAT;
5884 pmb->mbxOwner = OWN_HOST;
5885 pmboxq->context1 = NULL;
5886 pmboxq->vport = vport;
5887
5888 if (vport->fc_flag & FC_OFFLINE_MODE)
5889 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
5890 else
5891 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
5892
5893 if (rc != MBX_SUCCESS) {
5894 if (rc != MBX_TIMEOUT)
5895 mempool_free(pmboxq, phba->mbox_mem_pool);
5896 return NULL;
5897 }
5898
5899 hs->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
5900 hs->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
5901 hs->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
5902 hs->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
5903 hs->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
5904 hs->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
5905 hs->error_frames = pmb->un.varRdLnk.crcCnt;
5906
5907 hs->link_failure_count -= lso->link_failure_count;
5908 hs->loss_of_sync_count -= lso->loss_of_sync_count;
5909 hs->loss_of_signal_count -= lso->loss_of_signal_count;
5910 hs->prim_seq_protocol_err_count -= lso->prim_seq_protocol_err_count;
5911 hs->invalid_tx_word_count -= lso->invalid_tx_word_count;
5912 hs->invalid_crc_count -= lso->invalid_crc_count;
5913 hs->error_frames -= lso->error_frames;
5914
5915 if (phba->hba_flag & HBA_FCOE_MODE) {
5916 hs->lip_count = -1;
5917 hs->nos_count = (phba->link_events >> 1);
5918 hs->nos_count -= lso->link_events;
5919 } else if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
5920 hs->lip_count = (phba->fc_eventTag >> 1);
5921 hs->lip_count -= lso->link_events;
5922 hs->nos_count = -1;
5923 } else {
5924 hs->lip_count = -1;
5925 hs->nos_count = (phba->fc_eventTag >> 1);
5926 hs->nos_count -= lso->link_events;
5927 }
5928
5929 hs->dumped_frames = -1;
5930
5931 seconds = get_seconds();
5932 if (seconds < psli->stats_start)
5933 hs->seconds_since_last_reset = seconds +
5934 ((unsigned long)-1 - psli->stats_start);
5935 else
5936 hs->seconds_since_last_reset = seconds - psli->stats_start;
5937
5938 mempool_free(pmboxq, phba->mbox_mem_pool);
5939
5940 return hs;
5941 }
5942
5943 /**
5944 * lpfc_reset_stats - Copy the adapter link stats information
5945 * @shost: kernel scsi host pointer.
5946 **/
5947 static void
5948 lpfc_reset_stats(struct Scsi_Host *shost)
5949 {
5950 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5951 struct lpfc_hba *phba = vport->phba;
5952 struct lpfc_sli *psli = &phba->sli;
5953 struct lpfc_lnk_stat *lso = &psli->lnk_stat_offsets;
5954 LPFC_MBOXQ_t *pmboxq;
5955 MAILBOX_t *pmb;
5956 int rc = 0;
5957
5958 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
5959 return;
5960
5961 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5962 if (!pmboxq)
5963 return;
5964 memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
5965
5966 pmb = &pmboxq->u.mb;
5967 pmb->mbxCommand = MBX_READ_STATUS;
5968 pmb->mbxOwner = OWN_HOST;
5969 pmb->un.varWords[0] = 0x1; /* reset request */
5970 pmboxq->context1 = NULL;
5971 pmboxq->vport = vport;
5972
5973 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
5974 (!(psli->sli_flag & LPFC_SLI_ACTIVE)))
5975 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
5976 else
5977 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
5978
5979 if (rc != MBX_SUCCESS) {
5980 if (rc != MBX_TIMEOUT)
5981 mempool_free(pmboxq, phba->mbox_mem_pool);
5982 return;
5983 }
5984
5985 memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
5986 pmb->mbxCommand = MBX_READ_LNK_STAT;
5987 pmb->mbxOwner = OWN_HOST;
5988 pmboxq->context1 = NULL;
5989 pmboxq->vport = vport;
5990
5991 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
5992 (!(psli->sli_flag & LPFC_SLI_ACTIVE)))
5993 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
5994 else
5995 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
5996
5997 if (rc != MBX_SUCCESS) {
5998 if (rc != MBX_TIMEOUT)
5999 mempool_free( pmboxq, phba->mbox_mem_pool);
6000 return;
6001 }
6002
6003 lso->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
6004 lso->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
6005 lso->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
6006 lso->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
6007 lso->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
6008 lso->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
6009 lso->error_frames = pmb->un.varRdLnk.crcCnt;
6010 if (phba->hba_flag & HBA_FCOE_MODE)
6011 lso->link_events = (phba->link_events >> 1);
6012 else
6013 lso->link_events = (phba->fc_eventTag >> 1);
6014
6015 psli->stats_start = get_seconds();
6016
6017 mempool_free(pmboxq, phba->mbox_mem_pool);
6018
6019 return;
6020 }
6021
6022 /*
6023 * The LPFC driver treats linkdown handling as target loss events so there
6024 * are no sysfs handlers for link_down_tmo.
6025 */
6026
6027 /**
6028 * lpfc_get_node_by_target - Return the nodelist for a target
6029 * @starget: kernel scsi target pointer.
6030 *
6031 * Returns:
6032 * address of the node list if found
6033 * NULL target not found
6034 **/
6035 static struct lpfc_nodelist *
6036 lpfc_get_node_by_target(struct scsi_target *starget)
6037 {
6038 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
6039 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
6040 struct lpfc_nodelist *ndlp;
6041
6042 spin_lock_irq(shost->host_lock);
6043 /* Search for this, mapped, target ID */
6044 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
6045 if (NLP_CHK_NODE_ACT(ndlp) &&
6046 ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
6047 starget->id == ndlp->nlp_sid) {
6048 spin_unlock_irq(shost->host_lock);
6049 return ndlp;
6050 }
6051 }
6052 spin_unlock_irq(shost->host_lock);
6053 return NULL;
6054 }
6055
6056 /**
6057 * lpfc_get_starget_port_id - Set the target port id to the ndlp DID or -1
6058 * @starget: kernel scsi target pointer.
6059 **/
6060 static void
6061 lpfc_get_starget_port_id(struct scsi_target *starget)
6062 {
6063 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
6064
6065 fc_starget_port_id(starget) = ndlp ? ndlp->nlp_DID : -1;
6066 }
6067
6068 /**
6069 * lpfc_get_starget_node_name - Set the target node name
6070 * @starget: kernel scsi target pointer.
6071 *
6072 * Description: Set the target node name to the ndlp node name wwn or zero.
6073 **/
6074 static void
6075 lpfc_get_starget_node_name(struct scsi_target *starget)
6076 {
6077 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
6078
6079 fc_starget_node_name(starget) =
6080 ndlp ? wwn_to_u64(ndlp->nlp_nodename.u.wwn) : 0;
6081 }
6082
6083 /**
6084 * lpfc_get_starget_port_name - Set the target port name
6085 * @starget: kernel scsi target pointer.
6086 *
6087 * Description: set the target port name to the ndlp port name wwn or zero.
6088 **/
6089 static void
6090 lpfc_get_starget_port_name(struct scsi_target *starget)
6091 {
6092 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
6093
6094 fc_starget_port_name(starget) =
6095 ndlp ? wwn_to_u64(ndlp->nlp_portname.u.wwn) : 0;
6096 }
6097
6098 /**
6099 * lpfc_set_rport_loss_tmo - Set the rport dev loss tmo
6100 * @rport: fc rport address.
6101 * @timeout: new value for dev loss tmo.
6102 *
6103 * Description:
6104 * If timeout is non zero set the dev_loss_tmo to timeout, else set
6105 * dev_loss_tmo to one.
6106 **/
6107 static void
6108 lpfc_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
6109 {
6110 if (timeout)
6111 rport->dev_loss_tmo = timeout;
6112 else
6113 rport->dev_loss_tmo = 1;
6114 }
6115
6116 /**
6117 * lpfc_rport_show_function - Return rport target information
6118 *
6119 * Description:
6120 * Macro that uses field to generate a function with the name lpfc_show_rport_
6121 *
6122 * lpfc_show_rport_##field: returns the bytes formatted in buf
6123 * @cdev: class converted to an fc_rport.
6124 * @buf: on return contains the target_field or zero.
6125 *
6126 * Returns: size of formatted string.
6127 **/
6128 #define lpfc_rport_show_function(field, format_string, sz, cast) \
6129 static ssize_t \
6130 lpfc_show_rport_##field (struct device *dev, \
6131 struct device_attribute *attr, \
6132 char *buf) \
6133 { \
6134 struct fc_rport *rport = transport_class_to_rport(dev); \
6135 struct lpfc_rport_data *rdata = rport->hostdata; \
6136 return scnprintf(buf, sz, format_string, \
6137 (rdata->target) ? cast rdata->target->field : 0); \
6138 }
6139
6140 #define lpfc_rport_rd_attr(field, format_string, sz) \
6141 lpfc_rport_show_function(field, format_string, sz, ) \
6142 static FC_RPORT_ATTR(field, S_IRUGO, lpfc_show_rport_##field, NULL)
6143
6144 /**
6145 * lpfc_set_vport_symbolic_name - Set the vport's symbolic name
6146 * @fc_vport: The fc_vport who's symbolic name has been changed.
6147 *
6148 * Description:
6149 * This function is called by the transport after the @fc_vport's symbolic name
6150 * has been changed. This function re-registers the symbolic name with the
6151 * switch to propagate the change into the fabric if the vport is active.
6152 **/
6153 static void
6154 lpfc_set_vport_symbolic_name(struct fc_vport *fc_vport)
6155 {
6156 struct lpfc_vport *vport = *(struct lpfc_vport **)fc_vport->dd_data;
6157
6158 if (vport->port_state == LPFC_VPORT_READY)
6159 lpfc_ns_cmd(vport, SLI_CTNS_RSPN_ID, 0, 0);
6160 }
6161
6162 /**
6163 * lpfc_hba_log_verbose_init - Set hba's log verbose level
6164 * @phba: Pointer to lpfc_hba struct.
6165 *
6166 * This function is called by the lpfc_get_cfgparam() routine to set the
6167 * module lpfc_log_verbose into the @phba cfg_log_verbose for use with
6168 * log message according to the module's lpfc_log_verbose parameter setting
6169 * before hba port or vport created.
6170 **/
6171 static void
6172 lpfc_hba_log_verbose_init(struct lpfc_hba *phba, uint32_t verbose)
6173 {
6174 phba->cfg_log_verbose = verbose;
6175 }
6176
6177 struct fc_function_template lpfc_transport_functions = {
6178 /* fixed attributes the driver supports */
6179 .show_host_node_name = 1,
6180 .show_host_port_name = 1,
6181 .show_host_supported_classes = 1,
6182 .show_host_supported_fc4s = 1,
6183 .show_host_supported_speeds = 1,
6184 .show_host_maxframe_size = 1,
6185
6186 .get_host_symbolic_name = lpfc_get_host_symbolic_name,
6187 .show_host_symbolic_name = 1,
6188
6189 /* dynamic attributes the driver supports */
6190 .get_host_port_id = lpfc_get_host_port_id,
6191 .show_host_port_id = 1,
6192
6193 .get_host_port_type = lpfc_get_host_port_type,
6194 .show_host_port_type = 1,
6195
6196 .get_host_port_state = lpfc_get_host_port_state,
6197 .show_host_port_state = 1,
6198
6199 /* active_fc4s is shown but doesn't change (thus no get function) */
6200 .show_host_active_fc4s = 1,
6201
6202 .get_host_speed = lpfc_get_host_speed,
6203 .show_host_speed = 1,
6204
6205 .get_host_fabric_name = lpfc_get_host_fabric_name,
6206 .show_host_fabric_name = 1,
6207
6208 /*
6209 * The LPFC driver treats linkdown handling as target loss events
6210 * so there are no sysfs handlers for link_down_tmo.
6211 */
6212
6213 .get_fc_host_stats = lpfc_get_stats,
6214 .reset_fc_host_stats = lpfc_reset_stats,
6215
6216 .dd_fcrport_size = sizeof(struct lpfc_rport_data),
6217 .show_rport_maxframe_size = 1,
6218 .show_rport_supported_classes = 1,
6219
6220 .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
6221 .show_rport_dev_loss_tmo = 1,
6222
6223 .get_starget_port_id = lpfc_get_starget_port_id,
6224 .show_starget_port_id = 1,
6225
6226 .get_starget_node_name = lpfc_get_starget_node_name,
6227 .show_starget_node_name = 1,
6228
6229 .get_starget_port_name = lpfc_get_starget_port_name,
6230 .show_starget_port_name = 1,
6231
6232 .issue_fc_host_lip = lpfc_issue_lip,
6233 .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
6234 .terminate_rport_io = lpfc_terminate_rport_io,
6235
6236 .dd_fcvport_size = sizeof(struct lpfc_vport *),
6237
6238 .vport_disable = lpfc_vport_disable,
6239
6240 .set_vport_symbolic_name = lpfc_set_vport_symbolic_name,
6241
6242 .bsg_request = lpfc_bsg_request,
6243 .bsg_timeout = lpfc_bsg_timeout,
6244 };
6245
6246 struct fc_function_template lpfc_vport_transport_functions = {
6247 /* fixed attributes the driver supports */
6248 .show_host_node_name = 1,
6249 .show_host_port_name = 1,
6250 .show_host_supported_classes = 1,
6251 .show_host_supported_fc4s = 1,
6252 .show_host_supported_speeds = 1,
6253 .show_host_maxframe_size = 1,
6254
6255 .get_host_symbolic_name = lpfc_get_host_symbolic_name,
6256 .show_host_symbolic_name = 1,
6257
6258 /* dynamic attributes the driver supports */
6259 .get_host_port_id = lpfc_get_host_port_id,
6260 .show_host_port_id = 1,
6261
6262 .get_host_port_type = lpfc_get_host_port_type,
6263 .show_host_port_type = 1,
6264
6265 .get_host_port_state = lpfc_get_host_port_state,
6266 .show_host_port_state = 1,
6267
6268 /* active_fc4s is shown but doesn't change (thus no get function) */
6269 .show_host_active_fc4s = 1,
6270
6271 .get_host_speed = lpfc_get_host_speed,
6272 .show_host_speed = 1,
6273
6274 .get_host_fabric_name = lpfc_get_host_fabric_name,
6275 .show_host_fabric_name = 1,
6276
6277 /*
6278 * The LPFC driver treats linkdown handling as target loss events
6279 * so there are no sysfs handlers for link_down_tmo.
6280 */
6281
6282 .get_fc_host_stats = lpfc_get_stats,
6283 .reset_fc_host_stats = lpfc_reset_stats,
6284
6285 .dd_fcrport_size = sizeof(struct lpfc_rport_data),
6286 .show_rport_maxframe_size = 1,
6287 .show_rport_supported_classes = 1,
6288
6289 .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
6290 .show_rport_dev_loss_tmo = 1,
6291
6292 .get_starget_port_id = lpfc_get_starget_port_id,
6293 .show_starget_port_id = 1,
6294
6295 .get_starget_node_name = lpfc_get_starget_node_name,
6296 .show_starget_node_name = 1,
6297
6298 .get_starget_port_name = lpfc_get_starget_port_name,
6299 .show_starget_port_name = 1,
6300
6301 .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
6302 .terminate_rport_io = lpfc_terminate_rport_io,
6303
6304 .vport_disable = lpfc_vport_disable,
6305
6306 .set_vport_symbolic_name = lpfc_set_vport_symbolic_name,
6307 };
6308
6309 /**
6310 * lpfc_get_cfgparam - Used during probe_one to init the adapter structure
6311 * @phba: lpfc_hba pointer.
6312 **/
6313 void
6314 lpfc_get_cfgparam(struct lpfc_hba *phba)
6315 {
6316 lpfc_fcp_io_sched_init(phba, lpfc_fcp_io_sched);
6317 lpfc_fcp2_no_tgt_reset_init(phba, lpfc_fcp2_no_tgt_reset);
6318 lpfc_cr_delay_init(phba, lpfc_cr_delay);
6319 lpfc_cr_count_init(phba, lpfc_cr_count);
6320 lpfc_multi_ring_support_init(phba, lpfc_multi_ring_support);
6321 lpfc_multi_ring_rctl_init(phba, lpfc_multi_ring_rctl);
6322 lpfc_multi_ring_type_init(phba, lpfc_multi_ring_type);
6323 lpfc_ack0_init(phba, lpfc_ack0);
6324 lpfc_topology_init(phba, lpfc_topology);
6325 lpfc_link_speed_init(phba, lpfc_link_speed);
6326 lpfc_poll_tmo_init(phba, lpfc_poll_tmo);
6327 lpfc_task_mgmt_tmo_init(phba, lpfc_task_mgmt_tmo);
6328 lpfc_enable_npiv_init(phba, lpfc_enable_npiv);
6329 lpfc_fcf_failover_policy_init(phba, lpfc_fcf_failover_policy);
6330 lpfc_enable_rrq_init(phba, lpfc_enable_rrq);
6331 lpfc_fdmi_on_init(phba, lpfc_fdmi_on);
6332 lpfc_enable_SmartSAN_init(phba, lpfc_enable_SmartSAN);
6333 lpfc_use_msi_init(phba, lpfc_use_msi);
6334 lpfc_nvme_oas_init(phba, lpfc_nvme_oas);
6335 lpfc_nvme_embed_cmd_init(phba, lpfc_nvme_embed_cmd);
6336 lpfc_auto_imax_init(phba, lpfc_auto_imax);
6337 lpfc_fcp_imax_init(phba, lpfc_fcp_imax);
6338 lpfc_fcp_cpu_map_init(phba, lpfc_fcp_cpu_map);
6339 lpfc_enable_hba_reset_init(phba, lpfc_enable_hba_reset);
6340 lpfc_enable_hba_heartbeat_init(phba, lpfc_enable_hba_heartbeat);
6341
6342 lpfc_EnableXLane_init(phba, lpfc_EnableXLane);
6343 if (phba->sli_rev != LPFC_SLI_REV4)
6344 phba->cfg_EnableXLane = 0;
6345 lpfc_XLanePriority_init(phba, lpfc_XLanePriority);
6346
6347 memset(phba->cfg_oas_tgt_wwpn, 0, (8 * sizeof(uint8_t)));
6348 memset(phba->cfg_oas_vpt_wwpn, 0, (8 * sizeof(uint8_t)));
6349 phba->cfg_oas_lun_state = 0;
6350 phba->cfg_oas_lun_status = 0;
6351 phba->cfg_oas_flags = 0;
6352 phba->cfg_oas_priority = 0;
6353 lpfc_enable_bg_init(phba, lpfc_enable_bg);
6354 lpfc_prot_mask_init(phba, lpfc_prot_mask);
6355 lpfc_prot_guard_init(phba, lpfc_prot_guard);
6356 if (phba->sli_rev == LPFC_SLI_REV4)
6357 phba->cfg_poll = 0;
6358 else
6359 phba->cfg_poll = lpfc_poll;
6360 lpfc_suppress_rsp_init(phba, lpfc_suppress_rsp);
6361
6362 lpfc_enable_fc4_type_init(phba, lpfc_enable_fc4_type);
6363 lpfc_nvmet_mrq_init(phba, lpfc_nvmet_mrq);
6364
6365 /* Initialize first burst. Target vs Initiator are different. */
6366 lpfc_nvme_enable_fb_init(phba, lpfc_nvme_enable_fb);
6367 lpfc_nvmet_fb_size_init(phba, lpfc_nvmet_fb_size);
6368 lpfc_fcp_io_channel_init(phba, lpfc_fcp_io_channel);
6369 lpfc_nvme_io_channel_init(phba, lpfc_nvme_io_channel);
6370 lpfc_enable_bbcr_init(phba, lpfc_enable_bbcr);
6371 lpfc_enable_dpp_init(phba, lpfc_enable_dpp);
6372
6373 if (phba->sli_rev != LPFC_SLI_REV4) {
6374 /* NVME only supported on SLI4 */
6375 phba->nvmet_support = 0;
6376 phba->cfg_enable_fc4_type = LPFC_ENABLE_FCP;
6377 phba->cfg_enable_bbcr = 0;
6378 } else {
6379 /* We MUST have FCP support */
6380 if (!(phba->cfg_enable_fc4_type & LPFC_ENABLE_FCP))
6381 phba->cfg_enable_fc4_type |= LPFC_ENABLE_FCP;
6382 }
6383
6384 if (phba->cfg_auto_imax && !phba->cfg_fcp_imax)
6385 phba->cfg_auto_imax = 0;
6386 phba->initial_imax = phba->cfg_fcp_imax;
6387
6388 /* A value of 0 means use the number of CPUs found in the system */
6389 if (phba->cfg_fcp_io_channel == 0)
6390 phba->cfg_fcp_io_channel = phba->sli4_hba.num_present_cpu;
6391 if (phba->cfg_nvme_io_channel == 0)
6392 phba->cfg_nvme_io_channel = phba->sli4_hba.num_present_cpu;
6393
6394 if (phba->cfg_enable_fc4_type == LPFC_ENABLE_NVME)
6395 phba->cfg_fcp_io_channel = 0;
6396
6397 if (phba->cfg_enable_fc4_type == LPFC_ENABLE_FCP)
6398 phba->cfg_nvme_io_channel = 0;
6399
6400 if (phba->cfg_fcp_io_channel > phba->cfg_nvme_io_channel)
6401 phba->io_channel_irqs = phba->cfg_fcp_io_channel;
6402 else
6403 phba->io_channel_irqs = phba->cfg_nvme_io_channel;
6404
6405 phba->cfg_soft_wwnn = 0L;
6406 phba->cfg_soft_wwpn = 0L;
6407 lpfc_xri_split_init(phba, lpfc_xri_split);
6408 lpfc_sg_seg_cnt_init(phba, lpfc_sg_seg_cnt);
6409 lpfc_hba_queue_depth_init(phba, lpfc_hba_queue_depth);
6410 lpfc_hba_log_verbose_init(phba, lpfc_log_verbose);
6411 lpfc_aer_support_init(phba, lpfc_aer_support);
6412 lpfc_sriov_nr_virtfn_init(phba, lpfc_sriov_nr_virtfn);
6413 lpfc_request_firmware_upgrade_init(phba, lpfc_req_fw_upgrade);
6414 lpfc_suppress_link_up_init(phba, lpfc_suppress_link_up);
6415 lpfc_iocb_cnt_init(phba, lpfc_iocb_cnt);
6416 lpfc_delay_discovery_init(phba, lpfc_delay_discovery);
6417 lpfc_sli_mode_init(phba, lpfc_sli_mode);
6418 phba->cfg_enable_dss = 1;
6419 lpfc_enable_mds_diags_init(phba, lpfc_enable_mds_diags);
6420 return;
6421 }
6422
6423 /**
6424 * lpfc_nvme_mod_param_dep - Adjust module parameter value based on
6425 * dependencies between protocols and roles.
6426 * @phba: lpfc_hba pointer.
6427 **/
6428 void
6429 lpfc_nvme_mod_param_dep(struct lpfc_hba *phba)
6430 {
6431 if (phba->cfg_nvme_io_channel > phba->sli4_hba.num_present_cpu)
6432 phba->cfg_nvme_io_channel = phba->sli4_hba.num_present_cpu;
6433
6434 if (phba->cfg_fcp_io_channel > phba->sli4_hba.num_present_cpu)
6435 phba->cfg_fcp_io_channel = phba->sli4_hba.num_present_cpu;
6436
6437 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME &&
6438 phba->nvmet_support) {
6439 phba->cfg_enable_fc4_type &= ~LPFC_ENABLE_FCP;
6440 phba->cfg_fcp_io_channel = 0;
6441
6442 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_DISC,
6443 "6013 %s x%x fb_size x%x, fb_max x%x\n",
6444 "NVME Target PRLI ACC enable_fb ",
6445 phba->cfg_nvme_enable_fb,
6446 phba->cfg_nvmet_fb_size,
6447 LPFC_NVMET_FB_SZ_MAX);
6448
6449 if (phba->cfg_nvme_enable_fb == 0)
6450 phba->cfg_nvmet_fb_size = 0;
6451 else {
6452 if (phba->cfg_nvmet_fb_size > LPFC_NVMET_FB_SZ_MAX)
6453 phba->cfg_nvmet_fb_size = LPFC_NVMET_FB_SZ_MAX;
6454 }
6455
6456 if (!phba->cfg_nvmet_mrq)
6457 phba->cfg_nvmet_mrq = phba->cfg_nvme_io_channel;
6458
6459 /* Adjust lpfc_nvmet_mrq to avoid running out of WQE slots */
6460 if (phba->cfg_nvmet_mrq > phba->cfg_nvme_io_channel) {
6461 phba->cfg_nvmet_mrq = phba->cfg_nvme_io_channel;
6462 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_DISC,
6463 "6018 Adjust lpfc_nvmet_mrq to %d\n",
6464 phba->cfg_nvmet_mrq);
6465 }
6466 if (phba->cfg_nvmet_mrq > LPFC_NVMET_MRQ_MAX)
6467 phba->cfg_nvmet_mrq = LPFC_NVMET_MRQ_MAX;
6468
6469 } else {
6470 /* Not NVME Target mode. Turn off Target parameters. */
6471 phba->nvmet_support = 0;
6472 phba->cfg_nvmet_mrq = LPFC_NVMET_MRQ_OFF;
6473 phba->cfg_nvmet_fb_size = 0;
6474 }
6475
6476 if (phba->cfg_fcp_io_channel > phba->cfg_nvme_io_channel)
6477 phba->io_channel_irqs = phba->cfg_fcp_io_channel;
6478 else
6479 phba->io_channel_irqs = phba->cfg_nvme_io_channel;
6480 }
6481
6482 /**
6483 * lpfc_get_vport_cfgparam - Used during port create, init the vport structure
6484 * @vport: lpfc_vport pointer.
6485 **/
6486 void
6487 lpfc_get_vport_cfgparam(struct lpfc_vport *vport)
6488 {
6489 lpfc_log_verbose_init(vport, lpfc_log_verbose);
6490 lpfc_lun_queue_depth_init(vport, lpfc_lun_queue_depth);
6491 lpfc_tgt_queue_depth_init(vport, lpfc_tgt_queue_depth);
6492 lpfc_devloss_tmo_init(vport, lpfc_devloss_tmo);
6493 lpfc_nodev_tmo_init(vport, lpfc_nodev_tmo);
6494 lpfc_peer_port_login_init(vport, lpfc_peer_port_login);
6495 lpfc_restrict_login_init(vport, lpfc_restrict_login);
6496 lpfc_fcp_class_init(vport, lpfc_fcp_class);
6497 lpfc_use_adisc_init(vport, lpfc_use_adisc);
6498 lpfc_first_burst_size_init(vport, lpfc_first_burst_size);
6499 lpfc_max_scsicmpl_time_init(vport, lpfc_max_scsicmpl_time);
6500 lpfc_discovery_threads_init(vport, lpfc_discovery_threads);
6501 lpfc_max_luns_init(vport, lpfc_max_luns);
6502 lpfc_scan_down_init(vport, lpfc_scan_down);
6503 lpfc_enable_da_id_init(vport, lpfc_enable_da_id);
6504 return;
6505 }