blob: f2bf81265ae52cdfa212063749b08d5b4d0c4a1b [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
22#include "bfad_drv.h"
23#include "bfad_im.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070024#include "bfa_fcs.h"
Jing Huang7725ccf2009-09-23 17:46:15 -070025
26BFA_TRC_FILE(LDRV, IM);
27
28DEFINE_IDR(bfad_im_port_index);
29struct scsi_transport_template *bfad_im_scsi_transport_template;
Jing Huangb5042932010-03-19 11:05:39 -070030struct scsi_transport_template *bfad_im_scsi_vport_transport_template;
Jing Huang7725ccf2009-09-23 17:46:15 -070031static void bfad_im_itnim_work_handler(struct work_struct *work);
Jeff Garzikf2812332010-11-16 02:10:29 -050032static int bfad_im_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmnd);
Jing Huang7725ccf2009-09-23 17:46:15 -070033static int bfad_im_slave_alloc(struct scsi_device *sdev);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070034static void bfad_im_fc_rport_add(struct bfad_im_port_s *im_port,
35 struct bfad_itnim_s *itnim);
Jing Huang7725ccf2009-09-23 17:46:15 -070036
37void
38bfa_cb_ioim_done(void *drv, struct bfad_ioim_s *dio,
39 enum bfi_ioim_status io_status, u8 scsi_status,
40 int sns_len, u8 *sns_info, s32 residue)
41{
42 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
43 struct bfad_s *bfad = drv;
44 struct bfad_itnim_data_s *itnim_data;
45 struct bfad_itnim_s *itnim;
Krishna Gudipati95aa0602010-03-05 19:38:27 -080046 u8 host_status = DID_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -070047
48 switch (io_status) {
49 case BFI_IOIM_STS_OK:
50 bfa_trc(bfad, scsi_status);
Jing Huang7725ccf2009-09-23 17:46:15 -070051 scsi_set_resid(cmnd, 0);
52
53 if (sns_len > 0) {
54 bfa_trc(bfad, sns_len);
55 if (sns_len > SCSI_SENSE_BUFFERSIZE)
56 sns_len = SCSI_SENSE_BUFFERSIZE;
57 memcpy(cmnd->sense_buffer, sns_info, sns_len);
58 }
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070059
Krishna Gudipati95aa0602010-03-05 19:38:27 -080060 if (residue > 0) {
61 bfa_trc(bfad, residue);
Jing Huang7725ccf2009-09-23 17:46:15 -070062 scsi_set_resid(cmnd, residue);
Krishna Gudipati95aa0602010-03-05 19:38:27 -080063 if (!sns_len && (scsi_status == SAM_STAT_GOOD) &&
64 (scsi_bufflen(cmnd) - residue) <
65 cmnd->underflow) {
66 bfa_trc(bfad, 0);
67 host_status = DID_ERROR;
68 }
69 }
70 cmnd->result = ScsiResult(host_status, scsi_status);
71
Jing Huang7725ccf2009-09-23 17:46:15 -070072 break;
73
74 case BFI_IOIM_STS_ABORTED:
75 case BFI_IOIM_STS_TIMEDOUT:
76 case BFI_IOIM_STS_PATHTOV:
77 default:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070078 host_status = DID_ERROR;
79 cmnd->result = ScsiResult(host_status, 0);
Jing Huang7725ccf2009-09-23 17:46:15 -070080 }
81
82 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
83 if (cmnd->device->host != NULL)
84 scsi_dma_unmap(cmnd);
85
86 cmnd->host_scribble = NULL;
87 bfa_trc(bfad, cmnd->result);
88
89 itnim_data = cmnd->device->hostdata;
90 if (itnim_data) {
91 itnim = itnim_data->itnim;
92 if (!cmnd->result && itnim &&
93 (bfa_lun_queue_depth > cmnd->device->queue_depth)) {
94 /* Queue depth adjustment for good status completion */
Maggie Zhangf16a1752010-12-09 19:12:32 -080095 bfad_ramp_up_qdepth(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -070096 } else if (cmnd->result == SAM_STAT_TASK_SET_FULL && itnim) {
97 /* qfull handling */
Maggie Zhangf16a1752010-12-09 19:12:32 -080098 bfad_handle_qfull(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -070099 }
100 }
101
102 cmnd->scsi_done(cmnd);
103}
104
105void
106bfa_cb_ioim_good_comp(void *drv, struct bfad_ioim_s *dio)
107{
108 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
109 struct bfad_itnim_data_s *itnim_data;
110 struct bfad_itnim_s *itnim;
111
112 cmnd->result = ScsiResult(DID_OK, SCSI_STATUS_GOOD);
113
114 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
115 if (cmnd->device->host != NULL)
116 scsi_dma_unmap(cmnd);
117
118 cmnd->host_scribble = NULL;
119
120 /* Queue depth adjustment */
121 if (bfa_lun_queue_depth > cmnd->device->queue_depth) {
122 itnim_data = cmnd->device->hostdata;
123 if (itnim_data) {
124 itnim = itnim_data->itnim;
125 if (itnim)
Maggie Zhangf16a1752010-12-09 19:12:32 -0800126 bfad_ramp_up_qdepth(itnim, cmnd->device);
Jing Huang7725ccf2009-09-23 17:46:15 -0700127 }
128 }
129
130 cmnd->scsi_done(cmnd);
131}
132
133void
134bfa_cb_ioim_abort(void *drv, struct bfad_ioim_s *dio)
135{
136 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
137 struct bfad_s *bfad = drv;
138
139 cmnd->result = ScsiResult(DID_ERROR, 0);
140
141 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
142 if (cmnd->device->host != NULL)
143 scsi_dma_unmap(cmnd);
144
145 bfa_trc(bfad, cmnd->result);
146 cmnd->host_scribble = NULL;
147}
148
149void
150bfa_cb_tskim_done(void *bfad, struct bfad_tskim_s *dtsk,
151 enum bfi_tskim_status tsk_status)
152{
153 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dtsk;
154 wait_queue_head_t *wq;
155
156 cmnd->SCp.Status |= tsk_status << 1;
157 set_bit(IO_DONE_BIT, (unsigned long *)&cmnd->SCp.Status);
158 wq = (wait_queue_head_t *) cmnd->SCp.ptr;
159 cmnd->SCp.ptr = NULL;
160
161 if (wq)
162 wake_up(wq);
163}
164
Jing Huang5fbe25c2010-10-18 17:17:23 -0700165/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700166 * Scsi_Host_template SCSI host template
167 */
Jing Huang5fbe25c2010-10-18 17:17:23 -0700168/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700169 * Scsi_Host template entry, returns BFAD PCI info.
170 */
171static const char *
172bfad_im_info(struct Scsi_Host *shost)
173{
174 static char bfa_buf[256];
175 struct bfad_im_port_s *im_port =
176 (struct bfad_im_port_s *) shost->hostdata[0];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700177 struct bfad_s *bfad = im_port->bfad;
Jing Huang7725ccf2009-09-23 17:46:15 -0700178
179 memset(bfa_buf, 0, sizeof(bfa_buf));
Krishna Gudipati75332a72011-06-13 15:54:31 -0700180 snprintf(bfa_buf, sizeof(bfa_buf),
181 "Brocade FC/FCOE Adapter, " "hwpath: %s driver: %s",
182 bfad->pci_name, BFAD_DRIVER_VERSION);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700183
Jing Huang7725ccf2009-09-23 17:46:15 -0700184 return bfa_buf;
185}
186
Jing Huang5fbe25c2010-10-18 17:17:23 -0700187/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700188 * Scsi_Host template entry, aborts the specified SCSI command.
189 *
190 * Returns: SUCCESS or FAILED.
191 */
192static int
193bfad_im_abort_handler(struct scsi_cmnd *cmnd)
194{
195 struct Scsi_Host *shost = cmnd->device->host;
196 struct bfad_im_port_s *im_port =
197 (struct bfad_im_port_s *) shost->hostdata[0];
198 struct bfad_s *bfad = im_port->bfad;
199 struct bfa_ioim_s *hal_io;
200 unsigned long flags;
201 u32 timeout;
202 int rc = FAILED;
203
204 spin_lock_irqsave(&bfad->bfad_lock, flags);
205 hal_io = (struct bfa_ioim_s *) cmnd->host_scribble;
206 if (!hal_io) {
207 /* IO has been completed, retrun success */
208 rc = SUCCESS;
209 goto out;
210 }
211 if (hal_io->dio != (struct bfad_ioim_s *) cmnd) {
212 rc = FAILED;
213 goto out;
214 }
215
216 bfa_trc(bfad, hal_io->iotag);
Jing Huang88166242010-12-09 17:11:53 -0800217 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
218 "scsi%d: abort cmnd %p iotag %x\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700219 im_port->shost->host_no, cmnd, hal_io->iotag);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700220 (void) bfa_ioim_abort(hal_io);
Jing Huang7725ccf2009-09-23 17:46:15 -0700221 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
222
223 /* Need to wait until the command get aborted */
224 timeout = 10;
225 while ((struct bfa_ioim_s *) cmnd->host_scribble == hal_io) {
226 set_current_state(TASK_UNINTERRUPTIBLE);
227 schedule_timeout(timeout);
228 if (timeout < 4 * HZ)
229 timeout *= 2;
230 }
231
232 cmnd->scsi_done(cmnd);
233 bfa_trc(bfad, hal_io->iotag);
Jing Huang88166242010-12-09 17:11:53 -0800234 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700235 "scsi%d: complete abort 0x%p iotag 0x%x\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700236 im_port->shost->host_no, cmnd, hal_io->iotag);
237 return SUCCESS;
238out:
239 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
240 return rc;
241}
242
243static bfa_status_t
244bfad_im_target_reset_send(struct bfad_s *bfad, struct scsi_cmnd *cmnd,
245 struct bfad_itnim_s *itnim)
246{
247 struct bfa_tskim_s *tskim;
248 struct bfa_itnim_s *bfa_itnim;
249 bfa_status_t rc = BFA_STATUS_OK;
Maggie Zhangf3148782010-12-09 19:11:39 -0800250 struct scsi_lun scsilun;
Jing Huang7725ccf2009-09-23 17:46:15 -0700251
Jing Huang7725ccf2009-09-23 17:46:15 -0700252 tskim = bfa_tskim_alloc(&bfad->bfa, (struct bfad_tskim_s *) cmnd);
253 if (!tskim) {
Jing Huang88166242010-12-09 17:11:53 -0800254 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700255 "target reset, fail to allocate tskim\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700256 rc = BFA_STATUS_FAILED;
257 goto out;
258 }
259
260 /*
261 * Set host_scribble to NULL to avoid aborting a task command if
262 * happens.
263 */
264 cmnd->host_scribble = NULL;
265 cmnd->SCp.Status = 0;
266 bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim->fcs_itnim);
Maggie Zhangf3148782010-12-09 19:11:39 -0800267 memset(&scsilun, 0, sizeof(scsilun));
268 bfa_tskim_start(tskim, bfa_itnim, scsilun,
Jing Huang7725ccf2009-09-23 17:46:15 -0700269 FCP_TM_TARGET_RESET, BFAD_TARGET_RESET_TMO);
270out:
271 return rc;
272}
273
Jing Huang5fbe25c2010-10-18 17:17:23 -0700274/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700275 * Scsi_Host template entry, resets a LUN and abort its all commands.
276 *
277 * Returns: SUCCESS or FAILED.
278 *
279 */
280static int
281bfad_im_reset_lun_handler(struct scsi_cmnd *cmnd)
282{
283 struct Scsi_Host *shost = cmnd->device->host;
284 struct bfad_im_port_s *im_port =
285 (struct bfad_im_port_s *) shost->hostdata[0];
286 struct bfad_itnim_data_s *itnim_data = cmnd->device->hostdata;
287 struct bfad_s *bfad = im_port->bfad;
288 struct bfa_tskim_s *tskim;
289 struct bfad_itnim_s *itnim;
290 struct bfa_itnim_s *bfa_itnim;
Yong Zhang6d154db2010-08-10 18:01:22 -0700291 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700292 int rc = SUCCESS;
293 unsigned long flags;
294 enum bfi_tskim_status task_status;
Maggie Zhangf3148782010-12-09 19:11:39 -0800295 struct scsi_lun scsilun;
Jing Huang7725ccf2009-09-23 17:46:15 -0700296
297 spin_lock_irqsave(&bfad->bfad_lock, flags);
298 itnim = itnim_data->itnim;
299 if (!itnim) {
300 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
301 rc = FAILED;
302 goto out;
303 }
304
305 tskim = bfa_tskim_alloc(&bfad->bfa, (struct bfad_tskim_s *) cmnd);
306 if (!tskim) {
Jing Huang88166242010-12-09 17:11:53 -0800307 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Jing Huang7725ccf2009-09-23 17:46:15 -0700308 "LUN reset, fail to allocate tskim");
309 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
310 rc = FAILED;
311 goto out;
312 }
313
Jing Huang5fbe25c2010-10-18 17:17:23 -0700314 /*
Jing Huang7725ccf2009-09-23 17:46:15 -0700315 * Set host_scribble to NULL to avoid aborting a task command
316 * if happens.
317 */
318 cmnd->host_scribble = NULL;
319 cmnd->SCp.ptr = (char *)&wq;
320 cmnd->SCp.Status = 0;
321 bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim->fcs_itnim);
Maggie Zhangf3148782010-12-09 19:11:39 -0800322 int_to_scsilun(cmnd->device->lun, &scsilun);
323 bfa_tskim_start(tskim, bfa_itnim, scsilun,
Jing Huang7725ccf2009-09-23 17:46:15 -0700324 FCP_TM_LUN_RESET, BFAD_LUN_RESET_TMO);
325 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
326
327 wait_event(wq, test_bit(IO_DONE_BIT,
328 (unsigned long *)&cmnd->SCp.Status));
329
330 task_status = cmnd->SCp.Status >> 1;
331 if (task_status != BFI_TSKIM_STS_OK) {
Jing Huang88166242010-12-09 17:11:53 -0800332 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700333 "LUN reset failure, status: %d\n", task_status);
Jing Huang7725ccf2009-09-23 17:46:15 -0700334 rc = FAILED;
335 }
336
337out:
338 return rc;
339}
340
Jing Huang5fbe25c2010-10-18 17:17:23 -0700341/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700342 * Scsi_Host template entry, resets the bus and abort all commands.
343 */
344static int
345bfad_im_reset_bus_handler(struct scsi_cmnd *cmnd)
346{
347 struct Scsi_Host *shost = cmnd->device->host;
348 struct bfad_im_port_s *im_port =
349 (struct bfad_im_port_s *) shost->hostdata[0];
350 struct bfad_s *bfad = im_port->bfad;
351 struct bfad_itnim_s *itnim;
352 unsigned long flags;
353 u32 i, rc, err_cnt = 0;
Yong Zhang6d154db2010-08-10 18:01:22 -0700354 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700355 enum bfi_tskim_status task_status;
356
357 spin_lock_irqsave(&bfad->bfad_lock, flags);
358 for (i = 0; i < MAX_FCP_TARGET; i++) {
Maggie Zhangf16a1752010-12-09 19:12:32 -0800359 itnim = bfad_get_itnim(im_port, i);
Jing Huang7725ccf2009-09-23 17:46:15 -0700360 if (itnim) {
361 cmnd->SCp.ptr = (char *)&wq;
362 rc = bfad_im_target_reset_send(bfad, cmnd, itnim);
363 if (rc != BFA_STATUS_OK) {
364 err_cnt++;
365 continue;
366 }
367
368 /* wait target reset to complete */
369 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
370 wait_event(wq, test_bit(IO_DONE_BIT,
371 (unsigned long *)&cmnd->SCp.Status));
372 spin_lock_irqsave(&bfad->bfad_lock, flags);
373
374 task_status = cmnd->SCp.Status >> 1;
375 if (task_status != BFI_TSKIM_STS_OK) {
Jing Huang88166242010-12-09 17:11:53 -0800376 BFA_LOG(KERN_ERR, bfad, bfa_log_level,
Jing Huang7725ccf2009-09-23 17:46:15 -0700377 "target reset failure,"
378 " status: %d\n", task_status);
379 err_cnt++;
380 }
381 }
382 }
383 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
384
385 if (err_cnt)
386 return FAILED;
387
388 return SUCCESS;
389}
390
Jing Huang5fbe25c2010-10-18 17:17:23 -0700391/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700392 * Scsi_Host template entry slave_destroy.
393 */
394static void
395bfad_im_slave_destroy(struct scsi_device *sdev)
396{
397 sdev->hostdata = NULL;
398 return;
399}
400
Jing Huang5fbe25c2010-10-18 17:17:23 -0700401/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700402 * BFA FCS itnim callbacks
403 */
404
Jing Huang5fbe25c2010-10-18 17:17:23 -0700405/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700406 * BFA FCS itnim alloc callback, after successful PRLI
407 * Context: Interrupt
408 */
409void
410bfa_fcb_itnim_alloc(struct bfad_s *bfad, struct bfa_fcs_itnim_s **itnim,
411 struct bfad_itnim_s **itnim_drv)
412{
413 *itnim_drv = kzalloc(sizeof(struct bfad_itnim_s), GFP_ATOMIC);
414 if (*itnim_drv == NULL)
415 return;
416
417 (*itnim_drv)->im = bfad->im;
418 *itnim = &(*itnim_drv)->fcs_itnim;
419 (*itnim_drv)->state = ITNIM_STATE_NONE;
420
421 /*
422 * Initiaze the itnim_work
423 */
424 INIT_WORK(&(*itnim_drv)->itnim_work, bfad_im_itnim_work_handler);
425 bfad->bfad_flags |= BFAD_RPORT_ONLINE;
426}
427
Jing Huang5fbe25c2010-10-18 17:17:23 -0700428/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700429 * BFA FCS itnim free callback.
430 * Context: Interrupt. bfad_lock is held
431 */
432void
433bfa_fcb_itnim_free(struct bfad_s *bfad, struct bfad_itnim_s *itnim_drv)
434{
435 struct bfad_port_s *port;
436 wwn_t wwpn;
437 u32 fcid;
438 char wwpn_str[32], fcid_str[16];
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700439 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700440
441 /* online to free state transtion should not happen */
Jing Huangd4b671c2010-12-26 21:46:35 -0800442 WARN_ON(itnim_drv->state == ITNIM_STATE_ONLINE);
Jing Huang7725ccf2009-09-23 17:46:15 -0700443
444 itnim_drv->queue_work = 1;
445 /* offline request is not yet done, use the same request to free */
446 if (itnim_drv->state == ITNIM_STATE_OFFLINE_PENDING)
447 itnim_drv->queue_work = 0;
448
449 itnim_drv->state = ITNIM_STATE_FREE;
450 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
451 itnim_drv->im_port = port->im_port;
452 wwpn = bfa_fcs_itnim_get_pwwn(&itnim_drv->fcs_itnim);
453 fcid = bfa_fcs_itnim_get_fcid(&itnim_drv->fcs_itnim);
454 wwn2str(wwpn_str, wwpn);
455 fcid2str(fcid_str, fcid);
Jing Huang88166242010-12-09 17:11:53 -0800456 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700457 "ITNIM FREE scsi%d: FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700458 port->im_port->shost->host_no,
459 fcid_str, wwpn_str);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700460
461 /* ITNIM processing */
462 if (itnim_drv->queue_work)
463 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700464}
465
Jing Huang5fbe25c2010-10-18 17:17:23 -0700466/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700467 * BFA FCS itnim online callback.
468 * Context: Interrupt. bfad_lock is held
469 */
470void
471bfa_fcb_itnim_online(struct bfad_itnim_s *itnim_drv)
472{
473 struct bfad_port_s *port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700474 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700475
476 itnim_drv->bfa_itnim = bfa_fcs_itnim_get_halitn(&itnim_drv->fcs_itnim);
477 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
478 itnim_drv->state = ITNIM_STATE_ONLINE;
479 itnim_drv->queue_work = 1;
480 itnim_drv->im_port = port->im_port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700481
482 /* ITNIM processing */
483 if (itnim_drv->queue_work)
484 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700485}
486
Jing Huang5fbe25c2010-10-18 17:17:23 -0700487/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700488 * BFA FCS itnim offline callback.
489 * Context: Interrupt. bfad_lock is held
490 */
491void
492bfa_fcb_itnim_offline(struct bfad_itnim_s *itnim_drv)
493{
494 struct bfad_port_s *port;
495 struct bfad_s *bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700496 struct bfad_im_s *im = itnim_drv->im;
Jing Huang7725ccf2009-09-23 17:46:15 -0700497
498 port = bfa_fcs_itnim_get_drvport(&itnim_drv->fcs_itnim);
499 bfad = port->bfad;
500 if ((bfad->pport.flags & BFAD_PORT_DELETE) ||
501 (port->flags & BFAD_PORT_DELETE)) {
502 itnim_drv->state = ITNIM_STATE_OFFLINE;
503 return;
504 }
505 itnim_drv->im_port = port->im_port;
506 itnim_drv->state = ITNIM_STATE_OFFLINE_PENDING;
507 itnim_drv->queue_work = 1;
Jing Huang7725ccf2009-09-23 17:46:15 -0700508
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700509 /* ITNIM processing */
510 if (itnim_drv->queue_work)
511 queue_work(im->drv_workq, &itnim_drv->itnim_work);
Jing Huang7725ccf2009-09-23 17:46:15 -0700512}
513
Jing Huang5fbe25c2010-10-18 17:17:23 -0700514/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700515 * Allocate a Scsi_Host for a port.
516 */
517int
Jing Huangb5042932010-03-19 11:05:39 -0700518bfad_im_scsi_host_alloc(struct bfad_s *bfad, struct bfad_im_port_s *im_port,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700519 struct device *dev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700520{
521 int error = 1;
522
Jing Huang42b426e2010-03-19 11:07:09 -0700523 mutex_lock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700524 if (!idr_pre_get(&bfad_im_port_index, GFP_KERNEL)) {
Jing Huang42b426e2010-03-19 11:07:09 -0700525 mutex_unlock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700526 printk(KERN_WARNING "idr_pre_get failure\n");
527 goto out;
528 }
529
530 error = idr_get_new(&bfad_im_port_index, im_port,
531 &im_port->idr_id);
532 if (error) {
Jing Huang42b426e2010-03-19 11:07:09 -0700533 mutex_unlock(&bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -0700534 printk(KERN_WARNING "idr_get_new failure\n");
535 goto out;
536 }
537
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
Jing Huang7725ccf2009-09-23 17:46:15 -0700659bfa_status_t
660bfad_im_probe(struct bfad_s *bfad)
661{
662 struct bfad_im_s *im;
663 bfa_status_t rc = BFA_STATUS_OK;
664
665 im = kzalloc(sizeof(struct bfad_im_s), GFP_KERNEL);
666 if (im == NULL) {
667 rc = BFA_STATUS_ENOMEM;
668 goto ext;
669 }
670
671 bfad->im = im;
672 im->bfad = bfad;
673
Maggie Zhangf16a1752010-12-09 19:12:32 -0800674 if (bfad_thread_workq(bfad) != BFA_STATUS_OK) {
Jing Huang7725ccf2009-09-23 17:46:15 -0700675 kfree(im);
676 rc = BFA_STATUS_FAILED;
677 }
678
679ext:
680 return rc;
681}
682
683void
684bfad_im_probe_undo(struct bfad_s *bfad)
685{
686 if (bfad->im) {
Maggie Zhangf16a1752010-12-09 19:12:32 -0800687 bfad_destroy_workq(bfad->im);
Jing Huang7725ccf2009-09-23 17:46:15 -0700688 kfree(bfad->im);
689 bfad->im = NULL;
690 }
691}
692
Jing Huang7725ccf2009-09-23 17:46:15 -0700693struct Scsi_Host *
Maggie Zhangf16a1752010-12-09 19:12:32 -0800694bfad_scsi_host_alloc(struct bfad_im_port_s *im_port, struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700695{
696 struct scsi_host_template *sht;
697
698 if (im_port->port->pvb_type == BFAD_PORT_PHYS_BASE)
699 sht = &bfad_im_scsi_host_template;
700 else
701 sht = &bfad_im_vport_template;
702
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700703 if (max_xfer_size != BFAD_MAX_SECTORS >> 1)
704 sht->max_sectors = max_xfer_size << 1;
705
Jing Huang7725ccf2009-09-23 17:46:15 -0700706 sht->sg_tablesize = bfad->cfg_data.io_max_sge;
707
708 return scsi_host_alloc(sht, sizeof(unsigned long));
709}
710
711void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800712bfad_scsi_host_free(struct bfad_s *bfad, struct bfad_im_port_s *im_port)
Jing Huang7725ccf2009-09-23 17:46:15 -0700713{
Jing Huangb5042932010-03-19 11:05:39 -0700714 if (!(im_port->flags & BFAD_PORT_DELETE))
715 flush_workqueue(bfad->im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700716 bfad_im_scsi_host_free(im_port->bfad, im_port);
717 bfad_im_port_clean(im_port);
718 kfree(im_port);
719}
720
721void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800722bfad_destroy_workq(struct bfad_im_s *im)
Jing Huang7725ccf2009-09-23 17:46:15 -0700723{
724 if (im && im->drv_workq) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700725 flush_workqueue(im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700726 destroy_workqueue(im->drv_workq);
727 im->drv_workq = NULL;
728 }
729}
730
731bfa_status_t
Maggie Zhangf16a1752010-12-09 19:12:32 -0800732bfad_thread_workq(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700733{
734 struct bfad_im_s *im = bfad->im;
735
736 bfa_trc(bfad, 0);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700737 snprintf(im->drv_workq_name, KOBJ_NAME_LEN, "bfad_wq_%d",
Jing Huang7725ccf2009-09-23 17:46:15 -0700738 bfad->inst_no);
739 im->drv_workq = create_singlethread_workqueue(im->drv_workq_name);
740 if (!im->drv_workq)
741 return BFA_STATUS_FAILED;
742
743 return BFA_STATUS_OK;
744}
745
Jing Huang5fbe25c2010-10-18 17:17:23 -0700746/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700747 * Scsi_Host template entry.
748 *
749 * Description:
750 * OS entry point to adjust the queue_depths on a per-device basis.
751 * Called once per device during the bus scan.
752 * Return non-zero if fails.
753 */
754static int
755bfad_im_slave_configure(struct scsi_device *sdev)
756{
757 if (sdev->tagged_supported)
758 scsi_activate_tcq(sdev, bfa_lun_queue_depth);
759 else
760 scsi_deactivate_tcq(sdev, bfa_lun_queue_depth);
761
762 return 0;
763}
764
765struct scsi_host_template bfad_im_scsi_host_template = {
766 .module = THIS_MODULE,
767 .name = BFAD_DRIVER_NAME,
768 .info = bfad_im_info,
769 .queuecommand = bfad_im_queuecommand,
770 .eh_abort_handler = bfad_im_abort_handler,
771 .eh_device_reset_handler = bfad_im_reset_lun_handler,
772 .eh_bus_reset_handler = bfad_im_reset_bus_handler,
773
774 .slave_alloc = bfad_im_slave_alloc,
775 .slave_configure = bfad_im_slave_configure,
776 .slave_destroy = bfad_im_slave_destroy,
777
778 .this_id = -1,
779 .sg_tablesize = BFAD_IO_MAX_SGE,
780 .cmd_per_lun = 3,
781 .use_clustering = ENABLE_CLUSTERING,
782 .shost_attrs = bfad_im_host_attrs,
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700783 .max_sectors = BFAD_MAX_SECTORS,
Krishna Gudipatib85daaf2011-06-13 15:55:11 -0700784 .vendor_id = BFA_PCI_VENDOR_ID_BROCADE,
Jing Huang7725ccf2009-09-23 17:46:15 -0700785};
786
787struct scsi_host_template bfad_im_vport_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_vport_attrs,
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700805 .max_sectors = BFAD_MAX_SECTORS,
Jing Huang7725ccf2009-09-23 17:46:15 -0700806};
807
Jing Huang7725ccf2009-09-23 17:46:15 -0700808bfa_status_t
809bfad_im_module_init(void)
810{
811 bfad_im_scsi_transport_template =
812 fc_attach_transport(&bfad_im_fc_function_template);
813 if (!bfad_im_scsi_transport_template)
814 return BFA_STATUS_ENOMEM;
815
Jing Huangb5042932010-03-19 11:05:39 -0700816 bfad_im_scsi_vport_transport_template =
817 fc_attach_transport(&bfad_im_vport_fc_function_template);
818 if (!bfad_im_scsi_vport_transport_template) {
819 fc_release_transport(bfad_im_scsi_transport_template);
820 return BFA_STATUS_ENOMEM;
821 }
822
Jing Huang7725ccf2009-09-23 17:46:15 -0700823 return BFA_STATUS_OK;
824}
825
826void
827bfad_im_module_exit(void)
828{
829 if (bfad_im_scsi_transport_template)
830 fc_release_transport(bfad_im_scsi_transport_template);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700831
Jing Huangb5042932010-03-19 11:05:39 -0700832 if (bfad_im_scsi_vport_transport_template)
833 fc_release_transport(bfad_im_scsi_vport_transport_template);
Jing Huang7725ccf2009-09-23 17:46:15 -0700834}
835
836void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800837bfad_ramp_up_qdepth(struct bfad_itnim_s *itnim, struct scsi_device *sdev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700838{
839 struct scsi_device *tmp_sdev;
840
841 if (((jiffies - itnim->last_ramp_up_time) >
842 BFA_QUEUE_FULL_RAMP_UP_TIME * HZ) &&
843 ((jiffies - itnim->last_queue_full_time) >
844 BFA_QUEUE_FULL_RAMP_UP_TIME * HZ)) {
845 shost_for_each_device(tmp_sdev, sdev->host) {
846 if (bfa_lun_queue_depth > tmp_sdev->queue_depth) {
847 if (tmp_sdev->id != sdev->id)
848 continue;
849 if (tmp_sdev->ordered_tags)
850 scsi_adjust_queue_depth(tmp_sdev,
851 MSG_ORDERED_TAG,
852 tmp_sdev->queue_depth + 1);
853 else
854 scsi_adjust_queue_depth(tmp_sdev,
855 MSG_SIMPLE_TAG,
856 tmp_sdev->queue_depth + 1);
857
858 itnim->last_ramp_up_time = jiffies;
859 }
860 }
861 }
862}
863
864void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800865bfad_handle_qfull(struct bfad_itnim_s *itnim, struct scsi_device *sdev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700866{
867 struct scsi_device *tmp_sdev;
868
869 itnim->last_queue_full_time = jiffies;
870
871 shost_for_each_device(tmp_sdev, sdev->host) {
872 if (tmp_sdev->id != sdev->id)
873 continue;
874 scsi_track_queue_full(tmp_sdev, tmp_sdev->queue_depth - 1);
875 }
876}
877
Jing Huang7725ccf2009-09-23 17:46:15 -0700878struct bfad_itnim_s *
Maggie Zhangf16a1752010-12-09 19:12:32 -0800879bfad_get_itnim(struct bfad_im_port_s *im_port, int id)
Jing Huang7725ccf2009-09-23 17:46:15 -0700880{
881 struct bfad_itnim_s *itnim = NULL;
882
883 /* Search the mapped list for this target ID */
884 list_for_each_entry(itnim, &im_port->itnim_mapped_list, list_entry) {
885 if (id == itnim->scsi_tgt_id)
886 return itnim;
887 }
888
889 return NULL;
890}
891
Jing Huang5fbe25c2010-10-18 17:17:23 -0700892/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700893 * Scsi_Host template entry slave_alloc
894 */
895static int
896bfad_im_slave_alloc(struct scsi_device *sdev)
897{
898 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
899
900 if (!rport || fc_remote_port_chkready(rport))
901 return -ENXIO;
902
903 sdev->hostdata = rport->dd_data;
904
905 return 0;
906}
907
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700908static u32
909bfad_im_supported_speeds(struct bfa_s *bfa)
910{
Jing Huange0a08a32010-10-18 17:14:01 -0700911 struct bfa_ioc_attr_s *ioc_attr;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700912 u32 supported_speed = 0;
913
Jing Huange0a08a32010-10-18 17:14:01 -0700914 ioc_attr = kzalloc(sizeof(struct bfa_ioc_attr_s), GFP_KERNEL);
915 if (!ioc_attr)
916 return 0;
917
Maggie Zhangf7f738122010-12-09 19:08:43 -0800918 bfa_ioc_get_attr(&bfa->ioc, ioc_attr);
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700919 if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_16GBPS)
920 supported_speed |= FC_PORTSPEED_16GBIT | FC_PORTSPEED_8GBIT |
921 FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT;
922 else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_8GBPS) {
Jing Huange0a08a32010-10-18 17:14:01 -0700923 if (ioc_attr->adapter_attr.is_mezz) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700924 supported_speed |= FC_PORTSPEED_8GBIT |
925 FC_PORTSPEED_4GBIT |
926 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
927 } else {
928 supported_speed |= FC_PORTSPEED_8GBIT |
929 FC_PORTSPEED_4GBIT |
930 FC_PORTSPEED_2GBIT;
931 }
Jing Huange0a08a32010-10-18 17:14:01 -0700932 } else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_4GBPS) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700933 supported_speed |= FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
934 FC_PORTSPEED_1GBIT;
Jing Huange0a08a32010-10-18 17:14:01 -0700935 } else if (ioc_attr->adapter_attr.max_speed == BFA_PORT_SPEED_10GBPS) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700936 supported_speed |= FC_PORTSPEED_10GBIT;
937 }
Jing Huange0a08a32010-10-18 17:14:01 -0700938 kfree(ioc_attr);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700939 return supported_speed;
940}
941
Jing Huang7725ccf2009-09-23 17:46:15 -0700942void
Maggie Zhangf16a1752010-12-09 19:12:32 -0800943bfad_fc_host_init(struct bfad_im_port_s *im_port)
Jing Huang7725ccf2009-09-23 17:46:15 -0700944{
945 struct Scsi_Host *host = im_port->shost;
946 struct bfad_s *bfad = im_port->bfad;
947 struct bfad_port_s *port = im_port->port;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700948 char symname[BFA_SYMNAME_MAXLEN];
Jing Huange0a08a32010-10-18 17:14:01 -0700949 struct bfa_fcport_s *fcport = BFA_FCPORT_MOD(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -0700950
951 fc_host_node_name(host) =
Jing Huangba816ea2010-10-18 17:10:50 -0700952 cpu_to_be64((bfa_fcs_lport_get_nwwn(port->fcs_port)));
Jing Huang7725ccf2009-09-23 17:46:15 -0700953 fc_host_port_name(host) =
Jing Huangba816ea2010-10-18 17:10:50 -0700954 cpu_to_be64((bfa_fcs_lport_get_pwwn(port->fcs_port)));
Jing Huangb5042932010-03-19 11:05:39 -0700955 fc_host_max_npiv_vports(host) = bfa_lps_get_max_vport(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -0700956
957 fc_host_supported_classes(host) = FC_COS_CLASS3;
958
959 memset(fc_host_supported_fc4s(host), 0,
960 sizeof(fc_host_supported_fc4s(host)));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700961 if (supported_fc4s & BFA_LPORT_ROLE_FCP_IM)
Jing Huang7725ccf2009-09-23 17:46:15 -0700962 /* For FCP type 0x08 */
963 fc_host_supported_fc4s(host)[2] = 1;
Jing Huang7725ccf2009-09-23 17:46:15 -0700964 /* For fibre channel services type 0x20 */
965 fc_host_supported_fc4s(host)[7] = 1;
966
Jing Huange0a08a32010-10-18 17:14:01 -0700967 strncpy(symname, bfad->bfa_fcs.fabric.bport.port_cfg.sym_name.symname,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700968 BFA_SYMNAME_MAXLEN);
969 sprintf(fc_host_symbolic_name(host), "%s", symname);
Jing Huang7725ccf2009-09-23 17:46:15 -0700970
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700971 fc_host_supported_speeds(host) = bfad_im_supported_speeds(&bfad->bfa);
Jing Huang5fbe25c2010-10-18 17:17:23 -0700972 fc_host_maxframe_size(host) = fcport->cfg.maxfrsize;
Jing Huang7725ccf2009-09-23 17:46:15 -0700973}
974
975static void
976bfad_im_fc_rport_add(struct bfad_im_port_s *im_port, struct bfad_itnim_s *itnim)
977{
978 struct fc_rport_identifiers rport_ids;
979 struct fc_rport *fc_rport;
980 struct bfad_itnim_data_s *itnim_data;
981
982 rport_ids.node_name =
Jing Huangba816ea2010-10-18 17:10:50 -0700983 cpu_to_be64(bfa_fcs_itnim_get_nwwn(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -0700984 rport_ids.port_name =
Jing Huangba816ea2010-10-18 17:10:50 -0700985 cpu_to_be64(bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -0700986 rport_ids.port_id =
Maggie Zhangf16a1752010-12-09 19:12:32 -0800987 bfa_hton3b(bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim));
Jing Huang7725ccf2009-09-23 17:46:15 -0700988 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
989
990 itnim->fc_rport = fc_rport =
991 fc_remote_port_add(im_port->shost, 0, &rport_ids);
992
993 if (!fc_rport)
994 return;
995
996 fc_rport->maxframe_size =
997 bfa_fcs_itnim_get_maxfrsize(&itnim->fcs_itnim);
998 fc_rport->supported_classes = bfa_fcs_itnim_get_cos(&itnim->fcs_itnim);
999
1000 itnim_data = fc_rport->dd_data;
1001 itnim_data->itnim = itnim;
1002
1003 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
1004
1005 if (rport_ids.roles != FC_RPORT_ROLE_UNKNOWN)
1006 fc_remote_port_rolechg(fc_rport, rport_ids.roles);
1007
1008 if ((fc_rport->scsi_target_id != -1)
1009 && (fc_rport->scsi_target_id < MAX_FCP_TARGET))
1010 itnim->scsi_tgt_id = fc_rport->scsi_target_id;
1011
1012 return;
1013}
1014
Jing Huang5fbe25c2010-10-18 17:17:23 -07001015/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001016 * Work queue handler using FC transport service
1017* Context: kernel
1018 */
1019static void
1020bfad_im_itnim_work_handler(struct work_struct *work)
1021{
1022 struct bfad_itnim_s *itnim = container_of(work, struct bfad_itnim_s,
1023 itnim_work);
1024 struct bfad_im_s *im = itnim->im;
1025 struct bfad_s *bfad = im->bfad;
1026 struct bfad_im_port_s *im_port;
1027 unsigned long flags;
1028 struct fc_rport *fc_rport;
1029 wwn_t wwpn;
1030 u32 fcid;
1031 char wwpn_str[32], fcid_str[16];
1032
1033 spin_lock_irqsave(&bfad->bfad_lock, flags);
1034 im_port = itnim->im_port;
1035 bfa_trc(bfad, itnim->state);
1036 switch (itnim->state) {
1037 case ITNIM_STATE_ONLINE:
1038 if (!itnim->fc_rport) {
1039 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1040 bfad_im_fc_rport_add(im_port, itnim);
1041 spin_lock_irqsave(&bfad->bfad_lock, flags);
1042 wwpn = bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim);
1043 fcid = bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim);
1044 wwn2str(wwpn_str, wwpn);
1045 fcid2str(fcid_str, fcid);
1046 list_add_tail(&itnim->list_entry,
1047 &im_port->itnim_mapped_list);
Jing Huang88166242010-12-09 17:11:53 -08001048 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001049 "ITNIM ONLINE Target: %d:0:%d "
1050 "FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -07001051 im_port->shost->host_no,
1052 itnim->scsi_tgt_id,
1053 fcid_str, wwpn_str);
1054 } else {
1055 printk(KERN_WARNING
1056 "%s: itnim %llx is already in online state\n",
Jing Huangf8ceafd2009-09-25 12:29:54 -07001057 __func__,
Jing Huang7725ccf2009-09-23 17:46:15 -07001058 bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim));
1059 }
1060
1061 break;
1062 case ITNIM_STATE_OFFLINE_PENDING:
1063 itnim->state = ITNIM_STATE_OFFLINE;
1064 if (itnim->fc_rport) {
1065 fc_rport = itnim->fc_rport;
1066 ((struct bfad_itnim_data_s *)
1067 fc_rport->dd_data)->itnim = NULL;
1068 itnim->fc_rport = NULL;
1069 if (!(im_port->port->flags & BFAD_PORT_DELETE)) {
1070 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1071 fc_rport->dev_loss_tmo =
1072 bfa_fcpim_path_tov_get(&bfad->bfa) + 1;
1073 fc_remote_port_delete(fc_rport);
1074 spin_lock_irqsave(&bfad->bfad_lock, flags);
1075 }
1076 wwpn = bfa_fcs_itnim_get_pwwn(&itnim->fcs_itnim);
1077 fcid = bfa_fcs_itnim_get_fcid(&itnim->fcs_itnim);
1078 wwn2str(wwpn_str, wwpn);
1079 fcid2str(fcid_str, fcid);
1080 list_del(&itnim->list_entry);
Jing Huang88166242010-12-09 17:11:53 -08001081 BFA_LOG(KERN_INFO, bfad, bfa_log_level,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001082 "ITNIM OFFLINE Target: %d:0:%d "
1083 "FCID: %s WWPN: %s\n",
Jing Huang7725ccf2009-09-23 17:46:15 -07001084 im_port->shost->host_no,
1085 itnim->scsi_tgt_id,
1086 fcid_str, wwpn_str);
1087 }
1088 break;
1089 case ITNIM_STATE_FREE:
1090 if (itnim->fc_rport) {
1091 fc_rport = itnim->fc_rport;
1092 ((struct bfad_itnim_data_s *)
1093 fc_rport->dd_data)->itnim = NULL;
1094 itnim->fc_rport = NULL;
1095 if (!(im_port->port->flags & BFAD_PORT_DELETE)) {
1096 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1097 fc_rport->dev_loss_tmo =
1098 bfa_fcpim_path_tov_get(&bfad->bfa) + 1;
1099 fc_remote_port_delete(fc_rport);
1100 spin_lock_irqsave(&bfad->bfad_lock, flags);
1101 }
1102 list_del(&itnim->list_entry);
1103 }
1104
1105 kfree(itnim);
1106 break;
1107 default:
Jing Huangd4b671c2010-12-26 21:46:35 -08001108 WARN_ON(1);
Jing Huang7725ccf2009-09-23 17:46:15 -07001109 break;
1110 }
1111
1112 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1113}
1114
Jing Huang5fbe25c2010-10-18 17:17:23 -07001115/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001116 * Scsi_Host template entry, queue a SCSI command to the BFAD.
1117 */
1118static int
Jeff Garzikf2812332010-11-16 02:10:29 -05001119bfad_im_queuecommand_lck(struct scsi_cmnd *cmnd, void (*done) (struct scsi_cmnd *))
Jing Huang7725ccf2009-09-23 17:46:15 -07001120{
1121 struct bfad_im_port_s *im_port =
1122 (struct bfad_im_port_s *) cmnd->device->host->hostdata[0];
1123 struct bfad_s *bfad = im_port->bfad;
1124 struct bfad_itnim_data_s *itnim_data = cmnd->device->hostdata;
1125 struct bfad_itnim_s *itnim;
1126 struct bfa_ioim_s *hal_io;
1127 unsigned long flags;
1128 int rc;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001129 int sg_cnt = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001130 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
1131
1132 rc = fc_remote_port_chkready(rport);
1133 if (rc) {
1134 cmnd->result = rc;
1135 done(cmnd);
1136 return 0;
1137 }
1138
1139 sg_cnt = scsi_dma_map(cmnd);
Jing Huang7725ccf2009-09-23 17:46:15 -07001140 if (sg_cnt < 0)
1141 return SCSI_MLQUEUE_HOST_BUSY;
1142
1143 cmnd->scsi_done = done;
1144
1145 spin_lock_irqsave(&bfad->bfad_lock, flags);
1146 if (!(bfad->bfad_flags & BFAD_HAL_START_DONE)) {
1147 printk(KERN_WARNING
1148 "bfad%d, queuecommand %p %x failed, BFA stopped\n",
1149 bfad->inst_no, cmnd, cmnd->cmnd[0]);
1150 cmnd->result = ScsiResult(DID_NO_CONNECT, 0);
1151 goto out_fail_cmd;
1152 }
1153
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001154
Jing Huang7725ccf2009-09-23 17:46:15 -07001155 itnim = itnim_data->itnim;
1156 if (!itnim) {
1157 cmnd->result = ScsiResult(DID_IMM_RETRY, 0);
1158 goto out_fail_cmd;
1159 }
1160
1161 hal_io = bfa_ioim_alloc(&bfad->bfa, (struct bfad_ioim_s *) cmnd,
1162 itnim->bfa_itnim, sg_cnt);
1163 if (!hal_io) {
1164 printk(KERN_WARNING "hal_io failure\n");
1165 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1166 scsi_dma_unmap(cmnd);
1167 return SCSI_MLQUEUE_HOST_BUSY;
1168 }
1169
1170 cmnd->host_scribble = (char *)hal_io;
Jing Huang7725ccf2009-09-23 17:46:15 -07001171 bfa_ioim_start(hal_io);
1172 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1173
1174 return 0;
1175
1176out_fail_cmd:
1177 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1178 scsi_dma_unmap(cmnd);
1179 if (done)
1180 done(cmnd);
1181
1182 return 0;
1183}
1184
Jeff Garzikf2812332010-11-16 02:10:29 -05001185static DEF_SCSI_QCMD(bfad_im_queuecommand)
1186
Jing Huang7725ccf2009-09-23 17:46:15 -07001187void
Maggie Zhangf16a1752010-12-09 19:12:32 -08001188bfad_rport_online_wait(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -07001189{
1190 int i;
1191 int rport_delay = 10;
1192
1193 for (i = 0; !(bfad->bfad_flags & BFAD_PORT_ONLINE)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001194 && i < bfa_linkup_delay; i++) {
1195 set_current_state(TASK_UNINTERRUPTIBLE);
1196 schedule_timeout(HZ);
1197 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001198
1199 if (bfad->bfad_flags & BFAD_PORT_ONLINE) {
1200 rport_delay = rport_delay < bfa_linkup_delay ?
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001201 rport_delay : bfa_linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001202 for (i = 0; !(bfad->bfad_flags & BFAD_RPORT_ONLINE)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001203 && i < rport_delay; i++) {
1204 set_current_state(TASK_UNINTERRUPTIBLE);
1205 schedule_timeout(HZ);
1206 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001207
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001208 if (rport_delay > 0 && (bfad->bfad_flags & BFAD_RPORT_ONLINE)) {
1209 set_current_state(TASK_UNINTERRUPTIBLE);
1210 schedule_timeout(rport_delay * HZ);
1211 }
Jing Huang7725ccf2009-09-23 17:46:15 -07001212 }
1213}
1214
1215int
Maggie Zhangf16a1752010-12-09 19:12:32 -08001216bfad_get_linkup_delay(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -07001217{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001218 u8 nwwns = 0;
1219 wwn_t wwns[BFA_PREBOOT_BOOTLUN_MAX];
1220 int linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001221
1222 /*
1223 * Querying for the boot target port wwns
1224 * -- read from boot information in flash.
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001225 * If nwwns > 0 => boot over SAN and set linkup_delay = 30
1226 * else => local boot machine set linkup_delay = 0
Jing Huang7725ccf2009-09-23 17:46:15 -07001227 */
1228
Jing Huang15b64a82010-07-08 19:48:12 -07001229 bfa_iocfc_get_bootwwns(&bfad->bfa, &nwwns, wwns);
Jing Huang7725ccf2009-09-23 17:46:15 -07001230
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001231 if (nwwns > 0)
1232 /* If Boot over SAN set linkup_delay = 30sec */
1233 linkup_delay = 30;
1234 else
1235 /* If local boot; no linkup_delay */
1236 linkup_delay = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001237
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001238 return linkup_delay;
Jing Huang7725ccf2009-09-23 17:46:15 -07001239}