blob: e9a681d31223cffca67210615a45c6813f1d56af [file] [log] [blame]
Jing Huang7725ccf2009-09-23 17:46:15 -07001/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07002 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
Jing Huang7725ccf2009-09-23 17:46:15 -07003 * All rights reserved
4 * www.brocade.com
5 *
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 */
17
Jing Huang5fbe25c2010-10-18 17:17:23 -070018/*
Jing Huang7725ccf2009-09-23 17:46:15 -070019 * bfa_attr.c Linux driver configuration interface module.
20 */
21
22#include "bfad_drv.h"
23#include "bfad_im.h"
Jing Huang7725ccf2009-09-23 17:46:15 -070024
Jing Huang5fbe25c2010-10-18 17:17:23 -070025/*
Jing Huang7725ccf2009-09-23 17:46:15 -070026 * FC transport template entry, get SCSI target port ID.
27 */
Maggie52f94b62010-11-29 18:21:32 -080028static void
Jing Huang7725ccf2009-09-23 17:46:15 -070029bfad_im_get_starget_port_id(struct scsi_target *starget)
30{
31 struct Scsi_Host *shost;
32 struct bfad_im_port_s *im_port;
33 struct bfad_s *bfad;
34 struct bfad_itnim_s *itnim = NULL;
35 u32 fc_id = -1;
36 unsigned long flags;
37
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070038 shost = dev_to_shost(starget->dev.parent);
Jing Huang7725ccf2009-09-23 17:46:15 -070039 im_port = (struct bfad_im_port_s *) shost->hostdata[0];
40 bfad = im_port->bfad;
41 spin_lock_irqsave(&bfad->bfad_lock, flags);
42
Maggie Zhangf16a1752010-12-09 19:12:32 -080043 itnim = bfad_get_itnim(im_port, starget->id);
Jing Huang7725ccf2009-09-23 17:46:15 -070044 if (itnim)
45 fc_id = bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim);
46
47 fc_starget_port_id(starget) = fc_id;
48 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
49}
50
Jing Huang5fbe25c2010-10-18 17:17:23 -070051/*
Jing Huang7725ccf2009-09-23 17:46:15 -070052 * FC transport template entry, get SCSI target nwwn.
53 */
Maggie52f94b62010-11-29 18:21:32 -080054static void
Jing Huang7725ccf2009-09-23 17:46:15 -070055bfad_im_get_starget_node_name(struct scsi_target *starget)
56{
57 struct Scsi_Host *shost;
58 struct bfad_im_port_s *im_port;
59 struct bfad_s *bfad;
60 struct bfad_itnim_s *itnim = NULL;
61 u64 node_name = 0;
62 unsigned long flags;
63
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070064 shost = dev_to_shost(starget->dev.parent);
Jing Huang7725ccf2009-09-23 17:46:15 -070065 im_port = (struct bfad_im_port_s *) shost->hostdata[0];
66 bfad = im_port->bfad;
67 spin_lock_irqsave(&bfad->bfad_lock, flags);
68
Maggie Zhangf16a1752010-12-09 19:12:32 -080069 itnim = bfad_get_itnim(im_port, starget->id);
Jing Huang7725ccf2009-09-23 17:46:15 -070070 if (itnim)
71 node_name = bfa_fcs_itnim_get_nwwn(&itnim->fcs_itnim);
72
Jing Huangba816ea2010-10-18 17:10:50 -070073 fc_starget_node_name(starget) = cpu_to_be64(node_name);
Jing Huang7725ccf2009-09-23 17:46:15 -070074 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
75}
76
Jing Huang5fbe25c2010-10-18 17:17:23 -070077/*
Jing Huang7725ccf2009-09-23 17:46:15 -070078 * FC transport template entry, get SCSI target pwwn.
79 */
Maggie52f94b62010-11-29 18:21:32 -080080static void
Jing Huang7725ccf2009-09-23 17:46:15 -070081bfad_im_get_starget_port_name(struct scsi_target *starget)
82{
83 struct Scsi_Host *shost;
84 struct bfad_im_port_s *im_port;
85 struct bfad_s *bfad;
86 struct bfad_itnim_s *itnim = NULL;
87 u64 port_name = 0;
88 unsigned long flags;
89
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070090 shost = dev_to_shost(starget->dev.parent);
Jing Huang7725ccf2009-09-23 17:46:15 -070091 im_port = (struct bfad_im_port_s *) shost->hostdata[0];
92 bfad = im_port->bfad;
93 spin_lock_irqsave(&bfad->bfad_lock, flags);
94
Maggie Zhangf16a1752010-12-09 19:12:32 -080095 itnim = bfad_get_itnim(im_port, starget->id);
Jing Huang7725ccf2009-09-23 17:46:15 -070096 if (itnim)
97 port_name = bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim);
98
Jing Huangba816ea2010-10-18 17:10:50 -070099 fc_starget_port_name(starget) = cpu_to_be64(port_name);
Jing Huang7725ccf2009-09-23 17:46:15 -0700100 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
101}
102
Jing Huang5fbe25c2010-10-18 17:17:23 -0700103/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700104 * FC transport template entry, get SCSI host port ID.
105 */
Maggie52f94b62010-11-29 18:21:32 -0800106static void
Jing Huang7725ccf2009-09-23 17:46:15 -0700107bfad_im_get_host_port_id(struct Scsi_Host *shost)
108{
109 struct bfad_im_port_s *im_port =
110 (struct bfad_im_port_s *) shost->hostdata[0];
111 struct bfad_port_s *port = im_port->port;
112
113 fc_host_port_id(shost) =
Maggie Zhangf16a1752010-12-09 19:12:32 -0800114 bfa_hton3b(bfa_fcs_lport_get_fcid(port->fcs_port));
Jing Huang7725ccf2009-09-23 17:46:15 -0700115}
116
Jing Huang5fbe25c2010-10-18 17:17:23 -0700117/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700118 * FC transport template entry, get SCSI host port type.
119 */
120static void
121bfad_im_get_host_port_type(struct Scsi_Host *shost)
122{
123 struct bfad_im_port_s *im_port =
124 (struct bfad_im_port_s *) shost->hostdata[0];
125 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700126 struct bfa_lport_attr_s port_attr;
Jing Huang7725ccf2009-09-23 17:46:15 -0700127
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700128 bfa_fcs_lport_get_attr(&bfad->bfa_fcs.fabric.bport, &port_attr);
Jing Huang7725ccf2009-09-23 17:46:15 -0700129
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700130 switch (port_attr.port_type) {
131 case BFA_PORT_TYPE_NPORT:
Jing Huang7725ccf2009-09-23 17:46:15 -0700132 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
133 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700134 case BFA_PORT_TYPE_NLPORT:
Jing Huang7725ccf2009-09-23 17:46:15 -0700135 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
136 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700137 case BFA_PORT_TYPE_P2P:
Jing Huang7725ccf2009-09-23 17:46:15 -0700138 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
139 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700140 case BFA_PORT_TYPE_LPORT:
Jing Huang7725ccf2009-09-23 17:46:15 -0700141 fc_host_port_type(shost) = FC_PORTTYPE_LPORT;
142 break;
143 default:
144 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
145 break;
146 }
147}
148
Jing Huang5fbe25c2010-10-18 17:17:23 -0700149/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700150 * FC transport template entry, get SCSI host port state.
151 */
152static void
153bfad_im_get_host_port_state(struct Scsi_Host *shost)
154{
155 struct bfad_im_port_s *im_port =
156 (struct bfad_im_port_s *) shost->hostdata[0];
157 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700158 struct bfa_port_attr_s attr;
Jing Huang7725ccf2009-09-23 17:46:15 -0700159
Krishna Gudipati1c8a4c32010-03-05 19:37:37 -0800160 bfa_fcport_get_attr(&bfad->bfa, &attr);
Jing Huang7725ccf2009-09-23 17:46:15 -0700161
162 switch (attr.port_state) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700163 case BFA_PORT_ST_LINKDOWN:
Jing Huang7725ccf2009-09-23 17:46:15 -0700164 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
165 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700166 case BFA_PORT_ST_LINKUP:
Jing Huang7725ccf2009-09-23 17:46:15 -0700167 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
168 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700169 case BFA_PORT_ST_DISABLED:
170 case BFA_PORT_ST_STOPPED:
171 case BFA_PORT_ST_IOCDOWN:
172 case BFA_PORT_ST_IOCDIS:
173 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
174 break;
175 case BFA_PORT_ST_UNINIT:
176 case BFA_PORT_ST_ENABLING_QWAIT:
177 case BFA_PORT_ST_ENABLING:
178 case BFA_PORT_ST_DISABLING_QWAIT:
179 case BFA_PORT_ST_DISABLING:
Jing Huang7725ccf2009-09-23 17:46:15 -0700180 default:
181 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
182 break;
183 }
184}
185
Jing Huang5fbe25c2010-10-18 17:17:23 -0700186/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700187 * FC transport template entry, get SCSI host active fc4s.
188 */
189static void
190bfad_im_get_host_active_fc4s(struct Scsi_Host *shost)
191{
192 struct bfad_im_port_s *im_port =
193 (struct bfad_im_port_s *) shost->hostdata[0];
194 struct bfad_port_s *port = im_port->port;
195
196 memset(fc_host_active_fc4s(shost), 0,
197 sizeof(fc_host_active_fc4s(shost)));
198
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700199 if (port->supported_fc4s & BFA_LPORT_ROLE_FCP_IM)
Jing Huang7725ccf2009-09-23 17:46:15 -0700200 fc_host_active_fc4s(shost)[2] = 1;
201
Jing Huang7725ccf2009-09-23 17:46:15 -0700202 fc_host_active_fc4s(shost)[7] = 1;
203}
204
Jing Huang5fbe25c2010-10-18 17:17:23 -0700205/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700206 * FC transport template entry, get SCSI host link speed.
207 */
208static void
209bfad_im_get_host_speed(struct Scsi_Host *shost)
210{
211 struct bfad_im_port_s *im_port =
212 (struct bfad_im_port_s *) shost->hostdata[0];
213 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700214 struct bfa_port_attr_s attr;
Jing Huang7725ccf2009-09-23 17:46:15 -0700215
Krishna Gudipati1c8a4c32010-03-05 19:37:37 -0800216 bfa_fcport_get_attr(&bfad->bfa, &attr);
Jing Huang7725ccf2009-09-23 17:46:15 -0700217 switch (attr.speed) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700218 case BFA_PORT_SPEED_10GBPS:
219 fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
220 break;
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700221 case BFA_PORT_SPEED_16GBPS:
222 fc_host_speed(shost) = FC_PORTSPEED_16GBIT;
223 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700224 case BFA_PORT_SPEED_8GBPS:
Jing Huang7725ccf2009-09-23 17:46:15 -0700225 fc_host_speed(shost) = FC_PORTSPEED_8GBIT;
226 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700227 case BFA_PORT_SPEED_4GBPS:
Jing Huang7725ccf2009-09-23 17:46:15 -0700228 fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
229 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700230 case BFA_PORT_SPEED_2GBPS:
Jing Huang7725ccf2009-09-23 17:46:15 -0700231 fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
232 break;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700233 case BFA_PORT_SPEED_1GBPS:
Jing Huang7725ccf2009-09-23 17:46:15 -0700234 fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
235 break;
236 default:
237 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
238 break;
239 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700240}
241
Jing Huang5fbe25c2010-10-18 17:17:23 -0700242/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700243 * FC transport template entry, get SCSI host port type.
244 */
245static void
246bfad_im_get_host_fabric_name(struct Scsi_Host *shost)
247{
248 struct bfad_im_port_s *im_port =
249 (struct bfad_im_port_s *) shost->hostdata[0];
250 struct bfad_port_s *port = im_port->port;
251 wwn_t fabric_nwwn = 0;
252
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700253 fabric_nwwn = bfa_fcs_lport_get_fabric_name(port->fcs_port);
Jing Huang7725ccf2009-09-23 17:46:15 -0700254
Jing Huangba816ea2010-10-18 17:10:50 -0700255 fc_host_fabric_name(shost) = cpu_to_be64(fabric_nwwn);
Jing Huang7725ccf2009-09-23 17:46:15 -0700256
257}
258
Jing Huang5fbe25c2010-10-18 17:17:23 -0700259/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700260 * FC transport template entry, get BFAD statistics.
261 */
262static struct fc_host_statistics *
263bfad_im_get_stats(struct Scsi_Host *shost)
264{
265 struct bfad_im_port_s *im_port =
266 (struct bfad_im_port_s *) shost->hostdata[0];
267 struct bfad_s *bfad = im_port->bfad;
268 struct bfad_hal_comp fcomp;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700269 union bfa_port_stats_u *fcstats;
Jing Huang7725ccf2009-09-23 17:46:15 -0700270 struct fc_host_statistics *hstats;
271 bfa_status_t rc;
272 unsigned long flags;
273
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700274 fcstats = kzalloc(sizeof(union bfa_port_stats_u), GFP_KERNEL);
275 if (fcstats == NULL)
276 return NULL;
277
Jing Huang7725ccf2009-09-23 17:46:15 -0700278 hstats = &bfad->link_stats;
279 init_completion(&fcomp.comp);
280 spin_lock_irqsave(&bfad->bfad_lock, flags);
281 memset(hstats, 0, sizeof(struct fc_host_statistics));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700282 rc = bfa_port_get_stats(BFA_FCPORT(&bfad->bfa),
283 fcstats, bfad_hcb_comp, &fcomp);
Jing Huang7725ccf2009-09-23 17:46:15 -0700284 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
285 if (rc != BFA_STATUS_OK)
286 return NULL;
287
288 wait_for_completion(&fcomp.comp);
289
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700290 /* Fill the fc_host_statistics structure */
291 hstats->seconds_since_last_reset = fcstats->fc.secs_reset;
292 hstats->tx_frames = fcstats->fc.tx_frames;
293 hstats->tx_words = fcstats->fc.tx_words;
294 hstats->rx_frames = fcstats->fc.rx_frames;
295 hstats->rx_words = fcstats->fc.rx_words;
296 hstats->lip_count = fcstats->fc.lip_count;
297 hstats->nos_count = fcstats->fc.nos_count;
298 hstats->error_frames = fcstats->fc.error_frames;
299 hstats->dumped_frames = fcstats->fc.dropped_frames;
300 hstats->link_failure_count = fcstats->fc.link_failures;
301 hstats->loss_of_sync_count = fcstats->fc.loss_of_syncs;
302 hstats->loss_of_signal_count = fcstats->fc.loss_of_signals;
303 hstats->prim_seq_protocol_err_count = fcstats->fc.primseq_errs;
304 hstats->invalid_crc_count = fcstats->fc.invalid_crcs;
305
306 kfree(fcstats);
Jing Huang7725ccf2009-09-23 17:46:15 -0700307 return hstats;
308}
309
Jing Huang5fbe25c2010-10-18 17:17:23 -0700310/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700311 * FC transport template entry, reset BFAD statistics.
312 */
313static void
314bfad_im_reset_stats(struct Scsi_Host *shost)
315{
316 struct bfad_im_port_s *im_port =
317 (struct bfad_im_port_s *) shost->hostdata[0];
318 struct bfad_s *bfad = im_port->bfad;
319 struct bfad_hal_comp fcomp;
320 unsigned long flags;
321 bfa_status_t rc;
322
323 init_completion(&fcomp.comp);
324 spin_lock_irqsave(&bfad->bfad_lock, flags);
Krishna Gudipatica8b4322010-03-05 19:38:07 -0800325 rc = bfa_port_clear_stats(BFA_FCPORT(&bfad->bfa), bfad_hcb_comp,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700326 &fcomp);
Jing Huang7725ccf2009-09-23 17:46:15 -0700327 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
328
329 if (rc != BFA_STATUS_OK)
330 return;
331
332 wait_for_completion(&fcomp.comp);
333
334 return;
335}
336
Jing Huang5fbe25c2010-10-18 17:17:23 -0700337/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700338 * FC transport template entry, set rport loss timeout.
Vijaya Mohan Guvva4dde5062013-05-13 02:33:34 -0700339 * Update dev_loss_tmo based on the value pushed down by the stack
340 * In case it is lesser than path_tov of driver, set it to path_tov + 1
341 * to ensure that the driver times out before the application
Jing Huang7725ccf2009-09-23 17:46:15 -0700342 */
343static void
344bfad_im_set_rport_loss_tmo(struct fc_rport *rport, u32 timeout)
345{
346 struct bfad_itnim_data_s *itnim_data = rport->dd_data;
347 struct bfad_itnim_s *itnim = itnim_data->itnim;
348 struct bfad_s *bfad = itnim->im->bfad;
Vijaya Mohan Guvva4dde5062013-05-13 02:33:34 -0700349 uint16_t path_tov = bfa_fcpim_path_tov_get(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -0700350
Vijaya Mohan Guvva4dde5062013-05-13 02:33:34 -0700351 rport->dev_loss_tmo = timeout;
352 if (timeout < path_tov)
353 rport->dev_loss_tmo = path_tov + 1;
Jing Huang7725ccf2009-09-23 17:46:15 -0700354}
355
Jing Huangb5042932010-03-19 11:05:39 -0700356static int
357bfad_im_vport_create(struct fc_vport *fc_vport, bool disable)
358{
359 char *vname = fc_vport->symbolic_name;
360 struct Scsi_Host *shost = fc_vport->shost;
361 struct bfad_im_port_s *im_port =
362 (struct bfad_im_port_s *) shost->hostdata[0];
363 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700364 struct bfa_lport_cfg_s port_cfg;
365 struct bfad_vport_s *vp;
Jing Huangb5042932010-03-19 11:05:39 -0700366 int status = 0, rc;
367 unsigned long flags;
368
369 memset(&port_cfg, 0, sizeof(port_cfg));
Jing Huangd9883542010-07-08 19:46:26 -0700370 u64_to_wwn(fc_vport->node_name, (u8 *)&port_cfg.nwwn);
371 u64_to_wwn(fc_vport->port_name, (u8 *)&port_cfg.pwwn);
Jing Huangb5042932010-03-19 11:05:39 -0700372 if (strlen(vname) > 0)
373 strcpy((char *)&port_cfg.sym_name, vname);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700374 port_cfg.roles = BFA_LPORT_ROLE_FCP_IM;
Jing Huangb5042932010-03-19 11:05:39 -0700375
Jing Huangd9883542010-07-08 19:46:26 -0700376 spin_lock_irqsave(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700377 list_for_each_entry(vp, &bfad->pbc_vport_list, list_entry) {
378 if (port_cfg.pwwn ==
379 vp->fcs_vport.lport.port_cfg.pwwn) {
380 port_cfg.preboot_vp =
381 vp->fcs_vport.lport.port_cfg.preboot_vp;
Jing Huangd9883542010-07-08 19:46:26 -0700382 break;
383 }
384 }
385 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
386
387 rc = bfad_vport_create(bfad, 0, &port_cfg, &fc_vport->dev);
Jing Huangb5042932010-03-19 11:05:39 -0700388 if (rc == BFA_STATUS_OK) {
Jing Huangd9883542010-07-08 19:46:26 -0700389 struct bfad_vport_s *vport;
Jing Huangb5042932010-03-19 11:05:39 -0700390 struct bfa_fcs_vport_s *fcs_vport;
391 struct Scsi_Host *vshost;
392
393 spin_lock_irqsave(&bfad->bfad_lock, flags);
394 fcs_vport = bfa_fcs_vport_lookup(&bfad->bfa_fcs, 0,
395 port_cfg.pwwn);
Jing Huangd9883542010-07-08 19:46:26 -0700396 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
397 if (fcs_vport == NULL)
Jing Huangb5042932010-03-19 11:05:39 -0700398 return VPCERR_BAD_WWN;
Jing Huangb5042932010-03-19 11:05:39 -0700399
400 fc_vport_set_state(fc_vport, FC_VPORT_ACTIVE);
401 if (disable) {
Jing Huangd9883542010-07-08 19:46:26 -0700402 spin_lock_irqsave(&bfad->bfad_lock, flags);
Jing Huangb5042932010-03-19 11:05:39 -0700403 bfa_fcs_vport_stop(fcs_vport);
Jing Huangd9883542010-07-08 19:46:26 -0700404 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Jing Huangb5042932010-03-19 11:05:39 -0700405 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
406 }
Jing Huangb5042932010-03-19 11:05:39 -0700407
408 vport = fcs_vport->vport_drv;
409 vshost = vport->drv_port.im_port->shost;
Jing Huangd9883542010-07-08 19:46:26 -0700410 fc_host_node_name(vshost) = wwn_to_u64((u8 *)&port_cfg.nwwn);
411 fc_host_port_name(vshost) = wwn_to_u64((u8 *)&port_cfg.pwwn);
Krishna Gudipati6192bd72012-05-11 17:49:59 -0700412 fc_host_supported_classes(vshost) = FC_COS_CLASS3;
413
414 memset(fc_host_supported_fc4s(vshost), 0,
415 sizeof(fc_host_supported_fc4s(vshost)));
416
417 /* For FCP type 0x08 */
418 if (supported_fc4s & BFA_LPORT_ROLE_FCP_IM)
419 fc_host_supported_fc4s(vshost)[2] = 1;
420
421 /* For fibre channel services type 0x20 */
422 fc_host_supported_fc4s(vshost)[7] = 1;
423
424 fc_host_supported_speeds(vshost) =
425 bfad_im_supported_speeds(&bfad->bfa);
426 fc_host_maxframe_size(vshost) =
427 bfa_fcport_get_maxfrsize(&bfad->bfa);
428
Jing Huangb5042932010-03-19 11:05:39 -0700429 fc_vport->dd_data = vport;
430 vport->drv_port.im_port->fc_vport = fc_vport;
Jing Huangb5042932010-03-19 11:05:39 -0700431 } else if (rc == BFA_STATUS_INVALID_WWN)
432 return VPCERR_BAD_WWN;
433 else if (rc == BFA_STATUS_VPORT_EXISTS)
434 return VPCERR_BAD_WWN;
435 else if (rc == BFA_STATUS_VPORT_MAX)
436 return VPCERR_NO_FABRIC_SUPP;
437 else if (rc == BFA_STATUS_VPORT_WWN_BP)
438 return VPCERR_BAD_WWN;
Jing Huangd9883542010-07-08 19:46:26 -0700439 else
Jing Huangb5042932010-03-19 11:05:39 -0700440 return FC_VPORT_FAILED;
441
442 return status;
443}
444
Krishna Gudipatiacea2412012-03-13 17:37:26 -0700445int
446bfad_im_issue_fc_host_lip(struct Scsi_Host *shost)
447{
448 struct bfad_im_port_s *im_port =
449 (struct bfad_im_port_s *) shost->hostdata[0];
450 struct bfad_s *bfad = im_port->bfad;
451 struct bfad_hal_comp fcomp;
452 unsigned long flags;
453 uint32_t status;
454
455 init_completion(&fcomp.comp);
456 spin_lock_irqsave(&bfad->bfad_lock, flags);
457 status = bfa_port_disable(&bfad->bfa.modules.port,
458 bfad_hcb_comp, &fcomp);
459 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
460
461 if (status != BFA_STATUS_OK)
462 return -EIO;
463
464 wait_for_completion(&fcomp.comp);
465 if (fcomp.status != BFA_STATUS_OK)
466 return -EIO;
467
468 spin_lock_irqsave(&bfad->bfad_lock, flags);
469 status = bfa_port_enable(&bfad->bfa.modules.port,
470 bfad_hcb_comp, &fcomp);
471 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
472 if (status != BFA_STATUS_OK)
473 return -EIO;
474
475 wait_for_completion(&fcomp.comp);
476 if (fcomp.status != BFA_STATUS_OK)
477 return -EIO;
478
479 return 0;
480}
481
Jing Huangb5042932010-03-19 11:05:39 -0700482static int
483bfad_im_vport_delete(struct fc_vport *fc_vport)
484{
485 struct bfad_vport_s *vport = (struct bfad_vport_s *)fc_vport->dd_data;
486 struct bfad_im_port_s *im_port =
487 (struct bfad_im_port_s *) vport->drv_port.im_port;
488 struct bfad_s *bfad = im_port->bfad;
489 struct bfad_port_s *port;
490 struct bfa_fcs_vport_s *fcs_vport;
491 struct Scsi_Host *vshost;
492 wwn_t pwwn;
493 int rc;
494 unsigned long flags;
495 struct completion fcomp;
496
Krishna Gudipatiff179e02012-03-13 17:40:31 -0700497 if (im_port->flags & BFAD_PORT_DELETE) {
498 bfad_scsi_host_free(bfad, im_port);
499 list_del(&vport->list_entry);
Krishna Gudipati17c201b2012-04-09 18:40:01 -0700500 kfree(vport);
Krishna Gudipatiff179e02012-03-13 17:40:31 -0700501 return 0;
502 }
Jing Huangb5042932010-03-19 11:05:39 -0700503
504 port = im_port->port;
505
506 vshost = vport->drv_port.im_port->shost;
Jing Huangd9883542010-07-08 19:46:26 -0700507 u64_to_wwn(fc_host_port_name(vshost), (u8 *)&pwwn);
Jing Huangb5042932010-03-19 11:05:39 -0700508
509 spin_lock_irqsave(&bfad->bfad_lock, flags);
510 fcs_vport = bfa_fcs_vport_lookup(&bfad->bfa_fcs, 0, pwwn);
511 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
512
513 if (fcs_vport == NULL)
514 return VPCERR_BAD_WWN;
515
516 vport->drv_port.flags |= BFAD_PORT_DELETE;
517
518 vport->comp_del = &fcomp;
519 init_completion(vport->comp_del);
520
521 spin_lock_irqsave(&bfad->bfad_lock, flags);
522 rc = bfa_fcs_vport_delete(&vport->fcs_vport);
523 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
524
Jing Huangc54d5572010-07-08 20:01:49 -0700525 if (rc == BFA_STATUS_PBC) {
526 vport->drv_port.flags &= ~BFAD_PORT_DELETE;
527 vport->comp_del = NULL;
Jing Huangd9883542010-07-08 19:46:26 -0700528 return -1;
Jing Huangc54d5572010-07-08 20:01:49 -0700529 }
Jing Huangd9883542010-07-08 19:46:26 -0700530
Jing Huangb5042932010-03-19 11:05:39 -0700531 wait_for_completion(vport->comp_del);
532
Maggie Zhangf16a1752010-12-09 19:12:32 -0800533 bfad_scsi_host_free(bfad, im_port);
Krishna Gudipati5b7db7a2011-12-20 18:58:32 -0800534 list_del(&vport->list_entry);
Jing Huangb5042932010-03-19 11:05:39 -0700535 kfree(vport);
536
537 return 0;
538}
539
540static int
541bfad_im_vport_disable(struct fc_vport *fc_vport, bool disable)
542{
543 struct bfad_vport_s *vport;
544 struct bfad_s *bfad;
545 struct bfa_fcs_vport_s *fcs_vport;
546 struct Scsi_Host *vshost;
547 wwn_t pwwn;
548 unsigned long flags;
549
550 vport = (struct bfad_vport_s *)fc_vport->dd_data;
551 bfad = vport->drv_port.bfad;
552 vshost = vport->drv_port.im_port->shost;
Jing Huangd9883542010-07-08 19:46:26 -0700553 u64_to_wwn(fc_host_port_name(vshost), (u8 *)&pwwn);
Jing Huangb5042932010-03-19 11:05:39 -0700554
555 spin_lock_irqsave(&bfad->bfad_lock, flags);
556 fcs_vport = bfa_fcs_vport_lookup(&bfad->bfa_fcs, 0, pwwn);
557 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
558
559 if (fcs_vport == NULL)
560 return VPCERR_BAD_WWN;
561
562 if (disable) {
563 bfa_fcs_vport_stop(fcs_vport);
564 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
565 } else {
566 bfa_fcs_vport_start(fcs_vport);
567 fc_vport_set_state(fc_vport, FC_VPORT_ACTIVE);
568 }
569
570 return 0;
571}
572
Krishna Gudipatiebfe8392012-08-22 19:50:20 -0700573void
574bfad_im_vport_set_symbolic_name(struct fc_vport *fc_vport)
575{
576 struct bfad_vport_s *vport = (struct bfad_vport_s *)fc_vport->dd_data;
577 struct bfad_im_port_s *im_port =
578 (struct bfad_im_port_s *)vport->drv_port.im_port;
579 struct bfad_s *bfad = im_port->bfad;
580 struct Scsi_Host *vshost = vport->drv_port.im_port->shost;
581 char *sym_name = fc_vport->symbolic_name;
582 struct bfa_fcs_vport_s *fcs_vport;
583 wwn_t pwwn;
584 unsigned long flags;
585
586 u64_to_wwn(fc_host_port_name(vshost), (u8 *)&pwwn);
587
588 spin_lock_irqsave(&bfad->bfad_lock, flags);
589 fcs_vport = bfa_fcs_vport_lookup(&bfad->bfa_fcs, 0, pwwn);
590 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
591
592 if (fcs_vport == NULL)
593 return;
594
595 spin_lock_irqsave(&bfad->bfad_lock, flags);
596 if (strlen(sym_name) > 0) {
597 strcpy(fcs_vport->lport.port_cfg.sym_name.symname, sym_name);
598 bfa_fcs_lport_ns_util_send_rspn_id(
599 BFA_FCS_GET_NS_FROM_PORT((&fcs_vport->lport)), NULL);
600 }
601 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
602}
603
Jing Huang7725ccf2009-09-23 17:46:15 -0700604struct fc_function_template bfad_im_fc_function_template = {
605
606 /* Target dynamic attributes */
607 .get_starget_port_id = bfad_im_get_starget_port_id,
608 .show_starget_port_id = 1,
609 .get_starget_node_name = bfad_im_get_starget_node_name,
610 .show_starget_node_name = 1,
611 .get_starget_port_name = bfad_im_get_starget_port_name,
612 .show_starget_port_name = 1,
613
614 /* Host dynamic attribute */
615 .get_host_port_id = bfad_im_get_host_port_id,
616 .show_host_port_id = 1,
617
618 /* Host fixed attributes */
619 .show_host_node_name = 1,
620 .show_host_port_name = 1,
621 .show_host_supported_classes = 1,
622 .show_host_supported_fc4s = 1,
623 .show_host_supported_speeds = 1,
624 .show_host_maxframe_size = 1,
625
626 /* More host dynamic attributes */
627 .show_host_port_type = 1,
628 .get_host_port_type = bfad_im_get_host_port_type,
629 .show_host_port_state = 1,
630 .get_host_port_state = bfad_im_get_host_port_state,
631 .show_host_active_fc4s = 1,
632 .get_host_active_fc4s = bfad_im_get_host_active_fc4s,
633 .show_host_speed = 1,
634 .get_host_speed = bfad_im_get_host_speed,
635 .show_host_fabric_name = 1,
636 .get_host_fabric_name = bfad_im_get_host_fabric_name,
637
638 .show_host_symbolic_name = 1,
639
640 /* Statistics */
641 .get_fc_host_stats = bfad_im_get_stats,
642 .reset_fc_host_stats = bfad_im_reset_stats,
643
644 /* Allocation length for host specific data */
645 .dd_fcrport_size = sizeof(struct bfad_itnim_data_s *),
646
647 /* Remote port fixed attributes */
648 .show_rport_maxframe_size = 1,
649 .show_rport_supported_classes = 1,
650 .show_rport_dev_loss_tmo = 1,
Jing Huang7725ccf2009-09-23 17:46:15 -0700651 .set_rport_dev_loss_tmo = bfad_im_set_rport_loss_tmo,
Krishna Gudipatiacea2412012-03-13 17:37:26 -0700652 .issue_fc_host_lip = bfad_im_issue_fc_host_lip,
Jing Huangb5042932010-03-19 11:05:39 -0700653 .vport_create = bfad_im_vport_create,
654 .vport_delete = bfad_im_vport_delete,
655 .vport_disable = bfad_im_vport_disable,
Krishna Gudipatiebfe8392012-08-22 19:50:20 -0700656 .set_vport_symbolic_name = bfad_im_vport_set_symbolic_name,
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700657 .bsg_request = bfad_im_bsg_request,
658 .bsg_timeout = bfad_im_bsg_timeout,
Jing Huangb5042932010-03-19 11:05:39 -0700659};
660
661struct fc_function_template bfad_im_vport_fc_function_template = {
662
663 /* Target dynamic attributes */
664 .get_starget_port_id = bfad_im_get_starget_port_id,
665 .show_starget_port_id = 1,
666 .get_starget_node_name = bfad_im_get_starget_node_name,
667 .show_starget_node_name = 1,
668 .get_starget_port_name = bfad_im_get_starget_port_name,
669 .show_starget_port_name = 1,
670
671 /* Host dynamic attribute */
672 .get_host_port_id = bfad_im_get_host_port_id,
673 .show_host_port_id = 1,
674
675 /* Host fixed attributes */
676 .show_host_node_name = 1,
677 .show_host_port_name = 1,
678 .show_host_supported_classes = 1,
679 .show_host_supported_fc4s = 1,
680 .show_host_supported_speeds = 1,
681 .show_host_maxframe_size = 1,
682
683 /* More host dynamic attributes */
684 .show_host_port_type = 1,
685 .get_host_port_type = bfad_im_get_host_port_type,
686 .show_host_port_state = 1,
687 .get_host_port_state = bfad_im_get_host_port_state,
688 .show_host_active_fc4s = 1,
689 .get_host_active_fc4s = bfad_im_get_host_active_fc4s,
690 .show_host_speed = 1,
691 .get_host_speed = bfad_im_get_host_speed,
692 .show_host_fabric_name = 1,
693 .get_host_fabric_name = bfad_im_get_host_fabric_name,
694
695 .show_host_symbolic_name = 1,
696
697 /* Statistics */
698 .get_fc_host_stats = bfad_im_get_stats,
699 .reset_fc_host_stats = bfad_im_reset_stats,
700
701 /* Allocation length for host specific data */
702 .dd_fcrport_size = sizeof(struct bfad_itnim_data_s *),
703
704 /* Remote port fixed attributes */
705 .show_rport_maxframe_size = 1,
706 .show_rport_supported_classes = 1,
707 .show_rport_dev_loss_tmo = 1,
Jing Huangb5042932010-03-19 11:05:39 -0700708 .set_rport_dev_loss_tmo = bfad_im_set_rport_loss_tmo,
Jing Huang7725ccf2009-09-23 17:46:15 -0700709};
710
Jing Huang5fbe25c2010-10-18 17:17:23 -0700711/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700712 * Scsi_Host_attrs SCSI host attributes
713 */
714static ssize_t
715bfad_im_serial_num_show(struct device *dev, struct device_attribute *attr,
716 char *buf)
717{
718 struct Scsi_Host *shost = class_to_shost(dev);
719 struct bfad_im_port_s *im_port =
720 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700721 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800722 char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN];
Jing Huang7725ccf2009-09-23 17:46:15 -0700723
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800724 bfa_get_adapter_serial_num(&bfad->bfa, serial_num);
725 return snprintf(buf, PAGE_SIZE, "%s\n", serial_num);
Jing Huang7725ccf2009-09-23 17:46:15 -0700726}
727
728static ssize_t
729bfad_im_model_show(struct device *dev, struct device_attribute *attr,
730 char *buf)
731{
732 struct Scsi_Host *shost = class_to_shost(dev);
733 struct bfad_im_port_s *im_port =
734 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700735 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800736 char model[BFA_ADAPTER_MODEL_NAME_LEN];
Jing Huang7725ccf2009-09-23 17:46:15 -0700737
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800738 bfa_get_adapter_model(&bfad->bfa, model);
739 return snprintf(buf, PAGE_SIZE, "%s\n", model);
Jing Huang7725ccf2009-09-23 17:46:15 -0700740}
741
742static ssize_t
743bfad_im_model_desc_show(struct device *dev, struct device_attribute *attr,
744 char *buf)
745{
746 struct Scsi_Host *shost = class_to_shost(dev);
747 struct bfad_im_port_s *im_port =
748 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700749 struct bfad_s *bfad = im_port->bfad;
750 char model[BFA_ADAPTER_MODEL_NAME_LEN];
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800751 char model_descr[BFA_ADAPTER_MODEL_DESCR_LEN];
Krishna Gudipati75332a72011-06-13 15:54:31 -0700752 int nports = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -0700753
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700754 bfa_get_adapter_model(&bfad->bfa, model);
Krishna Gudipati75332a72011-06-13 15:54:31 -0700755 nports = bfa_get_nports(&bfad->bfa);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700756 if (!strcmp(model, "Brocade-425"))
757 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
758 "Brocade 4Gbps PCIe dual port FC HBA");
759 else if (!strcmp(model, "Brocade-825"))
760 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
761 "Brocade 8Gbps PCIe dual port FC HBA");
762 else if (!strcmp(model, "Brocade-42B"))
763 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
Krishna Gudipati75332a72011-06-13 15:54:31 -0700764 "Brocade 4Gbps PCIe dual port FC HBA for HP");
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700765 else if (!strcmp(model, "Brocade-82B"))
766 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
Krishna Gudipati75332a72011-06-13 15:54:31 -0700767 "Brocade 8Gbps PCIe dual port FC HBA for HP");
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700768 else if (!strcmp(model, "Brocade-1010"))
769 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
770 "Brocade 10Gbps single port CNA");
771 else if (!strcmp(model, "Brocade-1020"))
772 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
773 "Brocade 10Gbps dual port CNA");
774 else if (!strcmp(model, "Brocade-1007"))
775 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
Krishna Gudipati75332a72011-06-13 15:54:31 -0700776 "Brocade 10Gbps CNA for IBM Blade Center");
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700777 else if (!strcmp(model, "Brocade-415"))
778 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
779 "Brocade 4Gbps PCIe single port FC HBA");
780 else if (!strcmp(model, "Brocade-815"))
781 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
782 "Brocade 8Gbps PCIe single port FC HBA");
783 else if (!strcmp(model, "Brocade-41B"))
784 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
Krishna Gudipati75332a72011-06-13 15:54:31 -0700785 "Brocade 4Gbps PCIe single port FC HBA for HP");
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700786 else if (!strcmp(model, "Brocade-81B"))
787 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
Krishna Gudipati75332a72011-06-13 15:54:31 -0700788 "Brocade 8Gbps PCIe single port FC HBA for HP");
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700789 else if (!strcmp(model, "Brocade-804"))
790 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
Krishna Gudipati75332a72011-06-13 15:54:31 -0700791 "Brocade 8Gbps FC HBA for HP Bladesystem C-class");
Krishna Gudipati9d8ad782012-04-09 18:40:43 -0700792 else if (!strcmp(model, "Brocade-1741"))
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700793 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
Krishna Gudipati75332a72011-06-13 15:54:31 -0700794 "Brocade 10Gbps CNA for Dell M-Series Blade Servers");
Krishna Gudipati9d8ad782012-04-09 18:40:43 -0700795 else if (strstr(model, "Brocade-1860")) {
Krishna Gudipati75332a72011-06-13 15:54:31 -0700796 if (nports == 1 && bfa_ioc_is_cna(&bfad->bfa.ioc))
797 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
798 "Brocade 10Gbps single port CNA");
799 else if (nports == 1 && !bfa_ioc_is_cna(&bfad->bfa.ioc))
800 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
801 "Brocade 16Gbps PCIe single port FC HBA");
802 else if (nports == 2 && bfa_ioc_is_cna(&bfad->bfa.ioc))
803 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
804 "Brocade 10Gbps dual port CNA");
805 else if (nports == 2 && !bfa_ioc_is_cna(&bfad->bfa.ioc))
806 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
807 "Brocade 16Gbps PCIe dual port FC HBA");
Krishna Gudipati6dca60a2012-08-22 19:51:35 -0700808 } else if (!strcmp(model, "Brocade-1867")) {
809 if (nports == 1 && !bfa_ioc_is_cna(&bfad->bfa.ioc))
810 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
811 "Brocade 16Gbps PCIe single port FC HBA for IBM");
812 else if (nports == 2 && !bfa_ioc_is_cna(&bfad->bfa.ioc))
813 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
814 "Brocade 16Gbps PCIe dual port FC HBA for IBM");
Krishna Gudipati75332a72011-06-13 15:54:31 -0700815 } else
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700816 snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN,
817 "Invalid Model");
818
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800819 return snprintf(buf, PAGE_SIZE, "%s\n", model_descr);
Jing Huang7725ccf2009-09-23 17:46:15 -0700820}
821
822static ssize_t
823bfad_im_node_name_show(struct device *dev, struct device_attribute *attr,
824 char *buf)
825{
826 struct Scsi_Host *shost = class_to_shost(dev);
827 struct bfad_im_port_s *im_port =
828 (struct bfad_im_port_s *) shost->hostdata[0];
829 struct bfad_port_s *port = im_port->port;
830 u64 nwwn;
831
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700832 nwwn = bfa_fcs_lport_get_nwwn(port->fcs_port);
Jing Huangba816ea2010-10-18 17:10:50 -0700833 return snprintf(buf, PAGE_SIZE, "0x%llx\n", cpu_to_be64(nwwn));
Jing Huang7725ccf2009-09-23 17:46:15 -0700834}
835
836static ssize_t
837bfad_im_symbolic_name_show(struct device *dev, struct device_attribute *attr,
838 char *buf)
839{
840 struct Scsi_Host *shost = class_to_shost(dev);
841 struct bfad_im_port_s *im_port =
842 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700843 struct bfad_s *bfad = im_port->bfad;
844 struct bfa_lport_attr_s port_attr;
845 char symname[BFA_SYMNAME_MAXLEN];
Jing Huang7725ccf2009-09-23 17:46:15 -0700846
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700847 bfa_fcs_lport_get_attr(&bfad->bfa_fcs.fabric.bport, &port_attr);
848 strncpy(symname, port_attr.port_cfg.sym_name.symname,
849 BFA_SYMNAME_MAXLEN);
850 return snprintf(buf, PAGE_SIZE, "%s\n", symname);
Jing Huang7725ccf2009-09-23 17:46:15 -0700851}
852
853static ssize_t
854bfad_im_hw_version_show(struct device *dev, struct device_attribute *attr,
855 char *buf)
856{
857 struct Scsi_Host *shost = class_to_shost(dev);
858 struct bfad_im_port_s *im_port =
859 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700860 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800861 char hw_ver[BFA_VERSION_LEN];
Jing Huang7725ccf2009-09-23 17:46:15 -0700862
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800863 bfa_get_pci_chip_rev(&bfad->bfa, hw_ver);
864 return snprintf(buf, PAGE_SIZE, "%s\n", hw_ver);
Jing Huang7725ccf2009-09-23 17:46:15 -0700865}
866
867static ssize_t
868bfad_im_drv_version_show(struct device *dev, struct device_attribute *attr,
869 char *buf)
870{
871 return snprintf(buf, PAGE_SIZE, "%s\n", BFAD_DRIVER_VERSION);
872}
873
874static ssize_t
875bfad_im_optionrom_version_show(struct device *dev,
876 struct device_attribute *attr, char *buf)
877{
878 struct Scsi_Host *shost = class_to_shost(dev);
879 struct bfad_im_port_s *im_port =
880 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700881 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800882 char optrom_ver[BFA_VERSION_LEN];
Jing Huang7725ccf2009-09-23 17:46:15 -0700883
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800884 bfa_get_adapter_optrom_ver(&bfad->bfa, optrom_ver);
885 return snprintf(buf, PAGE_SIZE, "%s\n", optrom_ver);
Jing Huang7725ccf2009-09-23 17:46:15 -0700886}
887
888static ssize_t
889bfad_im_fw_version_show(struct device *dev, struct device_attribute *attr,
890 char *buf)
891{
892 struct Scsi_Host *shost = class_to_shost(dev);
893 struct bfad_im_port_s *im_port =
894 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700895 struct bfad_s *bfad = im_port->bfad;
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800896 char fw_ver[BFA_VERSION_LEN];
Jing Huang7725ccf2009-09-23 17:46:15 -0700897
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800898 bfa_get_adapter_fw_ver(&bfad->bfa, fw_ver);
899 return snprintf(buf, PAGE_SIZE, "%s\n", fw_ver);
Jing Huang7725ccf2009-09-23 17:46:15 -0700900}
901
902static ssize_t
903bfad_im_num_of_ports_show(struct device *dev, struct device_attribute *attr,
904 char *buf)
905{
906 struct Scsi_Host *shost = class_to_shost(dev);
907 struct bfad_im_port_s *im_port =
908 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700909 struct bfad_s *bfad = im_port->bfad;
Jing Huang7725ccf2009-09-23 17:46:15 -0700910
Krishna Gudipati0a4b1fc2010-03-05 19:37:57 -0800911 return snprintf(buf, PAGE_SIZE, "%d\n",
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700912 bfa_get_nports(&bfad->bfa));
Jing Huang7725ccf2009-09-23 17:46:15 -0700913}
914
915static ssize_t
916bfad_im_drv_name_show(struct device *dev, struct device_attribute *attr,
917 char *buf)
918{
919 return snprintf(buf, PAGE_SIZE, "%s\n", BFAD_DRIVER_NAME);
920}
921
922static ssize_t
923bfad_im_num_of_discovered_ports_show(struct device *dev,
924 struct device_attribute *attr, char *buf)
925{
926 struct Scsi_Host *shost = class_to_shost(dev);
927 struct bfad_im_port_s *im_port =
928 (struct bfad_im_port_s *) shost->hostdata[0];
929 struct bfad_port_s *port = im_port->port;
930 struct bfad_s *bfad = im_port->bfad;
931 int nrports = 2048;
Krishna Gudipatiee1a4a42012-08-22 19:50:43 -0700932 struct bfa_rport_qualifier_s *rports = NULL;
Jing Huang7725ccf2009-09-23 17:46:15 -0700933 unsigned long flags;
934
Krishna Gudipatiee1a4a42012-08-22 19:50:43 -0700935 rports = kzalloc(sizeof(struct bfa_rport_qualifier_s) * nrports,
936 GFP_ATOMIC);
Jing Huang7725ccf2009-09-23 17:46:15 -0700937 if (rports == NULL)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700938 return snprintf(buf, PAGE_SIZE, "Failed\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700939
940 spin_lock_irqsave(&bfad->bfad_lock, flags);
Krishna Gudipatiee1a4a42012-08-22 19:50:43 -0700941 bfa_fcs_lport_get_rport_quals(port->fcs_port, rports, &nrports);
Jing Huang7725ccf2009-09-23 17:46:15 -0700942 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
943 kfree(rports);
944
945 return snprintf(buf, PAGE_SIZE, "%d\n", nrports);
946}
947
948static DEVICE_ATTR(serial_number, S_IRUGO,
949 bfad_im_serial_num_show, NULL);
950static DEVICE_ATTR(model, S_IRUGO, bfad_im_model_show, NULL);
951static DEVICE_ATTR(model_description, S_IRUGO,
952 bfad_im_model_desc_show, NULL);
953static DEVICE_ATTR(node_name, S_IRUGO, bfad_im_node_name_show, NULL);
954static DEVICE_ATTR(symbolic_name, S_IRUGO,
955 bfad_im_symbolic_name_show, NULL);
956static DEVICE_ATTR(hardware_version, S_IRUGO,
957 bfad_im_hw_version_show, NULL);
958static DEVICE_ATTR(driver_version, S_IRUGO,
959 bfad_im_drv_version_show, NULL);
960static DEVICE_ATTR(option_rom_version, S_IRUGO,
961 bfad_im_optionrom_version_show, NULL);
962static DEVICE_ATTR(firmware_version, S_IRUGO,
963 bfad_im_fw_version_show, NULL);
964static DEVICE_ATTR(number_of_ports, S_IRUGO,
965 bfad_im_num_of_ports_show, NULL);
966static DEVICE_ATTR(driver_name, S_IRUGO, bfad_im_drv_name_show, NULL);
967static DEVICE_ATTR(number_of_discovered_ports, S_IRUGO,
968 bfad_im_num_of_discovered_ports_show, NULL);
969
970struct device_attribute *bfad_im_host_attrs[] = {
971 &dev_attr_serial_number,
972 &dev_attr_model,
973 &dev_attr_model_description,
974 &dev_attr_node_name,
975 &dev_attr_symbolic_name,
976 &dev_attr_hardware_version,
977 &dev_attr_driver_version,
978 &dev_attr_option_rom_version,
979 &dev_attr_firmware_version,
980 &dev_attr_number_of_ports,
981 &dev_attr_driver_name,
982 &dev_attr_number_of_discovered_ports,
983 NULL,
984};
985
986struct device_attribute *bfad_im_vport_attrs[] = {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700987 &dev_attr_serial_number,
988 &dev_attr_model,
989 &dev_attr_model_description,
990 &dev_attr_node_name,
991 &dev_attr_symbolic_name,
992 &dev_attr_hardware_version,
993 &dev_attr_driver_version,
994 &dev_attr_option_rom_version,
995 &dev_attr_firmware_version,
996 &dev_attr_number_of_ports,
997 &dev_attr_driver_name,
998 &dev_attr_number_of_discovered_ports,
999 NULL,
Jing Huang7725ccf2009-09-23 17:46:15 -07001000};
1001
1002