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