blob: f067332bf7635901d393189fde960616ffb21c52 [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 * bfad_im.c Linux driver IM module.
20 */
21
Paul Gortmaker09703662011-05-27 09:37:25 -040022#include <linux/export.h>
23
Jing Huang7725ccf2009-09-23 17:46:15 -070024#include "bfad_drv.h"
25#include "bfad_im.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070026#include "bfa_fcs.h"
Jing Huang7725ccf2009-09-23 17:46:15 -070027
28BFA_TRC_FILE(LDRV, IM);
29
30DEFINE_IDR(bfad_im_port_index);
31struct scsi_transport_template *bfad_im_scsi_transport_template;
Jing Huangb5042932010-03-19 11:05:39 -070032struct scsi_transport_template *bfad_im_scsi_vport_transport_template;
Jing Huang7725ccf2009-09-23 17:46:15 -070033static void bfad_im_itnim_work_handler(struct work_struct *work);
Jeff Garzikf2812332010-11-16 02:10:29 -050034static int bfad_im_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmnd);
Jing Huang7725ccf2009-09-23 17:46:15 -070035static int bfad_im_slave_alloc(struct scsi_device *sdev);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070036static void bfad_im_fc_rport_add(struct bfad_im_port_s *im_port,
37 struct bfad_itnim_s *itnim);
Jing Huang7725ccf2009-09-23 17:46:15 -070038
39void
40bfa_cb_ioim_done(void *drv, struct bfad_ioim_s *dio,
41 enum bfi_ioim_status io_status, u8 scsi_status,
42 int sns_len, u8 *sns_info, s32 residue)
43{
44 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
45 struct bfad_s *bfad = drv;
46 struct bfad_itnim_data_s *itnim_data;
47 struct bfad_itnim_s *itnim;
Krishna Gudipati95aa0602010-03-05 19:38:27 -080048 u8 host_status = DID_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -070049
50 switch (io_status) {
51 case BFI_IOIM_STS_OK:
52 bfa_trc(bfad, scsi_status);
Jing Huang7725ccf2009-09-23 17:46:15 -070053 scsi_set_resid(cmnd, 0);
54
55 if (sns_len > 0) {
56 bfa_trc(bfad, sns_len);
57 if (sns_len > SCSI_SENSE_BUFFERSIZE)
58 sns_len = SCSI_SENSE_BUFFERSIZE;
59 memcpy(cmnd->sense_buffer, sns_info, sns_len);
60 }
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070061
Krishna Gudipati95aa0602010-03-05 19:38:27 -080062 if (residue > 0) {
63 bfa_trc(bfad, residue);
Jing Huang7725ccf2009-09-23 17:46:15 -070064 scsi_set_resid(cmnd, residue);
Krishna Gudipati95aa0602010-03-05 19:38:27 -080065 if (!sns_len && (scsi_status == SAM_STAT_GOOD) &&
66 (scsi_bufflen(cmnd) - residue) <
67 cmnd->underflow) {
68 bfa_trc(bfad, 0);
69 host_status = DID_ERROR;
70 }
71 }
72 cmnd->result = ScsiResult(host_status, scsi_status);
73
Jing Huang7725ccf2009-09-23 17:46:15 -070074 break;
75
Jing Huang7725ccf2009-09-23 17:46:15 -070076 case BFI_IOIM_STS_TIMEDOUT:
Hannes Reineckec60b7b12014-01-14 10:26:25 +010077 host_status = DID_TIME_OUT;
78 cmnd->result = ScsiResult(host_status, 0);
79 break;
Jing Huang7725ccf2009-09-23 17:46:15 -070080 case BFI_IOIM_STS_PATHTOV:
Hannes Reineckec60b7b12014-01-14 10:26:25 +010081 host_status = DID_TRANSPORT_DISRUPTED;
82 cmnd->result = ScsiResult(host_status, 0);
83 break;
Jing Huang7725ccf2009-09-23 17:46:15 -070084 default:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070085 host_status = DID_ERROR;
86 cmnd->result = ScsiResult(host_status, 0);
Jing Huang7725ccf2009-09-23 17:46:15 -070087 }
88
89 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
90 if (cmnd->device->host != NULL)
91 scsi_dma_unmap(cmnd);
92
93 cmnd->host_scribble = NULL;
94 bfa_trc(bfad, cmnd->result);
95
96 itnim_data = cmnd->device->hostdata;
97 if (itnim_data) {
98 itnim = itnim_data->itnim;
99 if (!cmnd->result && itnim &&
100 (bfa_lun_queue_depth > cmnd->device->queue_depth)) {
101 /* Queue depth adjustment for good status completion */
Maggie Zhangf16a1752010-12-09 19:12:32 -0800102 bfad_ramp_up_qdepth(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -0700103 } else if (cmnd->result == SAM_STAT_TASK_SET_FULL && itnim) {
104 /* qfull handling */
Maggie Zhangf16a1752010-12-09 19:12:32 -0800105 bfad_handle_qfull(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -0700106 }
107 }
108
109 cmnd->scsi_done(cmnd);
110}
111
112void
113bfa_cb_ioim_good_comp(void *drv, struct bfad_ioim_s *dio)
114{
115 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
116 struct bfad_itnim_data_s *itnim_data;
117 struct bfad_itnim_s *itnim;
118
119 cmnd->result = ScsiResult(DID_OK, SCSI_STATUS_GOOD);
120
121 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
122 if (cmnd->device->host != NULL)
123 scsi_dma_unmap(cmnd);
124
125 cmnd->host_scribble = NULL;
126
127 /* Queue depth adjustment */
128 if (bfa_lun_queue_depth > cmnd->device->queue_depth) {
129 itnim_data = cmnd->device->hostdata;
130 if (itnim_data) {
131 itnim = itnim_data->itnim;
132 if (itnim)
Maggie Zhangf16a1752010-12-09 19:12:32 -0800133 bfad_ramp_up_qdepth(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -0700134 }
135 }
136
137 cmnd->scsi_done(cmnd);
138}
139
140void
141bfa_cb_ioim_abort(void *drv, struct bfad_ioim_s *dio)
142{
143 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
144 struct bfad_s *bfad = drv;
145
146 cmnd->result = ScsiResult(DID_ERROR, 0);
147
148 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
149 if (cmnd->device->host != NULL)
150 scsi_dma_unmap(cmnd);
151
152 bfa_trc(bfad, cmnd->result);
153 cmnd->host_scribble = NULL;
154}
155
156void
157bfa_cb_tskim_done(void *bfad, struct bfad_tskim_s *dtsk,
158 enum bfi_tskim_status tsk_status)
159{
160 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dtsk;
161 wait_queue_head_t *wq;
162
163 cmnd->SCp.Status |= tsk_status << 1;
164 set_bit(IO_DONE_BIT, (unsigned long *)&cmnd->SCp.Status);
165 wq = (wait_queue_head_t *) cmnd->SCp.ptr;
166 cmnd->SCp.ptr = NULL;
167
168 if (wq)
169 wake_up(wq);
170}
171
Jing Huang5fbe25c2010-10-18 17:17:23 -0700172/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700173 * Scsi_Host_template SCSI host template
174 */
Jing Huang5fbe25c2010-10-18 17:17:23 -0700175/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700176 * Scsi_Host template entry, returns BFAD PCI info.
177 */
178static const char *
179bfad_im_info(struct Scsi_Host *shost)
180{
181 static char bfa_buf[256];
182 struct bfad_im_port_s *im_port =
183 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700184 struct bfad_s *bfad = im_port->bfad;
Jing Huang7725ccf2009-09-23 17:46:15 -0700185
186 memset(bfa_buf, 0, sizeof(bfa_buf));
Krishna Gudipati75332a72011-06-13 15:54:31 -0700187 snprintf(bfa_buf, sizeof(bfa_buf),
188 "Brocade FC/FCOE Adapter, " "hwpath: %s driver: %s",
189 bfad->pci_name, BFAD_DRIVER_VERSION);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700190
Jing Huang7725ccf2009-09-23 17:46:15 -0700191 return bfa_buf;
192}
193
Jing Huang5fbe25c2010-10-18 17:17:23 -0700194/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700195 * Scsi_Host template entry, aborts the specified SCSI command.
196 *
197 * Returns: SUCCESS or FAILED.
198 */
199static int
200bfad_im_abort_handler(struct scsi_cmnd *cmnd)
201{
202 struct Scsi_Host *shost = cmnd->device->host;
203 struct bfad_im_port_s *im_port =
204 (struct bfad_im_port_s *) shost->hostdata[0];
205 struct bfad_s *bfad = im_port->bfad;
206 struct bfa_ioim_s *hal_io;
207 unsigned long flags;
208 u32 timeout;
209 int rc = FAILED;
210
211 spin_lock_irqsave(&bfad->bfad_lock, flags);
212 hal_io = (struct bfa_ioim_s *) cmnd->host_scribble;
213 if (!hal_io) {
Joe Perches9e03aa22013-09-03 13:45:58 -0700214 /* IO has been completed, return success */
Jing Huang7725ccf2009-09-23 17:46:15 -0700215 rc = SUCCESS;
216 goto out;
217 }
218 if (hal_io->dio != (struct bfad_ioim_s *) cmnd) {
219 rc = FAILED;
220 goto out;
221 }
222
223 bfa_trc(bfad, hal_io->iotag);
Jing Huang88166242010-12-09 17:11:53 -0800224 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
225 "scsi%d: abort cmnd %p iotag %x\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700226 im_port->shost->host_no, cmnd, hal_io->iotag);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700227 (void) bfa_ioim_abort(hal_io);
Jing Huang7725ccf2009-09-23 17:46:15 -0700228 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
229
230 /* Need to wait until the command get aborted */
231 timeout = 10;
232 while ((struct bfa_ioim_s *) cmnd->host_scribble == hal_io) {
233 set_current_state(TASK_UNINTERRUPTIBLE);
234 schedule_timeout(timeout);
235 if (timeout < 4 * HZ)
236 timeout *= 2;
237 }
238
239 cmnd->scsi_done(cmnd);
240 bfa_trc(bfad, hal_io->iotag);
Jing Huang88166242010-12-09 17:11:53 -0800241 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700242 "scsi%d: complete abort 0x%p iotag 0x%x\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700243 im_port->shost->host_no, cmnd, hal_io->iotag);
244 return SUCCESS;
245out:
246 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
247 return rc;
248}
249
250static bfa_status_t
251bfad_im_target_reset_send(struct bfad_s *bfad, struct scsi_cmnd *cmnd,
252 struct bfad_itnim_s *itnim)
253{
254 struct bfa_tskim_s *tskim;
255 struct bfa_itnim_s *bfa_itnim;
256 bfa_status_t rc = BFA_STATUS_OK;
Maggie Zhangf3148782010-12-09 19:11:39 -0800257 struct scsi_lun scsilun;
Jing Huang7725ccf2009-09-23 17:46:15 -0700258
Jing Huang7725ccf2009-09-23 17:46:15 -0700259 tskim = bfa_tskim_alloc(&bfad->bfa, (struct bfad_tskim_s *) cmnd);
260 if (!tskim) {
Jing Huang88166242010-12-09 17:11:53 -0800261 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700262 "target reset, fail to allocate tskim\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700263 rc = BFA_STATUS_FAILED;
264 goto out;
265 }
266
267 /*
268 * Set host_scribble to NULL to avoid aborting a task command if
269 * happens.
270 */
271 cmnd->host_scribble = NULL;
272 cmnd->SCp.Status = 0;
273 bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim->fcs_itnim);
Maggie Zhangf3148782010-12-09 19:11:39 -0800274 memset(&scsilun, 0, sizeof(scsilun));
275 bfa_tskim_start(tskim, bfa_itnim, scsilun,
Jing Huang7725ccf2009-09-23 17:46:15 -0700276 FCP_TM_TARGET_RESET, BFAD_TARGET_RESET_TMO);
277out:
278 return rc;
279}
280
Jing Huang5fbe25c2010-10-18 17:17:23 -0700281/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700282 * Scsi_Host template entry, resets a LUN and abort its all commands.
283 *
284 * Returns: SUCCESS or FAILED.
285 *
286 */
287static int
288bfad_im_reset_lun_handler(struct scsi_cmnd *cmnd)
289{
290 struct Scsi_Host *shost = cmnd->device->host;
291 struct bfad_im_port_s *im_port =
292 (struct bfad_im_port_s *) shost->hostdata[0];
293 struct bfad_itnim_data_s *itnim_data = cmnd->device->hostdata;
294 struct bfad_s *bfad = im_port->bfad;
295 struct bfa_tskim_s *tskim;
296 struct bfad_itnim_s *itnim;
297 struct bfa_itnim_s *bfa_itnim;
Yong Zhang6d154db2010-08-10 18:01:22 -0700298 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700299 int rc = SUCCESS;
300 unsigned long flags;
301 enum bfi_tskim_status task_status;
Maggie Zhangf3148782010-12-09 19:11:39 -0800302 struct scsi_lun scsilun;
Jing Huang7725ccf2009-09-23 17:46:15 -0700303
304 spin_lock_irqsave(&bfad->bfad_lock, flags);
305 itnim = itnim_data->itnim;
306 if (!itnim) {
307 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
308 rc = FAILED;
309 goto out;
310 }
311
312 tskim = bfa_tskim_alloc(&bfad->bfa, (struct bfad_tskim_s *) cmnd);
313 if (!tskim) {
Jing Huang88166242010-12-09 17:11:53 -0800314 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Jing Huang7725ccf2009-09-23 17:46:15 -0700315 "LUN reset, fail to allocate tskim");
316 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
317 rc = FAILED;
318 goto out;
319 }
320
Jing Huang5fbe25c2010-10-18 17:17:23 -0700321 /*
Jing Huang7725ccf2009-09-23 17:46:15 -0700322 * Set host_scribble to NULL to avoid aborting a task command
323 * if happens.
324 */
325 cmnd->host_scribble = NULL;
326 cmnd->SCp.ptr = (char *)&wq;
327 cmnd->SCp.Status = 0;
328 bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim->fcs_itnim);
Maggie Zhangf3148782010-12-09 19:11:39 -0800329 int_to_scsilun(cmnd->device->lun, &scsilun);
330 bfa_tskim_start(tskim, bfa_itnim, scsilun,
Jing Huang7725ccf2009-09-23 17:46:15 -0700331 FCP_TM_LUN_RESET, BFAD_LUN_RESET_TMO);
332 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
333
334 wait_event(wq, test_bit(IO_DONE_BIT,
335 (unsigned long *)&cmnd->SCp.Status));
336
337 task_status = cmnd->SCp.Status >> 1;
338 if (task_status != BFI_TSKIM_STS_OK) {
Jing Huang88166242010-12-09 17:11:53 -0800339 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700340 "LUN reset failure, status: %d\n", task_status);
Jing Huang7725ccf2009-09-23 17:46:15 -0700341 rc = FAILED;
342 }
343
344out:
345 return rc;
346}
347
Jing Huang5fbe25c2010-10-18 17:17:23 -0700348/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700349 * Scsi_Host template entry, resets the bus and abort all commands.
350 */
351static int
352bfad_im_reset_bus_handler(struct scsi_cmnd *cmnd)
353{
354 struct Scsi_Host *shost = cmnd->device->host;
355 struct bfad_im_port_s *im_port =
356 (struct bfad_im_port_s *) shost->hostdata[0];
357 struct bfad_s *bfad = im_port->bfad;
358 struct bfad_itnim_s *itnim;
359 unsigned long flags;
360 u32 i, rc, err_cnt = 0;
Yong Zhang6d154db2010-08-10 18:01:22 -0700361 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700362 enum bfi_tskim_status task_status;
363
364 spin_lock_irqsave(&bfad->bfad_lock, flags);
365 for (i = 0; i < MAX_FCP_TARGET; i++) {
Maggie Zhangf16a1752010-12-09 19:12:32 -0800366 itnim = bfad_get_itnim(im_port, i);
Jing Huang7725ccf2009-09-23 17:46:15 -0700367 if (itnim) {
368 cmnd->SCp.ptr = (char *)&wq;
369 rc = bfad_im_target_reset_send(bfad, cmnd, itnim);
370 if (rc != BFA_STATUS_OK) {
371 err_cnt++;
372 continue;
373 }
374
375 /* wait target reset to complete */
376 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
377 wait_event(wq, test_bit(IO_DONE_BIT,
378 (unsigned long *)&cmnd->SCp.Status));
379 spin_lock_irqsave(&bfad->bfad_lock, flags);
380
381 task_status = cmnd->SCp.Status >> 1;
382 if (task_status != BFI_TSKIM_STS_OK) {
Jing Huang88166242010-12-09 17:11:53 -0800383 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Jing Huang7725ccf2009-09-23 17:46:15 -0700384 "target reset failure,"
385 " status: %d\n", task_status);
386 err_cnt++;
387 }
388 }
389 }
390 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
391
392 if (err_cnt)
393 return FAILED;
394
395 return SUCCESS;
396}
397
Jing Huang5fbe25c2010-10-18 17:17:23 -0700398/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700399 * Scsi_Host template entry slave_destroy.
400 */
401static void
402bfad_im_slave_destroy(struct scsi_device *sdev)
403{
404 sdev->hostdata = NULL;
405 return;
406}
407
Jing Huang5fbe25c2010-10-18 17:17:23 -0700408/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700409 * BFA FCS itnim callbacks
410 */
411
Jing Huang5fbe25c2010-10-18 17:17:23 -0700412/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700413 * BFA FCS itnim alloc callback, after successful PRLI
414 * Context: Interrupt
415 */
416void
417bfa_fcb_itnim_alloc(struct bfad_s *bfad, struct bfa_fcs_itnim_s **itnim,
418 struct bfad_itnim_s **itnim_drv)
419{
420 *itnim_drv = kzalloc(sizeof(struct bfad_itnim_s), GFP_ATOMIC);
421 if (*itnim_drv == NULL)
422 return;
423
424 (*itnim_drv)->im = bfad->im;
425 *itnim = &(*itnim_drv)->fcs_itnim;
426 (*itnim_drv)->state = ITNIM_STATE_NONE;
427
428 /*
429 * Initiaze the itnim_work
430 */
431 INIT_WORK(&(*itnim_drv)->itnim_work, bfad_im_itnim_work_handler);
432 bfad->bfad_flags |= BFAD_RPORT_ONLINE;
433}
434
Jing Huang5fbe25c2010-10-18 17:17:23 -0700435/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700436 * BFA FCS itnim free callback.
437 * Context: Interrupt. bfad_lock is held
438 */
439void
440bfa_fcb_itnim_free(struct bfad_s *bfad, struct bfad_itnim_s *itnim_drv)
441{
442 struct bfad_port_s *port;
443 wwn_t wwpn;
444 u32 fcid;
445 char wwpn_str[32], fcid_str[16];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700446 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700447
448 /* online to free state transtion should not happen */
Jing Huangd4b671c2010-12-26 21:46:35 -0800449 WARN_ON(itnim_drv->state == ITNIM_STATE_ONLINE);
Jing Huang7725ccf2009-09-23 17:46:15 -0700450
451 itnim_drv->queue_work = 1;
452 /* offline request is not yet done, use the same request to free */
453 if (itnim_drv->state == ITNIM_STATE_OFFLINE_PENDING)
454 itnim_drv->queue_work = 0;
455
456 itnim_drv->state = ITNIM_STATE_FREE;
457 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
458 itnim_drv->im_port = port->im_port;
459 wwpn = bfa_fcs_itnim_get_pwwn(&itnim_drv->fcs_itnim);
460 fcid = bfa_fcs_itnim_get_fcid(&itnim_drv->fcs_itnim);
461 wwn2str(wwpn_str, wwpn);
462 fcid2str(fcid_str, fcid);
Jing Huang88166242010-12-09 17:11:53 -0800463 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700464 "ITNIM FREE scsi%d: FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700465 port->im_port->shost->host_no,
466 fcid_str, wwpn_str);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700467
468 /* ITNIM processing */
469 if (itnim_drv->queue_work)
470 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700471}
472
Jing Huang5fbe25c2010-10-18 17:17:23 -0700473/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700474 * BFA FCS itnim online callback.
475 * Context: Interrupt. bfad_lock is held
476 */
477void
478bfa_fcb_itnim_online(struct bfad_itnim_s *itnim_drv)
479{
480 struct bfad_port_s *port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700481 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700482
483 itnim_drv->bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim_drv->fcs_itnim);
484 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
485 itnim_drv->state = ITNIM_STATE_ONLINE;
486 itnim_drv->queue_work = 1;
487 itnim_drv->im_port = port->im_port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700488
489 /* ITNIM processing */
490 if (itnim_drv->queue_work)
491 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700492}
493
Jing Huang5fbe25c2010-10-18 17:17:23 -0700494/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700495 * BFA FCS itnim offline callback.
496 * Context: Interrupt. bfad_lock is held
497 */
498void
499bfa_fcb_itnim_offline(struct bfad_itnim_s *itnim_drv)
500{
501 struct bfad_port_s *port;
502 struct bfad_s *bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700503 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700504
505 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
506 bfad = port->bfad;
507 if ((bfad->pport.flags & BFAD_PORT_DELETE) ||
508 (port->flags & BFAD_PORT_DELETE)) {
509 itnim_drv->state = ITNIM_STATE_OFFLINE;
510 return;
511 }
512 itnim_drv->im_port = port->im_port;
513 itnim_drv->state = ITNIM_STATE_OFFLINE_PENDING;
514 itnim_drv->queue_work = 1;
Jing Huang7725ccf2009-09-23 17:46:15 -0700515
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700516 /* ITNIM processing */
517 if (itnim_drv->queue_work)
518 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700519}
520
Jing Huang5fbe25c2010-10-18 17:17:23 -0700521/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700522 * Allocate a Scsi_Host for a port.
523 */
524int
Jing Huangb5042932010-03-19 11:05:39 -0700525bfad_im_scsi_host_alloc(struct bfad_s *bfad, struct bfad_im_port_s *im_port,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700526 struct device *dev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700527{
528 int error = 1;
529
Jing Huang42b426e2010-03-19 11:07:09 -0700530 mutex_lock(&bfad_mutex);
Tejun Heo70a97552013-02-27 17:04:41 -0800531 error = idr_alloc(&bfad_im_port_index, im_port, 0, 0, GFP_KERNEL);
532 if (error < 0) {
Jing Huang42b426e2010-03-19 11:07:09 -0700533 mutex_unlock(&bfad_mutex);
Tejun Heo70a97552013-02-27 17:04:41 -0800534 printk(KERN_WARNING "idr_alloc failure\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700535 goto out;
536 }
Tejun Heo70a97552013-02-27 17:04:41 -0800537 im_port->idr_id = error;
Jing Huang42b426e2010-03-19 11:07:09 -0700538 mutex_unlock(&bfad_mutex);
539
Maggie Zhangf16a1752010-12-09 19:12:32 -0800540 im_port->shost = bfad_scsi_host_alloc(im_port, bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -0700541 if (!im_port->shost) {
542 error = 1;
543 goto out_free_idr;
544 }
545
546 im_port->shost->hostdata[0] = (unsigned long)im_port;
547 im_port->shost->unique_id = im_port->idr_id;
548 im_port->shost->this_id = -1;
549 im_port->shost->max_id = MAX_FCP_TARGET;
550 im_port->shost->max_lun = MAX_FCP_LUN;
551 im_port->shost->max_cmd_len = 16;
552 im_port->shost->can_queue = bfad->cfg_data.ioc_queue_depth;
Jing Huangb5042932010-03-19 11:05:39 -0700553 if (im_port->port->pvb_type == BFAD_PORT_PHYS_BASE)
554 im_port->shost->transportt = bfad_im_scsi_transport_template;
555 else
556 im_port->shost->transportt =
557 bfad_im_scsi_vport_transport_template;
Jing Huang7725ccf2009-09-23 17:46:15 -0700558
Jing Huangc54d5572010-07-08 20:01:49 -0700559 error = scsi_add_host_with_dma(im_port->shost, dev, &bfad->pcidev->dev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700560 if (error) {
Jing Huangb5042932010-03-19 11:05:39 -0700561 printk(KERN_WARNING "scsi_add_host failure %d\n", error);
Jing Huang7725ccf2009-09-23 17:46:15 -0700562 goto out_fc_rel;
563 }
564
Jing Huang7725ccf2009-09-23 17:46:15 -0700565 return 0;
566
567out_fc_rel:
568 scsi_host_put(im_port->shost);
Jing Huangd9883542010-07-08 19:46:26 -0700569 im_port->shost = NULL;
Jing Huang7725ccf2009-09-23 17:46:15 -0700570out_free_idr:
Jing Huang42b426e2010-03-19 11:07:09 -0700571 mutex_lock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700572 idr_remove(&bfad_im_port_index, im_port->idr_id);
Jing Huang42b426e2010-03-19 11:07:09 -0700573 mutex_unlock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700574out:
575 return error;
576}
577
578void
579bfad_im_scsi_host_free(struct bfad_s *bfad, struct bfad_im_port_s *im_port)
580{
Jing Huang7725ccf2009-09-23 17:46:15 -0700581 bfa_trc(bfad, bfad->inst_no);
Jing Huang88166242010-12-09 17:11:53 -0800582 BFA_LOG(KERN_INFO, bfad, bfa_log_level, "Free scsi%d\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700583 im_port->shost->host_no);
584
585 fc_remove_host(im_port->shost);
586
587 scsi_remove_host(im_port->shost);
588 scsi_host_put(im_port->shost);
589
Jing Huang42b426e2010-03-19 11:07:09 -0700590 mutex_lock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700591 idr_remove(&bfad_im_port_index, im_port->idr_id);
Jing Huang42b426e2010-03-19 11:07:09 -0700592 mutex_unlock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700593}
594
595static void
596bfad_im_port_delete_handler(struct work_struct *work)
597{
598 struct bfad_im_port_s *im_port =
599 container_of(work, struct bfad_im_port_s, port_delete_work);
600
Jing Huangb5042932010-03-19 11:05:39 -0700601 if (im_port->port->pvb_type != BFAD_PORT_PHYS_BASE) {
602 im_port->flags |= BFAD_PORT_DELETE;
603 fc_vport_terminate(im_port->fc_vport);
604 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700605}
606
607bfa_status_t
608bfad_im_port_new(struct bfad_s *bfad, struct bfad_port_s *port)
609{
610 int rc = BFA_STATUS_OK;
611 struct bfad_im_port_s *im_port;
612
613 im_port = kzalloc(sizeof(struct bfad_im_port_s), GFP_ATOMIC);
614 if (im_port == NULL) {
615 rc = BFA_STATUS_ENOMEM;
616 goto ext;
617 }
618 port->im_port = im_port;
619 im_port->port = port;
620 im_port->bfad = bfad;
621
622 INIT_WORK(&im_port->port_delete_work, bfad_im_port_delete_handler);
623 INIT_LIST_HEAD(&im_port->itnim_mapped_list);
624 INIT_LIST_HEAD(&im_port->binding_list);
625
626ext:
627 return rc;
628}
629
630void
631bfad_im_port_delete(struct bfad_s *bfad, struct bfad_port_s *port)
632{
633 struct bfad_im_port_s *im_port = port->im_port;
634
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700635 queue_work(bfad->im->drv_workq,
Jing Huang7725ccf2009-09-23 17:46:15 -0700636 &im_port->port_delete_work);
637}
638
639void
640bfad_im_port_clean(struct bfad_im_port_s *im_port)
641{
642 struct bfad_fcp_binding *bp, *bp_new;
643 unsigned long flags;
644 struct bfad_s *bfad = im_port->bfad;
645
646 spin_lock_irqsave(&bfad->bfad_lock, flags);
647 list_for_each_entry_safe(bp, bp_new, &im_port->binding_list,
648 list_entry) {
649 list_del(&bp->list_entry);
650 kfree(bp);
651 }
652
653 /* the itnim_mapped_list must be empty at this time */
Jing Huangd4b671c2010-12-26 21:46:35 -0800654 WARN_ON(!list_empty(&im_port->itnim_mapped_list));
Jing Huang7725ccf2009-09-23 17:46:15 -0700655
656 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
657}
658
Krishna Gudipati7826f302011-07-20 16:59:13 -0700659static void bfad_aen_im_notify_handler(struct work_struct *work)
660{
661 struct bfad_im_s *im =
662 container_of(work, struct bfad_im_s, aen_im_notify_work);
663 struct bfa_aen_entry_s *aen_entry;
664 struct bfad_s *bfad = im->bfad;
665 struct Scsi_Host *shost = bfad->pport.im_port->shost;
666 void *event_data;
667 unsigned long flags;
668
669 while (!list_empty(&bfad->active_aen_q)) {
670 spin_lock_irqsave(&bfad->bfad_aen_spinlock, flags);
671 bfa_q_deq(&bfad->active_aen_q, &aen_entry);
672 spin_unlock_irqrestore(&bfad->bfad_aen_spinlock, flags);
673 event_data = (char *)aen_entry + sizeof(struct list_head);
674 fc_host_post_vendor_event(shost, fc_get_event_number(),
675 sizeof(struct bfa_aen_entry_s) -
676 sizeof(struct list_head),
677 (char *)event_data, BFAD_NL_VENDOR_ID);
678 spin_lock_irqsave(&bfad->bfad_aen_spinlock, flags);
679 list_add_tail(&aen_entry->qe, &bfad->free_aen_q);
680 spin_unlock_irqrestore(&bfad->bfad_aen_spinlock, flags);
681 }
682}
683
Jing Huang7725ccf2009-09-23 17:46:15 -0700684bfa_status_t
685bfad_im_probe(struct bfad_s *bfad)
686{
687 struct bfad_im_s *im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700688
689 im = kzalloc(sizeof(struct bfad_im_s), GFP_KERNEL);
Dan Carpentera5254db2012-06-27 11:59:58 +0300690 if (im == NULL)
691 return BFA_STATUS_ENOMEM;
Jing Huang7725ccf2009-09-23 17:46:15 -0700692
693 bfad->im = im;
694 im->bfad = bfad;
695
Maggie Zhangf16a1752010-12-09 19:12:32 -0800696 if (bfad_thread_workq(bfad) != BFA_STATUS_OK) {
Jing Huang7725ccf2009-09-23 17:46:15 -0700697 kfree(im);
Dan Carpentera5254db2012-06-27 11:59:58 +0300698 return BFA_STATUS_FAILED;
Jing Huang7725ccf2009-09-23 17:46:15 -0700699 }
700
Krishna Gudipati7826f302011-07-20 16:59:13 -0700701 INIT_WORK(&im->aen_im_notify_work, bfad_aen_im_notify_handler);
Dan Carpentera5254db2012-06-27 11:59:58 +0300702 return BFA_STATUS_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -0700703}
704
705void
706bfad_im_probe_undo(struct bfad_s *bfad)
707{
708 if (bfad->im) {
Maggie Zhangf16a1752010-12-09 19:12:32 -0800709 bfad_destroy_workq(bfad->im);
Jing Huang7725ccf2009-09-23 17:46:15 -0700710 kfree(bfad->im);
711 bfad->im = NULL;
712 }
713}
714
Jing Huang7725ccf2009-09-23 17:46:15 -0700715struct Scsi_Host *
Maggie Zhangf16a1752010-12-09 19:12:32 -0800716bfad_scsi_host_alloc(struct bfad_im_port_s *im_port, struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700717{
718 struct scsi_host_template *sht;
719
720 if (im_port->port->pvb_type == BFAD_PORT_PHYS_BASE)
721 sht = &bfad_im_scsi_host_template;
722 else
723 sht = &bfad_im_vport_template;
724
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700725 if (max_xfer_size != BFAD_MAX_SECTORS >> 1)
726 sht->max_sectors = max_xfer_size << 1;
727
Jing Huang7725ccf2009-09-23 17:46:15 -0700728 sht->sg_tablesize = bfad->cfg_data.io_max_sge;
729
730 return scsi_host_alloc(sht, sizeof(unsigned long));
731}
732
733void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800734bfad_scsi_host_free(struct bfad_s *bfad, struct bfad_im_port_s *im_port)
Jing Huang7725ccf2009-09-23 17:46:15 -0700735{
Jing Huangb5042932010-03-19 11:05:39 -0700736 if (!(im_port->flags & BFAD_PORT_DELETE))
737 flush_workqueue(bfad->im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700738 bfad_im_scsi_host_free(im_port->bfad, im_port);
739 bfad_im_port_clean(im_port);
740 kfree(im_port);
741}
742
743void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800744bfad_destroy_workq(struct bfad_im_s *im)
Jing Huang7725ccf2009-09-23 17:46:15 -0700745{
746 if (im && im->drv_workq) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700747 flush_workqueue(im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700748 destroy_workqueue(im->drv_workq);
749 im->drv_workq = NULL;
750 }
751}
752
753bfa_status_t
Maggie Zhangf16a1752010-12-09 19:12:32 -0800754bfad_thread_workq(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700755{
756 struct bfad_im_s *im = bfad->im;
757
758 bfa_trc(bfad, 0);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700759 snprintf(im->drv_workq_name, KOBJ_NAME_LEN, "bfad_wq_%d",
Jing Huang7725ccf2009-09-23 17:46:15 -0700760 bfad->inst_no);
761 im->drv_workq = create_singlethread_workqueue(im->drv_workq_name);
762 if (!im->drv_workq)
763 return BFA_STATUS_FAILED;
764
765 return BFA_STATUS_OK;
766}
767
Jing Huang5fbe25c2010-10-18 17:17:23 -0700768/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700769 * Scsi_Host template entry.
770 *
771 * Description:
772 * OS entry point to adjust the queue_depths on a per-device basis.
773 * Called once per device during the bus scan.
774 * Return non-zero if fails.
775 */
776static int
777bfad_im_slave_configure(struct scsi_device *sdev)
778{
779 if (sdev->tagged_supported)
780 scsi_activate_tcq(sdev, bfa_lun_queue_depth);
781 else
782 scsi_deactivate_tcq(sdev, bfa_lun_queue_depth);
783
784 return 0;
785}
786
787struct scsi_host_template bfad_im_scsi_host_template = {
788 .module = THIS_MODULE,
789 .name = BFAD_DRIVER_NAME,
790 .info = bfad_im_info,
791 .queuecommand = bfad_im_queuecommand,
792 .eh_abort_handler = bfad_im_abort_handler,
793 .eh_device_reset_handler = bfad_im_reset_lun_handler,
794 .eh_bus_reset_handler = bfad_im_reset_bus_handler,
795
796 .slave_alloc = bfad_im_slave_alloc,
797 .slave_configure = bfad_im_slave_configure,
798 .slave_destroy = bfad_im_slave_destroy,
799
800 .this_id = -1,
801 .sg_tablesize = BFAD_IO_MAX_SGE,
802 .cmd_per_lun = 3,
803 .use_clustering = ENABLE_CLUSTERING,
804 .shost_attrs = bfad_im_host_attrs,
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700805 .max_sectors = BFAD_MAX_SECTORS,
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700806 .vendor_id = BFA_PCI_VENDOR_ID_BROCADE,
Jing Huang7725ccf2009-09-23 17:46:15 -0700807};
808
809struct scsi_host_template bfad_im_vport_template = {
810 .module = THIS_MODULE,
811 .name = BFAD_DRIVER_NAME,
812 .info = bfad_im_info,
813 .queuecommand = bfad_im_queuecommand,
814 .eh_abort_handler = bfad_im_abort_handler,
815 .eh_device_reset_handler = bfad_im_reset_lun_handler,
816 .eh_bus_reset_handler = bfad_im_reset_bus_handler,
817
818 .slave_alloc = bfad_im_slave_alloc,
819 .slave_configure = bfad_im_slave_configure,
820 .slave_destroy = bfad_im_slave_destroy,
821
822 .this_id = -1,
823 .sg_tablesize = BFAD_IO_MAX_SGE,
824 .cmd_per_lun = 3,
825 .use_clustering = ENABLE_CLUSTERING,
826 .shost_attrs = bfad_im_vport_attrs,
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700827 .max_sectors = BFAD_MAX_SECTORS,
Jing Huang7725ccf2009-09-23 17:46:15 -0700828};
829
Jing Huang7725ccf2009-09-23 17:46:15 -0700830bfa_status_t
831bfad_im_module_init(void)
832{
833 bfad_im_scsi_transport_template =
834 fc_attach_transport(&bfad_im_fc_function_template);
835 if (!bfad_im_scsi_transport_template)
836 return BFA_STATUS_ENOMEM;
837
Jing Huangb5042932010-03-19 11:05:39 -0700838 bfad_im_scsi_vport_transport_template =
839 fc_attach_transport(&bfad_im_vport_fc_function_template);
840 if (!bfad_im_scsi_vport_transport_template) {
841 fc_release_transport(bfad_im_scsi_transport_template);
842 return BFA_STATUS_ENOMEM;
843 }
844
Jing Huang7725ccf2009-09-23 17:46:15 -0700845 return BFA_STATUS_OK;
846}
847
848void
849bfad_im_module_exit(void)
850{
851 if (bfad_im_scsi_transport_template)
852 fc_release_transport(bfad_im_scsi_transport_template);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700853
Jing Huangb5042932010-03-19 11:05:39 -0700854 if (bfad_im_scsi_vport_transport_template)
855 fc_release_transport(bfad_im_scsi_vport_transport_template);
Jing Huang7725ccf2009-09-23 17:46:15 -0700856}
857
858void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800859bfad_ramp_up_qdepth(struct bfad_itnim_s *itnim, struct scsi_device *sdev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700860{
861 struct scsi_device *tmp_sdev;
862
863 if (((jiffies - itnim->last_ramp_up_time) >
864 BFA_QUEUE_FULL_RAMP_UP_TIME * HZ) &&
865 ((jiffies - itnim->last_queue_full_time) >
866 BFA_QUEUE_FULL_RAMP_UP_TIME * HZ)) {
867 shost_for_each_device(tmp_sdev, sdev->host) {
868 if (bfa_lun_queue_depth > tmp_sdev->queue_depth) {
869 if (tmp_sdev->id != sdev->id)
870 continue;
871 if (tmp_sdev->ordered_tags)
872 scsi_adjust_queue_depth(tmp_sdev,
873 MSG_ORDERED_TAG,
874 tmp_sdev->queue_depth + 1);
875 else
876 scsi_adjust_queue_depth(tmp_sdev,
877 MSG_SIMPLE_TAG,
878 tmp_sdev->queue_depth + 1);
879
880 itnim->last_ramp_up_time = jiffies;
881 }
882 }
883 }
884}
885
886void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800887bfad_handle_qfull(struct bfad_itnim_s *itnim, struct scsi_device *sdev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700888{
889 struct scsi_device *tmp_sdev;
890
891 itnim->last_queue_full_time = jiffies;
892
893 shost_for_each_device(tmp_sdev, sdev->host) {
894 if (tmp_sdev->id != sdev->id)
895 continue;
896 scsi_track_queue_full(tmp_sdev, tmp_sdev->queue_depth - 1);
897 }
898}
899
Jing Huang7725ccf2009-09-23 17:46:15 -0700900struct bfad_itnim_s *
Maggie Zhangf16a1752010-12-09 19:12:32 -0800901bfad_get_itnim(struct bfad_im_port_s *im_port, int id)
Jing Huang7725ccf2009-09-23 17:46:15 -0700902{
903 struct bfad_itnim_s *itnim = NULL;
904
905 /* Search the mapped list for this target ID */
906 list_for_each_entry(itnim, &im_port->itnim_mapped_list, list_entry) {
907 if (id == itnim->scsi_tgt_id)
908 return itnim;
909 }
910
911 return NULL;
912}
913
Jing Huang5fbe25c2010-10-18 17:17:23 -0700914/*
Krishna Gudipati5b7db7a2011-12-20 18:58:32 -0800915 * Function is invoked from the SCSI Host Template slave_alloc() entry point.
916 * Has the logic to query the LUN Mask database to check if this LUN needs to
917 * be made visible to the SCSI mid-layer or not.
918 *
919 * Returns BFA_STATUS_OK if this LUN needs to be added to the OS stack.
920 * Returns -ENXIO to notify SCSI mid-layer to not add this LUN to the OS stack.
921 */
922static int
923bfad_im_check_if_make_lun_visible(struct scsi_device *sdev,
924 struct fc_rport *rport)
925{
926 struct bfad_itnim_data_s *itnim_data =
927 (struct bfad_itnim_data_s *) rport->dd_data;
928 struct bfa_s *bfa = itnim_data->itnim->bfa_itnim->bfa;
929 struct bfa_rport_s *bfa_rport = itnim_data->itnim->bfa_itnim->rport;
930 struct bfa_lun_mask_s *lun_list = bfa_get_lun_mask_list(bfa);
931 int i = 0, ret = -ENXIO;
932
933 for (i = 0; i < MAX_LUN_MASK_CFG; i++) {
934 if (lun_list[i].state == BFA_IOIM_LUN_MASK_ACTIVE &&
935 scsilun_to_int(&lun_list[i].lun) == sdev->lun &&
936 lun_list[i].rp_tag == bfa_rport->rport_tag &&
937 lun_list[i].lp_tag == (u8)bfa_rport->rport_info.lp_tag) {
938 ret = BFA_STATUS_OK;
939 break;
940 }
941 }
942 return ret;
943}
944
945/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700946 * Scsi_Host template entry slave_alloc
947 */
948static int
949bfad_im_slave_alloc(struct scsi_device *sdev)
950{
951 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Jakob Normarkc6e23d82013-05-15 21:41:51 +0200952 struct bfad_itnim_data_s *itnim_data;
953 struct bfa_s *bfa;
Jing Huang7725ccf2009-09-23 17:46:15 -0700954
955 if (!rport || fc_remote_port_chkready(rport))
956 return -ENXIO;
957
Jakob Normarkc6e23d82013-05-15 21:41:51 +0200958 itnim_data = (struct bfad_itnim_data_s *) rport->dd_data;
959 bfa = itnim_data->itnim->bfa_itnim->bfa;
960
Krishna Gudipati5b7db7a2011-12-20 18:58:32 -0800961 if (bfa_get_lun_mask_status(bfa) == BFA_LUNMASK_ENABLED) {
962 /*
963 * We should not mask LUN 0 - since this will translate
964 * to no LUN / TARGET for SCSI ml resulting no scan.
965 */
966 if (sdev->lun == 0) {
967 sdev->sdev_bflags |= BLIST_NOREPORTLUN |
968 BLIST_SPARSELUN;
969 goto done;
970 }
971
972 /*
973 * Query LUN Mask configuration - to expose this LUN
974 * to the SCSI mid-layer or to mask it.
975 */
976 if (bfad_im_check_if_make_lun_visible(sdev, rport) !=
977 BFA_STATUS_OK)
978 return -ENXIO;
979 }
980done:
Jing Huang7725ccf2009-09-23 17:46:15 -0700981 sdev->hostdata = rport->dd_data;
982
983 return 0;
984}
985
Krishna Gudipati6192bd72012-05-11 17:49:59 -0700986u32
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700987bfad_im_supported_speeds(struct bfa_s *bfa)
988{
Jing Huange0a08a32010-10-18 17:14:01 -0700989 struct bfa_ioc_attr_s *ioc_attr;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700990 u32 supported_speed = 0;
991
Jing Huange0a08a32010-10-18 17:14:01 -0700992 ioc_attr = kzalloc(sizeof(struct bfa_ioc_attr_s), GFP_KERNEL);
993 if (!ioc_attr)
994 return 0;
995
Maggie Zhangf7f738122010-12-09 19:08:43 -0800996 bfa_ioc_get_attr(&bfa->ioc, ioc_attr);
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700997 if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_16GBPS)
998 supported_speed |= FC_PORTSPEED_16GBIT | FC_PORTSPEED_8GBIT |
999 FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT;
1000 else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_8GBPS) {
Jing Huange0a08a32010-10-18 17:14:01 -07001001 if (ioc_attr->adapter_attr.is_mezz) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001002 supported_speed |= FC_PORTSPEED_8GBIT |
1003 FC_PORTSPEED_4GBIT |
1004 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
1005 } else {
1006 supported_speed |= FC_PORTSPEED_8GBIT |
1007 FC_PORTSPEED_4GBIT |
1008 FC_PORTSPEED_2GBIT;
1009 }
Jing Huange0a08a32010-10-18 17:14:01 -07001010 } else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_4GBPS) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001011 supported_speed |= FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
1012 FC_PORTSPEED_1GBIT;
Jing Huange0a08a32010-10-18 17:14:01 -07001013 } else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_10GBPS) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001014 supported_speed |= FC_PORTSPEED_10GBIT;
1015 }
Jing Huange0a08a32010-10-18 17:14:01 -07001016 kfree(ioc_attr);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001017 return supported_speed;
1018}
1019
Jing Huang7725ccf2009-09-23 17:46:15 -07001020void
Maggie Zhangf16a1752010-12-09 19:12:32 -08001021bfad_fc_host_init(struct bfad_im_port_s *im_port)
Jing Huang7725ccf2009-09-23 17:46:15 -07001022{
1023 struct Scsi_Host *host = im_port->shost;
1024 struct bfad_s *bfad = im_port->bfad;
1025 struct bfad_port_s *port = im_port->port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001026 char symname[BFA_SYMNAME_MAXLEN];
Jing Huange0a08a32010-10-18 17:14:01 -07001027 struct bfa_fcport_s *fcport = BFA_FCPORT_MOD(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001028
1029 fc_host_node_name(host) =
Jing Huangba816ea2010-10-18 17:10:50 -07001030 cpu_to_be64((bfa_fcs_lport_get_nwwn(port->fcs_port)));
Jing Huang7725ccf2009-09-23 17:46:15 -07001031 fc_host_port_name(host) =
Jing Huangba816ea2010-10-18 17:10:50 -07001032 cpu_to_be64((bfa_fcs_lport_get_pwwn(port->fcs_port)));
Jing Huangb5042932010-03-19 11:05:39 -07001033 fc_host_max_npiv_vports(host) = bfa_lps_get_max_vport(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001034
1035 fc_host_supported_classes(host) = FC_COS_CLASS3;
1036
1037 memset(fc_host_supported_fc4s(host), 0,
1038 sizeof(fc_host_supported_fc4s(host)));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001039 if (supported_fc4s & BFA_LPORT_ROLE_FCP_IM)
Jing Huang7725ccf2009-09-23 17:46:15 -07001040 /* For FCP type 0x08 */
1041 fc_host_supported_fc4s(host)[2] = 1;
Jing Huang7725ccf2009-09-23 17:46:15 -07001042 /* For fibre channel services type 0x20 */
1043 fc_host_supported_fc4s(host)[7] = 1;
1044
Jakob Normarkc6e23d82013-05-15 21:41:51 +02001045 strlcpy(symname, bfad->bfa_fcs.fabric.bport.port_cfg.sym_name.symname,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001046 BFA_SYMNAME_MAXLEN);
1047 sprintf(fc_host_symbolic_name(host), "%s", symname);
Jing Huang7725ccf2009-09-23 17:46:15 -07001048
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001049 fc_host_supported_speeds(host) = bfad_im_supported_speeds(&bfad->bfa);
Jing Huang5fbe25c2010-10-18 17:17:23 -07001050 fc_host_maxframe_size(host) = fcport->cfg.maxfrsize;
Jing Huang7725ccf2009-09-23 17:46:15 -07001051}
1052
1053static void
1054bfad_im_fc_rport_add(struct bfad_im_port_s *im_port, struct bfad_itnim_s *itnim)
1055{
1056 struct fc_rport_identifiers rport_ids;
1057 struct fc_rport *fc_rport;
1058 struct bfad_itnim_data_s *itnim_data;
1059
1060 rport_ids.node_name =
Jing Huangba816ea2010-10-18 17:10:50 -07001061 cpu_to_be64(bfa_fcs_itnim_get_nwwn(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -07001062 rport_ids.port_name =
Jing Huangba816ea2010-10-18 17:10:50 -07001063 cpu_to_be64(bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -07001064 rport_ids.port_id =
Maggie Zhangf16a1752010-12-09 19:12:32 -08001065 bfa_hton3b(bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -07001066 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
1067
1068 itnim->fc_rport = fc_rport =
1069 fc_remote_port_add(im_port->shost, 0, &rport_ids);
1070
1071 if (!fc_rport)
1072 return;
1073
1074 fc_rport->maxframe_size =
1075 bfa_fcs_itnim_get_maxfrsize(&itnim->fcs_itnim);
1076 fc_rport->supported_classes = bfa_fcs_itnim_get_cos(&itnim->fcs_itnim);
1077
1078 itnim_data = fc_rport->dd_data;
1079 itnim_data->itnim = itnim;
1080
1081 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
1082
1083 if (rport_ids.roles != FC_RPORT_ROLE_UNKNOWN)
1084 fc_remote_port_rolechg(fc_rport, rport_ids.roles);
1085
1086 if ((fc_rport->scsi_target_id != -1)
1087 && (fc_rport->scsi_target_id < MAX_FCP_TARGET))
1088 itnim->scsi_tgt_id = fc_rport->scsi_target_id;
1089
Krishna Gudipati5b7db7a2011-12-20 18:58:32 -08001090 itnim->channel = fc_rport->channel;
1091
Jing Huang7725ccf2009-09-23 17:46:15 -07001092 return;
1093}
1094
Jing Huang5fbe25c2010-10-18 17:17:23 -07001095/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001096 * Work queue handler using FC transport service
1097* Context: kernel
1098 */
1099static void
1100bfad_im_itnim_work_handler(struct work_struct *work)
1101{
1102 struct bfad_itnim_s *itnim = container_of(work, struct bfad_itnim_s,
1103 itnim_work);
1104 struct bfad_im_s *im = itnim->im;
1105 struct bfad_s *bfad = im->bfad;
1106 struct bfad_im_port_s *im_port;
1107 unsigned long flags;
1108 struct fc_rport *fc_rport;
1109 wwn_t wwpn;
1110 u32 fcid;
1111 char wwpn_str[32], fcid_str[16];
1112
1113 spin_lock_irqsave(&bfad->bfad_lock, flags);
1114 im_port = itnim->im_port;
1115 bfa_trc(bfad, itnim->state);
1116 switch (itnim->state) {
1117 case ITNIM_STATE_ONLINE:
1118 if (!itnim->fc_rport) {
1119 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1120 bfad_im_fc_rport_add(im_port, itnim);
1121 spin_lock_irqsave(&bfad->bfad_lock, flags);
1122 wwpn = bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim);
1123 fcid = bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim);
1124 wwn2str(wwpn_str, wwpn);
1125 fcid2str(fcid_str, fcid);
1126 list_add_tail(&itnim->list_entry,
1127 &im_port->itnim_mapped_list);
Jing Huang88166242010-12-09 17:11:53 -08001128 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001129 "ITNIM ONLINE Target: %d:0:%d "
1130 "FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -07001131 im_port->shost->host_no,
1132 itnim->scsi_tgt_id,
1133 fcid_str, wwpn_str);
1134 } else {
1135 printk(KERN_WARNING
1136 "%s: itnim %llx is already in online state\n",
Jing Huangf8ceafd2009-09-25 12:29:54 -07001137 __func__,
Jing Huang7725ccf2009-09-23 17:46:15 -07001138 bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim));
1139 }
1140
1141 break;
1142 case ITNIM_STATE_OFFLINE_PENDING:
1143 itnim->state = ITNIM_STATE_OFFLINE;
1144 if (itnim->fc_rport) {
1145 fc_rport = itnim->fc_rport;
1146 ((struct bfad_itnim_data_s *)
1147 fc_rport->dd_data)->itnim = NULL;
1148 itnim->fc_rport = NULL;
1149 if (!(im_port->port->flags & BFAD_PORT_DELETE)) {
1150 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1151 fc_rport->dev_loss_tmo =
1152 bfa_fcpim_path_tov_get(&bfad->bfa) + 1;
1153 fc_remote_port_delete(fc_rport);
1154 spin_lock_irqsave(&bfad->bfad_lock, flags);
1155 }
1156 wwpn = bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim);
1157 fcid = bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim);
1158 wwn2str(wwpn_str, wwpn);
1159 fcid2str(fcid_str, fcid);
1160 list_del(&itnim->list_entry);
Jing Huang88166242010-12-09 17:11:53 -08001161 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001162 "ITNIM OFFLINE Target: %d:0:%d "
1163 "FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -07001164 im_port->shost->host_no,
1165 itnim->scsi_tgt_id,
1166 fcid_str, wwpn_str);
1167 }
1168 break;
1169 case ITNIM_STATE_FREE:
1170 if (itnim->fc_rport) {
1171 fc_rport = itnim->fc_rport;
1172 ((struct bfad_itnim_data_s *)
1173 fc_rport->dd_data)->itnim = NULL;
1174 itnim->fc_rport = NULL;
1175 if (!(im_port->port->flags & BFAD_PORT_DELETE)) {
1176 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1177 fc_rport->dev_loss_tmo =
1178 bfa_fcpim_path_tov_get(&bfad->bfa) + 1;
1179 fc_remote_port_delete(fc_rport);
1180 spin_lock_irqsave(&bfad->bfad_lock, flags);
1181 }
1182 list_del(&itnim->list_entry);
1183 }
1184
1185 kfree(itnim);
1186 break;
1187 default:
Jing Huangd4b671c2010-12-26 21:46:35 -08001188 WARN_ON(1);
Jing Huang7725ccf2009-09-23 17:46:15 -07001189 break;
1190 }
1191
1192 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1193}
1194
Jing Huang5fbe25c2010-10-18 17:17:23 -07001195/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001196 * Scsi_Host template entry, queue a SCSI command to the BFAD.
1197 */
1198static int
Jeff Garzikf2812332010-11-16 02:10:29 -05001199bfad_im_queuecommand_lck(struct scsi_cmnd *cmnd, void (*done) (struct scsi_cmnd *))
Jing Huang7725ccf2009-09-23 17:46:15 -07001200{
1201 struct bfad_im_port_s *im_port =
1202 (struct bfad_im_port_s *) cmnd->device->host->hostdata[0];
1203 struct bfad_s *bfad = im_port->bfad;
1204 struct bfad_itnim_data_s *itnim_data = cmnd->device->hostdata;
1205 struct bfad_itnim_s *itnim;
1206 struct bfa_ioim_s *hal_io;
1207 unsigned long flags;
1208 int rc;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001209 int sg_cnt = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001210 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
1211
1212 rc = fc_remote_port_chkready(rport);
1213 if (rc) {
1214 cmnd->result = rc;
1215 done(cmnd);
1216 return 0;
1217 }
1218
Krishna Gudipati881c1b32012-08-22 19:52:02 -07001219 if (bfad->bfad_flags & BFAD_EEH_BUSY) {
1220 if (bfad->bfad_flags & BFAD_EEH_PCI_CHANNEL_IO_PERM_FAILURE)
1221 cmnd->result = DID_NO_CONNECT << 16;
1222 else
1223 cmnd->result = DID_REQUEUE << 16;
1224 done(cmnd);
1225 return 0;
1226 }
1227
Jing Huang7725ccf2009-09-23 17:46:15 -07001228 sg_cnt = scsi_dma_map(cmnd);
Jing Huang7725ccf2009-09-23 17:46:15 -07001229 if (sg_cnt < 0)
1230 return SCSI_MLQUEUE_HOST_BUSY;
1231
1232 cmnd->scsi_done = done;
1233
1234 spin_lock_irqsave(&bfad->bfad_lock, flags);
1235 if (!(bfad->bfad_flags & BFAD_HAL_START_DONE)) {
1236 printk(KERN_WARNING
1237 "bfad%d, queuecommand %p %x failed, BFA stopped\n",
1238 bfad->inst_no, cmnd, cmnd->cmnd[0]);
1239 cmnd->result = ScsiResult(DID_NO_CONNECT, 0);
1240 goto out_fail_cmd;
1241 }
1242
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001243
Jing Huang7725ccf2009-09-23 17:46:15 -07001244 itnim = itnim_data->itnim;
1245 if (!itnim) {
1246 cmnd->result = ScsiResult(DID_IMM_RETRY, 0);
1247 goto out_fail_cmd;
1248 }
1249
1250 hal_io = bfa_ioim_alloc(&bfad->bfa, (struct bfad_ioim_s *) cmnd,
1251 itnim->bfa_itnim, sg_cnt);
1252 if (!hal_io) {
1253 printk(KERN_WARNING "hal_io failure\n");
1254 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1255 scsi_dma_unmap(cmnd);
1256 return SCSI_MLQUEUE_HOST_BUSY;
1257 }
1258
1259 cmnd->host_scribble = (char *)hal_io;
Jing Huang7725ccf2009-09-23 17:46:15 -07001260 bfa_ioim_start(hal_io);
1261 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1262
1263 return 0;
1264
1265out_fail_cmd:
1266 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1267 scsi_dma_unmap(cmnd);
1268 if (done)
1269 done(cmnd);
1270
1271 return 0;
1272}
1273
Jeff Garzikf2812332010-11-16 02:10:29 -05001274static DEF_SCSI_QCMD(bfad_im_queuecommand)
1275
Jing Huang7725ccf2009-09-23 17:46:15 -07001276void
Maggie Zhangf16a1752010-12-09 19:12:32 -08001277bfad_rport_online_wait(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -07001278{
1279 int i;
1280 int rport_delay = 10;
1281
1282 for (i = 0; !(bfad->bfad_flags & BFAD_PORT_ONLINE)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001283 && i < bfa_linkup_delay; i++) {
1284 set_current_state(TASK_UNINTERRUPTIBLE);
1285 schedule_timeout(HZ);
1286 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001287
1288 if (bfad->bfad_flags & BFAD_PORT_ONLINE) {
1289 rport_delay = rport_delay < bfa_linkup_delay ?
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001290 rport_delay : bfa_linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001291 for (i = 0; !(bfad->bfad_flags & BFAD_RPORT_ONLINE)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001292 && i < rport_delay; i++) {
1293 set_current_state(TASK_UNINTERRUPTIBLE);
1294 schedule_timeout(HZ);
1295 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001296
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001297 if (rport_delay > 0 && (bfad->bfad_flags & BFAD_RPORT_ONLINE)) {
1298 set_current_state(TASK_UNINTERRUPTIBLE);
1299 schedule_timeout(rport_delay * HZ);
1300 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001301 }
1302}
1303
1304int
Maggie Zhangf16a1752010-12-09 19:12:32 -08001305bfad_get_linkup_delay(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -07001306{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001307 u8 nwwns = 0;
1308 wwn_t wwns[BFA_PREBOOT_BOOTLUN_MAX];
1309 int linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001310
1311 /*
1312 * Querying for the boot target port wwns
1313 * -- read from boot information in flash.
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001314 * If nwwns > 0 => boot over SAN and set linkup_delay = 30
1315 * else => local boot machine set linkup_delay = 0
Jing Huang7725ccf2009-09-23 17:46:15 -07001316 */
1317
Jing Huang15b64a82010-07-08 19:48:12 -07001318 bfa_iocfc_get_bootwwns(&bfad->bfa, &nwwns, wwns);
Jing Huang7725ccf2009-09-23 17:46:15 -07001319
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001320 if (nwwns > 0)
1321 /* If Boot over SAN set linkup_delay = 30sec */
1322 linkup_delay = 30;
1323 else
1324 /* If local boot; no linkup_delay */
1325 linkup_delay = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001326
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001327 return linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001328}