blob: ad05b266e9501c4ab5f77084a3ff46f3e604cc53 [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 Smartd8e93df2009-05-22 14:53:05 -04004 * Copyright (C) 2004-2009 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 Smart83108bd2008-01-11 01:53:09 -050055#define LPFC_MAX_LINK_SPEED 8
56#define LPFC_LINK_SPEED_BITMAP 0x00000117
57#define LPFC_LINK_SPEED_STRING "0, 1, 2, 4, 8"
58
James Smarte59058c2008-08-24 21:49:00 -040059/**
James Smart3621a712009-04-06 18:47:14 -040060 * lpfc_jedec_to_ascii - Hex to ascii convertor according to JEDEC rules
James Smarte59058c2008-08-24 21:49:00 -040061 * @incr: integer to convert.
62 * @hdw: ascii string holding converted integer plus a string terminator.
63 *
64 * Description:
65 * JEDEC Joint Electron Device Engineering Council.
66 * Convert a 32 bit integer composed of 8 nibbles into an 8 byte ascii
67 * character string. The string is then terminated with a NULL in byte 9.
68 * Hex 0-9 becomes ascii '0' to '9'.
69 * Hex a-f becomes ascii '=' to 'B' capital B.
70 *
71 * Notes:
72 * Coded for 32 bit integers only.
73 **/
dea31012005-04-17 16:05:31 -050074static void
75lpfc_jedec_to_ascii(int incr, char hdw[])
76{
77 int i, j;
78 for (i = 0; i < 8; i++) {
79 j = (incr & 0xf);
80 if (j <= 9)
81 hdw[7 - i] = 0x30 + j;
82 else
83 hdw[7 - i] = 0x61 + j - 10;
84 incr = (incr >> 4);
85 }
86 hdw[8] = 0;
87 return;
88}
89
James Smarte59058c2008-08-24 21:49:00 -040090/**
James Smart3621a712009-04-06 18:47:14 -040091 * lpfc_drvr_version_show - Return the Emulex driver string with version number
James Smarte59058c2008-08-24 21:49:00 -040092 * @dev: class unused variable.
93 * @attr: device attribute, not used.
94 * @buf: on return contains the module description text.
95 *
96 * Returns: size of formatted string.
97 **/
dea31012005-04-17 16:05:31 -050098static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +010099lpfc_drvr_version_show(struct device *dev, struct device_attribute *attr,
100 char *buf)
dea31012005-04-17 16:05:31 -0500101{
102 return snprintf(buf, PAGE_SIZE, LPFC_MODULE_DESC "\n");
103}
104
James Smart45ed1192009-10-02 15:17:02 -0400105/**
106 * lpfc_enable_fip_show - Return the fip mode of the HBA
107 * @dev: class unused variable.
108 * @attr: device attribute, not used.
109 * @buf: on return contains the module description text.
110 *
111 * Returns: size of formatted string.
112 **/
113static ssize_t
114lpfc_enable_fip_show(struct device *dev, struct device_attribute *attr,
115 char *buf)
116{
117 struct Scsi_Host *shost = class_to_shost(dev);
118 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
119 struct lpfc_hba *phba = vport->phba;
120
121 if (phba->hba_flag & HBA_FIP_SUPPORT)
122 return snprintf(buf, PAGE_SIZE, "1\n");
123 else
124 return snprintf(buf, PAGE_SIZE, "0\n");
125}
126
James Smart81301a92008-12-04 22:39:46 -0500127static ssize_t
128lpfc_bg_info_show(struct device *dev, struct device_attribute *attr,
129 char *buf)
130{
131 struct Scsi_Host *shost = class_to_shost(dev);
132 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
133 struct lpfc_hba *phba = vport->phba;
134
135 if (phba->cfg_enable_bg)
136 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED)
137 return snprintf(buf, PAGE_SIZE, "BlockGuard Enabled\n");
138 else
139 return snprintf(buf, PAGE_SIZE,
140 "BlockGuard Not Supported\n");
141 else
142 return snprintf(buf, PAGE_SIZE,
143 "BlockGuard Disabled\n");
144}
145
146static ssize_t
147lpfc_bg_guard_err_show(struct device *dev, struct device_attribute *attr,
148 char *buf)
149{
150 struct Scsi_Host *shost = class_to_shost(dev);
151 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
152 struct lpfc_hba *phba = vport->phba;
153
James Smart87b5c322008-12-16 10:34:09 -0500154 return snprintf(buf, PAGE_SIZE, "%llu\n",
155 (unsigned long long)phba->bg_guard_err_cnt);
James Smart81301a92008-12-04 22:39:46 -0500156}
157
158static ssize_t
159lpfc_bg_apptag_err_show(struct device *dev, struct device_attribute *attr,
160 char *buf)
161{
162 struct Scsi_Host *shost = class_to_shost(dev);
163 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
164 struct lpfc_hba *phba = vport->phba;
165
James Smart87b5c322008-12-16 10:34:09 -0500166 return snprintf(buf, PAGE_SIZE, "%llu\n",
167 (unsigned long long)phba->bg_apptag_err_cnt);
James Smart81301a92008-12-04 22:39:46 -0500168}
169
170static ssize_t
171lpfc_bg_reftag_err_show(struct device *dev, struct device_attribute *attr,
172 char *buf)
173{
174 struct Scsi_Host *shost = class_to_shost(dev);
175 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
176 struct lpfc_hba *phba = vport->phba;
177
James Smart87b5c322008-12-16 10:34:09 -0500178 return snprintf(buf, PAGE_SIZE, "%llu\n",
179 (unsigned long long)phba->bg_reftag_err_cnt);
James Smart81301a92008-12-04 22:39:46 -0500180}
181
James Smarte59058c2008-08-24 21:49:00 -0400182/**
James Smart3621a712009-04-06 18:47:14 -0400183 * lpfc_info_show - Return some pci info about the host in ascii
James Smarte59058c2008-08-24 21:49:00 -0400184 * @dev: class converted to a Scsi_host structure.
185 * @attr: device attribute, not used.
186 * @buf: on return contains the formatted text from lpfc_info().
187 *
188 * Returns: size of formatted string.
189 **/
dea31012005-04-17 16:05:31 -0500190static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100191lpfc_info_show(struct device *dev, struct device_attribute *attr,
192 char *buf)
dea31012005-04-17 16:05:31 -0500193{
Tony Jonesee959b02008-02-22 00:13:36 +0100194 struct Scsi_Host *host = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500195
dea31012005-04-17 16:05:31 -0500196 return snprintf(buf, PAGE_SIZE, "%s\n",lpfc_info(host));
197}
198
James Smarte59058c2008-08-24 21:49:00 -0400199/**
James Smart3621a712009-04-06 18:47:14 -0400200 * lpfc_serialnum_show - Return the hba serial number in ascii
James Smarte59058c2008-08-24 21:49:00 -0400201 * @dev: class converted to a Scsi_host structure.
202 * @attr: device attribute, not used.
203 * @buf: on return contains the formatted text serial number.
204 *
205 * Returns: size of formatted string.
206 **/
dea31012005-04-17 16:05:31 -0500207static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100208lpfc_serialnum_show(struct device *dev, struct device_attribute *attr,
209 char *buf)
dea31012005-04-17 16:05:31 -0500210{
Tony Jonesee959b02008-02-22 00:13:36 +0100211 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500212 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
213 struct lpfc_hba *phba = vport->phba;
214
dea31012005-04-17 16:05:31 -0500215 return snprintf(buf, PAGE_SIZE, "%s\n",phba->SerialNumber);
216}
217
James Smarte59058c2008-08-24 21:49:00 -0400218/**
James Smart3621a712009-04-06 18:47:14 -0400219 * lpfc_temp_sensor_show - Return the temperature sensor level
James Smarte59058c2008-08-24 21:49:00 -0400220 * @dev: class converted to a Scsi_host structure.
221 * @attr: device attribute, not used.
222 * @buf: on return contains the formatted support level.
223 *
224 * Description:
225 * Returns a number indicating the temperature sensor level currently
226 * supported, zero or one in ascii.
227 *
228 * Returns: size of formatted string.
229 **/
dea31012005-04-17 16:05:31 -0500230static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100231lpfc_temp_sensor_show(struct device *dev, struct device_attribute *attr,
232 char *buf)
James Smart57127f12007-10-27 13:37:05 -0400233{
Tony Jonesee959b02008-02-22 00:13:36 +0100234 struct Scsi_Host *shost = class_to_shost(dev);
James Smart57127f12007-10-27 13:37:05 -0400235 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
236 struct lpfc_hba *phba = vport->phba;
237 return snprintf(buf, PAGE_SIZE, "%d\n",phba->temp_sensor_support);
238}
239
James Smarte59058c2008-08-24 21:49:00 -0400240/**
James Smart3621a712009-04-06 18:47:14 -0400241 * lpfc_modeldesc_show - Return the model description of the hba
James Smarte59058c2008-08-24 21:49:00 -0400242 * @dev: class converted to a Scsi_host structure.
243 * @attr: device attribute, not used.
244 * @buf: on return contains the scsi vpd model description.
245 *
246 * Returns: size of formatted string.
247 **/
James Smart57127f12007-10-27 13:37:05 -0400248static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100249lpfc_modeldesc_show(struct device *dev, struct device_attribute *attr,
250 char *buf)
dea31012005-04-17 16:05:31 -0500251{
Tony Jonesee959b02008-02-22 00:13:36 +0100252 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500253 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
254 struct lpfc_hba *phba = vport->phba;
255
dea31012005-04-17 16:05:31 -0500256 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ModelDesc);
257}
258
James Smarte59058c2008-08-24 21:49:00 -0400259/**
James Smart3621a712009-04-06 18:47:14 -0400260 * lpfc_modelname_show - Return the model name of the hba
James Smarte59058c2008-08-24 21:49:00 -0400261 * @dev: class converted to a Scsi_host structure.
262 * @attr: device attribute, not used.
263 * @buf: on return contains the scsi vpd model name.
264 *
265 * Returns: size of formatted string.
266 **/
dea31012005-04-17 16:05:31 -0500267static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100268lpfc_modelname_show(struct device *dev, struct device_attribute *attr,
269 char *buf)
dea31012005-04-17 16:05:31 -0500270{
Tony Jonesee959b02008-02-22 00:13:36 +0100271 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500272 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
273 struct lpfc_hba *phba = vport->phba;
274
dea31012005-04-17 16:05:31 -0500275 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ModelName);
276}
277
James Smarte59058c2008-08-24 21:49:00 -0400278/**
James Smart3621a712009-04-06 18:47:14 -0400279 * lpfc_programtype_show - Return the program type of the hba
James Smarte59058c2008-08-24 21:49:00 -0400280 * @dev: class converted to a Scsi_host structure.
281 * @attr: device attribute, not used.
282 * @buf: on return contains the scsi vpd program type.
283 *
284 * Returns: size of formatted string.
285 **/
dea31012005-04-17 16:05:31 -0500286static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100287lpfc_programtype_show(struct device *dev, struct device_attribute *attr,
288 char *buf)
dea31012005-04-17 16:05:31 -0500289{
Tony Jonesee959b02008-02-22 00:13:36 +0100290 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500291 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
292 struct lpfc_hba *phba = vport->phba;
293
dea31012005-04-17 16:05:31 -0500294 return snprintf(buf, PAGE_SIZE, "%s\n",phba->ProgramType);
295}
296
James Smarte59058c2008-08-24 21:49:00 -0400297/**
James Smart3621a712009-04-06 18:47:14 -0400298 * lpfc_mlomgmt_show - Return the Menlo Maintenance sli flag
James Smart84774a42008-08-24 21:50:06 -0400299 * @dev: class converted to a Scsi_host structure.
300 * @attr: device attribute, not used.
301 * @buf: on return contains the Menlo Maintenance sli flag.
302 *
303 * Returns: size of formatted string.
304 **/
305static ssize_t
306lpfc_mlomgmt_show(struct device *dev, struct device_attribute *attr, char *buf)
307{
308 struct Scsi_Host *shost = class_to_shost(dev);
309 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
310 struct lpfc_hba *phba = vport->phba;
311
312 return snprintf(buf, PAGE_SIZE, "%d\n",
313 (phba->sli.sli_flag & LPFC_MENLO_MAINT));
314}
315
316/**
James Smart3621a712009-04-06 18:47:14 -0400317 * lpfc_vportnum_show - Return the port number in ascii of the hba
James Smarte59058c2008-08-24 21:49:00 -0400318 * @dev: class converted to a Scsi_host structure.
319 * @attr: device attribute, not used.
320 * @buf: on return contains scsi vpd program type.
321 *
322 * Returns: size of formatted string.
323 **/
dea31012005-04-17 16:05:31 -0500324static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100325lpfc_vportnum_show(struct device *dev, struct device_attribute *attr,
326 char *buf)
dea31012005-04-17 16:05:31 -0500327{
Tony Jonesee959b02008-02-22 00:13:36 +0100328 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500329 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
330 struct lpfc_hba *phba = vport->phba;
331
dea31012005-04-17 16:05:31 -0500332 return snprintf(buf, PAGE_SIZE, "%s\n",phba->Port);
333}
334
James Smarte59058c2008-08-24 21:49:00 -0400335/**
James Smart3621a712009-04-06 18:47:14 -0400336 * lpfc_fwrev_show - Return the firmware rev running in the hba
James Smarte59058c2008-08-24 21:49:00 -0400337 * @dev: class converted to a Scsi_host structure.
338 * @attr: device attribute, not used.
339 * @buf: on return contains the scsi vpd program type.
340 *
341 * Returns: size of formatted string.
342 **/
dea31012005-04-17 16:05:31 -0500343static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100344lpfc_fwrev_show(struct device *dev, struct device_attribute *attr,
345 char *buf)
dea31012005-04-17 16:05:31 -0500346{
Tony Jonesee959b02008-02-22 00:13:36 +0100347 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500348 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
349 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500350 char fwrev[32];
James Smart2e0fef82007-06-17 19:56:36 -0500351
dea31012005-04-17 16:05:31 -0500352 lpfc_decode_firmware_rev(phba, fwrev, 1);
James Smart92d7f7b2007-06-17 19:56:38 -0500353 return snprintf(buf, PAGE_SIZE, "%s, sli-%d\n", fwrev, phba->sli_rev);
dea31012005-04-17 16:05:31 -0500354}
355
James Smarte59058c2008-08-24 21:49:00 -0400356/**
James Smart3621a712009-04-06 18:47:14 -0400357 * lpfc_hdw_show - Return the jedec information about the hba
James Smarte59058c2008-08-24 21:49:00 -0400358 * @dev: class converted to a Scsi_host structure.
359 * @attr: device attribute, not used.
360 * @buf: on return contains the scsi vpd program type.
361 *
362 * Returns: size of formatted string.
363 **/
dea31012005-04-17 16:05:31 -0500364static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100365lpfc_hdw_show(struct device *dev, struct device_attribute *attr, char *buf)
dea31012005-04-17 16:05:31 -0500366{
367 char hdw[9];
Tony Jonesee959b02008-02-22 00:13:36 +0100368 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500369 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
370 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500371 lpfc_vpd_t *vp = &phba->vpd;
James Smart2e0fef82007-06-17 19:56:36 -0500372
dea31012005-04-17 16:05:31 -0500373 lpfc_jedec_to_ascii(vp->rev.biuRev, hdw);
374 return snprintf(buf, PAGE_SIZE, "%s\n", hdw);
375}
James Smarte59058c2008-08-24 21:49:00 -0400376
377/**
James Smart3621a712009-04-06 18:47:14 -0400378 * lpfc_option_rom_version_show - Return the adapter ROM FCode version
James Smarte59058c2008-08-24 21:49:00 -0400379 * @dev: class converted to a Scsi_host structure.
380 * @attr: device attribute, not used.
381 * @buf: on return contains the ROM and FCode ascii strings.
382 *
383 * Returns: size of formatted string.
384 **/
dea31012005-04-17 16:05:31 -0500385static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100386lpfc_option_rom_version_show(struct device *dev, struct device_attribute *attr,
387 char *buf)
dea31012005-04-17 16:05:31 -0500388{
Tony Jonesee959b02008-02-22 00:13:36 +0100389 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500390 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
391 struct lpfc_hba *phba = vport->phba;
392
dea31012005-04-17 16:05:31 -0500393 return snprintf(buf, PAGE_SIZE, "%s\n", phba->OptionROMVersion);
394}
James Smarte59058c2008-08-24 21:49:00 -0400395
396/**
James Smart3621a712009-04-06 18:47:14 -0400397 * lpfc_state_show - Return the link state of the port
James Smarte59058c2008-08-24 21:49:00 -0400398 * @dev: class converted to a Scsi_host structure.
399 * @attr: device attribute, not used.
400 * @buf: on return contains text describing the state of the link.
401 *
402 * Notes:
403 * The switch statement has no default so zero will be returned.
404 *
405 * Returns: size of formatted string.
406 **/
dea31012005-04-17 16:05:31 -0500407static ssize_t
Hannes Reineckebbd1ae42008-03-18 14:32:28 +0100408lpfc_link_state_show(struct device *dev, struct device_attribute *attr,
409 char *buf)
dea31012005-04-17 16:05:31 -0500410{
Tony Jonesee959b02008-02-22 00:13:36 +0100411 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500412 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
413 struct lpfc_hba *phba = vport->phba;
414 int len = 0;
415
416 switch (phba->link_state) {
417 case LPFC_LINK_UNKNOWN:
Jamie Wellnitz41415862006-02-28 19:25:27 -0500418 case LPFC_WARM_START:
dea31012005-04-17 16:05:31 -0500419 case LPFC_INIT_START:
420 case LPFC_INIT_MBX_CMDS:
421 case LPFC_LINK_DOWN:
James Smart2e0fef82007-06-17 19:56:36 -0500422 case LPFC_HBA_ERROR:
James Smarta0c87cb2009-07-19 10:01:10 -0400423 if (phba->hba_flag & LINK_DISABLED)
424 len += snprintf(buf + len, PAGE_SIZE-len,
425 "Link Down - User disabled\n");
426 else
427 len += snprintf(buf + len, PAGE_SIZE-len,
428 "Link Down\n");
dea31012005-04-17 16:05:31 -0500429 break;
430 case LPFC_LINK_UP:
dea31012005-04-17 16:05:31 -0500431 case LPFC_CLEAR_LA:
dea31012005-04-17 16:05:31 -0500432 case LPFC_HBA_READY:
James Smarta8adb832007-10-27 13:37:53 -0400433 len += snprintf(buf + len, PAGE_SIZE-len, "Link Up - ");
James Smart2e0fef82007-06-17 19:56:36 -0500434
435 switch (vport->port_state) {
James Smart2e0fef82007-06-17 19:56:36 -0500436 case LPFC_LOCAL_CFG_LINK:
437 len += snprintf(buf + len, PAGE_SIZE-len,
James Smart92d7f7b2007-06-17 19:56:38 -0500438 "Configuring Link\n");
James Smart2e0fef82007-06-17 19:56:36 -0500439 break;
James Smart92d7f7b2007-06-17 19:56:38 -0500440 case LPFC_FDISC:
James Smart2e0fef82007-06-17 19:56:36 -0500441 case LPFC_FLOGI:
442 case LPFC_FABRIC_CFG_LINK:
443 case LPFC_NS_REG:
444 case LPFC_NS_QRY:
445 case LPFC_BUILD_DISC_LIST:
446 case LPFC_DISC_AUTH:
447 len += snprintf(buf + len, PAGE_SIZE - len,
448 "Discovery\n");
449 break;
450 case LPFC_VPORT_READY:
451 len += snprintf(buf + len, PAGE_SIZE - len, "Ready\n");
452 break;
453
James Smart92d7f7b2007-06-17 19:56:38 -0500454 case LPFC_VPORT_FAILED:
455 len += snprintf(buf + len, PAGE_SIZE - len, "Failed\n");
456 break;
457
458 case LPFC_VPORT_UNKNOWN:
James Smart2e0fef82007-06-17 19:56:36 -0500459 len += snprintf(buf + len, PAGE_SIZE - len,
460 "Unknown\n");
461 break;
462 }
James Smart84774a42008-08-24 21:50:06 -0400463 if (phba->sli.sli_flag & LPFC_MENLO_MAINT)
464 len += snprintf(buf + len, PAGE_SIZE-len,
465 " Menlo Maint Mode\n");
466 else if (phba->fc_topology == TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -0500467 if (vport->fc_flag & FC_PUBLIC_LOOP)
dea31012005-04-17 16:05:31 -0500468 len += snprintf(buf + len, PAGE_SIZE-len,
469 " Public Loop\n");
470 else
471 len += snprintf(buf + len, PAGE_SIZE-len,
472 " Private Loop\n");
473 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500474 if (vport->fc_flag & FC_FABRIC)
dea31012005-04-17 16:05:31 -0500475 len += snprintf(buf + len, PAGE_SIZE-len,
476 " Fabric\n");
477 else
478 len += snprintf(buf + len, PAGE_SIZE-len,
479 " Point-2-Point\n");
480 }
481 }
James Smart2e0fef82007-06-17 19:56:36 -0500482
dea31012005-04-17 16:05:31 -0500483 return len;
484}
485
James Smarte59058c2008-08-24 21:49:00 -0400486/**
James Smart84d1b002010-02-12 14:42:33 -0500487 * lpfc_link_state_store - Transition the link_state on an HBA port
488 * @dev: class device that is converted into a Scsi_host.
489 * @attr: device attribute, not used.
490 * @buf: one or more lpfc_polling_flags values.
491 * @count: not used.
492 *
493 * Returns:
494 * -EINVAL if the buffer is not "up" or "down"
495 * return from link state change function if non-zero
496 * length of the buf on success
497 **/
498static ssize_t
499lpfc_link_state_store(struct device *dev, struct device_attribute *attr,
500 const char *buf, size_t count)
501{
502 struct Scsi_Host *shost = class_to_shost(dev);
503 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
504 struct lpfc_hba *phba = vport->phba;
505
506 int status = -EINVAL;
507
508 if ((strncmp(buf, "up", sizeof("up") - 1) == 0) &&
509 (phba->link_state == LPFC_LINK_DOWN))
James Smart6e7288d2010-06-07 15:23:35 -0400510 status = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
James Smart84d1b002010-02-12 14:42:33 -0500511 else if ((strncmp(buf, "down", sizeof("down") - 1) == 0) &&
512 (phba->link_state >= LPFC_LINK_UP))
James Smart6e7288d2010-06-07 15:23:35 -0400513 status = phba->lpfc_hba_down_link(phba, MBX_NOWAIT);
James Smart84d1b002010-02-12 14:42:33 -0500514
515 if (status == 0)
516 return strlen(buf);
517 else
518 return status;
519}
520
521/**
James Smart3621a712009-04-06 18:47:14 -0400522 * lpfc_num_discovered_ports_show - Return sum of mapped and unmapped vports
James Smarte59058c2008-08-24 21:49:00 -0400523 * @dev: class device that is converted into a Scsi_host.
524 * @attr: device attribute, not used.
525 * @buf: on return contains the sum of fc mapped and unmapped.
526 *
527 * Description:
528 * Returns the ascii text number of the sum of the fc mapped and unmapped
529 * vport counts.
530 *
531 * Returns: size of formatted string.
532 **/
dea31012005-04-17 16:05:31 -0500533static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100534lpfc_num_discovered_ports_show(struct device *dev,
535 struct device_attribute *attr, char *buf)
dea31012005-04-17 16:05:31 -0500536{
Tony Jonesee959b02008-02-22 00:13:36 +0100537 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500538 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
539
540 return snprintf(buf, PAGE_SIZE, "%d\n",
541 vport->fc_map_cnt + vport->fc_unmap_cnt);
dea31012005-04-17 16:05:31 -0500542}
543
James Smarte59058c2008-08-24 21:49:00 -0400544/**
James Smart3621a712009-04-06 18:47:14 -0400545 * lpfc_issue_lip - Misnomer, name carried over from long ago
James Smarte59058c2008-08-24 21:49:00 -0400546 * @shost: Scsi_Host pointer.
547 *
548 * Description:
549 * Bring the link down gracefully then re-init the link. The firmware will
550 * re-init the fiber channel interface as required. Does not issue a LIP.
551 *
552 * Returns:
553 * -EPERM port offline or management commands are being blocked
554 * -ENOMEM cannot allocate memory for the mailbox command
555 * -EIO error sending the mailbox command
556 * zero for success
557 **/
Andrew Vasquez91ca7b02005-10-27 16:03:37 -0700558static int
James Smart2e0fef82007-06-17 19:56:36 -0500559lpfc_issue_lip(struct Scsi_Host *shost)
dea31012005-04-17 16:05:31 -0500560{
James Smart2e0fef82007-06-17 19:56:36 -0500561 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
562 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500563 LPFC_MBOXQ_t *pmboxq;
564 int mbxstatus = MBXERR_ERROR;
565
James Smart2e0fef82007-06-17 19:56:36 -0500566 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
James Smart83108bd2008-01-11 01:53:09 -0500567 (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO))
dea31012005-04-17 16:05:31 -0500568 return -EPERM;
569
570 pmboxq = mempool_alloc(phba->mbox_mem_pool,GFP_KERNEL);
571
572 if (!pmboxq)
573 return -ENOMEM;
574
575 memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
James Smart04c68492009-05-22 14:52:52 -0400576 pmboxq->u.mb.mbxCommand = MBX_DOWN_LINK;
577 pmboxq->u.mb.mbxOwner = OWN_HOST;
James Smart4db621e2006-07-06 15:49:49 -0400578
James Smart33ccf8d2006-08-17 11:57:58 -0400579 mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq, LPFC_MBOX_TMO * 2);
dea31012005-04-17 16:05:31 -0500580
James Smart04c68492009-05-22 14:52:52 -0400581 if ((mbxstatus == MBX_SUCCESS) &&
582 (pmboxq->u.mb.mbxStatus == 0 ||
583 pmboxq->u.mb.mbxStatus == MBXERR_LINK_DOWN)) {
James Smart4db621e2006-07-06 15:49:49 -0400584 memset((void *)pmboxq, 0, sizeof (LPFC_MBOXQ_t));
585 lpfc_init_link(phba, pmboxq, phba->cfg_topology,
586 phba->cfg_link_speed);
587 mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq,
588 phba->fc_ratov * 2);
589 }
590
James Smart5b8bd0c2007-04-25 09:52:49 -0400591 lpfc_set_loopback_flag(phba);
James Smart858c9f62007-06-17 19:56:39 -0500592 if (mbxstatus != MBX_TIMEOUT)
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -0400593 mempool_free(pmboxq, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500594
595 if (mbxstatus == MBXERR_ERROR)
596 return -EIO;
597
Andrew Vasquez91ca7b02005-10-27 16:03:37 -0700598 return 0;
dea31012005-04-17 16:05:31 -0500599}
600
James Smarte59058c2008-08-24 21:49:00 -0400601/**
James Smart3621a712009-04-06 18:47:14 -0400602 * lpfc_do_offline - Issues a mailbox command to bring the link down
James Smarte59058c2008-08-24 21:49:00 -0400603 * @phba: lpfc_hba pointer.
604 * @type: LPFC_EVT_OFFLINE, LPFC_EVT_WARM_START, LPFC_EVT_KILL.
605 *
606 * Notes:
607 * Assumes any error from lpfc_do_offline() will be negative.
608 * Can wait up to 5 seconds for the port ring buffers count
609 * to reach zero, prints a warning if it is not zero and continues.
James Smart3621a712009-04-06 18:47:14 -0400610 * lpfc_workq_post_event() returns a non-zero return code if call fails.
James Smarte59058c2008-08-24 21:49:00 -0400611 *
612 * Returns:
613 * -EIO error posting the event
614 * zero for success
615 **/
James Smart40496f02006-07-06 15:50:22 -0400616static int
James Smart46fa3112007-04-25 09:51:45 -0400617lpfc_do_offline(struct lpfc_hba *phba, uint32_t type)
618{
619 struct completion online_compl;
620 struct lpfc_sli_ring *pring;
621 struct lpfc_sli *psli;
622 int status = 0;
623 int cnt = 0;
624 int i;
625
626 init_completion(&online_compl);
627 lpfc_workq_post_event(phba, &status, &online_compl,
628 LPFC_EVT_OFFLINE_PREP);
629 wait_for_completion(&online_compl);
630
631 if (status != 0)
632 return -EIO;
633
634 psli = &phba->sli;
635
James Smart09372822008-01-11 01:52:54 -0500636 /* Wait a little for things to settle down, but not
637 * long enough for dev loss timeout to expire.
638 */
James Smart46fa3112007-04-25 09:51:45 -0400639 for (i = 0; i < psli->num_rings; i++) {
640 pring = &psli->ring[i];
James Smart46fa3112007-04-25 09:51:45 -0400641 while (pring->txcmplq_cnt) {
642 msleep(10);
James Smart09372822008-01-11 01:52:54 -0500643 if (cnt++ > 500) { /* 5 secs */
James Smart46fa3112007-04-25 09:51:45 -0400644 lpfc_printf_log(phba,
645 KERN_WARNING, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400646 "0466 Outstanding IO when "
647 "bringing Adapter offline\n");
James Smart46fa3112007-04-25 09:51:45 -0400648 break;
649 }
650 }
651 }
652
653 init_completion(&online_compl);
654 lpfc_workq_post_event(phba, &status, &online_compl, type);
655 wait_for_completion(&online_compl);
656
657 if (status != 0)
658 return -EIO;
659
660 return 0;
661}
662
James Smarte59058c2008-08-24 21:49:00 -0400663/**
James Smart3621a712009-04-06 18:47:14 -0400664 * lpfc_selective_reset - Offline then onlines the port
James Smarte59058c2008-08-24 21:49:00 -0400665 * @phba: lpfc_hba pointer.
666 *
667 * Description:
668 * If the port is configured to allow a reset then the hba is brought
669 * offline then online.
670 *
671 * Notes:
672 * Assumes any error from lpfc_do_offline() will be negative.
673 *
674 * Returns:
675 * lpfc_do_offline() return code if not zero
676 * -EIO reset not configured or error posting the event
677 * zero for success
678 **/
James Smart46fa3112007-04-25 09:51:45 -0400679static int
James Smart40496f02006-07-06 15:50:22 -0400680lpfc_selective_reset(struct lpfc_hba *phba)
681{
682 struct completion online_compl;
683 int status = 0;
684
James Smart13815c82008-01-11 01:52:48 -0500685 if (!phba->cfg_enable_hba_reset)
686 return -EIO;
687
James Smart46fa3112007-04-25 09:51:45 -0400688 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
James Smart40496f02006-07-06 15:50:22 -0400689
690 if (status != 0)
James Smart46fa3112007-04-25 09:51:45 -0400691 return status;
James Smart40496f02006-07-06 15:50:22 -0400692
693 init_completion(&online_compl);
694 lpfc_workq_post_event(phba, &status, &online_compl,
695 LPFC_EVT_ONLINE);
696 wait_for_completion(&online_compl);
697
698 if (status != 0)
699 return -EIO;
700
701 return 0;
702}
703
James Smarte59058c2008-08-24 21:49:00 -0400704/**
James Smart3621a712009-04-06 18:47:14 -0400705 * lpfc_issue_reset - Selectively resets an adapter
James Smarte59058c2008-08-24 21:49:00 -0400706 * @dev: class device that is converted into a Scsi_host.
707 * @attr: device attribute, not used.
708 * @buf: containing the string "selective".
709 * @count: unused variable.
710 *
711 * Description:
712 * If the buf contains the string "selective" then lpfc_selective_reset()
713 * is called to perform the reset.
714 *
715 * Notes:
716 * Assumes any error from lpfc_selective_reset() will be negative.
717 * If lpfc_selective_reset() returns zero then the length of the buffer
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200718 * is returned which indicates success
James Smarte59058c2008-08-24 21:49:00 -0400719 *
720 * Returns:
721 * -EINVAL if the buffer does not contain the string "selective"
722 * length of buf if lpfc-selective_reset() if the call succeeds
723 * return value of lpfc_selective_reset() if the call fails
724**/
James Smart40496f02006-07-06 15:50:22 -0400725static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100726lpfc_issue_reset(struct device *dev, struct device_attribute *attr,
727 const char *buf, size_t count)
James Smart40496f02006-07-06 15:50:22 -0400728{
Tony Jonesee959b02008-02-22 00:13:36 +0100729 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500730 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
731 struct lpfc_hba *phba = vport->phba;
732
James Smart40496f02006-07-06 15:50:22 -0400733 int status = -EINVAL;
734
735 if (strncmp(buf, "selective", sizeof("selective") - 1) == 0)
736 status = lpfc_selective_reset(phba);
737
738 if (status == 0)
739 return strlen(buf);
740 else
741 return status;
742}
743
James Smarte59058c2008-08-24 21:49:00 -0400744/**
James Smart3621a712009-04-06 18:47:14 -0400745 * lpfc_nport_evt_cnt_show - Return the number of nport events
James Smarte59058c2008-08-24 21:49:00 -0400746 * @dev: class device that is converted into a Scsi_host.
747 * @attr: device attribute, not used.
748 * @buf: on return contains the ascii number of nport events.
749 *
750 * Returns: size of formatted string.
751 **/
dea31012005-04-17 16:05:31 -0500752static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100753lpfc_nport_evt_cnt_show(struct device *dev, struct device_attribute *attr,
754 char *buf)
dea31012005-04-17 16:05:31 -0500755{
Tony Jonesee959b02008-02-22 00:13:36 +0100756 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500757 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
758 struct lpfc_hba *phba = vport->phba;
759
dea31012005-04-17 16:05:31 -0500760 return snprintf(buf, PAGE_SIZE, "%d\n", phba->nport_event_cnt);
761}
762
James Smarte59058c2008-08-24 21:49:00 -0400763/**
James Smart3621a712009-04-06 18:47:14 -0400764 * lpfc_board_mode_show - Return the state of the board
James Smarte59058c2008-08-24 21:49:00 -0400765 * @dev: class device that is converted into a Scsi_host.
766 * @attr: device attribute, not used.
767 * @buf: on return contains the state of the adapter.
768 *
769 * Returns: size of formatted string.
770 **/
dea31012005-04-17 16:05:31 -0500771static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100772lpfc_board_mode_show(struct device *dev, struct device_attribute *attr,
773 char *buf)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500774{
Tony Jonesee959b02008-02-22 00:13:36 +0100775 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500776 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
777 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz41415862006-02-28 19:25:27 -0500778 char * state;
779
James Smart2e0fef82007-06-17 19:56:36 -0500780 if (phba->link_state == LPFC_HBA_ERROR)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500781 state = "error";
James Smart2e0fef82007-06-17 19:56:36 -0500782 else if (phba->link_state == LPFC_WARM_START)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500783 state = "warm start";
James Smart2e0fef82007-06-17 19:56:36 -0500784 else if (phba->link_state == LPFC_INIT_START)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500785 state = "offline";
786 else
787 state = "online";
788
789 return snprintf(buf, PAGE_SIZE, "%s\n", state);
790}
791
James Smarte59058c2008-08-24 21:49:00 -0400792/**
James Smart3621a712009-04-06 18:47:14 -0400793 * lpfc_board_mode_store - Puts the hba in online, offline, warm or error state
James Smarte59058c2008-08-24 21:49:00 -0400794 * @dev: class device that is converted into a Scsi_host.
795 * @attr: device attribute, not used.
796 * @buf: containing one of the strings "online", "offline", "warm" or "error".
797 * @count: unused variable.
798 *
799 * Returns:
800 * -EACCES if enable hba reset not enabled
801 * -EINVAL if the buffer does not contain a valid string (see above)
802 * -EIO if lpfc_workq_post_event() or lpfc_do_offline() fails
803 * buf length greater than zero indicates success
804 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -0500805static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100806lpfc_board_mode_store(struct device *dev, struct device_attribute *attr,
807 const char *buf, size_t count)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500808{
Tony Jonesee959b02008-02-22 00:13:36 +0100809 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -0500810 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
811 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz41415862006-02-28 19:25:27 -0500812 struct completion online_compl;
813 int status=0;
814
James Smart13815c82008-01-11 01:52:48 -0500815 if (!phba->cfg_enable_hba_reset)
816 return -EACCES;
Jamie Wellnitz41415862006-02-28 19:25:27 -0500817 init_completion(&online_compl);
818
James Smart46fa3112007-04-25 09:51:45 -0400819 if(strncmp(buf, "online", sizeof("online") - 1) == 0) {
Jamie Wellnitz41415862006-02-28 19:25:27 -0500820 lpfc_workq_post_event(phba, &status, &online_compl,
821 LPFC_EVT_ONLINE);
James Smart46fa3112007-04-25 09:51:45 -0400822 wait_for_completion(&online_compl);
823 } else if (strncmp(buf, "offline", sizeof("offline") - 1) == 0)
824 status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500825 else if (strncmp(buf, "warm", sizeof("warm") - 1) == 0)
James Smart6a9c52c2009-10-02 15:16:51 -0400826 if (phba->sli_rev == LPFC_SLI_REV4)
827 return -EINVAL;
828 else
829 status = lpfc_do_offline(phba, LPFC_EVT_WARM_START);
James Smart46fa3112007-04-25 09:51:45 -0400830 else if (strncmp(buf, "error", sizeof("error") - 1) == 0)
James Smart6a9c52c2009-10-02 15:16:51 -0400831 if (phba->sli_rev == LPFC_SLI_REV4)
832 return -EINVAL;
833 else
834 status = lpfc_do_offline(phba, LPFC_EVT_KILL);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500835 else
836 return -EINVAL;
837
Jamie Wellnitz41415862006-02-28 19:25:27 -0500838 if (!status)
839 return strlen(buf);
840 else
841 return -EIO;
842}
843
James Smarte59058c2008-08-24 21:49:00 -0400844/**
James Smart3621a712009-04-06 18:47:14 -0400845 * lpfc_get_hba_info - Return various bits of informaton about the adapter
James Smarte59058c2008-08-24 21:49:00 -0400846 * @phba: pointer to the adapter structure.
James Smart3621a712009-04-06 18:47:14 -0400847 * @mxri: max xri count.
848 * @axri: available xri count.
849 * @mrpi: max rpi count.
850 * @arpi: available rpi count.
851 * @mvpi: max vpi count.
852 * @avpi: available vpi count.
James Smarte59058c2008-08-24 21:49:00 -0400853 *
854 * Description:
855 * If an integer pointer for an count is not null then the value for the
856 * count is returned.
857 *
858 * Returns:
859 * zero on error
860 * one for success
861 **/
James Smart311464e2007-08-02 11:10:37 -0400862static int
James Smart858c9f62007-06-17 19:56:39 -0500863lpfc_get_hba_info(struct lpfc_hba *phba,
864 uint32_t *mxri, uint32_t *axri,
865 uint32_t *mrpi, uint32_t *arpi,
866 uint32_t *mvpi, uint32_t *avpi)
James Smart92d7f7b2007-06-17 19:56:38 -0500867{
James Smart04c68492009-05-22 14:52:52 -0400868 struct lpfc_mbx_read_config *rd_config;
James Smart92d7f7b2007-06-17 19:56:38 -0500869 LPFC_MBOXQ_t *pmboxq;
870 MAILBOX_t *pmb;
871 int rc = 0;
James Smart15672312010-04-06 14:49:03 -0400872 uint32_t max_vpi;
James Smart92d7f7b2007-06-17 19:56:38 -0500873
874 /*
875 * prevent udev from issuing mailbox commands until the port is
876 * configured.
877 */
878 if (phba->link_state < LPFC_LINK_DOWN ||
879 !phba->mbox_mem_pool ||
James Smartf4b4c682009-05-22 14:53:12 -0400880 (phba->sli.sli_flag & LPFC_SLI_ACTIVE) == 0)
James Smart92d7f7b2007-06-17 19:56:38 -0500881 return 0;
882
883 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
884 return 0;
885
886 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
887 if (!pmboxq)
888 return 0;
889 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
890
James Smart04c68492009-05-22 14:52:52 -0400891 pmb = &pmboxq->u.mb;
James Smart92d7f7b2007-06-17 19:56:38 -0500892 pmb->mbxCommand = MBX_READ_CONFIG;
893 pmb->mbxOwner = OWN_HOST;
894 pmboxq->context1 = NULL;
895
James Smart75baf692010-06-08 18:31:21 -0400896 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
James Smart92d7f7b2007-06-17 19:56:38 -0500897 rc = MBX_NOT_FINISHED;
898 else
899 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
900
901 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -0500902 if (rc != MBX_TIMEOUT)
James Smart92d7f7b2007-06-17 19:56:38 -0500903 mempool_free(pmboxq, phba->mbox_mem_pool);
904 return 0;
905 }
906
James Smartda0436e2009-05-22 14:51:39 -0400907 if (phba->sli_rev == LPFC_SLI_REV4) {
908 rd_config = &pmboxq->u.mqe.un.rd_config;
909 if (mrpi)
910 *mrpi = bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config);
911 if (arpi)
912 *arpi = bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config) -
913 phba->sli4_hba.max_cfg_param.rpi_used;
914 if (mxri)
915 *mxri = bf_get(lpfc_mbx_rd_conf_xri_count, rd_config);
916 if (axri)
917 *axri = bf_get(lpfc_mbx_rd_conf_xri_count, rd_config) -
918 phba->sli4_hba.max_cfg_param.xri_used;
James Smart15672312010-04-06 14:49:03 -0400919
920 /* Account for differences with SLI-3. Get vpi count from
921 * mailbox data and subtract one for max vpi value.
922 */
923 max_vpi = (bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config) > 0) ?
924 (bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config) - 1) : 0;
925
James Smartda0436e2009-05-22 14:51:39 -0400926 if (mvpi)
James Smart15672312010-04-06 14:49:03 -0400927 *mvpi = max_vpi;
James Smartda0436e2009-05-22 14:51:39 -0400928 if (avpi)
James Smart15672312010-04-06 14:49:03 -0400929 *avpi = max_vpi - phba->sli4_hba.max_cfg_param.vpi_used;
James Smartda0436e2009-05-22 14:51:39 -0400930 } else {
931 if (mrpi)
932 *mrpi = pmb->un.varRdConfig.max_rpi;
933 if (arpi)
934 *arpi = pmb->un.varRdConfig.avail_rpi;
935 if (mxri)
936 *mxri = pmb->un.varRdConfig.max_xri;
937 if (axri)
938 *axri = pmb->un.varRdConfig.avail_xri;
939 if (mvpi)
940 *mvpi = pmb->un.varRdConfig.max_vpi;
941 if (avpi)
942 *avpi = pmb->un.varRdConfig.avail_vpi;
943 }
James Smart92d7f7b2007-06-17 19:56:38 -0500944
945 mempool_free(pmboxq, phba->mbox_mem_pool);
946 return 1;
947}
948
James Smarte59058c2008-08-24 21:49:00 -0400949/**
James Smart3621a712009-04-06 18:47:14 -0400950 * lpfc_max_rpi_show - Return maximum rpi
James Smarte59058c2008-08-24 21:49:00 -0400951 * @dev: class device that is converted into a Scsi_host.
952 * @attr: device attribute, not used.
953 * @buf: on return contains the maximum rpi count in decimal or "Unknown".
954 *
955 * Description:
956 * Calls lpfc_get_hba_info() asking for just the mrpi count.
957 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
958 * to "Unknown" and the buffer length is returned, therefore the caller
959 * must check for "Unknown" in the buffer to detect a failure.
960 *
961 * Returns: size of formatted string.
962 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500963static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100964lpfc_max_rpi_show(struct device *dev, struct device_attribute *attr,
965 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -0500966{
Tony Jonesee959b02008-02-22 00:13:36 +0100967 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -0500968 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
969 struct lpfc_hba *phba = vport->phba;
970 uint32_t cnt;
971
James Smart858c9f62007-06-17 19:56:39 -0500972 if (lpfc_get_hba_info(phba, NULL, NULL, &cnt, NULL, NULL, NULL))
James Smart92d7f7b2007-06-17 19:56:38 -0500973 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
974 return snprintf(buf, PAGE_SIZE, "Unknown\n");
975}
976
James Smarte59058c2008-08-24 21:49:00 -0400977/**
James Smart3621a712009-04-06 18:47:14 -0400978 * lpfc_used_rpi_show - Return maximum rpi minus available rpi
James Smarte59058c2008-08-24 21:49:00 -0400979 * @dev: class device that is converted into a Scsi_host.
980 * @attr: device attribute, not used.
981 * @buf: containing the used rpi count in decimal or "Unknown".
982 *
983 * Description:
984 * Calls lpfc_get_hba_info() asking for just the mrpi and arpi counts.
985 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
986 * to "Unknown" and the buffer length is returned, therefore the caller
987 * must check for "Unknown" in the buffer to detect a failure.
988 *
989 * Returns: size of formatted string.
990 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500991static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100992lpfc_used_rpi_show(struct device *dev, struct device_attribute *attr,
993 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -0500994{
Tony Jonesee959b02008-02-22 00:13:36 +0100995 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -0500996 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
997 struct lpfc_hba *phba = vport->phba;
998 uint32_t cnt, acnt;
999
James Smart858c9f62007-06-17 19:56:39 -05001000 if (lpfc_get_hba_info(phba, NULL, NULL, &cnt, &acnt, NULL, NULL))
James Smart92d7f7b2007-06-17 19:56:38 -05001001 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1002 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1003}
1004
James Smarte59058c2008-08-24 21:49:00 -04001005/**
James Smart3621a712009-04-06 18:47:14 -04001006 * lpfc_max_xri_show - Return maximum xri
James Smarte59058c2008-08-24 21:49:00 -04001007 * @dev: class device that is converted into a Scsi_host.
1008 * @attr: device attribute, not used.
1009 * @buf: on return contains the maximum xri count in decimal or "Unknown".
1010 *
1011 * Description:
1012 * Calls lpfc_get_hba_info() asking for just the mrpi count.
1013 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1014 * to "Unknown" and the buffer length is returned, therefore the caller
1015 * must check for "Unknown" in the buffer to detect a failure.
1016 *
1017 * Returns: size of formatted string.
1018 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001019static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001020lpfc_max_xri_show(struct device *dev, struct device_attribute *attr,
1021 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -05001022{
Tony Jonesee959b02008-02-22 00:13:36 +01001023 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -05001024 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1025 struct lpfc_hba *phba = vport->phba;
1026 uint32_t cnt;
1027
James Smart858c9f62007-06-17 19:56:39 -05001028 if (lpfc_get_hba_info(phba, &cnt, NULL, NULL, NULL, NULL, NULL))
James Smart92d7f7b2007-06-17 19:56:38 -05001029 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
1030 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1031}
1032
James Smarte59058c2008-08-24 21:49:00 -04001033/**
James Smart3621a712009-04-06 18:47:14 -04001034 * lpfc_used_xri_show - Return maximum xpi minus the available xpi
James Smarte59058c2008-08-24 21:49:00 -04001035 * @dev: class device that is converted into a Scsi_host.
1036 * @attr: device attribute, not used.
1037 * @buf: on return contains the used xri count in decimal or "Unknown".
1038 *
1039 * Description:
1040 * Calls lpfc_get_hba_info() asking for just the mxri and axri counts.
1041 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1042 * to "Unknown" and the buffer length is returned, therefore the caller
1043 * must check for "Unknown" in the buffer to detect a failure.
1044 *
1045 * Returns: size of formatted string.
1046 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001047static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001048lpfc_used_xri_show(struct device *dev, struct device_attribute *attr,
1049 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -05001050{
Tony Jonesee959b02008-02-22 00:13:36 +01001051 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -05001052 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1053 struct lpfc_hba *phba = vport->phba;
1054 uint32_t cnt, acnt;
1055
James Smart858c9f62007-06-17 19:56:39 -05001056 if (lpfc_get_hba_info(phba, &cnt, &acnt, NULL, NULL, NULL, NULL))
1057 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1058 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1059}
1060
James Smarte59058c2008-08-24 21:49:00 -04001061/**
James Smart3621a712009-04-06 18:47:14 -04001062 * lpfc_max_vpi_show - Return maximum vpi
James Smarte59058c2008-08-24 21:49:00 -04001063 * @dev: class device that is converted into a Scsi_host.
1064 * @attr: device attribute, not used.
1065 * @buf: on return contains the maximum vpi count in decimal or "Unknown".
1066 *
1067 * Description:
1068 * Calls lpfc_get_hba_info() asking for just the mvpi count.
1069 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1070 * to "Unknown" and the buffer length is returned, therefore the caller
1071 * must check for "Unknown" in the buffer to detect a failure.
1072 *
1073 * Returns: size of formatted string.
1074 **/
James Smart858c9f62007-06-17 19:56:39 -05001075static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001076lpfc_max_vpi_show(struct device *dev, struct device_attribute *attr,
1077 char *buf)
James Smart858c9f62007-06-17 19:56:39 -05001078{
Tony Jonesee959b02008-02-22 00:13:36 +01001079 struct Scsi_Host *shost = class_to_shost(dev);
James Smart858c9f62007-06-17 19:56:39 -05001080 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1081 struct lpfc_hba *phba = vport->phba;
1082 uint32_t cnt;
1083
1084 if (lpfc_get_hba_info(phba, NULL, NULL, NULL, NULL, &cnt, NULL))
1085 return snprintf(buf, PAGE_SIZE, "%d\n", cnt);
1086 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1087}
1088
James Smarte59058c2008-08-24 21:49:00 -04001089/**
James Smart3621a712009-04-06 18:47:14 -04001090 * lpfc_used_vpi_show - Return maximum vpi minus the available vpi
James Smarte59058c2008-08-24 21:49:00 -04001091 * @dev: class device that is converted into a Scsi_host.
1092 * @attr: device attribute, not used.
1093 * @buf: on return contains the used vpi count in decimal or "Unknown".
1094 *
1095 * Description:
1096 * Calls lpfc_get_hba_info() asking for just the mvpi and avpi counts.
1097 * If lpfc_get_hba_info() returns zero (failure) the buffer text is set
1098 * to "Unknown" and the buffer length is returned, therefore the caller
1099 * must check for "Unknown" in the buffer to detect a failure.
1100 *
1101 * Returns: size of formatted string.
1102 **/
James Smart858c9f62007-06-17 19:56:39 -05001103static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001104lpfc_used_vpi_show(struct device *dev, struct device_attribute *attr,
1105 char *buf)
James Smart858c9f62007-06-17 19:56:39 -05001106{
Tony Jonesee959b02008-02-22 00:13:36 +01001107 struct Scsi_Host *shost = class_to_shost(dev);
James Smart858c9f62007-06-17 19:56:39 -05001108 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1109 struct lpfc_hba *phba = vport->phba;
1110 uint32_t cnt, acnt;
1111
1112 if (lpfc_get_hba_info(phba, NULL, NULL, NULL, NULL, &cnt, &acnt))
James Smart92d7f7b2007-06-17 19:56:38 -05001113 return snprintf(buf, PAGE_SIZE, "%d\n", (cnt - acnt));
1114 return snprintf(buf, PAGE_SIZE, "Unknown\n");
1115}
1116
James Smarte59058c2008-08-24 21:49:00 -04001117/**
James Smart3621a712009-04-06 18:47:14 -04001118 * lpfc_npiv_info_show - Return text about NPIV support for the adapter
James Smarte59058c2008-08-24 21:49:00 -04001119 * @dev: class device that is converted into a Scsi_host.
1120 * @attr: device attribute, not used.
1121 * @buf: text that must be interpreted to determine if npiv is supported.
1122 *
1123 * Description:
1124 * Buffer will contain text indicating npiv is not suppoerted on the port,
1125 * the port is an NPIV physical port, or it is an npiv virtual port with
1126 * the id of the vport.
1127 *
1128 * Returns: size of formatted string.
1129 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001130static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001131lpfc_npiv_info_show(struct device *dev, struct device_attribute *attr,
1132 char *buf)
James Smart92d7f7b2007-06-17 19:56:38 -05001133{
Tony Jonesee959b02008-02-22 00:13:36 +01001134 struct Scsi_Host *shost = class_to_shost(dev);
James Smart92d7f7b2007-06-17 19:56:38 -05001135 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1136 struct lpfc_hba *phba = vport->phba;
1137
1138 if (!(phba->max_vpi))
1139 return snprintf(buf, PAGE_SIZE, "NPIV Not Supported\n");
1140 if (vport->port_type == LPFC_PHYSICAL_PORT)
1141 return snprintf(buf, PAGE_SIZE, "NPIV Physical\n");
1142 return snprintf(buf, PAGE_SIZE, "NPIV Virtual (VPI %d)\n", vport->vpi);
1143}
1144
James Smarte59058c2008-08-24 21:49:00 -04001145/**
James Smart3621a712009-04-06 18:47:14 -04001146 * lpfc_poll_show - Return text about poll support for the adapter
James Smarte59058c2008-08-24 21:49:00 -04001147 * @dev: class device that is converted into a Scsi_host.
1148 * @attr: device attribute, not used.
1149 * @buf: on return contains the cfg_poll in hex.
1150 *
1151 * Notes:
1152 * cfg_poll should be a lpfc_polling_flags type.
1153 *
1154 * Returns: size of formatted string.
1155 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05001156static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001157lpfc_poll_show(struct device *dev, struct device_attribute *attr,
1158 char *buf)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001159{
Tony Jonesee959b02008-02-22 00:13:36 +01001160 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001161 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1162 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001163
1164 return snprintf(buf, PAGE_SIZE, "%#x\n", phba->cfg_poll);
1165}
1166
James Smarte59058c2008-08-24 21:49:00 -04001167/**
James Smart3621a712009-04-06 18:47:14 -04001168 * lpfc_poll_store - Set the value of cfg_poll for the adapter
James Smarte59058c2008-08-24 21:49:00 -04001169 * @dev: class device that is converted into a Scsi_host.
1170 * @attr: device attribute, not used.
1171 * @buf: one or more lpfc_polling_flags values.
1172 * @count: not used.
1173 *
1174 * Notes:
1175 * buf contents converted to integer and checked for a valid value.
1176 *
1177 * Returns:
1178 * -EINVAL if the buffer connot be converted or is out of range
1179 * length of the buf on success
1180 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001181static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001182lpfc_poll_store(struct device *dev, struct device_attribute *attr,
1183 const char *buf, size_t count)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001184{
Tony Jonesee959b02008-02-22 00:13:36 +01001185 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001186 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1187 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001188 uint32_t creg_val;
1189 uint32_t old_val;
1190 int val=0;
1191
1192 if (!isdigit(buf[0]))
1193 return -EINVAL;
1194
1195 if (sscanf(buf, "%i", &val) != 1)
1196 return -EINVAL;
1197
1198 if ((val & 0x3) != val)
1199 return -EINVAL;
1200
James Smart45ed1192009-10-02 15:17:02 -04001201 if (phba->sli_rev == LPFC_SLI_REV4)
1202 val = 0;
1203
James Smart2e0fef82007-06-17 19:56:36 -05001204 spin_lock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001205
1206 old_val = phba->cfg_poll;
1207
1208 if (val & ENABLE_FCP_RING_POLLING) {
1209 if ((val & DISABLE_FCP_RING_INT) &&
1210 !(old_val & DISABLE_FCP_RING_INT)) {
1211 creg_val = readl(phba->HCregaddr);
1212 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
1213 writel(creg_val, phba->HCregaddr);
1214 readl(phba->HCregaddr); /* flush */
1215
1216 lpfc_poll_start_timer(phba);
1217 }
1218 } else if (val != 0x0) {
James Smart2e0fef82007-06-17 19:56:36 -05001219 spin_unlock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001220 return -EINVAL;
1221 }
1222
1223 if (!(val & DISABLE_FCP_RING_INT) &&
1224 (old_val & DISABLE_FCP_RING_INT))
1225 {
James Smart2e0fef82007-06-17 19:56:36 -05001226 spin_unlock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001227 del_timer(&phba->fcp_poll_timer);
James Smart2e0fef82007-06-17 19:56:36 -05001228 spin_lock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001229 creg_val = readl(phba->HCregaddr);
1230 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
1231 writel(creg_val, phba->HCregaddr);
1232 readl(phba->HCregaddr); /* flush */
1233 }
1234
1235 phba->cfg_poll = val;
1236
James Smart2e0fef82007-06-17 19:56:36 -05001237 spin_unlock_irq(&phba->hbalock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001238
1239 return strlen(buf);
1240}
dea31012005-04-17 16:05:31 -05001241
James Smarte59058c2008-08-24 21:49:00 -04001242/**
James Smart3621a712009-04-06 18:47:14 -04001243 * lpfc_param_show - Return a cfg attribute value in decimal
James Smarte59058c2008-08-24 21:49:00 -04001244 *
1245 * Description:
1246 * Macro that given an attr e.g. hba_queue_depth expands
1247 * into a function with the name lpfc_hba_queue_depth_show.
1248 *
1249 * lpfc_##attr##_show: Return the decimal value of an adapters cfg_xxx field.
1250 * @dev: class device that is converted into a Scsi_host.
1251 * @attr: device attribute, not used.
1252 * @buf: on return contains the attribute value in decimal.
1253 *
1254 * Returns: size of formatted string.
1255 **/
dea31012005-04-17 16:05:31 -05001256#define lpfc_param_show(attr) \
1257static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001258lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1259 char *buf) \
dea31012005-04-17 16:05:31 -05001260{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001261 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart2e0fef82007-06-17 19:56:36 -05001262 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
1263 struct lpfc_hba *phba = vport->phba;\
James Smart84d1b002010-02-12 14:42:33 -05001264 uint val = 0;\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001265 val = phba->cfg_##attr;\
1266 return snprintf(buf, PAGE_SIZE, "%d\n",\
1267 phba->cfg_##attr);\
dea31012005-04-17 16:05:31 -05001268}
1269
James Smarte59058c2008-08-24 21:49:00 -04001270/**
James Smart3621a712009-04-06 18:47:14 -04001271 * lpfc_param_hex_show - Return a cfg attribute value in hex
James Smarte59058c2008-08-24 21:49:00 -04001272 *
1273 * Description:
1274 * Macro that given an attr e.g. hba_queue_depth expands
1275 * into a function with the name lpfc_hba_queue_depth_show
1276 *
1277 * lpfc_##attr##_show: Return the hex value of an adapters cfg_xxx field.
1278 * @dev: class device that is converted into a Scsi_host.
1279 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04001280 * @buf: on return contains the attribute value in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001281 *
1282 * Returns: size of formatted string.
1283 **/
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001284#define lpfc_param_hex_show(attr) \
1285static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001286lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1287 char *buf) \
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001288{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001289 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart2e0fef82007-06-17 19:56:36 -05001290 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
1291 struct lpfc_hba *phba = vport->phba;\
James Smart84d1b002010-02-12 14:42:33 -05001292 uint val = 0;\
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001293 val = phba->cfg_##attr;\
1294 return snprintf(buf, PAGE_SIZE, "%#x\n",\
1295 phba->cfg_##attr);\
1296}
1297
James Smarte59058c2008-08-24 21:49:00 -04001298/**
James Smart3621a712009-04-06 18:47:14 -04001299 * lpfc_param_init - Intializes a cfg attribute
James Smarte59058c2008-08-24 21:49:00 -04001300 *
1301 * Description:
1302 * Macro that given an attr e.g. hba_queue_depth expands
1303 * into a function with the name lpfc_hba_queue_depth_init. The macro also
1304 * takes a default argument, a minimum and maximum argument.
1305 *
1306 * lpfc_##attr##_init: Initializes an attribute.
1307 * @phba: pointer the the adapter structure.
1308 * @val: integer attribute value.
1309 *
1310 * Validates the min and max values then sets the adapter config field
1311 * accordingly, or uses the default if out of range and prints an error message.
1312 *
1313 * Returns:
1314 * zero on success
1315 * -EINVAL if default used
1316 **/
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001317#define lpfc_param_init(attr, default, minval, maxval) \
1318static int \
James Smart84d1b002010-02-12 14:42:33 -05001319lpfc_##attr##_init(struct lpfc_hba *phba, uint val) \
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001320{ \
1321 if (val >= minval && val <= maxval) {\
1322 phba->cfg_##attr = val;\
1323 return 0;\
1324 }\
1325 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
James Smarte8b62012007-08-02 11:10:09 -04001326 "0449 lpfc_"#attr" attribute cannot be set to %d, "\
1327 "allowed range is ["#minval", "#maxval"]\n", val); \
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001328 phba->cfg_##attr = default;\
1329 return -EINVAL;\
1330}
1331
James Smarte59058c2008-08-24 21:49:00 -04001332/**
James Smart3621a712009-04-06 18:47:14 -04001333 * lpfc_param_set - Set a cfg attribute value
James Smarte59058c2008-08-24 21:49:00 -04001334 *
1335 * Description:
1336 * Macro that given an attr e.g. hba_queue_depth expands
1337 * into a function with the name lpfc_hba_queue_depth_set
1338 *
1339 * lpfc_##attr##_set: Sets an attribute value.
1340 * @phba: pointer the the adapter structure.
1341 * @val: integer attribute value.
1342 *
1343 * Description:
1344 * Validates the min and max values then sets the
1345 * adapter config field if in the valid range. prints error message
1346 * and does not set the parameter if invalid.
1347 *
1348 * Returns:
1349 * zero on success
1350 * -EINVAL if val is invalid
1351 **/
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001352#define lpfc_param_set(attr, default, minval, maxval) \
1353static int \
James Smart84d1b002010-02-12 14:42:33 -05001354lpfc_##attr##_set(struct lpfc_hba *phba, uint val) \
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001355{ \
1356 if (val >= minval && val <= maxval) {\
1357 phba->cfg_##attr = val;\
1358 return 0;\
1359 }\
1360 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, \
James Smarte8b62012007-08-02 11:10:09 -04001361 "0450 lpfc_"#attr" attribute cannot be set to %d, "\
1362 "allowed range is ["#minval", "#maxval"]\n", val); \
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001363 return -EINVAL;\
1364}
1365
James Smarte59058c2008-08-24 21:49:00 -04001366/**
James Smart3621a712009-04-06 18:47:14 -04001367 * lpfc_param_store - Set a vport attribute value
James Smarte59058c2008-08-24 21:49:00 -04001368 *
1369 * Description:
1370 * Macro that given an attr e.g. hba_queue_depth expands
1371 * into a function with the name lpfc_hba_queue_depth_store.
1372 *
1373 * lpfc_##attr##_store: Set an sttribute value.
1374 * @dev: class device that is converted into a Scsi_host.
1375 * @attr: device attribute, not used.
1376 * @buf: contains the attribute value in ascii.
1377 * @count: not used.
1378 *
1379 * Description:
1380 * Convert the ascii text number to an integer, then
1381 * use the lpfc_##attr##_set function to set the value.
1382 *
1383 * Returns:
1384 * -EINVAL if val is invalid or lpfc_##attr##_set() fails
1385 * length of buffer upon success.
1386 **/
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001387#define lpfc_param_store(attr) \
dea31012005-04-17 16:05:31 -05001388static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001389lpfc_##attr##_store(struct device *dev, struct device_attribute *attr, \
1390 const char *buf, size_t count) \
dea31012005-04-17 16:05:31 -05001391{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001392 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart2e0fef82007-06-17 19:56:36 -05001393 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
1394 struct lpfc_hba *phba = vport->phba;\
James Smart84d1b002010-02-12 14:42:33 -05001395 uint val = 0;\
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001396 if (!isdigit(buf[0]))\
1397 return -EINVAL;\
1398 if (sscanf(buf, "%i", &val) != 1)\
1399 return -EINVAL;\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001400 if (lpfc_##attr##_set(phba, val) == 0) \
James.Smart@Emulex.Com755c0d02005-10-28 20:29:06 -04001401 return strlen(buf);\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001402 else \
1403 return -EINVAL;\
dea31012005-04-17 16:05:31 -05001404}
1405
James Smarte59058c2008-08-24 21:49:00 -04001406/**
James Smart3621a712009-04-06 18:47:14 -04001407 * lpfc_vport_param_show - Return decimal formatted cfg attribute value
James Smarte59058c2008-08-24 21:49:00 -04001408 *
1409 * Description:
1410 * Macro that given an attr e.g. hba_queue_depth expands
1411 * into a function with the name lpfc_hba_queue_depth_show
1412 *
1413 * lpfc_##attr##_show: prints the attribute value in decimal.
1414 * @dev: class device that is converted into a Scsi_host.
1415 * @attr: device attribute, not used.
1416 * @buf: on return contains the attribute value in decimal.
1417 *
1418 * Returns: length of formatted string.
1419 **/
James Smart3de2a652007-08-02 11:09:59 -04001420#define lpfc_vport_param_show(attr) \
1421static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001422lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1423 char *buf) \
James Smart3de2a652007-08-02 11:09:59 -04001424{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001425 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart3de2a652007-08-02 11:09:59 -04001426 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
James Smart84d1b002010-02-12 14:42:33 -05001427 uint val = 0;\
James Smart3de2a652007-08-02 11:09:59 -04001428 val = vport->cfg_##attr;\
1429 return snprintf(buf, PAGE_SIZE, "%d\n", vport->cfg_##attr);\
1430}
1431
James Smarte59058c2008-08-24 21:49:00 -04001432/**
James Smart3621a712009-04-06 18:47:14 -04001433 * lpfc_vport_param_hex_show - Return hex formatted attribute value
James Smarte59058c2008-08-24 21:49:00 -04001434 *
1435 * Description:
1436 * Macro that given an attr e.g.
1437 * hba_queue_depth expands into a function with the name
1438 * lpfc_hba_queue_depth_show
1439 *
James Smart3621a712009-04-06 18:47:14 -04001440 * lpfc_##attr##_show: prints the attribute value in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001441 * @dev: class device that is converted into a Scsi_host.
1442 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04001443 * @buf: on return contains the attribute value in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001444 *
1445 * Returns: length of formatted string.
1446 **/
James Smart3de2a652007-08-02 11:09:59 -04001447#define lpfc_vport_param_hex_show(attr) \
1448static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001449lpfc_##attr##_show(struct device *dev, struct device_attribute *attr, \
1450 char *buf) \
James Smart3de2a652007-08-02 11:09:59 -04001451{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001452 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart3de2a652007-08-02 11:09:59 -04001453 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
James Smart84d1b002010-02-12 14:42:33 -05001454 uint val = 0;\
James Smart3de2a652007-08-02 11:09:59 -04001455 val = vport->cfg_##attr;\
1456 return snprintf(buf, PAGE_SIZE, "%#x\n", vport->cfg_##attr);\
1457}
1458
James Smarte59058c2008-08-24 21:49:00 -04001459/**
James Smart3621a712009-04-06 18:47:14 -04001460 * lpfc_vport_param_init - Initialize a vport cfg attribute
James Smarte59058c2008-08-24 21:49:00 -04001461 *
1462 * Description:
1463 * Macro that given an attr e.g. hba_queue_depth expands
1464 * into a function with the name lpfc_hba_queue_depth_init. The macro also
1465 * takes a default argument, a minimum and maximum argument.
1466 *
1467 * lpfc_##attr##_init: validates the min and max values then sets the
1468 * adapter config field accordingly, or uses the default if out of range
1469 * and prints an error message.
1470 * @phba: pointer the the adapter structure.
1471 * @val: integer attribute value.
1472 *
1473 * Returns:
1474 * zero on success
1475 * -EINVAL if default used
1476 **/
James Smart3de2a652007-08-02 11:09:59 -04001477#define lpfc_vport_param_init(attr, default, minval, maxval) \
1478static int \
James Smart84d1b002010-02-12 14:42:33 -05001479lpfc_##attr##_init(struct lpfc_vport *vport, uint val) \
James Smart3de2a652007-08-02 11:09:59 -04001480{ \
1481 if (val >= minval && val <= maxval) {\
1482 vport->cfg_##attr = val;\
1483 return 0;\
1484 }\
James Smarte8b62012007-08-02 11:10:09 -04001485 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
James Smartd7c255b2008-08-24 21:50:00 -04001486 "0423 lpfc_"#attr" attribute cannot be set to %d, "\
James Smarte8b62012007-08-02 11:10:09 -04001487 "allowed range is ["#minval", "#maxval"]\n", val); \
James Smart3de2a652007-08-02 11:09:59 -04001488 vport->cfg_##attr = default;\
1489 return -EINVAL;\
1490}
1491
James Smarte59058c2008-08-24 21:49:00 -04001492/**
James Smart3621a712009-04-06 18:47:14 -04001493 * lpfc_vport_param_set - Set a vport cfg attribute
James Smarte59058c2008-08-24 21:49:00 -04001494 *
1495 * Description:
1496 * Macro that given an attr e.g. hba_queue_depth expands
1497 * into a function with the name lpfc_hba_queue_depth_set
1498 *
1499 * lpfc_##attr##_set: validates the min and max values then sets the
1500 * adapter config field if in the valid range. prints error message
1501 * and does not set the parameter if invalid.
1502 * @phba: pointer the the adapter structure.
1503 * @val: integer attribute value.
1504 *
1505 * Returns:
1506 * zero on success
1507 * -EINVAL if val is invalid
1508 **/
James Smart3de2a652007-08-02 11:09:59 -04001509#define lpfc_vport_param_set(attr, default, minval, maxval) \
1510static int \
James Smart84d1b002010-02-12 14:42:33 -05001511lpfc_##attr##_set(struct lpfc_vport *vport, uint val) \
James Smart3de2a652007-08-02 11:09:59 -04001512{ \
1513 if (val >= minval && val <= maxval) {\
1514 vport->cfg_##attr = val;\
1515 return 0;\
1516 }\
James Smarte8b62012007-08-02 11:10:09 -04001517 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, \
James Smartd7c255b2008-08-24 21:50:00 -04001518 "0424 lpfc_"#attr" attribute cannot be set to %d, "\
James Smarte8b62012007-08-02 11:10:09 -04001519 "allowed range is ["#minval", "#maxval"]\n", val); \
James Smart3de2a652007-08-02 11:09:59 -04001520 return -EINVAL;\
1521}
1522
James Smarte59058c2008-08-24 21:49:00 -04001523/**
James Smart3621a712009-04-06 18:47:14 -04001524 * lpfc_vport_param_store - Set a vport attribute
James Smarte59058c2008-08-24 21:49:00 -04001525 *
1526 * Description:
1527 * Macro that given an attr e.g. hba_queue_depth
1528 * expands into a function with the name lpfc_hba_queue_depth_store
1529 *
1530 * lpfc_##attr##_store: convert the ascii text number to an integer, then
1531 * use the lpfc_##attr##_set function to set the value.
1532 * @cdev: class device that is converted into a Scsi_host.
1533 * @buf: contains the attribute value in decimal.
1534 * @count: not used.
1535 *
1536 * Returns:
1537 * -EINVAL if val is invalid or lpfc_##attr##_set() fails
1538 * length of buffer upon success.
1539 **/
James Smart3de2a652007-08-02 11:09:59 -04001540#define lpfc_vport_param_store(attr) \
1541static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001542lpfc_##attr##_store(struct device *dev, struct device_attribute *attr, \
1543 const char *buf, size_t count) \
James Smart3de2a652007-08-02 11:09:59 -04001544{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001545 struct Scsi_Host *shost = class_to_shost(dev);\
James Smart3de2a652007-08-02 11:09:59 -04001546 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;\
James Smart84d1b002010-02-12 14:42:33 -05001547 uint val = 0;\
James Smart3de2a652007-08-02 11:09:59 -04001548 if (!isdigit(buf[0]))\
1549 return -EINVAL;\
1550 if (sscanf(buf, "%i", &val) != 1)\
1551 return -EINVAL;\
1552 if (lpfc_##attr##_set(vport, val) == 0) \
1553 return strlen(buf);\
1554 else \
1555 return -EINVAL;\
1556}
1557
1558
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001559#define LPFC_ATTR(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001560static uint lpfc_##name = defval;\
1561module_param(lpfc_##name, uint, 0);\
dea31012005-04-17 16:05:31 -05001562MODULE_PARM_DESC(lpfc_##name, desc);\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001563lpfc_param_init(name, defval, minval, maxval)
dea31012005-04-17 16:05:31 -05001564
1565#define LPFC_ATTR_R(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001566static uint lpfc_##name = defval;\
1567module_param(lpfc_##name, uint, 0);\
dea31012005-04-17 16:05:31 -05001568MODULE_PARM_DESC(lpfc_##name, desc);\
1569lpfc_param_show(name)\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001570lpfc_param_init(name, defval, minval, maxval)\
Tony Jonesee959b02008-02-22 00:13:36 +01001571static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
dea31012005-04-17 16:05:31 -05001572
1573#define LPFC_ATTR_RW(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001574static uint lpfc_##name = defval;\
1575module_param(lpfc_##name, uint, 0);\
dea31012005-04-17 16:05:31 -05001576MODULE_PARM_DESC(lpfc_##name, desc);\
1577lpfc_param_show(name)\
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04001578lpfc_param_init(name, defval, minval, maxval)\
1579lpfc_param_set(name, defval, minval, maxval)\
1580lpfc_param_store(name)\
Tony Jonesee959b02008-02-22 00:13:36 +01001581static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
1582 lpfc_##name##_show, lpfc_##name##_store)
dea31012005-04-17 16:05:31 -05001583
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001584#define LPFC_ATTR_HEX_R(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001585static uint lpfc_##name = defval;\
1586module_param(lpfc_##name, uint, 0);\
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001587MODULE_PARM_DESC(lpfc_##name, desc);\
1588lpfc_param_hex_show(name)\
1589lpfc_param_init(name, defval, minval, maxval)\
Tony Jonesee959b02008-02-22 00:13:36 +01001590static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001591
1592#define LPFC_ATTR_HEX_RW(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001593static uint lpfc_##name = defval;\
1594module_param(lpfc_##name, uint, 0);\
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001595MODULE_PARM_DESC(lpfc_##name, desc);\
1596lpfc_param_hex_show(name)\
1597lpfc_param_init(name, defval, minval, maxval)\
1598lpfc_param_set(name, defval, minval, maxval)\
1599lpfc_param_store(name)\
Tony Jonesee959b02008-02-22 00:13:36 +01001600static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
1601 lpfc_##name##_show, lpfc_##name##_store)
James.Smart@Emulex.Com93a20f72005-10-28 20:29:32 -04001602
James Smart3de2a652007-08-02 11:09:59 -04001603#define LPFC_VPORT_ATTR(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001604static uint lpfc_##name = defval;\
1605module_param(lpfc_##name, uint, 0);\
James Smart3de2a652007-08-02 11:09:59 -04001606MODULE_PARM_DESC(lpfc_##name, desc);\
1607lpfc_vport_param_init(name, defval, minval, maxval)
1608
1609#define LPFC_VPORT_ATTR_R(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001610static uint lpfc_##name = defval;\
1611module_param(lpfc_##name, uint, 0);\
James Smart3de2a652007-08-02 11:09:59 -04001612MODULE_PARM_DESC(lpfc_##name, desc);\
1613lpfc_vport_param_show(name)\
1614lpfc_vport_param_init(name, defval, minval, maxval)\
Tony Jonesee959b02008-02-22 00:13:36 +01001615static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
James Smart3de2a652007-08-02 11:09:59 -04001616
1617#define LPFC_VPORT_ATTR_RW(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001618static uint lpfc_##name = defval;\
1619module_param(lpfc_##name, uint, 0);\
James Smart3de2a652007-08-02 11:09:59 -04001620MODULE_PARM_DESC(lpfc_##name, desc);\
1621lpfc_vport_param_show(name)\
1622lpfc_vport_param_init(name, defval, minval, maxval)\
1623lpfc_vport_param_set(name, defval, minval, maxval)\
1624lpfc_vport_param_store(name)\
Tony Jonesee959b02008-02-22 00:13:36 +01001625static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
1626 lpfc_##name##_show, lpfc_##name##_store)
James Smart3de2a652007-08-02 11:09:59 -04001627
1628#define LPFC_VPORT_ATTR_HEX_R(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001629static uint lpfc_##name = defval;\
1630module_param(lpfc_##name, uint, 0);\
James Smart3de2a652007-08-02 11:09:59 -04001631MODULE_PARM_DESC(lpfc_##name, desc);\
1632lpfc_vport_param_hex_show(name)\
1633lpfc_vport_param_init(name, defval, minval, maxval)\
Tony Jonesee959b02008-02-22 00:13:36 +01001634static DEVICE_ATTR(lpfc_##name, S_IRUGO , lpfc_##name##_show, NULL)
James Smart3de2a652007-08-02 11:09:59 -04001635
1636#define LPFC_VPORT_ATTR_HEX_RW(name, defval, minval, maxval, desc) \
James Smart84d1b002010-02-12 14:42:33 -05001637static uint lpfc_##name = defval;\
1638module_param(lpfc_##name, uint, 0);\
James Smart3de2a652007-08-02 11:09:59 -04001639MODULE_PARM_DESC(lpfc_##name, desc);\
1640lpfc_vport_param_hex_show(name)\
1641lpfc_vport_param_init(name, defval, minval, maxval)\
1642lpfc_vport_param_set(name, defval, minval, maxval)\
1643lpfc_vport_param_store(name)\
Tony Jonesee959b02008-02-22 00:13:36 +01001644static DEVICE_ATTR(lpfc_##name, S_IRUGO | S_IWUSR,\
1645 lpfc_##name##_show, lpfc_##name##_store)
James Smart3de2a652007-08-02 11:09:59 -04001646
James Smart81301a92008-12-04 22:39:46 -05001647static DEVICE_ATTR(bg_info, S_IRUGO, lpfc_bg_info_show, NULL);
1648static DEVICE_ATTR(bg_guard_err, S_IRUGO, lpfc_bg_guard_err_show, NULL);
1649static DEVICE_ATTR(bg_apptag_err, S_IRUGO, lpfc_bg_apptag_err_show, NULL);
1650static DEVICE_ATTR(bg_reftag_err, S_IRUGO, lpfc_bg_reftag_err_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001651static DEVICE_ATTR(info, S_IRUGO, lpfc_info_show, NULL);
1652static DEVICE_ATTR(serialnum, S_IRUGO, lpfc_serialnum_show, NULL);
1653static DEVICE_ATTR(modeldesc, S_IRUGO, lpfc_modeldesc_show, NULL);
1654static DEVICE_ATTR(modelname, S_IRUGO, lpfc_modelname_show, NULL);
1655static DEVICE_ATTR(programtype, S_IRUGO, lpfc_programtype_show, NULL);
1656static DEVICE_ATTR(portnum, S_IRUGO, lpfc_vportnum_show, NULL);
1657static DEVICE_ATTR(fwrev, S_IRUGO, lpfc_fwrev_show, NULL);
1658static DEVICE_ATTR(hdw, S_IRUGO, lpfc_hdw_show, NULL);
James Smart84d1b002010-02-12 14:42:33 -05001659static DEVICE_ATTR(link_state, S_IRUGO | S_IWUSR, lpfc_link_state_show,
1660 lpfc_link_state_store);
Tony Jonesee959b02008-02-22 00:13:36 +01001661static DEVICE_ATTR(option_rom_version, S_IRUGO,
1662 lpfc_option_rom_version_show, NULL);
1663static DEVICE_ATTR(num_discovered_ports, S_IRUGO,
1664 lpfc_num_discovered_ports_show, NULL);
James Smart84774a42008-08-24 21:50:06 -04001665static DEVICE_ATTR(menlo_mgmt_mode, S_IRUGO, lpfc_mlomgmt_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001666static DEVICE_ATTR(nport_evt_cnt, S_IRUGO, lpfc_nport_evt_cnt_show, NULL);
1667static DEVICE_ATTR(lpfc_drvr_version, S_IRUGO, lpfc_drvr_version_show, NULL);
James Smart45ed1192009-10-02 15:17:02 -04001668static DEVICE_ATTR(lpfc_enable_fip, S_IRUGO, lpfc_enable_fip_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001669static DEVICE_ATTR(board_mode, S_IRUGO | S_IWUSR,
1670 lpfc_board_mode_show, lpfc_board_mode_store);
1671static DEVICE_ATTR(issue_reset, S_IWUSR, NULL, lpfc_issue_reset);
1672static DEVICE_ATTR(max_vpi, S_IRUGO, lpfc_max_vpi_show, NULL);
1673static DEVICE_ATTR(used_vpi, S_IRUGO, lpfc_used_vpi_show, NULL);
1674static DEVICE_ATTR(max_rpi, S_IRUGO, lpfc_max_rpi_show, NULL);
1675static DEVICE_ATTR(used_rpi, S_IRUGO, lpfc_used_rpi_show, NULL);
1676static DEVICE_ATTR(max_xri, S_IRUGO, lpfc_max_xri_show, NULL);
1677static DEVICE_ATTR(used_xri, S_IRUGO, lpfc_used_xri_show, NULL);
1678static DEVICE_ATTR(npiv_info, S_IRUGO, lpfc_npiv_info_show, NULL);
1679static DEVICE_ATTR(lpfc_temp_sensor, S_IRUGO, lpfc_temp_sensor_show, NULL);
dea31012005-04-17 16:05:31 -05001680
James Smartc3f28af2006-08-18 17:47:18 -04001681
James Smarta12e07b2006-12-02 13:35:30 -05001682static char *lpfc_soft_wwn_key = "C99G71SL8032A";
James Smartc3f28af2006-08-18 17:47:18 -04001683
James Smarte59058c2008-08-24 21:49:00 -04001684/**
James Smart3621a712009-04-06 18:47:14 -04001685 * lpfc_soft_wwn_enable_store - Allows setting of the wwn if the key is valid
James Smarte59058c2008-08-24 21:49:00 -04001686 * @dev: class device that is converted into a Scsi_host.
1687 * @attr: device attribute, not used.
1688 * @buf: containing the string lpfc_soft_wwn_key.
1689 * @count: must be size of lpfc_soft_wwn_key.
1690 *
1691 * Returns:
1692 * -EINVAL if the buffer does not contain lpfc_soft_wwn_key
1693 * length of buf indicates success
1694 **/
James Smartc3f28af2006-08-18 17:47:18 -04001695static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001696lpfc_soft_wwn_enable_store(struct device *dev, struct device_attribute *attr,
1697 const char *buf, size_t count)
James Smartc3f28af2006-08-18 17:47:18 -04001698{
Tony Jonesee959b02008-02-22 00:13:36 +01001699 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001700 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1701 struct lpfc_hba *phba = vport->phba;
James Smartc3f28af2006-08-18 17:47:18 -04001702 unsigned int cnt = count;
1703
1704 /*
1705 * We're doing a simple sanity check for soft_wwpn setting.
1706 * We require that the user write a specific key to enable
1707 * the soft_wwpn attribute to be settable. Once the attribute
1708 * is written, the enable key resets. If further updates are
1709 * desired, the key must be written again to re-enable the
1710 * attribute.
1711 *
1712 * The "key" is not secret - it is a hardcoded string shown
1713 * here. The intent is to protect against the random user or
1714 * application that is just writing attributes.
1715 */
1716
1717 /* count may include a LF at end of string */
1718 if (buf[cnt-1] == '\n')
1719 cnt--;
1720
James Smarta12e07b2006-12-02 13:35:30 -05001721 if ((cnt != strlen(lpfc_soft_wwn_key)) ||
1722 (strncmp(buf, lpfc_soft_wwn_key, strlen(lpfc_soft_wwn_key)) != 0))
James Smartc3f28af2006-08-18 17:47:18 -04001723 return -EINVAL;
1724
James Smarta12e07b2006-12-02 13:35:30 -05001725 phba->soft_wwn_enable = 1;
James Smartc3f28af2006-08-18 17:47:18 -04001726 return count;
1727}
Tony Jonesee959b02008-02-22 00:13:36 +01001728static DEVICE_ATTR(lpfc_soft_wwn_enable, S_IWUSR, NULL,
1729 lpfc_soft_wwn_enable_store);
James Smartc3f28af2006-08-18 17:47:18 -04001730
James Smarte59058c2008-08-24 21:49:00 -04001731/**
James Smart3621a712009-04-06 18:47:14 -04001732 * lpfc_soft_wwpn_show - Return the cfg soft ww port name of the adapter
James Smarte59058c2008-08-24 21:49:00 -04001733 * @dev: class device that is converted into a Scsi_host.
1734 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04001735 * @buf: on return contains the wwpn in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001736 *
1737 * Returns: size of formatted string.
1738 **/
James Smartc3f28af2006-08-18 17:47:18 -04001739static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001740lpfc_soft_wwpn_show(struct device *dev, struct device_attribute *attr,
1741 char *buf)
James Smartc3f28af2006-08-18 17:47:18 -04001742{
Tony Jonesee959b02008-02-22 00:13:36 +01001743 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001744 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1745 struct lpfc_hba *phba = vport->phba;
1746
Randy Dunlapafc071e2006-10-23 21:47:13 -07001747 return snprintf(buf, PAGE_SIZE, "0x%llx\n",
1748 (unsigned long long)phba->cfg_soft_wwpn);
James Smartc3f28af2006-08-18 17:47:18 -04001749}
1750
James Smarte59058c2008-08-24 21:49:00 -04001751/**
James Smart3621a712009-04-06 18:47:14 -04001752 * lpfc_soft_wwpn_store - Set the ww port name of the adapter
James Smarte59058c2008-08-24 21:49:00 -04001753 * @dev class device that is converted into a Scsi_host.
1754 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04001755 * @buf: contains the wwpn in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001756 * @count: number of wwpn bytes in buf
1757 *
1758 * Returns:
1759 * -EACCES hba reset not enabled, adapter over temp
1760 * -EINVAL soft wwn not enabled, count is invalid, invalid wwpn byte invalid
1761 * -EIO error taking adapter offline or online
1762 * value of count on success
1763 **/
James Smartc3f28af2006-08-18 17:47:18 -04001764static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001765lpfc_soft_wwpn_store(struct device *dev, struct device_attribute *attr,
1766 const char *buf, size_t count)
James Smartc3f28af2006-08-18 17:47:18 -04001767{
Tony Jonesee959b02008-02-22 00:13:36 +01001768 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05001769 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1770 struct lpfc_hba *phba = vport->phba;
James Smartc3f28af2006-08-18 17:47:18 -04001771 struct completion online_compl;
1772 int stat1=0, stat2=0;
1773 unsigned int i, j, cnt=count;
1774 u8 wwpn[8];
1775
James Smart13815c82008-01-11 01:52:48 -05001776 if (!phba->cfg_enable_hba_reset)
1777 return -EACCES;
James Smart7af67052007-10-27 13:38:11 -04001778 spin_lock_irq(&phba->hbalock);
1779 if (phba->over_temp_state == HBA_OVER_TEMP) {
1780 spin_unlock_irq(&phba->hbalock);
James Smart09372822008-01-11 01:52:54 -05001781 return -EACCES;
James Smart7af67052007-10-27 13:38:11 -04001782 }
1783 spin_unlock_irq(&phba->hbalock);
James Smartc3f28af2006-08-18 17:47:18 -04001784 /* count may include a LF at end of string */
1785 if (buf[cnt-1] == '\n')
1786 cnt--;
1787
James Smarta12e07b2006-12-02 13:35:30 -05001788 if (!phba->soft_wwn_enable || (cnt < 16) || (cnt > 18) ||
James Smartc3f28af2006-08-18 17:47:18 -04001789 ((cnt == 17) && (*buf++ != 'x')) ||
1790 ((cnt == 18) && ((*buf++ != '0') || (*buf++ != 'x'))))
1791 return -EINVAL;
1792
James Smarta12e07b2006-12-02 13:35:30 -05001793 phba->soft_wwn_enable = 0;
James Smartc3f28af2006-08-18 17:47:18 -04001794
1795 memset(wwpn, 0, sizeof(wwpn));
1796
1797 /* Validate and store the new name */
1798 for (i=0, j=0; i < 16; i++) {
Andy Shevchenkoecc30992010-08-10 18:01:27 -07001799 int value;
1800
1801 value = hex_to_bin(*buf++);
1802 if (value >= 0)
1803 j = (j << 4) | value;
James Smartc3f28af2006-08-18 17:47:18 -04001804 else
1805 return -EINVAL;
1806 if (i % 2) {
1807 wwpn[i/2] = j & 0xff;
1808 j = 0;
1809 }
1810 }
1811 phba->cfg_soft_wwpn = wwn_to_u64(wwpn);
James Smart2e0fef82007-06-17 19:56:36 -05001812 fc_host_port_name(shost) = phba->cfg_soft_wwpn;
James Smarta12e07b2006-12-02 13:35:30 -05001813 if (phba->cfg_soft_wwnn)
James Smart2e0fef82007-06-17 19:56:36 -05001814 fc_host_node_name(shost) = phba->cfg_soft_wwnn;
James Smartc3f28af2006-08-18 17:47:18 -04001815
1816 dev_printk(KERN_NOTICE, &phba->pcidev->dev,
1817 "lpfc%d: Reinitializing to use soft_wwpn\n", phba->brd_no);
1818
James Smart46fa3112007-04-25 09:51:45 -04001819 stat1 = lpfc_do_offline(phba, LPFC_EVT_OFFLINE);
James Smartc3f28af2006-08-18 17:47:18 -04001820 if (stat1)
1821 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001822 "0463 lpfc_soft_wwpn attribute set failed to "
1823 "reinit adapter - %d\n", stat1);
James Smartc3f28af2006-08-18 17:47:18 -04001824 init_completion(&online_compl);
1825 lpfc_workq_post_event(phba, &stat2, &online_compl, LPFC_EVT_ONLINE);
1826 wait_for_completion(&online_compl);
1827 if (stat2)
1828 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001829 "0464 lpfc_soft_wwpn attribute set failed to "
1830 "reinit adapter - %d\n", stat2);
James Smartc3f28af2006-08-18 17:47:18 -04001831 return (stat1 || stat2) ? -EIO : count;
1832}
Tony Jonesee959b02008-02-22 00:13:36 +01001833static DEVICE_ATTR(lpfc_soft_wwpn, S_IRUGO | S_IWUSR,\
1834 lpfc_soft_wwpn_show, lpfc_soft_wwpn_store);
James Smartc3f28af2006-08-18 17:47:18 -04001835
James Smarte59058c2008-08-24 21:49:00 -04001836/**
James Smart3621a712009-04-06 18:47:14 -04001837 * lpfc_soft_wwnn_show - Return the cfg soft ww node name for the adapter
James Smarte59058c2008-08-24 21:49:00 -04001838 * @dev: class device that is converted into a Scsi_host.
1839 * @attr: device attribute, not used.
James Smart3621a712009-04-06 18:47:14 -04001840 * @buf: on return contains the wwnn in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001841 *
1842 * Returns: size of formatted string.
1843 **/
James Smarta12e07b2006-12-02 13:35:30 -05001844static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001845lpfc_soft_wwnn_show(struct device *dev, struct device_attribute *attr,
1846 char *buf)
James Smarta12e07b2006-12-02 13:35:30 -05001847{
Tony Jonesee959b02008-02-22 00:13:36 +01001848 struct Scsi_Host *shost = class_to_shost(dev);
James Smart51ef4c22007-08-02 11:10:31 -04001849 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
James Smarta12e07b2006-12-02 13:35:30 -05001850 return snprintf(buf, PAGE_SIZE, "0x%llx\n",
1851 (unsigned long long)phba->cfg_soft_wwnn);
1852}
1853
James Smarte59058c2008-08-24 21:49:00 -04001854/**
James Smart3621a712009-04-06 18:47:14 -04001855 * lpfc_soft_wwnn_store - sets the ww node name of the adapter
James Smarte59058c2008-08-24 21:49:00 -04001856 * @cdev: class device that is converted into a Scsi_host.
James Smart3621a712009-04-06 18:47:14 -04001857 * @buf: contains the ww node name in hexadecimal.
James Smarte59058c2008-08-24 21:49:00 -04001858 * @count: number of wwnn bytes in buf.
1859 *
1860 * Returns:
1861 * -EINVAL soft wwn not enabled, count is invalid, invalid wwnn byte invalid
1862 * value of count on success
1863 **/
James Smarta12e07b2006-12-02 13:35:30 -05001864static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001865lpfc_soft_wwnn_store(struct device *dev, struct device_attribute *attr,
1866 const char *buf, size_t count)
James Smarta12e07b2006-12-02 13:35:30 -05001867{
Tony Jonesee959b02008-02-22 00:13:36 +01001868 struct Scsi_Host *shost = class_to_shost(dev);
James Smart51ef4c22007-08-02 11:10:31 -04001869 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
James Smarta12e07b2006-12-02 13:35:30 -05001870 unsigned int i, j, cnt=count;
1871 u8 wwnn[8];
1872
1873 /* count may include a LF at end of string */
1874 if (buf[cnt-1] == '\n')
1875 cnt--;
1876
1877 if (!phba->soft_wwn_enable || (cnt < 16) || (cnt > 18) ||
1878 ((cnt == 17) && (*buf++ != 'x')) ||
1879 ((cnt == 18) && ((*buf++ != '0') || (*buf++ != 'x'))))
1880 return -EINVAL;
1881
1882 /*
1883 * Allow wwnn to be set many times, as long as the enable is set.
1884 * However, once the wwpn is set, everything locks.
1885 */
1886
1887 memset(wwnn, 0, sizeof(wwnn));
1888
1889 /* Validate and store the new name */
1890 for (i=0, j=0; i < 16; i++) {
Andy Shevchenkoecc30992010-08-10 18:01:27 -07001891 int value;
1892
1893 value = hex_to_bin(*buf++);
1894 if (value >= 0)
1895 j = (j << 4) | value;
James Smarta12e07b2006-12-02 13:35:30 -05001896 else
1897 return -EINVAL;
1898 if (i % 2) {
1899 wwnn[i/2] = j & 0xff;
1900 j = 0;
1901 }
1902 }
1903 phba->cfg_soft_wwnn = wwn_to_u64(wwnn);
1904
1905 dev_printk(KERN_NOTICE, &phba->pcidev->dev,
1906 "lpfc%d: soft_wwnn set. Value will take effect upon "
1907 "setting of the soft_wwpn\n", phba->brd_no);
1908
1909 return count;
1910}
Tony Jonesee959b02008-02-22 00:13:36 +01001911static DEVICE_ATTR(lpfc_soft_wwnn, S_IRUGO | S_IWUSR,\
1912 lpfc_soft_wwnn_show, lpfc_soft_wwnn_store);
James Smarta12e07b2006-12-02 13:35:30 -05001913
James Smartc3f28af2006-08-18 17:47:18 -04001914
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001915static int lpfc_poll = 0;
1916module_param(lpfc_poll, int, 0);
1917MODULE_PARM_DESC(lpfc_poll, "FCP ring polling mode control:"
1918 " 0 - none,"
1919 " 1 - poll with interrupts enabled"
1920 " 3 - poll and disable FCP ring interrupts");
1921
Tony Jonesee959b02008-02-22 00:13:36 +01001922static DEVICE_ATTR(lpfc_poll, S_IRUGO | S_IWUSR,
1923 lpfc_poll_show, lpfc_poll_store);
dea31012005-04-17 16:05:31 -05001924
James Smart92d7f7b2007-06-17 19:56:38 -05001925int lpfc_sli_mode = 0;
1926module_param(lpfc_sli_mode, int, 0);
1927MODULE_PARM_DESC(lpfc_sli_mode, "SLI mode selector:"
1928 " 0 - auto (SLI-3 if supported),"
1929 " 2 - select SLI-2 even on SLI-3 capable HBAs,"
1930 " 3 - select SLI-3");
1931
James Smart15672312010-04-06 14:49:03 -04001932int lpfc_enable_npiv = 1;
James Smart7ee5d432007-10-27 13:37:17 -04001933module_param(lpfc_enable_npiv, int, 0);
1934MODULE_PARM_DESC(lpfc_enable_npiv, "Enable NPIV functionality");
1935lpfc_param_show(enable_npiv);
James Smart4b40c592010-03-15 11:25:44 -04001936lpfc_param_init(enable_npiv, 1, 0, 1);
James Smart15672312010-04-06 14:49:03 -04001937static DEVICE_ATTR(lpfc_enable_npiv, S_IRUGO, lpfc_enable_npiv_show, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05001938
dea31012005-04-17 16:05:31 -05001939/*
James Smart84d1b002010-02-12 14:42:33 -05001940# lpfc_suppress_link_up: Bring link up at initialization
1941# 0x0 = bring link up (issue MBX_INIT_LINK)
1942# 0x1 = do NOT bring link up at initialization(MBX_INIT_LINK)
1943# 0x2 = never bring up link
1944# Default value is 0.
1945*/
James Smarte40a02c2010-02-26 14:13:54 -05001946LPFC_ATTR_R(suppress_link_up, LPFC_INITIALIZE_LINK, LPFC_INITIALIZE_LINK,
1947 LPFC_DELAY_INIT_LINK_INDEFINITELY,
1948 "Suppress Link Up at initialization");
James Smart2a9bf3d2010-06-07 15:24:45 -04001949/*
1950# lpfc_cnt: Number of IOCBs allocated for ELS, CT, and ABTS
1951# 1 - (1024)
1952# 2 - (2048)
1953# 3 - (3072)
1954# 4 - (4096)
1955# 5 - (5120)
1956*/
1957static ssize_t
1958lpfc_iocb_hw_show(struct device *dev, struct device_attribute *attr, char *buf)
1959{
1960 struct Scsi_Host *shost = class_to_shost(dev);
1961 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
1962
1963 return snprintf(buf, PAGE_SIZE, "%d\n", phba->iocb_max);
1964}
1965
1966static DEVICE_ATTR(iocb_hw, S_IRUGO,
1967 lpfc_iocb_hw_show, NULL);
1968static ssize_t
1969lpfc_txq_hw_show(struct device *dev, struct device_attribute *attr, char *buf)
1970{
1971 struct Scsi_Host *shost = class_to_shost(dev);
1972 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
1973
1974 return snprintf(buf, PAGE_SIZE, "%d\n",
1975 phba->sli.ring[LPFC_ELS_RING].txq_max);
1976}
1977
1978static DEVICE_ATTR(txq_hw, S_IRUGO,
1979 lpfc_txq_hw_show, NULL);
1980static ssize_t
1981lpfc_txcmplq_hw_show(struct device *dev, struct device_attribute *attr,
1982 char *buf)
1983{
1984 struct Scsi_Host *shost = class_to_shost(dev);
1985 struct lpfc_hba *phba = ((struct lpfc_vport *) shost->hostdata)->phba;
1986
1987 return snprintf(buf, PAGE_SIZE, "%d\n",
1988 phba->sli.ring[LPFC_ELS_RING].txcmplq_max);
1989}
1990
1991static DEVICE_ATTR(txcmplq_hw, S_IRUGO,
1992 lpfc_txcmplq_hw_show, NULL);
1993
1994int lpfc_iocb_cnt = 2;
1995module_param(lpfc_iocb_cnt, int, 1);
1996MODULE_PARM_DESC(lpfc_iocb_cnt,
1997 "Number of IOCBs alloc for ELS, CT, and ABTS: 1k to 5k IOCBs");
1998lpfc_param_show(iocb_cnt);
1999lpfc_param_init(iocb_cnt, 2, 1, 5);
2000static DEVICE_ATTR(lpfc_iocb_cnt, S_IRUGO,
2001 lpfc_iocb_cnt_show, NULL);
James Smart84d1b002010-02-12 14:42:33 -05002002
2003/*
James Smartc01f3202006-08-18 17:47:08 -04002004# lpfc_nodev_tmo: If set, it will hold all I/O errors on devices that disappear
2005# until the timer expires. Value range is [0,255]. Default value is 30.
2006*/
2007static int lpfc_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
2008static int lpfc_devloss_tmo = LPFC_DEF_DEVLOSS_TMO;
2009module_param(lpfc_nodev_tmo, int, 0);
2010MODULE_PARM_DESC(lpfc_nodev_tmo,
2011 "Seconds driver will hold I/O waiting "
2012 "for a device to come back");
James Smarte59058c2008-08-24 21:49:00 -04002013
2014/**
James Smart3621a712009-04-06 18:47:14 -04002015 * lpfc_nodev_tmo_show - Return the hba dev loss timeout value
James Smarte59058c2008-08-24 21:49:00 -04002016 * @dev: class converted to a Scsi_host structure.
2017 * @attr: device attribute, not used.
2018 * @buf: on return contains the dev loss timeout in decimal.
2019 *
2020 * Returns: size of formatted string.
2021 **/
James Smartc01f3202006-08-18 17:47:08 -04002022static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01002023lpfc_nodev_tmo_show(struct device *dev, struct device_attribute *attr,
2024 char *buf)
James Smartc01f3202006-08-18 17:47:08 -04002025{
Tony Jonesee959b02008-02-22 00:13:36 +01002026 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05002027 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
James Smarte40a02c2010-02-26 14:13:54 -05002028
James Smart3de2a652007-08-02 11:09:59 -04002029 return snprintf(buf, PAGE_SIZE, "%d\n", vport->cfg_devloss_tmo);
James Smartc01f3202006-08-18 17:47:08 -04002030}
2031
James Smarte59058c2008-08-24 21:49:00 -04002032/**
James Smart3621a712009-04-06 18:47:14 -04002033 * lpfc_nodev_tmo_init - Set the hba nodev timeout value
James Smarte59058c2008-08-24 21:49:00 -04002034 * @vport: lpfc vport structure pointer.
2035 * @val: contains the nodev timeout value.
2036 *
2037 * Description:
2038 * If the devloss tmo is already set then nodev tmo is set to devloss tmo,
2039 * a kernel error message is printed and zero is returned.
2040 * Else if val is in range then nodev tmo and devloss tmo are set to val.
2041 * Otherwise nodev tmo is set to the default value.
2042 *
2043 * Returns:
2044 * zero if already set or if val is in range
2045 * -EINVAL val out of range
2046 **/
James Smartc01f3202006-08-18 17:47:08 -04002047static int
James Smart3de2a652007-08-02 11:09:59 -04002048lpfc_nodev_tmo_init(struct lpfc_vport *vport, int val)
James Smartc01f3202006-08-18 17:47:08 -04002049{
James Smart3de2a652007-08-02 11:09:59 -04002050 if (vport->cfg_devloss_tmo != LPFC_DEF_DEVLOSS_TMO) {
2051 vport->cfg_nodev_tmo = vport->cfg_devloss_tmo;
2052 if (val != LPFC_DEF_DEVLOSS_TMO)
James Smarte8b62012007-08-02 11:10:09 -04002053 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04002054 "0407 Ignoring nodev_tmo module "
James Smarte8b62012007-08-02 11:10:09 -04002055 "parameter because devloss_tmo is "
2056 "set.\n");
James Smartc01f3202006-08-18 17:47:08 -04002057 return 0;
2058 }
2059
2060 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
James Smart3de2a652007-08-02 11:09:59 -04002061 vport->cfg_nodev_tmo = val;
2062 vport->cfg_devloss_tmo = val;
James Smartc01f3202006-08-18 17:47:08 -04002063 return 0;
2064 }
James Smarte8b62012007-08-02 11:10:09 -04002065 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2066 "0400 lpfc_nodev_tmo attribute cannot be set to"
2067 " %d, allowed range is [%d, %d]\n",
2068 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
James Smart3de2a652007-08-02 11:09:59 -04002069 vport->cfg_nodev_tmo = LPFC_DEF_DEVLOSS_TMO;
James Smartc01f3202006-08-18 17:47:08 -04002070 return -EINVAL;
2071}
2072
James Smarte59058c2008-08-24 21:49:00 -04002073/**
James Smart3621a712009-04-06 18:47:14 -04002074 * lpfc_update_rport_devloss_tmo - Update dev loss tmo value
James Smarte59058c2008-08-24 21:49:00 -04002075 * @vport: lpfc vport structure pointer.
2076 *
2077 * Description:
2078 * Update all the ndlp's dev loss tmo with the vport devloss tmo value.
2079 **/
James Smart7054a602007-04-25 09:52:34 -04002080static void
James Smart3de2a652007-08-02 11:09:59 -04002081lpfc_update_rport_devloss_tmo(struct lpfc_vport *vport)
James Smart7054a602007-04-25 09:52:34 -04002082{
James Smart858c9f62007-06-17 19:56:39 -05002083 struct Scsi_Host *shost;
James Smart7054a602007-04-25 09:52:34 -04002084 struct lpfc_nodelist *ndlp;
2085
James Smart51ef4c22007-08-02 11:10:31 -04002086 shost = lpfc_shost_from_vport(vport);
2087 spin_lock_irq(shost->host_lock);
2088 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp)
James Smarte47c9092008-02-08 18:49:26 -05002089 if (NLP_CHK_NODE_ACT(ndlp) && ndlp->rport)
James Smart51ef4c22007-08-02 11:10:31 -04002090 ndlp->rport->dev_loss_tmo = vport->cfg_devloss_tmo;
2091 spin_unlock_irq(shost->host_lock);
James Smart7054a602007-04-25 09:52:34 -04002092}
2093
James Smarte59058c2008-08-24 21:49:00 -04002094/**
James Smart3621a712009-04-06 18:47:14 -04002095 * lpfc_nodev_tmo_set - Set the vport nodev tmo and devloss tmo values
James Smarte59058c2008-08-24 21:49:00 -04002096 * @vport: lpfc vport structure pointer.
2097 * @val: contains the tmo value.
2098 *
2099 * Description:
2100 * If the devloss tmo is already set or the vport dev loss tmo has changed
2101 * then a kernel error message is printed and zero is returned.
2102 * Else if val is in range then nodev tmo and devloss tmo are set to val.
2103 * Otherwise nodev tmo is set to the default value.
2104 *
2105 * Returns:
2106 * zero if already set or if val is in range
2107 * -EINVAL val out of range
2108 **/
James Smartc01f3202006-08-18 17:47:08 -04002109static int
James Smart3de2a652007-08-02 11:09:59 -04002110lpfc_nodev_tmo_set(struct lpfc_vport *vport, int val)
James Smartc01f3202006-08-18 17:47:08 -04002111{
James Smart3de2a652007-08-02 11:09:59 -04002112 if (vport->dev_loss_tmo_changed ||
2113 (lpfc_devloss_tmo != LPFC_DEF_DEVLOSS_TMO)) {
James Smarte8b62012007-08-02 11:10:09 -04002114 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2115 "0401 Ignoring change to nodev_tmo "
2116 "because devloss_tmo is set.\n");
James Smartc01f3202006-08-18 17:47:08 -04002117 return 0;
2118 }
James Smartc01f3202006-08-18 17:47:08 -04002119 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
James Smart3de2a652007-08-02 11:09:59 -04002120 vport->cfg_nodev_tmo = val;
2121 vport->cfg_devloss_tmo = val;
2122 lpfc_update_rport_devloss_tmo(vport);
James Smartc01f3202006-08-18 17:47:08 -04002123 return 0;
2124 }
James Smarte8b62012007-08-02 11:10:09 -04002125 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2126 "0403 lpfc_nodev_tmo attribute cannot be set to"
2127 "%d, allowed range is [%d, %d]\n",
2128 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
James Smartc01f3202006-08-18 17:47:08 -04002129 return -EINVAL;
2130}
2131
James Smart3de2a652007-08-02 11:09:59 -04002132lpfc_vport_param_store(nodev_tmo)
James Smartc01f3202006-08-18 17:47:08 -04002133
Tony Jonesee959b02008-02-22 00:13:36 +01002134static DEVICE_ATTR(lpfc_nodev_tmo, S_IRUGO | S_IWUSR,
2135 lpfc_nodev_tmo_show, lpfc_nodev_tmo_store);
James Smartc01f3202006-08-18 17:47:08 -04002136
2137/*
2138# lpfc_devloss_tmo: If set, it will hold all I/O errors on devices that
2139# disappear until the timer expires. Value range is [0,255]. Default
2140# value is 30.
2141*/
2142module_param(lpfc_devloss_tmo, int, 0);
2143MODULE_PARM_DESC(lpfc_devloss_tmo,
2144 "Seconds driver will hold I/O waiting "
2145 "for a device to come back");
James Smart3de2a652007-08-02 11:09:59 -04002146lpfc_vport_param_init(devloss_tmo, LPFC_DEF_DEVLOSS_TMO,
2147 LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO)
2148lpfc_vport_param_show(devloss_tmo)
James Smarte59058c2008-08-24 21:49:00 -04002149
2150/**
James Smart3621a712009-04-06 18:47:14 -04002151 * lpfc_devloss_tmo_set - Sets vport nodev tmo, devloss tmo values, changed bit
James Smarte59058c2008-08-24 21:49:00 -04002152 * @vport: lpfc vport structure pointer.
2153 * @val: contains the tmo value.
2154 *
2155 * Description:
2156 * If val is in a valid range then set the vport nodev tmo,
2157 * devloss tmo, also set the vport dev loss tmo changed flag.
2158 * Else a kernel error message is printed.
2159 *
2160 * Returns:
2161 * zero if val is in range
2162 * -EINVAL val out of range
2163 **/
James Smartc01f3202006-08-18 17:47:08 -04002164static int
James Smart3de2a652007-08-02 11:09:59 -04002165lpfc_devloss_tmo_set(struct lpfc_vport *vport, int val)
James Smartc01f3202006-08-18 17:47:08 -04002166{
2167 if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
James Smart3de2a652007-08-02 11:09:59 -04002168 vport->cfg_nodev_tmo = val;
2169 vport->cfg_devloss_tmo = val;
2170 vport->dev_loss_tmo_changed = 1;
2171 lpfc_update_rport_devloss_tmo(vport);
James Smartc01f3202006-08-18 17:47:08 -04002172 return 0;
2173 }
2174
James Smarte8b62012007-08-02 11:10:09 -04002175 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2176 "0404 lpfc_devloss_tmo attribute cannot be set to"
2177 " %d, allowed range is [%d, %d]\n",
2178 val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
James Smartc01f3202006-08-18 17:47:08 -04002179 return -EINVAL;
2180}
2181
James Smart3de2a652007-08-02 11:09:59 -04002182lpfc_vport_param_store(devloss_tmo)
Tony Jonesee959b02008-02-22 00:13:36 +01002183static DEVICE_ATTR(lpfc_devloss_tmo, S_IRUGO | S_IWUSR,
2184 lpfc_devloss_tmo_show, lpfc_devloss_tmo_store);
James Smartc01f3202006-08-18 17:47:08 -04002185
2186/*
dea31012005-04-17 16:05:31 -05002187# lpfc_log_verbose: Only turn this flag on if you are willing to risk being
2188# deluged with LOTS of information.
2189# You can set a bit mask to record specific types of verbose messages:
James Smartf4b4c682009-05-22 14:53:12 -04002190# See lpfc_logmsh.h for definitions.
dea31012005-04-17 16:05:31 -05002191*/
James Smartf4b4c682009-05-22 14:53:12 -04002192LPFC_VPORT_ATTR_HEX_RW(log_verbose, 0x0, 0x0, 0xffffffff,
James Smarte8b62012007-08-02 11:10:09 -04002193 "Verbose logging bit-mask");
dea31012005-04-17 16:05:31 -05002194
2195/*
James Smart7ee5d432007-10-27 13:37:17 -04002196# lpfc_enable_da_id: This turns on the DA_ID CT command that deregisters
2197# objects that have been registered with the nameserver after login.
2198*/
2199LPFC_VPORT_ATTR_R(enable_da_id, 0, 0, 1,
2200 "Deregister nameserver objects before LOGO");
2201
2202/*
dea31012005-04-17 16:05:31 -05002203# lun_queue_depth: This parameter is used to limit the number of outstanding
2204# commands per FCP LUN. Value range is [1,128]. Default value is 30.
2205*/
James Smart3de2a652007-08-02 11:09:59 -04002206LPFC_VPORT_ATTR_R(lun_queue_depth, 30, 1, 128,
2207 "Max number of FCP commands we can queue to a specific LUN");
dea31012005-04-17 16:05:31 -05002208
2209/*
James Smart7dc517d2010-07-14 15:32:10 -04002210# tgt_queue_depth: This parameter is used to limit the number of outstanding
2211# commands per target port. Value range is [10,65535]. Default value is 65535.
2212*/
2213LPFC_VPORT_ATTR_R(tgt_queue_depth, 65535, 10, 65535,
2214 "Max number of FCP commands we can queue to a specific target port");
2215
2216/*
Jamie Wellnitzb28485a2006-02-28 19:25:21 -05002217# hba_queue_depth: This parameter is used to limit the number of outstanding
2218# commands per lpfc HBA. Value range is [32,8192]. If this parameter
2219# value is greater than the maximum number of exchanges supported by the HBA,
2220# then maximum number of exchanges supported by the HBA is used to determine
2221# the hba_queue_depth.
2222*/
2223LPFC_ATTR_R(hba_queue_depth, 8192, 32, 8192,
2224 "Max number of FCP commands we can queue to a lpfc HBA");
2225
2226/*
James Smart92d7f7b2007-06-17 19:56:38 -05002227# peer_port_login: This parameter allows/prevents logins
2228# between peer ports hosted on the same physical port.
2229# When this parameter is set 0 peer ports of same physical port
2230# are not allowed to login to each other.
2231# When this parameter is set 1 peer ports of same physical port
2232# are allowed to login to each other.
2233# Default value of this parameter is 0.
2234*/
James Smart3de2a652007-08-02 11:09:59 -04002235LPFC_VPORT_ATTR_R(peer_port_login, 0, 0, 1,
2236 "Allow peer ports on the same physical port to login to each "
2237 "other.");
James Smart92d7f7b2007-06-17 19:56:38 -05002238
2239/*
James Smart3de2a652007-08-02 11:09:59 -04002240# restrict_login: This parameter allows/prevents logins
James Smart92d7f7b2007-06-17 19:56:38 -05002241# between Virtual Ports and remote initiators.
2242# When this parameter is not set (0) Virtual Ports will accept PLOGIs from
2243# other initiators and will attempt to PLOGI all remote ports.
2244# When this parameter is set (1) Virtual Ports will reject PLOGIs from
2245# remote ports and will not attempt to PLOGI to other initiators.
2246# This parameter does not restrict to the physical port.
2247# This parameter does not restrict logins to Fabric resident remote ports.
2248# Default value of this parameter is 1.
2249*/
James Smart3de2a652007-08-02 11:09:59 -04002250static int lpfc_restrict_login = 1;
2251module_param(lpfc_restrict_login, int, 0);
2252MODULE_PARM_DESC(lpfc_restrict_login,
2253 "Restrict virtual ports login to remote initiators.");
2254lpfc_vport_param_show(restrict_login);
2255
James Smarte59058c2008-08-24 21:49:00 -04002256/**
James Smart3621a712009-04-06 18:47:14 -04002257 * lpfc_restrict_login_init - Set the vport restrict login flag
James Smarte59058c2008-08-24 21:49:00 -04002258 * @vport: lpfc vport structure pointer.
2259 * @val: contains the restrict login value.
2260 *
2261 * Description:
2262 * If val is not in a valid range then log a kernel error message and set
2263 * the vport restrict login to one.
2264 * If the port type is physical clear the restrict login flag and return.
2265 * Else set the restrict login flag to val.
2266 *
2267 * Returns:
2268 * zero if val is in range
2269 * -EINVAL val out of range
2270 **/
James Smart3de2a652007-08-02 11:09:59 -04002271static int
2272lpfc_restrict_login_init(struct lpfc_vport *vport, int val)
2273{
2274 if (val < 0 || val > 1) {
James Smarte8b62012007-08-02 11:10:09 -04002275 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04002276 "0422 lpfc_restrict_login attribute cannot "
James Smarte8b62012007-08-02 11:10:09 -04002277 "be set to %d, allowed range is [0, 1]\n",
2278 val);
James Smart3de2a652007-08-02 11:09:59 -04002279 vport->cfg_restrict_login = 1;
2280 return -EINVAL;
2281 }
2282 if (vport->port_type == LPFC_PHYSICAL_PORT) {
2283 vport->cfg_restrict_login = 0;
2284 return 0;
2285 }
2286 vport->cfg_restrict_login = val;
2287 return 0;
2288}
2289
James Smarte59058c2008-08-24 21:49:00 -04002290/**
James Smart3621a712009-04-06 18:47:14 -04002291 * lpfc_restrict_login_set - Set the vport restrict login flag
James Smarte59058c2008-08-24 21:49:00 -04002292 * @vport: lpfc vport structure pointer.
2293 * @val: contains the restrict login value.
2294 *
2295 * Description:
2296 * If val is not in a valid range then log a kernel error message and set
2297 * the vport restrict login to one.
2298 * If the port type is physical and the val is not zero log a kernel
2299 * error message, clear the restrict login flag and return zero.
2300 * Else set the restrict login flag to val.
2301 *
2302 * Returns:
2303 * zero if val is in range
2304 * -EINVAL val out of range
2305 **/
James Smart3de2a652007-08-02 11:09:59 -04002306static int
2307lpfc_restrict_login_set(struct lpfc_vport *vport, int val)
2308{
2309 if (val < 0 || val > 1) {
James Smarte8b62012007-08-02 11:10:09 -04002310 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04002311 "0425 lpfc_restrict_login attribute cannot "
James Smarte8b62012007-08-02 11:10:09 -04002312 "be set to %d, allowed range is [0, 1]\n",
2313 val);
James Smart3de2a652007-08-02 11:09:59 -04002314 vport->cfg_restrict_login = 1;
2315 return -EINVAL;
2316 }
2317 if (vport->port_type == LPFC_PHYSICAL_PORT && val != 0) {
James Smarte8b62012007-08-02 11:10:09 -04002318 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
2319 "0468 lpfc_restrict_login must be 0 for "
2320 "Physical ports.\n");
James Smart3de2a652007-08-02 11:09:59 -04002321 vport->cfg_restrict_login = 0;
2322 return 0;
2323 }
2324 vport->cfg_restrict_login = val;
2325 return 0;
2326}
2327lpfc_vport_param_store(restrict_login);
Tony Jonesee959b02008-02-22 00:13:36 +01002328static DEVICE_ATTR(lpfc_restrict_login, S_IRUGO | S_IWUSR,
2329 lpfc_restrict_login_show, lpfc_restrict_login_store);
James Smart92d7f7b2007-06-17 19:56:38 -05002330
2331/*
dea31012005-04-17 16:05:31 -05002332# Some disk devices have a "select ID" or "select Target" capability.
2333# From a protocol standpoint "select ID" usually means select the
2334# Fibre channel "ALPA". In the FC-AL Profile there is an "informative
2335# annex" which contains a table that maps a "select ID" (a number
2336# between 0 and 7F) to an ALPA. By default, for compatibility with
2337# older drivers, the lpfc driver scans this table from low ALPA to high
2338# ALPA.
2339#
2340# Turning on the scan-down variable (on = 1, off = 0) will
2341# cause the lpfc driver to use an inverted table, effectively
2342# scanning ALPAs from high to low. Value range is [0,1]. Default value is 1.
2343#
2344# (Note: This "select ID" functionality is a LOOP ONLY characteristic
2345# and will not work across a fabric. Also this parameter will take
2346# effect only in the case when ALPA map is not available.)
2347*/
James Smart3de2a652007-08-02 11:09:59 -04002348LPFC_VPORT_ATTR_R(scan_down, 1, 0, 1,
2349 "Start scanning for devices from highest ALPA to lowest");
dea31012005-04-17 16:05:31 -05002350
2351/*
dea31012005-04-17 16:05:31 -05002352# lpfc_topology: link topology for init link
2353# 0x0 = attempt loop mode then point-to-point
Jamie Wellnitz367c2712006-02-28 19:25:32 -05002354# 0x01 = internal loopback mode
dea31012005-04-17 16:05:31 -05002355# 0x02 = attempt point-to-point mode only
2356# 0x04 = attempt loop mode only
2357# 0x06 = attempt point-to-point mode then loop
2358# Set point-to-point mode if you want to run as an N_Port.
2359# Set loop mode if you want to run as an NL_Port. Value range is [0,0x6].
2360# Default value is 0.
2361*/
James Smarte59058c2008-08-24 21:49:00 -04002362
2363/**
James Smart3621a712009-04-06 18:47:14 -04002364 * lpfc_topology_set - Set the adapters topology field
James Smarte59058c2008-08-24 21:49:00 -04002365 * @phba: lpfc_hba pointer.
2366 * @val: topology value.
2367 *
2368 * Description:
2369 * If val is in a valid range then set the adapter's topology field and
2370 * issue a lip; if the lip fails reset the topology to the old value.
2371 *
2372 * If the value is not in range log a kernel error message and return an error.
2373 *
2374 * Returns:
2375 * zero if val is in range and lip okay
2376 * non-zero return value from lpfc_issue_lip()
2377 * -EINVAL val out of range
2378 **/
James Smarta257bf92009-04-06 18:48:10 -04002379static ssize_t
2380lpfc_topology_store(struct device *dev, struct device_attribute *attr,
2381 const char *buf, size_t count)
James Smart83108bd2008-01-11 01:53:09 -05002382{
James Smarta257bf92009-04-06 18:48:10 -04002383 struct Scsi_Host *shost = class_to_shost(dev);
2384 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2385 struct lpfc_hba *phba = vport->phba;
2386 int val = 0;
2387 int nolip = 0;
2388 const char *val_buf = buf;
James Smart83108bd2008-01-11 01:53:09 -05002389 int err;
2390 uint32_t prev_val;
James Smarta257bf92009-04-06 18:48:10 -04002391
2392 if (!strncmp(buf, "nolip ", strlen("nolip "))) {
2393 nolip = 1;
2394 val_buf = &buf[strlen("nolip ")];
2395 }
2396
2397 if (!isdigit(val_buf[0]))
2398 return -EINVAL;
2399 if (sscanf(val_buf, "%i", &val) != 1)
2400 return -EINVAL;
2401
James Smart83108bd2008-01-11 01:53:09 -05002402 if (val >= 0 && val <= 6) {
2403 prev_val = phba->cfg_topology;
2404 phba->cfg_topology = val;
James Smarta257bf92009-04-06 18:48:10 -04002405 if (nolip)
2406 return strlen(buf);
2407
James Smart83108bd2008-01-11 01:53:09 -05002408 err = lpfc_issue_lip(lpfc_shost_from_vport(phba->pport));
James Smarta257bf92009-04-06 18:48:10 -04002409 if (err) {
James Smart83108bd2008-01-11 01:53:09 -05002410 phba->cfg_topology = prev_val;
James Smarta257bf92009-04-06 18:48:10 -04002411 return -EINVAL;
2412 } else
2413 return strlen(buf);
James Smart83108bd2008-01-11 01:53:09 -05002414 }
2415 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2416 "%d:0467 lpfc_topology attribute cannot be set to %d, "
2417 "allowed range is [0, 6]\n",
2418 phba->brd_no, val);
2419 return -EINVAL;
2420}
2421static int lpfc_topology = 0;
2422module_param(lpfc_topology, int, 0);
2423MODULE_PARM_DESC(lpfc_topology, "Select Fibre Channel topology");
2424lpfc_param_show(topology)
2425lpfc_param_init(topology, 0, 0, 6)
Tony Jonesee959b02008-02-22 00:13:36 +01002426static DEVICE_ATTR(lpfc_topology, S_IRUGO | S_IWUSR,
James Smart83108bd2008-01-11 01:53:09 -05002427 lpfc_topology_show, lpfc_topology_store);
dea31012005-04-17 16:05:31 -05002428
James Smart21e9a0a2009-05-22 14:53:21 -04002429/**
2430 * lpfc_static_vport_show: Read callback function for
2431 * lpfc_static_vport sysfs file.
2432 * @dev: Pointer to class device object.
2433 * @attr: device attribute structure.
2434 * @buf: Data buffer.
2435 *
2436 * This function is the read call back function for
2437 * lpfc_static_vport sysfs file. The lpfc_static_vport
2438 * sysfs file report the mageability of the vport.
2439 **/
2440static ssize_t
2441lpfc_static_vport_show(struct device *dev, struct device_attribute *attr,
2442 char *buf)
2443{
2444 struct Scsi_Host *shost = class_to_shost(dev);
2445 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2446 if (vport->vport_flag & STATIC_VPORT)
2447 sprintf(buf, "1\n");
2448 else
2449 sprintf(buf, "0\n");
2450
2451 return strlen(buf);
2452}
2453
2454/*
2455 * Sysfs attribute to control the statistical data collection.
2456 */
2457static DEVICE_ATTR(lpfc_static_vport, S_IRUGO,
2458 lpfc_static_vport_show, NULL);
James Smartea2151b2008-09-07 11:52:10 -04002459
2460/**
James Smart3621a712009-04-06 18:47:14 -04002461 * lpfc_stat_data_ctrl_store - write call back for lpfc_stat_data_ctrl sysfs file
James Smartea2151b2008-09-07 11:52:10 -04002462 * @dev: Pointer to class device.
2463 * @buf: Data buffer.
2464 * @count: Size of the data buffer.
2465 *
2466 * This function get called when an user write to the lpfc_stat_data_ctrl
2467 * sysfs file. This function parse the command written to the sysfs file
2468 * and take appropriate action. These commands are used for controlling
2469 * driver statistical data collection.
2470 * Following are the command this function handles.
2471 *
2472 * setbucket <bucket_type> <base> <step>
2473 * = Set the latency buckets.
2474 * destroybucket = destroy all the buckets.
2475 * start = start data collection
2476 * stop = stop data collection
2477 * reset = reset the collected data
2478 **/
2479static ssize_t
2480lpfc_stat_data_ctrl_store(struct device *dev, struct device_attribute *attr,
2481 const char *buf, size_t count)
2482{
2483 struct Scsi_Host *shost = class_to_shost(dev);
2484 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2485 struct lpfc_hba *phba = vport->phba;
2486#define LPFC_MAX_DATA_CTRL_LEN 1024
2487 static char bucket_data[LPFC_MAX_DATA_CTRL_LEN];
2488 unsigned long i;
2489 char *str_ptr, *token;
2490 struct lpfc_vport **vports;
2491 struct Scsi_Host *v_shost;
2492 char *bucket_type_str, *base_str, *step_str;
2493 unsigned long base, step, bucket_type;
2494
2495 if (!strncmp(buf, "setbucket", strlen("setbucket"))) {
James Smarta257bf92009-04-06 18:48:10 -04002496 if (strlen(buf) > (LPFC_MAX_DATA_CTRL_LEN - 1))
James Smartea2151b2008-09-07 11:52:10 -04002497 return -EINVAL;
2498
2499 strcpy(bucket_data, buf);
2500 str_ptr = &bucket_data[0];
2501 /* Ignore this token - this is command token */
2502 token = strsep(&str_ptr, "\t ");
2503 if (!token)
2504 return -EINVAL;
2505
2506 bucket_type_str = strsep(&str_ptr, "\t ");
2507 if (!bucket_type_str)
2508 return -EINVAL;
2509
2510 if (!strncmp(bucket_type_str, "linear", strlen("linear")))
2511 bucket_type = LPFC_LINEAR_BUCKET;
2512 else if (!strncmp(bucket_type_str, "power2", strlen("power2")))
2513 bucket_type = LPFC_POWER2_BUCKET;
2514 else
2515 return -EINVAL;
2516
2517 base_str = strsep(&str_ptr, "\t ");
2518 if (!base_str)
2519 return -EINVAL;
2520 base = simple_strtoul(base_str, NULL, 0);
2521
2522 step_str = strsep(&str_ptr, "\t ");
2523 if (!step_str)
2524 return -EINVAL;
2525 step = simple_strtoul(step_str, NULL, 0);
2526 if (!step)
2527 return -EINVAL;
2528
2529 /* Block the data collection for every vport */
2530 vports = lpfc_create_vport_work_array(phba);
2531 if (vports == NULL)
2532 return -ENOMEM;
2533
James Smartf4b4c682009-05-22 14:53:12 -04002534 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smartea2151b2008-09-07 11:52:10 -04002535 v_shost = lpfc_shost_from_vport(vports[i]);
2536 spin_lock_irq(v_shost->host_lock);
2537 /* Block and reset data collection */
2538 vports[i]->stat_data_blocked = 1;
2539 if (vports[i]->stat_data_enabled)
2540 lpfc_vport_reset_stat_data(vports[i]);
2541 spin_unlock_irq(v_shost->host_lock);
2542 }
2543
2544 /* Set the bucket attributes */
2545 phba->bucket_type = bucket_type;
2546 phba->bucket_base = base;
2547 phba->bucket_step = step;
2548
James Smartf4b4c682009-05-22 14:53:12 -04002549 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smartea2151b2008-09-07 11:52:10 -04002550 v_shost = lpfc_shost_from_vport(vports[i]);
2551
2552 /* Unblock data collection */
2553 spin_lock_irq(v_shost->host_lock);
2554 vports[i]->stat_data_blocked = 0;
2555 spin_unlock_irq(v_shost->host_lock);
2556 }
2557 lpfc_destroy_vport_work_array(phba, vports);
2558 return strlen(buf);
2559 }
2560
2561 if (!strncmp(buf, "destroybucket", strlen("destroybucket"))) {
2562 vports = lpfc_create_vport_work_array(phba);
2563 if (vports == NULL)
2564 return -ENOMEM;
2565
James Smartf4b4c682009-05-22 14:53:12 -04002566 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smartea2151b2008-09-07 11:52:10 -04002567 v_shost = lpfc_shost_from_vport(vports[i]);
2568 spin_lock_irq(shost->host_lock);
2569 vports[i]->stat_data_blocked = 1;
2570 lpfc_free_bucket(vport);
2571 vport->stat_data_enabled = 0;
2572 vports[i]->stat_data_blocked = 0;
2573 spin_unlock_irq(shost->host_lock);
2574 }
2575 lpfc_destroy_vport_work_array(phba, vports);
2576 phba->bucket_type = LPFC_NO_BUCKET;
2577 phba->bucket_base = 0;
2578 phba->bucket_step = 0;
2579 return strlen(buf);
2580 }
2581
2582 if (!strncmp(buf, "start", strlen("start"))) {
2583 /* If no buckets configured return error */
2584 if (phba->bucket_type == LPFC_NO_BUCKET)
2585 return -EINVAL;
2586 spin_lock_irq(shost->host_lock);
2587 if (vport->stat_data_enabled) {
2588 spin_unlock_irq(shost->host_lock);
2589 return strlen(buf);
2590 }
2591 lpfc_alloc_bucket(vport);
2592 vport->stat_data_enabled = 1;
2593 spin_unlock_irq(shost->host_lock);
2594 return strlen(buf);
2595 }
2596
2597 if (!strncmp(buf, "stop", strlen("stop"))) {
2598 spin_lock_irq(shost->host_lock);
2599 if (vport->stat_data_enabled == 0) {
2600 spin_unlock_irq(shost->host_lock);
2601 return strlen(buf);
2602 }
2603 lpfc_free_bucket(vport);
2604 vport->stat_data_enabled = 0;
2605 spin_unlock_irq(shost->host_lock);
2606 return strlen(buf);
2607 }
2608
2609 if (!strncmp(buf, "reset", strlen("reset"))) {
2610 if ((phba->bucket_type == LPFC_NO_BUCKET)
2611 || !vport->stat_data_enabled)
2612 return strlen(buf);
2613 spin_lock_irq(shost->host_lock);
2614 vport->stat_data_blocked = 1;
2615 lpfc_vport_reset_stat_data(vport);
2616 vport->stat_data_blocked = 0;
2617 spin_unlock_irq(shost->host_lock);
2618 return strlen(buf);
2619 }
2620 return -EINVAL;
2621}
2622
2623
2624/**
James Smart3621a712009-04-06 18:47:14 -04002625 * lpfc_stat_data_ctrl_show - Read function for lpfc_stat_data_ctrl sysfs file
James Smartea2151b2008-09-07 11:52:10 -04002626 * @dev: Pointer to class device object.
2627 * @buf: Data buffer.
2628 *
2629 * This function is the read call back function for
2630 * lpfc_stat_data_ctrl sysfs file. This function report the
2631 * current statistical data collection state.
2632 **/
2633static ssize_t
2634lpfc_stat_data_ctrl_show(struct device *dev, struct device_attribute *attr,
2635 char *buf)
2636{
2637 struct Scsi_Host *shost = class_to_shost(dev);
2638 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2639 struct lpfc_hba *phba = vport->phba;
2640 int index = 0;
2641 int i;
2642 char *bucket_type;
2643 unsigned long bucket_value;
2644
2645 switch (phba->bucket_type) {
2646 case LPFC_LINEAR_BUCKET:
2647 bucket_type = "linear";
2648 break;
2649 case LPFC_POWER2_BUCKET:
2650 bucket_type = "power2";
2651 break;
2652 default:
2653 bucket_type = "No Bucket";
2654 break;
2655 }
2656
2657 sprintf(&buf[index], "Statistical Data enabled :%d, "
2658 "blocked :%d, Bucket type :%s, Bucket base :%d,"
2659 " Bucket step :%d\nLatency Ranges :",
2660 vport->stat_data_enabled, vport->stat_data_blocked,
2661 bucket_type, phba->bucket_base, phba->bucket_step);
2662 index = strlen(buf);
2663 if (phba->bucket_type != LPFC_NO_BUCKET) {
2664 for (i = 0; i < LPFC_MAX_BUCKET_COUNT; i++) {
2665 if (phba->bucket_type == LPFC_LINEAR_BUCKET)
2666 bucket_value = phba->bucket_base +
2667 phba->bucket_step * i;
2668 else
2669 bucket_value = phba->bucket_base +
2670 (1 << i) * phba->bucket_step;
2671
2672 if (index + 10 > PAGE_SIZE)
2673 break;
2674 sprintf(&buf[index], "%08ld ", bucket_value);
2675 index = strlen(buf);
2676 }
2677 }
2678 sprintf(&buf[index], "\n");
2679 return strlen(buf);
2680}
2681
2682/*
2683 * Sysfs attribute to control the statistical data collection.
2684 */
2685static DEVICE_ATTR(lpfc_stat_data_ctrl, S_IRUGO | S_IWUSR,
2686 lpfc_stat_data_ctrl_show, lpfc_stat_data_ctrl_store);
2687
2688/*
2689 * lpfc_drvr_stat_data: sysfs attr to get driver statistical data.
2690 */
2691
2692/*
2693 * Each Bucket takes 11 characters and 1 new line + 17 bytes WWN
2694 * for each target.
2695 */
2696#define STAT_DATA_SIZE_PER_TARGET(NUM_BUCKETS) ((NUM_BUCKETS) * 11 + 18)
2697#define MAX_STAT_DATA_SIZE_PER_TARGET \
2698 STAT_DATA_SIZE_PER_TARGET(LPFC_MAX_BUCKET_COUNT)
2699
2700
2701/**
James Smart3621a712009-04-06 18:47:14 -04002702 * sysfs_drvr_stat_data_read - Read function for lpfc_drvr_stat_data attribute
Chris Wright2c3c8be2010-05-12 18:28:57 -07002703 * @filp: sysfs file
James Smartea2151b2008-09-07 11:52:10 -04002704 * @kobj: Pointer to the kernel object
2705 * @bin_attr: Attribute object
2706 * @buff: Buffer pointer
2707 * @off: File offset
2708 * @count: Buffer size
2709 *
2710 * This function is the read call back function for lpfc_drvr_stat_data
2711 * sysfs file. This function export the statistical data to user
2712 * applications.
2713 **/
2714static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07002715sysfs_drvr_stat_data_read(struct file *filp, struct kobject *kobj,
2716 struct bin_attribute *bin_attr,
James Smartea2151b2008-09-07 11:52:10 -04002717 char *buf, loff_t off, size_t count)
2718{
2719 struct device *dev = container_of(kobj, struct device,
2720 kobj);
2721 struct Scsi_Host *shost = class_to_shost(dev);
2722 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2723 struct lpfc_hba *phba = vport->phba;
2724 int i = 0, index = 0;
2725 unsigned long nport_index;
2726 struct lpfc_nodelist *ndlp = NULL;
2727 nport_index = (unsigned long)off /
2728 MAX_STAT_DATA_SIZE_PER_TARGET;
2729
2730 if (!vport->stat_data_enabled || vport->stat_data_blocked
2731 || (phba->bucket_type == LPFC_NO_BUCKET))
2732 return 0;
2733
2734 spin_lock_irq(shost->host_lock);
2735 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
2736 if (!NLP_CHK_NODE_ACT(ndlp) || !ndlp->lat_data)
2737 continue;
2738
2739 if (nport_index > 0) {
2740 nport_index--;
2741 continue;
2742 }
2743
2744 if ((index + MAX_STAT_DATA_SIZE_PER_TARGET)
2745 > count)
2746 break;
2747
2748 if (!ndlp->lat_data)
2749 continue;
2750
2751 /* Print the WWN */
2752 sprintf(&buf[index], "%02x%02x%02x%02x%02x%02x%02x%02x:",
2753 ndlp->nlp_portname.u.wwn[0],
2754 ndlp->nlp_portname.u.wwn[1],
2755 ndlp->nlp_portname.u.wwn[2],
2756 ndlp->nlp_portname.u.wwn[3],
2757 ndlp->nlp_portname.u.wwn[4],
2758 ndlp->nlp_portname.u.wwn[5],
2759 ndlp->nlp_portname.u.wwn[6],
2760 ndlp->nlp_portname.u.wwn[7]);
2761
2762 index = strlen(buf);
2763
2764 for (i = 0; i < LPFC_MAX_BUCKET_COUNT; i++) {
2765 sprintf(&buf[index], "%010u,",
2766 ndlp->lat_data[i].cmd_count);
2767 index = strlen(buf);
2768 }
2769 sprintf(&buf[index], "\n");
2770 index = strlen(buf);
2771 }
2772 spin_unlock_irq(shost->host_lock);
2773 return index;
2774}
2775
2776static struct bin_attribute sysfs_drvr_stat_data_attr = {
2777 .attr = {
2778 .name = "lpfc_drvr_stat_data",
2779 .mode = S_IRUSR,
James Smartea2151b2008-09-07 11:52:10 -04002780 },
2781 .size = LPFC_MAX_TARGET * MAX_STAT_DATA_SIZE_PER_TARGET,
2782 .read = sysfs_drvr_stat_data_read,
2783 .write = NULL,
2784};
2785
dea31012005-04-17 16:05:31 -05002786/*
2787# lpfc_link_speed: Link speed selection for initializing the Fibre Channel
2788# connection.
2789# 0 = auto select (default)
2790# 1 = 1 Gigabaud
2791# 2 = 2 Gigabaud
2792# 4 = 4 Gigabaud
James Smartb87eab32007-04-25 09:53:28 -04002793# 8 = 8 Gigabaud
2794# Value range is [0,8]. Default value is 0.
dea31012005-04-17 16:05:31 -05002795*/
James Smarte59058c2008-08-24 21:49:00 -04002796
2797/**
James Smart3621a712009-04-06 18:47:14 -04002798 * lpfc_link_speed_set - Set the adapters link speed
James Smarte59058c2008-08-24 21:49:00 -04002799 * @phba: lpfc_hba pointer.
2800 * @val: link speed value.
2801 *
2802 * Description:
2803 * If val is in a valid range then set the adapter's link speed field and
2804 * issue a lip; if the lip fails reset the link speed to the old value.
2805 *
2806 * Notes:
2807 * If the value is not in range log a kernel error message and return an error.
2808 *
2809 * Returns:
2810 * zero if val is in range and lip okay.
2811 * non-zero return value from lpfc_issue_lip()
2812 * -EINVAL val out of range
2813 **/
James Smarta257bf92009-04-06 18:48:10 -04002814static ssize_t
2815lpfc_link_speed_store(struct device *dev, struct device_attribute *attr,
2816 const char *buf, size_t count)
James Smart83108bd2008-01-11 01:53:09 -05002817{
James Smarta257bf92009-04-06 18:48:10 -04002818 struct Scsi_Host *shost = class_to_shost(dev);
2819 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2820 struct lpfc_hba *phba = vport->phba;
2821 int val = 0;
2822 int nolip = 0;
2823 const char *val_buf = buf;
James Smart83108bd2008-01-11 01:53:09 -05002824 int err;
2825 uint32_t prev_val;
2826
James Smarta257bf92009-04-06 18:48:10 -04002827 if (!strncmp(buf, "nolip ", strlen("nolip "))) {
2828 nolip = 1;
2829 val_buf = &buf[strlen("nolip ")];
2830 }
2831
2832 if (!isdigit(val_buf[0]))
2833 return -EINVAL;
2834 if (sscanf(val_buf, "%i", &val) != 1)
2835 return -EINVAL;
2836
James Smart83108bd2008-01-11 01:53:09 -05002837 if (((val == LINK_SPEED_1G) && !(phba->lmt & LMT_1Gb)) ||
2838 ((val == LINK_SPEED_2G) && !(phba->lmt & LMT_2Gb)) ||
2839 ((val == LINK_SPEED_4G) && !(phba->lmt & LMT_4Gb)) ||
2840 ((val == LINK_SPEED_8G) && !(phba->lmt & LMT_8Gb)) ||
2841 ((val == LINK_SPEED_10G) && !(phba->lmt & LMT_10Gb)))
2842 return -EINVAL;
2843
James Smarta257bf92009-04-06 18:48:10 -04002844 if ((val >= 0 && val <= 8)
James Smart83108bd2008-01-11 01:53:09 -05002845 && (LPFC_LINK_SPEED_BITMAP & (1 << val))) {
2846 prev_val = phba->cfg_link_speed;
2847 phba->cfg_link_speed = val;
James Smarta257bf92009-04-06 18:48:10 -04002848 if (nolip)
2849 return strlen(buf);
2850
James Smart83108bd2008-01-11 01:53:09 -05002851 err = lpfc_issue_lip(lpfc_shost_from_vport(phba->pport));
James Smarta257bf92009-04-06 18:48:10 -04002852 if (err) {
James Smart83108bd2008-01-11 01:53:09 -05002853 phba->cfg_link_speed = prev_val;
James Smarta257bf92009-04-06 18:48:10 -04002854 return -EINVAL;
2855 } else
2856 return strlen(buf);
James Smart83108bd2008-01-11 01:53:09 -05002857 }
2858
2859 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2860 "%d:0469 lpfc_link_speed attribute cannot be set to %d, "
2861 "allowed range is [0, 8]\n",
2862 phba->brd_no, val);
2863 return -EINVAL;
2864}
2865
2866static int lpfc_link_speed = 0;
2867module_param(lpfc_link_speed, int, 0);
2868MODULE_PARM_DESC(lpfc_link_speed, "Select link speed");
2869lpfc_param_show(link_speed)
James Smarte59058c2008-08-24 21:49:00 -04002870
2871/**
James Smart3621a712009-04-06 18:47:14 -04002872 * lpfc_link_speed_init - Set the adapters link speed
James Smarte59058c2008-08-24 21:49:00 -04002873 * @phba: lpfc_hba pointer.
2874 * @val: link speed value.
2875 *
2876 * Description:
2877 * If val is in a valid range then set the adapter's link speed field.
2878 *
2879 * Notes:
2880 * If the value is not in range log a kernel error message, clear the link
2881 * speed and return an error.
2882 *
2883 * Returns:
2884 * zero if val saved.
2885 * -EINVAL val out of range
2886 **/
James Smart83108bd2008-01-11 01:53:09 -05002887static int
2888lpfc_link_speed_init(struct lpfc_hba *phba, int val)
2889{
2890 if ((val >= 0 && val <= LPFC_MAX_LINK_SPEED)
2891 && (LPFC_LINK_SPEED_BITMAP & (1 << val))) {
2892 phba->cfg_link_speed = val;
2893 return 0;
2894 }
2895 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04002896 "0405 lpfc_link_speed attribute cannot "
James Smart83108bd2008-01-11 01:53:09 -05002897 "be set to %d, allowed values are "
2898 "["LPFC_LINK_SPEED_STRING"]\n", val);
2899 phba->cfg_link_speed = 0;
2900 return -EINVAL;
2901}
2902
Tony Jonesee959b02008-02-22 00:13:36 +01002903static DEVICE_ATTR(lpfc_link_speed, S_IRUGO | S_IWUSR,
James Smart83108bd2008-01-11 01:53:09 -05002904 lpfc_link_speed_show, lpfc_link_speed_store);
dea31012005-04-17 16:05:31 -05002905
2906/*
James Smart0d878412009-10-02 15:16:56 -04002907# lpfc_aer_support: Support PCIe device Advanced Error Reporting (AER)
2908# 0 = aer disabled or not supported
2909# 1 = aer supported and enabled (default)
2910# Value range is [0,1]. Default value is 1.
2911*/
2912
2913/**
2914 * lpfc_aer_support_store - Set the adapter for aer support
2915 *
2916 * @dev: class device that is converted into a Scsi_host.
2917 * @attr: device attribute, not used.
2918 * @buf: containing the string "selective".
2919 * @count: unused variable.
2920 *
2921 * Description:
2922 * If the val is 1 and currently the device's AER capability was not
2923 * enabled, invoke the kernel's enable AER helper routine, trying to
2924 * enable the device's AER capability. If the helper routine enabling
2925 * AER returns success, update the device's cfg_aer_support flag to
2926 * indicate AER is supported by the device; otherwise, if the device
2927 * AER capability is already enabled to support AER, then do nothing.
2928 *
2929 * If the val is 0 and currently the device's AER support was enabled,
2930 * invoke the kernel's disable AER helper routine. After that, update
2931 * the device's cfg_aer_support flag to indicate AER is not supported
2932 * by the device; otherwise, if the device AER capability is already
2933 * disabled from supporting AER, then do nothing.
2934 *
2935 * Returns:
2936 * length of the buf on success if val is in range the intended mode
2937 * is supported.
2938 * -EINVAL if val out of range or intended mode is not supported.
2939 **/
2940static ssize_t
2941lpfc_aer_support_store(struct device *dev, struct device_attribute *attr,
2942 const char *buf, size_t count)
2943{
2944 struct Scsi_Host *shost = class_to_shost(dev);
2945 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
2946 struct lpfc_hba *phba = vport->phba;
2947 int val = 0, rc = -EINVAL;
2948
2949 if (!isdigit(buf[0]))
2950 return -EINVAL;
2951 if (sscanf(buf, "%i", &val) != 1)
2952 return -EINVAL;
2953
2954 switch (val) {
2955 case 0:
2956 if (phba->hba_flag & HBA_AER_ENABLED) {
2957 rc = pci_disable_pcie_error_reporting(phba->pcidev);
2958 if (!rc) {
2959 spin_lock_irq(&phba->hbalock);
2960 phba->hba_flag &= ~HBA_AER_ENABLED;
2961 spin_unlock_irq(&phba->hbalock);
2962 phba->cfg_aer_support = 0;
2963 rc = strlen(buf);
2964 } else
James Smart891478a2009-11-18 15:40:23 -05002965 rc = -EPERM;
2966 } else {
James Smart0d878412009-10-02 15:16:56 -04002967 phba->cfg_aer_support = 0;
James Smart891478a2009-11-18 15:40:23 -05002968 rc = strlen(buf);
2969 }
James Smart0d878412009-10-02 15:16:56 -04002970 break;
2971 case 1:
2972 if (!(phba->hba_flag & HBA_AER_ENABLED)) {
2973 rc = pci_enable_pcie_error_reporting(phba->pcidev);
2974 if (!rc) {
2975 spin_lock_irq(&phba->hbalock);
2976 phba->hba_flag |= HBA_AER_ENABLED;
2977 spin_unlock_irq(&phba->hbalock);
2978 phba->cfg_aer_support = 1;
2979 rc = strlen(buf);
2980 } else
James Smart891478a2009-11-18 15:40:23 -05002981 rc = -EPERM;
2982 } else {
James Smart0d878412009-10-02 15:16:56 -04002983 phba->cfg_aer_support = 1;
James Smart891478a2009-11-18 15:40:23 -05002984 rc = strlen(buf);
2985 }
James Smart0d878412009-10-02 15:16:56 -04002986 break;
2987 default:
2988 rc = -EINVAL;
2989 break;
2990 }
2991 return rc;
2992}
2993
2994static int lpfc_aer_support = 1;
2995module_param(lpfc_aer_support, int, 1);
2996MODULE_PARM_DESC(lpfc_aer_support, "Enable PCIe device AER support");
2997lpfc_param_show(aer_support)
2998
2999/**
3000 * lpfc_aer_support_init - Set the initial adapters aer support flag
3001 * @phba: lpfc_hba pointer.
3002 * @val: link speed value.
3003 *
3004 * Description:
3005 * If val is in a valid range [0,1], then set the adapter's initial
3006 * cfg_aer_support field. It will be up to the driver's probe_one
3007 * routine to determine whether the device's AER support can be set
3008 * or not.
3009 *
3010 * Notes:
3011 * If the value is not in range log a kernel error message, and
3012 * choose the default value of setting AER support and return.
3013 *
3014 * Returns:
3015 * zero if val saved.
3016 * -EINVAL val out of range
3017 **/
3018static int
3019lpfc_aer_support_init(struct lpfc_hba *phba, int val)
3020{
3021 if (val == 0 || val == 1) {
3022 phba->cfg_aer_support = val;
3023 return 0;
3024 }
3025 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3026 "2712 lpfc_aer_support attribute value %d out "
3027 "of range, allowed values are 0|1, setting it "
3028 "to default value of 1\n", val);
James Smart891478a2009-11-18 15:40:23 -05003029 /* By default, try to enable AER on a device */
James Smart0d878412009-10-02 15:16:56 -04003030 phba->cfg_aer_support = 1;
3031 return -EINVAL;
3032}
3033
3034static DEVICE_ATTR(lpfc_aer_support, S_IRUGO | S_IWUSR,
3035 lpfc_aer_support_show, lpfc_aer_support_store);
3036
3037/**
3038 * lpfc_aer_cleanup_state - Clean up aer state to the aer enabled device
3039 * @dev: class device that is converted into a Scsi_host.
3040 * @attr: device attribute, not used.
3041 * @buf: containing the string "selective".
3042 * @count: unused variable.
3043 *
3044 * Description:
3045 * If the @buf contains 1 and the device currently has the AER support
3046 * enabled, then invokes the kernel AER helper routine
3047 * pci_cleanup_aer_uncorrect_error_status to clean up the uncorrectable
3048 * error status register.
3049 *
3050 * Notes:
3051 *
3052 * Returns:
3053 * -EINVAL if the buf does not contain the 1 or the device is not currently
3054 * enabled with the AER support.
3055 **/
3056static ssize_t
3057lpfc_aer_cleanup_state(struct device *dev, struct device_attribute *attr,
3058 const char *buf, size_t count)
3059{
3060 struct Scsi_Host *shost = class_to_shost(dev);
3061 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3062 struct lpfc_hba *phba = vport->phba;
3063 int val, rc = -1;
3064
3065 if (!isdigit(buf[0]))
3066 return -EINVAL;
3067 if (sscanf(buf, "%i", &val) != 1)
3068 return -EINVAL;
James Smart891478a2009-11-18 15:40:23 -05003069 if (val != 1)
3070 return -EINVAL;
James Smart0d878412009-10-02 15:16:56 -04003071
James Smart891478a2009-11-18 15:40:23 -05003072 if (phba->hba_flag & HBA_AER_ENABLED)
James Smart0d878412009-10-02 15:16:56 -04003073 rc = pci_cleanup_aer_uncorrect_error_status(phba->pcidev);
3074
3075 if (rc == 0)
3076 return strlen(buf);
3077 else
James Smart891478a2009-11-18 15:40:23 -05003078 return -EPERM;
James Smart0d878412009-10-02 15:16:56 -04003079}
3080
3081static DEVICE_ATTR(lpfc_aer_state_cleanup, S_IWUSR, NULL,
3082 lpfc_aer_cleanup_state);
3083
3084/*
dea31012005-04-17 16:05:31 -05003085# lpfc_fcp_class: Determines FC class to use for the FCP protocol.
3086# Value range is [2,3]. Default value is 3.
3087*/
James Smart3de2a652007-08-02 11:09:59 -04003088LPFC_VPORT_ATTR_R(fcp_class, 3, 2, 3,
3089 "Select Fibre Channel class of service for FCP sequences");
dea31012005-04-17 16:05:31 -05003090
3091/*
3092# lpfc_use_adisc: Use ADISC for FCP rediscovery instead of PLOGI. Value range
3093# is [0,1]. Default value is 0.
3094*/
James Smart3de2a652007-08-02 11:09:59 -04003095LPFC_VPORT_ATTR_RW(use_adisc, 0, 0, 1,
3096 "Use ADISC on rediscovery to authenticate FCP devices");
dea31012005-04-17 16:05:31 -05003097
3098/*
James Smart977b5a02008-09-07 11:52:04 -04003099# lpfc_max_scsicmpl_time: Use scsi command completion time to control I/O queue
3100# depth. Default value is 0. When the value of this parameter is zero the
3101# SCSI command completion time is not used for controlling I/O queue depth. When
3102# the parameter is set to a non-zero value, the I/O queue depth is controlled
3103# to limit the I/O completion time to the parameter value.
3104# The value is set in milliseconds.
3105*/
3106static int lpfc_max_scsicmpl_time;
3107module_param(lpfc_max_scsicmpl_time, int, 0);
3108MODULE_PARM_DESC(lpfc_max_scsicmpl_time,
3109 "Use command completion time to control queue depth");
3110lpfc_vport_param_show(max_scsicmpl_time);
3111lpfc_vport_param_init(max_scsicmpl_time, 0, 0, 60000);
3112static int
3113lpfc_max_scsicmpl_time_set(struct lpfc_vport *vport, int val)
3114{
3115 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3116 struct lpfc_nodelist *ndlp, *next_ndlp;
3117
3118 if (val == vport->cfg_max_scsicmpl_time)
3119 return 0;
3120 if ((val < 0) || (val > 60000))
3121 return -EINVAL;
3122 vport->cfg_max_scsicmpl_time = val;
3123
3124 spin_lock_irq(shost->host_lock);
3125 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
3126 if (!NLP_CHK_NODE_ACT(ndlp))
3127 continue;
3128 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
3129 continue;
James Smart7dc517d2010-07-14 15:32:10 -04003130 ndlp->cmd_qdepth = vport->cfg_tgt_queue_depth;
James Smart977b5a02008-09-07 11:52:04 -04003131 }
3132 spin_unlock_irq(shost->host_lock);
3133 return 0;
3134}
3135lpfc_vport_param_store(max_scsicmpl_time);
3136static DEVICE_ATTR(lpfc_max_scsicmpl_time, S_IRUGO | S_IWUSR,
3137 lpfc_max_scsicmpl_time_show,
3138 lpfc_max_scsicmpl_time_store);
3139
3140/*
dea31012005-04-17 16:05:31 -05003141# lpfc_ack0: Use ACK0, instead of ACK1 for class 2 acknowledgement. Value
3142# range is [0,1]. Default value is 0.
3143*/
3144LPFC_ATTR_R(ack0, 0, 0, 1, "Enable ACK0 support");
3145
3146/*
3147# lpfc_cr_delay & lpfc_cr_count: Default values for I/O colaesing
3148# cr_delay (msec) or cr_count outstanding commands. cr_delay can take
James Smart7054a602007-04-25 09:52:34 -04003149# value [0,63]. cr_count can take value [1,255]. Default value of cr_delay
dea31012005-04-17 16:05:31 -05003150# is 0. Default value of cr_count is 1. The cr_count feature is disabled if
3151# cr_delay is set to 0.
3152*/
Jamie Wellnitz8189fd12006-02-28 19:25:35 -05003153LPFC_ATTR_RW(cr_delay, 0, 0, 63, "A count of milliseconds after which an "
dea31012005-04-17 16:05:31 -05003154 "interrupt response is generated");
3155
Jamie Wellnitz8189fd12006-02-28 19:25:35 -05003156LPFC_ATTR_RW(cr_count, 1, 1, 255, "A count of I/O completions after which an "
dea31012005-04-17 16:05:31 -05003157 "interrupt response is generated");
3158
3159/*
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05003160# lpfc_multi_ring_support: Determines how many rings to spread available
3161# cmd/rsp IOCB entries across.
3162# Value range is [1,2]. Default value is 1.
3163*/
3164LPFC_ATTR_R(multi_ring_support, 1, 1, 2, "Determines number of primary "
3165 "SLI rings to spread IOCB entries across");
3166
3167/*
James Smarta4bc3372006-12-02 13:34:16 -05003168# lpfc_multi_ring_rctl: If lpfc_multi_ring_support is enabled, this
3169# identifies what rctl value to configure the additional ring for.
3170# Value range is [1,0xff]. Default value is 4 (Unsolicated Data).
3171*/
James Smart6a9c52c2009-10-02 15:16:51 -04003172LPFC_ATTR_R(multi_ring_rctl, FC_RCTL_DD_UNSOL_DATA, 1,
James Smarta4bc3372006-12-02 13:34:16 -05003173 255, "Identifies RCTL for additional ring configuration");
3174
3175/*
3176# lpfc_multi_ring_type: If lpfc_multi_ring_support is enabled, this
3177# identifies what type value to configure the additional ring for.
3178# Value range is [1,0xff]. Default value is 5 (LLC/SNAP).
3179*/
James Smart6a9c52c2009-10-02 15:16:51 -04003180LPFC_ATTR_R(multi_ring_type, FC_TYPE_IP, 1,
James Smarta4bc3372006-12-02 13:34:16 -05003181 255, "Identifies TYPE for additional ring configuration");
3182
3183/*
dea31012005-04-17 16:05:31 -05003184# lpfc_fdmi_on: controls FDMI support.
3185# 0 = no FDMI support
3186# 1 = support FDMI without attribute of hostname
3187# 2 = support FDMI with attribute of hostname
3188# Value range [0,2]. Default value is 0.
3189*/
James Smart3de2a652007-08-02 11:09:59 -04003190LPFC_VPORT_ATTR_RW(fdmi_on, 0, 0, 2, "Enable FDMI support");
dea31012005-04-17 16:05:31 -05003191
3192/*
3193# Specifies the maximum number of ELS cmds we can have outstanding (for
3194# discovery). Value range is [1,64]. Default value = 32.
3195*/
James Smart3de2a652007-08-02 11:09:59 -04003196LPFC_VPORT_ATTR(discovery_threads, 32, 1, 64, "Maximum number of ELS commands "
dea31012005-04-17 16:05:31 -05003197 "during discovery");
3198
3199/*
James Smart65a29c12006-07-06 15:50:50 -04003200# lpfc_max_luns: maximum allowed LUN.
3201# Value range is [0,65535]. Default value is 255.
3202# NOTE: The SCSI layer might probe all allowed LUN on some old targets.
dea31012005-04-17 16:05:31 -05003203*/
James Smart3de2a652007-08-02 11:09:59 -04003204LPFC_VPORT_ATTR_R(max_luns, 255, 0, 65535, "Maximum allowed LUN");
dea31012005-04-17 16:05:31 -05003205
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003206/*
3207# lpfc_poll_tmo: .Milliseconds driver will wait between polling FCP ring.
3208# Value range is [1,255], default value is 10.
3209*/
3210LPFC_ATTR_RW(poll_tmo, 10, 1, 255,
3211 "Milliseconds driver will wait between polling FCP ring");
3212
James Smart4ff43242006-12-02 13:34:56 -05003213/*
3214# lpfc_use_msi: Use MSI (Message Signaled Interrupts) in systems that
3215# support this feature
George Kadianakis8605c462010-01-17 21:19:31 +02003216# 0 = MSI disabled
James Smart4ff43242006-12-02 13:34:56 -05003217# 1 = MSI enabled
George Kadianakis8605c462010-01-17 21:19:31 +02003218# 2 = MSI-X enabled (default)
3219# Value range is [0,2]. Default value is 2.
James Smart4ff43242006-12-02 13:34:56 -05003220*/
George Kadianakis8605c462010-01-17 21:19:31 +02003221LPFC_ATTR_R(use_msi, 2, 0, 2, "Use Message Signaled Interrupts (1) or "
James Smartdb2378e2008-02-08 18:49:51 -05003222 "MSI-X (2), if possible");
James Smart4ff43242006-12-02 13:34:56 -05003223
James Smart13815c82008-01-11 01:52:48 -05003224/*
James Smartda0436e2009-05-22 14:51:39 -04003225# lpfc_fcp_imax: Set the maximum number of fast-path FCP interrupts per second
3226#
3227# Value range is [636,651042]. Default value is 10000.
3228*/
3229LPFC_ATTR_R(fcp_imax, LPFC_FP_DEF_IMAX, LPFC_MIM_IMAX, LPFC_DMULT_CONST,
3230 "Set the maximum number of fast-path FCP interrupts per second");
3231
3232/*
3233# lpfc_fcp_wq_count: Set the number of fast-path FCP work queues
3234#
3235# Value range is [1,31]. Default value is 4.
3236*/
3237LPFC_ATTR_R(fcp_wq_count, LPFC_FP_WQN_DEF, LPFC_FP_WQN_MIN, LPFC_FP_WQN_MAX,
3238 "Set the number of fast-path FCP work queues, if possible");
3239
3240/*
3241# lpfc_fcp_eq_count: Set the number of fast-path FCP event queues
3242#
3243# Value range is [1,7]. Default value is 1.
3244*/
3245LPFC_ATTR_R(fcp_eq_count, LPFC_FP_EQN_DEF, LPFC_FP_EQN_MIN, LPFC_FP_EQN_MAX,
3246 "Set the number of fast-path FCP event queues, if possible");
3247
3248/*
James Smart13815c82008-01-11 01:52:48 -05003249# lpfc_enable_hba_reset: Allow or prevent HBA resets to the hardware.
3250# 0 = HBA resets disabled
3251# 1 = HBA resets enabled (default)
3252# Value range is [0,1]. Default value is 1.
3253*/
3254LPFC_ATTR_R(enable_hba_reset, 1, 0, 1, "Enable HBA resets from the driver.");
James Smartc3f28af2006-08-18 17:47:18 -04003255
James Smart13815c82008-01-11 01:52:48 -05003256/*
3257# lpfc_enable_hba_heartbeat: Enable HBA heartbeat timer..
3258# 0 = HBA Heartbeat disabled
3259# 1 = HBA Heartbeat enabled (default)
3260# Value range is [0,1]. Default value is 1.
3261*/
3262LPFC_ATTR_R(enable_hba_heartbeat, 1, 0, 1, "Enable HBA Heartbeat.");
James Smart92d7f7b2007-06-17 19:56:38 -05003263
James Smart83108bd2008-01-11 01:53:09 -05003264/*
James Smart81301a92008-12-04 22:39:46 -05003265# lpfc_enable_bg: Enable BlockGuard (Emulex's Implementation of T10-DIF)
3266# 0 = BlockGuard disabled (default)
3267# 1 = BlockGuard enabled
3268# Value range is [0,1]. Default value is 0.
3269*/
3270LPFC_ATTR_R(enable_bg, 0, 0, 1, "Enable BlockGuard Support");
3271
James Smart6fb120a2009-05-22 14:52:59 -04003272/*
James Smart81301a92008-12-04 22:39:46 -05003273# lpfc_prot_mask: i
3274# - Bit mask of host protection capabilities used to register with the
3275# SCSI mid-layer
3276# - Only meaningful if BG is turned on (lpfc_enable_bg=1).
3277# - Allows you to ultimately specify which profiles to use
3278# - Default will result in registering capabilities for all profiles.
3279#
3280*/
3281unsigned int lpfc_prot_mask = SHOST_DIX_TYPE0_PROTECTION;
3282
3283module_param(lpfc_prot_mask, uint, 0);
3284MODULE_PARM_DESC(lpfc_prot_mask, "host protection mask");
3285
3286/*
3287# lpfc_prot_guard: i
3288# - Bit mask of protection guard types to register with the SCSI mid-layer
3289# - Guard types are currently either 1) IP checksum 2) T10-DIF CRC
3290# - Allows you to ultimately specify which profiles to use
3291# - Default will result in registering capabilities for all guard types
3292#
3293*/
3294unsigned char lpfc_prot_guard = SHOST_DIX_GUARD_IP;
3295module_param(lpfc_prot_guard, byte, 0);
3296MODULE_PARM_DESC(lpfc_prot_guard, "host protection guard type");
3297
3298
3299/*
James Smart3621a712009-04-06 18:47:14 -04003300 * lpfc_sg_seg_cnt - Initial Maximum DMA Segment Count
James Smart83108bd2008-01-11 01:53:09 -05003301 * This value can be set to values between 64 and 256. The default value is
3302 * 64, but may be increased to allow for larger Max I/O sizes. The scsi layer
3303 * will be allowed to request I/Os of sizes up to (MAX_SEG_COUNT * SEG_SIZE).
3304 */
3305LPFC_ATTR_R(sg_seg_cnt, LPFC_DEFAULT_SG_SEG_CNT, LPFC_DEFAULT_SG_SEG_CNT,
3306 LPFC_MAX_SG_SEG_CNT, "Max Scatter Gather Segment Count");
3307
James Smart81301a92008-12-04 22:39:46 -05003308LPFC_ATTR_R(prot_sg_seg_cnt, LPFC_DEFAULT_PROT_SG_SEG_CNT,
3309 LPFC_DEFAULT_PROT_SG_SEG_CNT, LPFC_MAX_PROT_SG_SEG_CNT,
3310 "Max Protection Scatter Gather Segment Count");
3311
Tony Jonesee959b02008-02-22 00:13:36 +01003312struct device_attribute *lpfc_hba_attrs[] = {
James Smart81301a92008-12-04 22:39:46 -05003313 &dev_attr_bg_info,
3314 &dev_attr_bg_guard_err,
3315 &dev_attr_bg_apptag_err,
3316 &dev_attr_bg_reftag_err,
Tony Jonesee959b02008-02-22 00:13:36 +01003317 &dev_attr_info,
3318 &dev_attr_serialnum,
3319 &dev_attr_modeldesc,
3320 &dev_attr_modelname,
3321 &dev_attr_programtype,
3322 &dev_attr_portnum,
3323 &dev_attr_fwrev,
3324 &dev_attr_hdw,
3325 &dev_attr_option_rom_version,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01003326 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +01003327 &dev_attr_num_discovered_ports,
James Smart84774a42008-08-24 21:50:06 -04003328 &dev_attr_menlo_mgmt_mode,
Tony Jonesee959b02008-02-22 00:13:36 +01003329 &dev_attr_lpfc_drvr_version,
James Smart45ed1192009-10-02 15:17:02 -04003330 &dev_attr_lpfc_enable_fip,
Tony Jonesee959b02008-02-22 00:13:36 +01003331 &dev_attr_lpfc_temp_sensor,
3332 &dev_attr_lpfc_log_verbose,
3333 &dev_attr_lpfc_lun_queue_depth,
James Smart7dc517d2010-07-14 15:32:10 -04003334 &dev_attr_lpfc_tgt_queue_depth,
Tony Jonesee959b02008-02-22 00:13:36 +01003335 &dev_attr_lpfc_hba_queue_depth,
3336 &dev_attr_lpfc_peer_port_login,
3337 &dev_attr_lpfc_nodev_tmo,
3338 &dev_attr_lpfc_devloss_tmo,
3339 &dev_attr_lpfc_fcp_class,
3340 &dev_attr_lpfc_use_adisc,
3341 &dev_attr_lpfc_ack0,
3342 &dev_attr_lpfc_topology,
3343 &dev_attr_lpfc_scan_down,
3344 &dev_attr_lpfc_link_speed,
3345 &dev_attr_lpfc_cr_delay,
3346 &dev_attr_lpfc_cr_count,
3347 &dev_attr_lpfc_multi_ring_support,
3348 &dev_attr_lpfc_multi_ring_rctl,
3349 &dev_attr_lpfc_multi_ring_type,
3350 &dev_attr_lpfc_fdmi_on,
3351 &dev_attr_lpfc_max_luns,
3352 &dev_attr_lpfc_enable_npiv,
3353 &dev_attr_nport_evt_cnt,
3354 &dev_attr_board_mode,
3355 &dev_attr_max_vpi,
3356 &dev_attr_used_vpi,
3357 &dev_attr_max_rpi,
3358 &dev_attr_used_rpi,
3359 &dev_attr_max_xri,
3360 &dev_attr_used_xri,
3361 &dev_attr_npiv_info,
3362 &dev_attr_issue_reset,
3363 &dev_attr_lpfc_poll,
3364 &dev_attr_lpfc_poll_tmo,
3365 &dev_attr_lpfc_use_msi,
James Smartda0436e2009-05-22 14:51:39 -04003366 &dev_attr_lpfc_fcp_imax,
3367 &dev_attr_lpfc_fcp_wq_count,
3368 &dev_attr_lpfc_fcp_eq_count,
James Smart81301a92008-12-04 22:39:46 -05003369 &dev_attr_lpfc_enable_bg,
Tony Jonesee959b02008-02-22 00:13:36 +01003370 &dev_attr_lpfc_soft_wwnn,
3371 &dev_attr_lpfc_soft_wwpn,
3372 &dev_attr_lpfc_soft_wwn_enable,
3373 &dev_attr_lpfc_enable_hba_reset,
3374 &dev_attr_lpfc_enable_hba_heartbeat,
3375 &dev_attr_lpfc_sg_seg_cnt,
James Smart977b5a02008-09-07 11:52:04 -04003376 &dev_attr_lpfc_max_scsicmpl_time,
James Smartea2151b2008-09-07 11:52:10 -04003377 &dev_attr_lpfc_stat_data_ctrl,
James Smart81301a92008-12-04 22:39:46 -05003378 &dev_attr_lpfc_prot_sg_seg_cnt,
James Smart0d878412009-10-02 15:16:56 -04003379 &dev_attr_lpfc_aer_support,
3380 &dev_attr_lpfc_aer_state_cleanup,
James Smart84d1b002010-02-12 14:42:33 -05003381 &dev_attr_lpfc_suppress_link_up,
James Smart2a9bf3d2010-06-07 15:24:45 -04003382 &dev_attr_lpfc_iocb_cnt,
3383 &dev_attr_iocb_hw,
3384 &dev_attr_txq_hw,
3385 &dev_attr_txcmplq_hw,
dea31012005-04-17 16:05:31 -05003386 NULL,
3387};
3388
Tony Jonesee959b02008-02-22 00:13:36 +01003389struct device_attribute *lpfc_vport_attrs[] = {
3390 &dev_attr_info,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01003391 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +01003392 &dev_attr_num_discovered_ports,
3393 &dev_attr_lpfc_drvr_version,
3394 &dev_attr_lpfc_log_verbose,
3395 &dev_attr_lpfc_lun_queue_depth,
James Smart7dc517d2010-07-14 15:32:10 -04003396 &dev_attr_lpfc_tgt_queue_depth,
Tony Jonesee959b02008-02-22 00:13:36 +01003397 &dev_attr_lpfc_nodev_tmo,
3398 &dev_attr_lpfc_devloss_tmo,
3399 &dev_attr_lpfc_hba_queue_depth,
3400 &dev_attr_lpfc_peer_port_login,
3401 &dev_attr_lpfc_restrict_login,
3402 &dev_attr_lpfc_fcp_class,
3403 &dev_attr_lpfc_use_adisc,
3404 &dev_attr_lpfc_fdmi_on,
3405 &dev_attr_lpfc_max_luns,
3406 &dev_attr_nport_evt_cnt,
3407 &dev_attr_npiv_info,
3408 &dev_attr_lpfc_enable_da_id,
James Smartea2151b2008-09-07 11:52:10 -04003409 &dev_attr_lpfc_max_scsicmpl_time,
3410 &dev_attr_lpfc_stat_data_ctrl,
James Smart21e9a0a2009-05-22 14:53:21 -04003411 &dev_attr_lpfc_static_vport,
James Smart3de2a652007-08-02 11:09:59 -04003412 NULL,
3413};
3414
James Smarte59058c2008-08-24 21:49:00 -04003415/**
James Smart3621a712009-04-06 18:47:14 -04003416 * sysfs_ctlreg_write - Write method for writing to ctlreg
Chris Wright2c3c8be2010-05-12 18:28:57 -07003417 * @filp: open sysfs file
James Smarte59058c2008-08-24 21:49:00 -04003418 * @kobj: kernel kobject that contains the kernel class device.
3419 * @bin_attr: kernel attributes passed to us.
3420 * @buf: contains the data to be written to the adapter IOREG space.
3421 * @off: offset into buffer to beginning of data.
3422 * @count: bytes to transfer.
3423 *
3424 * Description:
3425 * Accessed via /sys/class/scsi_host/hostxxx/ctlreg.
3426 * Uses the adapter io control registers to send buf contents to the adapter.
3427 *
3428 * Returns:
3429 * -ERANGE off and count combo out of range
3430 * -EINVAL off, count or buff address invalid
3431 * -EPERM adapter is offline
3432 * value of count, buf contents written
3433 **/
dea31012005-04-17 16:05:31 -05003434static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07003435sysfs_ctlreg_write(struct file *filp, struct kobject *kobj,
3436 struct bin_attribute *bin_attr,
Zhang Rui91a69022007-06-09 13:57:22 +08003437 char *buf, loff_t off, size_t count)
dea31012005-04-17 16:05:31 -05003438{
3439 size_t buf_off;
Tony Jonesee959b02008-02-22 00:13:36 +01003440 struct device *dev = container_of(kobj, struct device, kobj);
3441 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05003442 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3443 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003444
James Smartf1126682009-06-10 17:22:44 -04003445 if (phba->sli_rev >= LPFC_SLI_REV4)
3446 return -EPERM;
3447
dea31012005-04-17 16:05:31 -05003448 if ((off + count) > FF_REG_AREA_SIZE)
3449 return -ERANGE;
3450
3451 if (count == 0) return 0;
3452
3453 if (off % 4 || count % 4 || (unsigned long)buf % 4)
3454 return -EINVAL;
3455
James Smart2e0fef82007-06-17 19:56:36 -05003456 if (!(vport->fc_flag & FC_OFFLINE_MODE)) {
dea31012005-04-17 16:05:31 -05003457 return -EPERM;
3458 }
3459
James Smart2e0fef82007-06-17 19:56:36 -05003460 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003461 for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t))
3462 writel(*((uint32_t *)(buf + buf_off)),
3463 phba->ctrl_regs_memmap_p + off + buf_off);
3464
James Smart2e0fef82007-06-17 19:56:36 -05003465 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003466
3467 return count;
3468}
3469
James Smarte59058c2008-08-24 21:49:00 -04003470/**
James Smart3621a712009-04-06 18:47:14 -04003471 * sysfs_ctlreg_read - Read method for reading from ctlreg
Chris Wright2c3c8be2010-05-12 18:28:57 -07003472 * @filp: open sysfs file
James Smarte59058c2008-08-24 21:49:00 -04003473 * @kobj: kernel kobject that contains the kernel class device.
3474 * @bin_attr: kernel attributes passed to us.
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003475 * @buf: if successful contains the data from the adapter IOREG space.
James Smarte59058c2008-08-24 21:49:00 -04003476 * @off: offset into buffer to beginning of data.
3477 * @count: bytes to transfer.
3478 *
3479 * Description:
3480 * Accessed via /sys/class/scsi_host/hostxxx/ctlreg.
3481 * Uses the adapter io control registers to read data into buf.
3482 *
3483 * Returns:
3484 * -ERANGE off and count combo out of range
3485 * -EINVAL off, count or buff address invalid
3486 * value of count, buf contents read
3487 **/
dea31012005-04-17 16:05:31 -05003488static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07003489sysfs_ctlreg_read(struct file *filp, struct kobject *kobj,
3490 struct bin_attribute *bin_attr,
Zhang Rui91a69022007-06-09 13:57:22 +08003491 char *buf, loff_t off, size_t count)
dea31012005-04-17 16:05:31 -05003492{
3493 size_t buf_off;
3494 uint32_t * tmp_ptr;
Tony Jonesee959b02008-02-22 00:13:36 +01003495 struct device *dev = container_of(kobj, struct device, kobj);
3496 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05003497 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3498 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003499
James Smartf1126682009-06-10 17:22:44 -04003500 if (phba->sli_rev >= LPFC_SLI_REV4)
3501 return -EPERM;
3502
dea31012005-04-17 16:05:31 -05003503 if (off > FF_REG_AREA_SIZE)
3504 return -ERANGE;
3505
3506 if ((off + count) > FF_REG_AREA_SIZE)
3507 count = FF_REG_AREA_SIZE - off;
3508
3509 if (count == 0) return 0;
3510
3511 if (off % 4 || count % 4 || (unsigned long)buf % 4)
3512 return -EINVAL;
3513
James Smart2e0fef82007-06-17 19:56:36 -05003514 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003515
3516 for (buf_off = 0; buf_off < count; buf_off += sizeof(uint32_t)) {
3517 tmp_ptr = (uint32_t *)(buf + buf_off);
3518 *tmp_ptr = readl(phba->ctrl_regs_memmap_p + off + buf_off);
3519 }
3520
James Smart2e0fef82007-06-17 19:56:36 -05003521 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003522
3523 return count;
3524}
3525
3526static struct bin_attribute sysfs_ctlreg_attr = {
3527 .attr = {
3528 .name = "ctlreg",
3529 .mode = S_IRUSR | S_IWUSR,
dea31012005-04-17 16:05:31 -05003530 },
3531 .size = 256,
3532 .read = sysfs_ctlreg_read,
3533 .write = sysfs_ctlreg_write,
3534};
3535
James Smarte59058c2008-08-24 21:49:00 -04003536/**
James Smart3621a712009-04-06 18:47:14 -04003537 * sysfs_mbox_idle - frees the sysfs mailbox
James Smarte59058c2008-08-24 21:49:00 -04003538 * @phba: lpfc_hba pointer
3539 **/
dea31012005-04-17 16:05:31 -05003540static void
James Smart2e0fef82007-06-17 19:56:36 -05003541sysfs_mbox_idle(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003542{
3543 phba->sysfs_mbox.state = SMBOX_IDLE;
3544 phba->sysfs_mbox.offset = 0;
3545
3546 if (phba->sysfs_mbox.mbox) {
3547 mempool_free(phba->sysfs_mbox.mbox,
3548 phba->mbox_mem_pool);
3549 phba->sysfs_mbox.mbox = NULL;
3550 }
3551}
3552
James Smarte59058c2008-08-24 21:49:00 -04003553/**
James Smart3621a712009-04-06 18:47:14 -04003554 * sysfs_mbox_write - Write method for writing information via mbox
Chris Wright2c3c8be2010-05-12 18:28:57 -07003555 * @filp: open sysfs file
James Smarte59058c2008-08-24 21:49:00 -04003556 * @kobj: kernel kobject that contains the kernel class device.
3557 * @bin_attr: kernel attributes passed to us.
3558 * @buf: contains the data to be written to sysfs mbox.
3559 * @off: offset into buffer to beginning of data.
3560 * @count: bytes to transfer.
3561 *
3562 * Description:
3563 * Accessed via /sys/class/scsi_host/hostxxx/mbox.
3564 * Uses the sysfs mbox to send buf contents to the adapter.
3565 *
3566 * Returns:
3567 * -ERANGE off and count combo out of range
3568 * -EINVAL off, count or buff address invalid
3569 * zero if count is zero
3570 * -EPERM adapter is offline
3571 * -ENOMEM failed to allocate memory for the mail box
3572 * -EAGAIN offset, state or mbox is NULL
3573 * count number of bytes transferred
3574 **/
dea31012005-04-17 16:05:31 -05003575static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07003576sysfs_mbox_write(struct file *filp, struct kobject *kobj,
3577 struct bin_attribute *bin_attr,
Zhang Rui91a69022007-06-09 13:57:22 +08003578 char *buf, loff_t off, size_t count)
dea31012005-04-17 16:05:31 -05003579{
Tony Jonesee959b02008-02-22 00:13:36 +01003580 struct device *dev = container_of(kobj, struct device, kobj);
3581 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05003582 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3583 struct lpfc_hba *phba = vport->phba;
3584 struct lpfcMboxq *mbox = NULL;
dea31012005-04-17 16:05:31 -05003585
3586 if ((count + off) > MAILBOX_CMD_SIZE)
3587 return -ERANGE;
3588
3589 if (off % 4 || count % 4 || (unsigned long)buf % 4)
3590 return -EINVAL;
3591
3592 if (count == 0)
3593 return 0;
3594
3595 if (off == 0) {
3596 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3597 if (!mbox)
3598 return -ENOMEM;
James Smartfc6c12b2006-03-07 15:04:19 -05003599 memset(mbox, 0, sizeof (LPFC_MBOXQ_t));
dea31012005-04-17 16:05:31 -05003600 }
3601
James Smart2e0fef82007-06-17 19:56:36 -05003602 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003603
3604 if (off == 0) {
3605 if (phba->sysfs_mbox.mbox)
3606 mempool_free(mbox, phba->mbox_mem_pool);
3607 else
3608 phba->sysfs_mbox.mbox = mbox;
3609 phba->sysfs_mbox.state = SMBOX_WRITING;
3610 } else {
3611 if (phba->sysfs_mbox.state != SMBOX_WRITING ||
3612 phba->sysfs_mbox.offset != off ||
James Smart92d7f7b2007-06-17 19:56:38 -05003613 phba->sysfs_mbox.mbox == NULL) {
dea31012005-04-17 16:05:31 -05003614 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003615 spin_unlock_irq(&phba->hbalock);
James Smart8f6d98d2006-08-01 07:34:00 -04003616 return -EAGAIN;
dea31012005-04-17 16:05:31 -05003617 }
3618 }
3619
James Smart04c68492009-05-22 14:52:52 -04003620 memcpy((uint8_t *) &phba->sysfs_mbox.mbox->u.mb + off,
dea31012005-04-17 16:05:31 -05003621 buf, count);
3622
3623 phba->sysfs_mbox.offset = off + count;
3624
James Smart2e0fef82007-06-17 19:56:36 -05003625 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003626
3627 return count;
3628}
3629
James Smarte59058c2008-08-24 21:49:00 -04003630/**
James Smart3621a712009-04-06 18:47:14 -04003631 * sysfs_mbox_read - Read method for reading information via mbox
Chris Wright2c3c8be2010-05-12 18:28:57 -07003632 * @filp: open sysfs file
James Smarte59058c2008-08-24 21:49:00 -04003633 * @kobj: kernel kobject that contains the kernel class device.
3634 * @bin_attr: kernel attributes passed to us.
3635 * @buf: contains the data to be read from sysfs mbox.
3636 * @off: offset into buffer to beginning of data.
3637 * @count: bytes to transfer.
3638 *
3639 * Description:
3640 * Accessed via /sys/class/scsi_host/hostxxx/mbox.
3641 * Uses the sysfs mbox to receive data from to the adapter.
3642 *
3643 * Returns:
3644 * -ERANGE off greater than mailbox command size
3645 * -EINVAL off, count or buff address invalid
3646 * zero if off and count are zero
3647 * -EACCES adapter over temp
3648 * -EPERM garbage can value to catch a multitude of errors
3649 * -EAGAIN management IO not permitted, state or off error
3650 * -ETIME mailbox timeout
3651 * -ENODEV mailbox error
3652 * count number of bytes transferred
3653 **/
dea31012005-04-17 16:05:31 -05003654static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -07003655sysfs_mbox_read(struct file *filp, struct kobject *kobj,
3656 struct bin_attribute *bin_attr,
Zhang Rui91a69022007-06-09 13:57:22 +08003657 char *buf, loff_t off, size_t count)
dea31012005-04-17 16:05:31 -05003658{
Tony Jonesee959b02008-02-22 00:13:36 +01003659 struct device *dev = container_of(kobj, struct device, kobj);
3660 struct Scsi_Host *shost = class_to_shost(dev);
James Smart2e0fef82007-06-17 19:56:36 -05003661 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3662 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003663 int rc;
James Smart04c68492009-05-22 14:52:52 -04003664 MAILBOX_t *pmb;
dea31012005-04-17 16:05:31 -05003665
James Smart1dcb58e2007-04-25 09:51:30 -04003666 if (off > MAILBOX_CMD_SIZE)
dea31012005-04-17 16:05:31 -05003667 return -ERANGE;
3668
James Smart1dcb58e2007-04-25 09:51:30 -04003669 if ((count + off) > MAILBOX_CMD_SIZE)
3670 count = MAILBOX_CMD_SIZE - off;
dea31012005-04-17 16:05:31 -05003671
3672 if (off % 4 || count % 4 || (unsigned long)buf % 4)
3673 return -EINVAL;
3674
3675 if (off && count == 0)
3676 return 0;
3677
James Smart2e0fef82007-06-17 19:56:36 -05003678 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003679
James Smart7af67052007-10-27 13:38:11 -04003680 if (phba->over_temp_state == HBA_OVER_TEMP) {
3681 sysfs_mbox_idle(phba);
3682 spin_unlock_irq(&phba->hbalock);
James Smart09372822008-01-11 01:52:54 -05003683 return -EACCES;
James Smart7af67052007-10-27 13:38:11 -04003684 }
3685
dea31012005-04-17 16:05:31 -05003686 if (off == 0 &&
3687 phba->sysfs_mbox.state == SMBOX_WRITING &&
3688 phba->sysfs_mbox.offset >= 2 * sizeof(uint32_t)) {
James Smart04c68492009-05-22 14:52:52 -04003689 pmb = &phba->sysfs_mbox.mbox->u.mb;
3690 switch (pmb->mbxCommand) {
dea31012005-04-17 16:05:31 -05003691 /* Offline only */
dea31012005-04-17 16:05:31 -05003692 case MBX_INIT_LINK:
3693 case MBX_DOWN_LINK:
3694 case MBX_CONFIG_LINK:
3695 case MBX_CONFIG_RING:
3696 case MBX_RESET_RING:
3697 case MBX_UNREG_LOGIN:
3698 case MBX_CLEAR_LA:
3699 case MBX_DUMP_CONTEXT:
3700 case MBX_RUN_DIAGS:
3701 case MBX_RESTART:
dea31012005-04-17 16:05:31 -05003702 case MBX_SET_MASK:
dea31012005-04-17 16:05:31 -05003703 case MBX_SET_DEBUG:
James Smart2e0fef82007-06-17 19:56:36 -05003704 if (!(vport->fc_flag & FC_OFFLINE_MODE)) {
dea31012005-04-17 16:05:31 -05003705 printk(KERN_WARNING "mbox_read:Command 0x%x "
3706 "is illegal in on-line state\n",
James Smart04c68492009-05-22 14:52:52 -04003707 pmb->mbxCommand);
dea31012005-04-17 16:05:31 -05003708 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003709 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003710 return -EPERM;
3711 }
James Smarta8adb832007-10-27 13:37:53 -04003712 case MBX_WRITE_NV:
3713 case MBX_WRITE_VPARMS:
dea31012005-04-17 16:05:31 -05003714 case MBX_LOAD_SM:
3715 case MBX_READ_NV:
3716 case MBX_READ_CONFIG:
3717 case MBX_READ_RCONFIG:
3718 case MBX_READ_STATUS:
3719 case MBX_READ_XRI:
3720 case MBX_READ_REV:
3721 case MBX_READ_LNK_STAT:
3722 case MBX_DUMP_MEMORY:
3723 case MBX_DOWN_LOAD:
3724 case MBX_UPDATE_CFG:
Jamie Wellnitz41415862006-02-28 19:25:27 -05003725 case MBX_KILL_BOARD:
dea31012005-04-17 16:05:31 -05003726 case MBX_LOAD_AREA:
3727 case MBX_LOAD_EXP_ROM:
Jamie Wellnitz41415862006-02-28 19:25:27 -05003728 case MBX_BEACON:
3729 case MBX_DEL_LD_ENTRY:
James Smart09372822008-01-11 01:52:54 -05003730 case MBX_SET_VARIABLE:
3731 case MBX_WRITE_WWN:
James Smart84774a42008-08-24 21:50:06 -04003732 case MBX_PORT_CAPABILITIES:
3733 case MBX_PORT_IOV_CONTROL:
dea31012005-04-17 16:05:31 -05003734 break;
3735 case MBX_READ_SPARM64:
3736 case MBX_READ_LA:
3737 case MBX_READ_LA64:
3738 case MBX_REG_LOGIN:
3739 case MBX_REG_LOGIN64:
3740 case MBX_CONFIG_PORT:
3741 case MBX_RUN_BIU_DIAG:
3742 printk(KERN_WARNING "mbox_read: Illegal Command 0x%x\n",
James Smart04c68492009-05-22 14:52:52 -04003743 pmb->mbxCommand);
dea31012005-04-17 16:05:31 -05003744 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003745 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003746 return -EPERM;
3747 default:
3748 printk(KERN_WARNING "mbox_read: Unknown Command 0x%x\n",
James Smart04c68492009-05-22 14:52:52 -04003749 pmb->mbxCommand);
dea31012005-04-17 16:05:31 -05003750 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003751 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003752 return -EPERM;
3753 }
3754
James Smart09372822008-01-11 01:52:54 -05003755 /* If HBA encountered an error attention, allow only DUMP
James Smart1b32f6a2008-02-08 18:49:39 -05003756 * or RESTART mailbox commands until the HBA is restarted.
James Smart09372822008-01-11 01:52:54 -05003757 */
James Smartd7c255b2008-08-24 21:50:00 -04003758 if (phba->pport->stopped &&
James Smart04c68492009-05-22 14:52:52 -04003759 pmb->mbxCommand != MBX_DUMP_MEMORY &&
3760 pmb->mbxCommand != MBX_RESTART &&
3761 pmb->mbxCommand != MBX_WRITE_VPARMS &&
3762 pmb->mbxCommand != MBX_WRITE_WWN)
James Smartd7c255b2008-08-24 21:50:00 -04003763 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
3764 "1259 mbox: Issued mailbox cmd "
3765 "0x%x while in stopped state.\n",
James Smart04c68492009-05-22 14:52:52 -04003766 pmb->mbxCommand);
James Smart09372822008-01-11 01:52:54 -05003767
James Smart92d7f7b2007-06-17 19:56:38 -05003768 phba->sysfs_mbox.mbox->vport = vport;
3769
James Smart58da1ff2008-04-07 10:15:56 -04003770 /* Don't allow mailbox commands to be sent when blocked
3771 * or when in the middle of discovery
3772 */
James Smart495a7142008-06-14 22:52:59 -04003773 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO) {
James Smart46fa3112007-04-25 09:51:45 -04003774 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003775 spin_unlock_irq(&phba->hbalock);
James Smart46fa3112007-04-25 09:51:45 -04003776 return -EAGAIN;
3777 }
3778
James Smart2e0fef82007-06-17 19:56:36 -05003779 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
James Smartf4b4c682009-05-22 14:53:12 -04003780 (!(phba->sli.sli_flag & LPFC_SLI_ACTIVE))) {
dea31012005-04-17 16:05:31 -05003781
James Smart2e0fef82007-06-17 19:56:36 -05003782 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003783 rc = lpfc_sli_issue_mbox (phba,
3784 phba->sysfs_mbox.mbox,
3785 MBX_POLL);
James Smart2e0fef82007-06-17 19:56:36 -05003786 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003787
3788 } else {
James Smart2e0fef82007-06-17 19:56:36 -05003789 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003790 rc = lpfc_sli_issue_mbox_wait (phba,
3791 phba->sysfs_mbox.mbox,
James Smart04c68492009-05-22 14:52:52 -04003792 lpfc_mbox_tmo_val(phba, pmb->mbxCommand) * HZ);
James Smart2e0fef82007-06-17 19:56:36 -05003793 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003794 }
3795
3796 if (rc != MBX_SUCCESS) {
James Smart1dcb58e2007-04-25 09:51:30 -04003797 if (rc == MBX_TIMEOUT) {
James Smart1dcb58e2007-04-25 09:51:30 -04003798 phba->sysfs_mbox.mbox = NULL;
3799 }
dea31012005-04-17 16:05:31 -05003800 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003801 spin_unlock_irq(&phba->hbalock);
James Smart8f6d98d2006-08-01 07:34:00 -04003802 return (rc == MBX_TIMEOUT) ? -ETIME : -ENODEV;
dea31012005-04-17 16:05:31 -05003803 }
3804 phba->sysfs_mbox.state = SMBOX_READING;
3805 }
3806 else if (phba->sysfs_mbox.offset != off ||
3807 phba->sysfs_mbox.state != SMBOX_READING) {
3808 printk(KERN_WARNING "mbox_read: Bad State\n");
3809 sysfs_mbox_idle(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003810 spin_unlock_irq(&phba->hbalock);
James Smart8f6d98d2006-08-01 07:34:00 -04003811 return -EAGAIN;
dea31012005-04-17 16:05:31 -05003812 }
3813
James Smart04c68492009-05-22 14:52:52 -04003814 memcpy(buf, (uint8_t *) &pmb + off, count);
dea31012005-04-17 16:05:31 -05003815
3816 phba->sysfs_mbox.offset = off + count;
3817
James Smart1dcb58e2007-04-25 09:51:30 -04003818 if (phba->sysfs_mbox.offset == MAILBOX_CMD_SIZE)
dea31012005-04-17 16:05:31 -05003819 sysfs_mbox_idle(phba);
3820
James Smart2e0fef82007-06-17 19:56:36 -05003821 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003822
3823 return count;
3824}
3825
3826static struct bin_attribute sysfs_mbox_attr = {
3827 .attr = {
3828 .name = "mbox",
3829 .mode = S_IRUSR | S_IWUSR,
dea31012005-04-17 16:05:31 -05003830 },
James Smart1dcb58e2007-04-25 09:51:30 -04003831 .size = MAILBOX_CMD_SIZE,
dea31012005-04-17 16:05:31 -05003832 .read = sysfs_mbox_read,
3833 .write = sysfs_mbox_write,
3834};
3835
James Smarte59058c2008-08-24 21:49:00 -04003836/**
James Smart3621a712009-04-06 18:47:14 -04003837 * lpfc_alloc_sysfs_attr - Creates the ctlreg and mbox entries
James Smarte59058c2008-08-24 21:49:00 -04003838 * @vport: address of lpfc vport structure.
3839 *
3840 * Return codes:
3841 * zero on success
3842 * error return code from sysfs_create_bin_file()
3843 **/
dea31012005-04-17 16:05:31 -05003844int
James Smart2e0fef82007-06-17 19:56:36 -05003845lpfc_alloc_sysfs_attr(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003846{
James Smart2e0fef82007-06-17 19:56:36 -05003847 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05003848 int error;
3849
Tony Jonesee959b02008-02-22 00:13:36 +01003850 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
James Smarteada2722008-12-04 22:39:13 -05003851 &sysfs_drvr_stat_data_attr);
3852
3853 /* Virtual ports do not need ctrl_reg and mbox */
3854 if (error || vport->port_type == LPFC_NPIV_PORT)
3855 goto out;
3856
3857 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
James Smart92d7f7b2007-06-17 19:56:38 -05003858 &sysfs_ctlreg_attr);
dea31012005-04-17 16:05:31 -05003859 if (error)
James Smarteada2722008-12-04 22:39:13 -05003860 goto out_remove_stat_attr;
dea31012005-04-17 16:05:31 -05003861
Tony Jonesee959b02008-02-22 00:13:36 +01003862 error = sysfs_create_bin_file(&shost->shost_dev.kobj,
James Smart92d7f7b2007-06-17 19:56:38 -05003863 &sysfs_mbox_attr);
dea31012005-04-17 16:05:31 -05003864 if (error)
3865 goto out_remove_ctlreg_attr;
3866
3867 return 0;
3868out_remove_ctlreg_attr:
Tony Jonesee959b02008-02-22 00:13:36 +01003869 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_ctlreg_attr);
James Smarteada2722008-12-04 22:39:13 -05003870out_remove_stat_attr:
3871 sysfs_remove_bin_file(&shost->shost_dev.kobj,
3872 &sysfs_drvr_stat_data_attr);
dea31012005-04-17 16:05:31 -05003873out:
3874 return error;
3875}
3876
James Smarte59058c2008-08-24 21:49:00 -04003877/**
James Smart3621a712009-04-06 18:47:14 -04003878 * lpfc_free_sysfs_attr - Removes the ctlreg and mbox entries
James Smarte59058c2008-08-24 21:49:00 -04003879 * @vport: address of lpfc vport structure.
3880 **/
dea31012005-04-17 16:05:31 -05003881void
James Smart2e0fef82007-06-17 19:56:36 -05003882lpfc_free_sysfs_attr(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003883{
James Smart2e0fef82007-06-17 19:56:36 -05003884 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartea2151b2008-09-07 11:52:10 -04003885 sysfs_remove_bin_file(&shost->shost_dev.kobj,
3886 &sysfs_drvr_stat_data_attr);
James Smarteada2722008-12-04 22:39:13 -05003887 /* Virtual ports do not need ctrl_reg and mbox */
3888 if (vport->port_type == LPFC_NPIV_PORT)
3889 return;
Tony Jonesee959b02008-02-22 00:13:36 +01003890 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_mbox_attr);
3891 sysfs_remove_bin_file(&shost->shost_dev.kobj, &sysfs_ctlreg_attr);
dea31012005-04-17 16:05:31 -05003892}
3893
3894
3895/*
3896 * Dynamic FC Host Attributes Support
3897 */
3898
James Smarte59058c2008-08-24 21:49:00 -04003899/**
James Smart3621a712009-04-06 18:47:14 -04003900 * lpfc_get_host_port_id - Copy the vport DID into the scsi host port id
James Smarte59058c2008-08-24 21:49:00 -04003901 * @shost: kernel scsi host pointer.
3902 **/
dea31012005-04-17 16:05:31 -05003903static void
3904lpfc_get_host_port_id(struct Scsi_Host *shost)
3905{
James Smart2e0fef82007-06-17 19:56:36 -05003906 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3907
dea31012005-04-17 16:05:31 -05003908 /* note: fc_myDID already in cpu endianness */
James Smart2e0fef82007-06-17 19:56:36 -05003909 fc_host_port_id(shost) = vport->fc_myDID;
dea31012005-04-17 16:05:31 -05003910}
3911
James Smarte59058c2008-08-24 21:49:00 -04003912/**
James Smart3621a712009-04-06 18:47:14 -04003913 * lpfc_get_host_port_type - Set the value of the scsi host port type
James Smarte59058c2008-08-24 21:49:00 -04003914 * @shost: kernel scsi host pointer.
3915 **/
dea31012005-04-17 16:05:31 -05003916static void
3917lpfc_get_host_port_type(struct Scsi_Host *shost)
3918{
James Smart2e0fef82007-06-17 19:56:36 -05003919 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3920 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003921
3922 spin_lock_irq(shost->host_lock);
3923
James Smart92d7f7b2007-06-17 19:56:38 -05003924 if (vport->port_type == LPFC_NPIV_PORT) {
3925 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
3926 } else if (lpfc_is_link_up(phba)) {
dea31012005-04-17 16:05:31 -05003927 if (phba->fc_topology == TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -05003928 if (vport->fc_flag & FC_PUBLIC_LOOP)
dea31012005-04-17 16:05:31 -05003929 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
3930 else
3931 fc_host_port_type(shost) = FC_PORTTYPE_LPORT;
3932 } else {
James Smart2e0fef82007-06-17 19:56:36 -05003933 if (vport->fc_flag & FC_FABRIC)
dea31012005-04-17 16:05:31 -05003934 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
3935 else
3936 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
3937 }
3938 } else
3939 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
3940
3941 spin_unlock_irq(shost->host_lock);
3942}
3943
James Smarte59058c2008-08-24 21:49:00 -04003944/**
James Smart3621a712009-04-06 18:47:14 -04003945 * lpfc_get_host_port_state - Set the value of the scsi host port state
James Smarte59058c2008-08-24 21:49:00 -04003946 * @shost: kernel scsi host pointer.
3947 **/
dea31012005-04-17 16:05:31 -05003948static void
3949lpfc_get_host_port_state(struct Scsi_Host *shost)
3950{
James Smart2e0fef82007-06-17 19:56:36 -05003951 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3952 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003953
3954 spin_lock_irq(shost->host_lock);
3955
James Smart2e0fef82007-06-17 19:56:36 -05003956 if (vport->fc_flag & FC_OFFLINE_MODE)
dea31012005-04-17 16:05:31 -05003957 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
3958 else {
James Smart2e0fef82007-06-17 19:56:36 -05003959 switch (phba->link_state) {
3960 case LPFC_LINK_UNKNOWN:
dea31012005-04-17 16:05:31 -05003961 case LPFC_LINK_DOWN:
3962 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
3963 break;
3964 case LPFC_LINK_UP:
dea31012005-04-17 16:05:31 -05003965 case LPFC_CLEAR_LA:
3966 case LPFC_HBA_READY:
3967 /* Links up, beyond this port_type reports state */
3968 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
3969 break;
3970 case LPFC_HBA_ERROR:
3971 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
3972 break;
3973 default:
3974 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
3975 break;
3976 }
3977 }
3978
3979 spin_unlock_irq(shost->host_lock);
3980}
3981
James Smarte59058c2008-08-24 21:49:00 -04003982/**
James Smart3621a712009-04-06 18:47:14 -04003983 * lpfc_get_host_speed - Set the value of the scsi host speed
James Smarte59058c2008-08-24 21:49:00 -04003984 * @shost: kernel scsi host pointer.
3985 **/
dea31012005-04-17 16:05:31 -05003986static void
3987lpfc_get_host_speed(struct Scsi_Host *shost)
3988{
James Smart2e0fef82007-06-17 19:56:36 -05003989 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3990 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003991
3992 spin_lock_irq(shost->host_lock);
3993
James Smart2e0fef82007-06-17 19:56:36 -05003994 if (lpfc_is_link_up(phba)) {
dea31012005-04-17 16:05:31 -05003995 switch(phba->fc_linkspeed) {
3996 case LA_1GHZ_LINK:
3997 fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
3998 break;
3999 case LA_2GHZ_LINK:
4000 fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
4001 break;
4002 case LA_4GHZ_LINK:
4003 fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
4004 break;
James Smartb87eab32007-04-25 09:53:28 -04004005 case LA_8GHZ_LINK:
4006 fc_host_speed(shost) = FC_PORTSPEED_8GBIT;
4007 break;
James Smartf4b4c682009-05-22 14:53:12 -04004008 case LA_10GHZ_LINK:
4009 fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
4010 break;
dea31012005-04-17 16:05:31 -05004011 default:
4012 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
4013 break;
4014 }
James Smart09372822008-01-11 01:52:54 -05004015 } else
4016 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
dea31012005-04-17 16:05:31 -05004017
4018 spin_unlock_irq(shost->host_lock);
4019}
4020
James Smarte59058c2008-08-24 21:49:00 -04004021/**
James Smart3621a712009-04-06 18:47:14 -04004022 * lpfc_get_host_fabric_name - Set the value of the scsi host fabric name
James Smarte59058c2008-08-24 21:49:00 -04004023 * @shost: kernel scsi host pointer.
4024 **/
dea31012005-04-17 16:05:31 -05004025static void
4026lpfc_get_host_fabric_name (struct Scsi_Host *shost)
4027{
James Smart2e0fef82007-06-17 19:56:36 -05004028 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4029 struct lpfc_hba *phba = vport->phba;
Andrew Vasquezf631b4b2005-08-31 15:23:12 -07004030 u64 node_name;
dea31012005-04-17 16:05:31 -05004031
4032 spin_lock_irq(shost->host_lock);
4033
James Smart2e0fef82007-06-17 19:56:36 -05004034 if ((vport->fc_flag & FC_FABRIC) ||
dea31012005-04-17 16:05:31 -05004035 ((phba->fc_topology == TOPOLOGY_LOOP) &&
James Smart2e0fef82007-06-17 19:56:36 -05004036 (vport->fc_flag & FC_PUBLIC_LOOP)))
Andrew Morton68ce1eb2005-09-21 09:46:54 -07004037 node_name = wwn_to_u64(phba->fc_fabparam.nodeName.u.wwn);
dea31012005-04-17 16:05:31 -05004038 else
4039 /* fabric is local port if there is no F/FL_Port */
James Smart09372822008-01-11 01:52:54 -05004040 node_name = 0;
dea31012005-04-17 16:05:31 -05004041
4042 spin_unlock_irq(shost->host_lock);
4043
Andrew Vasquezf631b4b2005-08-31 15:23:12 -07004044 fc_host_fabric_name(shost) = node_name;
dea31012005-04-17 16:05:31 -05004045}
4046
James Smarte59058c2008-08-24 21:49:00 -04004047/**
James Smart3621a712009-04-06 18:47:14 -04004048 * lpfc_get_stats - Return statistical information about the adapter
James Smarte59058c2008-08-24 21:49:00 -04004049 * @shost: kernel scsi host pointer.
4050 *
4051 * Notes:
4052 * NULL on error for link down, no mbox pool, sli2 active,
4053 * management not allowed, memory allocation error, or mbox error.
4054 *
4055 * Returns:
4056 * NULL for error
4057 * address of the adapter host statistics
4058 **/
dea31012005-04-17 16:05:31 -05004059static struct fc_host_statistics *
4060lpfc_get_stats(struct Scsi_Host *shost)
4061{
James Smart2e0fef82007-06-17 19:56:36 -05004062 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4063 struct lpfc_hba *phba = vport->phba;
4064 struct lpfc_sli *psli = &phba->sli;
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -04004065 struct fc_host_statistics *hs = &phba->link_stats;
James Smart64ba8812006-08-02 15:24:34 -04004066 struct lpfc_lnk_stat * lso = &psli->lnk_stat_offsets;
dea31012005-04-17 16:05:31 -05004067 LPFC_MBOXQ_t *pmboxq;
4068 MAILBOX_t *pmb;
James Smart64ba8812006-08-02 15:24:34 -04004069 unsigned long seconds;
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004070 int rc = 0;
dea31012005-04-17 16:05:31 -05004071
James Smart92d7f7b2007-06-17 19:56:38 -05004072 /*
4073 * prevent udev from issuing mailbox commands until the port is
4074 * configured.
4075 */
James Smart2e0fef82007-06-17 19:56:36 -05004076 if (phba->link_state < LPFC_LINK_DOWN ||
4077 !phba->mbox_mem_pool ||
James Smartf4b4c682009-05-22 14:53:12 -04004078 (phba->sli.sli_flag & LPFC_SLI_ACTIVE) == 0)
James Smart92d7f7b2007-06-17 19:56:38 -05004079 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004080
4081 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
James Smart46fa3112007-04-25 09:51:45 -04004082 return NULL;
4083
dea31012005-04-17 16:05:31 -05004084 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4085 if (!pmboxq)
4086 return NULL;
4087 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
4088
James Smart04c68492009-05-22 14:52:52 -04004089 pmb = &pmboxq->u.mb;
dea31012005-04-17 16:05:31 -05004090 pmb->mbxCommand = MBX_READ_STATUS;
4091 pmb->mbxOwner = OWN_HOST;
4092 pmboxq->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05004093 pmboxq->vport = vport;
dea31012005-04-17 16:05:31 -05004094
James Smart75baf692010-06-08 18:31:21 -04004095 if (vport->fc_flag & FC_OFFLINE_MODE)
dea31012005-04-17 16:05:31 -05004096 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004097 else
dea31012005-04-17 16:05:31 -05004098 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
4099
4100 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -05004101 if (rc != MBX_TIMEOUT)
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004102 mempool_free(pmboxq, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05004103 return NULL;
4104 }
4105
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -04004106 memset(hs, 0, sizeof (struct fc_host_statistics));
4107
dea31012005-04-17 16:05:31 -05004108 hs->tx_frames = pmb->un.varRdStatus.xmitFrameCnt;
4109 hs->tx_words = (pmb->un.varRdStatus.xmitByteCnt * 256);
4110 hs->rx_frames = pmb->un.varRdStatus.rcvFrameCnt;
4111 hs->rx_words = (pmb->un.varRdStatus.rcvByteCnt * 256);
4112
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004113 memset(pmboxq, 0, sizeof (LPFC_MBOXQ_t));
dea31012005-04-17 16:05:31 -05004114 pmb->mbxCommand = MBX_READ_LNK_STAT;
4115 pmb->mbxOwner = OWN_HOST;
4116 pmboxq->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05004117 pmboxq->vport = vport;
dea31012005-04-17 16:05:31 -05004118
James Smart75baf692010-06-08 18:31:21 -04004119 if (vport->fc_flag & FC_OFFLINE_MODE)
dea31012005-04-17 16:05:31 -05004120 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
James.Smart@Emulex.Com433c3572005-10-28 20:28:56 -04004121 else
dea31012005-04-17 16:05:31 -05004122 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
4123
4124 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -05004125 if (rc != MBX_TIMEOUT)
James Smart92d7f7b2007-06-17 19:56:38 -05004126 mempool_free(pmboxq, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05004127 return NULL;
4128 }
4129
4130 hs->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
4131 hs->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
4132 hs->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
4133 hs->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
4134 hs->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
4135 hs->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
4136 hs->error_frames = pmb->un.varRdLnk.crcCnt;
4137
James Smart64ba8812006-08-02 15:24:34 -04004138 hs->link_failure_count -= lso->link_failure_count;
4139 hs->loss_of_sync_count -= lso->loss_of_sync_count;
4140 hs->loss_of_signal_count -= lso->loss_of_signal_count;
4141 hs->prim_seq_protocol_err_count -= lso->prim_seq_protocol_err_count;
4142 hs->invalid_tx_word_count -= lso->invalid_tx_word_count;
4143 hs->invalid_crc_count -= lso->invalid_crc_count;
4144 hs->error_frames -= lso->error_frames;
4145
James Smart4d9ab992009-10-02 15:16:39 -04004146 if (phba->hba_flag & HBA_FCOE_SUPPORT) {
4147 hs->lip_count = -1;
4148 hs->nos_count = (phba->link_events >> 1);
4149 hs->nos_count -= lso->link_events;
4150 } else if (phba->fc_topology == TOPOLOGY_LOOP) {
dea31012005-04-17 16:05:31 -05004151 hs->lip_count = (phba->fc_eventTag >> 1);
James Smart64ba8812006-08-02 15:24:34 -04004152 hs->lip_count -= lso->link_events;
dea31012005-04-17 16:05:31 -05004153 hs->nos_count = -1;
4154 } else {
4155 hs->lip_count = -1;
4156 hs->nos_count = (phba->fc_eventTag >> 1);
James Smart64ba8812006-08-02 15:24:34 -04004157 hs->nos_count -= lso->link_events;
dea31012005-04-17 16:05:31 -05004158 }
4159
4160 hs->dumped_frames = -1;
4161
James Smart64ba8812006-08-02 15:24:34 -04004162 seconds = get_seconds();
4163 if (seconds < psli->stats_start)
4164 hs->seconds_since_last_reset = seconds +
4165 ((unsigned long)-1 - psli->stats_start);
4166 else
4167 hs->seconds_since_last_reset = seconds - psli->stats_start;
dea31012005-04-17 16:05:31 -05004168
James Smart1dcb58e2007-04-25 09:51:30 -04004169 mempool_free(pmboxq, phba->mbox_mem_pool);
4170
dea31012005-04-17 16:05:31 -05004171 return hs;
4172}
4173
James Smarte59058c2008-08-24 21:49:00 -04004174/**
James Smart3621a712009-04-06 18:47:14 -04004175 * lpfc_reset_stats - Copy the adapter link stats information
James Smarte59058c2008-08-24 21:49:00 -04004176 * @shost: kernel scsi host pointer.
4177 **/
James Smart64ba8812006-08-02 15:24:34 -04004178static void
4179lpfc_reset_stats(struct Scsi_Host *shost)
4180{
James Smart2e0fef82007-06-17 19:56:36 -05004181 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4182 struct lpfc_hba *phba = vport->phba;
4183 struct lpfc_sli *psli = &phba->sli;
4184 struct lpfc_lnk_stat *lso = &psli->lnk_stat_offsets;
James Smart64ba8812006-08-02 15:24:34 -04004185 LPFC_MBOXQ_t *pmboxq;
4186 MAILBOX_t *pmb;
4187 int rc = 0;
4188
James Smart2e0fef82007-06-17 19:56:36 -05004189 if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO)
James Smart46fa3112007-04-25 09:51:45 -04004190 return;
4191
James Smart64ba8812006-08-02 15:24:34 -04004192 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4193 if (!pmboxq)
4194 return;
4195 memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
4196
James Smart04c68492009-05-22 14:52:52 -04004197 pmb = &pmboxq->u.mb;
James Smart64ba8812006-08-02 15:24:34 -04004198 pmb->mbxCommand = MBX_READ_STATUS;
4199 pmb->mbxOwner = OWN_HOST;
4200 pmb->un.varWords[0] = 0x1; /* reset request */
4201 pmboxq->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05004202 pmboxq->vport = vport;
James Smart64ba8812006-08-02 15:24:34 -04004203
James Smart2e0fef82007-06-17 19:56:36 -05004204 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
James Smartf4b4c682009-05-22 14:53:12 -04004205 (!(psli->sli_flag & LPFC_SLI_ACTIVE)))
James Smart64ba8812006-08-02 15:24:34 -04004206 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
4207 else
4208 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
4209
4210 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -05004211 if (rc != MBX_TIMEOUT)
James Smart64ba8812006-08-02 15:24:34 -04004212 mempool_free(pmboxq, phba->mbox_mem_pool);
4213 return;
4214 }
4215
4216 memset(pmboxq, 0, sizeof(LPFC_MBOXQ_t));
4217 pmb->mbxCommand = MBX_READ_LNK_STAT;
4218 pmb->mbxOwner = OWN_HOST;
4219 pmboxq->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05004220 pmboxq->vport = vport;
James Smart64ba8812006-08-02 15:24:34 -04004221
James Smart2e0fef82007-06-17 19:56:36 -05004222 if ((vport->fc_flag & FC_OFFLINE_MODE) ||
James Smartf4b4c682009-05-22 14:53:12 -04004223 (!(psli->sli_flag & LPFC_SLI_ACTIVE)))
James Smart64ba8812006-08-02 15:24:34 -04004224 rc = lpfc_sli_issue_mbox(phba, pmboxq, MBX_POLL);
4225 else
4226 rc = lpfc_sli_issue_mbox_wait(phba, pmboxq, phba->fc_ratov * 2);
4227
4228 if (rc != MBX_SUCCESS) {
James Smart858c9f62007-06-17 19:56:39 -05004229 if (rc != MBX_TIMEOUT)
James Smart64ba8812006-08-02 15:24:34 -04004230 mempool_free( pmboxq, phba->mbox_mem_pool);
4231 return;
4232 }
4233
4234 lso->link_failure_count = pmb->un.varRdLnk.linkFailureCnt;
4235 lso->loss_of_sync_count = pmb->un.varRdLnk.lossSyncCnt;
4236 lso->loss_of_signal_count = pmb->un.varRdLnk.lossSignalCnt;
4237 lso->prim_seq_protocol_err_count = pmb->un.varRdLnk.primSeqErrCnt;
4238 lso->invalid_tx_word_count = pmb->un.varRdLnk.invalidXmitWord;
4239 lso->invalid_crc_count = pmb->un.varRdLnk.crcCnt;
4240 lso->error_frames = pmb->un.varRdLnk.crcCnt;
James Smart4d9ab992009-10-02 15:16:39 -04004241 if (phba->hba_flag & HBA_FCOE_SUPPORT)
4242 lso->link_events = (phba->link_events >> 1);
4243 else
4244 lso->link_events = (phba->fc_eventTag >> 1);
James Smart64ba8812006-08-02 15:24:34 -04004245
4246 psli->stats_start = get_seconds();
4247
James Smart1dcb58e2007-04-25 09:51:30 -04004248 mempool_free(pmboxq, phba->mbox_mem_pool);
4249
James Smart64ba8812006-08-02 15:24:34 -04004250 return;
4251}
dea31012005-04-17 16:05:31 -05004252
4253/*
4254 * The LPFC driver treats linkdown handling as target loss events so there
4255 * are no sysfs handlers for link_down_tmo.
4256 */
James Smart685f0bf2007-04-25 09:53:08 -04004257
James Smarte59058c2008-08-24 21:49:00 -04004258/**
James Smart3621a712009-04-06 18:47:14 -04004259 * lpfc_get_node_by_target - Return the nodelist for a target
James Smarte59058c2008-08-24 21:49:00 -04004260 * @starget: kernel scsi target pointer.
4261 *
4262 * Returns:
4263 * address of the node list if found
4264 * NULL target not found
4265 **/
James Smart685f0bf2007-04-25 09:53:08 -04004266static struct lpfc_nodelist *
4267lpfc_get_node_by_target(struct scsi_target *starget)
dea31012005-04-17 16:05:31 -05004268{
James Smart2e0fef82007-06-17 19:56:36 -05004269 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
4270 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
James Smart685f0bf2007-04-25 09:53:08 -04004271 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05004272
4273 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004274 /* Search for this, mapped, target ID */
James Smart2e0fef82007-06-17 19:56:36 -05004275 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004276 if (NLP_CHK_NODE_ACT(ndlp) &&
4277 ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
James Smart685f0bf2007-04-25 09:53:08 -04004278 starget->id == ndlp->nlp_sid) {
4279 spin_unlock_irq(shost->host_lock);
4280 return ndlp;
dea31012005-04-17 16:05:31 -05004281 }
4282 }
4283 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004284 return NULL;
4285}
dea31012005-04-17 16:05:31 -05004286
James Smarte59058c2008-08-24 21:49:00 -04004287/**
James Smart3621a712009-04-06 18:47:14 -04004288 * lpfc_get_starget_port_id - Set the target port id to the ndlp DID or -1
James Smarte59058c2008-08-24 21:49:00 -04004289 * @starget: kernel scsi target pointer.
4290 **/
James Smart685f0bf2007-04-25 09:53:08 -04004291static void
4292lpfc_get_starget_port_id(struct scsi_target *starget)
4293{
4294 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
4295
4296 fc_starget_port_id(starget) = ndlp ? ndlp->nlp_DID : -1;
dea31012005-04-17 16:05:31 -05004297}
4298
James Smarte59058c2008-08-24 21:49:00 -04004299/**
James Smart3621a712009-04-06 18:47:14 -04004300 * lpfc_get_starget_node_name - Set the target node name
James Smarte59058c2008-08-24 21:49:00 -04004301 * @starget: kernel scsi target pointer.
4302 *
4303 * Description: Set the target node name to the ndlp node name wwn or zero.
4304 **/
dea31012005-04-17 16:05:31 -05004305static void
4306lpfc_get_starget_node_name(struct scsi_target *starget)
4307{
James Smart685f0bf2007-04-25 09:53:08 -04004308 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
dea31012005-04-17 16:05:31 -05004309
James Smart685f0bf2007-04-25 09:53:08 -04004310 fc_starget_node_name(starget) =
4311 ndlp ? wwn_to_u64(ndlp->nlp_nodename.u.wwn) : 0;
dea31012005-04-17 16:05:31 -05004312}
4313
James Smarte59058c2008-08-24 21:49:00 -04004314/**
James Smart3621a712009-04-06 18:47:14 -04004315 * lpfc_get_starget_port_name - Set the target port name
James Smarte59058c2008-08-24 21:49:00 -04004316 * @starget: kernel scsi target pointer.
4317 *
4318 * Description: set the target port name to the ndlp port name wwn or zero.
4319 **/
dea31012005-04-17 16:05:31 -05004320static void
4321lpfc_get_starget_port_name(struct scsi_target *starget)
4322{
James Smart685f0bf2007-04-25 09:53:08 -04004323 struct lpfc_nodelist *ndlp = lpfc_get_node_by_target(starget);
dea31012005-04-17 16:05:31 -05004324
James Smart685f0bf2007-04-25 09:53:08 -04004325 fc_starget_port_name(starget) =
4326 ndlp ? wwn_to_u64(ndlp->nlp_portname.u.wwn) : 0;
dea31012005-04-17 16:05:31 -05004327}
4328
James Smarte59058c2008-08-24 21:49:00 -04004329/**
James Smart3621a712009-04-06 18:47:14 -04004330 * lpfc_set_rport_loss_tmo - Set the rport dev loss tmo
James Smarte59058c2008-08-24 21:49:00 -04004331 * @rport: fc rport address.
4332 * @timeout: new value for dev loss tmo.
4333 *
4334 * Description:
4335 * If timeout is non zero set the dev_loss_tmo to timeout, else set
4336 * dev_loss_tmo to one.
4337 **/
dea31012005-04-17 16:05:31 -05004338static void
dea31012005-04-17 16:05:31 -05004339lpfc_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
4340{
dea31012005-04-17 16:05:31 -05004341 if (timeout)
James Smartc01f3202006-08-18 17:47:08 -04004342 rport->dev_loss_tmo = timeout;
dea31012005-04-17 16:05:31 -05004343 else
James Smartc01f3202006-08-18 17:47:08 -04004344 rport->dev_loss_tmo = 1;
dea31012005-04-17 16:05:31 -05004345}
4346
James Smarte59058c2008-08-24 21:49:00 -04004347/**
James Smart3621a712009-04-06 18:47:14 -04004348 * lpfc_rport_show_function - Return rport target information
James Smarte59058c2008-08-24 21:49:00 -04004349 *
4350 * Description:
4351 * Macro that uses field to generate a function with the name lpfc_show_rport_
4352 *
4353 * lpfc_show_rport_##field: returns the bytes formatted in buf
4354 * @cdev: class converted to an fc_rport.
4355 * @buf: on return contains the target_field or zero.
4356 *
4357 * Returns: size of formatted string.
4358 **/
dea31012005-04-17 16:05:31 -05004359#define lpfc_rport_show_function(field, format_string, sz, cast) \
4360static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01004361lpfc_show_rport_##field (struct device *dev, \
4362 struct device_attribute *attr, \
4363 char *buf) \
dea31012005-04-17 16:05:31 -05004364{ \
Tony Jonesee959b02008-02-22 00:13:36 +01004365 struct fc_rport *rport = transport_class_to_rport(dev); \
dea31012005-04-17 16:05:31 -05004366 struct lpfc_rport_data *rdata = rport->hostdata; \
4367 return snprintf(buf, sz, format_string, \
4368 (rdata->target) ? cast rdata->target->field : 0); \
4369}
4370
4371#define lpfc_rport_rd_attr(field, format_string, sz) \
4372 lpfc_rport_show_function(field, format_string, sz, ) \
4373static FC_RPORT_ATTR(field, S_IRUGO, lpfc_show_rport_##field, NULL)
4374
James Smarteada2722008-12-04 22:39:13 -05004375/**
James Smart3621a712009-04-06 18:47:14 -04004376 * lpfc_set_vport_symbolic_name - Set the vport's symbolic name
James Smarteada2722008-12-04 22:39:13 -05004377 * @fc_vport: The fc_vport who's symbolic name has been changed.
4378 *
4379 * Description:
4380 * This function is called by the transport after the @fc_vport's symbolic name
4381 * has been changed. This function re-registers the symbolic name with the
4382 * switch to propogate the change into the fabric if the vport is active.
4383 **/
4384static void
4385lpfc_set_vport_symbolic_name(struct fc_vport *fc_vport)
4386{
4387 struct lpfc_vport *vport = *(struct lpfc_vport **)fc_vport->dd_data;
4388
4389 if (vport->port_state == LPFC_VPORT_READY)
4390 lpfc_ns_cmd(vport, SLI_CTNS_RSPN_ID, 0, 0);
4391}
dea31012005-04-17 16:05:31 -05004392
James Smartf4b4c682009-05-22 14:53:12 -04004393/**
4394 * lpfc_hba_log_verbose_init - Set hba's log verbose level
4395 * @phba: Pointer to lpfc_hba struct.
4396 *
4397 * This function is called by the lpfc_get_cfgparam() routine to set the
4398 * module lpfc_log_verbose into the @phba cfg_log_verbose for use with
4399 * log messsage according to the module's lpfc_log_verbose parameter setting
4400 * before hba port or vport created.
4401 **/
4402static void
4403lpfc_hba_log_verbose_init(struct lpfc_hba *phba, uint32_t verbose)
4404{
4405 phba->cfg_log_verbose = verbose;
4406}
4407
dea31012005-04-17 16:05:31 -05004408struct fc_function_template lpfc_transport_functions = {
4409 /* fixed attributes the driver supports */
4410 .show_host_node_name = 1,
4411 .show_host_port_name = 1,
4412 .show_host_supported_classes = 1,
4413 .show_host_supported_fc4s = 1,
dea31012005-04-17 16:05:31 -05004414 .show_host_supported_speeds = 1,
4415 .show_host_maxframe_size = 1,
James Smarteada2722008-12-04 22:39:13 -05004416 .show_host_symbolic_name = 1,
dea31012005-04-17 16:05:31 -05004417
4418 /* dynamic attributes the driver supports */
4419 .get_host_port_id = lpfc_get_host_port_id,
4420 .show_host_port_id = 1,
4421
4422 .get_host_port_type = lpfc_get_host_port_type,
4423 .show_host_port_type = 1,
4424
4425 .get_host_port_state = lpfc_get_host_port_state,
4426 .show_host_port_state = 1,
4427
4428 /* active_fc4s is shown but doesn't change (thus no get function) */
4429 .show_host_active_fc4s = 1,
4430
4431 .get_host_speed = lpfc_get_host_speed,
4432 .show_host_speed = 1,
4433
4434 .get_host_fabric_name = lpfc_get_host_fabric_name,
4435 .show_host_fabric_name = 1,
4436
4437 /*
4438 * The LPFC driver treats linkdown handling as target loss events
4439 * so there are no sysfs handlers for link_down_tmo.
4440 */
4441
4442 .get_fc_host_stats = lpfc_get_stats,
James Smart64ba8812006-08-02 15:24:34 -04004443 .reset_fc_host_stats = lpfc_reset_stats,
dea31012005-04-17 16:05:31 -05004444
4445 .dd_fcrport_size = sizeof(struct lpfc_rport_data),
4446 .show_rport_maxframe_size = 1,
4447 .show_rport_supported_classes = 1,
4448
dea31012005-04-17 16:05:31 -05004449 .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
4450 .show_rport_dev_loss_tmo = 1,
4451
4452 .get_starget_port_id = lpfc_get_starget_port_id,
4453 .show_starget_port_id = 1,
4454
4455 .get_starget_node_name = lpfc_get_starget_node_name,
4456 .show_starget_node_name = 1,
4457
4458 .get_starget_port_name = lpfc_get_starget_port_name,
4459 .show_starget_port_name = 1,
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07004460
4461 .issue_fc_host_lip = lpfc_issue_lip,
James Smartc01f3202006-08-18 17:47:08 -04004462 .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
4463 .terminate_rport_io = lpfc_terminate_rport_io,
James Smart92d7f7b2007-06-17 19:56:38 -05004464
James Smart92d7f7b2007-06-17 19:56:38 -05004465 .dd_fcvport_size = sizeof(struct lpfc_vport *),
James Smarteada2722008-12-04 22:39:13 -05004466
4467 .vport_disable = lpfc_vport_disable,
4468
4469 .set_vport_symbolic_name = lpfc_set_vport_symbolic_name,
James Smartf1c3b0f2009-07-19 10:01:32 -04004470
4471 .bsg_request = lpfc_bsg_request,
4472 .bsg_timeout = lpfc_bsg_timeout,
James Smart92d7f7b2007-06-17 19:56:38 -05004473};
4474
James Smart98c9ea52007-10-27 13:37:33 -04004475struct fc_function_template lpfc_vport_transport_functions = {
4476 /* fixed attributes the driver supports */
4477 .show_host_node_name = 1,
4478 .show_host_port_name = 1,
4479 .show_host_supported_classes = 1,
4480 .show_host_supported_fc4s = 1,
4481 .show_host_supported_speeds = 1,
4482 .show_host_maxframe_size = 1,
James Smarteada2722008-12-04 22:39:13 -05004483 .show_host_symbolic_name = 1,
James Smart98c9ea52007-10-27 13:37:33 -04004484
4485 /* dynamic attributes the driver supports */
4486 .get_host_port_id = lpfc_get_host_port_id,
4487 .show_host_port_id = 1,
4488
4489 .get_host_port_type = lpfc_get_host_port_type,
4490 .show_host_port_type = 1,
4491
4492 .get_host_port_state = lpfc_get_host_port_state,
4493 .show_host_port_state = 1,
4494
4495 /* active_fc4s is shown but doesn't change (thus no get function) */
4496 .show_host_active_fc4s = 1,
4497
4498 .get_host_speed = lpfc_get_host_speed,
4499 .show_host_speed = 1,
4500
4501 .get_host_fabric_name = lpfc_get_host_fabric_name,
4502 .show_host_fabric_name = 1,
4503
4504 /*
4505 * The LPFC driver treats linkdown handling as target loss events
4506 * so there are no sysfs handlers for link_down_tmo.
4507 */
4508
4509 .get_fc_host_stats = lpfc_get_stats,
4510 .reset_fc_host_stats = lpfc_reset_stats,
4511
4512 .dd_fcrport_size = sizeof(struct lpfc_rport_data),
4513 .show_rport_maxframe_size = 1,
4514 .show_rport_supported_classes = 1,
4515
4516 .set_rport_dev_loss_tmo = lpfc_set_rport_loss_tmo,
4517 .show_rport_dev_loss_tmo = 1,
4518
4519 .get_starget_port_id = lpfc_get_starget_port_id,
4520 .show_starget_port_id = 1,
4521
4522 .get_starget_node_name = lpfc_get_starget_node_name,
4523 .show_starget_node_name = 1,
4524
4525 .get_starget_port_name = lpfc_get_starget_port_name,
4526 .show_starget_port_name = 1,
4527
4528 .dev_loss_tmo_callbk = lpfc_dev_loss_tmo_callbk,
4529 .terminate_rport_io = lpfc_terminate_rport_io,
4530
4531 .vport_disable = lpfc_vport_disable,
James Smarteada2722008-12-04 22:39:13 -05004532
4533 .set_vport_symbolic_name = lpfc_set_vport_symbolic_name,
James Smart98c9ea52007-10-27 13:37:33 -04004534};
4535
James Smarte59058c2008-08-24 21:49:00 -04004536/**
James Smart3621a712009-04-06 18:47:14 -04004537 * lpfc_get_cfgparam - Used during probe_one to init the adapter structure
James Smarte59058c2008-08-24 21:49:00 -04004538 * @phba: lpfc_hba pointer.
4539 **/
dea31012005-04-17 16:05:31 -05004540void
4541lpfc_get_cfgparam(struct lpfc_hba *phba)
4542{
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04004543 lpfc_cr_delay_init(phba, lpfc_cr_delay);
4544 lpfc_cr_count_init(phba, lpfc_cr_count);
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -05004545 lpfc_multi_ring_support_init(phba, lpfc_multi_ring_support);
James Smarta4bc3372006-12-02 13:34:16 -05004546 lpfc_multi_ring_rctl_init(phba, lpfc_multi_ring_rctl);
4547 lpfc_multi_ring_type_init(phba, lpfc_multi_ring_type);
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04004548 lpfc_ack0_init(phba, lpfc_ack0);
4549 lpfc_topology_init(phba, lpfc_topology);
James.Smart@Emulex.Com7bcbb752005-10-28 20:29:13 -04004550 lpfc_link_speed_init(phba, lpfc_link_speed);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004551 lpfc_poll_tmo_init(phba, lpfc_poll_tmo);
James Smart78b2d852007-08-02 11:10:21 -04004552 lpfc_enable_npiv_init(phba, lpfc_enable_npiv);
James Smart4ff43242006-12-02 13:34:56 -05004553 lpfc_use_msi_init(phba, lpfc_use_msi);
James Smartda0436e2009-05-22 14:51:39 -04004554 lpfc_fcp_imax_init(phba, lpfc_fcp_imax);
4555 lpfc_fcp_wq_count_init(phba, lpfc_fcp_wq_count);
4556 lpfc_fcp_eq_count_init(phba, lpfc_fcp_eq_count);
James Smart13815c82008-01-11 01:52:48 -05004557 lpfc_enable_hba_reset_init(phba, lpfc_enable_hba_reset);
4558 lpfc_enable_hba_heartbeat_init(phba, lpfc_enable_hba_heartbeat);
James Smart81301a92008-12-04 22:39:46 -05004559 lpfc_enable_bg_init(phba, lpfc_enable_bg);
James Smart45ed1192009-10-02 15:17:02 -04004560 if (phba->sli_rev == LPFC_SLI_REV4)
4561 phba->cfg_poll = 0;
4562 else
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004563 phba->cfg_poll = lpfc_poll;
James Smarta12e07b2006-12-02 13:35:30 -05004564 phba->cfg_soft_wwnn = 0L;
James Smartc3f28af2006-08-18 17:47:18 -04004565 phba->cfg_soft_wwpn = 0L;
James Smart83108bd2008-01-11 01:53:09 -05004566 lpfc_sg_seg_cnt_init(phba, lpfc_sg_seg_cnt);
James Smart81301a92008-12-04 22:39:46 -05004567 lpfc_prot_sg_seg_cnt_init(phba, lpfc_prot_sg_seg_cnt);
James Smart7054a602007-04-25 09:52:34 -04004568 lpfc_hba_queue_depth_init(phba, lpfc_hba_queue_depth);
James Smart6fb120a2009-05-22 14:52:59 -04004569 lpfc_hba_log_verbose_init(phba, lpfc_log_verbose);
James Smart0d878412009-10-02 15:16:56 -04004570 lpfc_aer_support_init(phba, lpfc_aer_support);
James Smart84d1b002010-02-12 14:42:33 -05004571 lpfc_suppress_link_up_init(phba, lpfc_suppress_link_up);
James Smart2a9bf3d2010-06-07 15:24:45 -04004572 lpfc_iocb_cnt_init(phba, lpfc_iocb_cnt);
James Smart3de2a652007-08-02 11:09:59 -04004573 return;
4574}
Jamie Wellnitzb28485a2006-02-28 19:25:21 -05004575
James Smarte59058c2008-08-24 21:49:00 -04004576/**
James Smart3621a712009-04-06 18:47:14 -04004577 * lpfc_get_vport_cfgparam - Used during port create, init the vport structure
James Smarte59058c2008-08-24 21:49:00 -04004578 * @vport: lpfc_vport pointer.
4579 **/
James Smart3de2a652007-08-02 11:09:59 -04004580void
4581lpfc_get_vport_cfgparam(struct lpfc_vport *vport)
4582{
James Smarte8b62012007-08-02 11:10:09 -04004583 lpfc_log_verbose_init(vport, lpfc_log_verbose);
James Smart3de2a652007-08-02 11:09:59 -04004584 lpfc_lun_queue_depth_init(vport, lpfc_lun_queue_depth);
James Smart7dc517d2010-07-14 15:32:10 -04004585 lpfc_tgt_queue_depth_init(vport, lpfc_tgt_queue_depth);
James Smart3de2a652007-08-02 11:09:59 -04004586 lpfc_devloss_tmo_init(vport, lpfc_devloss_tmo);
4587 lpfc_nodev_tmo_init(vport, lpfc_nodev_tmo);
4588 lpfc_peer_port_login_init(vport, lpfc_peer_port_login);
4589 lpfc_restrict_login_init(vport, lpfc_restrict_login);
4590 lpfc_fcp_class_init(vport, lpfc_fcp_class);
4591 lpfc_use_adisc_init(vport, lpfc_use_adisc);
James Smart977b5a02008-09-07 11:52:04 -04004592 lpfc_max_scsicmpl_time_init(vport, lpfc_max_scsicmpl_time);
James Smart3de2a652007-08-02 11:09:59 -04004593 lpfc_fdmi_on_init(vport, lpfc_fdmi_on);
4594 lpfc_discovery_threads_init(vport, lpfc_discovery_threads);
4595 lpfc_max_luns_init(vport, lpfc_max_luns);
4596 lpfc_scan_down_init(vport, lpfc_scan_down);
James Smart7ee5d432007-10-27 13:37:17 -04004597 lpfc_enable_da_id_init(vport, lpfc_enable_da_id);
dea31012005-04-17 16:05:31 -05004598 return;
4599}