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