blob: 29ccb151922644ef9992f2d14883fcd58b12148b [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smart92494142011-02-16 12:39:44 -05004 * Copyright (C) 2004-2011 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * 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. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/ctype.h>
James Smart46fa3112007-04-25 09:51:45 -040023#include <linux/delay.h>
dea31012005-04-17 16:05:31 -050024#include <linux/pci.h>
25#include <linux/interrupt.h>
James Smart0d878412009-10-02 15:16:56 -040026#include <linux/aer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/gfp.h>
Andy Shevchenkoecc30992010-08-10 18:01:27 -070028#include <linux/kernel.h>
dea31012005-04-17 16:05:31 -050029
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040030#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050031#include <scsi/scsi_device.h>
32#include <scsi/scsi_host.h>
33#include <scsi/scsi_tcq.h>
34#include <scsi/scsi_transport_fc.h>
James Smart6a9c52c2009-10-02 15:16:51 -040035#include <scsi/fc/fc_fs.h>
dea31012005-04-17 16:05:31 -050036
James Smartda0436e2009-05-22 14:51:39 -040037#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050038#include "lpfc_hw.h"
39#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040040#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040041#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050042#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"
James Smart92d7f7b2007-06-17 19:56:38 -050049#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050050
James Smartc01f3202006-08-18 17:47:08 -040051#define LPFC_DEF_DEVLOSS_TMO 30
52#define LPFC_MIN_DEVLOSS_TMO 1
53#define LPFC_MAX_DEVLOSS_TMO 255
dea31012005-04-17 16:05:31 -050054
James Smarte59058c2008-08-24 21:49:00 -040055/**
James Smart3621a712009-04-06 18:47:14 -040056 * lpfc_jedec_to_ascii - Hex to ascii convertor according to JEDEC rules
James Smarte59058c2008-08-24 21:49:00 -040057 * @incr: integer to convert.
58 * @hdw: ascii string holding converted integer plus a string terminator.
59 *
60 * Description:
61 * JEDEC Joint Electron Device Engineering Council.
62 * Convert a 32 bit integer composed of 8 nibbles into an 8 byte ascii
63 * character string. The string is then terminated with a NULL in byte 9.
64 * Hex 0-9 becomes ascii '0' to '9'.
65 * Hex a-f becomes ascii '=' to 'B' capital B.
66 *
67 * Notes:
68 * Coded for 32 bit integers only.
69 **/
dea31012005-04-17 16:05:31 -050070static void
71lpfc_jedec_to_ascii(int incr, char hdw[])
72{
73 int i, j;
74 for (i = 0; i < 8; i++) {
75 j = (incr & 0xf);
76 if (j <= 9)
77 hdw[7 - i] = 0x30 + j;
78 else
79 hdw[7 - i] = 0x61 + j - 10;
80 incr = (incr >> 4);
81 }
82 hdw[8] = 0;
83 return;
84}
85
James Smarte59058c2008-08-24 21:49:00 -040086/**
James Smart3621a712009-04-06 18:47:14 -040087 * lpfc_drvr_version_show - Return the Emulex driver string with version number
James Smarte59058c2008-08-24 21:49:00 -040088 * @dev: class unused variable.
89 * @attr: device attribute, not used.
90 * @buf: on return contains the module description text.
91 *
92 * Returns: size of formatted string.
93 **/
dea31012005-04-17 16:05:31 -050094static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +010095lpfc_drvr_version_show(struct device *dev, struct device_attribute *attr,
96 char *buf)
dea31012005-04-17 16:05:31 -050097{
98 return snprintf(buf, PAGE_SIZE, LPFC_MODULE_DESC "\n");
99}
100
James Smart45ed1192009-10-02 15:17:02 -0400101/**
102 * lpfc_enable_fip_show - Return the fip mode of the HBA
103 * @dev: class unused variable.
104 * @attr: device attribute, not used.
105 * @buf: on return contains the module description text.
106 *
107 * Returns: size of formatted string.
108 **/
109static ssize_t
110lpfc_enable_fip_show(struct device *dev, struct device_attribute *attr,
111 char *buf)
112{
113 struct Scsi_Host *shost = class_to_shost(dev);
114 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
115 struct lpfc_hba *phba = vport->phba;
116
117 if (phba->hba_flag & HBA_FIP_SUPPORT)
118 return snprintf(buf, PAGE_SIZE, "1\n");
119 else
120 return snprintf(buf, PAGE_SIZE, "0\n");
121}
122
James Smart81301a92008-12-04 22:39:46 -0500123static ssize_t
124lpfc_bg_info_show(struct device *dev, struct device_attribute *attr,
125 char *buf)
126{
127 struct Scsi_Host *shost = class_to_shost(dev);
128 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
129 struct lpfc_hba *phba = vport->phba;
130
131 if (phba->cfg_enable_bg)
132 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED)
133 return snprintf(buf, PAGE_SIZE, "BlockGuard Enabled\n");
134 else
135 return snprintf(buf, PAGE_SIZE,
136 "BlockGuard Not Supported\n");
137 else
138 return snprintf(buf, PAGE_SIZE,
139 "BlockGuard Disabled\n");
140}
141
142static ssize_t
143lpfc_bg_guard_err_show(struct device *dev, struct device_attribute *attr,
144 char *buf)
145{
146 struct Scsi_Host *shost = class_to_shost(dev);
147 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
148 struct lpfc_hba *phba = vport->phba;
149
James Smart87b5c322008-12-16 10:34:09 -0500150 return snprintf(buf, PAGE_SIZE, "%llu\n",
151 (unsigned long long)phba->bg_guard_err_cnt);
James Smart81301a92008-12-04 22:39:46 -0500152}
153
154static ssize_t
155lpfc_bg_apptag_err_show(struct device *dev, struct device_attribute *attr,
156 char *buf)
157{
158 struct Scsi_Host *shost = class_to_shost(dev);
159 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
160 struct lpfc_hba *phba = vport->phba;
161
James Smart87b5c322008-12-16 10:34:09 -0500162 return snprintf(buf, PAGE_SIZE, "%llu\n",
163 (unsigned long long)phba->bg_apptag_err_cnt);
James Smart81301a92008-12-04 22:39:46 -0500164}
165
166static ssize_t
167lpfc_bg_reftag_err_show(struct device *dev, struct device_attribute *attr,
168 char *buf)
169{
170 struct Scsi_Host *shost = class_to_shost(dev);
171 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
172 struct lpfc_hba *phba = vport->phba;
173
James Smart87b5c322008-12-16 10:34:09 -0500174 return snprintf(buf, PAGE_SIZE, "%llu\n",
175 (unsigned long long)phba->bg_reftag_err_cnt);
James Smart81301a92008-12-04 22:39:46 -0500176}
177
James Smarte59058c2008-08-24 21:49:00 -0400178/**
James Smart3621a712009-04-06 18:47:14 -0400179 * lpfc_info_show - Return some pci info about the host in ascii
James Smarte59058c2008-08-24 21:49:00 -0400180 * @dev: class converted to a Scsi_host structure.
181 * @attr: device attribute, not used.
182 * @buf: on return contains the formatted text from lpfc_info().
183 *
184 * Returns: size of formatted string.
185 **/
dea31012005-04-17 16:05:31 -0500186static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100187lpfc_info_show(struct device *dev, struct device_attribute *attr,
188 char *buf)
dea31012005-04-17 16:05:31 -0500189{
Tony Jonesee959b02008-02-22 00:13:36 +0100190 struct Scsi_Host *host = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500191
dea31012005-04-17 16:05:31 -0500192 return snprintf(buf, PAGE_SIZE, "%s\n",lpfc_info(host));
193}
194
James Smarte59058c2008-08-24 21:49:00 -0400195/**
James Smart3621a712009-04-06 18:47:14 -0400196 * lpfc_serialnum_show - Return the hba serial number in ascii
James Smarte59058c2008-08-24 21:49:00 -0400197 * @dev: class converted to a Scsi_host structure.
198 * @attr: device attribute, not used.
199 * @buf: on return contains the formatted text serial number.
200 *
201 * Returns: size of formatted string.
202 **/
dea31012005-04-17 16:05:31 -0500203static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100204lpfc_serialnum_show(struct device *dev, struct device_attribute *attr,
205 char *buf)
dea31012005-04-17 16:05:31 -0500206{
Tony Jonesee959b02008-02-22 00:13:36 +0100207 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500208 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
209 struct lpfc_hba *phba = vport->phba;
210
dea31012005-04-17 16:05:31 -0500211 return snprintf(buf, PAGE_SIZE, "%s\n",phba->SerialNumber);
212}
213
James Smarte59058c2008-08-24 21:49:00 -0400214/**
James Smart3621a712009-04-06 18:47:14 -0400215 * lpfc_temp_sensor_show - Return the temperature sensor level
James Smarte59058c2008-08-24 21:49:00 -0400216 * @dev: class converted to a Scsi_host structure.
217 * @attr: device attribute, not used.
218 * @buf: on return contains the formatted support level.
219 *
220 * Description:
221 * Returns a number indicating the temperature sensor level currently
222 * supported, zero or one in ascii.
223 *
224 * Returns: size of formatted string.
225 **/
dea31012005-04-17 16:05:31 -0500226static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100227lpfc_temp_sensor_show(struct device *dev, struct device_attribute *attr,
228 char *buf)
James Smart57127f12007-10-27 13:37:05 -0400229{
Tony Jonesee959b02008-02-22 00:13:36 +0100230 struct Scsi_Host *shost = class_to_shost(dev);
James Smart57127f12007-10-27 13:37:05 -0400231 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
232 struct lpfc_hba *phba = vport->phba;
233 return snprintf(buf, PAGE_SIZE, "%d\n",phba->temp_sensor_support);
234}
235
James Smarte59058c2008-08-24 21:49:00 -0400236/**
James Smart3621a712009-04-06 18:47:14 -0400237 * lpfc_modeldesc_show - Return the model description of the hba
James Smarte59058c2008-08-24 21:49:00 -0400238 * @dev: class converted to a Scsi_host structure.
239 * @attr: device attribute, not used.
240 * @buf: on return contains the scsi vpd model description.
241 *
242 * Returns: size of formatted string.
243 **/
James Smart57127f12007-10-27 13:37:05 -0400244static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100245lpfc_modeldesc_show(struct device *dev, struct device_attribute *attr,
246 char *buf)
dea31012005-04-17 16:05:31 -0500247{
Tony Jonesee959b02008-02-22 00:13:36 +0100248 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500249 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
250 struct lpfc_hba *phba = vport->phba;
251
dea31012005-04-17 16:05:31 -0500252 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ModelDesc);
253}
254
James Smarte59058c2008-08-24 21:49:00 -0400255/**
James Smart3621a712009-04-06 18:47:14 -0400256 * lpfc_modelname_show - Return the model name of the hba
James Smarte59058c2008-08-24 21:49:00 -0400257 * @dev: class converted to a Scsi_host structure.
258 * @attr: device attribute, not used.
259 * @buf: on return contains the scsi vpd model name.
260 *
261 * Returns: size of formatted string.
262 **/
dea31012005-04-17 16:05:31 -0500263static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100264lpfc_modelname_show(struct device *dev, struct device_attribute *attr,
265 char *buf)
dea31012005-04-17 16:05:31 -0500266{
Tony Jonesee959b02008-02-22 00:13:36 +0100267 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500268 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
269 struct lpfc_hba *phba = vport->phba;
270
dea31012005-04-17 16:05:31 -0500271 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ModelName);
272}
273
James Smarte59058c2008-08-24 21:49:00 -0400274/**
James Smart3621a712009-04-06 18:47:14 -0400275 * lpfc_programtype_show - Return the program type of the hba
James Smarte59058c2008-08-24 21:49:00 -0400276 * @dev: class converted to a Scsi_host structure.
277 * @attr: device attribute, not used.
278 * @buf: on return contains the scsi vpd program type.
279 *
280 * Returns: size of formatted string.
281 **/
dea31012005-04-17 16:05:31 -0500282static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100283lpfc_programtype_show(struct device *dev, struct device_attribute *attr,
284 char *buf)
dea31012005-04-17 16:05:31 -0500285{
Tony Jonesee959b02008-02-22 00:13:36 +0100286 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500287 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
288 struct lpfc_hba *phba = vport->phba;
289
dea31012005-04-17 16:05:31 -0500290 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ProgramType);
291}
292
James Smarte59058c2008-08-24 21:49:00 -0400293/**
James Smart3621a712009-04-06 18:47:14 -0400294 * lpfc_mlomgmt_show - Return the Menlo Maintenance sli flag
James Smart84774a42008-08-24 21:50:06 -0400295 * @dev: class converted to a Scsi_host structure.
296 * @attr: device attribute, not used.
297 * @buf: on return contains the Menlo Maintenance sli flag.
298 *
299 * Returns: size of formatted string.
300 **/
301static ssize_t
302lpfc_mlomgmt_show(struct device *dev, struct device_attribute *attr, char *buf)
303{
304 struct Scsi_Host *shost = class_to_shost(dev);
305 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
306 struct lpfc_hba *phba = vport->phba;
307
308 return snprintf(buf, PAGE_SIZE, "%d\n",
309 (phba->sli.sli_flag & LPFC_MENLO_MAINT));
310}
311
312/**
James Smart3621a712009-04-06 18:47:14 -0400313 * lpfc_vportnum_show - Return the port number in ascii of the hba
James Smarte59058c2008-08-24 21:49:00 -0400314 * @dev: class converted to a Scsi_host structure.
315 * @attr: device attribute, not used.
316 * @buf: on return contains scsi vpd program type.
317 *
318 * Returns: size of formatted string.
319 **/
dea31012005-04-17 16:05:31 -0500320static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100321lpfc_vportnum_show(struct device *dev, struct device_attribute *attr,
322 char *buf)
dea31012005-04-17 16:05:31 -0500323{
Tony Jonesee959b02008-02-22 00:13:36 +0100324 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500325 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
326 struct lpfc_hba *phba = vport->phba;
327
dea31012005-04-17 16:05:31 -0500328 return snprintf(buf, PAGE_SIZE, "%s\n",phba->Port);
329}
330
James Smarte59058c2008-08-24 21:49:00 -0400331/**
James Smart3621a712009-04-06 18:47:14 -0400332 * lpfc_fwrev_show - Return the firmware rev running in the hba
James Smarte59058c2008-08-24 21:49:00 -0400333 * @dev: class converted to a Scsi_host structure.
334 * @attr: device attribute, not used.
335 * @buf: on return contains the scsi vpd program type.
336 *
337 * Returns: size of formatted string.
338 **/
dea31012005-04-17 16:05:31 -0500339static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100340lpfc_fwrev_show(struct device *dev, struct device_attribute *attr,
341 char *buf)
dea31012005-04-17 16:05:31 -0500342{
Tony Jonesee959b02008-02-22 00:13:36 +0100343 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500344 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
345 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500346 char fwrev[32];
James Smart2e0fef82007-06-17 19:56:36 -0500347
dea31012005-04-17 16:05:31 -0500348 lpfc_decode_firmware_rev(phba, fwrev, 1);
James Smart92d7f7b2007-06-17 19:56:38 -0500349 return snprintf(buf, PAGE_SIZE, "%s, sli-%d\n", fwrev, phba->sli_rev);
dea31012005-04-17 16:05:31 -0500350}
351
James Smarte59058c2008-08-24 21:49:00 -0400352/**
James Smart3621a712009-04-06 18:47:14 -0400353 * lpfc_hdw_show - Return the jedec information about the hba
James Smarte59058c2008-08-24 21:49:00 -0400354 * @dev: class converted to a Scsi_host structure.
355 * @attr: device attribute, not used.
356 * @buf: on return contains the scsi vpd program type.
357 *
358 * Returns: size of formatted string.
359 **/
dea31012005-04-17 16:05:31 -0500360static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100361lpfc_hdw_show(struct device *dev, struct device_attribute *attr, char *buf)
dea31012005-04-17 16:05:31 -0500362{
363 char hdw[9];
Tony Jonesee959b02008-02-22 00:13:36 +0100364 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500365 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
366 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500367 lpfc_vpd_t *vp = &phba->vpd;
James Smart2e0fef82007-06-17 19:56:36 -0500368
dea31012005-04-17 16:05:31 -0500369 lpfc_jedec_to_ascii(vp->rev.biuRev, hdw);
370 return snprintf(buf, PAGE_SIZE, "%s\n", hdw);
371}
James Smarte59058c2008-08-24 21:49:00 -0400372
373/**
James Smart3621a712009-04-06 18:47:14 -0400374 * lpfc_option_rom_version_show - Return the adapter ROM FCode version
James Smarte59058c2008-08-24 21:49:00 -0400375 * @dev: class converted to a Scsi_host structure.
376 * @attr: device attribute, not used.
377 * @buf: on return contains the ROM and FCode ascii strings.
378 *
379 * Returns: size of formatted string.
380 **/
dea31012005-04-17 16:05:31 -0500381static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100382lpfc_option_rom_version_show(struct device *dev, struct device_attribute *attr,
383 char *buf)
dea31012005-04-17 16:05:31 -0500384{
Tony Jonesee959b02008-02-22 00:13:36 +0100385 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500386 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
387 struct lpfc_hba *phba = vport->phba;
388
dea31012005-04-17 16:05:31 -0500389 return snprintf(buf, PAGE_SIZE, "%s\n", phba->OptionROMVersion);
390}
James Smarte59058c2008-08-24 21:49:00 -0400391
392/**
James Smart3621a712009-04-06 18:47:14 -0400393 * lpfc_state_show - Return the link state of the port
James Smarte59058c2008-08-24 21:49:00 -0400394 * @dev: class converted to a Scsi_host structure.
395 * @attr: device attribute, not used.
396 * @buf: on return contains text describing the state of the link.
397 *
398 * Notes:
399 * The switch statement has no default so zero will be returned.
400 *
401 * Returns: size of formatted string.
402 **/
dea31012005-04-17 16:05:31 -0500403static ssize_t
Hannes Reineckebbd1ae42008-03-18 14:32:28 +0100404lpfc_link_state_show(struct device *dev, struct device_attribute *attr,
405 char *buf)
dea31012005-04-17 16:05:31 -0500406{
Tony Jonesee959b02008-02-22 00:13:36 +0100407 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500408 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
409 struct lpfc_hba *phba = vport->phba;
410 int len = 0;
411
412 switch (phba->link_state) {
413 case LPFC_LINK_UNKNOWN:
Jamie Wellnitz41415862006-02-28 19:25:27 -0500414 case LPFC_WARM_START:
dea31012005-04-17 16:05:31 -0500415 case LPFC_INIT_START:
416 case LPFC_INIT_MBX_CMDS:
417 case LPFC_LINK_DOWN:
James Smart2e0fef82007-06-17 19:56:36 -0500418 case LPFC_HBA_ERROR:
James Smarta0c87cb2009-07-19 10:01:10 -0400419 if (phba->hba_flag & LINK_DISABLED)
420 len += snprintf(buf + len, PAGE_SIZE-len,
421 "Link Down - User disabled\n");
422 else
423 len += snprintf(buf + len, PAGE_SIZE-len,
424 "Link Down\n");
dea31012005-04-17 16:05:31 -0500425 break;
426 case LPFC_LINK_UP:
dea31012005-04-17 16:05:31 -0500427 case LPFC_CLEAR_LA:
dea31012005-04-17 16:05:31 -0500428 case LPFC_HBA_READY:
James Smarta8adb832007-10-27 13:37:53 -0400429 len += snprintf(buf + len, PAGE_SIZE-len, "Link Up - ");
James Smart2e0fef82007-06-17 19:56:36 -0500430
431 switch (vport->port_state) {
James Smart2e0fef82007-06-17 19:56:36 -0500432 case LPFC_LOCAL_CFG_LINK:
433 len += snprintf(buf + len, PAGE_SIZE-len,
James Smart92d7f7b2007-06-17 19:56:38 -0500434 "Configuring Link\n");
James Smart2e0fef82007-06-17 19:56:36 -0500435 break;
James Smart92d7f7b2007-06-17 19:56:38 -0500436 case LPFC_FDISC:
James Smart2e0fef82007-06-17 19:56:36 -0500437 case LPFC_FLOGI:
438 case LPFC_FABRIC_CFG_LINK:
439 case LPFC_NS_REG:
440 case LPFC_NS_QRY:
441 case LPFC_BUILD_DISC_LIST:
442 case LPFC_DISC_AUTH:
443 len += snprintf(buf + len, PAGE_SIZE - len,
444 "Discovery\n");
445 break;
446 case LPFC_VPORT_READY:
447 len += snprintf(buf + len, PAGE_SIZE - len, "Ready\n");
448 break;
449
James Smart92d7f7b2007-06-17 19:56:38 -0500450 case LPFC_VPORT_FAILED:
451 len += snprintf(buf + len, PAGE_SIZE - len, "Failed\n");
452 break;
453
454 case LPFC_VPORT_UNKNOWN:
James Smart2e0fef82007-06-17 19:56:36 -0500455 len += snprintf(buf + len, PAGE_SIZE - len,
456 "Unknown\n");
457 break;
458 }
James Smart84774a42008-08-24 21:50:06 -0400459 if (phba->sli.sli_flag & LPFC_MENLO_MAINT)
460 len += snprintf(buf + len, PAGE_SIZE-len,
461 " Menlo Maint Mode\n");
James Smart76a95d72010-11-20 23:11:48 -0500462 else if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -0500463 if (vport->fc_flag & FC_PUBLIC_LOOP)
dea31012005-04-17 16:05:31 -0500464 len += snprintf(buf + len, PAGE_SIZE-len,
465 " Public Loop\n");
466 else
467 len += snprintf(buf + len, PAGE_SIZE-len,
468 " Private Loop\n");
469 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500470 if (vport->fc_flag & FC_FABRIC)
dea31012005-04-17 16:05:31 -0500471 len += snprintf(buf + len, PAGE_SIZE-len,
472 " Fabric\n");
473 else
474 len += snprintf(buf + len, PAGE_SIZE-len,
475 " Point-2-Point\n");
476 }
477 }
James Smart2e0fef82007-06-17 19:56:36 -0500478
dea31012005-04-17 16:05:31 -0500479 return len;
480}
481
James Smarte59058c2008-08-24 21:49:00 -0400482/**
James Smart84d1b002010-02-12 14:42:33 -0500483 * lpfc_link_state_store - Transition the link_state on an HBA port
484 * @dev: class device that is converted into a Scsi_host.
485 * @attr: device attribute, not used.
486 * @buf: one or more lpfc_polling_flags values.
487 * @count: not used.
488 *
489 * Returns:
490 * -EINVAL if the buffer is not "up" or "down"
491 * return from link state change function if non-zero
492 * length of the buf on success
493 **/
494static ssize_t
495lpfc_link_state_store(struct device *dev, struct device_attribute *attr,
496 const char *buf, size_t count)
497{
498 struct Scsi_Host *shost = class_to_shost(dev);
499 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
500 struct lpfc_hba *phba = vport->phba;
501
502 int status = -EINVAL;
503
504 if ((strncmp(buf, "up", sizeof("up") - 1) == 0) &&
505 (phba->link_state == LPFC_LINK_DOWN))
James Smart6e7288d2010-06-07 15:23:35 -0400506 status = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
James Smart84d1b002010-02-12 14:42:33 -0500507 else if ((strncmp(buf, "down", sizeof("down") - 1) == 0) &&
508 (phba->link_state >= LPFC_LINK_UP))
James Smart6e7288d2010-06-07 15:23:35 -0400509 status = phba->lpfc_hba_down_link(phba, MBX_NOWAIT);
James Smart84d1b002010-02-12 14:42:33 -0500510
511 if (status == 0)
512 return strlen(buf);
513 else
514 return status;
515}
516
517/**
James Smart3621a712009-04-06 18:47:14 -0400518 * lpfc_num_discovered_ports_show - Return sum of mapped and unmapped vports
James Smarte59058c2008-08-24 21:49:00 -0400519 * @dev: class device that is converted into a Scsi_host.
520 * @attr: device attribute, not used.
521 * @buf: on return contains the sum of fc mapped and unmapped.
522 *
523 * Description:
524 * Returns the ascii text number of the sum of the fc mapped and unmapped
525 * vport counts.
526 *
527 * Returns: size of formatted string.
528 **/
dea31012005-04-17 16:05:31 -0500529static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100530lpfc_num_discovered_ports_show(struct device *dev,
531 struct device_attribute *attr, char *buf)
dea31012005-04-17 16:05:31 -0500532{
Tony Jonesee959b02008-02-22 00:13:36 +0100533 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500534 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
535
536 return snprintf(buf, PAGE_SIZE, "%d\n",
537 vport->fc_map_cnt + vport->fc_unmap_cnt);
dea31012005-04-17 16:05:31 -0500538}
539
James Smarte59058c2008-08-24 21:49:00 -0400540/**
James Smart3621a712009-04-06 18:47:14 -0400541 * lpfc_issue_lip - Misnomer, name carried over from long ago
James Smarte59058c2008-08-24 21:49:00 -0400542 * @shost: Scsi_Host pointer.
543 *
544 * Description:
545 * Bring the link down gracefully then re-init the link. The firmware will
546 * re-init the fiber channel interface as required. Does not issue a LIP.
547 *
548 * Returns:
549 * -EPERM port offline or management commands are being blocked
550 * -ENOMEM cannot allocate memory for the mailbox command
551 * -EIO error sending the mailbox command
552 * zero for success
553 **/
Andrew Vasquez91ca7b02005-10-27 16:03:37 -0700554static int
James Smart2e0fef82007-06-17 19:56:36 -0500555lpfc_issue_lip(struct Scsi_Host *shost)
dea31012005-04-17 16:05:31 -0500556{
James Smart2e0fef82007-06-17 19:56:36 -0500557 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
558 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500559 LPFC_MBOXQ_t *pmboxq;
560 int mbxstatus = MBXERR_ERROR;
561
James Smart2e0fef82007-06-17 19:56:36 -0500562 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
James Smart83108bd2008-01-11 01:53:09 -0500563 (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO))
dea31012005-04-17 16:05:31 -0500564 return -EPERM;
565
566 pmboxq = mempool_alloc(phba->mbox_mem_pool,GFP_KERNEL);
567
568 if (!pmboxq)
569 return -ENOMEM;
570
571 memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
James Smart04c68492009-05-22 14:52:52 -0400572 pmboxq->u.mb.mbxCommand = MBX_DOWN_LINK;
573 pmboxq->u.mb.mbxOwner = OWN_HOST;
James Smart4db621e2006-07-06 15:49:49 -0400574
James Smart33ccf8d2006-08-17 11:57:58 -0400575 mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq, LPFC_MBOX_TMO * 2);
dea31012005-04-17 16:05:31 -0500576
James Smart04c68492009-05-22 14:52:52 -0400577 if ((mbxstatus == MBX_SUCCESS) &&
578 (pmboxq->u.mb.mbxStatus == 0 ||
579 pmboxq->u.mb.mbxStatus == MBXERR_LINK_DOWN)) {
James Smart4db621e2006-07-06 15:49:49 -0400580 memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
581 lpfc_init_link(phba, pmboxq, phba->cfg_topology,
582 phba->cfg_link_speed);
583 mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq,
584 phba->fc_ratov * 2);
James Smartdcf2a4e2010-09-29 11:18:53 -0400585 if ((mbxstatus == MBX_SUCCESS) &&
586 (pmboxq->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
587 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
588 "2859 SLI authentication is required "
589 "for INIT_LINK but has not done yet\n");
James Smart4db621e2006-07-06 15:49:49 -0400590 }
591
James Smart5b8bd0c2007-04-25 09:52:49 -0400592 lpfc_set_loopback_flag(phba);
James Smart858c9f62007-06-17 19:56:39 -0500593 if (mbxstatus != MBX_TIMEOUT)
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -0400594 mempool_free(pmboxq, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500595
596 if (mbxstatus == MBXERR_ERROR)
597 return -EIO;
598
Andrew Vasquez91ca7b02005-10-27 16:03:37 -0700599 return 0;
dea31012005-04-17 16:05:31 -0500600}
601
James Smarte59058c2008-08-24 21:49:00 -0400602/**
James Smart3621a712009-04-06 18:47:14 -0400603 * lpfc_do_offline - Issues a mailbox command to bring the link down
James Smarte59058c2008-08-24 21:49:00 -0400604 * @phba: lpfc_hba pointer.
605 * @type: LPFC_EVT_OFFLINE, LPFC_EVT_WARM_START, LPFC_EVT_KILL.
606 *
607 * Notes:
608 * Assumes any error from lpfc_do_offline() will be negative.
609 * Can wait up to 5 seconds for the port ring buffers count
610 * to reach zero, prints a warning if it is not zero and continues.
James Smart3621a712009-04-06 18:47:14 -0400611 * lpfc_workq_post_event() returns a non-zero return code if call fails.
James Smarte59058c2008-08-24 21:49:00 -0400612 *
613 * Returns:
614 * -EIO error posting the event
615 * zero for success
616 **/
James Smart40496f02006-07-06 15:50:22 -0400617static int
James Smart46fa3112007-04-25 09:51:45 -0400618lpfc_do_offline(struct lpfc_hba *phba, uint32_t type)
619{
620 struct completion online_compl;
621 struct lpfc_sli_ring *pring;
622 struct lpfc_sli *psli;
623 int status = 0;
624 int cnt = 0;
625 int i;
James Smartfedd3b72011-02-16 12:39:24 -0500626 int rc;
James Smart46fa3112007-04-25 09:51:45 -0400627
628 init_completion(&online_compl);
James Smartfedd3b72011-02-16 12:39:24 -0500629 rc = lpfc_workq_post_event(phba, &status, &online_compl,
James Smart46fa3112007-04-25 09:51:45 -0400630 LPFC_EVT_OFFLINE_PREP);
James Smartfedd3b72011-02-16 12:39:24 -0500631 if (rc == 0)
632 return -ENOMEM;
633
James Smart46fa3112007-04-25 09:51:45 -0400634 wait_for_completion(&online_compl);
635
636 if (status != 0)
637 return -EIO;
638
639 psli = &phba->sli;
640
James Smart09372822008-01-11 01:52:54 -0500641 /* Wait a little for things to settle down, but not
642 * long enough for dev loss timeout to expire.
643 */
James Smart46fa3112007-04-25 09:51:45 -0400644 for (i = 0; i < psli->num_rings; i++) {
645 pring = &psli->ring[i];
James Smart46fa3112007-04-25 09:51:45 -0400646 while (pring->txcmplq_cnt) {
647 msleep(10);
James Smart09372822008-01-11 01:52:54 -0500648 if (cnt++ > 500) { /* 5 secs */
James Smart46fa3112007-04-25 09:51:45 -0400649 lpfc_printf_log(phba,
650 KERN_WARNING, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400651 "0466 Outstanding IO when "
652 "bringing Adapter offline\n");
James Smart46fa3112007-04-25 09:51:45 -0400653 break;
654 }
655 }
656 }
657
658 init_completion(&online_compl);
James Smartfedd3b72011-02-16 12:39:24 -0500659 rc = lpfc_workq_post_event(phba, &status, &online_compl, type);
660 if (rc == 0)
661 return -ENOMEM;
662
James Smart46fa3112007-04-25 09:51:45 -0400663 wait_for_completion(&online_compl);
664
665 if (status != 0)
666 return -EIO;
667
668 return 0;
669}
670
James Smarte59058c2008-08-24 21:49:00 -0400671/**
James Smart3621a712009-04-06 18:47:14 -0400672 * lpfc_selective_reset - Offline then onlines the port
James Smarte59058c2008-08-24 21:49:00 -0400673 * @phba: lpfc_hba pointer.
674 *
675 * Description:
676 * If the port is configured to allow a reset then the hba is brought
677 * offline then online.
678 *
679 * Notes:
680 * Assumes any error from lpfc_do_offline() will be negative.
James Smartab56dc22011-02-16 12:39:57 -0500681 * Do not make this function static.
James Smarte59058c2008-08-24 21:49:00 -0400682 *
683 * Returns:
684 * lpfc_do_offline() return code if not zero
685 * -EIO reset not configured or error posting the event
686 * zero for success
687 **/
James Smart7f860592011-03-11 16:05:52 -0500688int
James Smart40496f02006-07-06 15:50:22 -0400689lpfc_selective_reset(struct lpfc_hba *phba)
690{
691 struct completion online_compl;
692 int status = 0;
James Smartfedd3b72011-02-16 12:39:24 -0500693 int rc;
James Smart40496f02006-07-06 15:50:22 -0400694
James Smart13815c82008-01-11 01:52:48 -0500695 if (!phba->cfg_enable_hba_reset)
696 return -EIO;
697
James Smart46fa3112007-04-25 09:51:45 -0400698 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
James Smart40496f02006-07-06 15:50:22 -0400699
700 if (status != 0)
James Smart46fa3112007-04-25 09:51:45 -0400701 return status;
James Smart40496f02006-07-06 15:50:22 -0400702
703 init_completion(&online_compl);
James Smartfedd3b72011-02-16 12:39:24 -0500704 rc = lpfc_workq_post_event(phba, &status, &online_compl,
James Smart40496f02006-07-06 15:50:22 -0400705 LPFC_EVT_ONLINE);
James Smartfedd3b72011-02-16 12:39:24 -0500706 if (rc == 0)
707 return -ENOMEM;
708
James Smart40496f02006-07-06 15:50:22 -0400709 wait_for_completion(&online_compl);
710
711 if (status != 0)
712 return -EIO;
713
714 return 0;
715}
716
James Smarte59058c2008-08-24 21:49:00 -0400717/**
James Smart3621a712009-04-06 18:47:14 -0400718 * lpfc_issue_reset - Selectively resets an adapter
James Smarte59058c2008-08-24 21:49:00 -0400719 * @dev: class device that is converted into a Scsi_host.
720 * @attr: device attribute, not used.
721 * @buf: containing the string "selective".
722 * @count: unused variable.
723 *
724 * Description:
725 * If the buf contains the string "selective" then lpfc_selective_reset()
726 * is called to perform the reset.
727 *
728 * Notes:
729 * Assumes any error from lpfc_selective_reset() will be negative.
730 * If lpfc_selective_reset() returns zero then the length of the buffer
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200731 * is returned which indicates success
James Smarte59058c2008-08-24 21:49:00 -0400732 *
733 * Returns:
734 * -EINVAL if the buffer does not contain the string "selective"
735 * length of buf if lpfc-selective_reset() if the call succeeds
736 * return value of lpfc_selective_reset() if the call fails
737**/
James Smart40496f02006-07-06 15:50:22 -0400738static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100739lpfc_issue_reset(struct device *dev, struct device_attribute *attr,
740 const char *buf, size_t count)
James Smart40496f02006-07-06 15:50:22 -0400741{
Tony Jonesee959b02008-02-22 00:13:36 +0100742 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500743 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
744 struct lpfc_hba *phba = vport->phba;
745
James Smart40496f02006-07-06 15:50:22 -0400746 int status = -EINVAL;
747
748 if (strncmp(buf, "selective", sizeof("selective") - 1) == 0)
James Smart7f860592011-03-11 16:05:52 -0500749 status = phba->lpfc_selective_reset(phba);
James Smart40496f02006-07-06 15:50:22 -0400750
751 if (status == 0)
752 return strlen(buf);
753 else
754 return status;
755}
756
James Smarte59058c2008-08-24 21:49:00 -0400757/**
James Smart52d52442011-05-24 11:42:45 -0400758 * lpfc_sli4_pdev_reg_request - Request physical dev to perform a register acc
James Smartc0c11512011-05-24 11:41:34 -0400759 * @phba: lpfc_hba pointer.
760 *
761 * Description:
James Smart52d52442011-05-24 11:42:45 -0400762 * Request SLI4 interface type-2 device to perform a physical register set
763 * access.
James Smartc0c11512011-05-24 11:41:34 -0400764 *
765 * Returns:
766 * zero for success
767 **/
768static ssize_t
James Smart52d52442011-05-24 11:42:45 -0400769lpfc_sli4_pdev_reg_request(struct lpfc_hba *phba, uint32_t opcode)
James Smartc0c11512011-05-24 11:41:34 -0400770{
771 struct completion online_compl;
772 uint32_t reg_val;
773 int status = 0;
774 int rc;
775
776 if (!phba->cfg_enable_hba_reset)
777 return -EIO;
778
James Smart52d52442011-05-24 11:42:45 -0400779 if ((phba->sli_rev < LPFC_SLI_REV4) ||
780 (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
781 LPFC_SLI_INTF_IF_TYPE_2))
782 return -EPERM;
783
James Smartc0c11512011-05-24 11:41:34 -0400784 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
785
786 if (status != 0)
787 return status;
788
789 /* wait for the device to be quiesced before firmware reset */
790 msleep(100);
791
792 reg_val = readl(phba->sli4_hba.conf_regs_memmap_p +
793 LPFC_CTL_PDEV_CTL_OFFSET);
James Smart52d52442011-05-24 11:42:45 -0400794
795 if (opcode == LPFC_FW_DUMP)
796 reg_val |= LPFC_FW_DUMP_REQUEST;
797 else if (opcode == LPFC_FW_RESET)
798 reg_val |= LPFC_CTL_PDEV_CTL_FRST;
799 else if (opcode == LPFC_DV_RESET)
800 reg_val |= LPFC_CTL_PDEV_CTL_DRST;
801
James Smartc0c11512011-05-24 11:41:34 -0400802 writel(reg_val, phba->sli4_hba.conf_regs_memmap_p +
803 LPFC_CTL_PDEV_CTL_OFFSET);
804 /* flush */
805 readl(phba->sli4_hba.conf_regs_memmap_p + LPFC_CTL_PDEV_CTL_OFFSET);
806
807 /* delay driver action following IF_TYPE_2 reset */
808 msleep(100);
809
810 init_completion(&online_compl);
811 rc = lpfc_workq_post_event(phba, &status, &online_compl,
812 LPFC_EVT_ONLINE);
813 if (rc == 0)
814 return -ENOMEM;
815
816 wait_for_completion(&online_compl);
817
818 if (status != 0)
819 return -EIO;
820
821 return 0;
822}
823
824/**
James Smart3621a712009-04-06 18:47:14 -0400825 * lpfc_nport_evt_cnt_show - Return the number of nport events
James Smarte59058c2008-08-24 21:49:00 -0400826 * @dev: class device that is converted into a Scsi_host.
827 * @attr: device attribute, not used.
828 * @buf: on return contains the ascii number of nport events.
829 *
830 * Returns: size of formatted string.
831 **/
dea31012005-04-17 16:05:31 -0500832static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100833lpfc_nport_evt_cnt_show(struct device *dev, struct device_attribute *attr,
834 char *buf)
dea31012005-04-17 16:05:31 -0500835{
Tony Jonesee959b02008-02-22 00:13:36 +0100836 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500837 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
838 struct lpfc_hba *phba = vport->phba;
839
dea31012005-04-17 16:05:31 -0500840 return snprintf(buf, PAGE_SIZE, "%d\n", phba->nport_event_cnt);
841}
842
James Smarte59058c2008-08-24 21:49:00 -0400843/**
James Smart3621a712009-04-06 18:47:14 -0400844 * lpfc_board_mode_show - Return the state of the board
James Smarte59058c2008-08-24 21:49:00 -0400845 * @dev: class device that is converted into a Scsi_host.
846 * @attr: device attribute, not used.
847 * @buf: on return contains the state of the adapter.
848 *
849 * Returns: size of formatted string.
850 **/
dea31012005-04-17 16:05:31 -0500851static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100852lpfc_board_mode_show(struct device *dev, struct device_attribute *attr,
853 char *buf)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500854{
Tony Jonesee959b02008-02-22 00:13:36 +0100855 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500856 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
857 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz41415862006-02-28 19:25:27 -0500858 char * state;
859
James Smart2e0fef82007-06-17 19:56:36 -0500860 if (phba->link_state == LPFC_HBA_ERROR)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500861 state = "error";
James Smart2e0fef82007-06-17 19:56:36 -0500862 else if (phba->link_state == LPFC_WARM_START)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500863 state = "warm start";
James Smart2e0fef82007-06-17 19:56:36 -0500864 else if (phba->link_state == LPFC_INIT_START)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500865 state = "offline";
866 else
867 state = "online";
868
869 return snprintf(buf, PAGE_SIZE, "%s\n", state);
870}
871
James Smarte59058c2008-08-24 21:49:00 -0400872/**
James Smart3621a712009-04-06 18:47:14 -0400873 * lpfc_board_mode_store - Puts the hba in online, offline, warm or error state
James Smarte59058c2008-08-24 21:49:00 -0400874 * @dev: class device that is converted into a Scsi_host.
875 * @attr: device attribute, not used.
876 * @buf: containing one of the strings "online", "offline", "warm" or "error".
877 * @count: unused variable.
878 *
879 * Returns:
880 * -EACCES if enable hba reset not enabled
881 * -EINVAL if the buffer does not contain a valid string (see above)
882 * -EIO if lpfc_workq_post_event() or lpfc_do_offline() fails
883 * buf length greater than zero indicates success
884 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -0500885static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100886lpfc_board_mode_store(struct device *dev, struct device_attribute *attr,
887 const char *buf, size_t count)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500888{
Tony Jonesee959b02008-02-22 00:13:36 +0100889 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500890 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
891 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz41415862006-02-28 19:25:27 -0500892 struct completion online_compl;
893 int status=0;
James Smartfedd3b72011-02-16 12:39:24 -0500894 int rc;
Jamie Wellnitz41415862006-02-28 19:25:27 -0500895
James Smart13815c82008-01-11 01:52:48 -0500896 if (!phba->cfg_enable_hba_reset)
897 return -EACCES;
Jamie Wellnitz41415862006-02-28 19:25:27 -0500898 init_completion(&online_compl);
899
James Smart46fa3112007-04-25 09:51:45 -0400900 if(strncmp(buf, "online", sizeof("online") - 1) == 0) {
James Smartfedd3b72011-02-16 12:39:24 -0500901 rc = lpfc_workq_post_event(phba, &status, &online_compl,
Jamie Wellnitz41415862006-02-28 19:25:27 -0500902 LPFC_EVT_ONLINE);
James Smartfedd3b72011-02-16 12:39:24 -0500903 if (rc == 0)
904 return -ENOMEM;
James Smart46fa3112007-04-25 09:51:45 -0400905 wait_for_completion(&online_compl);
906 } else if (strncmp(buf, "offline", sizeof("offline") - 1) == 0)
907 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500908 else if (strncmp(buf, "warm", sizeof("warm") - 1) == 0)
James Smart6a9c52c2009-10-02 15:16:51 -0400909 if (phba->sli_rev == LPFC_SLI_REV4)
910 return -EINVAL;
911 else
912 status = lpfc_do_offline(phba, LPFC_EVT_WARM_START);
James Smart46fa3112007-04-25 09:51:45 -0400913 else if (strncmp(buf, "error", sizeof("error") - 1) == 0)
James Smart6a9c52c2009-10-02 15:16:51 -0400914 if (phba->sli_rev == LPFC_SLI_REV4)
915 return -EINVAL;
916 else
917 status = lpfc_do_offline(phba, LPFC_EVT_KILL);
James Smartc0c11512011-05-24 11:41:34 -0400918 else if (strncmp(buf, "dump", sizeof("dump") - 1) == 0)
James Smart52d52442011-05-24 11:42:45 -0400919 status = lpfc_sli4_pdev_reg_request(phba, LPFC_FW_DUMP);
920 else if (strncmp(buf, "fw_reset", sizeof("fw_reset") - 1) == 0)
921 status = lpfc_sli4_pdev_reg_request(phba, LPFC_FW_RESET);
922 else if (strncmp(buf, "dv_reset", sizeof("dv_reset") - 1) == 0)
923 status = lpfc_sli4_pdev_reg_request(phba, LPFC_DV_RESET);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500924 else
925 return -EINVAL;
926
Jamie Wellnitz41415862006-02-28 19:25:27 -0500927 if (!status)
928 return strlen(buf);
929 else
930 return -EIO;
931}
932
James Smarte59058c2008-08-24 21:49:00 -0400933/**
James Smart3621a712009-04-06 18:47:14 -0400934 * lpfc_get_hba_info - Return various bits of informaton about the adapter
James Smarte59058c2008-08-24 21:49:00 -0400935 * @phba: pointer to the adapter structure.
James Smart3621a712009-04-06 18:47:14 -0400936 * @mxri: max xri count.
937 * @axri: available xri count.
938 * @mrpi: max rpi count.
939 * @arpi: available rpi count.
940 * @mvpi: max vpi count.
941 * @avpi: available vpi count.
James Smarte59058c2008-08-24 21:49:00 -0400942 *
943 * Description:
944 * If an integer pointer for an count is not null then the value for the
945 * count is returned.
946 *
947 * Returns:
948 * zero on error
949 * one for success
950 **/
James Smart311464e2007-08-02 11:10:37 -0400951static int
James Smart858c9f62007-06-17 19:56:39 -0500952lpfc_get_hba_info(struct lpfc_hba *phba,
953 uint32_t *mxri, uint32_t *axri,
954 uint32_t *mrpi, uint32_t *arpi,
955 uint32_t *mvpi, uint32_t *avpi)
James Smart92d7f7b2007-06-17 19:56:38 -0500956{
James Smart04c68492009-05-22 14:52:52 -0400957 struct lpfc_mbx_read_config *rd_config;
James Smart92d7f7b2007-06-17 19:56:38 -0500958 LPFC_MBOXQ_t *pmboxq;
959 MAILBOX_t *pmb;
960 int rc = 0;
James Smart15672312010-04-06 14:49:03 -0400961 uint32_t max_vpi;
James Smart92d7f7b2007-06-17 19:56:38 -0500962
963 /*
964 * prevent udev from issuing mailbox commands until the port is
965 * configured.
966 */
967 if (phba->link_state < LPFC_LINK_DOWN ||
968 !phba->mbox_mem_pool ||
James Smartf4b4c682009-05-22 14:53:12 -0400969 (phba->sli.sli_flag & LPFC_SLI_ACTIVE) == 0)
James Smart92d7f7b2007-06-17 19:56:38 -0500970 return 0;
971
972 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
973 return 0;
974
975 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
976 if (!pmboxq)
977 return 0;
978 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
979
James Smart04c68492009-05-22 14:52:52 -0400980 pmb = &pmboxq->u.mb;
James Smart92d7f7b2007-06-17 19:56:38 -0500981 pmb->mbxCommand = MBX_READ_CONFIG;
982 pmb->mbxOwner = OWN_HOST;
983 pmboxq->context1 = NULL;
984
James Smart75baf692010-06-08 18:31:21 -0400985 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
James Smart92d7f7b2007-06-17 19:56:38 -0500986 rc = MBX_NOT_FINISHED;
987 else
988 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
989
990 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -0500991 if (rc != MBX_TIMEOUT)
James Smart92d7f7b2007-06-17 19:56:38 -0500992 mempool_free(pmboxq, phba->mbox_mem_pool);
993 return 0;
994 }
995
James Smartda0436e2009-05-22 14:51:39 -0400996 if (phba->sli_rev == LPFC_SLI_REV4) {
997 rd_config = &pmboxq->u.mqe.un.rd_config;
998 if (mrpi)
999 *mrpi = bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config);
1000 if (arpi)
1001 *arpi = bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config) -
1002 phba->sli4_hba.max_cfg_param.rpi_used;
1003 if (mxri)
1004 *mxri = bf_get(lpfc_mbx_rd_conf_xri_count, rd_config);
1005 if (axri)
1006 *axri = bf_get(lpfc_mbx_rd_conf_xri_count, rd_config) -
1007 phba->sli4_hba.max_cfg_param.xri_used;
James Smart15672312010-04-06 14:49:03 -04001008
1009 /* Account for differences with SLI-3. Get vpi count from
1010 * mailbox data and subtract one for max vpi value.
1011 */
1012 max_vpi = (bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config) > 0) ?
1013 (bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config) - 1) : 0;
1014
James Smartda0436e2009-05-22 14:51:39 -04001015 if (mvpi)
James Smart15672312010-04-06 14:49:03 -04001016 *mvpi = max_vpi;
James Smartda0436e2009-05-22 14:51:39 -04001017 if (avpi)
James Smart15672312010-04-06 14:49:03 -04001018 *avpi = max_vpi - phba->sli4_hba.max_cfg_param.vpi_used;
James Smartda0436e2009-05-22 14:51:39 -04001019 } else {
1020 if (mrpi)
1021 *mrpi = pmb->un.varRdConfig.max_rpi;
1022 if (arpi)
1023 *arpi = pmb->un.varRdConfig.avail_rpi;
1024 if (mxri)
1025 *mxri = pmb->un.varRdConfig.max_xri;
1026 if (axri)
1027 *axri = pmb->un.varRdConfig.avail_xri;
1028 if (mvpi)
1029 *mvpi = pmb->un.varRdConfig.max_vpi;
1030 if (avpi)
1031 *avpi = pmb->un.varRdConfig.avail_vpi;
1032 }
James Smart92d7f7b2007-06-17 19:56:38 -05001033
1034 mempool_free(pmboxq, phba->mbox_mem_pool);
1035 return 1;
1036}
1037
James Smarte59058c2008-08-24 21:49:00 -04001038/**
James Smart3621a712009-04-06 18:47:14 -04001039 * lpfc_max_rpi_show - Return maximum rpi
James Smarte59058c2008-08-24 21:49:00 -04001040 * @dev: class device that is converted into a Scsi_host.
1041 * @attr: device attribute, not used.
1042 * @buf: on return contains the maximum rpi count in decimal or "Unknown".
1043 *
1044 * Description:
1045 * Calls lpfc_get_hba_info() asking for just the mrpi count.
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 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001052static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001053lpfc_max_rpi_show(struct device *dev, struct device_attribute *attr,
1054 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -05001055{
Tony Jonesee959b02008-02-22 00:13:36 +01001056 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -05001057 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1058 struct lpfc_hba *phba = vport->phba;
1059 uint32_t cnt;
1060
James Smart858c9f62007-06-17 19:56:39 -05001061 if (lpfc_get_hba_info(phba, NULL, NULL, &cnt, NULL, NULL, NULL))
James Smart92d7f7b2007-06-17 19:56:38 -05001062 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
1063 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1064}
1065
James Smarte59058c2008-08-24 21:49:00 -04001066/**
James Smart3621a712009-04-06 18:47:14 -04001067 * lpfc_used_rpi_show - Return maximum rpi minus available rpi
James Smarte59058c2008-08-24 21:49:00 -04001068 * @dev: class device that is converted into a Scsi_host.
1069 * @attr: device attribute, not used.
1070 * @buf: containing the used rpi count in decimal or "Unknown".
1071 *
1072 * Description:
1073 * Calls lpfc_get_hba_info() asking for just the mrpi and arpi counts.
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 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001080static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001081lpfc_used_rpi_show(struct device *dev, struct device_attribute *attr,
1082 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -05001083{
Tony Jonesee959b02008-02-22 00:13:36 +01001084 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -05001085 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1086 struct lpfc_hba *phba = vport->phba;
1087 uint32_t cnt, acnt;
1088
James Smart858c9f62007-06-17 19:56:39 -05001089 if (lpfc_get_hba_info(phba, NULL, NULL, &cnt, &acnt, NULL, NULL))
James Smart92d7f7b2007-06-17 19:56:38 -05001090 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1091 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1092}
1093
James Smarte59058c2008-08-24 21:49:00 -04001094/**
James Smart3621a712009-04-06 18:47:14 -04001095 * lpfc_max_xri_show - Return maximum xri
James Smarte59058c2008-08-24 21:49:00 -04001096 * @dev: class device that is converted into a Scsi_host.
1097 * @attr: device attribute, not used.
1098 * @buf: on return contains the maximum xri count in decimal or "Unknown".
1099 *
1100 * Description:
1101 * Calls lpfc_get_hba_info() asking for just the mrpi count.
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 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001108static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001109lpfc_max_xri_show(struct device *dev, struct device_attribute *attr,
1110 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -05001111{
Tony Jonesee959b02008-02-22 00:13:36 +01001112 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -05001113 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1114 struct lpfc_hba *phba = vport->phba;
1115 uint32_t cnt;
1116
James Smart858c9f62007-06-17 19:56:39 -05001117 if (lpfc_get_hba_info(phba, &cnt, NULL, NULL, NULL, NULL, NULL))
James Smart92d7f7b2007-06-17 19:56:38 -05001118 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
1119 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1120}
1121
James Smarte59058c2008-08-24 21:49:00 -04001122/**
James Smart3621a712009-04-06 18:47:14 -04001123 * lpfc_used_xri_show - Return maximum xpi minus the available xpi
James Smarte59058c2008-08-24 21:49:00 -04001124 * @dev: class device that is converted into a Scsi_host.
1125 * @attr: device attribute, not used.
1126 * @buf: on return contains the used xri count in decimal or "Unknown".
1127 *
1128 * Description:
1129 * Calls lpfc_get_hba_info() asking for just the mxri and axri counts.
1130 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1131 * to "Unknown" and the buffer length is returned, therefore the caller
1132 * must check for "Unknown" in the buffer to detect a failure.
1133 *
1134 * Returns: size of formatted string.
1135 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001136static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001137lpfc_used_xri_show(struct device *dev, struct device_attribute *attr,
1138 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -05001139{
Tony Jonesee959b02008-02-22 00:13:36 +01001140 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -05001141 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1142 struct lpfc_hba *phba = vport->phba;
1143 uint32_t cnt, acnt;
1144
James Smart858c9f62007-06-17 19:56:39 -05001145 if (lpfc_get_hba_info(phba, &cnt, &acnt, NULL, NULL, NULL, NULL))
1146 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1147 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1148}
1149
James Smarte59058c2008-08-24 21:49:00 -04001150/**
James Smart3621a712009-04-06 18:47:14 -04001151 * lpfc_max_vpi_show - Return maximum vpi
James Smarte59058c2008-08-24 21:49:00 -04001152 * @dev: class device that is converted into a Scsi_host.
1153 * @attr: device attribute, not used.
1154 * @buf: on return contains the maximum vpi count in decimal or "Unknown".
1155 *
1156 * Description:
1157 * Calls lpfc_get_hba_info() asking for just the mvpi count.
1158 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1159 * to "Unknown" and the buffer length is returned, therefore the caller
1160 * must check for "Unknown" in the buffer to detect a failure.
1161 *
1162 * Returns: size of formatted string.
1163 **/
James Smart858c9f62007-06-17 19:56:39 -05001164static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001165lpfc_max_vpi_show(struct device *dev, struct device_attribute *attr,
1166 char *buf)
James Smart858c9f62007-06-17 19:56:39 -05001167{
Tony Jonesee959b02008-02-22 00:13:36 +01001168 struct Scsi_Host *shost = class_to_shost(dev);
James Smart858c9f62007-06-17 19:56:39 -05001169 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1170 struct lpfc_hba *phba = vport->phba;
1171 uint32_t cnt;
1172
1173 if (lpfc_get_hba_info(phba, NULL, NULL, NULL, NULL, &cnt, NULL))
1174 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
1175 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1176}
1177
James Smarte59058c2008-08-24 21:49:00 -04001178/**
James Smart3621a712009-04-06 18:47:14 -04001179 * lpfc_used_vpi_show - Return maximum vpi minus the available vpi
James Smarte59058c2008-08-24 21:49:00 -04001180 * @dev: class device that is converted into a Scsi_host.
1181 * @attr: device attribute, not used.
1182 * @buf: on return contains the used vpi count in decimal or "Unknown".
1183 *
1184 * Description:
1185 * Calls lpfc_get_hba_info() asking for just the mvpi and avpi counts.
1186 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1187 * to "Unknown" and the buffer length is returned, therefore the caller
1188 * must check for "Unknown" in the buffer to detect a failure.
1189 *
1190 * Returns: size of formatted string.
1191 **/
James Smart858c9f62007-06-17 19:56:39 -05001192static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001193lpfc_used_vpi_show(struct device *dev, struct device_attribute *attr,
1194 char *buf)
James Smart858c9f62007-06-17 19:56:39 -05001195{
Tony Jonesee959b02008-02-22 00:13:36 +01001196 struct Scsi_Host *shost = class_to_shost(dev);
James Smart858c9f62007-06-17 19:56:39 -05001197 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1198 struct lpfc_hba *phba = vport->phba;
1199 uint32_t cnt, acnt;
1200
1201 if (lpfc_get_hba_info(phba, NULL, NULL, NULL, NULL, &cnt, &acnt))
James Smart92d7f7b2007-06-17 19:56:38 -05001202 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1203 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1204}
1205
James Smarte59058c2008-08-24 21:49:00 -04001206/**
James Smart3621a712009-04-06 18:47:14 -04001207 * lpfc_npiv_info_show - Return text about NPIV support for the adapter
James Smarte59058c2008-08-24 21:49:00 -04001208 * @dev: class device that is converted into a Scsi_host.
1209 * @attr: device attribute, not used.
1210 * @buf: text that must be interpreted to determine if npiv is supported.
1211 *
1212 * Description:
1213 * Buffer will contain text indicating npiv is not suppoerted on the port,
1214 * the port is an NPIV physical port, or it is an npiv virtual port with
1215 * the id of the vport.
1216 *
1217 * Returns: size of formatted string.
1218 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001219static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001220lpfc_npiv_info_show(struct device *dev, struct device_attribute *attr,
1221 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -05001222{
Tony Jonesee959b02008-02-22 00:13:36 +01001223 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -05001224 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1225 struct lpfc_hba *phba = vport->phba;
1226
1227 if (!(phba->max_vpi))
1228 return snprintf(buf, PAGE_SIZE, "NPIV Not Supported\n");
1229 if (vport->port_type == LPFC_PHYSICAL_PORT)
1230 return snprintf(buf, PAGE_SIZE, "NPIV Physical\n");
1231 return snprintf(buf, PAGE_SIZE, "NPIV Virtual (VPI %d)\n", vport->vpi);
1232}
1233
James Smarte59058c2008-08-24 21:49:00 -04001234/**
James Smart3621a712009-04-06 18:47:14 -04001235 * lpfc_poll_show - Return text about poll support for the adapter
James Smarte59058c2008-08-24 21:49:00 -04001236 * @dev: class device that is converted into a Scsi_host.
1237 * @attr: device attribute, not used.
1238 * @buf: on return contains the cfg_poll in hex.
1239 *
1240 * Notes:
1241 * cfg_poll should be a lpfc_polling_flags type.
1242 *
1243 * Returns: size of formatted string.
1244 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05001245static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001246lpfc_poll_show(struct device *dev, struct device_attribute *attr,
1247 char *buf)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001248{
Tony Jonesee959b02008-02-22 00:13:36 +01001249 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001250 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1251 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001252
1253 return snprintf(buf, PAGE_SIZE, "%#x\n", phba->cfg_poll);
1254}
1255
James Smarte59058c2008-08-24 21:49:00 -04001256/**
James Smart3621a712009-04-06 18:47:14 -04001257 * lpfc_poll_store - Set the value of cfg_poll for the adapter
James Smarte59058c2008-08-24 21:49:00 -04001258 * @dev: class device that is converted into a Scsi_host.
1259 * @attr: device attribute, not used.
1260 * @buf: one or more lpfc_polling_flags values.
1261 * @count: not used.
1262 *
1263 * Notes:
1264 * buf contents converted to integer and checked for a valid value.
1265 *
1266 * Returns:
1267 * -EINVAL if the buffer connot be converted or is out of range
1268 * length of the buf on success
1269 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001270static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001271lpfc_poll_store(struct device *dev, struct device_attribute *attr,
1272 const char *buf, size_t count)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001273{
Tony Jonesee959b02008-02-22 00:13:36 +01001274 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001275 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1276 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001277 uint32_t creg_val;
1278 uint32_t old_val;
1279 int val=0;
1280
1281 if (!isdigit(buf[0]))
1282 return -EINVAL;
1283
1284 if (sscanf(buf, "%i", &val) != 1)
1285 return -EINVAL;
1286
1287 if ((val & 0x3) != val)
1288 return -EINVAL;
1289
James Smart45ed1192009-10-02 15:17:02 -04001290 if (phba->sli_rev == LPFC_SLI_REV4)
1291 val = 0;
1292
James Smart2e0fef82007-06-17 19:56:36 -05001293 spin_lock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001294
1295 old_val = phba->cfg_poll;
1296
1297 if (val & ENABLE_FCP_RING_POLLING) {
1298 if ((val & DISABLE_FCP_RING_INT) &&
1299 !(old_val & DISABLE_FCP_RING_INT)) {
James Smart9940b972011-03-11 16:06:12 -05001300 if (lpfc_readl(phba->HCregaddr, &creg_val)) {
1301 spin_unlock_irq(&phba->hbalock);
1302 return -EINVAL;
1303 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001304 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
1305 writel(creg_val, phba->HCregaddr);
1306 readl(phba->HCregaddr); /* flush */
1307
1308 lpfc_poll_start_timer(phba);
1309 }
1310 } else if (val != 0x0) {
James Smart2e0fef82007-06-17 19:56:36 -05001311 spin_unlock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001312 return -EINVAL;
1313 }
1314
1315 if (!(val & DISABLE_FCP_RING_INT) &&
1316 (old_val & DISABLE_FCP_RING_INT))
1317 {
James Smart2e0fef82007-06-17 19:56:36 -05001318 spin_unlock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001319 del_timer(&phba->fcp_poll_timer);
James Smart2e0fef82007-06-17 19:56:36 -05001320 spin_lock_irq(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -05001321 if (lpfc_readl(phba->HCregaddr, &creg_val)) {
1322 spin_unlock_irq(&phba->hbalock);
1323 return -EINVAL;
1324 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001325 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
1326 writel(creg_val, phba->HCregaddr);
1327 readl(phba->HCregaddr); /* flush */
1328 }
1329
1330 phba->cfg_poll = val;
1331
James Smart2e0fef82007-06-17 19:56:36 -05001332 spin_unlock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001333
1334 return strlen(buf);
1335}
dea31012005-04-17 16:05:31 -05001336
James Smarte59058c2008-08-24 21:49:00 -04001337/**
James Smartbc739052010-08-04 16:11:18 -04001338 * lpfc_fips_level_show - Return the current FIPS level for the HBA
1339 * @dev: class unused variable.
1340 * @attr: device attribute, not used.
1341 * @buf: on return contains the module description text.
1342 *
1343 * Returns: size of formatted string.
1344 **/
1345static ssize_t
1346lpfc_fips_level_show(struct device *dev, struct device_attribute *attr,
1347 char *buf)
1348{
1349 struct Scsi_Host *shost = class_to_shost(dev);
1350 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1351 struct lpfc_hba *phba = vport->phba;
1352
1353 return snprintf(buf, PAGE_SIZE, "%d\n", phba->fips_level);
1354}
1355
1356/**
1357 * lpfc_fips_rev_show - Return the FIPS Spec revision for the HBA
1358 * @dev: class unused variable.
1359 * @attr: device attribute, not used.
1360 * @buf: on return contains the module description text.
1361 *
1362 * Returns: size of formatted string.
1363 **/
1364static ssize_t
1365lpfc_fips_rev_show(struct device *dev, struct device_attribute *attr,
1366 char *buf)
1367{
1368 struct Scsi_Host *shost = class_to_shost(dev);
1369 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1370 struct lpfc_hba *phba = vport->phba;
1371
1372 return snprintf(buf, PAGE_SIZE, "%d\n", phba->fips_spec_rev);
1373}
1374
1375/**
James Smartab56dc22011-02-16 12:39:57 -05001376 * lpfc_dss_show - Return the current state of dss and the configured state
1377 * @dev: class converted to a Scsi_host structure.
1378 * @attr: device attribute, not used.
1379 * @buf: on return contains the formatted text.
1380 *
1381 * Returns: size of formatted string.
1382 **/
1383static ssize_t
1384lpfc_dss_show(struct device *dev, struct device_attribute *attr,
1385 char *buf)
1386{
1387 struct Scsi_Host *shost = class_to_shost(dev);
1388 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1389 struct lpfc_hba *phba = vport->phba;
1390
1391 return snprintf(buf, PAGE_SIZE, "%s - %sOperational\n",
1392 (phba->cfg_enable_dss) ? "Enabled" : "Disabled",
1393 (phba->sli3_options & LPFC_SLI3_DSS_ENABLED) ?
1394 "" : "Not ");
1395}
1396
1397/**
James Smart912e3ac2011-05-24 11:42:11 -04001398 * lpfc_sriov_hw_max_virtfn_show - Return maximum number of virtual functions
1399 * @dev: class converted to a Scsi_host structure.
1400 * @attr: device attribute, not used.
1401 * @buf: on return contains the formatted support level.
1402 *
1403 * Description:
1404 * Returns the maximum number of virtual functions a physical function can
1405 * support, 0 will be returned if called on virtual function.
1406 *
1407 * Returns: size of formatted string.
1408 **/
1409static ssize_t
1410lpfc_sriov_hw_max_virtfn_show(struct device *dev,
1411 struct device_attribute *attr,
1412 char *buf)
1413{
1414 struct Scsi_Host *shost = class_to_shost(dev);
1415 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1416 struct lpfc_hba *phba = vport->phba;
1417 struct pci_dev *pdev = phba->pcidev;
1418 union lpfc_sli4_cfg_shdr *shdr;
1419 uint32_t shdr_status, shdr_add_status;
1420 LPFC_MBOXQ_t *mboxq;
1421 struct lpfc_mbx_get_prof_cfg *get_prof_cfg;
1422 struct lpfc_rsrc_desc_pcie *desc;
1423 uint32_t max_nr_virtfn;
1424 uint32_t desc_count;
1425 int length, rc, i;
1426
1427 if ((phba->sli_rev < LPFC_SLI_REV4) ||
1428 (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
1429 LPFC_SLI_INTF_IF_TYPE_2))
1430 return -EPERM;
1431
1432 if (!pdev->is_physfn)
1433 return snprintf(buf, PAGE_SIZE, "%d\n", 0);
1434
1435 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1436 if (!mboxq)
1437 return -ENOMEM;
1438
1439 /* get the maximum number of virtfn support by physfn */
1440 length = (sizeof(struct lpfc_mbx_get_prof_cfg) -
1441 sizeof(struct lpfc_sli4_cfg_mhdr));
1442 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
1443 LPFC_MBOX_OPCODE_GET_PROFILE_CONFIG,
1444 length, LPFC_SLI4_MBX_EMBED);
1445 shdr = (union lpfc_sli4_cfg_shdr *)
1446 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
1447 bf_set(lpfc_mbox_hdr_pf_num, &shdr->request,
1448 phba->sli4_hba.iov.pf_number + 1);
1449
1450 get_prof_cfg = &mboxq->u.mqe.un.get_prof_cfg;
1451 bf_set(lpfc_mbx_get_prof_cfg_prof_tp, &get_prof_cfg->u.request,
1452 LPFC_CFG_TYPE_CURRENT_ACTIVE);
1453
1454 rc = lpfc_sli_issue_mbox_wait(phba, mboxq,
1455 lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG));
1456
1457 if (rc != MBX_TIMEOUT) {
1458 /* check return status */
1459 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
1460 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
1461 &shdr->response);
1462 if (shdr_status || shdr_add_status || rc)
1463 goto error_out;
1464
1465 } else
1466 goto error_out;
1467
1468 desc_count = get_prof_cfg->u.response.prof_cfg.rsrc_desc_count;
1469
1470 for (i = 0; i < LPFC_RSRC_DESC_MAX_NUM; i++) {
1471 desc = (struct lpfc_rsrc_desc_pcie *)
1472 &get_prof_cfg->u.response.prof_cfg.desc[i];
1473 if (LPFC_RSRC_DESC_TYPE_PCIE ==
1474 bf_get(lpfc_rsrc_desc_pcie_type, desc)) {
1475 max_nr_virtfn = bf_get(lpfc_rsrc_desc_pcie_nr_virtfn,
1476 desc);
1477 break;
1478 }
1479 }
1480
1481 if (i < LPFC_RSRC_DESC_MAX_NUM) {
1482 if (rc != MBX_TIMEOUT)
1483 mempool_free(mboxq, phba->mbox_mem_pool);
1484 return snprintf(buf, PAGE_SIZE, "%d\n", max_nr_virtfn);
1485 }
1486
1487error_out:
1488 if (rc != MBX_TIMEOUT)
1489 mempool_free(mboxq, phba->mbox_mem_pool);
1490 return -EIO;
1491}
1492
1493/**
James Smart3621a712009-04-06 18:47:14 -04001494 * lpfc_param_show - Return a cfg attribute value in decimal
James Smarte59058c2008-08-24 21:49:00 -04001495 *
1496 * Description:
1497 * Macro that given an attr e.g. hba_queue_depth expands
1498 * into a function with the name lpfc_hba_queue_depth_show.
1499 *
1500 * lpfc_##attr##_show: Return the decimal value of an adapters cfg_xxx field.
1501 * @dev: class device that is converted into a Scsi_host.
1502 * @attr: device attribute, not used.
1503 * @buf: on return contains the attribute value in decimal.
1504 *
1505 * Returns: size of formatted string.
1506 **/
dea31012005-04-17 16:05:31 -05001507#define lpfc_param_show(attr) \
1508static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001509lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1510 char *buf) \
dea31012005-04-17 16:05:31 -05001511{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001512 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart2e0fef82007-06-17 19:56:36 -05001513 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
1514 struct lpfc_hba *phba = vport->phba;\
James Smart84d1b002010-02-12 14:42:33 -05001515 uint val = 0;\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001516 val = phba->cfg_##attr;\
1517 return snprintf(buf, PAGE_SIZE, "%d\n",\
1518 phba->cfg_##attr);\
dea31012005-04-17 16:05:31 -05001519}
1520
James Smarte59058c2008-08-24 21:49:00 -04001521/**
James Smart3621a712009-04-06 18:47:14 -04001522 * lpfc_param_hex_show - Return a cfg attribute value in hex
James Smarte59058c2008-08-24 21:49:00 -04001523 *
1524 * Description:
1525 * Macro that given an attr e.g. hba_queue_depth expands
1526 * into a function with the name lpfc_hba_queue_depth_show
1527 *
1528 * lpfc_##attr##_show: Return the hex value of an adapters cfg_xxx field.
1529 * @dev: class device that is converted into a Scsi_host.
1530 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04001531 * @buf: on return contains the attribute value in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001532 *
1533 * Returns: size of formatted string.
1534 **/
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001535#define lpfc_param_hex_show(attr) \
1536static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001537lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1538 char *buf) \
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001539{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001540 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart2e0fef82007-06-17 19:56:36 -05001541 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
1542 struct lpfc_hba *phba = vport->phba;\
James Smart84d1b002010-02-12 14:42:33 -05001543 uint val = 0;\
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001544 val = phba->cfg_##attr;\
1545 return snprintf(buf, PAGE_SIZE, "%#x\n",\
1546 phba->cfg_##attr);\
1547}
1548
James Smarte59058c2008-08-24 21:49:00 -04001549/**
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001550 * lpfc_param_init - Initializes a cfg attribute
James Smarte59058c2008-08-24 21:49:00 -04001551 *
1552 * Description:
1553 * Macro that given an attr e.g. hba_queue_depth expands
1554 * into a function with the name lpfc_hba_queue_depth_init. The macro also
1555 * takes a default argument, a minimum and maximum argument.
1556 *
1557 * lpfc_##attr##_init: Initializes an attribute.
1558 * @phba: pointer the the adapter structure.
1559 * @val: integer attribute value.
1560 *
1561 * Validates the min and max values then sets the adapter config field
1562 * accordingly, or uses the default if out of range and prints an error message.
1563 *
1564 * Returns:
1565 * zero on success
1566 * -EINVAL if default used
1567 **/
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001568#define lpfc_param_init(attr, default, minval, maxval) \
1569static int \
James Smart84d1b002010-02-12 14:42:33 -05001570lpfc_##attr##_init(struct lpfc_hba *phba, uint val) \
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001571{ \
1572 if (val >= minval && val <= maxval) {\
1573 phba->cfg_##attr = val;\
1574 return 0;\
1575 }\
1576 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
James Smarte8b62012007-08-02 11:10:09 -04001577 "0449 lpfc_"#attr" attribute cannot be set to %d, "\
1578 "allowed range is ["#minval", "#maxval"]\n", val); \
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001579 phba->cfg_##attr = default;\
1580 return -EINVAL;\
1581}
1582
James Smarte59058c2008-08-24 21:49:00 -04001583/**
James Smart3621a712009-04-06 18:47:14 -04001584 * lpfc_param_set - Set a cfg attribute value
James Smarte59058c2008-08-24 21:49:00 -04001585 *
1586 * Description:
1587 * Macro that given an attr e.g. hba_queue_depth expands
1588 * into a function with the name lpfc_hba_queue_depth_set
1589 *
1590 * lpfc_##attr##_set: Sets an attribute value.
1591 * @phba: pointer the the adapter structure.
1592 * @val: integer attribute value.
1593 *
1594 * Description:
1595 * Validates the min and max values then sets the
1596 * adapter config field if in the valid range. prints error message
1597 * and does not set the parameter if invalid.
1598 *
1599 * Returns:
1600 * zero on success
1601 * -EINVAL if val is invalid
1602 **/
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001603#define lpfc_param_set(attr, default, minval, maxval) \
1604static int \
James Smart84d1b002010-02-12 14:42:33 -05001605lpfc_##attr##_set(struct lpfc_hba *phba, uint val) \
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001606{ \
1607 if (val >= minval && val <= maxval) {\
1608 phba->cfg_##attr = val;\
1609 return 0;\
1610 }\
1611 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
James Smarte8b62012007-08-02 11:10:09 -04001612 "0450 lpfc_"#attr" attribute cannot be set to %d, "\
1613 "allowed range is ["#minval", "#maxval"]\n", val); \
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001614 return -EINVAL;\
1615}
1616
James Smarte59058c2008-08-24 21:49:00 -04001617/**
James Smart3621a712009-04-06 18:47:14 -04001618 * lpfc_param_store - Set a vport attribute value
James Smarte59058c2008-08-24 21:49:00 -04001619 *
1620 * Description:
1621 * Macro that given an attr e.g. hba_queue_depth expands
1622 * into a function with the name lpfc_hba_queue_depth_store.
1623 *
1624 * lpfc_##attr##_store: Set an sttribute value.
1625 * @dev: class device that is converted into a Scsi_host.
1626 * @attr: device attribute, not used.
1627 * @buf: contains the attribute value in ascii.
1628 * @count: not used.
1629 *
1630 * Description:
1631 * Convert the ascii text number to an integer, then
1632 * use the lpfc_##attr##_set function to set the value.
1633 *
1634 * Returns:
1635 * -EINVAL if val is invalid or lpfc_##attr##_set() fails
1636 * length of buffer upon success.
1637 **/
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001638#define lpfc_param_store(attr) \
dea31012005-04-17 16:05:31 -05001639static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001640lpfc_##attr##_store(struct device *dev, struct device_attribute *attr, \
1641 const char *buf, size_t count) \
dea31012005-04-17 16:05:31 -05001642{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001643 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart2e0fef82007-06-17 19:56:36 -05001644 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
1645 struct lpfc_hba *phba = vport->phba;\
James Smart84d1b002010-02-12 14:42:33 -05001646 uint val = 0;\
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001647 if (!isdigit(buf[0]))\
1648 return -EINVAL;\
1649 if (sscanf(buf, "%i", &val) != 1)\
1650 return -EINVAL;\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001651 if (lpfc_##attr##_set(phba, val) == 0) \
James.Smart@Emulex.Com755c0d02005-10-28 20:29:06 -04001652 return strlen(buf);\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001653 else \
1654 return -EINVAL;\
dea31012005-04-17 16:05:31 -05001655}
1656
James Smarte59058c2008-08-24 21:49:00 -04001657/**
James Smart3621a712009-04-06 18:47:14 -04001658 * lpfc_vport_param_show - Return decimal formatted cfg attribute value
James Smarte59058c2008-08-24 21:49:00 -04001659 *
1660 * Description:
1661 * Macro that given an attr e.g. hba_queue_depth expands
1662 * into a function with the name lpfc_hba_queue_depth_show
1663 *
1664 * lpfc_##attr##_show: prints the attribute value in decimal.
1665 * @dev: class device that is converted into a Scsi_host.
1666 * @attr: device attribute, not used.
1667 * @buf: on return contains the attribute value in decimal.
1668 *
1669 * Returns: length of formatted string.
1670 **/
James Smart3de2a652007-08-02 11:09:59 -04001671#define lpfc_vport_param_show(attr) \
1672static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001673lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1674 char *buf) \
James Smart3de2a652007-08-02 11:09:59 -04001675{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001676 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart3de2a652007-08-02 11:09:59 -04001677 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
James Smart84d1b002010-02-12 14:42:33 -05001678 uint val = 0;\
James Smart3de2a652007-08-02 11:09:59 -04001679 val = vport->cfg_##attr;\
1680 return snprintf(buf, PAGE_SIZE, "%d\n", vport->cfg_##attr);\
1681}
1682
James Smarte59058c2008-08-24 21:49:00 -04001683/**
James Smart3621a712009-04-06 18:47:14 -04001684 * lpfc_vport_param_hex_show - Return hex formatted attribute value
James Smarte59058c2008-08-24 21:49:00 -04001685 *
1686 * Description:
1687 * Macro that given an attr e.g.
1688 * hba_queue_depth expands into a function with the name
1689 * lpfc_hba_queue_depth_show
1690 *
James Smart3621a712009-04-06 18:47:14 -04001691 * lpfc_##attr##_show: prints the attribute value in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001692 * @dev: class device that is converted into a Scsi_host.
1693 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04001694 * @buf: on return contains the attribute value in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001695 *
1696 * Returns: length of formatted string.
1697 **/
James Smart3de2a652007-08-02 11:09:59 -04001698#define lpfc_vport_param_hex_show(attr) \
1699static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001700lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1701 char *buf) \
James Smart3de2a652007-08-02 11:09:59 -04001702{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001703 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart3de2a652007-08-02 11:09:59 -04001704 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
James Smart84d1b002010-02-12 14:42:33 -05001705 uint val = 0;\
James Smart3de2a652007-08-02 11:09:59 -04001706 val = vport->cfg_##attr;\
1707 return snprintf(buf, PAGE_SIZE, "%#x\n", vport->cfg_##attr);\
1708}
1709
James Smarte59058c2008-08-24 21:49:00 -04001710/**
James Smart3621a712009-04-06 18:47:14 -04001711 * lpfc_vport_param_init - Initialize a vport cfg attribute
James Smarte59058c2008-08-24 21:49:00 -04001712 *
1713 * Description:
1714 * Macro that given an attr e.g. hba_queue_depth expands
1715 * into a function with the name lpfc_hba_queue_depth_init. The macro also
1716 * takes a default argument, a minimum and maximum argument.
1717 *
1718 * lpfc_##attr##_init: validates the min and max values then sets the
1719 * adapter config field accordingly, or uses the default if out of range
1720 * and prints an error message.
1721 * @phba: pointer the the adapter structure.
1722 * @val: integer attribute value.
1723 *
1724 * Returns:
1725 * zero on success
1726 * -EINVAL if default used
1727 **/
James Smart3de2a652007-08-02 11:09:59 -04001728#define lpfc_vport_param_init(attr, default, minval, maxval) \
1729static int \
James Smart84d1b002010-02-12 14:42:33 -05001730lpfc_##attr##_init(struct lpfc_vport *vport, uint val) \
James Smart3de2a652007-08-02 11:09:59 -04001731{ \
1732 if (val >= minval && val <= maxval) {\
1733 vport->cfg_##attr = val;\
1734 return 0;\
1735 }\
James Smarte8b62012007-08-02 11:10:09 -04001736 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
James Smartd7c255b2008-08-24 21:50:00 -04001737 "0423 lpfc_"#attr" attribute cannot be set to %d, "\
James Smarte8b62012007-08-02 11:10:09 -04001738 "allowed range is ["#minval", "#maxval"]\n", val); \
James Smart3de2a652007-08-02 11:09:59 -04001739 vport->cfg_##attr = default;\
1740 return -EINVAL;\
1741}
1742
James Smarte59058c2008-08-24 21:49:00 -04001743/**
James Smart3621a712009-04-06 18:47:14 -04001744 * lpfc_vport_param_set - Set a vport cfg attribute
James Smarte59058c2008-08-24 21:49:00 -04001745 *
1746 * Description:
1747 * Macro that given an attr e.g. hba_queue_depth expands
1748 * into a function with the name lpfc_hba_queue_depth_set
1749 *
1750 * lpfc_##attr##_set: validates the min and max values then sets the
1751 * adapter config field if in the valid range. prints error message
1752 * and does not set the parameter if invalid.
1753 * @phba: pointer the the adapter structure.
1754 * @val: integer attribute value.
1755 *
1756 * Returns:
1757 * zero on success
1758 * -EINVAL if val is invalid
1759 **/
James Smart3de2a652007-08-02 11:09:59 -04001760#define lpfc_vport_param_set(attr, default, minval, maxval) \
1761static int \
James Smart84d1b002010-02-12 14:42:33 -05001762lpfc_##attr##_set(struct lpfc_vport *vport, uint val) \
James Smart3de2a652007-08-02 11:09:59 -04001763{ \
1764 if (val >= minval && val <= maxval) {\
1765 vport->cfg_##attr = val;\
1766 return 0;\
1767 }\
James Smarte8b62012007-08-02 11:10:09 -04001768 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
James Smartd7c255b2008-08-24 21:50:00 -04001769 "0424 lpfc_"#attr" attribute cannot be set to %d, "\
James Smarte8b62012007-08-02 11:10:09 -04001770 "allowed range is ["#minval", "#maxval"]\n", val); \
James Smart3de2a652007-08-02 11:09:59 -04001771 return -EINVAL;\
1772}
1773
James Smarte59058c2008-08-24 21:49:00 -04001774/**
James Smart3621a712009-04-06 18:47:14 -04001775 * lpfc_vport_param_store - Set a vport attribute
James Smarte59058c2008-08-24 21:49:00 -04001776 *
1777 * Description:
1778 * Macro that given an attr e.g. hba_queue_depth
1779 * expands into a function with the name lpfc_hba_queue_depth_store
1780 *
1781 * lpfc_##attr##_store: convert the ascii text number to an integer, then
1782 * use the lpfc_##attr##_set function to set the value.
1783 * @cdev: class device that is converted into a Scsi_host.
1784 * @buf: contains the attribute value in decimal.
1785 * @count: not used.
1786 *
1787 * Returns:
1788 * -EINVAL if val is invalid or lpfc_##attr##_set() fails
1789 * length of buffer upon success.
1790 **/
James Smart3de2a652007-08-02 11:09:59 -04001791#define lpfc_vport_param_store(attr) \
1792static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001793lpfc_##attr##_store(struct device *dev, struct device_attribute *attr, \
1794 const char *buf, size_t count) \
James Smart3de2a652007-08-02 11:09:59 -04001795{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001796 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart3de2a652007-08-02 11:09:59 -04001797 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
James Smart84d1b002010-02-12 14:42:33 -05001798 uint val = 0;\
James Smart3de2a652007-08-02 11:09:59 -04001799 if (!isdigit(buf[0]))\
1800 return -EINVAL;\
1801 if (sscanf(buf, "%i", &val) != 1)\
1802 return -EINVAL;\
1803 if (lpfc_##attr##_set(vport, val) == 0) \
1804 return strlen(buf);\
1805 else \
1806 return -EINVAL;\
1807}
1808
1809
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001810#define LPFC_ATTR(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001811static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001812module_param(lpfc_##name, uint, S_IRUGO);\
dea31012005-04-17 16:05:31 -05001813MODULE_PARM_DESC(lpfc_##name, desc);\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001814lpfc_param_init(name, defval, minval, maxval)
dea31012005-04-17 16:05:31 -05001815
1816#define LPFC_ATTR_R(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001817static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001818module_param(lpfc_##name, uint, S_IRUGO);\
dea31012005-04-17 16:05:31 -05001819MODULE_PARM_DESC(lpfc_##name, desc);\
1820lpfc_param_show(name)\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001821lpfc_param_init(name, defval, minval, maxval)\
Tony Jonesee959b02008-02-22 00:13:36 +01001822static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
dea31012005-04-17 16:05:31 -05001823
1824#define LPFC_ATTR_RW(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001825static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001826module_param(lpfc_##name, uint, S_IRUGO);\
dea31012005-04-17 16:05:31 -05001827MODULE_PARM_DESC(lpfc_##name, desc);\
1828lpfc_param_show(name)\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001829lpfc_param_init(name, defval, minval, maxval)\
1830lpfc_param_set(name, defval, minval, maxval)\
1831lpfc_param_store(name)\
Tony Jonesee959b02008-02-22 00:13:36 +01001832static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
1833 lpfc_##name##_show, lpfc_##name##_store)
dea31012005-04-17 16:05:31 -05001834
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001835#define LPFC_ATTR_HEX_R(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001836static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001837module_param(lpfc_##name, uint, S_IRUGO);\
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001838MODULE_PARM_DESC(lpfc_##name, desc);\
1839lpfc_param_hex_show(name)\
1840lpfc_param_init(name, defval, minval, maxval)\
Tony Jonesee959b02008-02-22 00:13:36 +01001841static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001842
1843#define LPFC_ATTR_HEX_RW(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001844static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001845module_param(lpfc_##name, uint, S_IRUGO);\
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001846MODULE_PARM_DESC(lpfc_##name, desc);\
1847lpfc_param_hex_show(name)\
1848lpfc_param_init(name, defval, minval, maxval)\
1849lpfc_param_set(name, defval, minval, maxval)\
1850lpfc_param_store(name)\
Tony Jonesee959b02008-02-22 00:13:36 +01001851static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
1852 lpfc_##name##_show, lpfc_##name##_store)
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001853
James Smart3de2a652007-08-02 11:09:59 -04001854#define LPFC_VPORT_ATTR(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001855static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001856module_param(lpfc_##name, uint, S_IRUGO);\
James Smart3de2a652007-08-02 11:09:59 -04001857MODULE_PARM_DESC(lpfc_##name, desc);\
1858lpfc_vport_param_init(name, defval, minval, maxval)
1859
1860#define LPFC_VPORT_ATTR_R(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001861static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001862module_param(lpfc_##name, uint, S_IRUGO);\
James Smart3de2a652007-08-02 11:09:59 -04001863MODULE_PARM_DESC(lpfc_##name, desc);\
1864lpfc_vport_param_show(name)\
1865lpfc_vport_param_init(name, defval, minval, maxval)\
Tony Jonesee959b02008-02-22 00:13:36 +01001866static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
James Smart3de2a652007-08-02 11:09:59 -04001867
1868#define LPFC_VPORT_ATTR_RW(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001869static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001870module_param(lpfc_##name, uint, S_IRUGO);\
James Smart3de2a652007-08-02 11:09:59 -04001871MODULE_PARM_DESC(lpfc_##name, desc);\
1872lpfc_vport_param_show(name)\
1873lpfc_vport_param_init(name, defval, minval, maxval)\
1874lpfc_vport_param_set(name, defval, minval, maxval)\
1875lpfc_vport_param_store(name)\
Tony Jonesee959b02008-02-22 00:13:36 +01001876static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
1877 lpfc_##name##_show, lpfc_##name##_store)
James Smart3de2a652007-08-02 11:09:59 -04001878
1879#define LPFC_VPORT_ATTR_HEX_R(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001880static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001881module_param(lpfc_##name, uint, S_IRUGO);\
James Smart3de2a652007-08-02 11:09:59 -04001882MODULE_PARM_DESC(lpfc_##name, desc);\
1883lpfc_vport_param_hex_show(name)\
1884lpfc_vport_param_init(name, defval, minval, maxval)\
Tony Jonesee959b02008-02-22 00:13:36 +01001885static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
James Smart3de2a652007-08-02 11:09:59 -04001886
1887#define LPFC_VPORT_ATTR_HEX_RW(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001888static uint lpfc_##name = defval;\
James Smartab56dc22011-02-16 12:39:57 -05001889module_param(lpfc_##name, uint, S_IRUGO);\
James Smart3de2a652007-08-02 11:09:59 -04001890MODULE_PARM_DESC(lpfc_##name, desc);\
1891lpfc_vport_param_hex_show(name)\
1892lpfc_vport_param_init(name, defval, minval, maxval)\
1893lpfc_vport_param_set(name, defval, minval, maxval)\
1894lpfc_vport_param_store(name)\
Tony Jonesee959b02008-02-22 00:13:36 +01001895static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
1896 lpfc_##name##_show, lpfc_##name##_store)
James Smart3de2a652007-08-02 11:09:59 -04001897
James Smart81301a92008-12-04 22:39:46 -05001898static DEVICE_ATTR(bg_info, S_IRUGO, lpfc_bg_info_show, NULL);
1899static DEVICE_ATTR(bg_guard_err, S_IRUGO, lpfc_bg_guard_err_show, NULL);
1900static DEVICE_ATTR(bg_apptag_err, S_IRUGO, lpfc_bg_apptag_err_show, NULL);
1901static DEVICE_ATTR(bg_reftag_err, S_IRUGO, lpfc_bg_reftag_err_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001902static DEVICE_ATTR(info, S_IRUGO, lpfc_info_show, NULL);
1903static DEVICE_ATTR(serialnum, S_IRUGO, lpfc_serialnum_show, NULL);
1904static DEVICE_ATTR(modeldesc, S_IRUGO, lpfc_modeldesc_show, NULL);
1905static DEVICE_ATTR(modelname, S_IRUGO, lpfc_modelname_show, NULL);
1906static DEVICE_ATTR(programtype, S_IRUGO, lpfc_programtype_show, NULL);
1907static DEVICE_ATTR(portnum, S_IRUGO, lpfc_vportnum_show, NULL);
1908static DEVICE_ATTR(fwrev, S_IRUGO, lpfc_fwrev_show, NULL);
1909static DEVICE_ATTR(hdw, S_IRUGO, lpfc_hdw_show, NULL);
James Smart84d1b002010-02-12 14:42:33 -05001910static DEVICE_ATTR(link_state, S_IRUGO | S_IWUSR, lpfc_link_state_show,
1911 lpfc_link_state_store);
Tony Jonesee959b02008-02-22 00:13:36 +01001912static DEVICE_ATTR(option_rom_version, S_IRUGO,
1913 lpfc_option_rom_version_show, NULL);
1914static DEVICE_ATTR(num_discovered_ports, S_IRUGO,
1915 lpfc_num_discovered_ports_show, NULL);
James Smart84774a42008-08-24 21:50:06 -04001916static DEVICE_ATTR(menlo_mgmt_mode, S_IRUGO, lpfc_mlomgmt_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001917static DEVICE_ATTR(nport_evt_cnt, S_IRUGO, lpfc_nport_evt_cnt_show, NULL);
1918static DEVICE_ATTR(lpfc_drvr_version, S_IRUGO, lpfc_drvr_version_show, NULL);
James Smart45ed1192009-10-02 15:17:02 -04001919static DEVICE_ATTR(lpfc_enable_fip, S_IRUGO, lpfc_enable_fip_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001920static DEVICE_ATTR(board_mode, S_IRUGO | S_IWUSR,
1921 lpfc_board_mode_show, lpfc_board_mode_store);
1922static DEVICE_ATTR(issue_reset, S_IWUSR, NULL, lpfc_issue_reset);
1923static DEVICE_ATTR(max_vpi, S_IRUGO, lpfc_max_vpi_show, NULL);
1924static DEVICE_ATTR(used_vpi, S_IRUGO, lpfc_used_vpi_show, NULL);
1925static DEVICE_ATTR(max_rpi, S_IRUGO, lpfc_max_rpi_show, NULL);
1926static DEVICE_ATTR(used_rpi, S_IRUGO, lpfc_used_rpi_show, NULL);
1927static DEVICE_ATTR(max_xri, S_IRUGO, lpfc_max_xri_show, NULL);
1928static DEVICE_ATTR(used_xri, S_IRUGO, lpfc_used_xri_show, NULL);
1929static DEVICE_ATTR(npiv_info, S_IRUGO, lpfc_npiv_info_show, NULL);
1930static DEVICE_ATTR(lpfc_temp_sensor, S_IRUGO, lpfc_temp_sensor_show, NULL);
James Smartbc739052010-08-04 16:11:18 -04001931static DEVICE_ATTR(lpfc_fips_level, S_IRUGO, lpfc_fips_level_show, NULL);
1932static DEVICE_ATTR(lpfc_fips_rev, S_IRUGO, lpfc_fips_rev_show, NULL);
James Smartab56dc22011-02-16 12:39:57 -05001933static DEVICE_ATTR(lpfc_dss, S_IRUGO, lpfc_dss_show, NULL);
James Smart912e3ac2011-05-24 11:42:11 -04001934static DEVICE_ATTR(lpfc_sriov_hw_max_virtfn, S_IRUGO,
1935 lpfc_sriov_hw_max_virtfn_show, NULL);
James Smartc3f28af2006-08-18 17:47:18 -04001936
James Smarta12e07b2006-12-02 13:35:30 -05001937static char *lpfc_soft_wwn_key = "C99G71SL8032A";
James Smartc3f28af2006-08-18 17:47:18 -04001938
James Smarte59058c2008-08-24 21:49:00 -04001939/**
James Smart3621a712009-04-06 18:47:14 -04001940 * lpfc_soft_wwn_enable_store - Allows setting of the wwn if the key is valid
James Smarte59058c2008-08-24 21:49:00 -04001941 * @dev: class device that is converted into a Scsi_host.
1942 * @attr: device attribute, not used.
1943 * @buf: containing the string lpfc_soft_wwn_key.
1944 * @count: must be size of lpfc_soft_wwn_key.
1945 *
1946 * Returns:
1947 * -EINVAL if the buffer does not contain lpfc_soft_wwn_key
1948 * length of buf indicates success
1949 **/
James Smartc3f28af2006-08-18 17:47:18 -04001950static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001951lpfc_soft_wwn_enable_store(struct device *dev, struct device_attribute *attr,
1952 const char *buf, size_t count)
James Smartc3f28af2006-08-18 17:47:18 -04001953{
Tony Jonesee959b02008-02-22 00:13:36 +01001954 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001955 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1956 struct lpfc_hba *phba = vport->phba;
James Smartc3f28af2006-08-18 17:47:18 -04001957 unsigned int cnt = count;
1958
1959 /*
1960 * We're doing a simple sanity check for soft_wwpn setting.
1961 * We require that the user write a specific key to enable
1962 * the soft_wwpn attribute to be settable. Once the attribute
1963 * is written, the enable key resets. If further updates are
1964 * desired, the key must be written again to re-enable the
1965 * attribute.
1966 *
1967 * The "key" is not secret - it is a hardcoded string shown
1968 * here. The intent is to protect against the random user or
1969 * application that is just writing attributes.
1970 */
1971
1972 /* count may include a LF at end of string */
1973 if (buf[cnt-1] == '\n')
1974 cnt--;
1975
James Smarta12e07b2006-12-02 13:35:30 -05001976 if ((cnt != strlen(lpfc_soft_wwn_key)) ||
1977 (strncmp(buf, lpfc_soft_wwn_key, strlen(lpfc_soft_wwn_key)) != 0))
James Smartc3f28af2006-08-18 17:47:18 -04001978 return -EINVAL;
1979
James Smarta12e07b2006-12-02 13:35:30 -05001980 phba->soft_wwn_enable = 1;
James Smartc3f28af2006-08-18 17:47:18 -04001981 return count;
1982}
Tony Jonesee959b02008-02-22 00:13:36 +01001983static DEVICE_ATTR(lpfc_soft_wwn_enable, S_IWUSR, NULL,
1984 lpfc_soft_wwn_enable_store);
James Smartc3f28af2006-08-18 17:47:18 -04001985
James Smarte59058c2008-08-24 21:49:00 -04001986/**
James Smart3621a712009-04-06 18:47:14 -04001987 * lpfc_soft_wwpn_show - Return the cfg soft ww port name of the adapter
James Smarte59058c2008-08-24 21:49:00 -04001988 * @dev: class device that is converted into a Scsi_host.
1989 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04001990 * @buf: on return contains the wwpn in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001991 *
1992 * Returns: size of formatted string.
1993 **/
James Smartc3f28af2006-08-18 17:47:18 -04001994static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001995lpfc_soft_wwpn_show(struct device *dev, struct device_attribute *attr,
1996 char *buf)
James Smartc3f28af2006-08-18 17:47:18 -04001997{
Tony Jonesee959b02008-02-22 00:13:36 +01001998 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001999 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2000 struct lpfc_hba *phba = vport->phba;
2001
Randy Dunlapafc071e2006-10-23 21:47:13 -07002002 return snprintf(buf, PAGE_SIZE, "0x%llx\n",
2003 (unsigned long long)phba->cfg_soft_wwpn);
James Smartc3f28af2006-08-18 17:47:18 -04002004}
2005
James Smarte59058c2008-08-24 21:49:00 -04002006/**
James Smart3621a712009-04-06 18:47:14 -04002007 * lpfc_soft_wwpn_store - Set the ww port name of the adapter
James Smarte59058c2008-08-24 21:49:00 -04002008 * @dev class device that is converted into a Scsi_host.
2009 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04002010 * @buf: contains the wwpn in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04002011 * @count: number of wwpn bytes in buf
2012 *
2013 * Returns:
2014 * -EACCES hba reset not enabled, adapter over temp
2015 * -EINVAL soft wwn not enabled, count is invalid, invalid wwpn byte invalid
2016 * -EIO error taking adapter offline or online
2017 * value of count on success
2018 **/
James Smartc3f28af2006-08-18 17:47:18 -04002019static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01002020lpfc_soft_wwpn_store(struct device *dev, struct device_attribute *attr,
2021 const char *buf, size_t count)
James Smartc3f28af2006-08-18 17:47:18 -04002022{
Tony Jonesee959b02008-02-22 00:13:36 +01002023 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05002024 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2025 struct lpfc_hba *phba = vport->phba;
James Smartc3f28af2006-08-18 17:47:18 -04002026 struct completion online_compl;
2027 int stat1=0, stat2=0;
2028 unsigned int i, j, cnt=count;
2029 u8 wwpn[8];
James Smartfedd3b72011-02-16 12:39:24 -05002030 int rc;
James Smartc3f28af2006-08-18 17:47:18 -04002031
James Smart13815c82008-01-11 01:52:48 -05002032 if (!phba->cfg_enable_hba_reset)
2033 return -EACCES;
James Smart7af67052007-10-27 13:38:11 -04002034 spin_lock_irq(&phba->hbalock);
2035 if (phba->over_temp_state == HBA_OVER_TEMP) {
2036 spin_unlock_irq(&phba->hbalock);
James Smart09372822008-01-11 01:52:54 -05002037 return -EACCES;
James Smart7af67052007-10-27 13:38:11 -04002038 }
2039 spin_unlock_irq(&phba->hbalock);
James Smartc3f28af2006-08-18 17:47:18 -04002040 /* count may include a LF at end of string */
2041 if (buf[cnt-1] == '\n')
2042 cnt--;
2043
James Smarta12e07b2006-12-02 13:35:30 -05002044 if (!phba->soft_wwn_enable || (cnt < 16) || (cnt > 18) ||
James Smartc3f28af2006-08-18 17:47:18 -04002045 ((cnt == 17) && (*buf++ != 'x')) ||
2046 ((cnt == 18) && ((*buf++ != '0') || (*buf++ != 'x'))))
2047 return -EINVAL;
2048
James Smarta12e07b2006-12-02 13:35:30 -05002049 phba->soft_wwn_enable = 0;
James Smartc3f28af2006-08-18 17:47:18 -04002050
2051 memset(wwpn, 0, sizeof(wwpn));
2052
2053 /* Validate and store the new name */
2054 for (i=0, j=0; i < 16; i++) {
Andy Shevchenkoecc30992010-08-10 18:01:27 -07002055 int value;
2056
2057 value = hex_to_bin(*buf++);
2058 if (value >= 0)
2059 j = (j << 4) | value;
James Smartc3f28af2006-08-18 17:47:18 -04002060 else
2061 return -EINVAL;
2062 if (i % 2) {
2063 wwpn[i/2] = j & 0xff;
2064 j = 0;
2065 }
2066 }
2067 phba->cfg_soft_wwpn = wwn_to_u64(wwpn);
James Smart2e0fef82007-06-17 19:56:36 -05002068 fc_host_port_name(shost) = phba->cfg_soft_wwpn;
James Smarta12e07b2006-12-02 13:35:30 -05002069 if (phba->cfg_soft_wwnn)
James Smart2e0fef82007-06-17 19:56:36 -05002070 fc_host_node_name(shost) = phba->cfg_soft_wwnn;
James Smartc3f28af2006-08-18 17:47:18 -04002071
2072 dev_printk(KERN_NOTICE, &phba->pcidev->dev,
2073 "lpfc%d: Reinitializing to use soft_wwpn\n", phba->brd_no);
2074
James Smart46fa3112007-04-25 09:51:45 -04002075 stat1 = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
James Smartc3f28af2006-08-18 17:47:18 -04002076 if (stat1)
2077 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002078 "0463 lpfc_soft_wwpn attribute set failed to "
2079 "reinit adapter - %d\n", stat1);
James Smartc3f28af2006-08-18 17:47:18 -04002080 init_completion(&online_compl);
James Smartfedd3b72011-02-16 12:39:24 -05002081 rc = lpfc_workq_post_event(phba, &stat2, &online_compl,
2082 LPFC_EVT_ONLINE);
2083 if (rc == 0)
2084 return -ENOMEM;
2085
James Smartc3f28af2006-08-18 17:47:18 -04002086 wait_for_completion(&online_compl);
2087 if (stat2)
2088 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002089 "0464 lpfc_soft_wwpn attribute set failed to "
2090 "reinit adapter - %d\n", stat2);
James Smartc3f28af2006-08-18 17:47:18 -04002091 return (stat1 || stat2) ? -EIO : count;
2092}
Tony Jonesee959b02008-02-22 00:13:36 +01002093static DEVICE_ATTR(lpfc_soft_wwpn, S_IRUGO | S_IWUSR,\
2094 lpfc_soft_wwpn_show, lpfc_soft_wwpn_store);
James Smartc3f28af2006-08-18 17:47:18 -04002095
James Smarte59058c2008-08-24 21:49:00 -04002096/**
James Smart3621a712009-04-06 18:47:14 -04002097 * lpfc_soft_wwnn_show - Return the cfg soft ww node name for the adapter
James Smarte59058c2008-08-24 21:49:00 -04002098 * @dev: class device that is converted into a Scsi_host.
2099 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04002100 * @buf: on return contains the wwnn in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04002101 *
2102 * Returns: size of formatted string.
2103 **/
James Smarta12e07b2006-12-02 13:35:30 -05002104static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01002105lpfc_soft_wwnn_show(struct device *dev, struct device_attribute *attr,
2106 char *buf)
James Smarta12e07b2006-12-02 13:35:30 -05002107{
Tony Jonesee959b02008-02-22 00:13:36 +01002108 struct Scsi_Host *shost = class_to_shost(dev);
James Smart51ef4c22007-08-02 11:10:31 -04002109 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
James Smarta12e07b2006-12-02 13:35:30 -05002110 return snprintf(buf, PAGE_SIZE, "0x%llx\n",
2111 (unsigned long long)phba->cfg_soft_wwnn);
2112}
2113
James Smarte59058c2008-08-24 21:49:00 -04002114/**
James Smart3621a712009-04-06 18:47:14 -04002115 * lpfc_soft_wwnn_store - sets the ww node name of the adapter
James Smarte59058c2008-08-24 21:49:00 -04002116 * @cdev: class device that is converted into a Scsi_host.
James Smart3621a712009-04-06 18:47:14 -04002117 * @buf: contains the ww node name in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04002118 * @count: number of wwnn bytes in buf.
2119 *
2120 * Returns:
2121 * -EINVAL soft wwn not enabled, count is invalid, invalid wwnn byte invalid
2122 * value of count on success
2123 **/
James Smarta12e07b2006-12-02 13:35:30 -05002124static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01002125lpfc_soft_wwnn_store(struct device *dev, struct device_attribute *attr,
2126 const char *buf, size_t count)
James Smarta12e07b2006-12-02 13:35:30 -05002127{
Tony Jonesee959b02008-02-22 00:13:36 +01002128 struct Scsi_Host *shost = class_to_shost(dev);
James Smart51ef4c22007-08-02 11:10:31 -04002129 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
James Smarta12e07b2006-12-02 13:35:30 -05002130 unsigned int i, j, cnt=count;
2131 u8 wwnn[8];
2132
2133 /* count may include a LF at end of string */
2134 if (buf[cnt-1] == '\n')
2135 cnt--;
2136
2137 if (!phba->soft_wwn_enable || (cnt < 16) || (cnt > 18) ||
2138 ((cnt == 17) && (*buf++ != 'x')) ||
2139 ((cnt == 18) && ((*buf++ != '0') || (*buf++ != 'x'))))
2140 return -EINVAL;
2141
2142 /*
2143 * Allow wwnn to be set many times, as long as the enable is set.
2144 * However, once the wwpn is set, everything locks.
2145 */
2146
2147 memset(wwnn, 0, sizeof(wwnn));
2148
2149 /* Validate and store the new name */
2150 for (i=0, j=0; i < 16; i++) {
Andy Shevchenkoecc30992010-08-10 18:01:27 -07002151 int value;
2152
2153 value = hex_to_bin(*buf++);
2154 if (value >= 0)
2155 j = (j << 4) | value;
James Smarta12e07b2006-12-02 13:35:30 -05002156 else
2157 return -EINVAL;
2158 if (i % 2) {
2159 wwnn[i/2] = j & 0xff;
2160 j = 0;
2161 }
2162 }
2163 phba->cfg_soft_wwnn = wwn_to_u64(wwnn);
2164
2165 dev_printk(KERN_NOTICE, &phba->pcidev->dev,
2166 "lpfc%d: soft_wwnn set. Value will take effect upon "
2167 "setting of the soft_wwpn\n", phba->brd_no);
2168
2169 return count;
2170}
Tony Jonesee959b02008-02-22 00:13:36 +01002171static DEVICE_ATTR(lpfc_soft_wwnn, S_IRUGO | S_IWUSR,\
2172 lpfc_soft_wwnn_show, lpfc_soft_wwnn_store);
James Smarta12e07b2006-12-02 13:35:30 -05002173
James Smartc3f28af2006-08-18 17:47:18 -04002174
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002175static int lpfc_poll = 0;
James Smartab56dc22011-02-16 12:39:57 -05002176module_param(lpfc_poll, int, S_IRUGO);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002177MODULE_PARM_DESC(lpfc_poll, "FCP ring polling mode control:"
2178 " 0 - none,"
2179 " 1 - poll with interrupts enabled"
2180 " 3 - poll and disable FCP ring interrupts");
2181
Tony Jonesee959b02008-02-22 00:13:36 +01002182static DEVICE_ATTR(lpfc_poll, S_IRUGO | S_IWUSR,
2183 lpfc_poll_show, lpfc_poll_store);
dea31012005-04-17 16:05:31 -05002184
James Smart92d7f7b2007-06-17 19:56:38 -05002185int lpfc_sli_mode = 0;
James Smartab56dc22011-02-16 12:39:57 -05002186module_param(lpfc_sli_mode, int, S_IRUGO);
James Smart92d7f7b2007-06-17 19:56:38 -05002187MODULE_PARM_DESC(lpfc_sli_mode, "SLI mode selector:"
2188 " 0 - auto (SLI-3 if supported),"
2189 " 2 - select SLI-2 even on SLI-3 capable HBAs,"
2190 " 3 - select SLI-3");
2191
James Smart15672312010-04-06 14:49:03 -04002192int lpfc_enable_npiv = 1;
James Smartab56dc22011-02-16 12:39:57 -05002193module_param(lpfc_enable_npiv, int, S_IRUGO);
James Smart7ee5d432007-10-27 13:37:17 -04002194MODULE_PARM_DESC(lpfc_enable_npiv, "Enable NPIV functionality");
2195lpfc_param_show(enable_npiv);
James Smart4b40c592010-03-15 11:25:44 -04002196lpfc_param_init(enable_npiv, 1, 0, 1);
James Smart15672312010-04-06 14:49:03 -04002197static DEVICE_ATTR(lpfc_enable_npiv, S_IRUGO, lpfc_enable_npiv_show, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05002198
James Smart19ca7602010-11-20 23:11:55 -05002199int lpfc_enable_rrq;
James Smartab56dc22011-02-16 12:39:57 -05002200module_param(lpfc_enable_rrq, int, S_IRUGO);
James Smart19ca7602010-11-20 23:11:55 -05002201MODULE_PARM_DESC(lpfc_enable_rrq, "Enable RRQ functionality");
2202lpfc_param_show(enable_rrq);
2203lpfc_param_init(enable_rrq, 0, 0, 1);
2204static DEVICE_ATTR(lpfc_enable_rrq, S_IRUGO, lpfc_enable_rrq_show, NULL);
2205
dea31012005-04-17 16:05:31 -05002206/*
James Smart84d1b002010-02-12 14:42:33 -05002207# lpfc_suppress_link_up: Bring link up at initialization
2208# 0x0 = bring link up (issue MBX_INIT_LINK)
2209# 0x1 = do NOT bring link up at initialization(MBX_INIT_LINK)
2210# 0x2 = never bring up link
2211# Default value is 0.
2212*/
James Smarte40a02c2010-02-26 14:13:54 -05002213LPFC_ATTR_R(suppress_link_up, LPFC_INITIALIZE_LINK, LPFC_INITIALIZE_LINK,
2214 LPFC_DELAY_INIT_LINK_INDEFINITELY,
2215 "Suppress Link Up at initialization");
James Smart2a9bf3d2010-06-07 15:24:45 -04002216/*
2217# lpfc_cnt: Number of IOCBs allocated for ELS, CT, and ABTS
2218# 1 - (1024)
2219# 2 - (2048)
2220# 3 - (3072)
2221# 4 - (4096)
2222# 5 - (5120)
2223*/
2224static ssize_t
2225lpfc_iocb_hw_show(struct device *dev, struct device_attribute *attr, char *buf)
2226{
2227 struct Scsi_Host *shost = class_to_shost(dev);
2228 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
2229
2230 return snprintf(buf, PAGE_SIZE, "%d\n", phba->iocb_max);
2231}
2232
2233static DEVICE_ATTR(iocb_hw, S_IRUGO,
2234 lpfc_iocb_hw_show, NULL);
2235static ssize_t
2236lpfc_txq_hw_show(struct device *dev, struct device_attribute *attr, char *buf)
2237{
2238 struct Scsi_Host *shost = class_to_shost(dev);
2239 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
2240
2241 return snprintf(buf, PAGE_SIZE, "%d\n",
2242 phba->sli.ring[LPFC_ELS_RING].txq_max);
2243}
2244
2245static DEVICE_ATTR(txq_hw, S_IRUGO,
2246 lpfc_txq_hw_show, NULL);
2247static ssize_t
2248lpfc_txcmplq_hw_show(struct device *dev, struct device_attribute *attr,
2249 char *buf)
2250{
2251 struct Scsi_Host *shost = class_to_shost(dev);
2252 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
2253
2254 return snprintf(buf, PAGE_SIZE, "%d\n",
2255 phba->sli.ring[LPFC_ELS_RING].txcmplq_max);
2256}
2257
2258static DEVICE_ATTR(txcmplq_hw, S_IRUGO,
2259 lpfc_txcmplq_hw_show, NULL);
2260
2261int lpfc_iocb_cnt = 2;
James Smartab56dc22011-02-16 12:39:57 -05002262module_param(lpfc_iocb_cnt, int, S_IRUGO);
James Smart2a9bf3d2010-06-07 15:24:45 -04002263MODULE_PARM_DESC(lpfc_iocb_cnt,
2264 "Number of IOCBs alloc for ELS, CT, and ABTS: 1k to 5k IOCBs");
2265lpfc_param_show(iocb_cnt);
2266lpfc_param_init(iocb_cnt, 2, 1, 5);
2267static DEVICE_ATTR(lpfc_iocb_cnt, S_IRUGO,
2268 lpfc_iocb_cnt_show, NULL);
James Smart84d1b002010-02-12 14:42:33 -05002269
2270/*
James Smartc01f3202006-08-18 17:47:08 -04002271# lpfc_nodev_tmo: If set, it will hold all I/O errors on devices that disappear
2272# until the timer expires. Value range is [0,255]. Default value is 30.
2273*/
2274static int lpfc_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
2275static int lpfc_devloss_tmo = LPFC_DEF_DEVLOSS_TMO;
2276module_param(lpfc_nodev_tmo, int, 0);
2277MODULE_PARM_DESC(lpfc_nodev_tmo,
2278 "Seconds driver will hold I/O waiting "
2279 "for a device to come back");
James Smarte59058c2008-08-24 21:49:00 -04002280
2281/**
James Smart3621a712009-04-06 18:47:14 -04002282 * lpfc_nodev_tmo_show - Return the hba dev loss timeout value
James Smarte59058c2008-08-24 21:49:00 -04002283 * @dev: class converted to a Scsi_host structure.
2284 * @attr: device attribute, not used.
2285 * @buf: on return contains the dev loss timeout in decimal.
2286 *
2287 * Returns: size of formatted string.
2288 **/
James Smartc01f3202006-08-18 17:47:08 -04002289static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01002290lpfc_nodev_tmo_show(struct device *dev, struct device_attribute *attr,
2291 char *buf)
James Smartc01f3202006-08-18 17:47:08 -04002292{
Tony Jonesee959b02008-02-22 00:13:36 +01002293 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05002294 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
James Smarte40a02c2010-02-26 14:13:54 -05002295
James Smart3de2a652007-08-02 11:09:59 -04002296 return snprintf(buf, PAGE_SIZE, "%d\n", vport->cfg_devloss_tmo);
James Smartc01f3202006-08-18 17:47:08 -04002297}
2298
James Smarte59058c2008-08-24 21:49:00 -04002299/**
James Smart3621a712009-04-06 18:47:14 -04002300 * lpfc_nodev_tmo_init - Set the hba nodev timeout value
James Smarte59058c2008-08-24 21:49:00 -04002301 * @vport: lpfc vport structure pointer.
2302 * @val: contains the nodev timeout value.
2303 *
2304 * Description:
2305 * If the devloss tmo is already set then nodev tmo is set to devloss tmo,
2306 * a kernel error message is printed and zero is returned.
2307 * Else if val is in range then nodev tmo and devloss tmo are set to val.
2308 * Otherwise nodev tmo is set to the default value.
2309 *
2310 * Returns:
2311 * zero if already set or if val is in range
2312 * -EINVAL val out of range
2313 **/
James Smartc01f3202006-08-18 17:47:08 -04002314static int
James Smart3de2a652007-08-02 11:09:59 -04002315lpfc_nodev_tmo_init(struct lpfc_vport *vport, int val)
James Smartc01f3202006-08-18 17:47:08 -04002316{
James Smart3de2a652007-08-02 11:09:59 -04002317 if (vport->cfg_devloss_tmo != LPFC_DEF_DEVLOSS_TMO) {
2318 vport->cfg_nodev_tmo = vport->cfg_devloss_tmo;
2319 if (val != LPFC_DEF_DEVLOSS_TMO)
James Smarte8b62012007-08-02 11:10:09 -04002320 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04002321 "0407 Ignoring nodev_tmo module "
James Smarte8b62012007-08-02 11:10:09 -04002322 "parameter because devloss_tmo is "
2323 "set.\n");
James Smartc01f3202006-08-18 17:47:08 -04002324 return 0;
2325 }
2326
2327 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
James Smart3de2a652007-08-02 11:09:59 -04002328 vport->cfg_nodev_tmo = val;
2329 vport->cfg_devloss_tmo = val;
James Smartc01f3202006-08-18 17:47:08 -04002330 return 0;
2331 }
James Smarte8b62012007-08-02 11:10:09 -04002332 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2333 "0400 lpfc_nodev_tmo attribute cannot be set to"
2334 " %d, allowed range is [%d, %d]\n",
2335 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
James Smart3de2a652007-08-02 11:09:59 -04002336 vport->cfg_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
James Smartc01f3202006-08-18 17:47:08 -04002337 return -EINVAL;
2338}
2339
James Smarte59058c2008-08-24 21:49:00 -04002340/**
James Smart3621a712009-04-06 18:47:14 -04002341 * lpfc_update_rport_devloss_tmo - Update dev loss tmo value
James Smarte59058c2008-08-24 21:49:00 -04002342 * @vport: lpfc vport structure pointer.
2343 *
2344 * Description:
2345 * Update all the ndlp's dev loss tmo with the vport devloss tmo value.
2346 **/
James Smart7054a602007-04-25 09:52:34 -04002347static void
James Smart3de2a652007-08-02 11:09:59 -04002348lpfc_update_rport_devloss_tmo(struct lpfc_vport *vport)
James Smart7054a602007-04-25 09:52:34 -04002349{
James Smart858c9f62007-06-17 19:56:39 -05002350 struct Scsi_Host *shost;
James Smart7054a602007-04-25 09:52:34 -04002351 struct lpfc_nodelist *ndlp;
2352
James Smart51ef4c22007-08-02 11:10:31 -04002353 shost = lpfc_shost_from_vport(vport);
2354 spin_lock_irq(shost->host_lock);
2355 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp)
James Smarte47c9092008-02-08 18:49:26 -05002356 if (NLP_CHK_NODE_ACT(ndlp) && ndlp->rport)
James Smart51ef4c22007-08-02 11:10:31 -04002357 ndlp->rport->dev_loss_tmo = vport->cfg_devloss_tmo;
2358 spin_unlock_irq(shost->host_lock);
James Smart7054a602007-04-25 09:52:34 -04002359}
2360
James Smarte59058c2008-08-24 21:49:00 -04002361/**
James Smart3621a712009-04-06 18:47:14 -04002362 * lpfc_nodev_tmo_set - Set the vport nodev tmo and devloss tmo values
James Smarte59058c2008-08-24 21:49:00 -04002363 * @vport: lpfc vport structure pointer.
2364 * @val: contains the tmo value.
2365 *
2366 * Description:
2367 * If the devloss tmo is already set or the vport dev loss tmo has changed
2368 * then a kernel error message is printed and zero is returned.
2369 * Else if val is in range then nodev tmo and devloss tmo are set to val.
2370 * Otherwise nodev tmo is set to the default value.
2371 *
2372 * Returns:
2373 * zero if already set or if val is in range
2374 * -EINVAL val out of range
2375 **/
James Smartc01f3202006-08-18 17:47:08 -04002376static int
James Smart3de2a652007-08-02 11:09:59 -04002377lpfc_nodev_tmo_set(struct lpfc_vport *vport, int val)
James Smartc01f3202006-08-18 17:47:08 -04002378{
James Smart3de2a652007-08-02 11:09:59 -04002379 if (vport->dev_loss_tmo_changed ||
2380 (lpfc_devloss_tmo != LPFC_DEF_DEVLOSS_TMO)) {
James Smarte8b62012007-08-02 11:10:09 -04002381 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2382 "0401 Ignoring change to nodev_tmo "
2383 "because devloss_tmo is set.\n");
James Smartc01f3202006-08-18 17:47:08 -04002384 return 0;
2385 }
James Smartc01f3202006-08-18 17:47:08 -04002386 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
James Smart3de2a652007-08-02 11:09:59 -04002387 vport->cfg_nodev_tmo = val;
2388 vport->cfg_devloss_tmo = val;
Mike Christie0af5d702010-09-15 16:52:31 -05002389 /*
2390 * For compat: set the fc_host dev loss so new rports
2391 * will get the value.
2392 */
2393 fc_host_dev_loss_tmo(lpfc_shost_from_vport(vport)) = val;
James Smart3de2a652007-08-02 11:09:59 -04002394 lpfc_update_rport_devloss_tmo(vport);
James Smartc01f3202006-08-18 17:47:08 -04002395 return 0;
2396 }
James Smarte8b62012007-08-02 11:10:09 -04002397 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2398 "0403 lpfc_nodev_tmo attribute cannot be set to"
2399 "%d, allowed range is [%d, %d]\n",
2400 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
James Smartc01f3202006-08-18 17:47:08 -04002401 return -EINVAL;
2402}
2403
James Smart3de2a652007-08-02 11:09:59 -04002404lpfc_vport_param_store(nodev_tmo)
James Smartc01f3202006-08-18 17:47:08 -04002405
Tony Jonesee959b02008-02-22 00:13:36 +01002406static DEVICE_ATTR(lpfc_nodev_tmo, S_IRUGO | S_IWUSR,
2407 lpfc_nodev_tmo_show, lpfc_nodev_tmo_store);
James Smartc01f3202006-08-18 17:47:08 -04002408
2409/*
2410# lpfc_devloss_tmo: If set, it will hold all I/O errors on devices that
2411# disappear until the timer expires. Value range is [0,255]. Default
2412# value is 30.
2413*/
James Smartab56dc22011-02-16 12:39:57 -05002414module_param(lpfc_devloss_tmo, int, S_IRUGO);
James Smartc01f3202006-08-18 17:47:08 -04002415MODULE_PARM_DESC(lpfc_devloss_tmo,
2416 "Seconds driver will hold I/O waiting "
2417 "for a device to come back");
James Smart3de2a652007-08-02 11:09:59 -04002418lpfc_vport_param_init(devloss_tmo, LPFC_DEF_DEVLOSS_TMO,
2419 LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO)
2420lpfc_vport_param_show(devloss_tmo)
James Smarte59058c2008-08-24 21:49:00 -04002421
2422/**
James Smart3621a712009-04-06 18:47:14 -04002423 * lpfc_devloss_tmo_set - Sets vport nodev tmo, devloss tmo values, changed bit
James Smarte59058c2008-08-24 21:49:00 -04002424 * @vport: lpfc vport structure pointer.
2425 * @val: contains the tmo value.
2426 *
2427 * Description:
2428 * If val is in a valid range then set the vport nodev tmo,
2429 * devloss tmo, also set the vport dev loss tmo changed flag.
2430 * Else a kernel error message is printed.
2431 *
2432 * Returns:
2433 * zero if val is in range
2434 * -EINVAL val out of range
2435 **/
James Smartc01f3202006-08-18 17:47:08 -04002436static int
James Smart3de2a652007-08-02 11:09:59 -04002437lpfc_devloss_tmo_set(struct lpfc_vport *vport, int val)
James Smartc01f3202006-08-18 17:47:08 -04002438{
2439 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
James Smart3de2a652007-08-02 11:09:59 -04002440 vport->cfg_nodev_tmo = val;
2441 vport->cfg_devloss_tmo = val;
2442 vport->dev_loss_tmo_changed = 1;
Mike Christie0af5d702010-09-15 16:52:31 -05002443 fc_host_dev_loss_tmo(lpfc_shost_from_vport(vport)) = val;
James Smart3de2a652007-08-02 11:09:59 -04002444 lpfc_update_rport_devloss_tmo(vport);
James Smartc01f3202006-08-18 17:47:08 -04002445 return 0;
2446 }
2447
James Smarte8b62012007-08-02 11:10:09 -04002448 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2449 "0404 lpfc_devloss_tmo attribute cannot be set to"
2450 " %d, allowed range is [%d, %d]\n",
2451 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
James Smartc01f3202006-08-18 17:47:08 -04002452 return -EINVAL;
2453}
2454
James Smart3de2a652007-08-02 11:09:59 -04002455lpfc_vport_param_store(devloss_tmo)
Tony Jonesee959b02008-02-22 00:13:36 +01002456static DEVICE_ATTR(lpfc_devloss_tmo, S_IRUGO | S_IWUSR,
2457 lpfc_devloss_tmo_show, lpfc_devloss_tmo_store);
James Smartc01f3202006-08-18 17:47:08 -04002458
2459/*
dea31012005-04-17 16:05:31 -05002460# lpfc_log_verbose: Only turn this flag on if you are willing to risk being
2461# deluged with LOTS of information.
2462# You can set a bit mask to record specific types of verbose messages:
James Smartf4b4c682009-05-22 14:53:12 -04002463# See lpfc_logmsh.h for definitions.
dea31012005-04-17 16:05:31 -05002464*/
James Smartf4b4c682009-05-22 14:53:12 -04002465LPFC_VPORT_ATTR_HEX_RW(log_verbose, 0x0, 0x0, 0xffffffff,
James Smarte8b62012007-08-02 11:10:09 -04002466 "Verbose logging bit-mask");
dea31012005-04-17 16:05:31 -05002467
2468/*
James Smart7ee5d432007-10-27 13:37:17 -04002469# lpfc_enable_da_id: This turns on the DA_ID CT command that deregisters
2470# objects that have been registered with the nameserver after login.
2471*/
2472LPFC_VPORT_ATTR_R(enable_da_id, 0, 0, 1,
2473 "Deregister nameserver objects before LOGO");
2474
2475/*
dea31012005-04-17 16:05:31 -05002476# lun_queue_depth: This parameter is used to limit the number of outstanding
2477# commands per FCP LUN. Value range is [1,128]. Default value is 30.
2478*/
James Smart3de2a652007-08-02 11:09:59 -04002479LPFC_VPORT_ATTR_R(lun_queue_depth, 30, 1, 128,
2480 "Max number of FCP commands we can queue to a specific LUN");
dea31012005-04-17 16:05:31 -05002481
2482/*
James Smart7dc517d2010-07-14 15:32:10 -04002483# tgt_queue_depth: This parameter is used to limit the number of outstanding
2484# commands per target port. Value range is [10,65535]. Default value is 65535.
2485*/
2486LPFC_VPORT_ATTR_R(tgt_queue_depth, 65535, 10, 65535,
2487 "Max number of FCP commands we can queue to a specific target port");
2488
2489/*
Jamie Wellnitzb28485a2006-02-28 19:25:21 -05002490# hba_queue_depth: This parameter is used to limit the number of outstanding
2491# commands per lpfc HBA. Value range is [32,8192]. If this parameter
2492# value is greater than the maximum number of exchanges supported by the HBA,
2493# then maximum number of exchanges supported by the HBA is used to determine
2494# the hba_queue_depth.
2495*/
2496LPFC_ATTR_R(hba_queue_depth, 8192, 32, 8192,
2497 "Max number of FCP commands we can queue to a lpfc HBA");
2498
2499/*
James Smart92d7f7b2007-06-17 19:56:38 -05002500# peer_port_login: This parameter allows/prevents logins
2501# between peer ports hosted on the same physical port.
2502# When this parameter is set 0 peer ports of same physical port
2503# are not allowed to login to each other.
2504# When this parameter is set 1 peer ports of same physical port
2505# are allowed to login to each other.
2506# Default value of this parameter is 0.
2507*/
James Smart3de2a652007-08-02 11:09:59 -04002508LPFC_VPORT_ATTR_R(peer_port_login, 0, 0, 1,
2509 "Allow peer ports on the same physical port to login to each "
2510 "other.");
James Smart92d7f7b2007-06-17 19:56:38 -05002511
2512/*
James Smart3de2a652007-08-02 11:09:59 -04002513# restrict_login: This parameter allows/prevents logins
James Smart92d7f7b2007-06-17 19:56:38 -05002514# between Virtual Ports and remote initiators.
2515# When this parameter is not set (0) Virtual Ports will accept PLOGIs from
2516# other initiators and will attempt to PLOGI all remote ports.
2517# When this parameter is set (1) Virtual Ports will reject PLOGIs from
2518# remote ports and will not attempt to PLOGI to other initiators.
2519# This parameter does not restrict to the physical port.
2520# This parameter does not restrict logins to Fabric resident remote ports.
2521# Default value of this parameter is 1.
2522*/
James Smart3de2a652007-08-02 11:09:59 -04002523static int lpfc_restrict_login = 1;
James Smartab56dc22011-02-16 12:39:57 -05002524module_param(lpfc_restrict_login, int, S_IRUGO);
James Smart3de2a652007-08-02 11:09:59 -04002525MODULE_PARM_DESC(lpfc_restrict_login,
2526 "Restrict virtual ports login to remote initiators.");
2527lpfc_vport_param_show(restrict_login);
2528
James Smarte59058c2008-08-24 21:49:00 -04002529/**
James Smart3621a712009-04-06 18:47:14 -04002530 * lpfc_restrict_login_init - Set the vport restrict login flag
James Smarte59058c2008-08-24 21:49:00 -04002531 * @vport: lpfc vport structure pointer.
2532 * @val: contains the restrict login value.
2533 *
2534 * Description:
2535 * If val is not in a valid range then log a kernel error message and set
2536 * the vport restrict login to one.
2537 * If the port type is physical clear the restrict login flag and return.
2538 * Else set the restrict login flag to val.
2539 *
2540 * Returns:
2541 * zero if val is in range
2542 * -EINVAL val out of range
2543 **/
James Smart3de2a652007-08-02 11:09:59 -04002544static int
2545lpfc_restrict_login_init(struct lpfc_vport *vport, int val)
2546{
2547 if (val < 0 || val > 1) {
James Smarte8b62012007-08-02 11:10:09 -04002548 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04002549 "0422 lpfc_restrict_login attribute cannot "
James Smarte8b62012007-08-02 11:10:09 -04002550 "be set to %d, allowed range is [0, 1]\n",
2551 val);
James Smart3de2a652007-08-02 11:09:59 -04002552 vport->cfg_restrict_login = 1;
2553 return -EINVAL;
2554 }
2555 if (vport->port_type == LPFC_PHYSICAL_PORT) {
2556 vport->cfg_restrict_login = 0;
2557 return 0;
2558 }
2559 vport->cfg_restrict_login = val;
2560 return 0;
2561}
2562
James Smarte59058c2008-08-24 21:49:00 -04002563/**
James Smart3621a712009-04-06 18:47:14 -04002564 * lpfc_restrict_login_set - Set the vport restrict login flag
James Smarte59058c2008-08-24 21:49:00 -04002565 * @vport: lpfc vport structure pointer.
2566 * @val: contains the restrict login value.
2567 *
2568 * Description:
2569 * If val is not in a valid range then log a kernel error message and set
2570 * the vport restrict login to one.
2571 * If the port type is physical and the val is not zero log a kernel
2572 * error message, clear the restrict login flag and return zero.
2573 * Else set the restrict login flag to val.
2574 *
2575 * Returns:
2576 * zero if val is in range
2577 * -EINVAL val out of range
2578 **/
James Smart3de2a652007-08-02 11:09:59 -04002579static int
2580lpfc_restrict_login_set(struct lpfc_vport *vport, int val)
2581{
2582 if (val < 0 || val > 1) {
James Smarte8b62012007-08-02 11:10:09 -04002583 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04002584 "0425 lpfc_restrict_login attribute cannot "
James Smarte8b62012007-08-02 11:10:09 -04002585 "be set to %d, allowed range is [0, 1]\n",
2586 val);
James Smart3de2a652007-08-02 11:09:59 -04002587 vport->cfg_restrict_login = 1;
2588 return -EINVAL;
2589 }
2590 if (vport->port_type == LPFC_PHYSICAL_PORT && val != 0) {
James Smarte8b62012007-08-02 11:10:09 -04002591 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2592 "0468 lpfc_restrict_login must be 0 for "
2593 "Physical ports.\n");
James Smart3de2a652007-08-02 11:09:59 -04002594 vport->cfg_restrict_login = 0;
2595 return 0;
2596 }
2597 vport->cfg_restrict_login = val;
2598 return 0;
2599}
2600lpfc_vport_param_store(restrict_login);
Tony Jonesee959b02008-02-22 00:13:36 +01002601static DEVICE_ATTR(lpfc_restrict_login, S_IRUGO | S_IWUSR,
2602 lpfc_restrict_login_show, lpfc_restrict_login_store);
James Smart92d7f7b2007-06-17 19:56:38 -05002603
2604/*
dea31012005-04-17 16:05:31 -05002605# Some disk devices have a "select ID" or "select Target" capability.
2606# From a protocol standpoint "select ID" usually means select the
2607# Fibre channel "ALPA". In the FC-AL Profile there is an "informative
2608# annex" which contains a table that maps a "select ID" (a number
2609# between 0 and 7F) to an ALPA. By default, for compatibility with
2610# older drivers, the lpfc driver scans this table from low ALPA to high
2611# ALPA.
2612#
2613# Turning on the scan-down variable (on = 1, off = 0) will
2614# cause the lpfc driver to use an inverted table, effectively
2615# scanning ALPAs from high to low. Value range is [0,1]. Default value is 1.
2616#
2617# (Note: This "select ID" functionality is a LOOP ONLY characteristic
2618# and will not work across a fabric. Also this parameter will take
2619# effect only in the case when ALPA map is not available.)
2620*/
James Smart3de2a652007-08-02 11:09:59 -04002621LPFC_VPORT_ATTR_R(scan_down, 1, 0, 1,
2622 "Start scanning for devices from highest ALPA to lowest");
dea31012005-04-17 16:05:31 -05002623
2624/*
dea31012005-04-17 16:05:31 -05002625# lpfc_topology: link topology for init link
2626# 0x0 = attempt loop mode then point-to-point
Jamie Wellnitz367c2712006-02-28 19:25:32 -05002627# 0x01 = internal loopback mode
dea31012005-04-17 16:05:31 -05002628# 0x02 = attempt point-to-point mode only
2629# 0x04 = attempt loop mode only
2630# 0x06 = attempt point-to-point mode then loop
2631# Set point-to-point mode if you want to run as an N_Port.
2632# Set loop mode if you want to run as an NL_Port. Value range is [0,0x6].
2633# Default value is 0.
2634*/
James Smarte59058c2008-08-24 21:49:00 -04002635
2636/**
James Smart3621a712009-04-06 18:47:14 -04002637 * lpfc_topology_set - Set the adapters topology field
James Smarte59058c2008-08-24 21:49:00 -04002638 * @phba: lpfc_hba pointer.
2639 * @val: topology value.
2640 *
2641 * Description:
2642 * If val is in a valid range then set the adapter's topology field and
2643 * issue a lip; if the lip fails reset the topology to the old value.
2644 *
2645 * If the value is not in range log a kernel error message and return an error.
2646 *
2647 * Returns:
2648 * zero if val is in range and lip okay
2649 * non-zero return value from lpfc_issue_lip()
2650 * -EINVAL val out of range
2651 **/
James Smarta257bf92009-04-06 18:48:10 -04002652static ssize_t
2653lpfc_topology_store(struct device *dev, struct device_attribute *attr,
2654 const char *buf, size_t count)
James Smart83108bd2008-01-11 01:53:09 -05002655{
James Smarta257bf92009-04-06 18:48:10 -04002656 struct Scsi_Host *shost = class_to_shost(dev);
2657 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2658 struct lpfc_hba *phba = vport->phba;
2659 int val = 0;
2660 int nolip = 0;
2661 const char *val_buf = buf;
James Smart83108bd2008-01-11 01:53:09 -05002662 int err;
2663 uint32_t prev_val;
James Smarta257bf92009-04-06 18:48:10 -04002664
2665 if (!strncmp(buf, "nolip ", strlen("nolip "))) {
2666 nolip = 1;
2667 val_buf = &buf[strlen("nolip ")];
2668 }
2669
2670 if (!isdigit(val_buf[0]))
2671 return -EINVAL;
2672 if (sscanf(val_buf, "%i", &val) != 1)
2673 return -EINVAL;
2674
James Smart83108bd2008-01-11 01:53:09 -05002675 if (val >= 0 && val <= 6) {
2676 prev_val = phba->cfg_topology;
2677 phba->cfg_topology = val;
James Smarta257bf92009-04-06 18:48:10 -04002678 if (nolip)
2679 return strlen(buf);
2680
James Smart83108bd2008-01-11 01:53:09 -05002681 err = lpfc_issue_lip(lpfc_shost_from_vport(phba->pport));
James Smarta257bf92009-04-06 18:48:10 -04002682 if (err) {
James Smart83108bd2008-01-11 01:53:09 -05002683 phba->cfg_topology = prev_val;
James Smarta257bf92009-04-06 18:48:10 -04002684 return -EINVAL;
2685 } else
2686 return strlen(buf);
James Smart83108bd2008-01-11 01:53:09 -05002687 }
2688 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2689 "%d:0467 lpfc_topology attribute cannot be set to %d, "
2690 "allowed range is [0, 6]\n",
2691 phba->brd_no, val);
2692 return -EINVAL;
2693}
2694static int lpfc_topology = 0;
James Smartab56dc22011-02-16 12:39:57 -05002695module_param(lpfc_topology, int, S_IRUGO);
James Smart83108bd2008-01-11 01:53:09 -05002696MODULE_PARM_DESC(lpfc_topology, "Select Fibre Channel topology");
2697lpfc_param_show(topology)
2698lpfc_param_init(topology, 0, 0, 6)
Tony Jonesee959b02008-02-22 00:13:36 +01002699static DEVICE_ATTR(lpfc_topology, S_IRUGO | S_IWUSR,
James Smart83108bd2008-01-11 01:53:09 -05002700 lpfc_topology_show, lpfc_topology_store);
dea31012005-04-17 16:05:31 -05002701
James Smart21e9a0a2009-05-22 14:53:21 -04002702/**
2703 * lpfc_static_vport_show: Read callback function for
2704 * lpfc_static_vport sysfs file.
2705 * @dev: Pointer to class device object.
2706 * @attr: device attribute structure.
2707 * @buf: Data buffer.
2708 *
2709 * This function is the read call back function for
2710 * lpfc_static_vport sysfs file. The lpfc_static_vport
2711 * sysfs file report the mageability of the vport.
2712 **/
2713static ssize_t
2714lpfc_static_vport_show(struct device *dev, struct device_attribute *attr,
2715 char *buf)
2716{
2717 struct Scsi_Host *shost = class_to_shost(dev);
2718 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2719 if (vport->vport_flag & STATIC_VPORT)
2720 sprintf(buf, "1\n");
2721 else
2722 sprintf(buf, "0\n");
2723
2724 return strlen(buf);
2725}
2726
2727/*
2728 * Sysfs attribute to control the statistical data collection.
2729 */
2730static DEVICE_ATTR(lpfc_static_vport, S_IRUGO,
2731 lpfc_static_vport_show, NULL);
James Smartea2151b2008-09-07 11:52:10 -04002732
2733/**
James Smart3621a712009-04-06 18:47:14 -04002734 * lpfc_stat_data_ctrl_store - write call back for lpfc_stat_data_ctrl sysfs file
James Smartea2151b2008-09-07 11:52:10 -04002735 * @dev: Pointer to class device.
2736 * @buf: Data buffer.
2737 * @count: Size of the data buffer.
2738 *
2739 * This function get called when an user write to the lpfc_stat_data_ctrl
2740 * sysfs file. This function parse the command written to the sysfs file
2741 * and take appropriate action. These commands are used for controlling
2742 * driver statistical data collection.
2743 * Following are the command this function handles.
2744 *
2745 * setbucket <bucket_type> <base> <step>
2746 * = Set the latency buckets.
2747 * destroybucket = destroy all the buckets.
2748 * start = start data collection
2749 * stop = stop data collection
2750 * reset = reset the collected data
2751 **/
2752static ssize_t
2753lpfc_stat_data_ctrl_store(struct device *dev, struct device_attribute *attr,
2754 const char *buf, size_t count)
2755{
2756 struct Scsi_Host *shost = class_to_shost(dev);
2757 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2758 struct lpfc_hba *phba = vport->phba;
2759#define LPFC_MAX_DATA_CTRL_LEN 1024
2760 static char bucket_data[LPFC_MAX_DATA_CTRL_LEN];
2761 unsigned long i;
2762 char *str_ptr, *token;
2763 struct lpfc_vport **vports;
2764 struct Scsi_Host *v_shost;
2765 char *bucket_type_str, *base_str, *step_str;
2766 unsigned long base, step, bucket_type;
2767
2768 if (!strncmp(buf, "setbucket", strlen("setbucket"))) {
James Smarta257bf92009-04-06 18:48:10 -04002769 if (strlen(buf) > (LPFC_MAX_DATA_CTRL_LEN - 1))
James Smartea2151b2008-09-07 11:52:10 -04002770 return -EINVAL;
2771
2772 strcpy(bucket_data, buf);
2773 str_ptr = &bucket_data[0];
2774 /* Ignore this token - this is command token */
2775 token = strsep(&str_ptr, "\t ");
2776 if (!token)
2777 return -EINVAL;
2778
2779 bucket_type_str = strsep(&str_ptr, "\t ");
2780 if (!bucket_type_str)
2781 return -EINVAL;
2782
2783 if (!strncmp(bucket_type_str, "linear", strlen("linear")))
2784 bucket_type = LPFC_LINEAR_BUCKET;
2785 else if (!strncmp(bucket_type_str, "power2", strlen("power2")))
2786 bucket_type = LPFC_POWER2_BUCKET;
2787 else
2788 return -EINVAL;
2789
2790 base_str = strsep(&str_ptr, "\t ");
2791 if (!base_str)
2792 return -EINVAL;
2793 base = simple_strtoul(base_str, NULL, 0);
2794
2795 step_str = strsep(&str_ptr, "\t ");
2796 if (!step_str)
2797 return -EINVAL;
2798 step = simple_strtoul(step_str, NULL, 0);
2799 if (!step)
2800 return -EINVAL;
2801
2802 /* Block the data collection for every vport */
2803 vports = lpfc_create_vport_work_array(phba);
2804 if (vports == NULL)
2805 return -ENOMEM;
2806
James Smartf4b4c682009-05-22 14:53:12 -04002807 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smartea2151b2008-09-07 11:52:10 -04002808 v_shost = lpfc_shost_from_vport(vports[i]);
2809 spin_lock_irq(v_shost->host_lock);
2810 /* Block and reset data collection */
2811 vports[i]->stat_data_blocked = 1;
2812 if (vports[i]->stat_data_enabled)
2813 lpfc_vport_reset_stat_data(vports[i]);
2814 spin_unlock_irq(v_shost->host_lock);
2815 }
2816
2817 /* Set the bucket attributes */
2818 phba->bucket_type = bucket_type;
2819 phba->bucket_base = base;
2820 phba->bucket_step = step;
2821
James Smartf4b4c682009-05-22 14:53:12 -04002822 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smartea2151b2008-09-07 11:52:10 -04002823 v_shost = lpfc_shost_from_vport(vports[i]);
2824
2825 /* Unblock data collection */
2826 spin_lock_irq(v_shost->host_lock);
2827 vports[i]->stat_data_blocked = 0;
2828 spin_unlock_irq(v_shost->host_lock);
2829 }
2830 lpfc_destroy_vport_work_array(phba, vports);
2831 return strlen(buf);
2832 }
2833
2834 if (!strncmp(buf, "destroybucket", strlen("destroybucket"))) {
2835 vports = lpfc_create_vport_work_array(phba);
2836 if (vports == NULL)
2837 return -ENOMEM;
2838
James Smartf4b4c682009-05-22 14:53:12 -04002839 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smartea2151b2008-09-07 11:52:10 -04002840 v_shost = lpfc_shost_from_vport(vports[i]);
2841 spin_lock_irq(shost->host_lock);
2842 vports[i]->stat_data_blocked = 1;
2843 lpfc_free_bucket(vport);
2844 vport->stat_data_enabled = 0;
2845 vports[i]->stat_data_blocked = 0;
2846 spin_unlock_irq(shost->host_lock);
2847 }
2848 lpfc_destroy_vport_work_array(phba, vports);
2849 phba->bucket_type = LPFC_NO_BUCKET;
2850 phba->bucket_base = 0;
2851 phba->bucket_step = 0;
2852 return strlen(buf);
2853 }
2854
2855 if (!strncmp(buf, "start", strlen("start"))) {
2856 /* If no buckets configured return error */
2857 if (phba->bucket_type == LPFC_NO_BUCKET)
2858 return -EINVAL;
2859 spin_lock_irq(shost->host_lock);
2860 if (vport->stat_data_enabled) {
2861 spin_unlock_irq(shost->host_lock);
2862 return strlen(buf);
2863 }
2864 lpfc_alloc_bucket(vport);
2865 vport->stat_data_enabled = 1;
2866 spin_unlock_irq(shost->host_lock);
2867 return strlen(buf);
2868 }
2869
2870 if (!strncmp(buf, "stop", strlen("stop"))) {
2871 spin_lock_irq(shost->host_lock);
2872 if (vport->stat_data_enabled == 0) {
2873 spin_unlock_irq(shost->host_lock);
2874 return strlen(buf);
2875 }
2876 lpfc_free_bucket(vport);
2877 vport->stat_data_enabled = 0;
2878 spin_unlock_irq(shost->host_lock);
2879 return strlen(buf);
2880 }
2881
2882 if (!strncmp(buf, "reset", strlen("reset"))) {
2883 if ((phba->bucket_type == LPFC_NO_BUCKET)
2884 || !vport->stat_data_enabled)
2885 return strlen(buf);
2886 spin_lock_irq(shost->host_lock);
2887 vport->stat_data_blocked = 1;
2888 lpfc_vport_reset_stat_data(vport);
2889 vport->stat_data_blocked = 0;
2890 spin_unlock_irq(shost->host_lock);
2891 return strlen(buf);
2892 }
2893 return -EINVAL;
2894}
2895
2896
2897/**
James Smart3621a712009-04-06 18:47:14 -04002898 * lpfc_stat_data_ctrl_show - Read function for lpfc_stat_data_ctrl sysfs file
James Smartea2151b2008-09-07 11:52:10 -04002899 * @dev: Pointer to class device object.
2900 * @buf: Data buffer.
2901 *
2902 * This function is the read call back function for
2903 * lpfc_stat_data_ctrl sysfs file. This function report the
2904 * current statistical data collection state.
2905 **/
2906static ssize_t
2907lpfc_stat_data_ctrl_show(struct device *dev, struct device_attribute *attr,
2908 char *buf)
2909{
2910 struct Scsi_Host *shost = class_to_shost(dev);
2911 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2912 struct lpfc_hba *phba = vport->phba;
2913 int index = 0;
2914 int i;
2915 char *bucket_type;
2916 unsigned long bucket_value;
2917
2918 switch (phba->bucket_type) {
2919 case LPFC_LINEAR_BUCKET:
2920 bucket_type = "linear";
2921 break;
2922 case LPFC_POWER2_BUCKET:
2923 bucket_type = "power2";
2924 break;
2925 default:
2926 bucket_type = "No Bucket";
2927 break;
2928 }
2929
2930 sprintf(&buf[index], "Statistical Data enabled :%d, "
2931 "blocked :%d, Bucket type :%s, Bucket base :%d,"
2932 " Bucket step :%d\nLatency Ranges :",
2933 vport->stat_data_enabled, vport->stat_data_blocked,
2934 bucket_type, phba->bucket_base, phba->bucket_step);
2935 index = strlen(buf);
2936 if (phba->bucket_type != LPFC_NO_BUCKET) {
2937 for (i = 0; i < LPFC_MAX_BUCKET_COUNT; i++) {
2938 if (phba->bucket_type == LPFC_LINEAR_BUCKET)
2939 bucket_value = phba->bucket_base +
2940 phba->bucket_step * i;
2941 else
2942 bucket_value = phba->bucket_base +
2943 (1 << i) * phba->bucket_step;
2944
2945 if (index + 10 > PAGE_SIZE)
2946 break;
2947 sprintf(&buf[index], "%08ld ", bucket_value);
2948 index = strlen(buf);
2949 }
2950 }
2951 sprintf(&buf[index], "\n");
2952 return strlen(buf);
2953}
2954
2955/*
2956 * Sysfs attribute to control the statistical data collection.
2957 */
2958static DEVICE_ATTR(lpfc_stat_data_ctrl, S_IRUGO | S_IWUSR,
2959 lpfc_stat_data_ctrl_show, lpfc_stat_data_ctrl_store);
2960
2961/*
2962 * lpfc_drvr_stat_data: sysfs attr to get driver statistical data.
2963 */
2964
2965/*
2966 * Each Bucket takes 11 characters and 1 new line + 17 bytes WWN
2967 * for each target.
2968 */
2969#define STAT_DATA_SIZE_PER_TARGET(NUM_BUCKETS) ((NUM_BUCKETS) * 11 + 18)
2970#define MAX_STAT_DATA_SIZE_PER_TARGET \
2971 STAT_DATA_SIZE_PER_TARGET(LPFC_MAX_BUCKET_COUNT)
2972
2973
2974/**
James Smart3621a712009-04-06 18:47:14 -04002975 * sysfs_drvr_stat_data_read - Read function for lpfc_drvr_stat_data attribute
Chris Wright2c3c8be2010-05-12 18:28:57 -07002976 * @filp: sysfs file
James Smartea2151b2008-09-07 11:52:10 -04002977 * @kobj: Pointer to the kernel object
2978 * @bin_attr: Attribute object
2979 * @buff: Buffer pointer
2980 * @off: File offset
2981 * @count: Buffer size
2982 *
2983 * This function is the read call back function for lpfc_drvr_stat_data
2984 * sysfs file. This function export the statistical data to user
2985 * applications.
2986 **/
2987static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07002988sysfs_drvr_stat_data_read(struct file *filp, struct kobject *kobj,
2989 struct bin_attribute *bin_attr,
James Smartea2151b2008-09-07 11:52:10 -04002990 char *buf, loff_t off, size_t count)
2991{
2992 struct device *dev = container_of(kobj, struct device,
2993 kobj);
2994 struct Scsi_Host *shost = class_to_shost(dev);
2995 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2996 struct lpfc_hba *phba = vport->phba;
2997 int i = 0, index = 0;
2998 unsigned long nport_index;
2999 struct lpfc_nodelist *ndlp = NULL;
3000 nport_index = (unsigned long)off /
3001 MAX_STAT_DATA_SIZE_PER_TARGET;
3002
3003 if (!vport->stat_data_enabled || vport->stat_data_blocked
3004 || (phba->bucket_type == LPFC_NO_BUCKET))
3005 return 0;
3006
3007 spin_lock_irq(shost->host_lock);
3008 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
3009 if (!NLP_CHK_NODE_ACT(ndlp) || !ndlp->lat_data)
3010 continue;
3011
3012 if (nport_index > 0) {
3013 nport_index--;
3014 continue;
3015 }
3016
3017 if ((index + MAX_STAT_DATA_SIZE_PER_TARGET)
3018 > count)
3019 break;
3020
3021 if (!ndlp->lat_data)
3022 continue;
3023
3024 /* Print the WWN */
3025 sprintf(&buf[index], "%02x%02x%02x%02x%02x%02x%02x%02x:",
3026 ndlp->nlp_portname.u.wwn[0],
3027 ndlp->nlp_portname.u.wwn[1],
3028 ndlp->nlp_portname.u.wwn[2],
3029 ndlp->nlp_portname.u.wwn[3],
3030 ndlp->nlp_portname.u.wwn[4],
3031 ndlp->nlp_portname.u.wwn[5],
3032 ndlp->nlp_portname.u.wwn[6],
3033 ndlp->nlp_portname.u.wwn[7]);
3034
3035 index = strlen(buf);
3036
3037 for (i = 0; i < LPFC_MAX_BUCKET_COUNT; i++) {
3038 sprintf(&buf[index], "%010u,",
3039 ndlp->lat_data[i].cmd_count);
3040 index = strlen(buf);
3041 }
3042 sprintf(&buf[index], "\n");
3043 index = strlen(buf);
3044 }
3045 spin_unlock_irq(shost->host_lock);
3046 return index;
3047}
3048
3049static struct bin_attribute sysfs_drvr_stat_data_attr = {
3050 .attr = {
3051 .name = "lpfc_drvr_stat_data",
3052 .mode = S_IRUSR,
James Smartea2151b2008-09-07 11:52:10 -04003053 },
3054 .size = LPFC_MAX_TARGET * MAX_STAT_DATA_SIZE_PER_TARGET,
3055 .read = sysfs_drvr_stat_data_read,
3056 .write = NULL,
3057};
3058
dea31012005-04-17 16:05:31 -05003059/*
3060# lpfc_link_speed: Link speed selection for initializing the Fibre Channel
3061# connection.
James Smart76a95d72010-11-20 23:11:48 -05003062# Value range is [0,16]. Default value is 0.
dea31012005-04-17 16:05:31 -05003063*/
James Smarte59058c2008-08-24 21:49:00 -04003064/**
James Smart3621a712009-04-06 18:47:14 -04003065 * lpfc_link_speed_set - Set the adapters link speed
James Smarte59058c2008-08-24 21:49:00 -04003066 * @phba: lpfc_hba pointer.
3067 * @val: link speed value.
3068 *
3069 * Description:
3070 * If val is in a valid range then set the adapter's link speed field and
3071 * issue a lip; if the lip fails reset the link speed to the old value.
3072 *
3073 * Notes:
3074 * If the value is not in range log a kernel error message and return an error.
3075 *
3076 * Returns:
3077 * zero if val is in range and lip okay.
3078 * non-zero return value from lpfc_issue_lip()
3079 * -EINVAL val out of range
3080 **/
James Smarta257bf92009-04-06 18:48:10 -04003081static ssize_t
3082lpfc_link_speed_store(struct device *dev, struct device_attribute *attr,
3083 const char *buf, size_t count)
James Smart83108bd2008-01-11 01:53:09 -05003084{
James Smarta257bf92009-04-06 18:48:10 -04003085 struct Scsi_Host *shost = class_to_shost(dev);
3086 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3087 struct lpfc_hba *phba = vport->phba;
James Smart76a95d72010-11-20 23:11:48 -05003088 int val = LPFC_USER_LINK_SPEED_AUTO;
James Smarta257bf92009-04-06 18:48:10 -04003089 int nolip = 0;
3090 const char *val_buf = buf;
James Smart83108bd2008-01-11 01:53:09 -05003091 int err;
3092 uint32_t prev_val;
3093
James Smarta257bf92009-04-06 18:48:10 -04003094 if (!strncmp(buf, "nolip ", strlen("nolip "))) {
3095 nolip = 1;
3096 val_buf = &buf[strlen("nolip ")];
3097 }
3098
3099 if (!isdigit(val_buf[0]))
3100 return -EINVAL;
3101 if (sscanf(val_buf, "%i", &val) != 1)
3102 return -EINVAL;
3103
James Smart76a95d72010-11-20 23:11:48 -05003104 if (((val == LPFC_USER_LINK_SPEED_1G) && !(phba->lmt & LMT_1Gb)) ||
3105 ((val == LPFC_USER_LINK_SPEED_2G) && !(phba->lmt & LMT_2Gb)) ||
3106 ((val == LPFC_USER_LINK_SPEED_4G) && !(phba->lmt & LMT_4Gb)) ||
3107 ((val == LPFC_USER_LINK_SPEED_8G) && !(phba->lmt & LMT_8Gb)) ||
3108 ((val == LPFC_USER_LINK_SPEED_10G) && !(phba->lmt & LMT_10Gb)) ||
3109 ((val == LPFC_USER_LINK_SPEED_16G) && !(phba->lmt & LMT_16Gb))) {
3110 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3111 "2879 lpfc_link_speed attribute cannot be set "
3112 "to %d. Speed is not supported by this port.\n",
3113 val);
James Smart83108bd2008-01-11 01:53:09 -05003114 return -EINVAL;
James Smart76a95d72010-11-20 23:11:48 -05003115 }
3116 if ((val >= 0) && (val <= LPFC_USER_LINK_SPEED_MAX) &&
3117 (LPFC_USER_LINK_SPEED_BITMAP & (1 << val))) {
James Smart83108bd2008-01-11 01:53:09 -05003118 prev_val = phba->cfg_link_speed;
3119 phba->cfg_link_speed = val;
James Smarta257bf92009-04-06 18:48:10 -04003120 if (nolip)
3121 return strlen(buf);
3122
James Smart83108bd2008-01-11 01:53:09 -05003123 err = lpfc_issue_lip(lpfc_shost_from_vport(phba->pport));
James Smarta257bf92009-04-06 18:48:10 -04003124 if (err) {
James Smart83108bd2008-01-11 01:53:09 -05003125 phba->cfg_link_speed = prev_val;
James Smarta257bf92009-04-06 18:48:10 -04003126 return -EINVAL;
3127 } else
3128 return strlen(buf);
James Smart83108bd2008-01-11 01:53:09 -05003129 }
James Smart83108bd2008-01-11 01:53:09 -05003130 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart76a95d72010-11-20 23:11:48 -05003131 "0469 lpfc_link_speed attribute cannot be set to %d, "
3132 "allowed values are ["LPFC_LINK_SPEED_STRING"]\n", val);
James Smart83108bd2008-01-11 01:53:09 -05003133 return -EINVAL;
3134}
3135
3136static int lpfc_link_speed = 0;
James Smartab56dc22011-02-16 12:39:57 -05003137module_param(lpfc_link_speed, int, S_IRUGO);
James Smart83108bd2008-01-11 01:53:09 -05003138MODULE_PARM_DESC(lpfc_link_speed, "Select link speed");
3139lpfc_param_show(link_speed)
James Smarte59058c2008-08-24 21:49:00 -04003140
3141/**
James Smart3621a712009-04-06 18:47:14 -04003142 * lpfc_link_speed_init - Set the adapters link speed
James Smarte59058c2008-08-24 21:49:00 -04003143 * @phba: lpfc_hba pointer.
3144 * @val: link speed value.
3145 *
3146 * Description:
3147 * If val is in a valid range then set the adapter's link speed field.
3148 *
3149 * Notes:
3150 * If the value is not in range log a kernel error message, clear the link
3151 * speed and return an error.
3152 *
3153 * Returns:
3154 * zero if val saved.
3155 * -EINVAL val out of range
3156 **/
James Smart83108bd2008-01-11 01:53:09 -05003157static int
3158lpfc_link_speed_init(struct lpfc_hba *phba, int val)
3159{
James Smart76a95d72010-11-20 23:11:48 -05003160 if ((val >= 0) && (val <= LPFC_USER_LINK_SPEED_MAX) &&
3161 (LPFC_USER_LINK_SPEED_BITMAP & (1 << val))) {
James Smart83108bd2008-01-11 01:53:09 -05003162 phba->cfg_link_speed = val;
3163 return 0;
3164 }
3165 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04003166 "0405 lpfc_link_speed attribute cannot "
James Smart83108bd2008-01-11 01:53:09 -05003167 "be set to %d, allowed values are "
3168 "["LPFC_LINK_SPEED_STRING"]\n", val);
James Smart76a95d72010-11-20 23:11:48 -05003169 phba->cfg_link_speed = LPFC_USER_LINK_SPEED_AUTO;
James Smart83108bd2008-01-11 01:53:09 -05003170 return -EINVAL;
3171}
3172
Tony Jonesee959b02008-02-22 00:13:36 +01003173static DEVICE_ATTR(lpfc_link_speed, S_IRUGO | S_IWUSR,
James Smart76a95d72010-11-20 23:11:48 -05003174 lpfc_link_speed_show, lpfc_link_speed_store);
dea31012005-04-17 16:05:31 -05003175
3176/*
James Smart0d878412009-10-02 15:16:56 -04003177# lpfc_aer_support: Support PCIe device Advanced Error Reporting (AER)
3178# 0 = aer disabled or not supported
3179# 1 = aer supported and enabled (default)
3180# Value range is [0,1]. Default value is 1.
3181*/
3182
3183/**
3184 * lpfc_aer_support_store - Set the adapter for aer support
3185 *
3186 * @dev: class device that is converted into a Scsi_host.
3187 * @attr: device attribute, not used.
James Smart912e3ac2011-05-24 11:42:11 -04003188 * @buf: containing enable or disable aer flag.
James Smart0d878412009-10-02 15:16:56 -04003189 * @count: unused variable.
3190 *
3191 * Description:
3192 * If the val is 1 and currently the device's AER capability was not
3193 * enabled, invoke the kernel's enable AER helper routine, trying to
3194 * enable the device's AER capability. If the helper routine enabling
3195 * AER returns success, update the device's cfg_aer_support flag to
3196 * indicate AER is supported by the device; otherwise, if the device
3197 * AER capability is already enabled to support AER, then do nothing.
3198 *
3199 * If the val is 0 and currently the device's AER support was enabled,
3200 * invoke the kernel's disable AER helper routine. After that, update
3201 * the device's cfg_aer_support flag to indicate AER is not supported
3202 * by the device; otherwise, if the device AER capability is already
3203 * disabled from supporting AER, then do nothing.
3204 *
3205 * Returns:
3206 * length of the buf on success if val is in range the intended mode
3207 * is supported.
3208 * -EINVAL if val out of range or intended mode is not supported.
3209 **/
3210static ssize_t
3211lpfc_aer_support_store(struct device *dev, struct device_attribute *attr,
3212 const char *buf, size_t count)
3213{
3214 struct Scsi_Host *shost = class_to_shost(dev);
3215 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
3216 struct lpfc_hba *phba = vport->phba;
3217 int val = 0, rc = -EINVAL;
3218
3219 if (!isdigit(buf[0]))
3220 return -EINVAL;
3221 if (sscanf(buf, "%i", &val) != 1)
3222 return -EINVAL;
3223
3224 switch (val) {
3225 case 0:
3226 if (phba->hba_flag & HBA_AER_ENABLED) {
3227 rc = pci_disable_pcie_error_reporting(phba->pcidev);
3228 if (!rc) {
3229 spin_lock_irq(&phba->hbalock);
3230 phba->hba_flag &= ~HBA_AER_ENABLED;
3231 spin_unlock_irq(&phba->hbalock);
3232 phba->cfg_aer_support = 0;
3233 rc = strlen(buf);
3234 } else
James Smart891478a2009-11-18 15:40:23 -05003235 rc = -EPERM;
3236 } else {
James Smart0d878412009-10-02 15:16:56 -04003237 phba->cfg_aer_support = 0;
James Smart891478a2009-11-18 15:40:23 -05003238 rc = strlen(buf);
3239 }
James Smart0d878412009-10-02 15:16:56 -04003240 break;
3241 case 1:
3242 if (!(phba->hba_flag & HBA_AER_ENABLED)) {
3243 rc = pci_enable_pcie_error_reporting(phba->pcidev);
3244 if (!rc) {
3245 spin_lock_irq(&phba->hbalock);
3246 phba->hba_flag |= HBA_AER_ENABLED;
3247 spin_unlock_irq(&phba->hbalock);
3248 phba->cfg_aer_support = 1;
3249 rc = strlen(buf);
3250 } else
James Smart891478a2009-11-18 15:40:23 -05003251 rc = -EPERM;
3252 } else {
James Smart0d878412009-10-02 15:16:56 -04003253 phba->cfg_aer_support = 1;
James Smart891478a2009-11-18 15:40:23 -05003254 rc = strlen(buf);
3255 }
James Smart0d878412009-10-02 15:16:56 -04003256 break;
3257 default:
3258 rc = -EINVAL;
3259 break;
3260 }
3261 return rc;
3262}
3263
3264static int lpfc_aer_support = 1;
James Smartab56dc22011-02-16 12:39:57 -05003265module_param(lpfc_aer_support, int, S_IRUGO);
James Smart0d878412009-10-02 15:16:56 -04003266MODULE_PARM_DESC(lpfc_aer_support, "Enable PCIe device AER support");
3267lpfc_param_show(aer_support)
3268
3269/**
3270 * lpfc_aer_support_init - Set the initial adapters aer support flag
3271 * @phba: lpfc_hba pointer.
James Smart912e3ac2011-05-24 11:42:11 -04003272 * @val: enable aer or disable aer flag.
James Smart0d878412009-10-02 15:16:56 -04003273 *
3274 * Description:
3275 * If val is in a valid range [0,1], then set the adapter's initial
3276 * cfg_aer_support field. It will be up to the driver's probe_one
3277 * routine to determine whether the device's AER support can be set
3278 * or not.
3279 *
3280 * Notes:
3281 * If the value is not in range log a kernel error message, and
3282 * choose the default value of setting AER support and return.
3283 *
3284 * Returns:
3285 * zero if val saved.
3286 * -EINVAL val out of range
3287 **/
3288static int
3289lpfc_aer_support_init(struct lpfc_hba *phba, int val)
3290{
3291 if (val == 0 || val == 1) {
3292 phba->cfg_aer_support = val;
3293 return 0;
3294 }
3295 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3296 "2712 lpfc_aer_support attribute value %d out "
3297 "of range, allowed values are 0|1, setting it "
3298 "to default value of 1\n", val);
James Smart891478a2009-11-18 15:40:23 -05003299 /* By default, try to enable AER on a device */
James Smart0d878412009-10-02 15:16:56 -04003300 phba->cfg_aer_support = 1;
3301 return -EINVAL;
3302}
3303
3304static DEVICE_ATTR(lpfc_aer_support, S_IRUGO | S_IWUSR,
3305 lpfc_aer_support_show, lpfc_aer_support_store);
3306
3307/**
3308 * lpfc_aer_cleanup_state - Clean up aer state to the aer enabled device
3309 * @dev: class device that is converted into a Scsi_host.
3310 * @attr: device attribute, not used.
James Smart912e3ac2011-05-24 11:42:11 -04003311 * @buf: containing flag 1 for aer cleanup state.
James Smart0d878412009-10-02 15:16:56 -04003312 * @count: unused variable.
3313 *
3314 * Description:
3315 * If the @buf contains 1 and the device currently has the AER support
3316 * enabled, then invokes the kernel AER helper routine
3317 * pci_cleanup_aer_uncorrect_error_status to clean up the uncorrectable
3318 * error status register.
3319 *
3320 * Notes:
3321 *
3322 * Returns:
3323 * -EINVAL if the buf does not contain the 1 or the device is not currently
3324 * enabled with the AER support.
3325 **/
3326static ssize_t
3327lpfc_aer_cleanup_state(struct device *dev, struct device_attribute *attr,
3328 const char *buf, size_t count)
3329{
3330 struct Scsi_Host *shost = class_to_shost(dev);
3331 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3332 struct lpfc_hba *phba = vport->phba;
3333 int val, rc = -1;
3334
3335 if (!isdigit(buf[0]))
3336 return -EINVAL;
3337 if (sscanf(buf, "%i", &val) != 1)
3338 return -EINVAL;
James Smart891478a2009-11-18 15:40:23 -05003339 if (val != 1)
3340 return -EINVAL;
James Smart0d878412009-10-02 15:16:56 -04003341
James Smart891478a2009-11-18 15:40:23 -05003342 if (phba->hba_flag & HBA_AER_ENABLED)
James Smart0d878412009-10-02 15:16:56 -04003343 rc = pci_cleanup_aer_uncorrect_error_status(phba->pcidev);
3344
3345 if (rc == 0)
3346 return strlen(buf);
3347 else
James Smart891478a2009-11-18 15:40:23 -05003348 return -EPERM;
James Smart0d878412009-10-02 15:16:56 -04003349}
3350
3351static DEVICE_ATTR(lpfc_aer_state_cleanup, S_IWUSR, NULL,
3352 lpfc_aer_cleanup_state);
3353
James Smart912e3ac2011-05-24 11:42:11 -04003354/**
3355 * lpfc_sriov_nr_virtfn_store - Enable the adapter for sr-iov virtual functions
3356 *
3357 * @dev: class device that is converted into a Scsi_host.
3358 * @attr: device attribute, not used.
3359 * @buf: containing the string the number of vfs to be enabled.
3360 * @count: unused variable.
3361 *
3362 * Description:
3363 * When this api is called either through user sysfs, the driver shall
3364 * try to enable or disable SR-IOV virtual functions according to the
3365 * following:
3366 *
3367 * If zero virtual function has been enabled to the physical function,
3368 * the driver shall invoke the pci enable virtual function api trying
3369 * to enable the virtual functions. If the nr_vfn provided is greater
3370 * than the maximum supported, the maximum virtual function number will
3371 * be used for invoking the api; otherwise, the nr_vfn provided shall
3372 * be used for invoking the api. If the api call returned success, the
3373 * actual number of virtual functions enabled will be set to the driver
3374 * cfg_sriov_nr_virtfn; otherwise, -EINVAL shall be returned and driver
3375 * cfg_sriov_nr_virtfn remains zero.
3376 *
3377 * If none-zero virtual functions have already been enabled to the
3378 * physical function, as reflected by the driver's cfg_sriov_nr_virtfn,
3379 * -EINVAL will be returned and the driver does nothing;
3380 *
3381 * If the nr_vfn provided is zero and none-zero virtual functions have
3382 * been enabled, as indicated by the driver's cfg_sriov_nr_virtfn, the
3383 * disabling virtual function api shall be invoded to disable all the
3384 * virtual functions and driver's cfg_sriov_nr_virtfn shall be set to
3385 * zero. Otherwise, if zero virtual function has been enabled, do
3386 * nothing.
3387 *
3388 * Returns:
3389 * length of the buf on success if val is in range the intended mode
3390 * is supported.
3391 * -EINVAL if val out of range or intended mode is not supported.
3392 **/
3393static ssize_t
3394lpfc_sriov_nr_virtfn_store(struct device *dev, struct device_attribute *attr,
3395 const char *buf, size_t count)
3396{
3397 struct Scsi_Host *shost = class_to_shost(dev);
3398 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
3399 struct lpfc_hba *phba = vport->phba;
3400 struct pci_dev *pdev = phba->pcidev;
3401 int val = 0, rc = -EINVAL;
3402
3403 /* Sanity check on user data */
3404 if (!isdigit(buf[0]))
3405 return -EINVAL;
3406 if (sscanf(buf, "%i", &val) != 1)
3407 return -EINVAL;
3408 if (val < 0)
3409 return -EINVAL;
3410
3411 /* Request disabling virtual functions */
3412 if (val == 0) {
3413 if (phba->cfg_sriov_nr_virtfn > 0) {
3414 pci_disable_sriov(pdev);
3415 phba->cfg_sriov_nr_virtfn = 0;
3416 }
3417 return strlen(buf);
3418 }
3419
3420 /* Request enabling virtual functions */
3421 if (phba->cfg_sriov_nr_virtfn > 0) {
3422 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3423 "3018 There are %d virtual functions "
3424 "enabled on physical function.\n",
3425 phba->cfg_sriov_nr_virtfn);
3426 return -EEXIST;
3427 }
3428
3429 if (val <= LPFC_MAX_VFN_PER_PFN)
3430 phba->cfg_sriov_nr_virtfn = val;
3431 else {
3432 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3433 "3019 Enabling %d virtual functions is not "
3434 "allowed.\n", val);
3435 return -EINVAL;
3436 }
3437
3438 rc = lpfc_sli_probe_sriov_nr_virtfn(phba, phba->cfg_sriov_nr_virtfn);
3439 if (rc) {
3440 phba->cfg_sriov_nr_virtfn = 0;
3441 rc = -EPERM;
3442 } else
3443 rc = strlen(buf);
3444
3445 return rc;
3446}
3447
3448static int lpfc_sriov_nr_virtfn = LPFC_DEF_VFN_PER_PFN;
3449module_param(lpfc_sriov_nr_virtfn, int, S_IRUGO|S_IWUSR);
3450MODULE_PARM_DESC(lpfc_sriov_nr_virtfn, "Enable PCIe device SR-IOV virtual fn");
3451lpfc_param_show(sriov_nr_virtfn)
3452
3453/**
3454 * lpfc_sriov_nr_virtfn_init - Set the initial sr-iov virtual function enable
3455 * @phba: lpfc_hba pointer.
3456 * @val: link speed value.
3457 *
3458 * Description:
3459 * If val is in a valid range [0,255], then set the adapter's initial
3460 * cfg_sriov_nr_virtfn field. If it's greater than the maximum, the maximum
3461 * number shall be used instead. It will be up to the driver's probe_one
3462 * routine to determine whether the device's SR-IOV is supported or not.
3463 *
3464 * Returns:
3465 * zero if val saved.
3466 * -EINVAL val out of range
3467 **/
3468static int
3469lpfc_sriov_nr_virtfn_init(struct lpfc_hba *phba, int val)
3470{
3471 if (val >= 0 && val <= LPFC_MAX_VFN_PER_PFN) {
3472 phba->cfg_sriov_nr_virtfn = val;
3473 return 0;
3474 }
3475
3476 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3477 "3017 Enabling %d virtual functions is not "
3478 "allowed.\n", val);
3479 return -EINVAL;
3480}
3481static DEVICE_ATTR(lpfc_sriov_nr_virtfn, S_IRUGO | S_IWUSR,
3482 lpfc_sriov_nr_virtfn_show, lpfc_sriov_nr_virtfn_store);
3483
James Smart0d878412009-10-02 15:16:56 -04003484/*
dea31012005-04-17 16:05:31 -05003485# lpfc_fcp_class: Determines FC class to use for the FCP protocol.
3486# Value range is [2,3]. Default value is 3.
3487*/
James Smart3de2a652007-08-02 11:09:59 -04003488LPFC_VPORT_ATTR_R(fcp_class, 3, 2, 3,
3489 "Select Fibre Channel class of service for FCP sequences");
dea31012005-04-17 16:05:31 -05003490
3491/*
3492# lpfc_use_adisc: Use ADISC for FCP rediscovery instead of PLOGI. Value range
3493# is [0,1]. Default value is 0.
3494*/
James Smart3de2a652007-08-02 11:09:59 -04003495LPFC_VPORT_ATTR_RW(use_adisc, 0, 0, 1,
3496 "Use ADISC on rediscovery to authenticate FCP devices");
dea31012005-04-17 16:05:31 -05003497
3498/*
James Smart977b5a02008-09-07 11:52:04 -04003499# lpfc_max_scsicmpl_time: Use scsi command completion time to control I/O queue
3500# depth. Default value is 0. When the value of this parameter is zero the
3501# SCSI command completion time is not used for controlling I/O queue depth. When
3502# the parameter is set to a non-zero value, the I/O queue depth is controlled
3503# to limit the I/O completion time to the parameter value.
3504# The value is set in milliseconds.
3505*/
3506static int lpfc_max_scsicmpl_time;
James Smartab56dc22011-02-16 12:39:57 -05003507module_param(lpfc_max_scsicmpl_time, int, S_IRUGO);
James Smart977b5a02008-09-07 11:52:04 -04003508MODULE_PARM_DESC(lpfc_max_scsicmpl_time,
3509 "Use command completion time to control queue depth");
3510lpfc_vport_param_show(max_scsicmpl_time);
3511lpfc_vport_param_init(max_scsicmpl_time, 0, 0, 60000);
3512static int
3513lpfc_max_scsicmpl_time_set(struct lpfc_vport *vport, int val)
3514{
3515 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3516 struct lpfc_nodelist *ndlp, *next_ndlp;
3517
3518 if (val == vport->cfg_max_scsicmpl_time)
3519 return 0;
3520 if ((val < 0) || (val > 60000))
3521 return -EINVAL;
3522 vport->cfg_max_scsicmpl_time = val;
3523
3524 spin_lock_irq(shost->host_lock);
3525 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
3526 if (!NLP_CHK_NODE_ACT(ndlp))
3527 continue;
3528 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
3529 continue;
James Smart7dc517d2010-07-14 15:32:10 -04003530 ndlp->cmd_qdepth = vport->cfg_tgt_queue_depth;
James Smart977b5a02008-09-07 11:52:04 -04003531 }
3532 spin_unlock_irq(shost->host_lock);
3533 return 0;
3534}
3535lpfc_vport_param_store(max_scsicmpl_time);
3536static DEVICE_ATTR(lpfc_max_scsicmpl_time, S_IRUGO | S_IWUSR,
3537 lpfc_max_scsicmpl_time_show,
3538 lpfc_max_scsicmpl_time_store);
3539
3540/*
dea31012005-04-17 16:05:31 -05003541# lpfc_ack0: Use ACK0, instead of ACK1 for class 2 acknowledgement. Value
3542# range is [0,1]. Default value is 0.
3543*/
3544LPFC_ATTR_R(ack0, 0, 0, 1, "Enable ACK0 support");
3545
3546/*
3547# lpfc_cr_delay & lpfc_cr_count: Default values for I/O colaesing
3548# cr_delay (msec) or cr_count outstanding commands. cr_delay can take
James Smart7054a602007-04-25 09:52:34 -04003549# value [0,63]. cr_count can take value [1,255]. Default value of cr_delay
dea31012005-04-17 16:05:31 -05003550# is 0. Default value of cr_count is 1. The cr_count feature is disabled if
3551# cr_delay is set to 0.
3552*/
Jamie Wellnitz8189fd12006-02-28 19:25:35 -05003553LPFC_ATTR_RW(cr_delay, 0, 0, 63, "A count of milliseconds after which an "
dea31012005-04-17 16:05:31 -05003554 "interrupt response is generated");
3555
Jamie Wellnitz8189fd12006-02-28 19:25:35 -05003556LPFC_ATTR_RW(cr_count, 1, 1, 255, "A count of I/O completions after which an "
dea31012005-04-17 16:05:31 -05003557 "interrupt response is generated");
3558
3559/*
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05003560# lpfc_multi_ring_support: Determines how many rings to spread available
3561# cmd/rsp IOCB entries across.
3562# Value range is [1,2]. Default value is 1.
3563*/
3564LPFC_ATTR_R(multi_ring_support, 1, 1, 2, "Determines number of primary "
3565 "SLI rings to spread IOCB entries across");
3566
3567/*
James Smarta4bc3372006-12-02 13:34:16 -05003568# lpfc_multi_ring_rctl: If lpfc_multi_ring_support is enabled, this
3569# identifies what rctl value to configure the additional ring for.
3570# Value range is [1,0xff]. Default value is 4 (Unsolicated Data).
3571*/
James Smart6a9c52c2009-10-02 15:16:51 -04003572LPFC_ATTR_R(multi_ring_rctl, FC_RCTL_DD_UNSOL_DATA, 1,
James Smarta4bc3372006-12-02 13:34:16 -05003573 255, "Identifies RCTL for additional ring configuration");
3574
3575/*
3576# lpfc_multi_ring_type: If lpfc_multi_ring_support is enabled, this
3577# identifies what type value to configure the additional ring for.
3578# Value range is [1,0xff]. Default value is 5 (LLC/SNAP).
3579*/
James Smart6a9c52c2009-10-02 15:16:51 -04003580LPFC_ATTR_R(multi_ring_type, FC_TYPE_IP, 1,
James Smarta4bc3372006-12-02 13:34:16 -05003581 255, "Identifies TYPE for additional ring configuration");
3582
3583/*
dea31012005-04-17 16:05:31 -05003584# lpfc_fdmi_on: controls FDMI support.
3585# 0 = no FDMI support
3586# 1 = support FDMI without attribute of hostname
3587# 2 = support FDMI with attribute of hostname
3588# Value range [0,2]. Default value is 0.
3589*/
James Smart3de2a652007-08-02 11:09:59 -04003590LPFC_VPORT_ATTR_RW(fdmi_on, 0, 0, 2, "Enable FDMI support");
dea31012005-04-17 16:05:31 -05003591
3592/*
3593# Specifies the maximum number of ELS cmds we can have outstanding (for
3594# discovery). Value range is [1,64]. Default value = 32.
3595*/
James Smart3de2a652007-08-02 11:09:59 -04003596LPFC_VPORT_ATTR(discovery_threads, 32, 1, 64, "Maximum number of ELS commands "
dea31012005-04-17 16:05:31 -05003597 "during discovery");
3598
3599/*
James Smart65a29c12006-07-06 15:50:50 -04003600# lpfc_max_luns: maximum allowed LUN.
3601# Value range is [0,65535]. Default value is 255.
3602# NOTE: The SCSI layer might probe all allowed LUN on some old targets.
dea31012005-04-17 16:05:31 -05003603*/
James Smart3de2a652007-08-02 11:09:59 -04003604LPFC_VPORT_ATTR_R(max_luns, 255, 0, 65535, "Maximum allowed LUN");
dea31012005-04-17 16:05:31 -05003605
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003606/*
3607# lpfc_poll_tmo: .Milliseconds driver will wait between polling FCP ring.
3608# Value range is [1,255], default value is 10.
3609*/
3610LPFC_ATTR_RW(poll_tmo, 10, 1, 255,
3611 "Milliseconds driver will wait between polling FCP ring");
3612
James Smart4ff43242006-12-02 13:34:56 -05003613/*
3614# lpfc_use_msi: Use MSI (Message Signaled Interrupts) in systems that
3615# support this feature
George Kadianakis8605c462010-01-17 21:19:31 +02003616# 0 = MSI disabled
James Smart4ff43242006-12-02 13:34:56 -05003617# 1 = MSI enabled
George Kadianakis8605c462010-01-17 21:19:31 +02003618# 2 = MSI-X enabled (default)
3619# Value range is [0,2]. Default value is 2.
James Smart4ff43242006-12-02 13:34:56 -05003620*/
George Kadianakis8605c462010-01-17 21:19:31 +02003621LPFC_ATTR_R(use_msi, 2, 0, 2, "Use Message Signaled Interrupts (1) or "
James Smartdb2378e2008-02-08 18:49:51 -05003622 "MSI-X (2), if possible");
James Smart4ff43242006-12-02 13:34:56 -05003623
James Smart13815c82008-01-11 01:52:48 -05003624/*
James Smartda0436e2009-05-22 14:51:39 -04003625# lpfc_fcp_imax: Set the maximum number of fast-path FCP interrupts per second
3626#
3627# Value range is [636,651042]. Default value is 10000.
3628*/
3629LPFC_ATTR_R(fcp_imax, LPFC_FP_DEF_IMAX, LPFC_MIM_IMAX, LPFC_DMULT_CONST,
3630 "Set the maximum number of fast-path FCP interrupts per second");
3631
3632/*
3633# lpfc_fcp_wq_count: Set the number of fast-path FCP work queues
3634#
3635# Value range is [1,31]. Default value is 4.
3636*/
3637LPFC_ATTR_R(fcp_wq_count, LPFC_FP_WQN_DEF, LPFC_FP_WQN_MIN, LPFC_FP_WQN_MAX,
3638 "Set the number of fast-path FCP work queues, if possible");
3639
3640/*
3641# lpfc_fcp_eq_count: Set the number of fast-path FCP event queues
3642#
3643# Value range is [1,7]. Default value is 1.
3644*/
3645LPFC_ATTR_R(fcp_eq_count, LPFC_FP_EQN_DEF, LPFC_FP_EQN_MIN, LPFC_FP_EQN_MAX,
3646 "Set the number of fast-path FCP event queues, if possible");
3647
3648/*
James Smart13815c82008-01-11 01:52:48 -05003649# lpfc_enable_hba_reset: Allow or prevent HBA resets to the hardware.
3650# 0 = HBA resets disabled
3651# 1 = HBA resets enabled (default)
3652# Value range is [0,1]. Default value is 1.
3653*/
3654LPFC_ATTR_R(enable_hba_reset, 1, 0, 1, "Enable HBA resets from the driver.");
James Smartc3f28af2006-08-18 17:47:18 -04003655
James Smart13815c82008-01-11 01:52:48 -05003656/*
James Smarteb7a3392010-11-20 23:12:02 -05003657# lpfc_enable_hba_heartbeat: Disable HBA heartbeat timer..
James Smart13815c82008-01-11 01:52:48 -05003658# 0 = HBA Heartbeat disabled
3659# 1 = HBA Heartbeat enabled (default)
3660# Value range is [0,1]. Default value is 1.
3661*/
James Smarteb7a3392010-11-20 23:12:02 -05003662LPFC_ATTR_R(enable_hba_heartbeat, 0, 0, 1, "Enable HBA Heartbeat.");
James Smart92d7f7b2007-06-17 19:56:38 -05003663
James Smart83108bd2008-01-11 01:53:09 -05003664/*
James Smart81301a92008-12-04 22:39:46 -05003665# lpfc_enable_bg: Enable BlockGuard (Emulex's Implementation of T10-DIF)
3666# 0 = BlockGuard disabled (default)
3667# 1 = BlockGuard enabled
3668# Value range is [0,1]. Default value is 0.
3669*/
3670LPFC_ATTR_R(enable_bg, 0, 0, 1, "Enable BlockGuard Support");
3671
James Smart6fb120a2009-05-22 14:52:59 -04003672/*
James Smart81301a92008-12-04 22:39:46 -05003673# lpfc_prot_mask: i
3674# - Bit mask of host protection capabilities used to register with the
3675# SCSI mid-layer
3676# - Only meaningful if BG is turned on (lpfc_enable_bg=1).
3677# - Allows you to ultimately specify which profiles to use
3678# - Default will result in registering capabilities for all profiles.
3679#
3680*/
James Smart7c56b9f2011-07-22 18:36:25 -04003681unsigned int lpfc_prot_mask = SHOST_DIF_TYPE1_PROTECTION |
3682 SHOST_DIX_TYPE0_PROTECTION |
3683 SHOST_DIX_TYPE1_PROTECTION;
James Smart81301a92008-12-04 22:39:46 -05003684
James Smartab56dc22011-02-16 12:39:57 -05003685module_param(lpfc_prot_mask, uint, S_IRUGO);
James Smart81301a92008-12-04 22:39:46 -05003686MODULE_PARM_DESC(lpfc_prot_mask, "host protection mask");
3687
3688/*
3689# lpfc_prot_guard: i
3690# - Bit mask of protection guard types to register with the SCSI mid-layer
3691# - Guard types are currently either 1) IP checksum 2) T10-DIF CRC
3692# - Allows you to ultimately specify which profiles to use
3693# - Default will result in registering capabilities for all guard types
3694#
3695*/
3696unsigned char lpfc_prot_guard = SHOST_DIX_GUARD_IP;
James Smartab56dc22011-02-16 12:39:57 -05003697module_param(lpfc_prot_guard, byte, S_IRUGO);
James Smart81301a92008-12-04 22:39:46 -05003698MODULE_PARM_DESC(lpfc_prot_guard, "host protection guard type");
3699
James Smart92494142011-02-16 12:39:44 -05003700/*
3701 * Delay initial NPort discovery when Clean Address bit is cleared in
3702 * FLOGI/FDISC accept and FCID/Fabric name/Fabric portname is changed.
3703 * This parameter can have value 0 or 1.
3704 * When this parameter is set to 0, no delay is added to the initial
3705 * discovery.
3706 * When this parameter is set to non-zero value, initial Nport discovery is
3707 * delayed by ra_tov seconds when Clean Address bit is cleared in FLOGI/FDISC
3708 * accept and FCID/Fabric name/Fabric portname is changed.
3709 * Driver always delay Nport discovery for subsequent FLOGI/FDISC completion
3710 * when Clean Address bit is cleared in FLOGI/FDISC
3711 * accept and FCID/Fabric name/Fabric portname is changed.
3712 * Default value is 0.
3713 */
3714int lpfc_delay_discovery;
James Smartab56dc22011-02-16 12:39:57 -05003715module_param(lpfc_delay_discovery, int, S_IRUGO);
James Smart92494142011-02-16 12:39:44 -05003716MODULE_PARM_DESC(lpfc_delay_discovery,
3717 "Delay NPort discovery when Clean Address bit is cleared. "
3718 "Allowed values: 0,1.");
James Smart81301a92008-12-04 22:39:46 -05003719
3720/*
James Smart3621a712009-04-06 18:47:14 -04003721 * lpfc_sg_seg_cnt - Initial Maximum DMA Segment Count
James Smart83108bd2008-01-11 01:53:09 -05003722 * This value can be set to values between 64 and 256. The default value is
3723 * 64, but may be increased to allow for larger Max I/O sizes. The scsi layer
3724 * will be allowed to request I/Os of sizes up to (MAX_SEG_COUNT * SEG_SIZE).
3725 */
3726LPFC_ATTR_R(sg_seg_cnt, LPFC_DEFAULT_SG_SEG_CNT, LPFC_DEFAULT_SG_SEG_CNT,
3727 LPFC_MAX_SG_SEG_CNT, "Max Scatter Gather Segment Count");
3728
James Smart81301a92008-12-04 22:39:46 -05003729LPFC_ATTR_R(prot_sg_seg_cnt, LPFC_DEFAULT_PROT_SG_SEG_CNT,
3730 LPFC_DEFAULT_PROT_SG_SEG_CNT, LPFC_MAX_PROT_SG_SEG_CNT,
3731 "Max Protection Scatter Gather Segment Count");
3732
Tony Jonesee959b02008-02-22 00:13:36 +01003733struct device_attribute *lpfc_hba_attrs[] = {
James Smart81301a92008-12-04 22:39:46 -05003734 &dev_attr_bg_info,
3735 &dev_attr_bg_guard_err,
3736 &dev_attr_bg_apptag_err,
3737 &dev_attr_bg_reftag_err,
Tony Jonesee959b02008-02-22 00:13:36 +01003738 &dev_attr_info,
3739 &dev_attr_serialnum,
3740 &dev_attr_modeldesc,
3741 &dev_attr_modelname,
3742 &dev_attr_programtype,
3743 &dev_attr_portnum,
3744 &dev_attr_fwrev,
3745 &dev_attr_hdw,
3746 &dev_attr_option_rom_version,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01003747 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +01003748 &dev_attr_num_discovered_ports,
James Smart84774a42008-08-24 21:50:06 -04003749 &dev_attr_menlo_mgmt_mode,
Tony Jonesee959b02008-02-22 00:13:36 +01003750 &dev_attr_lpfc_drvr_version,
James Smart45ed1192009-10-02 15:17:02 -04003751 &dev_attr_lpfc_enable_fip,
Tony Jonesee959b02008-02-22 00:13:36 +01003752 &dev_attr_lpfc_temp_sensor,
3753 &dev_attr_lpfc_log_verbose,
3754 &dev_attr_lpfc_lun_queue_depth,
James Smart7dc517d2010-07-14 15:32:10 -04003755 &dev_attr_lpfc_tgt_queue_depth,
Tony Jonesee959b02008-02-22 00:13:36 +01003756 &dev_attr_lpfc_hba_queue_depth,
3757 &dev_attr_lpfc_peer_port_login,
3758 &dev_attr_lpfc_nodev_tmo,
3759 &dev_attr_lpfc_devloss_tmo,
3760 &dev_attr_lpfc_fcp_class,
3761 &dev_attr_lpfc_use_adisc,
3762 &dev_attr_lpfc_ack0,
3763 &dev_attr_lpfc_topology,
3764 &dev_attr_lpfc_scan_down,
3765 &dev_attr_lpfc_link_speed,
3766 &dev_attr_lpfc_cr_delay,
3767 &dev_attr_lpfc_cr_count,
3768 &dev_attr_lpfc_multi_ring_support,
3769 &dev_attr_lpfc_multi_ring_rctl,
3770 &dev_attr_lpfc_multi_ring_type,
3771 &dev_attr_lpfc_fdmi_on,
3772 &dev_attr_lpfc_max_luns,
3773 &dev_attr_lpfc_enable_npiv,
James Smart19ca7602010-11-20 23:11:55 -05003774 &dev_attr_lpfc_enable_rrq,
Tony Jonesee959b02008-02-22 00:13:36 +01003775 &dev_attr_nport_evt_cnt,
3776 &dev_attr_board_mode,
3777 &dev_attr_max_vpi,
3778 &dev_attr_used_vpi,
3779 &dev_attr_max_rpi,
3780 &dev_attr_used_rpi,
3781 &dev_attr_max_xri,
3782 &dev_attr_used_xri,
3783 &dev_attr_npiv_info,
3784 &dev_attr_issue_reset,
3785 &dev_attr_lpfc_poll,
3786 &dev_attr_lpfc_poll_tmo,
3787 &dev_attr_lpfc_use_msi,
James Smartda0436e2009-05-22 14:51:39 -04003788 &dev_attr_lpfc_fcp_imax,
3789 &dev_attr_lpfc_fcp_wq_count,
3790 &dev_attr_lpfc_fcp_eq_count,
James Smart81301a92008-12-04 22:39:46 -05003791 &dev_attr_lpfc_enable_bg,
Tony Jonesee959b02008-02-22 00:13:36 +01003792 &dev_attr_lpfc_soft_wwnn,
3793 &dev_attr_lpfc_soft_wwpn,
3794 &dev_attr_lpfc_soft_wwn_enable,
3795 &dev_attr_lpfc_enable_hba_reset,
3796 &dev_attr_lpfc_enable_hba_heartbeat,
3797 &dev_attr_lpfc_sg_seg_cnt,
James Smart977b5a02008-09-07 11:52:04 -04003798 &dev_attr_lpfc_max_scsicmpl_time,
James Smartea2151b2008-09-07 11:52:10 -04003799 &dev_attr_lpfc_stat_data_ctrl,
James Smart81301a92008-12-04 22:39:46 -05003800 &dev_attr_lpfc_prot_sg_seg_cnt,
James Smart0d878412009-10-02 15:16:56 -04003801 &dev_attr_lpfc_aer_support,
3802 &dev_attr_lpfc_aer_state_cleanup,
James Smart912e3ac2011-05-24 11:42:11 -04003803 &dev_attr_lpfc_sriov_nr_virtfn,
James Smart84d1b002010-02-12 14:42:33 -05003804 &dev_attr_lpfc_suppress_link_up,
James Smart2a9bf3d2010-06-07 15:24:45 -04003805 &dev_attr_lpfc_iocb_cnt,
3806 &dev_attr_iocb_hw,
3807 &dev_attr_txq_hw,
3808 &dev_attr_txcmplq_hw,
James Smartbc739052010-08-04 16:11:18 -04003809 &dev_attr_lpfc_fips_level,
3810 &dev_attr_lpfc_fips_rev,
James Smartab56dc22011-02-16 12:39:57 -05003811 &dev_attr_lpfc_dss,
James Smart912e3ac2011-05-24 11:42:11 -04003812 &dev_attr_lpfc_sriov_hw_max_virtfn,
dea31012005-04-17 16:05:31 -05003813 NULL,
3814};
3815
Tony Jonesee959b02008-02-22 00:13:36 +01003816struct device_attribute *lpfc_vport_attrs[] = {
3817 &dev_attr_info,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01003818 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +01003819 &dev_attr_num_discovered_ports,
3820 &dev_attr_lpfc_drvr_version,
3821 &dev_attr_lpfc_log_verbose,
3822 &dev_attr_lpfc_lun_queue_depth,
James Smart7dc517d2010-07-14 15:32:10 -04003823 &dev_attr_lpfc_tgt_queue_depth,
Tony Jonesee959b02008-02-22 00:13:36 +01003824 &dev_attr_lpfc_nodev_tmo,
3825 &dev_attr_lpfc_devloss_tmo,
3826 &dev_attr_lpfc_hba_queue_depth,
3827 &dev_attr_lpfc_peer_port_login,
3828 &dev_attr_lpfc_restrict_login,
3829 &dev_attr_lpfc_fcp_class,
3830 &dev_attr_lpfc_use_adisc,
3831 &dev_attr_lpfc_fdmi_on,
3832 &dev_attr_lpfc_max_luns,
3833 &dev_attr_nport_evt_cnt,
3834 &dev_attr_npiv_info,
3835 &dev_attr_lpfc_enable_da_id,
James Smartea2151b2008-09-07 11:52:10 -04003836 &dev_attr_lpfc_max_scsicmpl_time,
3837 &dev_attr_lpfc_stat_data_ctrl,
James Smart21e9a0a2009-05-22 14:53:21 -04003838 &dev_attr_lpfc_static_vport,
James Smartbc739052010-08-04 16:11:18 -04003839 &dev_attr_lpfc_fips_level,
3840 &dev_attr_lpfc_fips_rev,
James Smart3de2a652007-08-02 11:09:59 -04003841 NULL,
3842};
3843
James Smarte59058c2008-08-24 21:49:00 -04003844/**
James Smart3621a712009-04-06 18:47:14 -04003845 * sysfs_ctlreg_write - Write method for writing to ctlreg
Chris Wright2c3c8be2010-05-12 18:28:57 -07003846 * @filp: open sysfs file
James Smarte59058c2008-08-24 21:49:00 -04003847 * @kobj: kernel kobject that contains the kernel class device.
3848 * @bin_attr: kernel attributes passed to us.
3849 * @buf: contains the data to be written to the adapter IOREG space.
3850 * @off: offset into buffer to beginning of data.
3851 * @count: bytes to transfer.
3852 *
3853 * Description:
3854 * Accessed via /sys/class/scsi_host/hostxxx/ctlreg.
3855 * Uses the adapter io control registers to send buf contents to the adapter.
3856 *
3857 * Returns:
3858 * -ERANGE off and count combo out of range
3859 * -EINVAL off, count or buff address invalid
3860 * -EPERM adapter is offline
3861 * value of count, buf contents written
3862 **/
dea31012005-04-17 16:05:31 -05003863static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07003864sysfs_ctlreg_write(struct file *filp, struct kobject *kobj,
3865 struct bin_attribute *bin_attr,
Zhang Rui91a69022007-06-09 13:57:22 +08003866 char *buf, loff_t off, size_t count)
dea31012005-04-17 16:05:31 -05003867{
3868 size_t buf_off;
Tony Jonesee959b02008-02-22 00:13:36 +01003869 struct device *dev = container_of(kobj, struct device, kobj);
3870 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05003871 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3872 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003873
James Smartf1126682009-06-10 17:22:44 -04003874 if (phba->sli_rev >= LPFC_SLI_REV4)
3875 return -EPERM;
3876
dea31012005-04-17 16:05:31 -05003877 if ((off + count) > FF_REG_AREA_SIZE)
3878 return -ERANGE;
3879
3880 if (count == 0) return 0;
3881
3882 if (off % 4 || count % 4 || (unsigned long)buf % 4)
3883 return -EINVAL;
3884
James Smart2e0fef82007-06-17 19:56:36 -05003885 if (!(vport->fc_flag & FC_OFFLINE_MODE)) {
dea31012005-04-17 16:05:31 -05003886 return -EPERM;
3887 }
3888
James Smart2e0fef82007-06-17 19:56:36 -05003889 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003890 for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t))
3891 writel(*((uint32_t *)(buf + buf_off)),
3892 phba->ctrl_regs_memmap_p + off + buf_off);
3893
James Smart2e0fef82007-06-17 19:56:36 -05003894 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003895
3896 return count;
3897}
3898
James Smarte59058c2008-08-24 21:49:00 -04003899/**
James Smart3621a712009-04-06 18:47:14 -04003900 * sysfs_ctlreg_read - Read method for reading from ctlreg
Chris Wright2c3c8be2010-05-12 18:28:57 -07003901 * @filp: open sysfs file
James Smarte59058c2008-08-24 21:49:00 -04003902 * @kobj: kernel kobject that contains the kernel class device.
3903 * @bin_attr: kernel attributes passed to us.
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003904 * @buf: if successful contains the data from the adapter IOREG space.
James Smarte59058c2008-08-24 21:49:00 -04003905 * @off: offset into buffer to beginning of data.
3906 * @count: bytes to transfer.
3907 *
3908 * Description:
3909 * Accessed via /sys/class/scsi_host/hostxxx/ctlreg.
3910 * Uses the adapter io control registers to read data into buf.
3911 *
3912 * Returns:
3913 * -ERANGE off and count combo out of range
3914 * -EINVAL off, count or buff address invalid
3915 * value of count, buf contents read
3916 **/
dea31012005-04-17 16:05:31 -05003917static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07003918sysfs_ctlreg_read(struct file *filp, struct kobject *kobj,
3919 struct bin_attribute *bin_attr,
Zhang Rui91a69022007-06-09 13:57:22 +08003920 char *buf, loff_t off, size_t count)
dea31012005-04-17 16:05:31 -05003921{
3922 size_t buf_off;
3923 uint32_t * tmp_ptr;
Tony Jonesee959b02008-02-22 00:13:36 +01003924 struct device *dev = container_of(kobj, struct device, kobj);
3925 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05003926 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3927 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003928
James Smartf1126682009-06-10 17:22:44 -04003929 if (phba->sli_rev >= LPFC_SLI_REV4)
3930 return -EPERM;
3931
dea31012005-04-17 16:05:31 -05003932 if (off > FF_REG_AREA_SIZE)
3933 return -ERANGE;
3934
3935 if ((off + count) > FF_REG_AREA_SIZE)
3936 count = FF_REG_AREA_SIZE - off;
3937
3938 if (count == 0) return 0;
3939
3940 if (off % 4 || count % 4 || (unsigned long)buf % 4)
3941 return -EINVAL;
3942
James Smart2e0fef82007-06-17 19:56:36 -05003943 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003944
3945 for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t)) {
3946 tmp_ptr = (uint32_t *)(buf + buf_off);
3947 *tmp_ptr = readl(phba->ctrl_regs_memmap_p + off + buf_off);
3948 }
3949
James Smart2e0fef82007-06-17 19:56:36 -05003950 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003951
3952 return count;
3953}
3954
3955static struct bin_attribute sysfs_ctlreg_attr = {
3956 .attr = {
3957 .name = "ctlreg",
3958 .mode = S_IRUSR | S_IWUSR,
dea31012005-04-17 16:05:31 -05003959 },
3960 .size = 256,
3961 .read = sysfs_ctlreg_read,
3962 .write = sysfs_ctlreg_write,
3963};
3964
James Smarte59058c2008-08-24 21:49:00 -04003965/**
James Smart3621a712009-04-06 18:47:14 -04003966 * sysfs_mbox_idle - frees the sysfs mailbox
James Smarte59058c2008-08-24 21:49:00 -04003967 * @phba: lpfc_hba pointer
3968 **/
dea31012005-04-17 16:05:31 -05003969static void
James Smart2e0fef82007-06-17 19:56:36 -05003970sysfs_mbox_idle(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003971{
3972 phba->sysfs_mbox.state = SMBOX_IDLE;
3973 phba->sysfs_mbox.offset = 0;
3974
3975 if (phba->sysfs_mbox.mbox) {
3976 mempool_free(phba->sysfs_mbox.mbox,
3977 phba->mbox_mem_pool);
3978 phba->sysfs_mbox.mbox = NULL;
3979 }
3980}
3981
James Smarte59058c2008-08-24 21:49:00 -04003982/**
James Smart3621a712009-04-06 18:47:14 -04003983 * sysfs_mbox_write - Write method for writing information via mbox
Chris Wright2c3c8be2010-05-12 18:28:57 -07003984 * @filp: open sysfs file
James Smarte59058c2008-08-24 21:49:00 -04003985 * @kobj: kernel kobject that contains the kernel class device.
3986 * @bin_attr: kernel attributes passed to us.
3987 * @buf: contains the data to be written to sysfs mbox.
3988 * @off: offset into buffer to beginning of data.
3989 * @count: bytes to transfer.
3990 *
3991 * Description:
3992 * Accessed via /sys/class/scsi_host/hostxxx/mbox.
3993 * Uses the sysfs mbox to send buf contents to the adapter.
3994 *
3995 * Returns:
3996 * -ERANGE off and count combo out of range
3997 * -EINVAL off, count or buff address invalid
3998 * zero if count is zero
3999 * -EPERM adapter is offline
4000 * -ENOMEM failed to allocate memory for the mail box
4001 * -EAGAIN offset, state or mbox is NULL
4002 * count number of bytes transferred
4003 **/
dea31012005-04-17 16:05:31 -05004004static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07004005sysfs_mbox_write(struct file *filp, struct kobject *kobj,
4006 struct bin_attribute *bin_attr,
Zhang Rui91a69022007-06-09 13:57:22 +08004007 char *buf, loff_t off, size_t count)
dea31012005-04-17 16:05:31 -05004008{
Tony Jonesee959b02008-02-22 00:13:36 +01004009 struct device *dev = container_of(kobj, struct device, kobj);
4010 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05004011 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4012 struct lpfc_hba *phba = vport->phba;
4013 struct lpfcMboxq *mbox = NULL;
dea31012005-04-17 16:05:31 -05004014
4015 if ((count + off) > MAILBOX_CMD_SIZE)
4016 return -ERANGE;
4017
4018 if (off % 4 || count % 4 || (unsigned long)buf % 4)
4019 return -EINVAL;
4020
4021 if (count == 0)
4022 return 0;
4023
4024 if (off == 0) {
4025 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4026 if (!mbox)
4027 return -ENOMEM;
James Smartfc6c12b2006-03-07 15:04:19 -05004028 memset(mbox, 0, sizeof (LPFC_MBOXQ_t));
dea31012005-04-17 16:05:31 -05004029 }
4030
James Smart2e0fef82007-06-17 19:56:36 -05004031 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004032
4033 if (off == 0) {
4034 if (phba->sysfs_mbox.mbox)
4035 mempool_free(mbox, phba->mbox_mem_pool);
4036 else
4037 phba->sysfs_mbox.mbox = mbox;
4038 phba->sysfs_mbox.state = SMBOX_WRITING;
4039 } else {
4040 if (phba->sysfs_mbox.state != SMBOX_WRITING ||
4041 phba->sysfs_mbox.offset != off ||
James Smart92d7f7b2007-06-17 19:56:38 -05004042 phba->sysfs_mbox.mbox == NULL) {
dea31012005-04-17 16:05:31 -05004043 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004044 spin_unlock_irq(&phba->hbalock);
James Smart8f6d98d2006-08-01 07:34:00 -04004045 return -EAGAIN;
dea31012005-04-17 16:05:31 -05004046 }
4047 }
4048
James Smart04c68492009-05-22 14:52:52 -04004049 memcpy((uint8_t *) &phba->sysfs_mbox.mbox->u.mb + off,
dea31012005-04-17 16:05:31 -05004050 buf, count);
4051
4052 phba->sysfs_mbox.offset = off + count;
4053
James Smart2e0fef82007-06-17 19:56:36 -05004054 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004055
4056 return count;
4057}
4058
James Smarte59058c2008-08-24 21:49:00 -04004059/**
James Smart3621a712009-04-06 18:47:14 -04004060 * sysfs_mbox_read - Read method for reading information via mbox
Chris Wright2c3c8be2010-05-12 18:28:57 -07004061 * @filp: open sysfs file
James Smarte59058c2008-08-24 21:49:00 -04004062 * @kobj: kernel kobject that contains the kernel class device.
4063 * @bin_attr: kernel attributes passed to us.
4064 * @buf: contains the data to be read from sysfs mbox.
4065 * @off: offset into buffer to beginning of data.
4066 * @count: bytes to transfer.
4067 *
4068 * Description:
4069 * Accessed via /sys/class/scsi_host/hostxxx/mbox.
4070 * Uses the sysfs mbox to receive data from to the adapter.
4071 *
4072 * Returns:
4073 * -ERANGE off greater than mailbox command size
4074 * -EINVAL off, count or buff address invalid
4075 * zero if off and count are zero
4076 * -EACCES adapter over temp
4077 * -EPERM garbage can value to catch a multitude of errors
4078 * -EAGAIN management IO not permitted, state or off error
4079 * -ETIME mailbox timeout
4080 * -ENODEV mailbox error
4081 * count number of bytes transferred
4082 **/
dea31012005-04-17 16:05:31 -05004083static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07004084sysfs_mbox_read(struct file *filp, struct kobject *kobj,
4085 struct bin_attribute *bin_attr,
Zhang Rui91a69022007-06-09 13:57:22 +08004086 char *buf, loff_t off, size_t count)
dea31012005-04-17 16:05:31 -05004087{
Tony Jonesee959b02008-02-22 00:13:36 +01004088 struct device *dev = container_of(kobj, struct device, kobj);
4089 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05004090 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4091 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004092 int rc;
James Smart04c68492009-05-22 14:52:52 -04004093 MAILBOX_t *pmb;
dea31012005-04-17 16:05:31 -05004094
James Smart1dcb58e2007-04-25 09:51:30 -04004095 if (off > MAILBOX_CMD_SIZE)
dea31012005-04-17 16:05:31 -05004096 return -ERANGE;
4097
James Smart1dcb58e2007-04-25 09:51:30 -04004098 if ((count + off) > MAILBOX_CMD_SIZE)
4099 count = MAILBOX_CMD_SIZE - off;
dea31012005-04-17 16:05:31 -05004100
4101 if (off % 4 || count % 4 || (unsigned long)buf % 4)
4102 return -EINVAL;
4103
4104 if (off && count == 0)
4105 return 0;
4106
James Smart2e0fef82007-06-17 19:56:36 -05004107 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004108
James Smart7af67052007-10-27 13:38:11 -04004109 if (phba->over_temp_state == HBA_OVER_TEMP) {
4110 sysfs_mbox_idle(phba);
4111 spin_unlock_irq(&phba->hbalock);
James Smart09372822008-01-11 01:52:54 -05004112 return -EACCES;
James Smart7af67052007-10-27 13:38:11 -04004113 }
4114
dea31012005-04-17 16:05:31 -05004115 if (off == 0 &&
4116 phba->sysfs_mbox.state == SMBOX_WRITING &&
4117 phba->sysfs_mbox.offset >= 2 * sizeof(uint32_t)) {
James Smart04c68492009-05-22 14:52:52 -04004118 pmb = &phba->sysfs_mbox.mbox->u.mb;
4119 switch (pmb->mbxCommand) {
dea31012005-04-17 16:05:31 -05004120 /* Offline only */
dea31012005-04-17 16:05:31 -05004121 case MBX_INIT_LINK:
4122 case MBX_DOWN_LINK:
4123 case MBX_CONFIG_LINK:
4124 case MBX_CONFIG_RING:
4125 case MBX_RESET_RING:
4126 case MBX_UNREG_LOGIN:
4127 case MBX_CLEAR_LA:
4128 case MBX_DUMP_CONTEXT:
4129 case MBX_RUN_DIAGS:
4130 case MBX_RESTART:
dea31012005-04-17 16:05:31 -05004131 case MBX_SET_MASK:
dea31012005-04-17 16:05:31 -05004132 case MBX_SET_DEBUG:
James Smart2e0fef82007-06-17 19:56:36 -05004133 if (!(vport->fc_flag & FC_OFFLINE_MODE)) {
dea31012005-04-17 16:05:31 -05004134 printk(KERN_WARNING "mbox_read:Command 0x%x "
4135 "is illegal in on-line state\n",
James Smart04c68492009-05-22 14:52:52 -04004136 pmb->mbxCommand);
dea31012005-04-17 16:05:31 -05004137 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004138 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004139 return -EPERM;
4140 }
James Smarta8adb832007-10-27 13:37:53 -04004141 case MBX_WRITE_NV:
4142 case MBX_WRITE_VPARMS:
dea31012005-04-17 16:05:31 -05004143 case MBX_LOAD_SM:
4144 case MBX_READ_NV:
4145 case MBX_READ_CONFIG:
4146 case MBX_READ_RCONFIG:
4147 case MBX_READ_STATUS:
4148 case MBX_READ_XRI:
4149 case MBX_READ_REV:
4150 case MBX_READ_LNK_STAT:
4151 case MBX_DUMP_MEMORY:
4152 case MBX_DOWN_LOAD:
4153 case MBX_UPDATE_CFG:
Jamie Wellnitz41415862006-02-28 19:25:27 -05004154 case MBX_KILL_BOARD:
dea31012005-04-17 16:05:31 -05004155 case MBX_LOAD_AREA:
4156 case MBX_LOAD_EXP_ROM:
Jamie Wellnitz41415862006-02-28 19:25:27 -05004157 case MBX_BEACON:
4158 case MBX_DEL_LD_ENTRY:
James Smart09372822008-01-11 01:52:54 -05004159 case MBX_SET_VARIABLE:
4160 case MBX_WRITE_WWN:
James Smart84774a42008-08-24 21:50:06 -04004161 case MBX_PORT_CAPABILITIES:
4162 case MBX_PORT_IOV_CONTROL:
dea31012005-04-17 16:05:31 -05004163 break;
James Smartdcf2a4e2010-09-29 11:18:53 -04004164 case MBX_SECURITY_MGMT:
4165 case MBX_AUTH_PORT:
James Smart5989b8d2010-10-22 11:06:56 -04004166 if (phba->pci_dev_grp == LPFC_PCI_DEV_OC) {
4167 printk(KERN_WARNING "mbox_read:Command 0x%x "
4168 "is not permitted\n", pmb->mbxCommand);
4169 sysfs_mbox_idle(phba);
4170 spin_unlock_irq(&phba->hbalock);
James Smartdcf2a4e2010-09-29 11:18:53 -04004171 return -EPERM;
James Smart5989b8d2010-10-22 11:06:56 -04004172 }
James Smartdcf2a4e2010-09-29 11:18:53 -04004173 break;
dea31012005-04-17 16:05:31 -05004174 case MBX_READ_SPARM64:
James Smart76a95d72010-11-20 23:11:48 -05004175 case MBX_READ_TOPOLOGY:
dea31012005-04-17 16:05:31 -05004176 case MBX_REG_LOGIN:
4177 case MBX_REG_LOGIN64:
4178 case MBX_CONFIG_PORT:
4179 case MBX_RUN_BIU_DIAG:
4180 printk(KERN_WARNING "mbox_read: Illegal Command 0x%x\n",
James Smart04c68492009-05-22 14:52:52 -04004181 pmb->mbxCommand);
dea31012005-04-17 16:05:31 -05004182 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004183 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004184 return -EPERM;
4185 default:
4186 printk(KERN_WARNING "mbox_read: Unknown Command 0x%x\n",
James Smart04c68492009-05-22 14:52:52 -04004187 pmb->mbxCommand);
dea31012005-04-17 16:05:31 -05004188 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004189 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004190 return -EPERM;
4191 }
4192
James Smart09372822008-01-11 01:52:54 -05004193 /* If HBA encountered an error attention, allow only DUMP
James Smart1b32f6a2008-02-08 18:49:39 -05004194 * or RESTART mailbox commands until the HBA is restarted.
James Smart09372822008-01-11 01:52:54 -05004195 */
James Smartd7c255b2008-08-24 21:50:00 -04004196 if (phba->pport->stopped &&
James Smart04c68492009-05-22 14:52:52 -04004197 pmb->mbxCommand != MBX_DUMP_MEMORY &&
4198 pmb->mbxCommand != MBX_RESTART &&
4199 pmb->mbxCommand != MBX_WRITE_VPARMS &&
4200 pmb->mbxCommand != MBX_WRITE_WWN)
James Smartd7c255b2008-08-24 21:50:00 -04004201 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
4202 "1259 mbox: Issued mailbox cmd "
4203 "0x%x while in stopped state.\n",
James Smart04c68492009-05-22 14:52:52 -04004204 pmb->mbxCommand);
James Smart09372822008-01-11 01:52:54 -05004205
James Smart92d7f7b2007-06-17 19:56:38 -05004206 phba->sysfs_mbox.mbox->vport = vport;
4207
James Smart58da1ff2008-04-07 10:15:56 -04004208 /* Don't allow mailbox commands to be sent when blocked
4209 * or when in the middle of discovery
4210 */
James Smart495a7142008-06-14 22:52:59 -04004211 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO) {
James Smart46fa3112007-04-25 09:51:45 -04004212 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004213 spin_unlock_irq(&phba->hbalock);
James Smart46fa3112007-04-25 09:51:45 -04004214 return -EAGAIN;
4215 }
4216
James Smart2e0fef82007-06-17 19:56:36 -05004217 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
James Smartf4b4c682009-05-22 14:53:12 -04004218 (!(phba->sli.sli_flag & LPFC_SLI_ACTIVE))) {
dea31012005-04-17 16:05:31 -05004219
James Smart2e0fef82007-06-17 19:56:36 -05004220 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004221 rc = lpfc_sli_issue_mbox (phba,
4222 phba->sysfs_mbox.mbox,
4223 MBX_POLL);
James Smart2e0fef82007-06-17 19:56:36 -05004224 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004225
4226 } else {
James Smart2e0fef82007-06-17 19:56:36 -05004227 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004228 rc = lpfc_sli_issue_mbox_wait (phba,
4229 phba->sysfs_mbox.mbox,
James Smart04c68492009-05-22 14:52:52 -04004230 lpfc_mbox_tmo_val(phba, pmb->mbxCommand) * HZ);
James Smart2e0fef82007-06-17 19:56:36 -05004231 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004232 }
4233
4234 if (rc != MBX_SUCCESS) {
James Smart1dcb58e2007-04-25 09:51:30 -04004235 if (rc == MBX_TIMEOUT) {
James Smart1dcb58e2007-04-25 09:51:30 -04004236 phba->sysfs_mbox.mbox = NULL;
4237 }
dea31012005-04-17 16:05:31 -05004238 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004239 spin_unlock_irq(&phba->hbalock);
James Smart8f6d98d2006-08-01 07:34:00 -04004240 return (rc == MBX_TIMEOUT) ? -ETIME : -ENODEV;
dea31012005-04-17 16:05:31 -05004241 }
4242 phba->sysfs_mbox.state = SMBOX_READING;
4243 }
4244 else if (phba->sysfs_mbox.offset != off ||
4245 phba->sysfs_mbox.state != SMBOX_READING) {
4246 printk(KERN_WARNING "mbox_read: Bad State\n");
4247 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004248 spin_unlock_irq(&phba->hbalock);
James Smart8f6d98d2006-08-01 07:34:00 -04004249 return -EAGAIN;
dea31012005-04-17 16:05:31 -05004250 }
4251
James Smart04c68492009-05-22 14:52:52 -04004252 memcpy(buf, (uint8_t *) &pmb + off, count);
dea31012005-04-17 16:05:31 -05004253
4254 phba->sysfs_mbox.offset = off + count;
4255
James Smart1dcb58e2007-04-25 09:51:30 -04004256 if (phba->sysfs_mbox.offset == MAILBOX_CMD_SIZE)
dea31012005-04-17 16:05:31 -05004257 sysfs_mbox_idle(phba);
4258
James Smart2e0fef82007-06-17 19:56:36 -05004259 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004260
4261 return count;
4262}
4263
4264static struct bin_attribute sysfs_mbox_attr = {
4265 .attr = {
4266 .name = "mbox",
4267 .mode = S_IRUSR | S_IWUSR,
dea31012005-04-17 16:05:31 -05004268 },
James Smartc0c11512011-05-24 11:41:34 -04004269 .size = MAILBOX_SYSFS_MAX,
dea31012005-04-17 16:05:31 -05004270 .read = sysfs_mbox_read,
4271 .write = sysfs_mbox_write,
4272};
4273
James Smarte59058c2008-08-24 21:49:00 -04004274/**
James Smart3621a712009-04-06 18:47:14 -04004275 * lpfc_alloc_sysfs_attr - Creates the ctlreg and mbox entries
James Smarte59058c2008-08-24 21:49:00 -04004276 * @vport: address of lpfc vport structure.
4277 *
4278 * Return codes:
4279 * zero on success
4280 * error return code from sysfs_create_bin_file()
4281 **/
dea31012005-04-17 16:05:31 -05004282int
James Smart2e0fef82007-06-17 19:56:36 -05004283lpfc_alloc_sysfs_attr(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004284{
James Smart2e0fef82007-06-17 19:56:36 -05004285 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004286 int error;
4287
Tony Jonesee959b02008-02-22 00:13:36 +01004288 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
James Smarteada2722008-12-04 22:39:13 -05004289 &sysfs_drvr_stat_data_attr);
4290
4291 /* Virtual ports do not need ctrl_reg and mbox */
4292 if (error || vport->port_type == LPFC_NPIV_PORT)
4293 goto out;
4294
4295 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
James Smart92d7f7b2007-06-17 19:56:38 -05004296 &sysfs_ctlreg_attr);
dea31012005-04-17 16:05:31 -05004297 if (error)
James Smarteada2722008-12-04 22:39:13 -05004298 goto out_remove_stat_attr;
dea31012005-04-17 16:05:31 -05004299
Tony Jonesee959b02008-02-22 00:13:36 +01004300 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
James Smart92d7f7b2007-06-17 19:56:38 -05004301 &sysfs_mbox_attr);
dea31012005-04-17 16:05:31 -05004302 if (error)
4303 goto out_remove_ctlreg_attr;
4304
4305 return 0;
4306out_remove_ctlreg_attr:
Tony Jonesee959b02008-02-22 00:13:36 +01004307 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_ctlreg_attr);
James Smarteada2722008-12-04 22:39:13 -05004308out_remove_stat_attr:
4309 sysfs_remove_bin_file(&shost->shost_dev.kobj,
4310 &sysfs_drvr_stat_data_attr);
dea31012005-04-17 16:05:31 -05004311out:
4312 return error;
4313}
4314
James Smarte59058c2008-08-24 21:49:00 -04004315/**
James Smart3621a712009-04-06 18:47:14 -04004316 * lpfc_free_sysfs_attr - Removes the ctlreg and mbox entries
James Smarte59058c2008-08-24 21:49:00 -04004317 * @vport: address of lpfc vport structure.
4318 **/
dea31012005-04-17 16:05:31 -05004319void
James Smart2e0fef82007-06-17 19:56:36 -05004320lpfc_free_sysfs_attr(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004321{
James Smart2e0fef82007-06-17 19:56:36 -05004322 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartea2151b2008-09-07 11:52:10 -04004323 sysfs_remove_bin_file(&shost->shost_dev.kobj,
4324 &sysfs_drvr_stat_data_attr);
James Smarteada2722008-12-04 22:39:13 -05004325 /* Virtual ports do not need ctrl_reg and mbox */
4326 if (vport->port_type == LPFC_NPIV_PORT)
4327 return;
Tony Jonesee959b02008-02-22 00:13:36 +01004328 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_mbox_attr);
4329 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_ctlreg_attr);
dea31012005-04-17 16:05:31 -05004330}
4331
4332
4333/*
4334 * Dynamic FC Host Attributes Support
4335 */
4336
James Smarte59058c2008-08-24 21:49:00 -04004337/**
James Smart3621a712009-04-06 18:47:14 -04004338 * lpfc_get_host_port_id - Copy the vport DID into the scsi host port id
James Smarte59058c2008-08-24 21:49:00 -04004339 * @shost: kernel scsi host pointer.
4340 **/
dea31012005-04-17 16:05:31 -05004341static void
4342lpfc_get_host_port_id(struct Scsi_Host *shost)
4343{
James Smart2e0fef82007-06-17 19:56:36 -05004344 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4345
dea31012005-04-17 16:05:31 -05004346 /* note: fc_myDID already in cpu endianness */
James Smart2e0fef82007-06-17 19:56:36 -05004347 fc_host_port_id(shost) = vport->fc_myDID;
dea31012005-04-17 16:05:31 -05004348}
4349
James Smarte59058c2008-08-24 21:49:00 -04004350/**
James Smart3621a712009-04-06 18:47:14 -04004351 * lpfc_get_host_port_type - Set the value of the scsi host port type
James Smarte59058c2008-08-24 21:49:00 -04004352 * @shost: kernel scsi host pointer.
4353 **/
dea31012005-04-17 16:05:31 -05004354static void
4355lpfc_get_host_port_type(struct Scsi_Host *shost)
4356{
James Smart2e0fef82007-06-17 19:56:36 -05004357 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4358 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004359
4360 spin_lock_irq(shost->host_lock);
4361
James Smart92d7f7b2007-06-17 19:56:38 -05004362 if (vport->port_type == LPFC_NPIV_PORT) {
4363 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
4364 } else if (lpfc_is_link_up(phba)) {
James Smart76a95d72010-11-20 23:11:48 -05004365 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -05004366 if (vport->fc_flag & FC_PUBLIC_LOOP)
dea31012005-04-17 16:05:31 -05004367 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
4368 else
4369 fc_host_port_type(shost) = FC_PORTTYPE_LPORT;
4370 } else {
James Smart2e0fef82007-06-17 19:56:36 -05004371 if (vport->fc_flag & FC_FABRIC)
dea31012005-04-17 16:05:31 -05004372 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
4373 else
4374 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
4375 }
4376 } else
4377 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
4378
4379 spin_unlock_irq(shost->host_lock);
4380}
4381
James Smarte59058c2008-08-24 21:49:00 -04004382/**
James Smart3621a712009-04-06 18:47:14 -04004383 * lpfc_get_host_port_state - Set the value of the scsi host port state
James Smarte59058c2008-08-24 21:49:00 -04004384 * @shost: kernel scsi host pointer.
4385 **/
dea31012005-04-17 16:05:31 -05004386static void
4387lpfc_get_host_port_state(struct Scsi_Host *shost)
4388{
James Smart2e0fef82007-06-17 19:56:36 -05004389 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4390 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004391
4392 spin_lock_irq(shost->host_lock);
4393
James Smart2e0fef82007-06-17 19:56:36 -05004394 if (vport->fc_flag & FC_OFFLINE_MODE)
dea31012005-04-17 16:05:31 -05004395 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
4396 else {
James Smart2e0fef82007-06-17 19:56:36 -05004397 switch (phba->link_state) {
4398 case LPFC_LINK_UNKNOWN:
dea31012005-04-17 16:05:31 -05004399 case LPFC_LINK_DOWN:
4400 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
4401 break;
4402 case LPFC_LINK_UP:
dea31012005-04-17 16:05:31 -05004403 case LPFC_CLEAR_LA:
4404 case LPFC_HBA_READY:
4405 /* Links up, beyond this port_type reports state */
4406 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
4407 break;
4408 case LPFC_HBA_ERROR:
4409 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
4410 break;
4411 default:
4412 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
4413 break;
4414 }
4415 }
4416
4417 spin_unlock_irq(shost->host_lock);
4418}
4419
James Smarte59058c2008-08-24 21:49:00 -04004420/**
James Smart3621a712009-04-06 18:47:14 -04004421 * lpfc_get_host_speed - Set the value of the scsi host speed
James Smarte59058c2008-08-24 21:49:00 -04004422 * @shost: kernel scsi host pointer.
4423 **/
dea31012005-04-17 16:05:31 -05004424static void
4425lpfc_get_host_speed(struct Scsi_Host *shost)
4426{
James Smart2e0fef82007-06-17 19:56:36 -05004427 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4428 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004429
4430 spin_lock_irq(shost->host_lock);
4431
James Smart2e0fef82007-06-17 19:56:36 -05004432 if (lpfc_is_link_up(phba)) {
dea31012005-04-17 16:05:31 -05004433 switch(phba->fc_linkspeed) {
James Smart76a95d72010-11-20 23:11:48 -05004434 case LPFC_LINK_SPEED_1GHZ:
4435 fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
dea31012005-04-17 16:05:31 -05004436 break;
James Smart76a95d72010-11-20 23:11:48 -05004437 case LPFC_LINK_SPEED_2GHZ:
4438 fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
dea31012005-04-17 16:05:31 -05004439 break;
James Smart76a95d72010-11-20 23:11:48 -05004440 case LPFC_LINK_SPEED_4GHZ:
4441 fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
dea31012005-04-17 16:05:31 -05004442 break;
James Smart76a95d72010-11-20 23:11:48 -05004443 case LPFC_LINK_SPEED_8GHZ:
4444 fc_host_speed(shost) = FC_PORTSPEED_8GBIT;
James Smartb87eab32007-04-25 09:53:28 -04004445 break;
James Smart76a95d72010-11-20 23:11:48 -05004446 case LPFC_LINK_SPEED_10GHZ:
4447 fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
James Smartf4b4c682009-05-22 14:53:12 -04004448 break;
James Smart76a95d72010-11-20 23:11:48 -05004449 case LPFC_LINK_SPEED_16GHZ:
4450 fc_host_speed(shost) = FC_PORTSPEED_16GBIT;
4451 break;
4452 default:
4453 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
dea31012005-04-17 16:05:31 -05004454 break;
4455 }
James Smart09372822008-01-11 01:52:54 -05004456 } else
4457 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
dea31012005-04-17 16:05:31 -05004458
4459 spin_unlock_irq(shost->host_lock);
4460}
4461
James Smarte59058c2008-08-24 21:49:00 -04004462/**
James Smart3621a712009-04-06 18:47:14 -04004463 * lpfc_get_host_fabric_name - Set the value of the scsi host fabric name
James Smarte59058c2008-08-24 21:49:00 -04004464 * @shost: kernel scsi host pointer.
4465 **/
dea31012005-04-17 16:05:31 -05004466static void
4467lpfc_get_host_fabric_name (struct Scsi_Host *shost)
4468{
James Smart2e0fef82007-06-17 19:56:36 -05004469 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4470 struct lpfc_hba *phba = vport->phba;
Andrew Vasquezf631b4b2005-08-31 15:23:12 -07004471 u64 node_name;
dea31012005-04-17 16:05:31 -05004472
4473 spin_lock_irq(shost->host_lock);
4474
James Smart2e0fef82007-06-17 19:56:36 -05004475 if ((vport->fc_flag & FC_FABRIC) ||
James Smart76a95d72010-11-20 23:11:48 -05004476 ((phba->fc_topology == LPFC_TOPOLOGY_LOOP) &&
James Smart2e0fef82007-06-17 19:56:36 -05004477 (vport->fc_flag & FC_PUBLIC_LOOP)))
Andrew Morton68ce1eb2005-09-21 09:46:54 -07004478 node_name = wwn_to_u64(phba->fc_fabparam.nodeName.u.wwn);
dea31012005-04-17 16:05:31 -05004479 else
4480 /* fabric is local port if there is no F/FL_Port */
James Smart09372822008-01-11 01:52:54 -05004481 node_name = 0;
dea31012005-04-17 16:05:31 -05004482
4483 spin_unlock_irq(shost->host_lock);
4484
Andrew Vasquezf631b4b2005-08-31 15:23:12 -07004485 fc_host_fabric_name(shost) = node_name;
dea31012005-04-17 16:05:31 -05004486}
4487
James Smarte59058c2008-08-24 21:49:00 -04004488/**
James Smart3621a712009-04-06 18:47:14 -04004489 * lpfc_get_stats - Return statistical information about the adapter
James Smarte59058c2008-08-24 21:49:00 -04004490 * @shost: kernel scsi host pointer.
4491 *
4492 * Notes:
4493 * NULL on error for link down, no mbox pool, sli2 active,
4494 * management not allowed, memory allocation error, or mbox error.
4495 *
4496 * Returns:
4497 * NULL for error
4498 * address of the adapter host statistics
4499 **/
dea31012005-04-17 16:05:31 -05004500static struct fc_host_statistics *
4501lpfc_get_stats(struct Scsi_Host *shost)
4502{
James Smart2e0fef82007-06-17 19:56:36 -05004503 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4504 struct lpfc_hba *phba = vport->phba;
4505 struct lpfc_sli *psli = &phba->sli;
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -04004506 struct fc_host_statistics *hs = &phba->link_stats;
James Smart64ba8812006-08-02 15:24:34 -04004507 struct lpfc_lnk_stat * lso = &psli->lnk_stat_offsets;
dea31012005-04-17 16:05:31 -05004508 LPFC_MBOXQ_t *pmboxq;
4509 MAILBOX_t *pmb;
James Smart64ba8812006-08-02 15:24:34 -04004510 unsigned long seconds;
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004511 int rc = 0;
dea31012005-04-17 16:05:31 -05004512
James Smart92d7f7b2007-06-17 19:56:38 -05004513 /*
4514 * prevent udev from issuing mailbox commands until the port is
4515 * configured.
4516 */
James Smart2e0fef82007-06-17 19:56:36 -05004517 if (phba->link_state < LPFC_LINK_DOWN ||
4518 !phba->mbox_mem_pool ||
James Smartf4b4c682009-05-22 14:53:12 -04004519 (phba->sli.sli_flag & LPFC_SLI_ACTIVE) == 0)
James Smart92d7f7b2007-06-17 19:56:38 -05004520 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004521
4522 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
James Smart46fa3112007-04-25 09:51:45 -04004523 return NULL;
4524
dea31012005-04-17 16:05:31 -05004525 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4526 if (!pmboxq)
4527 return NULL;
4528 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
4529
James Smart04c68492009-05-22 14:52:52 -04004530 pmb = &pmboxq->u.mb;
dea31012005-04-17 16:05:31 -05004531 pmb->mbxCommand = MBX_READ_STATUS;
4532 pmb->mbxOwner = OWN_HOST;
4533 pmboxq->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05004534 pmboxq->vport = vport;
dea31012005-04-17 16:05:31 -05004535
James Smart75baf692010-06-08 18:31:21 -04004536 if (vport->fc_flag & FC_OFFLINE_MODE)
dea31012005-04-17 16:05:31 -05004537 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004538 else
dea31012005-04-17 16:05:31 -05004539 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
4540
4541 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -05004542 if (rc != MBX_TIMEOUT)
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004543 mempool_free(pmboxq, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05004544 return NULL;
4545 }
4546
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -04004547 memset(hs, 0, sizeof (struct fc_host_statistics));
4548
dea31012005-04-17 16:05:31 -05004549 hs->tx_frames = pmb->un.varRdStatus.xmitFrameCnt;
4550 hs->tx_words = (pmb->un.varRdStatus.xmitByteCnt * 256);
4551 hs->rx_frames = pmb->un.varRdStatus.rcvFrameCnt;
4552 hs->rx_words = (pmb->un.varRdStatus.rcvByteCnt * 256);
4553
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004554 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
dea31012005-04-17 16:05:31 -05004555 pmb->mbxCommand = MBX_READ_LNK_STAT;
4556 pmb->mbxOwner = OWN_HOST;
4557 pmboxq->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05004558 pmboxq->vport = vport;
dea31012005-04-17 16:05:31 -05004559
James Smart75baf692010-06-08 18:31:21 -04004560 if (vport->fc_flag & FC_OFFLINE_MODE)
dea31012005-04-17 16:05:31 -05004561 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004562 else
dea31012005-04-17 16:05:31 -05004563 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
4564
4565 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -05004566 if (rc != MBX_TIMEOUT)
James Smart92d7f7b2007-06-17 19:56:38 -05004567 mempool_free(pmboxq, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05004568 return NULL;
4569 }
4570
4571 hs->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
4572 hs->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
4573 hs->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
4574 hs->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
4575 hs->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
4576 hs->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
4577 hs->error_frames = pmb->un.varRdLnk.crcCnt;
4578
James Smart64ba8812006-08-02 15:24:34 -04004579 hs->link_failure_count -= lso->link_failure_count;
4580 hs->loss_of_sync_count -= lso->loss_of_sync_count;
4581 hs->loss_of_signal_count -= lso->loss_of_signal_count;
4582 hs->prim_seq_protocol_err_count -= lso->prim_seq_protocol_err_count;
4583 hs->invalid_tx_word_count -= lso->invalid_tx_word_count;
4584 hs->invalid_crc_count -= lso->invalid_crc_count;
4585 hs->error_frames -= lso->error_frames;
4586
James Smart76a95d72010-11-20 23:11:48 -05004587 if (phba->hba_flag & HBA_FCOE_MODE) {
James Smart4d9ab992009-10-02 15:16:39 -04004588 hs->lip_count = -1;
4589 hs->nos_count = (phba->link_events >> 1);
4590 hs->nos_count -= lso->link_events;
James Smart76a95d72010-11-20 23:11:48 -05004591 } else if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
dea31012005-04-17 16:05:31 -05004592 hs->lip_count = (phba->fc_eventTag >> 1);
James Smart64ba8812006-08-02 15:24:34 -04004593 hs->lip_count -= lso->link_events;
dea31012005-04-17 16:05:31 -05004594 hs->nos_count = -1;
4595 } else {
4596 hs->lip_count = -1;
4597 hs->nos_count = (phba->fc_eventTag >> 1);
James Smart64ba8812006-08-02 15:24:34 -04004598 hs->nos_count -= lso->link_events;
dea31012005-04-17 16:05:31 -05004599 }
4600
4601 hs->dumped_frames = -1;
4602
James Smart64ba8812006-08-02 15:24:34 -04004603 seconds = get_seconds();
4604 if (seconds < psli->stats_start)
4605 hs->seconds_since_last_reset = seconds +
4606 ((unsigned long)-1 - psli->stats_start);
4607 else
4608 hs->seconds_since_last_reset = seconds - psli->stats_start;
dea31012005-04-17 16:05:31 -05004609
James Smart1dcb58e2007-04-25 09:51:30 -04004610 mempool_free(pmboxq, phba->mbox_mem_pool);
4611
dea31012005-04-17 16:05:31 -05004612 return hs;
4613}
4614
James Smarte59058c2008-08-24 21:49:00 -04004615/**
James Smart3621a712009-04-06 18:47:14 -04004616 * lpfc_reset_stats - Copy the adapter link stats information
James Smarte59058c2008-08-24 21:49:00 -04004617 * @shost: kernel scsi host pointer.
4618 **/
James Smart64ba8812006-08-02 15:24:34 -04004619static void
4620lpfc_reset_stats(struct Scsi_Host *shost)
4621{
James Smart2e0fef82007-06-17 19:56:36 -05004622 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4623 struct lpfc_hba *phba = vport->phba;
4624 struct lpfc_sli *psli = &phba->sli;
4625 struct lpfc_lnk_stat *lso = &psli->lnk_stat_offsets;
James Smart64ba8812006-08-02 15:24:34 -04004626 LPFC_MBOXQ_t *pmboxq;
4627 MAILBOX_t *pmb;
4628 int rc = 0;
4629
James Smart2e0fef82007-06-17 19:56:36 -05004630 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
James Smart46fa3112007-04-25 09:51:45 -04004631 return;
4632
James Smart64ba8812006-08-02 15:24:34 -04004633 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4634 if (!pmboxq)
4635 return;
4636 memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
4637
James Smart04c68492009-05-22 14:52:52 -04004638 pmb = &pmboxq->u.mb;
James Smart64ba8812006-08-02 15:24:34 -04004639 pmb->mbxCommand = MBX_READ_STATUS;
4640 pmb->mbxOwner = OWN_HOST;
4641 pmb->un.varWords[0] = 0x1; /* reset request */
4642 pmboxq->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05004643 pmboxq->vport = vport;
James Smart64ba8812006-08-02 15:24:34 -04004644
James Smart2e0fef82007-06-17 19:56:36 -05004645 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
James Smartf4b4c682009-05-22 14:53:12 -04004646 (!(psli->sli_flag & LPFC_SLI_ACTIVE)))
James Smart64ba8812006-08-02 15:24:34 -04004647 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
4648 else
4649 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
4650
4651 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -05004652 if (rc != MBX_TIMEOUT)
James Smart64ba8812006-08-02 15:24:34 -04004653 mempool_free(pmboxq, phba->mbox_mem_pool);
4654 return;
4655 }
4656
4657 memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
4658 pmb->mbxCommand = MBX_READ_LNK_STAT;
4659 pmb->mbxOwner = OWN_HOST;
4660 pmboxq->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05004661 pmboxq->vport = vport;
James Smart64ba8812006-08-02 15:24:34 -04004662
James Smart2e0fef82007-06-17 19:56:36 -05004663 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
James Smartf4b4c682009-05-22 14:53:12 -04004664 (!(psli->sli_flag & LPFC_SLI_ACTIVE)))
James Smart64ba8812006-08-02 15:24:34 -04004665 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
4666 else
4667 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
4668
4669 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -05004670 if (rc != MBX_TIMEOUT)
James Smart64ba8812006-08-02 15:24:34 -04004671 mempool_free( pmboxq, phba->mbox_mem_pool);
4672 return;
4673 }
4674
4675 lso->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
4676 lso->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
4677 lso->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
4678 lso->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
4679 lso->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
4680 lso->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
4681 lso->error_frames = pmb->un.varRdLnk.crcCnt;
James Smart76a95d72010-11-20 23:11:48 -05004682 if (phba->hba_flag & HBA_FCOE_MODE)
James Smart4d9ab992009-10-02 15:16:39 -04004683 lso->link_events = (phba->link_events >> 1);
4684 else
4685 lso->link_events = (phba->fc_eventTag >> 1);
James Smart64ba8812006-08-02 15:24:34 -04004686
4687 psli->stats_start = get_seconds();
4688
James Smart1dcb58e2007-04-25 09:51:30 -04004689 mempool_free(pmboxq, phba->mbox_mem_pool);
4690
James Smart64ba8812006-08-02 15:24:34 -04004691 return;
4692}
dea31012005-04-17 16:05:31 -05004693
4694/*
4695 * The LPFC driver treats linkdown handling as target loss events so there
4696 * are no sysfs handlers for link_down_tmo.
4697 */
James Smart685f0bf2007-04-25 09:53:08 -04004698
James Smarte59058c2008-08-24 21:49:00 -04004699/**
James Smart3621a712009-04-06 18:47:14 -04004700 * lpfc_get_node_by_target - Return the nodelist for a target
James Smarte59058c2008-08-24 21:49:00 -04004701 * @starget: kernel scsi target pointer.
4702 *
4703 * Returns:
4704 * address of the node list if found
4705 * NULL target not found
4706 **/
James Smart685f0bf2007-04-25 09:53:08 -04004707static struct lpfc_nodelist *
4708lpfc_get_node_by_target(struct scsi_target *starget)
dea31012005-04-17 16:05:31 -05004709{
James Smart2e0fef82007-06-17 19:56:36 -05004710 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
4711 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
James Smart685f0bf2007-04-25 09:53:08 -04004712 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05004713
4714 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004715 /* Search for this, mapped, target ID */
James Smart2e0fef82007-06-17 19:56:36 -05004716 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004717 if (NLP_CHK_NODE_ACT(ndlp) &&
4718 ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
James Smart685f0bf2007-04-25 09:53:08 -04004719 starget->id == ndlp->nlp_sid) {
4720 spin_unlock_irq(shost->host_lock);
4721 return ndlp;
dea31012005-04-17 16:05:31 -05004722 }
4723 }
4724 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004725 return NULL;
4726}
dea31012005-04-17 16:05:31 -05004727
James Smarte59058c2008-08-24 21:49:00 -04004728/**
James Smart3621a712009-04-06 18:47:14 -04004729 * lpfc_get_starget_port_id - Set the target port id to the ndlp DID or -1
James Smarte59058c2008-08-24 21:49:00 -04004730 * @starget: kernel scsi target pointer.
4731 **/
James Smart685f0bf2007-04-25 09:53:08 -04004732static void
4733lpfc_get_starget_port_id(struct scsi_target *starget)
4734{
4735 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
4736
4737 fc_starget_port_id(starget) = ndlp ? ndlp->nlp_DID : -1;
dea31012005-04-17 16:05:31 -05004738}
4739
James Smarte59058c2008-08-24 21:49:00 -04004740/**
James Smart3621a712009-04-06 18:47:14 -04004741 * lpfc_get_starget_node_name - Set the target node name
James Smarte59058c2008-08-24 21:49:00 -04004742 * @starget: kernel scsi target pointer.
4743 *
4744 * Description: Set the target node name to the ndlp node name wwn or zero.
4745 **/
dea31012005-04-17 16:05:31 -05004746static void
4747lpfc_get_starget_node_name(struct scsi_target *starget)
4748{
James Smart685f0bf2007-04-25 09:53:08 -04004749 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
dea31012005-04-17 16:05:31 -05004750
James Smart685f0bf2007-04-25 09:53:08 -04004751 fc_starget_node_name(starget) =
4752 ndlp ? wwn_to_u64(ndlp->nlp_nodename.u.wwn) : 0;
dea31012005-04-17 16:05:31 -05004753}
4754
James Smarte59058c2008-08-24 21:49:00 -04004755/**
James Smart3621a712009-04-06 18:47:14 -04004756 * lpfc_get_starget_port_name - Set the target port name
James Smarte59058c2008-08-24 21:49:00 -04004757 * @starget: kernel scsi target pointer.
4758 *
4759 * Description: set the target port name to the ndlp port name wwn or zero.
4760 **/
dea31012005-04-17 16:05:31 -05004761static void
4762lpfc_get_starget_port_name(struct scsi_target *starget)
4763{
James Smart685f0bf2007-04-25 09:53:08 -04004764 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
dea31012005-04-17 16:05:31 -05004765
James Smart685f0bf2007-04-25 09:53:08 -04004766 fc_starget_port_name(starget) =
4767 ndlp ? wwn_to_u64(ndlp->nlp_portname.u.wwn) : 0;
dea31012005-04-17 16:05:31 -05004768}
4769
James Smarte59058c2008-08-24 21:49:00 -04004770/**
James Smart3621a712009-04-06 18:47:14 -04004771 * lpfc_set_rport_loss_tmo - Set the rport dev loss tmo
James Smarte59058c2008-08-24 21:49:00 -04004772 * @rport: fc rport address.
4773 * @timeout: new value for dev loss tmo.
4774 *
4775 * Description:
4776 * If timeout is non zero set the dev_loss_tmo to timeout, else set
4777 * dev_loss_tmo to one.
4778 **/
dea31012005-04-17 16:05:31 -05004779static void
dea31012005-04-17 16:05:31 -05004780lpfc_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
4781{
dea31012005-04-17 16:05:31 -05004782 if (timeout)
James Smartc01f3202006-08-18 17:47:08 -04004783 rport->dev_loss_tmo = timeout;
dea31012005-04-17 16:05:31 -05004784 else
James Smartc01f3202006-08-18 17:47:08 -04004785 rport->dev_loss_tmo = 1;
dea31012005-04-17 16:05:31 -05004786}
4787
James Smarte59058c2008-08-24 21:49:00 -04004788/**
James Smart3621a712009-04-06 18:47:14 -04004789 * lpfc_rport_show_function - Return rport target information
James Smarte59058c2008-08-24 21:49:00 -04004790 *
4791 * Description:
4792 * Macro that uses field to generate a function with the name lpfc_show_rport_
4793 *
4794 * lpfc_show_rport_##field: returns the bytes formatted in buf
4795 * @cdev: class converted to an fc_rport.
4796 * @buf: on return contains the target_field or zero.
4797 *
4798 * Returns: size of formatted string.
4799 **/
dea31012005-04-17 16:05:31 -05004800#define lpfc_rport_show_function(field, format_string, sz, cast) \
4801static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01004802lpfc_show_rport_##field (struct device *dev, \
4803 struct device_attribute *attr, \
4804 char *buf) \
dea31012005-04-17 16:05:31 -05004805{ \
Tony Jonesee959b02008-02-22 00:13:36 +01004806 struct fc_rport *rport = transport_class_to_rport(dev); \
dea31012005-04-17 16:05:31 -05004807 struct lpfc_rport_data *rdata = rport->hostdata; \
4808 return snprintf(buf, sz, format_string, \
4809 (rdata->target) ? cast rdata->target->field : 0); \
4810}
4811
4812#define lpfc_rport_rd_attr(field, format_string, sz) \
4813 lpfc_rport_show_function(field, format_string, sz, ) \
4814static FC_RPORT_ATTR(field, S_IRUGO, lpfc_show_rport_##field, NULL)
4815
James Smarteada2722008-12-04 22:39:13 -05004816/**
James Smart3621a712009-04-06 18:47:14 -04004817 * lpfc_set_vport_symbolic_name - Set the vport's symbolic name
James Smarteada2722008-12-04 22:39:13 -05004818 * @fc_vport: The fc_vport who's symbolic name has been changed.
4819 *
4820 * Description:
4821 * This function is called by the transport after the @fc_vport's symbolic name
4822 * has been changed. This function re-registers the symbolic name with the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004823 * switch to propagate the change into the fabric if the vport is active.
James Smarteada2722008-12-04 22:39:13 -05004824 **/
4825static void
4826lpfc_set_vport_symbolic_name(struct fc_vport *fc_vport)
4827{
4828 struct lpfc_vport *vport = *(struct lpfc_vport **)fc_vport->dd_data;
4829
4830 if (vport->port_state == LPFC_VPORT_READY)
4831 lpfc_ns_cmd(vport, SLI_CTNS_RSPN_ID, 0, 0);
4832}
dea31012005-04-17 16:05:31 -05004833
James Smartf4b4c682009-05-22 14:53:12 -04004834/**
4835 * lpfc_hba_log_verbose_init - Set hba's log verbose level
4836 * @phba: Pointer to lpfc_hba struct.
4837 *
4838 * This function is called by the lpfc_get_cfgparam() routine to set the
4839 * module lpfc_log_verbose into the @phba cfg_log_verbose for use with
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02004840 * log message according to the module's lpfc_log_verbose parameter setting
James Smartf4b4c682009-05-22 14:53:12 -04004841 * before hba port or vport created.
4842 **/
4843static void
4844lpfc_hba_log_verbose_init(struct lpfc_hba *phba, uint32_t verbose)
4845{
4846 phba->cfg_log_verbose = verbose;
4847}
4848
dea31012005-04-17 16:05:31 -05004849struct fc_function_template lpfc_transport_functions = {
4850 /* fixed attributes the driver supports */
4851 .show_host_node_name = 1,
4852 .show_host_port_name = 1,
4853 .show_host_supported_classes = 1,
4854 .show_host_supported_fc4s = 1,
dea31012005-04-17 16:05:31 -05004855 .show_host_supported_speeds = 1,
4856 .show_host_maxframe_size = 1,
James Smarteada2722008-12-04 22:39:13 -05004857 .show_host_symbolic_name = 1,
dea31012005-04-17 16:05:31 -05004858
4859 /* dynamic attributes the driver supports */
4860 .get_host_port_id = lpfc_get_host_port_id,
4861 .show_host_port_id = 1,
4862
4863 .get_host_port_type = lpfc_get_host_port_type,
4864 .show_host_port_type = 1,
4865
4866 .get_host_port_state = lpfc_get_host_port_state,
4867 .show_host_port_state = 1,
4868
4869 /* active_fc4s is shown but doesn't change (thus no get function) */
4870 .show_host_active_fc4s = 1,
4871
4872 .get_host_speed = lpfc_get_host_speed,
4873 .show_host_speed = 1,
4874
4875 .get_host_fabric_name = lpfc_get_host_fabric_name,
4876 .show_host_fabric_name = 1,
4877
4878 /*
4879 * The LPFC driver treats linkdown handling as target loss events
4880 * so there are no sysfs handlers for link_down_tmo.
4881 */
4882
4883 .get_fc_host_stats = lpfc_get_stats,
James Smart64ba8812006-08-02 15:24:34 -04004884 .reset_fc_host_stats = lpfc_reset_stats,
dea31012005-04-17 16:05:31 -05004885
4886 .dd_fcrport_size = sizeof(struct lpfc_rport_data),
4887 .show_rport_maxframe_size = 1,
4888 .show_rport_supported_classes = 1,
4889
dea31012005-04-17 16:05:31 -05004890 .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
4891 .show_rport_dev_loss_tmo = 1,
4892
4893 .get_starget_port_id = lpfc_get_starget_port_id,
4894 .show_starget_port_id = 1,
4895
4896 .get_starget_node_name = lpfc_get_starget_node_name,
4897 .show_starget_node_name = 1,
4898
4899 .get_starget_port_name = lpfc_get_starget_port_name,
4900 .show_starget_port_name = 1,
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07004901
4902 .issue_fc_host_lip = lpfc_issue_lip,
James Smartc01f3202006-08-18 17:47:08 -04004903 .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
4904 .terminate_rport_io = lpfc_terminate_rport_io,
James Smart92d7f7b2007-06-17 19:56:38 -05004905
James Smart92d7f7b2007-06-17 19:56:38 -05004906 .dd_fcvport_size = sizeof(struct lpfc_vport *),
James Smarteada2722008-12-04 22:39:13 -05004907
4908 .vport_disable = lpfc_vport_disable,
4909
4910 .set_vport_symbolic_name = lpfc_set_vport_symbolic_name,
James Smartf1c3b0f2009-07-19 10:01:32 -04004911
4912 .bsg_request = lpfc_bsg_request,
4913 .bsg_timeout = lpfc_bsg_timeout,
James Smart92d7f7b2007-06-17 19:56:38 -05004914};
4915
James Smart98c9ea52007-10-27 13:37:33 -04004916struct fc_function_template lpfc_vport_transport_functions = {
4917 /* fixed attributes the driver supports */
4918 .show_host_node_name = 1,
4919 .show_host_port_name = 1,
4920 .show_host_supported_classes = 1,
4921 .show_host_supported_fc4s = 1,
4922 .show_host_supported_speeds = 1,
4923 .show_host_maxframe_size = 1,
James Smarteada2722008-12-04 22:39:13 -05004924 .show_host_symbolic_name = 1,
James Smart98c9ea52007-10-27 13:37:33 -04004925
4926 /* dynamic attributes the driver supports */
4927 .get_host_port_id = lpfc_get_host_port_id,
4928 .show_host_port_id = 1,
4929
4930 .get_host_port_type = lpfc_get_host_port_type,
4931 .show_host_port_type = 1,
4932
4933 .get_host_port_state = lpfc_get_host_port_state,
4934 .show_host_port_state = 1,
4935
4936 /* active_fc4s is shown but doesn't change (thus no get function) */
4937 .show_host_active_fc4s = 1,
4938
4939 .get_host_speed = lpfc_get_host_speed,
4940 .show_host_speed = 1,
4941
4942 .get_host_fabric_name = lpfc_get_host_fabric_name,
4943 .show_host_fabric_name = 1,
4944
4945 /*
4946 * The LPFC driver treats linkdown handling as target loss events
4947 * so there are no sysfs handlers for link_down_tmo.
4948 */
4949
4950 .get_fc_host_stats = lpfc_get_stats,
4951 .reset_fc_host_stats = lpfc_reset_stats,
4952
4953 .dd_fcrport_size = sizeof(struct lpfc_rport_data),
4954 .show_rport_maxframe_size = 1,
4955 .show_rport_supported_classes = 1,
4956
4957 .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
4958 .show_rport_dev_loss_tmo = 1,
4959
4960 .get_starget_port_id = lpfc_get_starget_port_id,
4961 .show_starget_port_id = 1,
4962
4963 .get_starget_node_name = lpfc_get_starget_node_name,
4964 .show_starget_node_name = 1,
4965
4966 .get_starget_port_name = lpfc_get_starget_port_name,
4967 .show_starget_port_name = 1,
4968
4969 .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
4970 .terminate_rport_io = lpfc_terminate_rport_io,
4971
4972 .vport_disable = lpfc_vport_disable,
James Smarteada2722008-12-04 22:39:13 -05004973
4974 .set_vport_symbolic_name = lpfc_set_vport_symbolic_name,
James Smart98c9ea52007-10-27 13:37:33 -04004975};
4976
James Smarte59058c2008-08-24 21:49:00 -04004977/**
James Smart3621a712009-04-06 18:47:14 -04004978 * lpfc_get_cfgparam - Used during probe_one to init the adapter structure
James Smarte59058c2008-08-24 21:49:00 -04004979 * @phba: lpfc_hba pointer.
4980 **/
dea31012005-04-17 16:05:31 -05004981void
4982lpfc_get_cfgparam(struct lpfc_hba *phba)
4983{
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04004984 lpfc_cr_delay_init(phba, lpfc_cr_delay);
4985 lpfc_cr_count_init(phba, lpfc_cr_count);
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05004986 lpfc_multi_ring_support_init(phba, lpfc_multi_ring_support);
James Smarta4bc3372006-12-02 13:34:16 -05004987 lpfc_multi_ring_rctl_init(phba, lpfc_multi_ring_rctl);
4988 lpfc_multi_ring_type_init(phba, lpfc_multi_ring_type);
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04004989 lpfc_ack0_init(phba, lpfc_ack0);
4990 lpfc_topology_init(phba, lpfc_topology);
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04004991 lpfc_link_speed_init(phba, lpfc_link_speed);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004992 lpfc_poll_tmo_init(phba, lpfc_poll_tmo);
James Smart78b2d852007-08-02 11:10:21 -04004993 lpfc_enable_npiv_init(phba, lpfc_enable_npiv);
James Smart19ca7602010-11-20 23:11:55 -05004994 lpfc_enable_rrq_init(phba, lpfc_enable_rrq);
James Smart4ff43242006-12-02 13:34:56 -05004995 lpfc_use_msi_init(phba, lpfc_use_msi);
James Smartda0436e2009-05-22 14:51:39 -04004996 lpfc_fcp_imax_init(phba, lpfc_fcp_imax);
4997 lpfc_fcp_wq_count_init(phba, lpfc_fcp_wq_count);
4998 lpfc_fcp_eq_count_init(phba, lpfc_fcp_eq_count);
James Smart13815c82008-01-11 01:52:48 -05004999 lpfc_enable_hba_reset_init(phba, lpfc_enable_hba_reset);
5000 lpfc_enable_hba_heartbeat_init(phba, lpfc_enable_hba_heartbeat);
James Smart81301a92008-12-04 22:39:46 -05005001 lpfc_enable_bg_init(phba, lpfc_enable_bg);
James Smart45ed1192009-10-02 15:17:02 -04005002 if (phba->sli_rev == LPFC_SLI_REV4)
5003 phba->cfg_poll = 0;
5004 else
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05005005 phba->cfg_poll = lpfc_poll;
James Smarta12e07b2006-12-02 13:35:30 -05005006 phba->cfg_soft_wwnn = 0L;
James Smartc3f28af2006-08-18 17:47:18 -04005007 phba->cfg_soft_wwpn = 0L;
James Smart83108bd2008-01-11 01:53:09 -05005008 lpfc_sg_seg_cnt_init(phba, lpfc_sg_seg_cnt);
James Smart81301a92008-12-04 22:39:46 -05005009 lpfc_prot_sg_seg_cnt_init(phba, lpfc_prot_sg_seg_cnt);
James Smart7054a602007-04-25 09:52:34 -04005010 lpfc_hba_queue_depth_init(phba, lpfc_hba_queue_depth);
James Smart6fb120a2009-05-22 14:52:59 -04005011 lpfc_hba_log_verbose_init(phba, lpfc_log_verbose);
James Smart0d878412009-10-02 15:16:56 -04005012 lpfc_aer_support_init(phba, lpfc_aer_support);
James Smart912e3ac2011-05-24 11:42:11 -04005013 lpfc_sriov_nr_virtfn_init(phba, lpfc_sriov_nr_virtfn);
James Smart84d1b002010-02-12 14:42:33 -05005014 lpfc_suppress_link_up_init(phba, lpfc_suppress_link_up);
James Smart2a9bf3d2010-06-07 15:24:45 -04005015 lpfc_iocb_cnt_init(phba, lpfc_iocb_cnt);
James Smartab56dc22011-02-16 12:39:57 -05005016 phba->cfg_enable_dss = 1;
James Smart3de2a652007-08-02 11:09:59 -04005017 return;
5018}
Jamie Wellnitzb28485a2006-02-28 19:25:21 -05005019
James Smarte59058c2008-08-24 21:49:00 -04005020/**
James Smart3621a712009-04-06 18:47:14 -04005021 * lpfc_get_vport_cfgparam - Used during port create, init the vport structure
James Smarte59058c2008-08-24 21:49:00 -04005022 * @vport: lpfc_vport pointer.
5023 **/
James Smart3de2a652007-08-02 11:09:59 -04005024void
5025lpfc_get_vport_cfgparam(struct lpfc_vport *vport)
5026{
James Smarte8b62012007-08-02 11:10:09 -04005027 lpfc_log_verbose_init(vport, lpfc_log_verbose);
James Smart3de2a652007-08-02 11:09:59 -04005028 lpfc_lun_queue_depth_init(vport, lpfc_lun_queue_depth);
James Smart7dc517d2010-07-14 15:32:10 -04005029 lpfc_tgt_queue_depth_init(vport, lpfc_tgt_queue_depth);
James Smart3de2a652007-08-02 11:09:59 -04005030 lpfc_devloss_tmo_init(vport, lpfc_devloss_tmo);
5031 lpfc_nodev_tmo_init(vport, lpfc_nodev_tmo);
5032 lpfc_peer_port_login_init(vport, lpfc_peer_port_login);
5033 lpfc_restrict_login_init(vport, lpfc_restrict_login);
5034 lpfc_fcp_class_init(vport, lpfc_fcp_class);
5035 lpfc_use_adisc_init(vport, lpfc_use_adisc);
James Smart977b5a02008-09-07 11:52:04 -04005036 lpfc_max_scsicmpl_time_init(vport, lpfc_max_scsicmpl_time);
James Smart3de2a652007-08-02 11:09:59 -04005037 lpfc_fdmi_on_init(vport, lpfc_fdmi_on);
5038 lpfc_discovery_threads_init(vport, lpfc_discovery_threads);
5039 lpfc_max_luns_init(vport, lpfc_max_luns);
5040 lpfc_scan_down_init(vport, lpfc_scan_down);
James Smart7ee5d432007-10-27 13:37:17 -04005041 lpfc_enable_da_id_init(vport, lpfc_enable_da_id);
dea31012005-04-17 16:05:31 -05005042 return;
5043}