blob: efcb2470f40aa1b216a09f808491571c4907355d [file] [log] [blame]
Jing Huang7725ccf2009-09-23 17:46:15 -07001/*
Anil Gurumurthy889d0d42015-11-26 03:54:45 -05002 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
3 * Copyright (c) 2014- QLogic Corporation.
Jing Huang7725ccf2009-09-23 17:46:15 -07004 * All rights reserved
Anil Gurumurthy889d0d42015-11-26 03:54:45 -05005 * www.qlogic.com
Jing Huang7725ccf2009-09-23 17:46:15 -07006 *
7 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License (GPL) Version 2 as
11 * published by the Free Software Foundation
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 */
18
Jing Huang5fbe25c2010-10-18 17:17:23 -070019/*
Jing Huang7725ccf2009-09-23 17:46:15 -070020 * bfad_im.c Linux driver IM module.
21 */
22
Paul Gortmaker09703662011-05-27 09:37:25 -040023#include <linux/export.h>
24
Jing Huang7725ccf2009-09-23 17:46:15 -070025#include "bfad_drv.h"
26#include "bfad_im.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070027#include "bfa_fcs.h"
Jing Huang7725ccf2009-09-23 17:46:15 -070028
29BFA_TRC_FILE(LDRV, IM);
30
31DEFINE_IDR(bfad_im_port_index);
32struct scsi_transport_template *bfad_im_scsi_transport_template;
Jing Huangb5042932010-03-19 11:05:39 -070033struct scsi_transport_template *bfad_im_scsi_vport_transport_template;
Jing Huang7725ccf2009-09-23 17:46:15 -070034static void bfad_im_itnim_work_handler(struct work_struct *work);
Jeff Garzikf2812332010-11-16 02:10:29 -050035static int bfad_im_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmnd);
Jing Huang7725ccf2009-09-23 17:46:15 -070036static int bfad_im_slave_alloc(struct scsi_device *sdev);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070037static void bfad_im_fc_rport_add(struct bfad_im_port_s *im_port,
38 struct bfad_itnim_s *itnim);
Jing Huang7725ccf2009-09-23 17:46:15 -070039
40void
41bfa_cb_ioim_done(void *drv, struct bfad_ioim_s *dio,
42 enum bfi_ioim_status io_status, u8 scsi_status,
43 int sns_len, u8 *sns_info, s32 residue)
44{
45 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
46 struct bfad_s *bfad = drv;
47 struct bfad_itnim_data_s *itnim_data;
48 struct bfad_itnim_s *itnim;
Krishna Gudipati95aa0602010-03-05 19:38:27 -080049 u8 host_status = DID_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -070050
51 switch (io_status) {
52 case BFI_IOIM_STS_OK:
53 bfa_trc(bfad, scsi_status);
Jing Huang7725ccf2009-09-23 17:46:15 -070054 scsi_set_resid(cmnd, 0);
55
56 if (sns_len > 0) {
57 bfa_trc(bfad, sns_len);
58 if (sns_len > SCSI_SENSE_BUFFERSIZE)
59 sns_len = SCSI_SENSE_BUFFERSIZE;
60 memcpy(cmnd->sense_buffer, sns_info, sns_len);
61 }
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070062
Krishna Gudipati95aa0602010-03-05 19:38:27 -080063 if (residue > 0) {
64 bfa_trc(bfad, residue);
Jing Huang7725ccf2009-09-23 17:46:15 -070065 scsi_set_resid(cmnd, residue);
Krishna Gudipati95aa0602010-03-05 19:38:27 -080066 if (!sns_len && (scsi_status == SAM_STAT_GOOD) &&
67 (scsi_bufflen(cmnd) - residue) <
68 cmnd->underflow) {
69 bfa_trc(bfad, 0);
70 host_status = DID_ERROR;
71 }
72 }
73 cmnd->result = ScsiResult(host_status, scsi_status);
74
Jing Huang7725ccf2009-09-23 17:46:15 -070075 break;
76
Jing Huang7725ccf2009-09-23 17:46:15 -070077 case BFI_IOIM_STS_TIMEDOUT:
Hannes Reineckec60b7b12014-01-14 10:26:25 +010078 host_status = DID_TIME_OUT;
79 cmnd->result = ScsiResult(host_status, 0);
80 break;
Jing Huang7725ccf2009-09-23 17:46:15 -070081 case BFI_IOIM_STS_PATHTOV:
Hannes Reineckec60b7b12014-01-14 10:26:25 +010082 host_status = DID_TRANSPORT_DISRUPTED;
83 cmnd->result = ScsiResult(host_status, 0);
84 break;
Jing Huang7725ccf2009-09-23 17:46:15 -070085 default:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070086 host_status = DID_ERROR;
87 cmnd->result = ScsiResult(host_status, 0);
Jing Huang7725ccf2009-09-23 17:46:15 -070088 }
89
90 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
91 if (cmnd->device->host != NULL)
92 scsi_dma_unmap(cmnd);
93
94 cmnd->host_scribble = NULL;
95 bfa_trc(bfad, cmnd->result);
96
97 itnim_data = cmnd->device->hostdata;
98 if (itnim_data) {
99 itnim = itnim_data->itnim;
100 if (!cmnd->result && itnim &&
101 (bfa_lun_queue_depth > cmnd->device->queue_depth)) {
102 /* Queue depth adjustment for good status completion */
Maggie Zhangf16a1752010-12-09 19:12:32 -0800103 bfad_ramp_up_qdepth(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -0700104 } else if (cmnd->result == SAM_STAT_TASK_SET_FULL && itnim) {
105 /* qfull handling */
Maggie Zhangf16a1752010-12-09 19:12:32 -0800106 bfad_handle_qfull(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -0700107 }
108 }
109
110 cmnd->scsi_done(cmnd);
111}
112
113void
114bfa_cb_ioim_good_comp(void *drv, struct bfad_ioim_s *dio)
115{
116 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
117 struct bfad_itnim_data_s *itnim_data;
118 struct bfad_itnim_s *itnim;
119
120 cmnd->result = ScsiResult(DID_OK, SCSI_STATUS_GOOD);
121
122 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
123 if (cmnd->device->host != NULL)
124 scsi_dma_unmap(cmnd);
125
126 cmnd->host_scribble = NULL;
127
128 /* Queue depth adjustment */
129 if (bfa_lun_queue_depth > cmnd->device->queue_depth) {
130 itnim_data = cmnd->device->hostdata;
131 if (itnim_data) {
132 itnim = itnim_data->itnim;
133 if (itnim)
Maggie Zhangf16a1752010-12-09 19:12:32 -0800134 bfad_ramp_up_qdepth(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -0700135 }
136 }
137
138 cmnd->scsi_done(cmnd);
139}
140
141void
142bfa_cb_ioim_abort(void *drv, struct bfad_ioim_s *dio)
143{
144 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
145 struct bfad_s *bfad = drv;
146
147 cmnd->result = ScsiResult(DID_ERROR, 0);
148
149 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
150 if (cmnd->device->host != NULL)
151 scsi_dma_unmap(cmnd);
152
153 bfa_trc(bfad, cmnd->result);
154 cmnd->host_scribble = NULL;
155}
156
157void
158bfa_cb_tskim_done(void *bfad, struct bfad_tskim_s *dtsk,
159 enum bfi_tskim_status tsk_status)
160{
161 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dtsk;
162 wait_queue_head_t *wq;
163
164 cmnd->SCp.Status |= tsk_status << 1;
165 set_bit(IO_DONE_BIT, (unsigned long *)&cmnd->SCp.Status);
166 wq = (wait_queue_head_t *) cmnd->SCp.ptr;
167 cmnd->SCp.ptr = NULL;
168
169 if (wq)
170 wake_up(wq);
171}
172
Jing Huang5fbe25c2010-10-18 17:17:23 -0700173/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700174 * Scsi_Host_template SCSI host template
175 */
Jing Huang5fbe25c2010-10-18 17:17:23 -0700176/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700177 * Scsi_Host template entry, returns BFAD PCI info.
178 */
179static const char *
180bfad_im_info(struct Scsi_Host *shost)
181{
182 static char bfa_buf[256];
183 struct bfad_im_port_s *im_port =
184 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700185 struct bfad_s *bfad = im_port->bfad;
Jing Huang7725ccf2009-09-23 17:46:15 -0700186
187 memset(bfa_buf, 0, sizeof(bfa_buf));
Krishna Gudipati75332a72011-06-13 15:54:31 -0700188 snprintf(bfa_buf, sizeof(bfa_buf),
189 "Brocade FC/FCOE Adapter, " "hwpath: %s driver: %s",
190 bfad->pci_name, BFAD_DRIVER_VERSION);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700191
Jing Huang7725ccf2009-09-23 17:46:15 -0700192 return bfa_buf;
193}
194
Jing Huang5fbe25c2010-10-18 17:17:23 -0700195/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700196 * Scsi_Host template entry, aborts the specified SCSI command.
197 *
198 * Returns: SUCCESS or FAILED.
199 */
200static int
201bfad_im_abort_handler(struct scsi_cmnd *cmnd)
202{
203 struct Scsi_Host *shost = cmnd->device->host;
204 struct bfad_im_port_s *im_port =
205 (struct bfad_im_port_s *) shost->hostdata[0];
206 struct bfad_s *bfad = im_port->bfad;
207 struct bfa_ioim_s *hal_io;
208 unsigned long flags;
209 u32 timeout;
210 int rc = FAILED;
211
212 spin_lock_irqsave(&bfad->bfad_lock, flags);
213 hal_io = (struct bfa_ioim_s *) cmnd->host_scribble;
214 if (!hal_io) {
Joe Perches9e03aa22013-09-03 13:45:58 -0700215 /* IO has been completed, return success */
Jing Huang7725ccf2009-09-23 17:46:15 -0700216 rc = SUCCESS;
217 goto out;
218 }
219 if (hal_io->dio != (struct bfad_ioim_s *) cmnd) {
220 rc = FAILED;
221 goto out;
222 }
223
224 bfa_trc(bfad, hal_io->iotag);
Jing Huang88166242010-12-09 17:11:53 -0800225 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
226 "scsi%d: abort cmnd %p iotag %x\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700227 im_port->shost->host_no, cmnd, hal_io->iotag);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700228 (void) bfa_ioim_abort(hal_io);
Jing Huang7725ccf2009-09-23 17:46:15 -0700229 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
230
231 /* Need to wait until the command get aborted */
232 timeout = 10;
233 while ((struct bfa_ioim_s *) cmnd->host_scribble == hal_io) {
234 set_current_state(TASK_UNINTERRUPTIBLE);
235 schedule_timeout(timeout);
236 if (timeout < 4 * HZ)
237 timeout *= 2;
238 }
239
240 cmnd->scsi_done(cmnd);
241 bfa_trc(bfad, hal_io->iotag);
Jing Huang88166242010-12-09 17:11:53 -0800242 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700243 "scsi%d: complete abort 0x%p iotag 0x%x\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700244 im_port->shost->host_no, cmnd, hal_io->iotag);
245 return SUCCESS;
246out:
247 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
248 return rc;
249}
250
251static bfa_status_t
252bfad_im_target_reset_send(struct bfad_s *bfad, struct scsi_cmnd *cmnd,
253 struct bfad_itnim_s *itnim)
254{
255 struct bfa_tskim_s *tskim;
256 struct bfa_itnim_s *bfa_itnim;
257 bfa_status_t rc = BFA_STATUS_OK;
Maggie Zhangf3148782010-12-09 19:11:39 -0800258 struct scsi_lun scsilun;
Jing Huang7725ccf2009-09-23 17:46:15 -0700259
Jing Huang7725ccf2009-09-23 17:46:15 -0700260 tskim = bfa_tskim_alloc(&bfad->bfa, (struct bfad_tskim_s *) cmnd);
261 if (!tskim) {
Jing Huang88166242010-12-09 17:11:53 -0800262 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700263 "target reset, fail to allocate tskim\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700264 rc = BFA_STATUS_FAILED;
265 goto out;
266 }
267
268 /*
269 * Set host_scribble to NULL to avoid aborting a task command if
270 * happens.
271 */
272 cmnd->host_scribble = NULL;
273 cmnd->SCp.Status = 0;
274 bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim->fcs_itnim);
Maggie Zhangf3148782010-12-09 19:11:39 -0800275 memset(&scsilun, 0, sizeof(scsilun));
276 bfa_tskim_start(tskim, bfa_itnim, scsilun,
Jing Huang7725ccf2009-09-23 17:46:15 -0700277 FCP_TM_TARGET_RESET, BFAD_TARGET_RESET_TMO);
278out:
279 return rc;
280}
281
Jing Huang5fbe25c2010-10-18 17:17:23 -0700282/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700283 * Scsi_Host template entry, resets a LUN and abort its all commands.
284 *
285 * Returns: SUCCESS or FAILED.
286 *
287 */
288static int
289bfad_im_reset_lun_handler(struct scsi_cmnd *cmnd)
290{
291 struct Scsi_Host *shost = cmnd->device->host;
292 struct bfad_im_port_s *im_port =
293 (struct bfad_im_port_s *) shost->hostdata[0];
294 struct bfad_itnim_data_s *itnim_data = cmnd->device->hostdata;
295 struct bfad_s *bfad = im_port->bfad;
296 struct bfa_tskim_s *tskim;
297 struct bfad_itnim_s *itnim;
298 struct bfa_itnim_s *bfa_itnim;
Yong Zhang6d154db2010-08-10 18:01:22 -0700299 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700300 int rc = SUCCESS;
301 unsigned long flags;
302 enum bfi_tskim_status task_status;
Maggie Zhangf3148782010-12-09 19:11:39 -0800303 struct scsi_lun scsilun;
Jing Huang7725ccf2009-09-23 17:46:15 -0700304
305 spin_lock_irqsave(&bfad->bfad_lock, flags);
306 itnim = itnim_data->itnim;
307 if (!itnim) {
308 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
309 rc = FAILED;
310 goto out;
311 }
312
313 tskim = bfa_tskim_alloc(&bfad->bfa, (struct bfad_tskim_s *) cmnd);
314 if (!tskim) {
Jing Huang88166242010-12-09 17:11:53 -0800315 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Jing Huang7725ccf2009-09-23 17:46:15 -0700316 "LUN reset, fail to allocate tskim");
317 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
318 rc = FAILED;
319 goto out;
320 }
321
Jing Huang5fbe25c2010-10-18 17:17:23 -0700322 /*
Jing Huang7725ccf2009-09-23 17:46:15 -0700323 * Set host_scribble to NULL to avoid aborting a task command
324 * if happens.
325 */
326 cmnd->host_scribble = NULL;
327 cmnd->SCp.ptr = (char *)&wq;
328 cmnd->SCp.Status = 0;
329 bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim->fcs_itnim);
Maggie Zhangf3148782010-12-09 19:11:39 -0800330 int_to_scsilun(cmnd->device->lun, &scsilun);
331 bfa_tskim_start(tskim, bfa_itnim, scsilun,
Jing Huang7725ccf2009-09-23 17:46:15 -0700332 FCP_TM_LUN_RESET, BFAD_LUN_RESET_TMO);
333 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
334
335 wait_event(wq, test_bit(IO_DONE_BIT,
336 (unsigned long *)&cmnd->SCp.Status));
337
338 task_status = cmnd->SCp.Status >> 1;
339 if (task_status != BFI_TSKIM_STS_OK) {
Jing Huang88166242010-12-09 17:11:53 -0800340 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700341 "LUN reset failure, status: %d\n", task_status);
Jing Huang7725ccf2009-09-23 17:46:15 -0700342 rc = FAILED;
343 }
344
345out:
346 return rc;
347}
348
Jing Huang5fbe25c2010-10-18 17:17:23 -0700349/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700350 * Scsi_Host template entry, resets the bus and abort all commands.
351 */
352static int
353bfad_im_reset_bus_handler(struct scsi_cmnd *cmnd)
354{
355 struct Scsi_Host *shost = cmnd->device->host;
356 struct bfad_im_port_s *im_port =
357 (struct bfad_im_port_s *) shost->hostdata[0];
358 struct bfad_s *bfad = im_port->bfad;
359 struct bfad_itnim_s *itnim;
360 unsigned long flags;
361 u32 i, rc, err_cnt = 0;
Yong Zhang6d154db2010-08-10 18:01:22 -0700362 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700363 enum bfi_tskim_status task_status;
364
365 spin_lock_irqsave(&bfad->bfad_lock, flags);
366 for (i = 0; i < MAX_FCP_TARGET; i++) {
Maggie Zhangf16a1752010-12-09 19:12:32 -0800367 itnim = bfad_get_itnim(im_port, i);
Jing Huang7725ccf2009-09-23 17:46:15 -0700368 if (itnim) {
369 cmnd->SCp.ptr = (char *)&wq;
370 rc = bfad_im_target_reset_send(bfad, cmnd, itnim);
371 if (rc != BFA_STATUS_OK) {
372 err_cnt++;
373 continue;
374 }
375
376 /* wait target reset to complete */
377 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
378 wait_event(wq, test_bit(IO_DONE_BIT,
379 (unsigned long *)&cmnd->SCp.Status));
380 spin_lock_irqsave(&bfad->bfad_lock, flags);
381
382 task_status = cmnd->SCp.Status >> 1;
383 if (task_status != BFI_TSKIM_STS_OK) {
Jing Huang88166242010-12-09 17:11:53 -0800384 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Jing Huang7725ccf2009-09-23 17:46:15 -0700385 "target reset failure,"
386 " status: %d\n", task_status);
387 err_cnt++;
388 }
389 }
390 }
391 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
392
393 if (err_cnt)
394 return FAILED;
395
396 return SUCCESS;
397}
398
Jing Huang5fbe25c2010-10-18 17:17:23 -0700399/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700400 * Scsi_Host template entry slave_destroy.
401 */
402static void
403bfad_im_slave_destroy(struct scsi_device *sdev)
404{
405 sdev->hostdata = NULL;
406 return;
407}
408
Jing Huang5fbe25c2010-10-18 17:17:23 -0700409/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700410 * BFA FCS itnim callbacks
411 */
412
Jing Huang5fbe25c2010-10-18 17:17:23 -0700413/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700414 * BFA FCS itnim alloc callback, after successful PRLI
415 * Context: Interrupt
416 */
417void
418bfa_fcb_itnim_alloc(struct bfad_s *bfad, struct bfa_fcs_itnim_s **itnim,
419 struct bfad_itnim_s **itnim_drv)
420{
421 *itnim_drv = kzalloc(sizeof(struct bfad_itnim_s), GFP_ATOMIC);
422 if (*itnim_drv == NULL)
423 return;
424
425 (*itnim_drv)->im = bfad->im;
426 *itnim = &(*itnim_drv)->fcs_itnim;
427 (*itnim_drv)->state = ITNIM_STATE_NONE;
428
429 /*
430 * Initiaze the itnim_work
431 */
432 INIT_WORK(&(*itnim_drv)->itnim_work, bfad_im_itnim_work_handler);
433 bfad->bfad_flags |= BFAD_RPORT_ONLINE;
434}
435
Jing Huang5fbe25c2010-10-18 17:17:23 -0700436/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700437 * BFA FCS itnim free callback.
438 * Context: Interrupt. bfad_lock is held
439 */
440void
441bfa_fcb_itnim_free(struct bfad_s *bfad, struct bfad_itnim_s *itnim_drv)
442{
443 struct bfad_port_s *port;
444 wwn_t wwpn;
445 u32 fcid;
446 char wwpn_str[32], fcid_str[16];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700447 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700448
449 /* online to free state transtion should not happen */
Jing Huangd4b671c2010-12-26 21:46:35 -0800450 WARN_ON(itnim_drv->state == ITNIM_STATE_ONLINE);
Jing Huang7725ccf2009-09-23 17:46:15 -0700451
452 itnim_drv->queue_work = 1;
453 /* offline request is not yet done, use the same request to free */
454 if (itnim_drv->state == ITNIM_STATE_OFFLINE_PENDING)
455 itnim_drv->queue_work = 0;
456
457 itnim_drv->state = ITNIM_STATE_FREE;
458 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
459 itnim_drv->im_port = port->im_port;
460 wwpn = bfa_fcs_itnim_get_pwwn(&itnim_drv->fcs_itnim);
461 fcid = bfa_fcs_itnim_get_fcid(&itnim_drv->fcs_itnim);
462 wwn2str(wwpn_str, wwpn);
463 fcid2str(fcid_str, fcid);
Jing Huang88166242010-12-09 17:11:53 -0800464 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700465 "ITNIM FREE scsi%d: FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700466 port->im_port->shost->host_no,
467 fcid_str, wwpn_str);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700468
469 /* ITNIM processing */
470 if (itnim_drv->queue_work)
471 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700472}
473
Jing Huang5fbe25c2010-10-18 17:17:23 -0700474/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700475 * BFA FCS itnim online callback.
476 * Context: Interrupt. bfad_lock is held
477 */
478void
479bfa_fcb_itnim_online(struct bfad_itnim_s *itnim_drv)
480{
481 struct bfad_port_s *port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700482 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700483
484 itnim_drv->bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim_drv->fcs_itnim);
485 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
486 itnim_drv->state = ITNIM_STATE_ONLINE;
487 itnim_drv->queue_work = 1;
488 itnim_drv->im_port = port->im_port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700489
490 /* ITNIM processing */
491 if (itnim_drv->queue_work)
492 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700493}
494
Jing Huang5fbe25c2010-10-18 17:17:23 -0700495/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700496 * BFA FCS itnim offline callback.
497 * Context: Interrupt. bfad_lock is held
498 */
499void
500bfa_fcb_itnim_offline(struct bfad_itnim_s *itnim_drv)
501{
502 struct bfad_port_s *port;
503 struct bfad_s *bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700504 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700505
506 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
507 bfad = port->bfad;
508 if ((bfad->pport.flags & BFAD_PORT_DELETE) ||
509 (port->flags & BFAD_PORT_DELETE)) {
510 itnim_drv->state = ITNIM_STATE_OFFLINE;
511 return;
512 }
513 itnim_drv->im_port = port->im_port;
514 itnim_drv->state = ITNIM_STATE_OFFLINE_PENDING;
515 itnim_drv->queue_work = 1;
Jing Huang7725ccf2009-09-23 17:46:15 -0700516
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700517 /* ITNIM processing */
518 if (itnim_drv->queue_work)
519 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700520}
521
Jing Huang5fbe25c2010-10-18 17:17:23 -0700522/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700523 * Allocate a Scsi_Host for a port.
524 */
525int
Jing Huangb5042932010-03-19 11:05:39 -0700526bfad_im_scsi_host_alloc(struct bfad_s *bfad, struct bfad_im_port_s *im_port,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700527 struct device *dev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700528{
529 int error = 1;
530
Jing Huang42b426e2010-03-19 11:07:09 -0700531 mutex_lock(&bfad_mutex);
Tejun Heo70a97552013-02-27 17:04:41 -0800532 error = idr_alloc(&bfad_im_port_index, im_port, 0, 0, GFP_KERNEL);
533 if (error < 0) {
Jing Huang42b426e2010-03-19 11:07:09 -0700534 mutex_unlock(&bfad_mutex);
Tejun Heo70a97552013-02-27 17:04:41 -0800535 printk(KERN_WARNING "idr_alloc failure\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700536 goto out;
537 }
Tejun Heo70a97552013-02-27 17:04:41 -0800538 im_port->idr_id = error;
Jing Huang42b426e2010-03-19 11:07:09 -0700539 mutex_unlock(&bfad_mutex);
540
Maggie Zhangf16a1752010-12-09 19:12:32 -0800541 im_port->shost = bfad_scsi_host_alloc(im_port, bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -0700542 if (!im_port->shost) {
543 error = 1;
544 goto out_free_idr;
545 }
546
547 im_port->shost->hostdata[0] = (unsigned long)im_port;
548 im_port->shost->unique_id = im_port->idr_id;
549 im_port->shost->this_id = -1;
550 im_port->shost->max_id = MAX_FCP_TARGET;
551 im_port->shost->max_lun = MAX_FCP_LUN;
552 im_port->shost->max_cmd_len = 16;
553 im_port->shost->can_queue = bfad->cfg_data.ioc_queue_depth;
Jing Huangb5042932010-03-19 11:05:39 -0700554 if (im_port->port->pvb_type == BFAD_PORT_PHYS_BASE)
555 im_port->shost->transportt = bfad_im_scsi_transport_template;
556 else
557 im_port->shost->transportt =
558 bfad_im_scsi_vport_transport_template;
Jing Huang7725ccf2009-09-23 17:46:15 -0700559
Jing Huangc54d5572010-07-08 20:01:49 -0700560 error = scsi_add_host_with_dma(im_port->shost, dev, &bfad->pcidev->dev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700561 if (error) {
Jing Huangb5042932010-03-19 11:05:39 -0700562 printk(KERN_WARNING "scsi_add_host failure %d\n", error);
Jing Huang7725ccf2009-09-23 17:46:15 -0700563 goto out_fc_rel;
564 }
565
Jing Huang7725ccf2009-09-23 17:46:15 -0700566 return 0;
567
568out_fc_rel:
569 scsi_host_put(im_port->shost);
Jing Huangd9883542010-07-08 19:46:26 -0700570 im_port->shost = NULL;
Jing Huang7725ccf2009-09-23 17:46:15 -0700571out_free_idr:
Jing Huang42b426e2010-03-19 11:07:09 -0700572 mutex_lock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700573 idr_remove(&bfad_im_port_index, im_port->idr_id);
Jing Huang42b426e2010-03-19 11:07:09 -0700574 mutex_unlock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700575out:
576 return error;
577}
578
579void
580bfad_im_scsi_host_free(struct bfad_s *bfad, struct bfad_im_port_s *im_port)
581{
Jing Huang7725ccf2009-09-23 17:46:15 -0700582 bfa_trc(bfad, bfad->inst_no);
Jing Huang88166242010-12-09 17:11:53 -0800583 BFA_LOG(KERN_INFO, bfad, bfa_log_level, "Free scsi%d\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700584 im_port->shost->host_no);
585
586 fc_remove_host(im_port->shost);
587
588 scsi_remove_host(im_port->shost);
589 scsi_host_put(im_port->shost);
590
Jing Huang42b426e2010-03-19 11:07:09 -0700591 mutex_lock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700592 idr_remove(&bfad_im_port_index, im_port->idr_id);
Jing Huang42b426e2010-03-19 11:07:09 -0700593 mutex_unlock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700594}
595
596static void
597bfad_im_port_delete_handler(struct work_struct *work)
598{
599 struct bfad_im_port_s *im_port =
600 container_of(work, struct bfad_im_port_s, port_delete_work);
601
Jing Huangb5042932010-03-19 11:05:39 -0700602 if (im_port->port->pvb_type != BFAD_PORT_PHYS_BASE) {
603 im_port->flags |= BFAD_PORT_DELETE;
604 fc_vport_terminate(im_port->fc_vport);
605 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700606}
607
608bfa_status_t
609bfad_im_port_new(struct bfad_s *bfad, struct bfad_port_s *port)
610{
611 int rc = BFA_STATUS_OK;
612 struct bfad_im_port_s *im_port;
613
614 im_port = kzalloc(sizeof(struct bfad_im_port_s), GFP_ATOMIC);
615 if (im_port == NULL) {
616 rc = BFA_STATUS_ENOMEM;
617 goto ext;
618 }
619 port->im_port = im_port;
620 im_port->port = port;
621 im_port->bfad = bfad;
622
623 INIT_WORK(&im_port->port_delete_work, bfad_im_port_delete_handler);
624 INIT_LIST_HEAD(&im_port->itnim_mapped_list);
625 INIT_LIST_HEAD(&im_port->binding_list);
626
627ext:
628 return rc;
629}
630
631void
632bfad_im_port_delete(struct bfad_s *bfad, struct bfad_port_s *port)
633{
634 struct bfad_im_port_s *im_port = port->im_port;
635
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700636 queue_work(bfad->im->drv_workq,
Jing Huang7725ccf2009-09-23 17:46:15 -0700637 &im_port->port_delete_work);
638}
639
640void
641bfad_im_port_clean(struct bfad_im_port_s *im_port)
642{
643 struct bfad_fcp_binding *bp, *bp_new;
644 unsigned long flags;
645 struct bfad_s *bfad = im_port->bfad;
646
647 spin_lock_irqsave(&bfad->bfad_lock, flags);
648 list_for_each_entry_safe(bp, bp_new, &im_port->binding_list,
649 list_entry) {
650 list_del(&bp->list_entry);
651 kfree(bp);
652 }
653
654 /* the itnim_mapped_list must be empty at this time */
Jing Huangd4b671c2010-12-26 21:46:35 -0800655 WARN_ON(!list_empty(&im_port->itnim_mapped_list));
Jing Huang7725ccf2009-09-23 17:46:15 -0700656
657 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
658}
659
Krishna Gudipati7826f302011-07-20 16:59:13 -0700660static void bfad_aen_im_notify_handler(struct work_struct *work)
661{
662 struct bfad_im_s *im =
663 container_of(work, struct bfad_im_s, aen_im_notify_work);
664 struct bfa_aen_entry_s *aen_entry;
665 struct bfad_s *bfad = im->bfad;
666 struct Scsi_Host *shost = bfad->pport.im_port->shost;
667 void *event_data;
668 unsigned long flags;
669
670 while (!list_empty(&bfad->active_aen_q)) {
671 spin_lock_irqsave(&bfad->bfad_aen_spinlock, flags);
672 bfa_q_deq(&bfad->active_aen_q, &aen_entry);
673 spin_unlock_irqrestore(&bfad->bfad_aen_spinlock, flags);
674 event_data = (char *)aen_entry + sizeof(struct list_head);
675 fc_host_post_vendor_event(shost, fc_get_event_number(),
676 sizeof(struct bfa_aen_entry_s) -
677 sizeof(struct list_head),
678 (char *)event_data, BFAD_NL_VENDOR_ID);
679 spin_lock_irqsave(&bfad->bfad_aen_spinlock, flags);
680 list_add_tail(&aen_entry->qe, &bfad->free_aen_q);
681 spin_unlock_irqrestore(&bfad->bfad_aen_spinlock, flags);
682 }
683}
684
Jing Huang7725ccf2009-09-23 17:46:15 -0700685bfa_status_t
686bfad_im_probe(struct bfad_s *bfad)
687{
688 struct bfad_im_s *im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700689
690 im = kzalloc(sizeof(struct bfad_im_s), GFP_KERNEL);
Dan Carpentera5254db2012-06-27 11:59:58 +0300691 if (im == NULL)
692 return BFA_STATUS_ENOMEM;
Jing Huang7725ccf2009-09-23 17:46:15 -0700693
694 bfad->im = im;
695 im->bfad = bfad;
696
Maggie Zhangf16a1752010-12-09 19:12:32 -0800697 if (bfad_thread_workq(bfad) != BFA_STATUS_OK) {
Jing Huang7725ccf2009-09-23 17:46:15 -0700698 kfree(im);
Dan Carpentera5254db2012-06-27 11:59:58 +0300699 return BFA_STATUS_FAILED;
Jing Huang7725ccf2009-09-23 17:46:15 -0700700 }
701
Krishna Gudipati7826f302011-07-20 16:59:13 -0700702 INIT_WORK(&im->aen_im_notify_work, bfad_aen_im_notify_handler);
Dan Carpentera5254db2012-06-27 11:59:58 +0300703 return BFA_STATUS_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -0700704}
705
706void
707bfad_im_probe_undo(struct bfad_s *bfad)
708{
709 if (bfad->im) {
Maggie Zhangf16a1752010-12-09 19:12:32 -0800710 bfad_destroy_workq(bfad->im);
Jing Huang7725ccf2009-09-23 17:46:15 -0700711 kfree(bfad->im);
712 bfad->im = NULL;
713 }
714}
715
Jing Huang7725ccf2009-09-23 17:46:15 -0700716struct Scsi_Host *
Maggie Zhangf16a1752010-12-09 19:12:32 -0800717bfad_scsi_host_alloc(struct bfad_im_port_s *im_port, struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700718{
719 struct scsi_host_template *sht;
720
721 if (im_port->port->pvb_type == BFAD_PORT_PHYS_BASE)
722 sht = &bfad_im_scsi_host_template;
723 else
724 sht = &bfad_im_vport_template;
725
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700726 if (max_xfer_size != BFAD_MAX_SECTORS >> 1)
727 sht->max_sectors = max_xfer_size << 1;
728
Jing Huang7725ccf2009-09-23 17:46:15 -0700729 sht->sg_tablesize = bfad->cfg_data.io_max_sge;
730
731 return scsi_host_alloc(sht, sizeof(unsigned long));
732}
733
734void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800735bfad_scsi_host_free(struct bfad_s *bfad, struct bfad_im_port_s *im_port)
Jing Huang7725ccf2009-09-23 17:46:15 -0700736{
Jing Huangb5042932010-03-19 11:05:39 -0700737 if (!(im_port->flags & BFAD_PORT_DELETE))
738 flush_workqueue(bfad->im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700739 bfad_im_scsi_host_free(im_port->bfad, im_port);
740 bfad_im_port_clean(im_port);
741 kfree(im_port);
742}
743
744void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800745bfad_destroy_workq(struct bfad_im_s *im)
Jing Huang7725ccf2009-09-23 17:46:15 -0700746{
747 if (im && im->drv_workq) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700748 flush_workqueue(im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700749 destroy_workqueue(im->drv_workq);
750 im->drv_workq = NULL;
751 }
752}
753
754bfa_status_t
Maggie Zhangf16a1752010-12-09 19:12:32 -0800755bfad_thread_workq(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700756{
757 struct bfad_im_s *im = bfad->im;
758
759 bfa_trc(bfad, 0);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700760 snprintf(im->drv_workq_name, KOBJ_NAME_LEN, "bfad_wq_%d",
Jing Huang7725ccf2009-09-23 17:46:15 -0700761 bfad->inst_no);
762 im->drv_workq = create_singlethread_workqueue(im->drv_workq_name);
763 if (!im->drv_workq)
764 return BFA_STATUS_FAILED;
765
766 return BFA_STATUS_OK;
767}
768
Jing Huang5fbe25c2010-10-18 17:17:23 -0700769/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700770 * Scsi_Host template entry.
771 *
772 * Description:
773 * OS entry point to adjust the queue_depths on a per-device basis.
774 * Called once per device during the bus scan.
775 * Return non-zero if fails.
776 */
777static int
778bfad_im_slave_configure(struct scsi_device *sdev)
779{
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100780 scsi_change_queue_depth(sdev, bfa_lun_queue_depth);
Jing Huang7725ccf2009-09-23 17:46:15 -0700781 return 0;
782}
783
784struct scsi_host_template bfad_im_scsi_host_template = {
785 .module = THIS_MODULE,
786 .name = BFAD_DRIVER_NAME,
787 .info = bfad_im_info,
788 .queuecommand = bfad_im_queuecommand,
789 .eh_abort_handler = bfad_im_abort_handler,
790 .eh_device_reset_handler = bfad_im_reset_lun_handler,
791 .eh_bus_reset_handler = bfad_im_reset_bus_handler,
792
793 .slave_alloc = bfad_im_slave_alloc,
794 .slave_configure = bfad_im_slave_configure,
795 .slave_destroy = bfad_im_slave_destroy,
796
797 .this_id = -1,
798 .sg_tablesize = BFAD_IO_MAX_SGE,
799 .cmd_per_lun = 3,
800 .use_clustering = ENABLE_CLUSTERING,
801 .shost_attrs = bfad_im_host_attrs,
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700802 .max_sectors = BFAD_MAX_SECTORS,
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700803 .vendor_id = BFA_PCI_VENDOR_ID_BROCADE,
Jing Huang7725ccf2009-09-23 17:46:15 -0700804};
805
806struct scsi_host_template bfad_im_vport_template = {
807 .module = THIS_MODULE,
808 .name = BFAD_DRIVER_NAME,
809 .info = bfad_im_info,
810 .queuecommand = bfad_im_queuecommand,
811 .eh_abort_handler = bfad_im_abort_handler,
812 .eh_device_reset_handler = bfad_im_reset_lun_handler,
813 .eh_bus_reset_handler = bfad_im_reset_bus_handler,
814
815 .slave_alloc = bfad_im_slave_alloc,
816 .slave_configure = bfad_im_slave_configure,
817 .slave_destroy = bfad_im_slave_destroy,
818
819 .this_id = -1,
820 .sg_tablesize = BFAD_IO_MAX_SGE,
821 .cmd_per_lun = 3,
822 .use_clustering = ENABLE_CLUSTERING,
823 .shost_attrs = bfad_im_vport_attrs,
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700824 .max_sectors = BFAD_MAX_SECTORS,
Jing Huang7725ccf2009-09-23 17:46:15 -0700825};
826
Jing Huang7725ccf2009-09-23 17:46:15 -0700827bfa_status_t
828bfad_im_module_init(void)
829{
830 bfad_im_scsi_transport_template =
831 fc_attach_transport(&bfad_im_fc_function_template);
832 if (!bfad_im_scsi_transport_template)
833 return BFA_STATUS_ENOMEM;
834
Jing Huangb5042932010-03-19 11:05:39 -0700835 bfad_im_scsi_vport_transport_template =
836 fc_attach_transport(&bfad_im_vport_fc_function_template);
837 if (!bfad_im_scsi_vport_transport_template) {
838 fc_release_transport(bfad_im_scsi_transport_template);
839 return BFA_STATUS_ENOMEM;
840 }
841
Jing Huang7725ccf2009-09-23 17:46:15 -0700842 return BFA_STATUS_OK;
843}
844
845void
846bfad_im_module_exit(void)
847{
848 if (bfad_im_scsi_transport_template)
849 fc_release_transport(bfad_im_scsi_transport_template);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700850
Jing Huangb5042932010-03-19 11:05:39 -0700851 if (bfad_im_scsi_vport_transport_template)
852 fc_release_transport(bfad_im_scsi_vport_transport_template);
Alexey Khoroshilov3ff448b2015-06-12 01:50:45 +0300853
854 idr_destroy(&bfad_im_port_index);
Jing Huang7725ccf2009-09-23 17:46:15 -0700855}
856
857void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800858bfad_ramp_up_qdepth(struct bfad_itnim_s *itnim, struct scsi_device *sdev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700859{
860 struct scsi_device *tmp_sdev;
861
862 if (((jiffies - itnim->last_ramp_up_time) >
863 BFA_QUEUE_FULL_RAMP_UP_TIME * HZ) &&
864 ((jiffies - itnim->last_queue_full_time) >
865 BFA_QUEUE_FULL_RAMP_UP_TIME * HZ)) {
866 shost_for_each_device(tmp_sdev, sdev->host) {
867 if (bfa_lun_queue_depth > tmp_sdev->queue_depth) {
868 if (tmp_sdev->id != sdev->id)
869 continue;
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100870 scsi_change_queue_depth(tmp_sdev,
Christoph Hellwig609aa222014-10-30 11:54:58 +0100871 tmp_sdev->queue_depth + 1);
Jing Huang7725ccf2009-09-23 17:46:15 -0700872
873 itnim->last_ramp_up_time = jiffies;
874 }
875 }
876 }
877}
878
879void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800880bfad_handle_qfull(struct bfad_itnim_s *itnim, struct scsi_device *sdev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700881{
882 struct scsi_device *tmp_sdev;
883
884 itnim->last_queue_full_time = jiffies;
885
886 shost_for_each_device(tmp_sdev, sdev->host) {
887 if (tmp_sdev->id != sdev->id)
888 continue;
889 scsi_track_queue_full(tmp_sdev, tmp_sdev->queue_depth - 1);
890 }
891}
892
Jing Huang7725ccf2009-09-23 17:46:15 -0700893struct bfad_itnim_s *
Maggie Zhangf16a1752010-12-09 19:12:32 -0800894bfad_get_itnim(struct bfad_im_port_s *im_port, int id)
Jing Huang7725ccf2009-09-23 17:46:15 -0700895{
896 struct bfad_itnim_s *itnim = NULL;
897
898 /* Search the mapped list for this target ID */
899 list_for_each_entry(itnim, &im_port->itnim_mapped_list, list_entry) {
900 if (id == itnim->scsi_tgt_id)
901 return itnim;
902 }
903
904 return NULL;
905}
906
Jing Huang5fbe25c2010-10-18 17:17:23 -0700907/*
Krishna Gudipati5b7db7a2011-12-20 18:58:32 -0800908 * Function is invoked from the SCSI Host Template slave_alloc() entry point.
909 * Has the logic to query the LUN Mask database to check if this LUN needs to
910 * be made visible to the SCSI mid-layer or not.
911 *
912 * Returns BFA_STATUS_OK if this LUN needs to be added to the OS stack.
913 * Returns -ENXIO to notify SCSI mid-layer to not add this LUN to the OS stack.
914 */
915static int
916bfad_im_check_if_make_lun_visible(struct scsi_device *sdev,
917 struct fc_rport *rport)
918{
919 struct bfad_itnim_data_s *itnim_data =
920 (struct bfad_itnim_data_s *) rport->dd_data;
921 struct bfa_s *bfa = itnim_data->itnim->bfa_itnim->bfa;
922 struct bfa_rport_s *bfa_rport = itnim_data->itnim->bfa_itnim->rport;
923 struct bfa_lun_mask_s *lun_list = bfa_get_lun_mask_list(bfa);
924 int i = 0, ret = -ENXIO;
925
926 for (i = 0; i < MAX_LUN_MASK_CFG; i++) {
927 if (lun_list[i].state == BFA_IOIM_LUN_MASK_ACTIVE &&
928 scsilun_to_int(&lun_list[i].lun) == sdev->lun &&
929 lun_list[i].rp_tag == bfa_rport->rport_tag &&
930 lun_list[i].lp_tag == (u8)bfa_rport->rport_info.lp_tag) {
931 ret = BFA_STATUS_OK;
932 break;
933 }
934 }
935 return ret;
936}
937
938/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700939 * Scsi_Host template entry slave_alloc
940 */
941static int
942bfad_im_slave_alloc(struct scsi_device *sdev)
943{
944 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Jakob Normarkc6e23d82013-05-15 21:41:51 +0200945 struct bfad_itnim_data_s *itnim_data;
946 struct bfa_s *bfa;
Jing Huang7725ccf2009-09-23 17:46:15 -0700947
948 if (!rport || fc_remote_port_chkready(rport))
949 return -ENXIO;
950
Jakob Normarkc6e23d82013-05-15 21:41:51 +0200951 itnim_data = (struct bfad_itnim_data_s *) rport->dd_data;
952 bfa = itnim_data->itnim->bfa_itnim->bfa;
953
Krishna Gudipati5b7db7a2011-12-20 18:58:32 -0800954 if (bfa_get_lun_mask_status(bfa) == BFA_LUNMASK_ENABLED) {
955 /*
956 * We should not mask LUN 0 - since this will translate
957 * to no LUN / TARGET for SCSI ml resulting no scan.
958 */
959 if (sdev->lun == 0) {
960 sdev->sdev_bflags |= BLIST_NOREPORTLUN |
961 BLIST_SPARSELUN;
962 goto done;
963 }
964
965 /*
966 * Query LUN Mask configuration - to expose this LUN
967 * to the SCSI mid-layer or to mask it.
968 */
969 if (bfad_im_check_if_make_lun_visible(sdev, rport) !=
970 BFA_STATUS_OK)
971 return -ENXIO;
972 }
973done:
Jing Huang7725ccf2009-09-23 17:46:15 -0700974 sdev->hostdata = rport->dd_data;
975
976 return 0;
977}
978
Krishna Gudipati6192bd72012-05-11 17:49:59 -0700979u32
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700980bfad_im_supported_speeds(struct bfa_s *bfa)
981{
Jing Huange0a08a32010-10-18 17:14:01 -0700982 struct bfa_ioc_attr_s *ioc_attr;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700983 u32 supported_speed = 0;
984
Jing Huange0a08a32010-10-18 17:14:01 -0700985 ioc_attr = kzalloc(sizeof(struct bfa_ioc_attr_s), GFP_KERNEL);
986 if (!ioc_attr)
987 return 0;
988
Maggie Zhangf7f738122010-12-09 19:08:43 -0800989 bfa_ioc_get_attr(&bfa->ioc, ioc_attr);
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700990 if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_16GBPS)
991 supported_speed |= FC_PORTSPEED_16GBIT | FC_PORTSPEED_8GBIT |
992 FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT;
993 else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_8GBPS) {
Jing Huange0a08a32010-10-18 17:14:01 -0700994 if (ioc_attr->adapter_attr.is_mezz) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700995 supported_speed |= FC_PORTSPEED_8GBIT |
996 FC_PORTSPEED_4GBIT |
997 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
998 } else {
999 supported_speed |= FC_PORTSPEED_8GBIT |
1000 FC_PORTSPEED_4GBIT |
1001 FC_PORTSPEED_2GBIT;
1002 }
Jing Huange0a08a32010-10-18 17:14:01 -07001003 } else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_4GBPS) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001004 supported_speed |= FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
1005 FC_PORTSPEED_1GBIT;
Jing Huange0a08a32010-10-18 17:14:01 -07001006 } else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_10GBPS) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001007 supported_speed |= FC_PORTSPEED_10GBIT;
1008 }
Jing Huange0a08a32010-10-18 17:14:01 -07001009 kfree(ioc_attr);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001010 return supported_speed;
1011}
1012
Jing Huang7725ccf2009-09-23 17:46:15 -07001013void
Maggie Zhangf16a1752010-12-09 19:12:32 -08001014bfad_fc_host_init(struct bfad_im_port_s *im_port)
Jing Huang7725ccf2009-09-23 17:46:15 -07001015{
1016 struct Scsi_Host *host = im_port->shost;
1017 struct bfad_s *bfad = im_port->bfad;
1018 struct bfad_port_s *port = im_port->port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001019 char symname[BFA_SYMNAME_MAXLEN];
Jing Huange0a08a32010-10-18 17:14:01 -07001020 struct bfa_fcport_s *fcport = BFA_FCPORT_MOD(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001021
1022 fc_host_node_name(host) =
Jing Huangba816ea2010-10-18 17:10:50 -07001023 cpu_to_be64((bfa_fcs_lport_get_nwwn(port->fcs_port)));
Jing Huang7725ccf2009-09-23 17:46:15 -07001024 fc_host_port_name(host) =
Jing Huangba816ea2010-10-18 17:10:50 -07001025 cpu_to_be64((bfa_fcs_lport_get_pwwn(port->fcs_port)));
Jing Huangb5042932010-03-19 11:05:39 -07001026 fc_host_max_npiv_vports(host) = bfa_lps_get_max_vport(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001027
1028 fc_host_supported_classes(host) = FC_COS_CLASS3;
1029
1030 memset(fc_host_supported_fc4s(host), 0,
1031 sizeof(fc_host_supported_fc4s(host)));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001032 if (supported_fc4s & BFA_LPORT_ROLE_FCP_IM)
Jing Huang7725ccf2009-09-23 17:46:15 -07001033 /* For FCP type 0x08 */
1034 fc_host_supported_fc4s(host)[2] = 1;
Jing Huang7725ccf2009-09-23 17:46:15 -07001035 /* For fibre channel services type 0x20 */
1036 fc_host_supported_fc4s(host)[7] = 1;
1037
Jakob Normarkc6e23d82013-05-15 21:41:51 +02001038 strlcpy(symname, bfad->bfa_fcs.fabric.bport.port_cfg.sym_name.symname,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001039 BFA_SYMNAME_MAXLEN);
1040 sprintf(fc_host_symbolic_name(host), "%s", symname);
Jing Huang7725ccf2009-09-23 17:46:15 -07001041
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001042 fc_host_supported_speeds(host) = bfad_im_supported_speeds(&bfad->bfa);
Jing Huang5fbe25c2010-10-18 17:17:23 -07001043 fc_host_maxframe_size(host) = fcport->cfg.maxfrsize;
Jing Huang7725ccf2009-09-23 17:46:15 -07001044}
1045
1046static void
1047bfad_im_fc_rport_add(struct bfad_im_port_s *im_port, struct bfad_itnim_s *itnim)
1048{
1049 struct fc_rport_identifiers rport_ids;
1050 struct fc_rport *fc_rport;
1051 struct bfad_itnim_data_s *itnim_data;
1052
1053 rport_ids.node_name =
Jing Huangba816ea2010-10-18 17:10:50 -07001054 cpu_to_be64(bfa_fcs_itnim_get_nwwn(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -07001055 rport_ids.port_name =
Jing Huangba816ea2010-10-18 17:10:50 -07001056 cpu_to_be64(bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -07001057 rport_ids.port_id =
Maggie Zhangf16a1752010-12-09 19:12:32 -08001058 bfa_hton3b(bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -07001059 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
1060
1061 itnim->fc_rport = fc_rport =
1062 fc_remote_port_add(im_port->shost, 0, &rport_ids);
1063
1064 if (!fc_rport)
1065 return;
1066
1067 fc_rport->maxframe_size =
1068 bfa_fcs_itnim_get_maxfrsize(&itnim->fcs_itnim);
1069 fc_rport->supported_classes = bfa_fcs_itnim_get_cos(&itnim->fcs_itnim);
1070
1071 itnim_data = fc_rport->dd_data;
1072 itnim_data->itnim = itnim;
1073
1074 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
1075
1076 if (rport_ids.roles != FC_RPORT_ROLE_UNKNOWN)
1077 fc_remote_port_rolechg(fc_rport, rport_ids.roles);
1078
1079 if ((fc_rport->scsi_target_id != -1)
1080 && (fc_rport->scsi_target_id < MAX_FCP_TARGET))
1081 itnim->scsi_tgt_id = fc_rport->scsi_target_id;
1082
Krishna Gudipati5b7db7a2011-12-20 18:58:32 -08001083 itnim->channel = fc_rport->channel;
1084
Jing Huang7725ccf2009-09-23 17:46:15 -07001085 return;
1086}
1087
Jing Huang5fbe25c2010-10-18 17:17:23 -07001088/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001089 * Work queue handler using FC transport service
1090* Context: kernel
1091 */
1092static void
1093bfad_im_itnim_work_handler(struct work_struct *work)
1094{
1095 struct bfad_itnim_s *itnim = container_of(work, struct bfad_itnim_s,
1096 itnim_work);
1097 struct bfad_im_s *im = itnim->im;
1098 struct bfad_s *bfad = im->bfad;
1099 struct bfad_im_port_s *im_port;
1100 unsigned long flags;
1101 struct fc_rport *fc_rport;
1102 wwn_t wwpn;
1103 u32 fcid;
1104 char wwpn_str[32], fcid_str[16];
1105
1106 spin_lock_irqsave(&bfad->bfad_lock, flags);
1107 im_port = itnim->im_port;
1108 bfa_trc(bfad, itnim->state);
1109 switch (itnim->state) {
1110 case ITNIM_STATE_ONLINE:
1111 if (!itnim->fc_rport) {
1112 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1113 bfad_im_fc_rport_add(im_port, itnim);
1114 spin_lock_irqsave(&bfad->bfad_lock, flags);
1115 wwpn = bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim);
1116 fcid = bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim);
1117 wwn2str(wwpn_str, wwpn);
1118 fcid2str(fcid_str, fcid);
1119 list_add_tail(&itnim->list_entry,
1120 &im_port->itnim_mapped_list);
Jing Huang88166242010-12-09 17:11:53 -08001121 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001122 "ITNIM ONLINE Target: %d:0:%d "
1123 "FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -07001124 im_port->shost->host_no,
1125 itnim->scsi_tgt_id,
1126 fcid_str, wwpn_str);
1127 } else {
1128 printk(KERN_WARNING
1129 "%s: itnim %llx is already in online state\n",
Jing Huangf8ceafd2009-09-25 12:29:54 -07001130 __func__,
Jing Huang7725ccf2009-09-23 17:46:15 -07001131 bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim));
1132 }
1133
1134 break;
1135 case ITNIM_STATE_OFFLINE_PENDING:
1136 itnim->state = ITNIM_STATE_OFFLINE;
1137 if (itnim->fc_rport) {
1138 fc_rport = itnim->fc_rport;
1139 ((struct bfad_itnim_data_s *)
1140 fc_rport->dd_data)->itnim = NULL;
1141 itnim->fc_rport = NULL;
1142 if (!(im_port->port->flags & BFAD_PORT_DELETE)) {
1143 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1144 fc_rport->dev_loss_tmo =
1145 bfa_fcpim_path_tov_get(&bfad->bfa) + 1;
1146 fc_remote_port_delete(fc_rport);
1147 spin_lock_irqsave(&bfad->bfad_lock, flags);
1148 }
1149 wwpn = bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim);
1150 fcid = bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim);
1151 wwn2str(wwpn_str, wwpn);
1152 fcid2str(fcid_str, fcid);
1153 list_del(&itnim->list_entry);
Jing Huang88166242010-12-09 17:11:53 -08001154 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001155 "ITNIM OFFLINE Target: %d:0:%d "
1156 "FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -07001157 im_port->shost->host_no,
1158 itnim->scsi_tgt_id,
1159 fcid_str, wwpn_str);
1160 }
1161 break;
1162 case ITNIM_STATE_FREE:
1163 if (itnim->fc_rport) {
1164 fc_rport = itnim->fc_rport;
1165 ((struct bfad_itnim_data_s *)
1166 fc_rport->dd_data)->itnim = NULL;
1167 itnim->fc_rport = NULL;
1168 if (!(im_port->port->flags & BFAD_PORT_DELETE)) {
1169 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1170 fc_rport->dev_loss_tmo =
1171 bfa_fcpim_path_tov_get(&bfad->bfa) + 1;
1172 fc_remote_port_delete(fc_rport);
1173 spin_lock_irqsave(&bfad->bfad_lock, flags);
1174 }
1175 list_del(&itnim->list_entry);
1176 }
1177
1178 kfree(itnim);
1179 break;
1180 default:
Jing Huangd4b671c2010-12-26 21:46:35 -08001181 WARN_ON(1);
Jing Huang7725ccf2009-09-23 17:46:15 -07001182 break;
1183 }
1184
1185 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1186}
1187
Jing Huang5fbe25c2010-10-18 17:17:23 -07001188/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001189 * Scsi_Host template entry, queue a SCSI command to the BFAD.
1190 */
1191static int
Jeff Garzikf2812332010-11-16 02:10:29 -05001192bfad_im_queuecommand_lck(struct scsi_cmnd *cmnd, void (*done) (struct scsi_cmnd *))
Jing Huang7725ccf2009-09-23 17:46:15 -07001193{
1194 struct bfad_im_port_s *im_port =
1195 (struct bfad_im_port_s *) cmnd->device->host->hostdata[0];
1196 struct bfad_s *bfad = im_port->bfad;
1197 struct bfad_itnim_data_s *itnim_data = cmnd->device->hostdata;
1198 struct bfad_itnim_s *itnim;
1199 struct bfa_ioim_s *hal_io;
1200 unsigned long flags;
1201 int rc;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001202 int sg_cnt = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001203 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
1204
1205 rc = fc_remote_port_chkready(rport);
1206 if (rc) {
1207 cmnd->result = rc;
1208 done(cmnd);
1209 return 0;
1210 }
1211
Krishna Gudipati881c1b32012-08-22 19:52:02 -07001212 if (bfad->bfad_flags & BFAD_EEH_BUSY) {
1213 if (bfad->bfad_flags & BFAD_EEH_PCI_CHANNEL_IO_PERM_FAILURE)
1214 cmnd->result = DID_NO_CONNECT << 16;
1215 else
1216 cmnd->result = DID_REQUEUE << 16;
1217 done(cmnd);
1218 return 0;
1219 }
1220
Jing Huang7725ccf2009-09-23 17:46:15 -07001221 sg_cnt = scsi_dma_map(cmnd);
Jing Huang7725ccf2009-09-23 17:46:15 -07001222 if (sg_cnt < 0)
1223 return SCSI_MLQUEUE_HOST_BUSY;
1224
1225 cmnd->scsi_done = done;
1226
1227 spin_lock_irqsave(&bfad->bfad_lock, flags);
1228 if (!(bfad->bfad_flags & BFAD_HAL_START_DONE)) {
1229 printk(KERN_WARNING
1230 "bfad%d, queuecommand %p %x failed, BFA stopped\n",
1231 bfad->inst_no, cmnd, cmnd->cmnd[0]);
1232 cmnd->result = ScsiResult(DID_NO_CONNECT, 0);
1233 goto out_fail_cmd;
1234 }
1235
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001236
Jing Huang7725ccf2009-09-23 17:46:15 -07001237 itnim = itnim_data->itnim;
1238 if (!itnim) {
1239 cmnd->result = ScsiResult(DID_IMM_RETRY, 0);
1240 goto out_fail_cmd;
1241 }
1242
1243 hal_io = bfa_ioim_alloc(&bfad->bfa, (struct bfad_ioim_s *) cmnd,
1244 itnim->bfa_itnim, sg_cnt);
1245 if (!hal_io) {
1246 printk(KERN_WARNING "hal_io failure\n");
1247 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1248 scsi_dma_unmap(cmnd);
1249 return SCSI_MLQUEUE_HOST_BUSY;
1250 }
1251
1252 cmnd->host_scribble = (char *)hal_io;
Jing Huang7725ccf2009-09-23 17:46:15 -07001253 bfa_ioim_start(hal_io);
1254 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1255
1256 return 0;
1257
1258out_fail_cmd:
1259 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1260 scsi_dma_unmap(cmnd);
1261 if (done)
1262 done(cmnd);
1263
1264 return 0;
1265}
1266
Jeff Garzikf2812332010-11-16 02:10:29 -05001267static DEF_SCSI_QCMD(bfad_im_queuecommand)
1268
Jing Huang7725ccf2009-09-23 17:46:15 -07001269void
Maggie Zhangf16a1752010-12-09 19:12:32 -08001270bfad_rport_online_wait(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -07001271{
1272 int i;
1273 int rport_delay = 10;
1274
1275 for (i = 0; !(bfad->bfad_flags & BFAD_PORT_ONLINE)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001276 && i < bfa_linkup_delay; i++) {
1277 set_current_state(TASK_UNINTERRUPTIBLE);
1278 schedule_timeout(HZ);
1279 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001280
1281 if (bfad->bfad_flags & BFAD_PORT_ONLINE) {
1282 rport_delay = rport_delay < bfa_linkup_delay ?
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001283 rport_delay : bfa_linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001284 for (i = 0; !(bfad->bfad_flags & BFAD_RPORT_ONLINE)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001285 && i < rport_delay; i++) {
1286 set_current_state(TASK_UNINTERRUPTIBLE);
1287 schedule_timeout(HZ);
1288 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001289
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001290 if (rport_delay > 0 && (bfad->bfad_flags & BFAD_RPORT_ONLINE)) {
1291 set_current_state(TASK_UNINTERRUPTIBLE);
1292 schedule_timeout(rport_delay * HZ);
1293 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001294 }
1295}
1296
1297int
Maggie Zhangf16a1752010-12-09 19:12:32 -08001298bfad_get_linkup_delay(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -07001299{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001300 u8 nwwns = 0;
1301 wwn_t wwns[BFA_PREBOOT_BOOTLUN_MAX];
1302 int linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001303
1304 /*
1305 * Querying for the boot target port wwns
1306 * -- read from boot information in flash.
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001307 * If nwwns > 0 => boot over SAN and set linkup_delay = 30
1308 * else => local boot machine set linkup_delay = 0
Jing Huang7725ccf2009-09-23 17:46:15 -07001309 */
1310
Jing Huang15b64a82010-07-08 19:48:12 -07001311 bfa_iocfc_get_bootwwns(&bfad->bfa, &nwwns, wwns);
Jing Huang7725ccf2009-09-23 17:46:15 -07001312
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001313 if (nwwns > 0)
1314 /* If Boot over SAN set linkup_delay = 30sec */
1315 linkup_delay = 30;
1316 else
1317 /* If local boot; no linkup_delay */
1318 linkup_delay = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001319
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001320 return linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001321}