blob: d6089c985c3f4a7045ab33076e7d37a4a4f81571 [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smartd8e93df2009-05-22 14:53:05 -04004 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
dea31012005-04-17 16:05:31 -050021#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050023#include <linux/interrupt.h>
James Smarta90f5682006-08-17 11:58:04 -040024#include <linux/delay.h>
James Smarte2a0a9d2008-12-04 22:40:02 -050025#include <asm/unaligned.h>
dea31012005-04-17 16:05:31 -050026
27#include <scsi/scsi.h>
28#include <scsi/scsi_device.h>
James Smarte2a0a9d2008-12-04 22:40:02 -050029#include <scsi/scsi_eh.h>
dea31012005-04-17 16:05:31 -050030#include <scsi/scsi_host.h>
31#include <scsi/scsi_tcq.h>
32#include <scsi/scsi_transport_fc.h>
33
34#include "lpfc_version.h"
James Smartda0436e2009-05-22 14:51:39 -040035#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050036#include "lpfc_hw.h"
37#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040038#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040039#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050040#include "lpfc_disc.h"
41#include "lpfc_scsi.h"
42#include "lpfc.h"
43#include "lpfc_logmsg.h"
44#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050045#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050046
47#define LPFC_RESET_WAIT 2
48#define LPFC_ABORT_WAIT 2
49
James Smarte2a0a9d2008-12-04 22:40:02 -050050int _dump_buf_done;
51
52static char *dif_op_str[] = {
53 "SCSI_PROT_NORMAL",
54 "SCSI_PROT_READ_INSERT",
55 "SCSI_PROT_WRITE_STRIP",
56 "SCSI_PROT_READ_STRIP",
57 "SCSI_PROT_WRITE_INSERT",
58 "SCSI_PROT_READ_PASS",
59 "SCSI_PROT_WRITE_PASS",
James Smarte2a0a9d2008-12-04 22:40:02 -050060};
James Smartda0436e2009-05-22 14:51:39 -040061static void
62lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb);
James Smart1c6f4ef52009-11-18 15:40:49 -050063static void
64lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb);
James Smarte2a0a9d2008-12-04 22:40:02 -050065
66static void
James Smart6a9c52c2009-10-02 15:16:51 -040067lpfc_debug_save_data(struct lpfc_hba *phba, struct scsi_cmnd *cmnd)
James Smarte2a0a9d2008-12-04 22:40:02 -050068{
69 void *src, *dst;
70 struct scatterlist *sgde = scsi_sglist(cmnd);
71
72 if (!_dump_buf_data) {
James Smart6a9c52c2009-10-02 15:16:51 -040073 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
74 "9050 BLKGRD: ERROR %s _dump_buf_data is NULL\n",
James Smarte2a0a9d2008-12-04 22:40:02 -050075 __func__);
76 return;
77 }
78
79
80 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -040081 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
82 "9051 BLKGRD: ERROR: data scatterlist is null\n");
James Smarte2a0a9d2008-12-04 22:40:02 -050083 return;
84 }
85
86 dst = (void *) _dump_buf_data;
87 while (sgde) {
88 src = sg_virt(sgde);
89 memcpy(dst, src, sgde->length);
90 dst += sgde->length;
91 sgde = sg_next(sgde);
92 }
93}
94
95static void
James Smart6a9c52c2009-10-02 15:16:51 -040096lpfc_debug_save_dif(struct lpfc_hba *phba, struct scsi_cmnd *cmnd)
James Smarte2a0a9d2008-12-04 22:40:02 -050097{
98 void *src, *dst;
99 struct scatterlist *sgde = scsi_prot_sglist(cmnd);
100
101 if (!_dump_buf_dif) {
James Smart6a9c52c2009-10-02 15:16:51 -0400102 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
103 "9052 BLKGRD: ERROR %s _dump_buf_data is NULL\n",
James Smarte2a0a9d2008-12-04 22:40:02 -0500104 __func__);
105 return;
106 }
107
108 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -0400109 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
110 "9053 BLKGRD: ERROR: prot scatterlist is null\n");
James Smarte2a0a9d2008-12-04 22:40:02 -0500111 return;
112 }
113
114 dst = _dump_buf_dif;
115 while (sgde) {
116 src = sg_virt(sgde);
117 memcpy(dst, src, sgde->length);
118 dst += sgde->length;
119 sgde = sg_next(sgde);
120 }
121}
122
James Smartea2151b2008-09-07 11:52:10 -0400123/**
James Smartf1126682009-06-10 17:22:44 -0400124 * lpfc_sli4_set_rsp_sgl_last - Set the last bit in the response sge.
125 * @phba: Pointer to HBA object.
126 * @lpfc_cmd: lpfc scsi command object pointer.
127 *
128 * This function is called from the lpfc_prep_task_mgmt_cmd function to
129 * set the last bit in the response sge entry.
130 **/
131static void
132lpfc_sli4_set_rsp_sgl_last(struct lpfc_hba *phba,
133 struct lpfc_scsi_buf *lpfc_cmd)
134{
135 struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
136 if (sgl) {
137 sgl += 1;
138 sgl->word2 = le32_to_cpu(sgl->word2);
139 bf_set(lpfc_sli4_sge_last, sgl, 1);
140 sgl->word2 = cpu_to_le32(sgl->word2);
141 }
142}
143
144/**
James Smart3621a712009-04-06 18:47:14 -0400145 * lpfc_update_stats - Update statistical data for the command completion
James Smartea2151b2008-09-07 11:52:10 -0400146 * @phba: Pointer to HBA object.
147 * @lpfc_cmd: lpfc scsi command object pointer.
148 *
149 * This function is called when there is a command completion and this
150 * function updates the statistical data for the command completion.
151 **/
152static void
153lpfc_update_stats(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
154{
155 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
156 struct lpfc_nodelist *pnode = rdata->pnode;
157 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
158 unsigned long flags;
159 struct Scsi_Host *shost = cmd->device->host;
160 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
161 unsigned long latency;
162 int i;
163
164 if (cmd->result)
165 return;
166
James Smart9f1e1b52008-12-04 22:39:40 -0500167 latency = jiffies_to_msecs((long)jiffies - (long)lpfc_cmd->start_time);
168
James Smartea2151b2008-09-07 11:52:10 -0400169 spin_lock_irqsave(shost->host_lock, flags);
170 if (!vport->stat_data_enabled ||
171 vport->stat_data_blocked ||
172 !pnode->lat_data ||
173 (phba->bucket_type == LPFC_NO_BUCKET)) {
174 spin_unlock_irqrestore(shost->host_lock, flags);
175 return;
176 }
James Smartea2151b2008-09-07 11:52:10 -0400177
178 if (phba->bucket_type == LPFC_LINEAR_BUCKET) {
179 i = (latency + phba->bucket_step - 1 - phba->bucket_base)/
180 phba->bucket_step;
James Smart9f1e1b52008-12-04 22:39:40 -0500181 /* check array subscript bounds */
182 if (i < 0)
183 i = 0;
184 else if (i >= LPFC_MAX_BUCKET_COUNT)
185 i = LPFC_MAX_BUCKET_COUNT - 1;
James Smartea2151b2008-09-07 11:52:10 -0400186 } else {
187 for (i = 0; i < LPFC_MAX_BUCKET_COUNT-1; i++)
188 if (latency <= (phba->bucket_base +
189 ((1<<i)*phba->bucket_step)))
190 break;
191 }
192
193 pnode->lat_data[i].cmd_count++;
194 spin_unlock_irqrestore(shost->host_lock, flags);
195}
196
James Smartea2151b2008-09-07 11:52:10 -0400197/**
James Smart3621a712009-04-06 18:47:14 -0400198 * lpfc_send_sdev_queuedepth_change_event - Posts a queuedepth change event
James Smartea2151b2008-09-07 11:52:10 -0400199 * @phba: Pointer to HBA context object.
200 * @vport: Pointer to vport object.
201 * @ndlp: Pointer to FC node associated with the target.
202 * @lun: Lun number of the scsi device.
203 * @old_val: Old value of the queue depth.
204 * @new_val: New value of the queue depth.
205 *
206 * This function sends an event to the mgmt application indicating
207 * there is a change in the scsi device queue depth.
208 **/
209static void
210lpfc_send_sdev_queuedepth_change_event(struct lpfc_hba *phba,
211 struct lpfc_vport *vport,
212 struct lpfc_nodelist *ndlp,
213 uint32_t lun,
214 uint32_t old_val,
215 uint32_t new_val)
216{
217 struct lpfc_fast_path_event *fast_path_evt;
218 unsigned long flags;
219
220 fast_path_evt = lpfc_alloc_fast_evt(phba);
221 if (!fast_path_evt)
222 return;
223
224 fast_path_evt->un.queue_depth_evt.scsi_event.event_type =
225 FC_REG_SCSI_EVENT;
226 fast_path_evt->un.queue_depth_evt.scsi_event.subcategory =
227 LPFC_EVENT_VARQUEDEPTH;
228
229 /* Report all luns with change in queue depth */
230 fast_path_evt->un.queue_depth_evt.scsi_event.lun = lun;
231 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
232 memcpy(&fast_path_evt->un.queue_depth_evt.scsi_event.wwpn,
233 &ndlp->nlp_portname, sizeof(struct lpfc_name));
234 memcpy(&fast_path_evt->un.queue_depth_evt.scsi_event.wwnn,
235 &ndlp->nlp_nodename, sizeof(struct lpfc_name));
236 }
237
238 fast_path_evt->un.queue_depth_evt.oldval = old_val;
239 fast_path_evt->un.queue_depth_evt.newval = new_val;
240 fast_path_evt->vport = vport;
241
242 fast_path_evt->work_evt.evt = LPFC_EVT_FASTPATH_MGMT_EVT;
243 spin_lock_irqsave(&phba->hbalock, flags);
244 list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
245 spin_unlock_irqrestore(&phba->hbalock, flags);
246 lpfc_worker_wake_up(phba);
247
248 return;
249}
250
James Smart9bad7672008-12-04 22:39:02 -0500251/**
James Smart5ffc2662009-11-18 15:39:44 -0500252 * lpfc_change_queue_depth - Alter scsi device queue depth
253 * @sdev: Pointer the scsi device on which to change the queue depth.
254 * @qdepth: New queue depth to set the sdev to.
255 * @reason: The reason for the queue depth change.
256 *
257 * This function is called by the midlayer and the LLD to alter the queue
258 * depth for a scsi device. This function sets the queue depth to the new
259 * value and sends an event out to log the queue depth change.
260 **/
261int
262lpfc_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
263{
264 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
265 struct lpfc_hba *phba = vport->phba;
266 struct lpfc_rport_data *rdata;
267 unsigned long new_queue_depth, old_queue_depth;
268
269 old_queue_depth = sdev->queue_depth;
270 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
271 new_queue_depth = sdev->queue_depth;
272 rdata = sdev->hostdata;
273 if (rdata)
274 lpfc_send_sdev_queuedepth_change_event(phba, vport,
275 rdata->pnode, sdev->lun,
276 old_queue_depth,
277 new_queue_depth);
278 return sdev->queue_depth;
279}
280
281/**
James Smart3621a712009-04-06 18:47:14 -0400282 * lpfc_rampdown_queue_depth - Post RAMP_DOWN_QUEUE event to worker thread
James Smart9bad7672008-12-04 22:39:02 -0500283 * @phba: The Hba for which this call is being executed.
284 *
285 * This routine is called when there is resource error in driver or firmware.
286 * This routine posts WORKER_RAMP_DOWN_QUEUE event for @phba. This routine
287 * posts at most 1 event each second. This routine wakes up worker thread of
288 * @phba to process WORKER_RAM_DOWN_EVENT event.
289 *
290 * This routine should be called with no lock held.
291 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500292void
James Smarteaf15d52008-12-04 22:39:29 -0500293lpfc_rampdown_queue_depth(struct lpfc_hba *phba)
James Smart92d7f7b2007-06-17 19:56:38 -0500294{
295 unsigned long flags;
James Smart5e9d9b82008-06-14 22:52:53 -0400296 uint32_t evt_posted;
James Smart92d7f7b2007-06-17 19:56:38 -0500297
298 spin_lock_irqsave(&phba->hbalock, flags);
299 atomic_inc(&phba->num_rsrc_err);
300 phba->last_rsrc_error_time = jiffies;
301
302 if ((phba->last_ramp_down_time + QUEUE_RAMP_DOWN_INTERVAL) > jiffies) {
303 spin_unlock_irqrestore(&phba->hbalock, flags);
304 return;
305 }
306
307 phba->last_ramp_down_time = jiffies;
308
309 spin_unlock_irqrestore(&phba->hbalock, flags);
310
311 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart5e9d9b82008-06-14 22:52:53 -0400312 evt_posted = phba->pport->work_port_events & WORKER_RAMP_DOWN_QUEUE;
313 if (!evt_posted)
James Smart92d7f7b2007-06-17 19:56:38 -0500314 phba->pport->work_port_events |= WORKER_RAMP_DOWN_QUEUE;
James Smart92d7f7b2007-06-17 19:56:38 -0500315 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
316
James Smart5e9d9b82008-06-14 22:52:53 -0400317 if (!evt_posted)
318 lpfc_worker_wake_up(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500319 return;
320}
321
James Smart9bad7672008-12-04 22:39:02 -0500322/**
James Smart3621a712009-04-06 18:47:14 -0400323 * lpfc_rampup_queue_depth - Post RAMP_UP_QUEUE event for worker thread
James Smart9bad7672008-12-04 22:39:02 -0500324 * @phba: The Hba for which this call is being executed.
325 *
326 * This routine post WORKER_RAMP_UP_QUEUE event for @phba vport. This routine
327 * post at most 1 event every 5 minute after last_ramp_up_time or
328 * last_rsrc_error_time. This routine wakes up worker thread of @phba
329 * to process WORKER_RAM_DOWN_EVENT event.
330 *
331 * This routine should be called with no lock held.
332 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500333static inline void
James Smart3de2a652007-08-02 11:09:59 -0400334lpfc_rampup_queue_depth(struct lpfc_vport *vport,
James Smarta257bf92009-04-06 18:48:10 -0400335 uint32_t queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -0500336{
337 unsigned long flags;
James Smart3de2a652007-08-02 11:09:59 -0400338 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -0400339 uint32_t evt_posted;
James Smart92d7f7b2007-06-17 19:56:38 -0500340 atomic_inc(&phba->num_cmd_success);
341
James Smarta257bf92009-04-06 18:48:10 -0400342 if (vport->cfg_lun_queue_depth <= queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -0500343 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500344 spin_lock_irqsave(&phba->hbalock, flags);
James Smart5ffc2662009-11-18 15:39:44 -0500345 if (time_before(jiffies,
346 phba->last_ramp_up_time + QUEUE_RAMP_UP_INTERVAL) ||
347 time_before(jiffies,
348 phba->last_rsrc_error_time + QUEUE_RAMP_UP_INTERVAL)) {
James Smart92d7f7b2007-06-17 19:56:38 -0500349 spin_unlock_irqrestore(&phba->hbalock, flags);
350 return;
351 }
James Smart92d7f7b2007-06-17 19:56:38 -0500352 phba->last_ramp_up_time = jiffies;
353 spin_unlock_irqrestore(&phba->hbalock, flags);
354
355 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart5e9d9b82008-06-14 22:52:53 -0400356 evt_posted = phba->pport->work_port_events & WORKER_RAMP_UP_QUEUE;
357 if (!evt_posted)
James Smart92d7f7b2007-06-17 19:56:38 -0500358 phba->pport->work_port_events |= WORKER_RAMP_UP_QUEUE;
James Smart92d7f7b2007-06-17 19:56:38 -0500359 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
360
James Smart5e9d9b82008-06-14 22:52:53 -0400361 if (!evt_posted)
362 lpfc_worker_wake_up(phba);
363 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500364}
365
James Smart9bad7672008-12-04 22:39:02 -0500366/**
James Smart3621a712009-04-06 18:47:14 -0400367 * lpfc_ramp_down_queue_handler - WORKER_RAMP_DOWN_QUEUE event handler
James Smart9bad7672008-12-04 22:39:02 -0500368 * @phba: The Hba for which this call is being executed.
369 *
370 * This routine is called to process WORKER_RAMP_DOWN_QUEUE event for worker
371 * thread.This routine reduces queue depth for all scsi device on each vport
372 * associated with @phba.
373 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500374void
375lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
376{
James Smart549e55c2007-08-02 11:09:51 -0400377 struct lpfc_vport **vports;
378 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500379 struct scsi_device *sdev;
James Smart5ffc2662009-11-18 15:39:44 -0500380 unsigned long new_queue_depth;
James Smart92d7f7b2007-06-17 19:56:38 -0500381 unsigned long num_rsrc_err, num_cmd_success;
James Smart549e55c2007-08-02 11:09:51 -0400382 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500383
384 num_rsrc_err = atomic_read(&phba->num_rsrc_err);
385 num_cmd_success = atomic_read(&phba->num_cmd_success);
386
James Smart549e55c2007-08-02 11:09:51 -0400387 vports = lpfc_create_vport_work_array(phba);
388 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400389 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400390 shost = lpfc_shost_from_vport(vports[i]);
391 shost_for_each_device(sdev, shost) {
James Smart92d7f7b2007-06-17 19:56:38 -0500392 new_queue_depth =
James Smart549e55c2007-08-02 11:09:51 -0400393 sdev->queue_depth * num_rsrc_err /
394 (num_rsrc_err + num_cmd_success);
395 if (!new_queue_depth)
396 new_queue_depth = sdev->queue_depth - 1;
397 else
398 new_queue_depth = sdev->queue_depth -
399 new_queue_depth;
James Smart5ffc2662009-11-18 15:39:44 -0500400 lpfc_change_queue_depth(sdev, new_queue_depth,
401 SCSI_QDEPTH_DEFAULT);
James Smart549e55c2007-08-02 11:09:51 -0400402 }
James Smart92d7f7b2007-06-17 19:56:38 -0500403 }
James Smart09372822008-01-11 01:52:54 -0500404 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500405 atomic_set(&phba->num_rsrc_err, 0);
406 atomic_set(&phba->num_cmd_success, 0);
407}
408
James Smart9bad7672008-12-04 22:39:02 -0500409/**
James Smart3621a712009-04-06 18:47:14 -0400410 * lpfc_ramp_up_queue_handler - WORKER_RAMP_UP_QUEUE event handler
James Smart9bad7672008-12-04 22:39:02 -0500411 * @phba: The Hba for which this call is being executed.
412 *
413 * This routine is called to process WORKER_RAMP_UP_QUEUE event for worker
414 * thread.This routine increases queue depth for all scsi device on each vport
415 * associated with @phba by 1. This routine also sets @phba num_rsrc_err and
416 * num_cmd_success to zero.
417 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500418void
419lpfc_ramp_up_queue_handler(struct lpfc_hba *phba)
420{
James Smart549e55c2007-08-02 11:09:51 -0400421 struct lpfc_vport **vports;
422 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500423 struct scsi_device *sdev;
James Smart549e55c2007-08-02 11:09:51 -0400424 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500425
James Smart549e55c2007-08-02 11:09:51 -0400426 vports = lpfc_create_vport_work_array(phba);
427 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400428 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400429 shost = lpfc_shost_from_vport(vports[i]);
430 shost_for_each_device(sdev, shost) {
James Smart97eab632008-04-07 10:16:05 -0400431 if (vports[i]->cfg_lun_queue_depth <=
432 sdev->queue_depth)
433 continue;
James Smart5ffc2662009-11-18 15:39:44 -0500434 lpfc_change_queue_depth(sdev,
435 sdev->queue_depth+1,
436 SCSI_QDEPTH_RAMP_UP);
James Smart549e55c2007-08-02 11:09:51 -0400437 }
James Smart92d7f7b2007-06-17 19:56:38 -0500438 }
James Smart09372822008-01-11 01:52:54 -0500439 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500440 atomic_set(&phba->num_rsrc_err, 0);
441 atomic_set(&phba->num_cmd_success, 0);
442}
443
James Smarta8e497d2008-08-24 21:50:11 -0400444/**
James Smart3621a712009-04-06 18:47:14 -0400445 * lpfc_scsi_dev_block - set all scsi hosts to block state
James Smarta8e497d2008-08-24 21:50:11 -0400446 * @phba: Pointer to HBA context object.
447 *
448 * This function walks vport list and set each SCSI host to block state
449 * by invoking fc_remote_port_delete() routine. This function is invoked
450 * with EEH when device's PCI slot has been permanently disabled.
451 **/
452void
453lpfc_scsi_dev_block(struct lpfc_hba *phba)
454{
455 struct lpfc_vport **vports;
456 struct Scsi_Host *shost;
457 struct scsi_device *sdev;
458 struct fc_rport *rport;
459 int i;
460
461 vports = lpfc_create_vport_work_array(phba);
462 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400463 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smarta8e497d2008-08-24 21:50:11 -0400464 shost = lpfc_shost_from_vport(vports[i]);
465 shost_for_each_device(sdev, shost) {
466 rport = starget_to_rport(scsi_target(sdev));
467 fc_remote_port_delete(rport);
468 }
469 }
470 lpfc_destroy_vport_work_array(phba, vports);
471}
472
James Smart9bad7672008-12-04 22:39:02 -0500473/**
James Smart3772a992009-05-22 14:50:54 -0400474 * lpfc_new_scsi_buf_s3 - Scsi buffer allocator for HBA with SLI3 IF spec
James Smart9bad7672008-12-04 22:39:02 -0500475 * @vport: The virtual port for which this call being executed.
James Smart3772a992009-05-22 14:50:54 -0400476 * @num_to_allocate: The requested number of buffers to allocate.
James Smart9bad7672008-12-04 22:39:02 -0500477 *
James Smart3772a992009-05-22 14:50:54 -0400478 * This routine allocates a scsi buffer for device with SLI-3 interface spec,
479 * the scsi buffer contains all the necessary information needed to initiate
480 * a SCSI I/O. The non-DMAable buffer region contains information to build
481 * the IOCB. The DMAable region contains memory for the FCP CMND, FCP RSP,
482 * and the initial BPL. In addition to allocating memory, the FCP CMND and
483 * FCP RSP BDEs are setup in the BPL and the BPL BDE is setup in the IOCB.
James Smart9bad7672008-12-04 22:39:02 -0500484 *
485 * Return codes:
James Smart3772a992009-05-22 14:50:54 -0400486 * int - number of scsi buffers that were allocated.
487 * 0 = failure, less than num_to_alloc is a partial failure.
James Smart9bad7672008-12-04 22:39:02 -0500488 **/
James Smart3772a992009-05-22 14:50:54 -0400489static int
490lpfc_new_scsi_buf_s3(struct lpfc_vport *vport, int num_to_alloc)
dea31012005-04-17 16:05:31 -0500491{
James Smart2e0fef82007-06-17 19:56:36 -0500492 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500493 struct lpfc_scsi_buf *psb;
494 struct ulp_bde64 *bpl;
495 IOCB_t *iocb;
James Smart34b02dc2008-08-24 21:49:55 -0400496 dma_addr_t pdma_phys_fcp_cmd;
497 dma_addr_t pdma_phys_fcp_rsp;
498 dma_addr_t pdma_phys_bpl;
James Bottomley604a3e32005-10-29 10:28:33 -0500499 uint16_t iotag;
James Smart3772a992009-05-22 14:50:54 -0400500 int bcnt;
dea31012005-04-17 16:05:31 -0500501
James Smart3772a992009-05-22 14:50:54 -0400502 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
503 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
504 if (!psb)
505 break;
dea31012005-04-17 16:05:31 -0500506
James Smart3772a992009-05-22 14:50:54 -0400507 /*
508 * Get memory from the pci pool to map the virt space to pci
509 * bus space for an I/O. The DMA buffer includes space for the
510 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
511 * necessary to support the sg_tablesize.
512 */
513 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
514 GFP_KERNEL, &psb->dma_handle);
515 if (!psb->data) {
516 kfree(psb);
517 break;
518 }
dea31012005-04-17 16:05:31 -0500519
James Smart3772a992009-05-22 14:50:54 -0400520 /* Initialize virtual ptrs to dma_buf region. */
521 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
dea31012005-04-17 16:05:31 -0500522
James Smart3772a992009-05-22 14:50:54 -0400523 /* Allocate iotag for psb->cur_iocbq. */
524 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
525 if (iotag == 0) {
526 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
527 psb->data, psb->dma_handle);
528 kfree(psb);
529 break;
530 }
531 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
James Bottomley604a3e32005-10-29 10:28:33 -0500532
James Smart3772a992009-05-22 14:50:54 -0400533 psb->fcp_cmnd = psb->data;
534 psb->fcp_rsp = psb->data + sizeof(struct fcp_cmnd);
535 psb->fcp_bpl = psb->data + sizeof(struct fcp_cmnd) +
James Smart34b02dc2008-08-24 21:49:55 -0400536 sizeof(struct fcp_rsp);
dea31012005-04-17 16:05:31 -0500537
James Smart3772a992009-05-22 14:50:54 -0400538 /* Initialize local short-hand pointers. */
539 bpl = psb->fcp_bpl;
540 pdma_phys_fcp_cmd = psb->dma_handle;
541 pdma_phys_fcp_rsp = psb->dma_handle + sizeof(struct fcp_cmnd);
542 pdma_phys_bpl = psb->dma_handle + sizeof(struct fcp_cmnd) +
543 sizeof(struct fcp_rsp);
dea31012005-04-17 16:05:31 -0500544
James Smart3772a992009-05-22 14:50:54 -0400545 /*
546 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
547 * are sg list bdes. Initialize the first two and leave the
548 * rest for queuecommand.
549 */
550 bpl[0].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_cmd));
551 bpl[0].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_cmd));
552 bpl[0].tus.f.bdeSize = sizeof(struct fcp_cmnd);
553 bpl[0].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
554 bpl[0].tus.w = le32_to_cpu(bpl[0].tus.w);
dea31012005-04-17 16:05:31 -0500555
James Smart3772a992009-05-22 14:50:54 -0400556 /* Setup the physical region for the FCP RSP */
557 bpl[1].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_rsp));
558 bpl[1].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_rsp));
559 bpl[1].tus.f.bdeSize = sizeof(struct fcp_rsp);
560 bpl[1].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
561 bpl[1].tus.w = le32_to_cpu(bpl[1].tus.w);
562
563 /*
564 * Since the IOCB for the FCP I/O is built into this
565 * lpfc_scsi_buf, initialize it with all known data now.
566 */
567 iocb = &psb->cur_iocbq.iocb;
568 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
569 if ((phba->sli_rev == 3) &&
570 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED)) {
571 /* fill in immediate fcp command BDE */
572 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_IMMED;
573 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
574 iocb->un.fcpi64.bdl.addrLow = offsetof(IOCB_t,
575 unsli3.fcp_ext.icd);
576 iocb->un.fcpi64.bdl.addrHigh = 0;
577 iocb->ulpBdeCount = 0;
578 iocb->ulpLe = 0;
579 /* fill in responce BDE */
580 iocb->unsli3.fcp_ext.rbde.tus.f.bdeFlags =
581 BUFF_TYPE_BDE_64;
582 iocb->unsli3.fcp_ext.rbde.tus.f.bdeSize =
583 sizeof(struct fcp_rsp);
584 iocb->unsli3.fcp_ext.rbde.addrLow =
585 putPaddrLow(pdma_phys_fcp_rsp);
586 iocb->unsli3.fcp_ext.rbde.addrHigh =
587 putPaddrHigh(pdma_phys_fcp_rsp);
588 } else {
589 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
590 iocb->un.fcpi64.bdl.bdeSize =
591 (2 * sizeof(struct ulp_bde64));
592 iocb->un.fcpi64.bdl.addrLow =
593 putPaddrLow(pdma_phys_bpl);
594 iocb->un.fcpi64.bdl.addrHigh =
595 putPaddrHigh(pdma_phys_bpl);
596 iocb->ulpBdeCount = 1;
597 iocb->ulpLe = 1;
598 }
599 iocb->ulpClass = CLASS3;
600 psb->status = IOSTAT_SUCCESS;
James Smartda0436e2009-05-22 14:51:39 -0400601 /* Put it back into the SCSI buffer list */
James Smart1c6f4ef52009-11-18 15:40:49 -0500602 lpfc_release_scsi_buf_s3(phba, psb);
James Smart3772a992009-05-22 14:50:54 -0400603
James Smart34b02dc2008-08-24 21:49:55 -0400604 }
dea31012005-04-17 16:05:31 -0500605
James Smart3772a992009-05-22 14:50:54 -0400606 return bcnt;
dea31012005-04-17 16:05:31 -0500607}
608
James Smart9bad7672008-12-04 22:39:02 -0500609/**
James Smartda0436e2009-05-22 14:51:39 -0400610 * lpfc_sli4_fcp_xri_aborted - Fast-path process of fcp xri abort
611 * @phba: pointer to lpfc hba data structure.
612 * @axri: pointer to the fcp xri abort wcqe structure.
613 *
614 * This routine is invoked by the worker thread to process a SLI4 fast-path
615 * FCP aborted xri.
616 **/
617void
618lpfc_sli4_fcp_xri_aborted(struct lpfc_hba *phba,
619 struct sli4_wcqe_xri_aborted *axri)
620{
621 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
622 struct lpfc_scsi_buf *psb, *next_psb;
623 unsigned long iflag = 0;
James Smart0f65ff62010-02-26 14:14:23 -0500624 struct lpfc_iocbq *iocbq;
625 int i;
James Smart589a52d2010-07-14 15:30:54 -0400626 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smartda0436e2009-05-22 14:51:39 -0400627
James Smart0f65ff62010-02-26 14:14:23 -0500628 spin_lock_irqsave(&phba->hbalock, iflag);
629 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
James Smartda0436e2009-05-22 14:51:39 -0400630 list_for_each_entry_safe(psb, next_psb,
631 &phba->sli4_hba.lpfc_abts_scsi_buf_list, list) {
632 if (psb->cur_iocbq.sli4_xritag == xri) {
633 list_del(&psb->list);
James Smart341af102010-01-26 23:07:37 -0500634 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400635 psb->status = IOSTAT_SUCCESS;
James Smart0f65ff62010-02-26 14:14:23 -0500636 spin_unlock(
637 &phba->sli4_hba.abts_scsi_buf_list_lock);
638 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartda0436e2009-05-22 14:51:39 -0400639 lpfc_release_scsi_buf_s4(phba, psb);
640 return;
641 }
642 }
James Smart0f65ff62010-02-26 14:14:23 -0500643 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
644 for (i = 1; i <= phba->sli.last_iotag; i++) {
645 iocbq = phba->sli.iocbq_lookup[i];
646
647 if (!(iocbq->iocb_flag & LPFC_IO_FCP) ||
648 (iocbq->iocb_flag & LPFC_IO_LIBDFC))
649 continue;
650 if (iocbq->sli4_xritag != xri)
651 continue;
652 psb = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
653 psb->exch_busy = 0;
654 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart589a52d2010-07-14 15:30:54 -0400655 if (pring->txq_cnt)
656 lpfc_worker_wake_up(phba);
James Smart0f65ff62010-02-26 14:14:23 -0500657 return;
658
659 }
660 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartda0436e2009-05-22 14:51:39 -0400661}
662
663/**
664 * lpfc_sli4_repost_scsi_sgl_list - Repsot the Scsi buffers sgl pages as block
665 * @phba: pointer to lpfc hba data structure.
666 *
667 * This routine walks the list of scsi buffers that have been allocated and
668 * repost them to the HBA by using SGL block post. This is needed after a
669 * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
670 * is responsible for moving all scsi buffers on the lpfc_abts_scsi_sgl_list
671 * to the lpfc_scsi_buf_list. If the repost fails, reject all scsi buffers.
672 *
673 * Returns: 0 = success, non-zero failure.
674 **/
675int
676lpfc_sli4_repost_scsi_sgl_list(struct lpfc_hba *phba)
677{
678 struct lpfc_scsi_buf *psb;
679 int index, status, bcnt = 0, rcnt = 0, rc = 0;
680 LIST_HEAD(sblist);
681
682 for (index = 0; index < phba->sli4_hba.scsi_xri_cnt; index++) {
683 psb = phba->sli4_hba.lpfc_scsi_psb_array[index];
684 if (psb) {
685 /* Remove from SCSI buffer list */
686 list_del(&psb->list);
687 /* Add it to a local SCSI buffer list */
688 list_add_tail(&psb->list, &sblist);
689 if (++rcnt == LPFC_NEMBED_MBOX_SGL_CNT) {
690 bcnt = rcnt;
691 rcnt = 0;
692 }
693 } else
694 /* A hole present in the XRI array, need to skip */
695 bcnt = rcnt;
696
697 if (index == phba->sli4_hba.scsi_xri_cnt - 1)
698 /* End of XRI array for SCSI buffer, complete */
699 bcnt = rcnt;
700
701 /* Continue until collect up to a nembed page worth of sgls */
702 if (bcnt == 0)
703 continue;
704 /* Now, post the SCSI buffer list sgls as a block */
705 status = lpfc_sli4_post_scsi_sgl_block(phba, &sblist, bcnt);
706 /* Reset SCSI buffer count for next round of posting */
707 bcnt = 0;
708 while (!list_empty(&sblist)) {
709 list_remove_head(&sblist, psb, struct lpfc_scsi_buf,
710 list);
711 if (status) {
712 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500713 psb->exch_busy = 1;
James Smartda0436e2009-05-22 14:51:39 -0400714 rc++;
James Smart341af102010-01-26 23:07:37 -0500715 } else {
716 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400717 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500718 }
James Smartda0436e2009-05-22 14:51:39 -0400719 /* Put it back into the SCSI buffer list */
720 lpfc_release_scsi_buf_s4(phba, psb);
721 }
722 }
723 return rc;
724}
725
726/**
727 * lpfc_new_scsi_buf_s4 - Scsi buffer allocator for HBA with SLI4 IF spec
728 * @vport: The virtual port for which this call being executed.
729 * @num_to_allocate: The requested number of buffers to allocate.
730 *
731 * This routine allocates a scsi buffer for device with SLI-4 interface spec,
732 * the scsi buffer contains all the necessary information needed to initiate
733 * a SCSI I/O.
734 *
735 * Return codes:
736 * int - number of scsi buffers that were allocated.
737 * 0 = failure, less than num_to_alloc is a partial failure.
738 **/
739static int
740lpfc_new_scsi_buf_s4(struct lpfc_vport *vport, int num_to_alloc)
741{
742 struct lpfc_hba *phba = vport->phba;
743 struct lpfc_scsi_buf *psb;
744 struct sli4_sge *sgl;
745 IOCB_t *iocb;
746 dma_addr_t pdma_phys_fcp_cmd;
747 dma_addr_t pdma_phys_fcp_rsp;
748 dma_addr_t pdma_phys_bpl, pdma_phys_bpl1;
749 uint16_t iotag, last_xritag = NO_XRI;
750 int status = 0, index;
751 int bcnt;
752 int non_sequential_xri = 0;
James Smartda0436e2009-05-22 14:51:39 -0400753 LIST_HEAD(sblist);
754
755 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
756 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
757 if (!psb)
758 break;
759
760 /*
761 * Get memory from the pci pool to map the virt space to pci bus
762 * space for an I/O. The DMA buffer includes space for the
763 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
764 * necessary to support the sg_tablesize.
765 */
766 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
767 GFP_KERNEL, &psb->dma_handle);
768 if (!psb->data) {
769 kfree(psb);
770 break;
771 }
772
773 /* Initialize virtual ptrs to dma_buf region. */
774 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
775
776 /* Allocate iotag for psb->cur_iocbq. */
777 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
778 if (iotag == 0) {
James Smartb92938b2010-06-07 15:24:12 -0400779 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
780 psb->data, psb->dma_handle);
James Smartda0436e2009-05-22 14:51:39 -0400781 kfree(psb);
782 break;
783 }
784
785 psb->cur_iocbq.sli4_xritag = lpfc_sli4_next_xritag(phba);
786 if (psb->cur_iocbq.sli4_xritag == NO_XRI) {
787 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
788 psb->data, psb->dma_handle);
789 kfree(psb);
790 break;
791 }
792 if (last_xritag != NO_XRI
793 && psb->cur_iocbq.sli4_xritag != (last_xritag+1)) {
794 non_sequential_xri = 1;
795 } else
796 list_add_tail(&psb->list, &sblist);
797 last_xritag = psb->cur_iocbq.sli4_xritag;
798
799 index = phba->sli4_hba.scsi_xri_cnt++;
800 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
801
802 psb->fcp_bpl = psb->data;
803 psb->fcp_cmnd = (psb->data + phba->cfg_sg_dma_buf_size)
804 - (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
805 psb->fcp_rsp = (struct fcp_rsp *)((uint8_t *)psb->fcp_cmnd +
806 sizeof(struct fcp_cmnd));
807
808 /* Initialize local short-hand pointers. */
809 sgl = (struct sli4_sge *)psb->fcp_bpl;
810 pdma_phys_bpl = psb->dma_handle;
811 pdma_phys_fcp_cmd =
812 (psb->dma_handle + phba->cfg_sg_dma_buf_size)
813 - (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
814 pdma_phys_fcp_rsp = pdma_phys_fcp_cmd + sizeof(struct fcp_cmnd);
815
816 /*
817 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
818 * are sg list bdes. Initialize the first two and leave the
819 * rest for queuecommand.
820 */
821 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_cmd));
822 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_cmd));
James Smartda0436e2009-05-22 14:51:39 -0400823 bf_set(lpfc_sli4_sge_last, sgl, 0);
824 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -0500825 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_cmnd));
James Smartda0436e2009-05-22 14:51:39 -0400826 sgl++;
827
828 /* Setup the physical region for the FCP RSP */
829 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_rsp));
830 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_rsp));
James Smartda0436e2009-05-22 14:51:39 -0400831 bf_set(lpfc_sli4_sge_last, sgl, 1);
832 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -0500833 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_rsp));
James Smartda0436e2009-05-22 14:51:39 -0400834
835 /*
836 * Since the IOCB for the FCP I/O is built into this
837 * lpfc_scsi_buf, initialize it with all known data now.
838 */
839 iocb = &psb->cur_iocbq.iocb;
840 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
841 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_64;
842 /* setting the BLP size to 2 * sizeof BDE may not be correct.
843 * We are setting the bpl to point to out sgl. An sgl's
844 * entries are 16 bytes, a bpl entries are 12 bytes.
845 */
846 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
847 iocb->un.fcpi64.bdl.addrLow = putPaddrLow(pdma_phys_fcp_cmd);
848 iocb->un.fcpi64.bdl.addrHigh = putPaddrHigh(pdma_phys_fcp_cmd);
849 iocb->ulpBdeCount = 1;
850 iocb->ulpLe = 1;
851 iocb->ulpClass = CLASS3;
852 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
853 pdma_phys_bpl1 = pdma_phys_bpl + SGL_PAGE_SIZE;
854 else
855 pdma_phys_bpl1 = 0;
856 psb->dma_phys_bpl = pdma_phys_bpl;
857 phba->sli4_hba.lpfc_scsi_psb_array[index] = psb;
858 if (non_sequential_xri) {
859 status = lpfc_sli4_post_sgl(phba, pdma_phys_bpl,
860 pdma_phys_bpl1,
861 psb->cur_iocbq.sli4_xritag);
862 if (status) {
863 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500864 psb->exch_busy = 1;
James Smart341af102010-01-26 23:07:37 -0500865 } else {
866 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400867 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500868 }
James Smartda0436e2009-05-22 14:51:39 -0400869 /* Put it back into the SCSI buffer list */
870 lpfc_release_scsi_buf_s4(phba, psb);
871 break;
872 }
873 }
874 if (bcnt) {
875 status = lpfc_sli4_post_scsi_sgl_block(phba, &sblist, bcnt);
876 /* Reset SCSI buffer count for next round of posting */
877 while (!list_empty(&sblist)) {
878 list_remove_head(&sblist, psb, struct lpfc_scsi_buf,
879 list);
880 if (status) {
881 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500882 psb->exch_busy = 1;
James Smart341af102010-01-26 23:07:37 -0500883 } else {
884 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400885 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500886 }
James Smartda0436e2009-05-22 14:51:39 -0400887 /* Put it back into the SCSI buffer list */
888 lpfc_release_scsi_buf_s4(phba, psb);
889 }
890 }
891
James Smartd7c47992010-06-08 18:31:54 -0400892 return bcnt + non_sequential_xri;
James Smartda0436e2009-05-22 14:51:39 -0400893}
894
895/**
James Smart3772a992009-05-22 14:50:54 -0400896 * lpfc_new_scsi_buf - Wrapper funciton for scsi buffer allocator
897 * @vport: The virtual port for which this call being executed.
898 * @num_to_allocate: The requested number of buffers to allocate.
899 *
900 * This routine wraps the actual SCSI buffer allocator function pointer from
901 * the lpfc_hba struct.
902 *
903 * Return codes:
904 * int - number of scsi buffers that were allocated.
905 * 0 = failure, less than num_to_alloc is a partial failure.
906 **/
907static inline int
908lpfc_new_scsi_buf(struct lpfc_vport *vport, int num_to_alloc)
909{
910 return vport->phba->lpfc_new_scsi_buf(vport, num_to_alloc);
911}
912
913/**
914 * lpfc_get_scsi_buf - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
915 * @phba: The HBA for which this call is being executed.
James Smart9bad7672008-12-04 22:39:02 -0500916 *
917 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
918 * and returns to caller.
919 *
920 * Return codes:
921 * NULL - Error
922 * Pointer to lpfc_scsi_buf - Success
923 **/
Adrian Bunk455c53e2006-01-06 20:21:28 +0100924static struct lpfc_scsi_buf*
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500925lpfc_get_scsi_buf(struct lpfc_hba * phba)
dea31012005-04-17 16:05:31 -0500926{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400927 struct lpfc_scsi_buf * lpfc_cmd = NULL;
928 struct list_head *scsi_buf_list = &phba->lpfc_scsi_buf_list;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500929 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -0500930
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500931 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400932 list_remove_head(scsi_buf_list, lpfc_cmd, struct lpfc_scsi_buf, list);
James Smart1dcb58e2007-04-25 09:51:30 -0400933 if (lpfc_cmd) {
934 lpfc_cmd->seg_cnt = 0;
935 lpfc_cmd->nonsg_phys = 0;
James Smarte2a0a9d2008-12-04 22:40:02 -0500936 lpfc_cmd->prot_seg_cnt = 0;
James Smart1dcb58e2007-04-25 09:51:30 -0400937 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500938 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400939 return lpfc_cmd;
940}
941
James Smart9bad7672008-12-04 22:39:02 -0500942/**
James Smart3772a992009-05-22 14:50:54 -0400943 * lpfc_release_scsi_buf - Return a scsi buffer back to hba scsi buf list
James Smart9bad7672008-12-04 22:39:02 -0500944 * @phba: The Hba for which this call is being executed.
945 * @psb: The scsi buffer which is being released.
946 *
947 * This routine releases @psb scsi buffer by adding it to tail of @phba
948 * lpfc_scsi_buf_list list.
949 **/
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400950static void
James Smart3772a992009-05-22 14:50:54 -0400951lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400952{
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500953 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -0500954
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500955 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400956 psb->pCmd = NULL;
dea31012005-04-17 16:05:31 -0500957 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500958 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
dea31012005-04-17 16:05:31 -0500959}
960
James Smart9bad7672008-12-04 22:39:02 -0500961/**
James Smartda0436e2009-05-22 14:51:39 -0400962 * lpfc_release_scsi_buf_s4: Return a scsi buffer back to hba scsi buf list.
963 * @phba: The Hba for which this call is being executed.
964 * @psb: The scsi buffer which is being released.
965 *
966 * This routine releases @psb scsi buffer by adding it to tail of @phba
967 * lpfc_scsi_buf_list list. For SLI4 XRI's are tied to the scsi buffer
968 * and cannot be reused for at least RA_TOV amount of time if it was
969 * aborted.
970 **/
971static void
972lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
973{
974 unsigned long iflag = 0;
975
James Smart341af102010-01-26 23:07:37 -0500976 if (psb->exch_busy) {
James Smartda0436e2009-05-22 14:51:39 -0400977 spin_lock_irqsave(&phba->sli4_hba.abts_scsi_buf_list_lock,
978 iflag);
979 psb->pCmd = NULL;
980 list_add_tail(&psb->list,
981 &phba->sli4_hba.lpfc_abts_scsi_buf_list);
982 spin_unlock_irqrestore(&phba->sli4_hba.abts_scsi_buf_list_lock,
983 iflag);
984 } else {
985
986 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
987 psb->pCmd = NULL;
988 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
989 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
990 }
991}
992
993/**
James Smart3772a992009-05-22 14:50:54 -0400994 * lpfc_release_scsi_buf: Return a scsi buffer back to hba scsi buf list.
995 * @phba: The Hba for which this call is being executed.
996 * @psb: The scsi buffer which is being released.
997 *
998 * This routine releases @psb scsi buffer by adding it to tail of @phba
999 * lpfc_scsi_buf_list list.
1000 **/
1001static void
1002lpfc_release_scsi_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
1003{
1004
1005 phba->lpfc_release_scsi_buf(phba, psb);
1006}
1007
1008/**
1009 * lpfc_scsi_prep_dma_buf_s3 - DMA mapping for scsi buffer to SLI3 IF spec
James Smart9bad7672008-12-04 22:39:02 -05001010 * @phba: The Hba for which this call is being executed.
1011 * @lpfc_cmd: The scsi buffer which is going to be mapped.
1012 *
1013 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
James Smart3772a992009-05-22 14:50:54 -04001014 * field of @lpfc_cmd for device with SLI-3 interface spec. This routine scans
1015 * through sg elements and format the bdea. This routine also initializes all
1016 * IOCB fields which are dependent on scsi command request buffer.
James Smart9bad7672008-12-04 22:39:02 -05001017 *
1018 * Return codes:
1019 * 1 - Error
1020 * 0 - Success
1021 **/
dea31012005-04-17 16:05:31 -05001022static int
James Smart3772a992009-05-22 14:50:54 -04001023lpfc_scsi_prep_dma_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
dea31012005-04-17 16:05:31 -05001024{
1025 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1026 struct scatterlist *sgel = NULL;
1027 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1028 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
James Smart0f65ff62010-02-26 14:14:23 -05001029 struct lpfc_iocbq *iocbq = &lpfc_cmd->cur_iocbq;
dea31012005-04-17 16:05:31 -05001030 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
James Smart34b02dc2008-08-24 21:49:55 -04001031 struct ulp_bde64 *data_bde = iocb_cmd->unsli3.fcp_ext.dbde;
dea31012005-04-17 16:05:31 -05001032 dma_addr_t physaddr;
James Smart34b02dc2008-08-24 21:49:55 -04001033 uint32_t num_bde = 0;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001034 int nseg, datadir = scsi_cmnd->sc_data_direction;
dea31012005-04-17 16:05:31 -05001035
1036 /*
1037 * There are three possibilities here - use scatter-gather segment, use
1038 * the single mapping, or neither. Start the lpfc command prep by
1039 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1040 * data bde entry.
1041 */
1042 bpl += 2;
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001043 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -05001044 /*
1045 * The driver stores the segment count returned from pci_map_sg
1046 * because this a count of dma-mappings used to map the use_sg
1047 * pages. They are not guaranteed to be the same for those
1048 * architectures that implement an IOMMU.
1049 */
dea31012005-04-17 16:05:31 -05001050
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001051 nseg = dma_map_sg(&phba->pcidev->dev, scsi_sglist(scsi_cmnd),
1052 scsi_sg_count(scsi_cmnd), datadir);
1053 if (unlikely(!nseg))
1054 return 1;
1055
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001056 lpfc_cmd->seg_cnt = nseg;
dea31012005-04-17 16:05:31 -05001057 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001058 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1059 "9064 BLKGRD: %s: Too many sg segments from "
James Smarte2a0a9d2008-12-04 22:40:02 -05001060 "dma_map_sg. Config %d, seg_cnt %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001061 __func__, phba->cfg_sg_seg_cnt,
dea31012005-04-17 16:05:31 -05001062 lpfc_cmd->seg_cnt);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001063 scsi_dma_unmap(scsi_cmnd);
dea31012005-04-17 16:05:31 -05001064 return 1;
1065 }
1066
1067 /*
1068 * The driver established a maximum scatter-gather segment count
1069 * during probe that limits the number of sg elements in any
1070 * single scsi command. Just run through the seg_cnt and format
1071 * the bde's.
James Smart34b02dc2008-08-24 21:49:55 -04001072 * When using SLI-3 the driver will try to fit all the BDEs into
1073 * the IOCB. If it can't then the BDEs get added to a BPL as it
1074 * does for SLI-2 mode.
dea31012005-04-17 16:05:31 -05001075 */
James Smart34b02dc2008-08-24 21:49:55 -04001076 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
dea31012005-04-17 16:05:31 -05001077 physaddr = sg_dma_address(sgel);
James Smart34b02dc2008-08-24 21:49:55 -04001078 if (phba->sli_rev == 3 &&
James Smarte2a0a9d2008-12-04 22:40:02 -05001079 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
James Smart0f65ff62010-02-26 14:14:23 -05001080 !(iocbq->iocb_flag & DSS_SECURITY_OP) &&
James Smart34b02dc2008-08-24 21:49:55 -04001081 nseg <= LPFC_EXT_DATA_BDE_COUNT) {
1082 data_bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1083 data_bde->tus.f.bdeSize = sg_dma_len(sgel);
1084 data_bde->addrLow = putPaddrLow(physaddr);
1085 data_bde->addrHigh = putPaddrHigh(physaddr);
1086 data_bde++;
1087 } else {
1088 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1089 bpl->tus.f.bdeSize = sg_dma_len(sgel);
1090 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1091 bpl->addrLow =
1092 le32_to_cpu(putPaddrLow(physaddr));
1093 bpl->addrHigh =
1094 le32_to_cpu(putPaddrHigh(physaddr));
1095 bpl++;
1096 }
dea31012005-04-17 16:05:31 -05001097 }
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001098 }
dea31012005-04-17 16:05:31 -05001099
1100 /*
1101 * Finish initializing those IOCB fields that are dependent on the
James Smart34b02dc2008-08-24 21:49:55 -04001102 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
1103 * explicitly reinitialized and for SLI-3 the extended bde count is
1104 * explicitly reinitialized since all iocb memory resources are reused.
dea31012005-04-17 16:05:31 -05001105 */
James Smarte2a0a9d2008-12-04 22:40:02 -05001106 if (phba->sli_rev == 3 &&
James Smart0f65ff62010-02-26 14:14:23 -05001107 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
1108 !(iocbq->iocb_flag & DSS_SECURITY_OP)) {
James Smart34b02dc2008-08-24 21:49:55 -04001109 if (num_bde > LPFC_EXT_DATA_BDE_COUNT) {
1110 /*
1111 * The extended IOCB format can only fit 3 BDE or a BPL.
1112 * This I/O has more than 3 BDE so the 1st data bde will
1113 * be a BPL that is filled in here.
1114 */
1115 physaddr = lpfc_cmd->dma_handle;
1116 data_bde->tus.f.bdeFlags = BUFF_TYPE_BLP_64;
1117 data_bde->tus.f.bdeSize = (num_bde *
1118 sizeof(struct ulp_bde64));
1119 physaddr += (sizeof(struct fcp_cmnd) +
1120 sizeof(struct fcp_rsp) +
1121 (2 * sizeof(struct ulp_bde64)));
1122 data_bde->addrHigh = putPaddrHigh(physaddr);
1123 data_bde->addrLow = putPaddrLow(physaddr);
1124 /* ebde count includes the responce bde and data bpl */
1125 iocb_cmd->unsli3.fcp_ext.ebde_count = 2;
1126 } else {
1127 /* ebde count includes the responce bde and data bdes */
1128 iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
1129 }
1130 } else {
1131 iocb_cmd->un.fcpi64.bdl.bdeSize =
1132 ((num_bde + 2) * sizeof(struct ulp_bde64));
James Smart0f65ff62010-02-26 14:14:23 -05001133 iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
James Smart34b02dc2008-08-24 21:49:55 -04001134 }
James Smart09372822008-01-11 01:52:54 -05001135 fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
James Smarte2a0a9d2008-12-04 22:40:02 -05001136
1137 /*
1138 * Due to difference in data length between DIF/non-DIF paths,
1139 * we need to set word 4 of IOCB here
1140 */
James Smarta257bf92009-04-06 18:48:10 -04001141 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
dea31012005-04-17 16:05:31 -05001142 return 0;
1143}
1144
James Smarte2a0a9d2008-12-04 22:40:02 -05001145/*
James Smart6c8eea52010-04-06 14:49:53 -04001146 * Given a scsi cmnd, determine the BlockGuard opcodes to be used with it
1147 * @sc: The SCSI command to examine
1148 * @txopt: (out) BlockGuard operation for transmitted data
1149 * @rxopt: (out) BlockGuard operation for received data
1150 *
1151 * Returns: zero on success; non-zero if tx and/or rx op cannot be determined
1152 *
James Smarte2a0a9d2008-12-04 22:40:02 -05001153 */
1154static int
James Smart6c8eea52010-04-06 14:49:53 -04001155lpfc_sc_to_bg_opcodes(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1156 uint8_t *txop, uint8_t *rxop)
James Smarte2a0a9d2008-12-04 22:40:02 -05001157{
1158 uint8_t guard_type = scsi_host_get_guard(sc->device->host);
James Smart6c8eea52010-04-06 14:49:53 -04001159 uint8_t ret = 0;
James Smarte2a0a9d2008-12-04 22:40:02 -05001160
1161 if (guard_type == SHOST_DIX_GUARD_IP) {
1162 switch (scsi_get_prot_op(sc)) {
1163 case SCSI_PROT_READ_INSERT:
1164 case SCSI_PROT_WRITE_STRIP:
James Smart6c8eea52010-04-06 14:49:53 -04001165 *txop = BG_OP_IN_CSUM_OUT_NODIF;
1166 *rxop = BG_OP_IN_NODIF_OUT_CSUM;
James Smarte2a0a9d2008-12-04 22:40:02 -05001167 break;
1168
1169 case SCSI_PROT_READ_STRIP:
1170 case SCSI_PROT_WRITE_INSERT:
James Smart6c8eea52010-04-06 14:49:53 -04001171 *txop = BG_OP_IN_NODIF_OUT_CRC;
1172 *rxop = BG_OP_IN_CRC_OUT_NODIF;
James Smarte2a0a9d2008-12-04 22:40:02 -05001173 break;
1174
Martin K. Petersenc6af4042009-09-18 17:32:59 -04001175 case SCSI_PROT_READ_PASS:
1176 case SCSI_PROT_WRITE_PASS:
James Smart6c8eea52010-04-06 14:49:53 -04001177 *txop = BG_OP_IN_CSUM_OUT_CRC;
1178 *rxop = BG_OP_IN_CRC_OUT_CSUM;
James Smarte2a0a9d2008-12-04 22:40:02 -05001179 break;
1180
James Smarte2a0a9d2008-12-04 22:40:02 -05001181 case SCSI_PROT_NORMAL:
1182 default:
James Smart6a9c52c2009-10-02 15:16:51 -04001183 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
James Smart6c8eea52010-04-06 14:49:53 -04001184 "9063 BLKGRD: Bad op/guard:%d/%d combination\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001185 scsi_get_prot_op(sc), guard_type);
James Smart6c8eea52010-04-06 14:49:53 -04001186 ret = 1;
James Smarte2a0a9d2008-12-04 22:40:02 -05001187 break;
1188
1189 }
1190 } else if (guard_type == SHOST_DIX_GUARD_CRC) {
1191 switch (scsi_get_prot_op(sc)) {
1192 case SCSI_PROT_READ_STRIP:
1193 case SCSI_PROT_WRITE_INSERT:
James Smart6c8eea52010-04-06 14:49:53 -04001194 *txop = BG_OP_IN_NODIF_OUT_CRC;
1195 *rxop = BG_OP_IN_CRC_OUT_NODIF;
James Smarte2a0a9d2008-12-04 22:40:02 -05001196 break;
1197
1198 case SCSI_PROT_READ_PASS:
1199 case SCSI_PROT_WRITE_PASS:
James Smart6c8eea52010-04-06 14:49:53 -04001200 *txop = BG_OP_IN_CRC_OUT_CRC;
1201 *rxop = BG_OP_IN_CRC_OUT_CRC;
James Smarte2a0a9d2008-12-04 22:40:02 -05001202 break;
1203
James Smarte2a0a9d2008-12-04 22:40:02 -05001204 case SCSI_PROT_READ_INSERT:
1205 case SCSI_PROT_WRITE_STRIP:
1206 case SCSI_PROT_NORMAL:
1207 default:
James Smart6a9c52c2009-10-02 15:16:51 -04001208 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1209 "9075 BLKGRD: Bad op/guard:%d/%d combination\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001210 scsi_get_prot_op(sc), guard_type);
James Smart6c8eea52010-04-06 14:49:53 -04001211 ret = 1;
James Smarte2a0a9d2008-12-04 22:40:02 -05001212 break;
1213 }
1214 } else {
1215 /* unsupported format */
1216 BUG();
1217 }
1218
James Smart6c8eea52010-04-06 14:49:53 -04001219 return ret;
James Smarte2a0a9d2008-12-04 22:40:02 -05001220}
1221
1222struct scsi_dif_tuple {
1223 __be16 guard_tag; /* Checksum */
1224 __be16 app_tag; /* Opaque storage */
1225 __be32 ref_tag; /* Target LBA or indirect LBA */
1226};
1227
1228static inline unsigned
1229lpfc_cmd_blksize(struct scsi_cmnd *sc)
1230{
1231 return sc->device->sector_size;
1232}
1233
1234/**
1235 * lpfc_get_cmd_dif_parms - Extract DIF parameters from SCSI command
1236 * @sc: in: SCSI command
James Smart3621a712009-04-06 18:47:14 -04001237 * @apptagmask: out: app tag mask
1238 * @apptagval: out: app tag value
1239 * @reftag: out: ref tag (reference tag)
James Smarte2a0a9d2008-12-04 22:40:02 -05001240 *
1241 * Description:
Martin Olsson98a17082009-04-22 18:21:29 +02001242 * Extract DIF parameters from the command if possible. Otherwise,
1243 * use default parameters.
James Smarte2a0a9d2008-12-04 22:40:02 -05001244 *
1245 **/
1246static inline void
1247lpfc_get_cmd_dif_parms(struct scsi_cmnd *sc, uint16_t *apptagmask,
1248 uint16_t *apptagval, uint32_t *reftag)
1249{
1250 struct scsi_dif_tuple *spt;
1251 unsigned char op = scsi_get_prot_op(sc);
1252 unsigned int protcnt = scsi_prot_sg_count(sc);
1253 static int cnt;
1254
1255 if (protcnt && (op == SCSI_PROT_WRITE_STRIP ||
Martin K. Petersenc6af4042009-09-18 17:32:59 -04001256 op == SCSI_PROT_WRITE_PASS)) {
James Smarte2a0a9d2008-12-04 22:40:02 -05001257
1258 cnt++;
1259 spt = page_address(sg_page(scsi_prot_sglist(sc))) +
1260 scsi_prot_sglist(sc)[0].offset;
1261 *apptagmask = 0;
1262 *apptagval = 0;
1263 *reftag = cpu_to_be32(spt->ref_tag);
1264
1265 } else {
1266 /* SBC defines ref tag to be lower 32bits of LBA */
1267 *reftag = (uint32_t) (0xffffffff & scsi_get_lba(sc));
1268 *apptagmask = 0;
1269 *apptagval = 0;
1270 }
1271}
1272
1273/*
1274 * This function sets up buffer list for protection groups of
1275 * type LPFC_PG_TYPE_NO_DIF
1276 *
1277 * This is usually used when the HBA is instructed to generate
1278 * DIFs and insert them into data stream (or strip DIF from
1279 * incoming data stream)
1280 *
1281 * The buffer list consists of just one protection group described
1282 * below:
1283 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001284 * start of prot group --> | PDE_5 |
1285 * +-------------------------+
1286 * | PDE_6 |
James Smarte2a0a9d2008-12-04 22:40:02 -05001287 * +-------------------------+
1288 * | Data BDE |
1289 * +-------------------------+
1290 * |more Data BDE's ... (opt)|
1291 * +-------------------------+
1292 *
1293 * @sc: pointer to scsi command we're working on
1294 * @bpl: pointer to buffer list for protection groups
1295 * @datacnt: number of segments of data that have been dma mapped
1296 *
1297 * Note: Data s/g buffers have been dma mapped
1298 */
1299static int
1300lpfc_bg_setup_bpl(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1301 struct ulp_bde64 *bpl, int datasegcnt)
1302{
1303 struct scatterlist *sgde = NULL; /* s/g data entry */
James Smart6c8eea52010-04-06 14:49:53 -04001304 struct lpfc_pde5 *pde5 = NULL;
1305 struct lpfc_pde6 *pde6 = NULL;
James Smarte2a0a9d2008-12-04 22:40:02 -05001306 dma_addr_t physaddr;
James Smart6c8eea52010-04-06 14:49:53 -04001307 int i = 0, num_bde = 0, status;
James Smarte2a0a9d2008-12-04 22:40:02 -05001308 int datadir = sc->sc_data_direction;
James Smarte2a0a9d2008-12-04 22:40:02 -05001309 unsigned blksize;
1310 uint32_t reftag;
1311 uint16_t apptagmask, apptagval;
James Smart6c8eea52010-04-06 14:49:53 -04001312 uint8_t txop, rxop;
James Smarte2a0a9d2008-12-04 22:40:02 -05001313
James Smart6c8eea52010-04-06 14:49:53 -04001314 status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
1315 if (status)
James Smarte2a0a9d2008-12-04 22:40:02 -05001316 goto out;
1317
James Smart6c8eea52010-04-06 14:49:53 -04001318 /* extract some info from the scsi command for pde*/
James Smarte2a0a9d2008-12-04 22:40:02 -05001319 blksize = lpfc_cmd_blksize(sc);
1320 lpfc_get_cmd_dif_parms(sc, &apptagmask, &apptagval, &reftag);
1321
James Smart6c8eea52010-04-06 14:49:53 -04001322 /* setup PDE5 with what we have */
1323 pde5 = (struct lpfc_pde5 *) bpl;
1324 memset(pde5, 0, sizeof(struct lpfc_pde5));
1325 bf_set(pde5_type, pde5, LPFC_PDE5_DESCRIPTOR);
1326 pde5->reftag = reftag;
James Smarte2a0a9d2008-12-04 22:40:02 -05001327
James Smart589a52d2010-07-14 15:30:54 -04001328 /* Endian convertion if necessary for PDE5 */
1329 pde5->word0 = cpu_to_le32(pde5->word0);
1330 pde5->reftag = cpu_to_le32(pde5->reftag);
1331
James Smart6c8eea52010-04-06 14:49:53 -04001332 /* advance bpl and increment bde count */
1333 num_bde++;
1334 bpl++;
1335 pde6 = (struct lpfc_pde6 *) bpl;
1336
1337 /* setup PDE6 with the rest of the info */
1338 memset(pde6, 0, sizeof(struct lpfc_pde6));
1339 bf_set(pde6_type, pde6, LPFC_PDE6_DESCRIPTOR);
1340 bf_set(pde6_optx, pde6, txop);
1341 bf_set(pde6_oprx, pde6, rxop);
1342 if (datadir == DMA_FROM_DEVICE) {
1343 bf_set(pde6_ce, pde6, 1);
1344 bf_set(pde6_re, pde6, 1);
1345 bf_set(pde6_ae, pde6, 1);
1346 }
1347 bf_set(pde6_ai, pde6, 1);
1348 bf_set(pde6_apptagval, pde6, apptagval);
1349
James Smart589a52d2010-07-14 15:30:54 -04001350 /* Endian convertion if necessary for PDE6 */
1351 pde6->word0 = cpu_to_le32(pde6->word0);
1352 pde6->word1 = cpu_to_le32(pde6->word1);
1353 pde6->word2 = cpu_to_le32(pde6->word2);
1354
James Smart6c8eea52010-04-06 14:49:53 -04001355 /* advance bpl and increment bde count */
James Smarte2a0a9d2008-12-04 22:40:02 -05001356 num_bde++;
1357 bpl++;
1358
1359 /* assumption: caller has already run dma_map_sg on command data */
1360 scsi_for_each_sg(sc, sgde, datasegcnt, i) {
1361 physaddr = sg_dma_address(sgde);
1362 bpl->addrLow = le32_to_cpu(putPaddrLow(physaddr));
1363 bpl->addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1364 bpl->tus.f.bdeSize = sg_dma_len(sgde);
1365 if (datadir == DMA_TO_DEVICE)
1366 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1367 else
1368 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
1369 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1370 bpl++;
1371 num_bde++;
1372 }
1373
1374out:
1375 return num_bde;
1376}
1377
1378/*
1379 * This function sets up buffer list for protection groups of
1380 * type LPFC_PG_TYPE_DIF_BUF
1381 *
1382 * This is usually used when DIFs are in their own buffers,
1383 * separate from the data. The HBA can then by instructed
1384 * to place the DIFs in the outgoing stream. For read operations,
1385 * The HBA could extract the DIFs and place it in DIF buffers.
1386 *
1387 * The buffer list for this type consists of one or more of the
1388 * protection groups described below:
1389 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001390 * start of first prot group --> | PDE_5 |
James Smarte2a0a9d2008-12-04 22:40:02 -05001391 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001392 * | PDE_6 |
1393 * +-------------------------+
1394 * | PDE_7 (Prot BDE) |
James Smarte2a0a9d2008-12-04 22:40:02 -05001395 * +-------------------------+
1396 * | Data BDE |
1397 * +-------------------------+
1398 * |more Data BDE's ... (opt)|
1399 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001400 * start of new prot group --> | PDE_5 |
James Smarte2a0a9d2008-12-04 22:40:02 -05001401 * +-------------------------+
1402 * | ... |
1403 * +-------------------------+
1404 *
1405 * @sc: pointer to scsi command we're working on
1406 * @bpl: pointer to buffer list for protection groups
1407 * @datacnt: number of segments of data that have been dma mapped
1408 * @protcnt: number of segment of protection data that have been dma mapped
1409 *
1410 * Note: It is assumed that both data and protection s/g buffers have been
1411 * mapped for DMA
1412 */
1413static int
1414lpfc_bg_setup_bpl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1415 struct ulp_bde64 *bpl, int datacnt, int protcnt)
1416{
1417 struct scatterlist *sgde = NULL; /* s/g data entry */
1418 struct scatterlist *sgpe = NULL; /* s/g prot entry */
James Smart6c8eea52010-04-06 14:49:53 -04001419 struct lpfc_pde5 *pde5 = NULL;
1420 struct lpfc_pde6 *pde6 = NULL;
James Smarte2a0a9d2008-12-04 22:40:02 -05001421 struct ulp_bde64 *prot_bde = NULL;
1422 dma_addr_t dataphysaddr, protphysaddr;
1423 unsigned short curr_data = 0, curr_prot = 0;
1424 unsigned int split_offset, protgroup_len;
1425 unsigned int protgrp_blks, protgrp_bytes;
1426 unsigned int remainder, subtotal;
James Smart6c8eea52010-04-06 14:49:53 -04001427 int status;
James Smarte2a0a9d2008-12-04 22:40:02 -05001428 int datadir = sc->sc_data_direction;
1429 unsigned char pgdone = 0, alldone = 0;
1430 unsigned blksize;
1431 uint32_t reftag;
1432 uint16_t apptagmask, apptagval;
James Smart6c8eea52010-04-06 14:49:53 -04001433 uint8_t txop, rxop;
James Smarte2a0a9d2008-12-04 22:40:02 -05001434 int num_bde = 0;
1435
1436 sgpe = scsi_prot_sglist(sc);
1437 sgde = scsi_sglist(sc);
1438
1439 if (!sgpe || !sgde) {
1440 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1441 "9020 Invalid s/g entry: data=0x%p prot=0x%p\n",
1442 sgpe, sgde);
1443 return 0;
1444 }
1445
James Smart6c8eea52010-04-06 14:49:53 -04001446 status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
1447 if (status)
James Smarte2a0a9d2008-12-04 22:40:02 -05001448 goto out;
1449
James Smart6c8eea52010-04-06 14:49:53 -04001450 /* extract some info from the scsi command */
James Smarte2a0a9d2008-12-04 22:40:02 -05001451 blksize = lpfc_cmd_blksize(sc);
1452 lpfc_get_cmd_dif_parms(sc, &apptagmask, &apptagval, &reftag);
1453
1454 split_offset = 0;
1455 do {
James Smart6c8eea52010-04-06 14:49:53 -04001456 /* setup PDE5 with what we have */
1457 pde5 = (struct lpfc_pde5 *) bpl;
1458 memset(pde5, 0, sizeof(struct lpfc_pde5));
1459 bf_set(pde5_type, pde5, LPFC_PDE5_DESCRIPTOR);
1460 pde5->reftag = reftag;
James Smarte2a0a9d2008-12-04 22:40:02 -05001461
James Smart589a52d2010-07-14 15:30:54 -04001462 /* Endian convertion if necessary for PDE5 */
1463 pde5->word0 = cpu_to_le32(pde5->word0);
1464 pde5->reftag = cpu_to_le32(pde5->reftag);
1465
James Smart6c8eea52010-04-06 14:49:53 -04001466 /* advance bpl and increment bde count */
1467 num_bde++;
1468 bpl++;
1469 pde6 = (struct lpfc_pde6 *) bpl;
James Smarte2a0a9d2008-12-04 22:40:02 -05001470
James Smart6c8eea52010-04-06 14:49:53 -04001471 /* setup PDE6 with the rest of the info */
1472 memset(pde6, 0, sizeof(struct lpfc_pde6));
1473 bf_set(pde6_type, pde6, LPFC_PDE6_DESCRIPTOR);
1474 bf_set(pde6_optx, pde6, txop);
1475 bf_set(pde6_oprx, pde6, rxop);
1476 bf_set(pde6_ce, pde6, 1);
1477 bf_set(pde6_re, pde6, 1);
1478 bf_set(pde6_ae, pde6, 1);
1479 bf_set(pde6_ai, pde6, 1);
1480 bf_set(pde6_apptagval, pde6, apptagval);
1481
James Smart589a52d2010-07-14 15:30:54 -04001482 /* Endian convertion if necessary for PDE6 */
1483 pde6->word0 = cpu_to_le32(pde6->word0);
1484 pde6->word1 = cpu_to_le32(pde6->word1);
1485 pde6->word2 = cpu_to_le32(pde6->word2);
1486
James Smart6c8eea52010-04-06 14:49:53 -04001487 /* advance bpl and increment bde count */
James Smarte2a0a9d2008-12-04 22:40:02 -05001488 num_bde++;
1489 bpl++;
1490
1491 /* setup the first BDE that points to protection buffer */
1492 prot_bde = (struct ulp_bde64 *) bpl;
1493 protphysaddr = sg_dma_address(sgpe);
James Smart6c8eea52010-04-06 14:49:53 -04001494 prot_bde->addrHigh = le32_to_cpu(putPaddrLow(protphysaddr));
1495 prot_bde->addrLow = le32_to_cpu(putPaddrHigh(protphysaddr));
James Smarte2a0a9d2008-12-04 22:40:02 -05001496 protgroup_len = sg_dma_len(sgpe);
1497
James Smarte2a0a9d2008-12-04 22:40:02 -05001498 /* must be integer multiple of the DIF block length */
1499 BUG_ON(protgroup_len % 8);
1500
1501 protgrp_blks = protgroup_len / 8;
1502 protgrp_bytes = protgrp_blks * blksize;
1503
1504 prot_bde->tus.f.bdeSize = protgroup_len;
James Smart6c8eea52010-04-06 14:49:53 -04001505 prot_bde->tus.f.bdeFlags = LPFC_PDE7_DESCRIPTOR;
James Smarte2a0a9d2008-12-04 22:40:02 -05001506 prot_bde->tus.w = le32_to_cpu(bpl->tus.w);
1507
1508 curr_prot++;
1509 num_bde++;
1510
1511 /* setup BDE's for data blocks associated with DIF data */
1512 pgdone = 0;
1513 subtotal = 0; /* total bytes processed for current prot grp */
1514 while (!pgdone) {
1515 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -04001516 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1517 "9065 BLKGRD:%s Invalid data segment\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001518 __func__);
1519 return 0;
1520 }
1521 bpl++;
1522 dataphysaddr = sg_dma_address(sgde) + split_offset;
1523 bpl->addrLow = le32_to_cpu(putPaddrLow(dataphysaddr));
1524 bpl->addrHigh = le32_to_cpu(putPaddrHigh(dataphysaddr));
1525
1526 remainder = sg_dma_len(sgde) - split_offset;
1527
1528 if ((subtotal + remainder) <= protgrp_bytes) {
1529 /* we can use this whole buffer */
1530 bpl->tus.f.bdeSize = remainder;
1531 split_offset = 0;
1532
1533 if ((subtotal + remainder) == protgrp_bytes)
1534 pgdone = 1;
1535 } else {
1536 /* must split this buffer with next prot grp */
1537 bpl->tus.f.bdeSize = protgrp_bytes - subtotal;
1538 split_offset += bpl->tus.f.bdeSize;
1539 }
1540
1541 subtotal += bpl->tus.f.bdeSize;
1542
1543 if (datadir == DMA_TO_DEVICE)
1544 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1545 else
1546 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
1547 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1548
1549 num_bde++;
1550 curr_data++;
1551
1552 if (split_offset)
1553 break;
1554
1555 /* Move to the next s/g segment if possible */
1556 sgde = sg_next(sgde);
James Smart6c8eea52010-04-06 14:49:53 -04001557
James Smarte2a0a9d2008-12-04 22:40:02 -05001558 }
1559
1560 /* are we done ? */
1561 if (curr_prot == protcnt) {
1562 alldone = 1;
1563 } else if (curr_prot < protcnt) {
1564 /* advance to next prot buffer */
1565 sgpe = sg_next(sgpe);
1566 bpl++;
1567
1568 /* update the reference tag */
1569 reftag += protgrp_blks;
1570 } else {
1571 /* if we're here, we have a bug */
James Smart6a9c52c2009-10-02 15:16:51 -04001572 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1573 "9054 BLKGRD: bug in %s\n", __func__);
James Smarte2a0a9d2008-12-04 22:40:02 -05001574 }
1575
1576 } while (!alldone);
1577
1578out:
1579
James Smarte2a0a9d2008-12-04 22:40:02 -05001580 return num_bde;
1581}
1582/*
1583 * Given a SCSI command that supports DIF, determine composition of protection
1584 * groups involved in setting up buffer lists
1585 *
1586 * Returns:
1587 * for DIF (for both read and write)
1588 * */
1589static int
1590lpfc_prot_group_type(struct lpfc_hba *phba, struct scsi_cmnd *sc)
1591{
1592 int ret = LPFC_PG_TYPE_INVALID;
1593 unsigned char op = scsi_get_prot_op(sc);
1594
1595 switch (op) {
1596 case SCSI_PROT_READ_STRIP:
1597 case SCSI_PROT_WRITE_INSERT:
1598 ret = LPFC_PG_TYPE_NO_DIF;
1599 break;
1600 case SCSI_PROT_READ_INSERT:
1601 case SCSI_PROT_WRITE_STRIP:
1602 case SCSI_PROT_READ_PASS:
1603 case SCSI_PROT_WRITE_PASS:
James Smarte2a0a9d2008-12-04 22:40:02 -05001604 ret = LPFC_PG_TYPE_DIF_BUF;
1605 break;
1606 default:
1607 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1608 "9021 Unsupported protection op:%d\n", op);
1609 break;
1610 }
1611
1612 return ret;
1613}
1614
1615/*
1616 * This is the protection/DIF aware version of
1617 * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
1618 * two functions eventually, but for now, it's here
1619 */
1620static int
1621lpfc_bg_scsi_prep_dma_buf(struct lpfc_hba *phba,
1622 struct lpfc_scsi_buf *lpfc_cmd)
1623{
1624 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1625 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1626 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
1627 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
1628 uint32_t num_bde = 0;
1629 int datasegcnt, protsegcnt, datadir = scsi_cmnd->sc_data_direction;
1630 int prot_group_type = 0;
1631 int diflen, fcpdl;
1632 unsigned blksize;
1633
1634 /*
1635 * Start the lpfc command prep by bumping the bpl beyond fcp_cmnd
1636 * fcp_rsp regions to the first data bde entry
1637 */
1638 bpl += 2;
1639 if (scsi_sg_count(scsi_cmnd)) {
1640 /*
1641 * The driver stores the segment count returned from pci_map_sg
1642 * because this a count of dma-mappings used to map the use_sg
1643 * pages. They are not guaranteed to be the same for those
1644 * architectures that implement an IOMMU.
1645 */
1646 datasegcnt = dma_map_sg(&phba->pcidev->dev,
1647 scsi_sglist(scsi_cmnd),
1648 scsi_sg_count(scsi_cmnd), datadir);
1649 if (unlikely(!datasegcnt))
1650 return 1;
1651
1652 lpfc_cmd->seg_cnt = datasegcnt;
1653 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001654 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1655 "9067 BLKGRD: %s: Too many sg segments"
1656 " from dma_map_sg. Config %d, seg_cnt"
1657 " %d\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001658 __func__, phba->cfg_sg_seg_cnt,
1659 lpfc_cmd->seg_cnt);
1660 scsi_dma_unmap(scsi_cmnd);
1661 return 1;
1662 }
1663
1664 prot_group_type = lpfc_prot_group_type(phba, scsi_cmnd);
1665
1666 switch (prot_group_type) {
1667 case LPFC_PG_TYPE_NO_DIF:
1668 num_bde = lpfc_bg_setup_bpl(phba, scsi_cmnd, bpl,
1669 datasegcnt);
Adam Buchbinderc9404c92009-12-18 15:40:42 -05001670 /* we should have 2 or more entries in buffer list */
James Smarte2a0a9d2008-12-04 22:40:02 -05001671 if (num_bde < 2)
1672 goto err;
1673 break;
1674 case LPFC_PG_TYPE_DIF_BUF:{
1675 /*
1676 * This type indicates that protection buffers are
1677 * passed to the driver, so that needs to be prepared
1678 * for DMA
1679 */
1680 protsegcnt = dma_map_sg(&phba->pcidev->dev,
1681 scsi_prot_sglist(scsi_cmnd),
1682 scsi_prot_sg_count(scsi_cmnd), datadir);
1683 if (unlikely(!protsegcnt)) {
1684 scsi_dma_unmap(scsi_cmnd);
1685 return 1;
1686 }
1687
1688 lpfc_cmd->prot_seg_cnt = protsegcnt;
1689 if (lpfc_cmd->prot_seg_cnt
1690 > phba->cfg_prot_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001691 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1692 "9068 BLKGRD: %s: Too many prot sg "
1693 "segments from dma_map_sg. Config %d,"
James Smarte2a0a9d2008-12-04 22:40:02 -05001694 "prot_seg_cnt %d\n", __func__,
1695 phba->cfg_prot_sg_seg_cnt,
1696 lpfc_cmd->prot_seg_cnt);
1697 dma_unmap_sg(&phba->pcidev->dev,
1698 scsi_prot_sglist(scsi_cmnd),
1699 scsi_prot_sg_count(scsi_cmnd),
1700 datadir);
1701 scsi_dma_unmap(scsi_cmnd);
1702 return 1;
1703 }
1704
1705 num_bde = lpfc_bg_setup_bpl_prot(phba, scsi_cmnd, bpl,
1706 datasegcnt, protsegcnt);
Adam Buchbinderc9404c92009-12-18 15:40:42 -05001707 /* we should have 3 or more entries in buffer list */
James Smarte2a0a9d2008-12-04 22:40:02 -05001708 if (num_bde < 3)
1709 goto err;
1710 break;
1711 }
1712 case LPFC_PG_TYPE_INVALID:
1713 default:
1714 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1715 "9022 Unexpected protection group %i\n",
1716 prot_group_type);
1717 return 1;
1718 }
1719 }
1720
1721 /*
1722 * Finish initializing those IOCB fields that are dependent on the
1723 * scsi_cmnd request_buffer. Note that the bdeSize is explicitly
1724 * reinitialized since all iocb memory resources are used many times
1725 * for transmit, receive, and continuation bpl's.
1726 */
1727 iocb_cmd->un.fcpi64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
1728 iocb_cmd->un.fcpi64.bdl.bdeSize += (num_bde * sizeof(struct ulp_bde64));
1729 iocb_cmd->ulpBdeCount = 1;
1730 iocb_cmd->ulpLe = 1;
1731
1732 fcpdl = scsi_bufflen(scsi_cmnd);
1733
1734 if (scsi_get_prot_type(scsi_cmnd) == SCSI_PROT_DIF_TYPE1) {
1735 /*
1736 * We are in DIF Type 1 mode
1737 * Every data block has a 8 byte DIF (trailer)
1738 * attached to it. Must ajust FCP data length
1739 */
1740 blksize = lpfc_cmd_blksize(scsi_cmnd);
1741 diflen = (fcpdl / blksize) * 8;
1742 fcpdl += diflen;
1743 }
1744 fcp_cmnd->fcpDl = be32_to_cpu(fcpdl);
1745
1746 /*
1747 * Due to difference in data length between DIF/non-DIF paths,
1748 * we need to set word 4 of IOCB here
1749 */
1750 iocb_cmd->un.fcpi.fcpi_parm = fcpdl;
1751
1752 return 0;
1753err:
1754 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1755 "9023 Could not setup all needed BDE's"
1756 "prot_group_type=%d, num_bde=%d\n",
1757 prot_group_type, num_bde);
1758 return 1;
1759}
1760
1761/*
1762 * This function checks for BlockGuard errors detected by
1763 * the HBA. In case of errors, the ASC/ASCQ fields in the
1764 * sense buffer will be set accordingly, paired with
1765 * ILLEGAL_REQUEST to signal to the kernel that the HBA
1766 * detected corruption.
1767 *
1768 * Returns:
1769 * 0 - No error found
1770 * 1 - BlockGuard error found
1771 * -1 - Internal error (bad profile, ...etc)
1772 */
1773static int
1774lpfc_parse_bg_err(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd,
1775 struct lpfc_iocbq *pIocbOut)
1776{
1777 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
1778 struct sli3_bg_fields *bgf = &pIocbOut->iocb.unsli3.sli3_bg;
1779 int ret = 0;
1780 uint32_t bghm = bgf->bghm;
1781 uint32_t bgstat = bgf->bgstat;
1782 uint64_t failing_sector = 0;
1783
James Smart6a9c52c2009-10-02 15:16:51 -04001784 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9069 BLKGRD: BG ERROR in cmd"
1785 " 0x%x lba 0x%llx blk cnt 0x%x "
James Smarte2a0a9d2008-12-04 22:40:02 -05001786 "bgstat=0x%x bghm=0x%x\n",
James Smart87b5c322008-12-16 10:34:09 -05001787 cmd->cmnd[0], (unsigned long long)scsi_get_lba(cmd),
Tejun Heo83096eb2009-05-07 22:24:39 +09001788 blk_rq_sectors(cmd->request), bgstat, bghm);
James Smarte2a0a9d2008-12-04 22:40:02 -05001789
1790 spin_lock(&_dump_buf_lock);
1791 if (!_dump_buf_done) {
James Smart6a9c52c2009-10-02 15:16:51 -04001792 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9070 BLKGRD: Saving"
1793 " Data for %u blocks to debugfs\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001794 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
James Smart6a9c52c2009-10-02 15:16:51 -04001795 lpfc_debug_save_data(phba, cmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05001796
1797 /* If we have a prot sgl, save the DIF buffer */
1798 if (lpfc_prot_group_type(phba, cmd) ==
1799 LPFC_PG_TYPE_DIF_BUF) {
James Smart6a9c52c2009-10-02 15:16:51 -04001800 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9071 BLKGRD: "
1801 "Saving DIF for %u blocks to debugfs\n",
1802 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
1803 lpfc_debug_save_dif(phba, cmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05001804 }
1805
1806 _dump_buf_done = 1;
1807 }
1808 spin_unlock(&_dump_buf_lock);
1809
1810 if (lpfc_bgs_get_invalid_prof(bgstat)) {
1811 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04001812 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9072 BLKGRD: Invalid"
1813 " BlockGuard profile. bgstat:0x%x\n",
1814 bgstat);
James Smarte2a0a9d2008-12-04 22:40:02 -05001815 ret = (-1);
1816 goto out;
1817 }
1818
1819 if (lpfc_bgs_get_uninit_dif_block(bgstat)) {
1820 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04001821 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9073 BLKGRD: "
1822 "Invalid BlockGuard DIF Block. bgstat:0x%x\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001823 bgstat);
1824 ret = (-1);
1825 goto out;
1826 }
1827
1828 if (lpfc_bgs_get_guard_err(bgstat)) {
1829 ret = 1;
1830
1831 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1832 0x10, 0x1);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001833 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001834 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
1835 phba->bg_guard_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04001836 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1837 "9055 BLKGRD: guard_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001838 }
1839
1840 if (lpfc_bgs_get_reftag_err(bgstat)) {
1841 ret = 1;
1842
1843 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1844 0x10, 0x3);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001845 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001846 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
1847
1848 phba->bg_reftag_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04001849 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1850 "9056 BLKGRD: ref_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001851 }
1852
1853 if (lpfc_bgs_get_apptag_err(bgstat)) {
1854 ret = 1;
1855
1856 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1857 0x10, 0x2);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001858 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001859 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
1860
1861 phba->bg_apptag_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04001862 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1863 "9061 BLKGRD: app_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001864 }
1865
1866 if (lpfc_bgs_get_hi_water_mark_present(bgstat)) {
1867 /*
1868 * setup sense data descriptor 0 per SPC-4 as an information
1869 * field, and put the failing LBA in it
1870 */
1871 cmd->sense_buffer[8] = 0; /* Information */
1872 cmd->sense_buffer[9] = 0xa; /* Add. length */
David Howells2344b5b2009-04-14 17:08:34 +01001873 bghm /= cmd->device->sector_size;
James Smarte2a0a9d2008-12-04 22:40:02 -05001874
1875 failing_sector = scsi_get_lba(cmd);
1876 failing_sector += bghm;
1877
1878 put_unaligned_be64(failing_sector, &cmd->sense_buffer[10]);
1879 }
1880
1881 if (!ret) {
1882 /* No error was reported - problem in FW? */
1883 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04001884 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1885 "9057 BLKGRD: no errors reported!\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001886 }
1887
1888out:
1889 return ret;
1890}
1891
James Smartea2151b2008-09-07 11:52:10 -04001892/**
James Smartda0436e2009-05-22 14:51:39 -04001893 * lpfc_scsi_prep_dma_buf_s4 - DMA mapping for scsi buffer to SLI4 IF spec
1894 * @phba: The Hba for which this call is being executed.
1895 * @lpfc_cmd: The scsi buffer which is going to be mapped.
1896 *
1897 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
1898 * field of @lpfc_cmd for device with SLI-4 interface spec.
1899 *
1900 * Return codes:
James Smart6c8eea52010-04-06 14:49:53 -04001901 * 1 - Error
1902 * 0 - Success
James Smartda0436e2009-05-22 14:51:39 -04001903 **/
1904static int
1905lpfc_scsi_prep_dma_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
1906{
1907 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1908 struct scatterlist *sgel = NULL;
1909 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1910 struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
1911 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
1912 dma_addr_t physaddr;
1913 uint32_t num_bde = 0;
1914 uint32_t dma_len;
1915 uint32_t dma_offset = 0;
1916 int nseg;
1917
1918 /*
1919 * There are three possibilities here - use scatter-gather segment, use
1920 * the single mapping, or neither. Start the lpfc command prep by
1921 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1922 * data bde entry.
1923 */
1924 if (scsi_sg_count(scsi_cmnd)) {
1925 /*
1926 * The driver stores the segment count returned from pci_map_sg
1927 * because this a count of dma-mappings used to map the use_sg
1928 * pages. They are not guaranteed to be the same for those
1929 * architectures that implement an IOMMU.
1930 */
1931
1932 nseg = scsi_dma_map(scsi_cmnd);
1933 if (unlikely(!nseg))
1934 return 1;
1935 sgl += 1;
1936 /* clear the last flag in the fcp_rsp map entry */
1937 sgl->word2 = le32_to_cpu(sgl->word2);
1938 bf_set(lpfc_sli4_sge_last, sgl, 0);
1939 sgl->word2 = cpu_to_le32(sgl->word2);
1940 sgl += 1;
1941
1942 lpfc_cmd->seg_cnt = nseg;
1943 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001944 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9074 BLKGRD:"
1945 " %s: Too many sg segments from "
1946 "dma_map_sg. Config %d, seg_cnt %d\n",
1947 __func__, phba->cfg_sg_seg_cnt,
James Smartda0436e2009-05-22 14:51:39 -04001948 lpfc_cmd->seg_cnt);
1949 scsi_dma_unmap(scsi_cmnd);
1950 return 1;
1951 }
1952
1953 /*
1954 * The driver established a maximum scatter-gather segment count
1955 * during probe that limits the number of sg elements in any
1956 * single scsi command. Just run through the seg_cnt and format
1957 * the sge's.
1958 * When using SLI-3 the driver will try to fit all the BDEs into
1959 * the IOCB. If it can't then the BDEs get added to a BPL as it
1960 * does for SLI-2 mode.
1961 */
1962 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
1963 physaddr = sg_dma_address(sgel);
1964 dma_len = sg_dma_len(sgel);
James Smartda0436e2009-05-22 14:51:39 -04001965 sgl->addr_lo = cpu_to_le32(putPaddrLow(physaddr));
1966 sgl->addr_hi = cpu_to_le32(putPaddrHigh(physaddr));
1967 if ((num_bde + 1) == nseg)
1968 bf_set(lpfc_sli4_sge_last, sgl, 1);
1969 else
1970 bf_set(lpfc_sli4_sge_last, sgl, 0);
1971 bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
1972 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05001973 sgl->sge_len = cpu_to_le32(dma_len);
James Smartda0436e2009-05-22 14:51:39 -04001974 dma_offset += dma_len;
1975 sgl++;
1976 }
1977 } else {
1978 sgl += 1;
1979 /* clear the last flag in the fcp_rsp map entry */
1980 sgl->word2 = le32_to_cpu(sgl->word2);
1981 bf_set(lpfc_sli4_sge_last, sgl, 1);
1982 sgl->word2 = cpu_to_le32(sgl->word2);
1983 }
1984
1985 /*
1986 * Finish initializing those IOCB fields that are dependent on the
1987 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
1988 * explicitly reinitialized.
1989 * all iocb memory resources are reused.
1990 */
1991 fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
1992
1993 /*
1994 * Due to difference in data length between DIF/non-DIF paths,
1995 * we need to set word 4 of IOCB here
1996 */
1997 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
1998 return 0;
1999}
2000
2001/**
James Smart3772a992009-05-22 14:50:54 -04002002 * lpfc_scsi_prep_dma_buf - Wrapper function for DMA mapping of scsi buffer
2003 * @phba: The Hba for which this call is being executed.
2004 * @lpfc_cmd: The scsi buffer which is going to be mapped.
2005 *
2006 * This routine wraps the actual DMA mapping function pointer from the
2007 * lpfc_hba struct.
2008 *
2009 * Return codes:
James Smart6c8eea52010-04-06 14:49:53 -04002010 * 1 - Error
2011 * 0 - Success
James Smart3772a992009-05-22 14:50:54 -04002012 **/
2013static inline int
2014lpfc_scsi_prep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
2015{
2016 return phba->lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
2017}
2018
2019/**
James Smart3621a712009-04-06 18:47:14 -04002020 * lpfc_send_scsi_error_event - Posts an event when there is SCSI error
James Smartea2151b2008-09-07 11:52:10 -04002021 * @phba: Pointer to hba context object.
2022 * @vport: Pointer to vport object.
2023 * @lpfc_cmd: Pointer to lpfc scsi command which reported the error.
2024 * @rsp_iocb: Pointer to response iocb object which reported error.
2025 *
2026 * This function posts an event when there is a SCSI command reporting
2027 * error from the scsi device.
2028 **/
2029static void
2030lpfc_send_scsi_error_event(struct lpfc_hba *phba, struct lpfc_vport *vport,
2031 struct lpfc_scsi_buf *lpfc_cmd, struct lpfc_iocbq *rsp_iocb) {
2032 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
2033 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
2034 uint32_t resp_info = fcprsp->rspStatus2;
2035 uint32_t scsi_status = fcprsp->rspStatus3;
2036 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
2037 struct lpfc_fast_path_event *fast_path_evt = NULL;
2038 struct lpfc_nodelist *pnode = lpfc_cmd->rdata->pnode;
2039 unsigned long flags;
2040
2041 /* If there is queuefull or busy condition send a scsi event */
2042 if ((cmnd->result == SAM_STAT_TASK_SET_FULL) ||
2043 (cmnd->result == SAM_STAT_BUSY)) {
2044 fast_path_evt = lpfc_alloc_fast_evt(phba);
2045 if (!fast_path_evt)
2046 return;
2047 fast_path_evt->un.scsi_evt.event_type =
2048 FC_REG_SCSI_EVENT;
2049 fast_path_evt->un.scsi_evt.subcategory =
2050 (cmnd->result == SAM_STAT_TASK_SET_FULL) ?
2051 LPFC_EVENT_QFULL : LPFC_EVENT_DEVBSY;
2052 fast_path_evt->un.scsi_evt.lun = cmnd->device->lun;
2053 memcpy(&fast_path_evt->un.scsi_evt.wwpn,
2054 &pnode->nlp_portname, sizeof(struct lpfc_name));
2055 memcpy(&fast_path_evt->un.scsi_evt.wwnn,
2056 &pnode->nlp_nodename, sizeof(struct lpfc_name));
2057 } else if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen &&
2058 ((cmnd->cmnd[0] == READ_10) || (cmnd->cmnd[0] == WRITE_10))) {
2059 fast_path_evt = lpfc_alloc_fast_evt(phba);
2060 if (!fast_path_evt)
2061 return;
2062 fast_path_evt->un.check_cond_evt.scsi_event.event_type =
2063 FC_REG_SCSI_EVENT;
2064 fast_path_evt->un.check_cond_evt.scsi_event.subcategory =
2065 LPFC_EVENT_CHECK_COND;
2066 fast_path_evt->un.check_cond_evt.scsi_event.lun =
2067 cmnd->device->lun;
2068 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwpn,
2069 &pnode->nlp_portname, sizeof(struct lpfc_name));
2070 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwnn,
2071 &pnode->nlp_nodename, sizeof(struct lpfc_name));
2072 fast_path_evt->un.check_cond_evt.sense_key =
2073 cmnd->sense_buffer[2] & 0xf;
2074 fast_path_evt->un.check_cond_evt.asc = cmnd->sense_buffer[12];
2075 fast_path_evt->un.check_cond_evt.ascq = cmnd->sense_buffer[13];
2076 } else if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
2077 fcpi_parm &&
2078 ((be32_to_cpu(fcprsp->rspResId) != fcpi_parm) ||
2079 ((scsi_status == SAM_STAT_GOOD) &&
2080 !(resp_info & (RESID_UNDER | RESID_OVER))))) {
2081 /*
2082 * If status is good or resid does not match with fcp_param and
2083 * there is valid fcpi_parm, then there is a read_check error
2084 */
2085 fast_path_evt = lpfc_alloc_fast_evt(phba);
2086 if (!fast_path_evt)
2087 return;
2088 fast_path_evt->un.read_check_error.header.event_type =
2089 FC_REG_FABRIC_EVENT;
2090 fast_path_evt->un.read_check_error.header.subcategory =
2091 LPFC_EVENT_FCPRDCHKERR;
2092 memcpy(&fast_path_evt->un.read_check_error.header.wwpn,
2093 &pnode->nlp_portname, sizeof(struct lpfc_name));
2094 memcpy(&fast_path_evt->un.read_check_error.header.wwnn,
2095 &pnode->nlp_nodename, sizeof(struct lpfc_name));
2096 fast_path_evt->un.read_check_error.lun = cmnd->device->lun;
2097 fast_path_evt->un.read_check_error.opcode = cmnd->cmnd[0];
2098 fast_path_evt->un.read_check_error.fcpiparam =
2099 fcpi_parm;
2100 } else
2101 return;
2102
2103 fast_path_evt->vport = vport;
2104 spin_lock_irqsave(&phba->hbalock, flags);
2105 list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
2106 spin_unlock_irqrestore(&phba->hbalock, flags);
2107 lpfc_worker_wake_up(phba);
2108 return;
2109}
James Smart9bad7672008-12-04 22:39:02 -05002110
2111/**
James Smartf1126682009-06-10 17:22:44 -04002112 * lpfc_scsi_unprep_dma_buf - Un-map DMA mapping of SG-list for dev
James Smart3772a992009-05-22 14:50:54 -04002113 * @phba: The HBA for which this call is being executed.
James Smart9bad7672008-12-04 22:39:02 -05002114 * @psb: The scsi buffer which is going to be un-mapped.
2115 *
2116 * This routine does DMA un-mapping of scatter gather list of scsi command
James Smart3772a992009-05-22 14:50:54 -04002117 * field of @lpfc_cmd for device with SLI-3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002118 **/
dea31012005-04-17 16:05:31 -05002119static void
James Smartf1126682009-06-10 17:22:44 -04002120lpfc_scsi_unprep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James Smartbcf4dbf2006-07-06 15:50:08 -04002121{
2122 /*
2123 * There are only two special cases to consider. (1) the scsi command
2124 * requested scatter-gather usage or (2) the scsi command allocated
2125 * a request buffer, but did not request use_sg. There is a third
2126 * case, but it does not require resource deallocation.
2127 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002128 if (psb->seg_cnt > 0)
2129 scsi_dma_unmap(psb->pCmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05002130 if (psb->prot_seg_cnt > 0)
2131 dma_unmap_sg(&phba->pcidev->dev, scsi_prot_sglist(psb->pCmd),
2132 scsi_prot_sg_count(psb->pCmd),
2133 psb->pCmd->sc_data_direction);
James Smartbcf4dbf2006-07-06 15:50:08 -04002134}
2135
James Smart9bad7672008-12-04 22:39:02 -05002136/**
James Smart3621a712009-04-06 18:47:14 -04002137 * lpfc_handler_fcp_err - FCP response handler
James Smart9bad7672008-12-04 22:39:02 -05002138 * @vport: The virtual port for which this call is being executed.
2139 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2140 * @rsp_iocb: The response IOCB which contains FCP error.
2141 *
2142 * This routine is called to process response IOCB with status field
2143 * IOSTAT_FCP_RSP_ERROR. This routine sets result field of scsi command
2144 * based upon SCSI and FCP error.
2145 **/
James Smartbcf4dbf2006-07-06 15:50:08 -04002146static void
James Smart2e0fef82007-06-17 19:56:36 -05002147lpfc_handle_fcp_err(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
2148 struct lpfc_iocbq *rsp_iocb)
dea31012005-04-17 16:05:31 -05002149{
2150 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
2151 struct fcp_cmnd *fcpcmd = lpfc_cmd->fcp_cmnd;
2152 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
James Smart7054a602007-04-25 09:52:34 -04002153 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
dea31012005-04-17 16:05:31 -05002154 uint32_t resp_info = fcprsp->rspStatus2;
2155 uint32_t scsi_status = fcprsp->rspStatus3;
James Smartc7743952006-12-02 13:34:42 -05002156 uint32_t *lp;
dea31012005-04-17 16:05:31 -05002157 uint32_t host_status = DID_OK;
2158 uint32_t rsplen = 0;
James Smartc7743952006-12-02 13:34:42 -05002159 uint32_t logit = LOG_FCP | LOG_FCP_ERROR;
dea31012005-04-17 16:05:31 -05002160
James Smartea2151b2008-09-07 11:52:10 -04002161
dea31012005-04-17 16:05:31 -05002162 /*
2163 * If this is a task management command, there is no
2164 * scsi packet associated with this lpfc_cmd. The driver
2165 * consumes it.
2166 */
2167 if (fcpcmd->fcpCntl2) {
2168 scsi_status = 0;
2169 goto out;
2170 }
2171
James Smart6a9c52c2009-10-02 15:16:51 -04002172 if (resp_info & RSP_LEN_VALID) {
2173 rsplen = be32_to_cpu(fcprsp->rspRspLen);
James Smarte40a02c2010-02-26 14:13:54 -05002174 if (rsplen != 0 && rsplen != 4 && rsplen != 8) {
James Smart6a9c52c2009-10-02 15:16:51 -04002175 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
2176 "2719 Invalid response length: "
2177 "tgt x%x lun x%x cmnd x%x rsplen x%x\n",
2178 cmnd->device->id,
2179 cmnd->device->lun, cmnd->cmnd[0],
2180 rsplen);
2181 host_status = DID_ERROR;
2182 goto out;
2183 }
James Smarte40a02c2010-02-26 14:13:54 -05002184 if (fcprsp->rspInfo3 != RSP_NO_FAILURE) {
2185 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
2186 "2757 Protocol failure detected during "
2187 "processing of FCP I/O op: "
2188 "tgt x%x lun x%x cmnd x%x rspInfo3 x%x\n",
2189 cmnd->device->id,
2190 cmnd->device->lun, cmnd->cmnd[0],
2191 fcprsp->rspInfo3);
2192 host_status = DID_ERROR;
2193 goto out;
2194 }
James Smart6a9c52c2009-10-02 15:16:51 -04002195 }
2196
James Smartc7743952006-12-02 13:34:42 -05002197 if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen) {
2198 uint32_t snslen = be32_to_cpu(fcprsp->rspSnsLen);
2199 if (snslen > SCSI_SENSE_BUFFERSIZE)
2200 snslen = SCSI_SENSE_BUFFERSIZE;
2201
2202 if (resp_info & RSP_LEN_VALID)
2203 rsplen = be32_to_cpu(fcprsp->rspRspLen);
2204 memcpy(cmnd->sense_buffer, &fcprsp->rspInfo0 + rsplen, snslen);
2205 }
2206 lp = (uint32_t *)cmnd->sense_buffer;
2207
2208 if (!scsi_status && (resp_info & RESID_UNDER))
2209 logit = LOG_FCP;
2210
James Smarte8b62012007-08-02 11:10:09 -04002211 lpfc_printf_vlog(vport, KERN_WARNING, logit,
James Smarte2a0a9d2008-12-04 22:40:02 -05002212 "9024 FCP command x%x failed: x%x SNS x%x x%x "
James Smarte8b62012007-08-02 11:10:09 -04002213 "Data: x%x x%x x%x x%x x%x\n",
2214 cmnd->cmnd[0], scsi_status,
2215 be32_to_cpu(*lp), be32_to_cpu(*(lp + 3)), resp_info,
2216 be32_to_cpu(fcprsp->rspResId),
2217 be32_to_cpu(fcprsp->rspSnsLen),
2218 be32_to_cpu(fcprsp->rspRspLen),
2219 fcprsp->rspInfo3);
dea31012005-04-17 16:05:31 -05002220
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002221 scsi_set_resid(cmnd, 0);
dea31012005-04-17 16:05:31 -05002222 if (resp_info & RESID_UNDER) {
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002223 scsi_set_resid(cmnd, be32_to_cpu(fcprsp->rspResId));
dea31012005-04-17 16:05:31 -05002224
James Smarte8b62012007-08-02 11:10:09 -04002225 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002226 "9025 FCP Read Underrun, expected %d, "
James Smarte8b62012007-08-02 11:10:09 -04002227 "residual %d Data: x%x x%x x%x\n",
2228 be32_to_cpu(fcpcmd->fcpDl),
2229 scsi_get_resid(cmnd), fcpi_parm, cmnd->cmnd[0],
2230 cmnd->underflow);
dea31012005-04-17 16:05:31 -05002231
2232 /*
James Smart7054a602007-04-25 09:52:34 -04002233 * If there is an under run check if under run reported by
2234 * storage array is same as the under run reported by HBA.
2235 * If this is not same, there is a dropped frame.
2236 */
2237 if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
2238 fcpi_parm &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002239 (scsi_get_resid(cmnd) != fcpi_parm)) {
James Smarte8b62012007-08-02 11:10:09 -04002240 lpfc_printf_vlog(vport, KERN_WARNING,
2241 LOG_FCP | LOG_FCP_ERROR,
James Smarte2a0a9d2008-12-04 22:40:02 -05002242 "9026 FCP Read Check Error "
James Smarte8b62012007-08-02 11:10:09 -04002243 "and Underrun Data: x%x x%x x%x x%x\n",
2244 be32_to_cpu(fcpcmd->fcpDl),
2245 scsi_get_resid(cmnd), fcpi_parm,
2246 cmnd->cmnd[0]);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002247 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
James Smart7054a602007-04-25 09:52:34 -04002248 host_status = DID_ERROR;
2249 }
2250 /*
dea31012005-04-17 16:05:31 -05002251 * The cmnd->underflow is the minimum number of bytes that must
2252 * be transfered for this command. Provided a sense condition
2253 * is not present, make sure the actual amount transferred is at
2254 * least the underflow value or fail.
2255 */
2256 if (!(resp_info & SNS_LEN_VALID) &&
2257 (scsi_status == SAM_STAT_GOOD) &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002258 (scsi_bufflen(cmnd) - scsi_get_resid(cmnd)
2259 < cmnd->underflow)) {
James Smarte8b62012007-08-02 11:10:09 -04002260 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002261 "9027 FCP command x%x residual "
James Smarte8b62012007-08-02 11:10:09 -04002262 "underrun converted to error "
2263 "Data: x%x x%x x%x\n",
James Smart66dbfbe2007-08-05 06:08:38 -04002264 cmnd->cmnd[0], scsi_bufflen(cmnd),
James Smarte8b62012007-08-02 11:10:09 -04002265 scsi_get_resid(cmnd), cmnd->underflow);
dea31012005-04-17 16:05:31 -05002266 host_status = DID_ERROR;
2267 }
2268 } else if (resp_info & RESID_OVER) {
James Smarte8b62012007-08-02 11:10:09 -04002269 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002270 "9028 FCP command x%x residual overrun error. "
James Smarte4e74272009-07-19 10:01:38 -04002271 "Data: x%x x%x\n", cmnd->cmnd[0],
James Smarte8b62012007-08-02 11:10:09 -04002272 scsi_bufflen(cmnd), scsi_get_resid(cmnd));
dea31012005-04-17 16:05:31 -05002273 host_status = DID_ERROR;
2274
2275 /*
2276 * Check SLI validation that all the transfer was actually done
2277 * (fcpi_parm should be zero). Apply check only to reads.
2278 */
2279 } else if ((scsi_status == SAM_STAT_GOOD) && fcpi_parm &&
2280 (cmnd->sc_data_direction == DMA_FROM_DEVICE)) {
James Smarte8b62012007-08-02 11:10:09 -04002281 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP | LOG_FCP_ERROR,
James Smarte2a0a9d2008-12-04 22:40:02 -05002282 "9029 FCP Read Check Error Data: "
James Smarte8b62012007-08-02 11:10:09 -04002283 "x%x x%x x%x x%x\n",
2284 be32_to_cpu(fcpcmd->fcpDl),
2285 be32_to_cpu(fcprsp->rspResId),
2286 fcpi_parm, cmnd->cmnd[0]);
dea31012005-04-17 16:05:31 -05002287 host_status = DID_ERROR;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002288 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
dea31012005-04-17 16:05:31 -05002289 }
2290
2291 out:
2292 cmnd->result = ScsiResult(host_status, scsi_status);
James Smartea2151b2008-09-07 11:52:10 -04002293 lpfc_send_scsi_error_event(vport->phba, vport, lpfc_cmd, rsp_iocb);
dea31012005-04-17 16:05:31 -05002294}
2295
James Smart9bad7672008-12-04 22:39:02 -05002296/**
James Smart3621a712009-04-06 18:47:14 -04002297 * lpfc_scsi_cmd_iocb_cmpl - Scsi cmnd IOCB completion routine
James Smart9bad7672008-12-04 22:39:02 -05002298 * @phba: The Hba for which this call is being executed.
2299 * @pIocbIn: The command IOCBQ for the scsi cmnd.
James Smart3772a992009-05-22 14:50:54 -04002300 * @pIocbOut: The response IOCBQ for the scsi cmnd.
James Smart9bad7672008-12-04 22:39:02 -05002301 *
2302 * This routine assigns scsi command result by looking into response IOCB
2303 * status field appropriately. This routine handles QUEUE FULL condition as
2304 * well by ramping down device queue depth.
2305 **/
dea31012005-04-17 16:05:31 -05002306static void
2307lpfc_scsi_cmd_iocb_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *pIocbIn,
2308 struct lpfc_iocbq *pIocbOut)
2309{
2310 struct lpfc_scsi_buf *lpfc_cmd =
2311 (struct lpfc_scsi_buf *) pIocbIn->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002312 struct lpfc_vport *vport = pIocbIn->vport;
dea31012005-04-17 16:05:31 -05002313 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
2314 struct lpfc_nodelist *pnode = rdata->pnode;
James Smart75baf692010-06-08 18:31:21 -04002315 struct scsi_cmnd *cmd;
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002316 int result;
James Smarta257bf92009-04-06 18:48:10 -04002317 struct scsi_device *tmp_sdev;
James Smart5ffc2662009-11-18 15:39:44 -05002318 int depth;
James Smartfa61a542008-01-11 01:52:42 -05002319 unsigned long flags;
James Smartea2151b2008-09-07 11:52:10 -04002320 struct lpfc_fast_path_event *fast_path_evt;
James Smart75baf692010-06-08 18:31:21 -04002321 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -04002322 uint32_t queue_depth, scsi_id;
dea31012005-04-17 16:05:31 -05002323
James Smart75baf692010-06-08 18:31:21 -04002324 /* Sanity check on return of outstanding command */
2325 if (!(lpfc_cmd->pCmd))
2326 return;
2327 cmd = lpfc_cmd->pCmd;
2328 shost = cmd->device->host;
2329
dea31012005-04-17 16:05:31 -05002330 lpfc_cmd->result = pIocbOut->iocb.un.ulpWord[4];
2331 lpfc_cmd->status = pIocbOut->iocb.ulpStatus;
James Smart341af102010-01-26 23:07:37 -05002332 /* pick up SLI4 exhange busy status from HBA */
2333 lpfc_cmd->exch_busy = pIocbOut->iocb_flag & LPFC_EXCHANGE_BUSY;
2334
James Smart109f6ed2008-12-04 22:39:08 -05002335 if (pnode && NLP_CHK_NODE_ACT(pnode))
2336 atomic_dec(&pnode->cmd_pending);
dea31012005-04-17 16:05:31 -05002337
2338 if (lpfc_cmd->status) {
2339 if (lpfc_cmd->status == IOSTAT_LOCAL_REJECT &&
2340 (lpfc_cmd->result & IOERR_DRVR_MASK))
2341 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
2342 else if (lpfc_cmd->status >= IOSTAT_CNT)
2343 lpfc_cmd->status = IOSTAT_DEFAULT;
2344
James Smarte8b62012007-08-02 11:10:09 -04002345 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002346 "9030 FCP cmd x%x failed <%d/%d> "
James Smarte8b62012007-08-02 11:10:09 -04002347 "status: x%x result: x%x Data: x%x x%x\n",
2348 cmd->cmnd[0],
2349 cmd->device ? cmd->device->id : 0xffff,
2350 cmd->device ? cmd->device->lun : 0xffff,
2351 lpfc_cmd->status, lpfc_cmd->result,
2352 pIocbOut->iocb.ulpContext,
2353 lpfc_cmd->cur_iocbq.iocb.ulpIoTag);
dea31012005-04-17 16:05:31 -05002354
2355 switch (lpfc_cmd->status) {
2356 case IOSTAT_FCP_RSP_ERROR:
2357 /* Call FCP RSP handler to determine result */
James Smart2e0fef82007-06-17 19:56:36 -05002358 lpfc_handle_fcp_err(vport, lpfc_cmd, pIocbOut);
dea31012005-04-17 16:05:31 -05002359 break;
2360 case IOSTAT_NPORT_BSY:
2361 case IOSTAT_FABRIC_BSY:
James Smart0f1f53a2008-08-24 21:50:18 -04002362 cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED, 0);
James Smartea2151b2008-09-07 11:52:10 -04002363 fast_path_evt = lpfc_alloc_fast_evt(phba);
2364 if (!fast_path_evt)
2365 break;
2366 fast_path_evt->un.fabric_evt.event_type =
2367 FC_REG_FABRIC_EVENT;
2368 fast_path_evt->un.fabric_evt.subcategory =
2369 (lpfc_cmd->status == IOSTAT_NPORT_BSY) ?
2370 LPFC_EVENT_PORT_BUSY : LPFC_EVENT_FABRIC_BUSY;
2371 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
2372 memcpy(&fast_path_evt->un.fabric_evt.wwpn,
2373 &pnode->nlp_portname,
2374 sizeof(struct lpfc_name));
2375 memcpy(&fast_path_evt->un.fabric_evt.wwnn,
2376 &pnode->nlp_nodename,
2377 sizeof(struct lpfc_name));
2378 }
2379 fast_path_evt->vport = vport;
2380 fast_path_evt->work_evt.evt =
2381 LPFC_EVT_FASTPATH_MGMT_EVT;
2382 spin_lock_irqsave(&phba->hbalock, flags);
2383 list_add_tail(&fast_path_evt->work_evt.evt_listp,
2384 &phba->work_list);
2385 spin_unlock_irqrestore(&phba->hbalock, flags);
2386 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05002387 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002388 case IOSTAT_LOCAL_REJECT:
James Smartd7c255b2008-08-24 21:50:00 -04002389 if (lpfc_cmd->result == IOERR_INVALID_RPI ||
James Smart92d7f7b2007-06-17 19:56:38 -05002390 lpfc_cmd->result == IOERR_NO_RESOURCES ||
James Smartb92938b2010-06-07 15:24:12 -04002391 lpfc_cmd->result == IOERR_ABORT_REQUESTED ||
2392 lpfc_cmd->result == IOERR_SLER_CMD_RCV_FAILURE) {
James Smart92d7f7b2007-06-17 19:56:38 -05002393 cmd->result = ScsiResult(DID_REQUEUE, 0);
James Smart58da1ff2008-04-07 10:15:56 -04002394 break;
James Smarte2a0a9d2008-12-04 22:40:02 -05002395 }
2396
2397 if ((lpfc_cmd->result == IOERR_RX_DMA_FAILED ||
2398 lpfc_cmd->result == IOERR_TX_DMA_FAILED) &&
2399 pIocbOut->iocb.unsli3.sli3_bg.bgstat) {
2400 if (scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
2401 /*
2402 * This is a response for a BG enabled
2403 * cmd. Parse BG error
2404 */
2405 lpfc_parse_bg_err(phba, lpfc_cmd,
2406 pIocbOut);
2407 break;
2408 } else {
2409 lpfc_printf_vlog(vport, KERN_WARNING,
2410 LOG_BG,
2411 "9031 non-zero BGSTAT "
James Smart6a9c52c2009-10-02 15:16:51 -04002412 "on unprotected cmd\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002413 }
2414 }
2415
2416 /* else: fall through */
dea31012005-04-17 16:05:31 -05002417 default:
2418 cmd->result = ScsiResult(DID_ERROR, 0);
2419 break;
2420 }
2421
James Smart58da1ff2008-04-07 10:15:56 -04002422 if (!pnode || !NLP_CHK_NODE_ACT(pnode)
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002423 || (pnode->nlp_state != NLP_STE_MAPPED_NODE))
James Smart0f1f53a2008-08-24 21:50:18 -04002424 cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED,
2425 SAM_STAT_BUSY);
dea31012005-04-17 16:05:31 -05002426 } else {
2427 cmd->result = ScsiResult(DID_OK, 0);
2428 }
2429
2430 if (cmd->result || lpfc_cmd->fcp_rsp->rspSnsLen) {
2431 uint32_t *lp = (uint32_t *)cmd->sense_buffer;
2432
James Smarte8b62012007-08-02 11:10:09 -04002433 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
2434 "0710 Iodone <%d/%d> cmd %p, error "
2435 "x%x SNS x%x x%x Data: x%x x%x\n",
2436 cmd->device->id, cmd->device->lun, cmd,
2437 cmd->result, *lp, *(lp + 3), cmd->retries,
2438 scsi_get_resid(cmd));
dea31012005-04-17 16:05:31 -05002439 }
2440
James Smartea2151b2008-09-07 11:52:10 -04002441 lpfc_update_stats(phba, lpfc_cmd);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002442 result = cmd->result;
James Smart977b5a02008-09-07 11:52:04 -04002443 if (vport->cfg_max_scsicmpl_time &&
2444 time_after(jiffies, lpfc_cmd->start_time +
2445 msecs_to_jiffies(vport->cfg_max_scsicmpl_time))) {
James Smarta257bf92009-04-06 18:48:10 -04002446 spin_lock_irqsave(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002447 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
2448 if (pnode->cmd_qdepth >
2449 atomic_read(&pnode->cmd_pending) &&
2450 (atomic_read(&pnode->cmd_pending) >
2451 LPFC_MIN_TGT_QDEPTH) &&
2452 ((cmd->cmnd[0] == READ_10) ||
2453 (cmd->cmnd[0] == WRITE_10)))
2454 pnode->cmd_qdepth =
2455 atomic_read(&pnode->cmd_pending);
James Smart977b5a02008-09-07 11:52:04 -04002456
James Smart109f6ed2008-12-04 22:39:08 -05002457 pnode->last_change_time = jiffies;
2458 }
James Smarta257bf92009-04-06 18:48:10 -04002459 spin_unlock_irqrestore(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002460 } else if (pnode && NLP_CHK_NODE_ACT(pnode)) {
2461 if ((pnode->cmd_qdepth < LPFC_MAX_TGT_QDEPTH) &&
James Smart977b5a02008-09-07 11:52:04 -04002462 time_after(jiffies, pnode->last_change_time +
James Smart109f6ed2008-12-04 22:39:08 -05002463 msecs_to_jiffies(LPFC_TGTQ_INTERVAL))) {
James Smarta257bf92009-04-06 18:48:10 -04002464 spin_lock_irqsave(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002465 pnode->cmd_qdepth += pnode->cmd_qdepth *
2466 LPFC_TGTQ_RAMPUP_PCENT / 100;
2467 if (pnode->cmd_qdepth > LPFC_MAX_TGT_QDEPTH)
2468 pnode->cmd_qdepth = LPFC_MAX_TGT_QDEPTH;
2469 pnode->last_change_time = jiffies;
James Smarta257bf92009-04-06 18:48:10 -04002470 spin_unlock_irqrestore(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002471 }
James Smart977b5a02008-09-07 11:52:04 -04002472 }
2473
James Smart1dcb58e2007-04-25 09:51:30 -04002474 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James Smarta257bf92009-04-06 18:48:10 -04002475
2476 /* The sdev is not guaranteed to be valid post scsi_done upcall. */
2477 queue_depth = cmd->device->queue_depth;
2478 scsi_id = cmd->device->id;
dea31012005-04-17 16:05:31 -05002479 cmd->scsi_done(cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002480
Jamie Wellnitzb8086082006-02-28 22:33:12 -05002481 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smartfa61a542008-01-11 01:52:42 -05002482 /*
2483 * If there is a thread waiting for command completion
2484 * wake up the thread.
2485 */
James Smarta257bf92009-04-06 18:48:10 -04002486 spin_lock_irqsave(shost->host_lock, flags);
James Smart495a7142008-06-14 22:52:59 -04002487 lpfc_cmd->pCmd = NULL;
James Smartfa61a542008-01-11 01:52:42 -05002488 if (lpfc_cmd->waitq)
2489 wake_up(lpfc_cmd->waitq);
James Smarta257bf92009-04-06 18:48:10 -04002490 spin_unlock_irqrestore(shost->host_lock, flags);
Jamie Wellnitzb8086082006-02-28 22:33:12 -05002491 lpfc_release_scsi_buf(phba, lpfc_cmd);
2492 return;
2493 }
2494
James Smart92d7f7b2007-06-17 19:56:38 -05002495 if (!result)
James Smarta257bf92009-04-06 18:48:10 -04002496 lpfc_rampup_queue_depth(vport, queue_depth);
James Smart92d7f7b2007-06-17 19:56:38 -05002497
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002498 /*
2499 * Check for queue full. If the lun is reporting queue full, then
2500 * back off the lun queue depth to prevent target overloads.
2501 */
James Smart58da1ff2008-04-07 10:15:56 -04002502 if (result == SAM_STAT_TASK_SET_FULL && pnode &&
2503 NLP_CHK_NODE_ACT(pnode)) {
James Smarta257bf92009-04-06 18:48:10 -04002504 shost_for_each_device(tmp_sdev, shost) {
2505 if (tmp_sdev->id != scsi_id)
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002506 continue;
2507 depth = scsi_track_queue_full(tmp_sdev,
James Smart5ffc2662009-11-18 15:39:44 -05002508 tmp_sdev->queue_depth-1);
2509 if (depth <= 0)
2510 continue;
James Smarte8b62012007-08-02 11:10:09 -04002511 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
2512 "0711 detected queue full - lun queue "
2513 "depth adjusted to %d.\n", depth);
James Smartea2151b2008-09-07 11:52:10 -04002514 lpfc_send_sdev_queuedepth_change_event(phba, vport,
James Smart5ffc2662009-11-18 15:39:44 -05002515 pnode,
2516 tmp_sdev->lun,
2517 depth+1, depth);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002518 }
2519 }
2520
James Smartfa61a542008-01-11 01:52:42 -05002521 /*
2522 * If there is a thread waiting for command completion
2523 * wake up the thread.
2524 */
James Smarta257bf92009-04-06 18:48:10 -04002525 spin_lock_irqsave(shost->host_lock, flags);
James Smart495a7142008-06-14 22:52:59 -04002526 lpfc_cmd->pCmd = NULL;
James Smartfa61a542008-01-11 01:52:42 -05002527 if (lpfc_cmd->waitq)
2528 wake_up(lpfc_cmd->waitq);
James Smarta257bf92009-04-06 18:48:10 -04002529 spin_unlock_irqrestore(shost->host_lock, flags);
James Smartfa61a542008-01-11 01:52:42 -05002530
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002531 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05002532}
2533
James Smart34b02dc2008-08-24 21:49:55 -04002534/**
James Smart3621a712009-04-06 18:47:14 -04002535 * lpfc_fcpcmd_to_iocb - copy the fcp_cmd data into the IOCB
James Smart34b02dc2008-08-24 21:49:55 -04002536 * @data: A pointer to the immediate command data portion of the IOCB.
2537 * @fcp_cmnd: The FCP Command that is provided by the SCSI layer.
2538 *
2539 * The routine copies the entire FCP command from @fcp_cmnd to @data while
2540 * byte swapping the data to big endian format for transmission on the wire.
2541 **/
2542static void
2543lpfc_fcpcmd_to_iocb(uint8_t *data, struct fcp_cmnd *fcp_cmnd)
2544{
2545 int i, j;
2546 for (i = 0, j = 0; i < sizeof(struct fcp_cmnd);
2547 i += sizeof(uint32_t), j++) {
2548 ((uint32_t *)data)[j] = cpu_to_be32(((uint32_t *)fcp_cmnd)[j]);
2549 }
2550}
2551
James Smart9bad7672008-12-04 22:39:02 -05002552/**
James Smartf1126682009-06-10 17:22:44 -04002553 * lpfc_scsi_prep_cmnd - Wrapper func for convert scsi cmnd to FCP info unit
James Smart9bad7672008-12-04 22:39:02 -05002554 * @vport: The virtual port for which this call is being executed.
2555 * @lpfc_cmd: The scsi command which needs to send.
2556 * @pnode: Pointer to lpfc_nodelist.
2557 *
2558 * This routine initializes fcp_cmnd and iocb data structure from scsi command
James Smart3772a992009-05-22 14:50:54 -04002559 * to transfer for device with SLI3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002560 **/
dea31012005-04-17 16:05:31 -05002561static void
James Smartf1126682009-06-10 17:22:44 -04002562lpfc_scsi_prep_cmnd(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
James Smart2e0fef82007-06-17 19:56:36 -05002563 struct lpfc_nodelist *pnode)
dea31012005-04-17 16:05:31 -05002564{
James Smart2e0fef82007-06-17 19:56:36 -05002565 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002566 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
2567 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
2568 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
2569 struct lpfc_iocbq *piocbq = &(lpfc_cmd->cur_iocbq);
2570 int datadir = scsi_cmnd->sc_data_direction;
James Smart7e2b19f2007-10-29 11:00:39 -04002571 char tag[2];
dea31012005-04-17 16:05:31 -05002572
James Smart58da1ff2008-04-07 10:15:56 -04002573 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
2574 return;
2575
dea31012005-04-17 16:05:31 -05002576 lpfc_cmd->fcp_rsp->rspSnsLen = 0;
James.Smart@Emulex.Com69859dc2005-08-10 15:02:37 -04002577 /* clear task management bits */
2578 lpfc_cmd->fcp_cmnd->fcpCntl2 = 0;
dea31012005-04-17 16:05:31 -05002579
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -04002580 int_to_scsilun(lpfc_cmd->pCmd->device->lun,
2581 &lpfc_cmd->fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -05002582
2583 memcpy(&fcp_cmnd->fcpCdb[0], scsi_cmnd->cmnd, 16);
2584
James Smart7e2b19f2007-10-29 11:00:39 -04002585 if (scsi_populate_tag_msg(scsi_cmnd, tag)) {
2586 switch (tag[0]) {
dea31012005-04-17 16:05:31 -05002587 case HEAD_OF_QUEUE_TAG:
2588 fcp_cmnd->fcpCntl1 = HEAD_OF_Q;
2589 break;
2590 case ORDERED_QUEUE_TAG:
2591 fcp_cmnd->fcpCntl1 = ORDERED_Q;
2592 break;
2593 default:
2594 fcp_cmnd->fcpCntl1 = SIMPLE_Q;
2595 break;
2596 }
2597 } else
2598 fcp_cmnd->fcpCntl1 = 0;
2599
2600 /*
2601 * There are three possibilities here - use scatter-gather segment, use
2602 * the single mapping, or neither. Start the lpfc command prep by
2603 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
2604 * data bde entry.
2605 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002606 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -05002607 if (datadir == DMA_TO_DEVICE) {
2608 iocb_cmd->ulpCommand = CMD_FCP_IWRITE64_CR;
James Smart3772a992009-05-22 14:50:54 -04002609 if (phba->sli_rev < LPFC_SLI_REV4) {
2610 iocb_cmd->un.fcpi.fcpi_parm = 0;
2611 iocb_cmd->ulpPU = 0;
2612 } else
2613 iocb_cmd->ulpPU = PARM_READ_CHECK;
dea31012005-04-17 16:05:31 -05002614 fcp_cmnd->fcpCntl3 = WRITE_DATA;
2615 phba->fc4OutputRequests++;
2616 } else {
2617 iocb_cmd->ulpCommand = CMD_FCP_IREAD64_CR;
2618 iocb_cmd->ulpPU = PARM_READ_CHECK;
dea31012005-04-17 16:05:31 -05002619 fcp_cmnd->fcpCntl3 = READ_DATA;
2620 phba->fc4InputRequests++;
2621 }
2622 } else {
2623 iocb_cmd->ulpCommand = CMD_FCP_ICMND64_CR;
2624 iocb_cmd->un.fcpi.fcpi_parm = 0;
2625 iocb_cmd->ulpPU = 0;
2626 fcp_cmnd->fcpCntl3 = 0;
2627 phba->fc4ControlRequests++;
2628 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002629 if (phba->sli_rev == 3 &&
2630 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED))
James Smart34b02dc2008-08-24 21:49:55 -04002631 lpfc_fcpcmd_to_iocb(iocb_cmd->unsli3.fcp_ext.icd, fcp_cmnd);
dea31012005-04-17 16:05:31 -05002632 /*
2633 * Finish initializing those IOCB fields that are independent
2634 * of the scsi_cmnd request_buffer
2635 */
2636 piocbq->iocb.ulpContext = pnode->nlp_rpi;
2637 if (pnode->nlp_fcp_info & NLP_FCP_2_DEVICE)
2638 piocbq->iocb.ulpFCP2Rcvy = 1;
James Smart09372822008-01-11 01:52:54 -05002639 else
2640 piocbq->iocb.ulpFCP2Rcvy = 0;
dea31012005-04-17 16:05:31 -05002641
2642 piocbq->iocb.ulpClass = (pnode->nlp_fcp_info & 0x0f);
2643 piocbq->context1 = lpfc_cmd;
2644 piocbq->iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
2645 piocbq->iocb.ulpTimeout = lpfc_cmd->timeout;
James Smart2e0fef82007-06-17 19:56:36 -05002646 piocbq->vport = vport;
dea31012005-04-17 16:05:31 -05002647}
2648
James Smart9bad7672008-12-04 22:39:02 -05002649/**
James Smartf1126682009-06-10 17:22:44 -04002650 * lpfc_scsi_prep_task_mgmt_cmnd - Convert SLI3 scsi TM cmd to FCP info unit
James Smart9bad7672008-12-04 22:39:02 -05002651 * @vport: The virtual port for which this call is being executed.
2652 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2653 * @lun: Logical unit number.
2654 * @task_mgmt_cmd: SCSI task management command.
2655 *
James Smart3772a992009-05-22 14:50:54 -04002656 * This routine creates FCP information unit corresponding to @task_mgmt_cmd
2657 * for device with SLI-3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002658 *
2659 * Return codes:
2660 * 0 - Error
2661 * 1 - Success
2662 **/
dea31012005-04-17 16:05:31 -05002663static int
James Smartf1126682009-06-10 17:22:44 -04002664lpfc_scsi_prep_task_mgmt_cmd(struct lpfc_vport *vport,
dea31012005-04-17 16:05:31 -05002665 struct lpfc_scsi_buf *lpfc_cmd,
James Smart420b630d2006-07-06 15:50:16 -04002666 unsigned int lun,
dea31012005-04-17 16:05:31 -05002667 uint8_t task_mgmt_cmd)
2668{
dea31012005-04-17 16:05:31 -05002669 struct lpfc_iocbq *piocbq;
2670 IOCB_t *piocb;
2671 struct fcp_cmnd *fcp_cmnd;
James Smart0b18ac42006-05-01 21:50:40 -04002672 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
dea31012005-04-17 16:05:31 -05002673 struct lpfc_nodelist *ndlp = rdata->pnode;
2674
James Smart58da1ff2008-04-07 10:15:56 -04002675 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
2676 ndlp->nlp_state != NLP_STE_MAPPED_NODE)
dea31012005-04-17 16:05:31 -05002677 return 0;
dea31012005-04-17 16:05:31 -05002678
dea31012005-04-17 16:05:31 -05002679 piocbq = &(lpfc_cmd->cur_iocbq);
James Smart2e0fef82007-06-17 19:56:36 -05002680 piocbq->vport = vport;
2681
dea31012005-04-17 16:05:31 -05002682 piocb = &piocbq->iocb;
2683
2684 fcp_cmnd = lpfc_cmd->fcp_cmnd;
James Smart34b02dc2008-08-24 21:49:55 -04002685 /* Clear out any old data in the FCP command area */
2686 memset(fcp_cmnd, 0, sizeof(struct fcp_cmnd));
2687 int_to_scsilun(lun, &fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -05002688 fcp_cmnd->fcpCntl2 = task_mgmt_cmd;
James Smarte2a0a9d2008-12-04 22:40:02 -05002689 if (vport->phba->sli_rev == 3 &&
2690 !(vport->phba->sli3_options & LPFC_SLI3_BG_ENABLED))
James Smart34b02dc2008-08-24 21:49:55 -04002691 lpfc_fcpcmd_to_iocb(piocb->unsli3.fcp_ext.icd, fcp_cmnd);
dea31012005-04-17 16:05:31 -05002692 piocb->ulpCommand = CMD_FCP_ICMND64_CR;
dea31012005-04-17 16:05:31 -05002693 piocb->ulpContext = ndlp->nlp_rpi;
2694 if (ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
2695 piocb->ulpFCP2Rcvy = 1;
2696 }
2697 piocb->ulpClass = (ndlp->nlp_fcp_info & 0x0f);
2698
2699 /* ulpTimeout is only one byte */
2700 if (lpfc_cmd->timeout > 0xff) {
2701 /*
2702 * Do not timeout the command at the firmware level.
2703 * The driver will provide the timeout mechanism.
2704 */
2705 piocb->ulpTimeout = 0;
James Smartf1126682009-06-10 17:22:44 -04002706 } else
dea31012005-04-17 16:05:31 -05002707 piocb->ulpTimeout = lpfc_cmd->timeout;
James Smartf1126682009-06-10 17:22:44 -04002708
2709 if (vport->phba->sli_rev == LPFC_SLI_REV4)
2710 lpfc_sli4_set_rsp_sgl_last(vport->phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05002711
James Smart2e0fef82007-06-17 19:56:36 -05002712 return 1;
dea31012005-04-17 16:05:31 -05002713}
2714
James Smart9bad7672008-12-04 22:39:02 -05002715/**
James Smart3772a992009-05-22 14:50:54 -04002716 * lpfc_scsi_api_table_setup - Set up scsi api fucntion jump table
2717 * @phba: The hba struct for which this call is being executed.
2718 * @dev_grp: The HBA PCI-Device group number.
2719 *
2720 * This routine sets up the SCSI interface API function jump table in @phba
2721 * struct.
2722 * Returns: 0 - success, -ENODEV - failure.
2723 **/
2724int
2725lpfc_scsi_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
2726{
2727
James Smartf1126682009-06-10 17:22:44 -04002728 phba->lpfc_scsi_unprep_dma_buf = lpfc_scsi_unprep_dma_buf;
2729 phba->lpfc_scsi_prep_cmnd = lpfc_scsi_prep_cmnd;
2730 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf;
2731
James Smart3772a992009-05-22 14:50:54 -04002732 switch (dev_grp) {
2733 case LPFC_PCI_DEV_LP:
2734 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s3;
2735 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s3;
James Smart3772a992009-05-22 14:50:54 -04002736 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s3;
2737 break;
James Smartda0436e2009-05-22 14:51:39 -04002738 case LPFC_PCI_DEV_OC:
2739 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s4;
2740 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s4;
James Smartda0436e2009-05-22 14:51:39 -04002741 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s4;
2742 break;
James Smart3772a992009-05-22 14:50:54 -04002743 default:
2744 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2745 "1418 Invalid HBA PCI-device group: 0x%x\n",
2746 dev_grp);
2747 return -ENODEV;
2748 break;
2749 }
2750 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf;
2751 phba->lpfc_rampdown_queue_depth = lpfc_rampdown_queue_depth;
James Smart84d1b002010-02-12 14:42:33 -05002752 phba->lpfc_scsi_cmd_iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
James Smart3772a992009-05-22 14:50:54 -04002753 return 0;
2754}
2755
2756/**
James Smart3621a712009-04-06 18:47:14 -04002757 * lpfc_taskmgmt_def_cmpl - IOCB completion routine for task management command
James Smart9bad7672008-12-04 22:39:02 -05002758 * @phba: The Hba for which this call is being executed.
2759 * @cmdiocbq: Pointer to lpfc_iocbq data structure.
2760 * @rspiocbq: Pointer to lpfc_iocbq data structure.
2761 *
2762 * This routine is IOCB completion routine for device reset and target reset
2763 * routine. This routine release scsi buffer associated with lpfc_cmd.
2764 **/
James Smart7054a602007-04-25 09:52:34 -04002765static void
2766lpfc_tskmgmt_def_cmpl(struct lpfc_hba *phba,
2767 struct lpfc_iocbq *cmdiocbq,
2768 struct lpfc_iocbq *rspiocbq)
2769{
2770 struct lpfc_scsi_buf *lpfc_cmd =
2771 (struct lpfc_scsi_buf *) cmdiocbq->context1;
2772 if (lpfc_cmd)
2773 lpfc_release_scsi_buf(phba, lpfc_cmd);
2774 return;
2775}
2776
James Smart9bad7672008-12-04 22:39:02 -05002777/**
James Smart3621a712009-04-06 18:47:14 -04002778 * lpfc_info - Info entry point of scsi_host_template data structure
James Smart9bad7672008-12-04 22:39:02 -05002779 * @host: The scsi host for which this call is being executed.
2780 *
2781 * This routine provides module information about hba.
2782 *
2783 * Reutrn code:
2784 * Pointer to char - Success.
2785 **/
dea31012005-04-17 16:05:31 -05002786const char *
2787lpfc_info(struct Scsi_Host *host)
2788{
James Smart2e0fef82007-06-17 19:56:36 -05002789 struct lpfc_vport *vport = (struct lpfc_vport *) host->hostdata;
2790 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002791 int len;
2792 static char lpfcinfobuf[384];
2793
2794 memset(lpfcinfobuf,0,384);
2795 if (phba && phba->pcidev){
2796 strncpy(lpfcinfobuf, phba->ModelDesc, 256);
2797 len = strlen(lpfcinfobuf);
2798 snprintf(lpfcinfobuf + len,
2799 384-len,
2800 " on PCI bus %02x device %02x irq %d",
2801 phba->pcidev->bus->number,
2802 phba->pcidev->devfn,
2803 phba->pcidev->irq);
2804 len = strlen(lpfcinfobuf);
2805 if (phba->Port[0]) {
2806 snprintf(lpfcinfobuf + len,
2807 384-len,
2808 " port %s",
2809 phba->Port);
2810 }
James Smart65467b62010-01-26 23:08:29 -05002811 len = strlen(lpfcinfobuf);
2812 if (phba->sli4_hba.link_state.logical_speed) {
2813 snprintf(lpfcinfobuf + len,
2814 384-len,
2815 " Logical Link Speed: %d Mbps",
2816 phba->sli4_hba.link_state.logical_speed * 10);
2817 }
dea31012005-04-17 16:05:31 -05002818 }
2819 return lpfcinfobuf;
2820}
2821
James Smart9bad7672008-12-04 22:39:02 -05002822/**
James Smart3621a712009-04-06 18:47:14 -04002823 * lpfc_poll_rearm_time - Routine to modify fcp_poll timer of hba
James Smart9bad7672008-12-04 22:39:02 -05002824 * @phba: The Hba for which this call is being executed.
2825 *
2826 * This routine modifies fcp_poll_timer field of @phba by cfg_poll_tmo.
2827 * The default value of cfg_poll_tmo is 10 milliseconds.
2828 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002829static __inline__ void lpfc_poll_rearm_timer(struct lpfc_hba * phba)
2830{
2831 unsigned long poll_tmo_expires =
2832 (jiffies + msecs_to_jiffies(phba->cfg_poll_tmo));
2833
2834 if (phba->sli.ring[LPFC_FCP_RING].txcmplq_cnt)
2835 mod_timer(&phba->fcp_poll_timer,
2836 poll_tmo_expires);
2837}
2838
James Smart9bad7672008-12-04 22:39:02 -05002839/**
James Smart3621a712009-04-06 18:47:14 -04002840 * lpfc_poll_start_timer - Routine to start fcp_poll_timer of HBA
James Smart9bad7672008-12-04 22:39:02 -05002841 * @phba: The Hba for which this call is being executed.
2842 *
2843 * This routine starts the fcp_poll_timer of @phba.
2844 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002845void lpfc_poll_start_timer(struct lpfc_hba * phba)
2846{
2847 lpfc_poll_rearm_timer(phba);
2848}
2849
James Smart9bad7672008-12-04 22:39:02 -05002850/**
James Smart3621a712009-04-06 18:47:14 -04002851 * lpfc_poll_timeout - Restart polling timer
James Smart9bad7672008-12-04 22:39:02 -05002852 * @ptr: Map to lpfc_hba data structure pointer.
2853 *
2854 * This routine restarts fcp_poll timer, when FCP ring polling is enable
2855 * and FCP Ring interrupt is disable.
2856 **/
2857
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002858void lpfc_poll_timeout(unsigned long ptr)
2859{
James Smart2e0fef82007-06-17 19:56:36 -05002860 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002861
2862 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04002863 lpfc_sli_handle_fast_ring_event(phba,
2864 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
2865
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002866 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
2867 lpfc_poll_rearm_timer(phba);
2868 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002869}
2870
James Smart9bad7672008-12-04 22:39:02 -05002871/**
James Smart3621a712009-04-06 18:47:14 -04002872 * lpfc_queuecommand - scsi_host_template queuecommand entry point
James Smart9bad7672008-12-04 22:39:02 -05002873 * @cmnd: Pointer to scsi_cmnd data structure.
2874 * @done: Pointer to done routine.
2875 *
2876 * Driver registers this routine to scsi midlayer to submit a @cmd to process.
2877 * This routine prepares an IOCB from scsi command and provides to firmware.
2878 * The @done callback is invoked after driver finished processing the command.
2879 *
2880 * Return value :
2881 * 0 - Success
2882 * SCSI_MLQUEUE_HOST_BUSY - Block all devices served by this host temporarily.
2883 **/
dea31012005-04-17 16:05:31 -05002884static int
2885lpfc_queuecommand(struct scsi_cmnd *cmnd, void (*done) (struct scsi_cmnd *))
2886{
James Smart2e0fef82007-06-17 19:56:36 -05002887 struct Scsi_Host *shost = cmnd->device->host;
2888 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2889 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002890 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05002891 struct lpfc_nodelist *ndlp;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002892 struct lpfc_scsi_buf *lpfc_cmd;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002893 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002894 int err;
dea31012005-04-17 16:05:31 -05002895
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002896 err = fc_remote_port_chkready(rport);
2897 if (err) {
2898 cmnd->result = err;
dea31012005-04-17 16:05:31 -05002899 goto out_fail_command;
2900 }
James Smart1c6f4ef52009-11-18 15:40:49 -05002901 ndlp = rdata->pnode;
dea31012005-04-17 16:05:31 -05002902
James Smarte2a0a9d2008-12-04 22:40:02 -05002903 if (!(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
2904 scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) {
2905
James Smart6a9c52c2009-10-02 15:16:51 -04002906 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2907 "9058 BLKGRD: ERROR: rcvd protected cmd:%02x"
2908 " op:%02x str=%s without registering for"
2909 " BlockGuard - Rejecting command\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05002910 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
2911 dif_op_str[scsi_get_prot_op(cmnd)]);
2912 goto out_fail_command;
2913 }
2914
dea31012005-04-17 16:05:31 -05002915 /*
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002916 * Catch race where our node has transitioned, but the
2917 * transport is still transitioning.
dea31012005-04-17 16:05:31 -05002918 */
James Smartb522d7d2008-09-07 11:51:56 -04002919 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
2920 cmnd->result = ScsiResult(DID_TRANSPORT_DISRUPTED, 0);
2921 goto out_fail_command;
2922 }
James Smart109f6ed2008-12-04 22:39:08 -05002923 if (vport->cfg_max_scsicmpl_time &&
2924 (atomic_read(&ndlp->cmd_pending) >= ndlp->cmd_qdepth))
James Smart977b5a02008-09-07 11:52:04 -04002925 goto out_host_busy;
Mike Christiea93ce022008-08-17 15:24:41 -05002926
James Smarted957682007-06-17 19:56:37 -05002927 lpfc_cmd = lpfc_get_scsi_buf(phba);
dea31012005-04-17 16:05:31 -05002928 if (lpfc_cmd == NULL) {
James Smarteaf15d52008-12-04 22:39:29 -05002929 lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002930
James Smarte8b62012007-08-02 11:10:09 -04002931 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
2932 "0707 driver's buffer pool is empty, "
2933 "IO busied\n");
dea31012005-04-17 16:05:31 -05002934 goto out_host_busy;
2935 }
2936
2937 /*
2938 * Store the midlayer's command structure for the completion phase
2939 * and complete the command initialization.
2940 */
2941 lpfc_cmd->pCmd = cmnd;
2942 lpfc_cmd->rdata = rdata;
2943 lpfc_cmd->timeout = 0;
James Smart977b5a02008-09-07 11:52:04 -04002944 lpfc_cmd->start_time = jiffies;
dea31012005-04-17 16:05:31 -05002945 cmnd->host_scribble = (unsigned char *)lpfc_cmd;
2946 cmnd->scsi_done = done;
2947
James Smarte2a0a9d2008-12-04 22:40:02 -05002948 if (scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) {
James Smart6a9c52c2009-10-02 15:16:51 -04002949 if (vport->phba->cfg_enable_bg) {
2950 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002951 "9033 BLKGRD: rcvd protected cmd:%02x op:%02x "
2952 "str=%s\n",
2953 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
2954 dif_op_str[scsi_get_prot_op(cmnd)]);
James Smart6a9c52c2009-10-02 15:16:51 -04002955 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002956 "9034 BLKGRD: CDB: %02x %02x %02x %02x %02x "
James Smarte4e74272009-07-19 10:01:38 -04002957 "%02x %02x %02x %02x %02x\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05002958 cmnd->cmnd[0], cmnd->cmnd[1], cmnd->cmnd[2],
2959 cmnd->cmnd[3], cmnd->cmnd[4], cmnd->cmnd[5],
2960 cmnd->cmnd[6], cmnd->cmnd[7], cmnd->cmnd[8],
2961 cmnd->cmnd[9]);
James Smart6a9c52c2009-10-02 15:16:51 -04002962 if (cmnd->cmnd[0] == READ_10)
2963 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002964 "9035 BLKGRD: READ @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09002965 "count %u\n",
2966 (unsigned long long)scsi_get_lba(cmnd),
2967 blk_rq_sectors(cmnd->request));
James Smart6a9c52c2009-10-02 15:16:51 -04002968 else if (cmnd->cmnd[0] == WRITE_10)
2969 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002970 "9036 BLKGRD: WRITE @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09002971 "count %u cmd=%p\n",
James Smart87b5c322008-12-16 10:34:09 -05002972 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09002973 blk_rq_sectors(cmnd->request),
James Smarte2a0a9d2008-12-04 22:40:02 -05002974 cmnd);
James Smart6a9c52c2009-10-02 15:16:51 -04002975 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002976
2977 err = lpfc_bg_scsi_prep_dma_buf(phba, lpfc_cmd);
2978 } else {
James Smart6a9c52c2009-10-02 15:16:51 -04002979 if (vport->phba->cfg_enable_bg) {
James Smarte2a0a9d2008-12-04 22:40:02 -05002980 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smart6a9c52c2009-10-02 15:16:51 -04002981 "9038 BLKGRD: rcvd unprotected cmd:"
2982 "%02x op:%02x str=%s\n",
2983 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
2984 dif_op_str[scsi_get_prot_op(cmnd)]);
2985 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
2986 "9039 BLKGRD: CDB: %02x %02x %02x "
2987 "%02x %02x %02x %02x %02x %02x %02x\n",
2988 cmnd->cmnd[0], cmnd->cmnd[1],
2989 cmnd->cmnd[2], cmnd->cmnd[3],
2990 cmnd->cmnd[4], cmnd->cmnd[5],
2991 cmnd->cmnd[6], cmnd->cmnd[7],
2992 cmnd->cmnd[8], cmnd->cmnd[9]);
2993 if (cmnd->cmnd[0] == READ_10)
2994 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
2995 "9040 dbg: READ @ sector %llu, "
2996 "count %u\n",
2997 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09002998 blk_rq_sectors(cmnd->request));
James Smart6a9c52c2009-10-02 15:16:51 -04002999 else if (cmnd->cmnd[0] == WRITE_10)
3000 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05003001 "9041 dbg: WRITE @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09003002 "count %u cmd=%p\n",
James Smart87b5c322008-12-16 10:34:09 -05003003 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09003004 blk_rq_sectors(cmnd->request), cmnd);
James Smart6a9c52c2009-10-02 15:16:51 -04003005 else
3006 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05003007 "9042 dbg: parser not implemented\n");
James Smart6a9c52c2009-10-02 15:16:51 -04003008 }
James Smarte2a0a9d2008-12-04 22:40:02 -05003009 err = lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
3010 }
3011
dea31012005-04-17 16:05:31 -05003012 if (err)
3013 goto out_host_busy_free_buf;
3014
James Smart2e0fef82007-06-17 19:56:36 -05003015 lpfc_scsi_prep_cmnd(vport, lpfc_cmd, ndlp);
dea31012005-04-17 16:05:31 -05003016
James Smart977b5a02008-09-07 11:52:04 -04003017 atomic_inc(&ndlp->cmd_pending);
James Smart3772a992009-05-22 14:50:54 -04003018 err = lpfc_sli_issue_iocb(phba, LPFC_FCP_RING,
James Smart92d7f7b2007-06-17 19:56:38 -05003019 &lpfc_cmd->cur_iocbq, SLI_IOCB_RET_IOCB);
James Smarteaf15d52008-12-04 22:39:29 -05003020 if (err) {
3021 atomic_dec(&ndlp->cmd_pending);
dea31012005-04-17 16:05:31 -05003022 goto out_host_busy_free_buf;
James Smarteaf15d52008-12-04 22:39:29 -05003023 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003024 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04003025 spin_unlock(shost->host_lock);
3026 lpfc_sli_handle_fast_ring_event(phba,
3027 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
3028
3029 spin_lock(shost->host_lock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003030 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
3031 lpfc_poll_rearm_timer(phba);
3032 }
3033
dea31012005-04-17 16:05:31 -05003034 return 0;
3035
3036 out_host_busy_free_buf:
James Smartbcf4dbf2006-07-06 15:50:08 -04003037 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003038 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05003039 out_host_busy:
3040 return SCSI_MLQUEUE_HOST_BUSY;
3041
3042 out_fail_command:
3043 done(cmnd);
3044 return 0;
3045}
3046
James Smart9bad7672008-12-04 22:39:02 -05003047/**
James Smart3621a712009-04-06 18:47:14 -04003048 * lpfc_abort_handler - scsi_host_template eh_abort_handler entry point
James Smart9bad7672008-12-04 22:39:02 -05003049 * @cmnd: Pointer to scsi_cmnd data structure.
3050 *
3051 * This routine aborts @cmnd pending in base driver.
3052 *
3053 * Return code :
3054 * 0x2003 - Error
3055 * 0x2002 - Success
3056 **/
dea31012005-04-17 16:05:31 -05003057static int
James.Smart@Emulex.Com63c59c32005-11-28 11:41:53 -05003058lpfc_abort_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05003059{
James Smart2e0fef82007-06-17 19:56:36 -05003060 struct Scsi_Host *shost = cmnd->device->host;
3061 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3062 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003063 struct lpfc_iocbq *iocb;
3064 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -05003065 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05003066 IOCB_t *cmd, *icmd;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003067 int ret = SUCCESS;
James Smartfa61a542008-01-11 01:52:42 -05003068 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003069
James Smart589a52d2010-07-14 15:30:54 -04003070 ret = fc_block_scsi_eh(cmnd);
3071 if (ret)
3072 return ret;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003073 lpfc_cmd = (struct lpfc_scsi_buf *)cmnd->host_scribble;
3074 BUG_ON(!lpfc_cmd);
dea31012005-04-17 16:05:31 -05003075
3076 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003077 * If pCmd field of the corresponding lpfc_scsi_buf structure
3078 * points to a different SCSI command, then the driver has
3079 * already completed this command, but the midlayer did not
3080 * see the completion before the eh fired. Just return
3081 * SUCCESS.
dea31012005-04-17 16:05:31 -05003082 */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003083 iocb = &lpfc_cmd->cur_iocbq;
3084 if (lpfc_cmd->pCmd != cmnd)
3085 goto out;
dea31012005-04-17 16:05:31 -05003086
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003087 BUG_ON(iocb->context1 != lpfc_cmd);
dea31012005-04-17 16:05:31 -05003088
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003089 abtsiocb = lpfc_sli_get_iocbq(phba);
3090 if (abtsiocb == NULL) {
3091 ret = FAILED;
dea31012005-04-17 16:05:31 -05003092 goto out;
3093 }
3094
dea31012005-04-17 16:05:31 -05003095 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003096 * The scsi command can not be in txq and it is in flight because the
3097 * pCmd is still pointig at the SCSI command we have to abort. There
3098 * is no need to search the txcmplq. Just send an abort to the FW.
dea31012005-04-17 16:05:31 -05003099 */
dea31012005-04-17 16:05:31 -05003100
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003101 cmd = &iocb->iocb;
3102 icmd = &abtsiocb->iocb;
3103 icmd->un.acxri.abortType = ABORT_TYPE_ABTS;
3104 icmd->un.acxri.abortContextTag = cmd->ulpContext;
James Smart3772a992009-05-22 14:50:54 -04003105 if (phba->sli_rev == LPFC_SLI_REV4)
3106 icmd->un.acxri.abortIoTag = iocb->sli4_xritag;
3107 else
3108 icmd->un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05003109
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003110 icmd->ulpLe = 1;
3111 icmd->ulpClass = cmd->ulpClass;
James Smart5ffc2662009-11-18 15:39:44 -05003112
3113 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
3114 abtsiocb->fcp_wqidx = iocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05003115 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05003116
James Smart2e0fef82007-06-17 19:56:36 -05003117 if (lpfc_is_link_up(phba))
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003118 icmd->ulpCommand = CMD_ABORT_XRI_CN;
3119 else
3120 icmd->ulpCommand = CMD_CLOSE_XRI_CN;
dea31012005-04-17 16:05:31 -05003121
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003122 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smart2e0fef82007-06-17 19:56:36 -05003123 abtsiocb->vport = vport;
James Smart3772a992009-05-22 14:50:54 -04003124 if (lpfc_sli_issue_iocb(phba, LPFC_FCP_RING, abtsiocb, 0) ==
3125 IOCB_ERROR) {
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003126 lpfc_sli_release_iocbq(phba, abtsiocb);
3127 ret = FAILED;
3128 goto out;
3129 }
3130
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003131 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
James Smart45ed1192009-10-02 15:17:02 -04003132 lpfc_sli_handle_fast_ring_event(phba,
3133 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003134
James Smartfa61a542008-01-11 01:52:42 -05003135 lpfc_cmd->waitq = &waitq;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003136 /* Wait for abort to complete */
James Smartfa61a542008-01-11 01:52:42 -05003137 wait_event_timeout(waitq,
3138 (lpfc_cmd->pCmd != cmnd),
3139 (2*vport->cfg_devloss_tmo*HZ));
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003140
James Smartfa61a542008-01-11 01:52:42 -05003141 spin_lock_irq(shost->host_lock);
3142 lpfc_cmd->waitq = NULL;
3143 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003144
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003145 if (lpfc_cmd->pCmd == cmnd) {
3146 ret = FAILED;
James Smarte8b62012007-08-02 11:10:09 -04003147 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3148 "0748 abort handler timed out waiting "
3149 "for abort to complete: ret %#x, ID %d, "
3150 "LUN %d, snum %#lx\n",
3151 ret, cmnd->device->id, cmnd->device->lun,
3152 cmnd->serial_number);
dea31012005-04-17 16:05:31 -05003153 }
3154
3155 out:
James Smarte8b62012007-08-02 11:10:09 -04003156 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3157 "0749 SCSI Layer I/O Abort Request Status x%x ID %d "
3158 "LUN %d snum %#lx\n", ret, cmnd->device->id,
3159 cmnd->device->lun, cmnd->serial_number);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003160 return ret;
dea31012005-04-17 16:05:31 -05003161}
3162
James Smartbbb9d182009-06-10 17:23:16 -04003163static char *
3164lpfc_taskmgmt_name(uint8_t task_mgmt_cmd)
3165{
3166 switch (task_mgmt_cmd) {
3167 case FCP_ABORT_TASK_SET:
3168 return "ABORT_TASK_SET";
3169 case FCP_CLEAR_TASK_SET:
3170 return "FCP_CLEAR_TASK_SET";
3171 case FCP_BUS_RESET:
3172 return "FCP_BUS_RESET";
3173 case FCP_LUN_RESET:
3174 return "FCP_LUN_RESET";
3175 case FCP_TARGET_RESET:
3176 return "FCP_TARGET_RESET";
3177 case FCP_CLEAR_ACA:
3178 return "FCP_CLEAR_ACA";
3179 case FCP_TERMINATE_TASK:
3180 return "FCP_TERMINATE_TASK";
3181 default:
3182 return "unknown";
3183 }
3184}
3185
3186/**
3187 * lpfc_send_taskmgmt - Generic SCSI Task Mgmt Handler
3188 * @vport: The virtual port for which this call is being executed.
3189 * @rdata: Pointer to remote port local data
3190 * @tgt_id: Target ID of remote device.
3191 * @lun_id: Lun number for the TMF
3192 * @task_mgmt_cmd: type of TMF to send
3193 *
3194 * This routine builds and sends a TMF (SCSI Task Mgmt Function) to
3195 * a remote port.
3196 *
3197 * Return Code:
3198 * 0x2003 - Error
3199 * 0x2002 - Success.
3200 **/
3201static int
3202lpfc_send_taskmgmt(struct lpfc_vport *vport, struct lpfc_rport_data *rdata,
3203 unsigned tgt_id, unsigned int lun_id,
3204 uint8_t task_mgmt_cmd)
3205{
3206 struct lpfc_hba *phba = vport->phba;
3207 struct lpfc_scsi_buf *lpfc_cmd;
3208 struct lpfc_iocbq *iocbq;
3209 struct lpfc_iocbq *iocbqrsp;
3210 int ret;
3211 int status;
3212
3213 if (!rdata->pnode || !NLP_CHK_NODE_ACT(rdata->pnode))
3214 return FAILED;
3215
3216 lpfc_cmd = lpfc_get_scsi_buf(phba);
3217 if (lpfc_cmd == NULL)
3218 return FAILED;
3219 lpfc_cmd->timeout = 60;
3220 lpfc_cmd->rdata = rdata;
3221
3222 status = lpfc_scsi_prep_task_mgmt_cmd(vport, lpfc_cmd, lun_id,
3223 task_mgmt_cmd);
3224 if (!status) {
3225 lpfc_release_scsi_buf(phba, lpfc_cmd);
3226 return FAILED;
3227 }
3228
3229 iocbq = &lpfc_cmd->cur_iocbq;
3230 iocbqrsp = lpfc_sli_get_iocbq(phba);
3231 if (iocbqrsp == NULL) {
3232 lpfc_release_scsi_buf(phba, lpfc_cmd);
3233 return FAILED;
3234 }
3235
3236 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3237 "0702 Issue %s to TGT %d LUN %d "
3238 "rpi x%x nlp_flag x%x\n",
3239 lpfc_taskmgmt_name(task_mgmt_cmd), tgt_id, lun_id,
3240 rdata->pnode->nlp_rpi, rdata->pnode->nlp_flag);
3241
3242 status = lpfc_sli_issue_iocb_wait(phba, LPFC_FCP_RING,
3243 iocbq, iocbqrsp, lpfc_cmd->timeout);
3244 if (status != IOCB_SUCCESS) {
3245 if (status == IOCB_TIMEDOUT) {
3246 iocbq->iocb_cmpl = lpfc_tskmgmt_def_cmpl;
3247 ret = TIMEOUT_ERROR;
3248 } else
3249 ret = FAILED;
3250 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
3251 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3252 "0727 TMF %s to TGT %d LUN %d failed (%d, %d)\n",
3253 lpfc_taskmgmt_name(task_mgmt_cmd),
3254 tgt_id, lun_id, iocbqrsp->iocb.ulpStatus,
3255 iocbqrsp->iocb.un.ulpWord[4]);
James Smart2a9bf3d2010-06-07 15:24:45 -04003256 } else if (status == IOCB_BUSY)
3257 ret = FAILED;
3258 else
James Smartbbb9d182009-06-10 17:23:16 -04003259 ret = SUCCESS;
3260
3261 lpfc_sli_release_iocbq(phba, iocbqrsp);
3262
3263 if (ret != TIMEOUT_ERROR)
3264 lpfc_release_scsi_buf(phba, lpfc_cmd);
3265
3266 return ret;
3267}
3268
3269/**
3270 * lpfc_chk_tgt_mapped -
3271 * @vport: The virtual port to check on
3272 * @cmnd: Pointer to scsi_cmnd data structure.
3273 *
3274 * This routine delays until the scsi target (aka rport) for the
3275 * command exists (is present and logged in) or we declare it non-existent.
3276 *
3277 * Return code :
3278 * 0x2003 - Error
3279 * 0x2002 - Success
3280 **/
3281static int
3282lpfc_chk_tgt_mapped(struct lpfc_vport *vport, struct scsi_cmnd *cmnd)
3283{
3284 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003285 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003286 unsigned long later;
3287
James Smart1c6f4ef52009-11-18 15:40:49 -05003288 if (!rdata) {
3289 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3290 "0797 Tgt Map rport failure: rdata x%p\n", rdata);
3291 return FAILED;
3292 }
3293 pnode = rdata->pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003294 /*
3295 * If target is not in a MAPPED state, delay until
3296 * target is rediscovered or devloss timeout expires.
3297 */
3298 later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
3299 while (time_after(later, jiffies)) {
3300 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
3301 return FAILED;
3302 if (pnode->nlp_state == NLP_STE_MAPPED_NODE)
3303 return SUCCESS;
3304 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
3305 rdata = cmnd->device->hostdata;
3306 if (!rdata)
3307 return FAILED;
3308 pnode = rdata->pnode;
3309 }
3310 if (!pnode || !NLP_CHK_NODE_ACT(pnode) ||
3311 (pnode->nlp_state != NLP_STE_MAPPED_NODE))
3312 return FAILED;
3313 return SUCCESS;
3314}
3315
3316/**
3317 * lpfc_reset_flush_io_context -
3318 * @vport: The virtual port (scsi_host) for the flush context
3319 * @tgt_id: If aborting by Target contect - specifies the target id
3320 * @lun_id: If aborting by Lun context - specifies the lun id
3321 * @context: specifies the context level to flush at.
3322 *
3323 * After a reset condition via TMF, we need to flush orphaned i/o
3324 * contexts from the adapter. This routine aborts any contexts
3325 * outstanding, then waits for their completions. The wait is
3326 * bounded by devloss_tmo though.
3327 *
3328 * Return code :
3329 * 0x2003 - Error
3330 * 0x2002 - Success
3331 **/
3332static int
3333lpfc_reset_flush_io_context(struct lpfc_vport *vport, uint16_t tgt_id,
3334 uint64_t lun_id, lpfc_ctx_cmd context)
3335{
3336 struct lpfc_hba *phba = vport->phba;
3337 unsigned long later;
3338 int cnt;
3339
3340 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
3341 if (cnt)
3342 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
3343 tgt_id, lun_id, context);
3344 later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
3345 while (time_after(later, jiffies) && cnt) {
3346 schedule_timeout_uninterruptible(msecs_to_jiffies(20));
3347 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
3348 }
3349 if (cnt) {
3350 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3351 "0724 I/O flush failure for context %s : cnt x%x\n",
3352 ((context == LPFC_CTX_LUN) ? "LUN" :
3353 ((context == LPFC_CTX_TGT) ? "TGT" :
3354 ((context == LPFC_CTX_HOST) ? "HOST" : "Unknown"))),
3355 cnt);
3356 return FAILED;
3357 }
3358 return SUCCESS;
3359}
3360
James Smart9bad7672008-12-04 22:39:02 -05003361/**
James Smart3621a712009-04-06 18:47:14 -04003362 * lpfc_device_reset_handler - scsi_host_template eh_device_reset entry point
James Smart9bad7672008-12-04 22:39:02 -05003363 * @cmnd: Pointer to scsi_cmnd data structure.
3364 *
James Smartbbb9d182009-06-10 17:23:16 -04003365 * This routine does a device reset by sending a LUN_RESET task management
James Smart9bad7672008-12-04 22:39:02 -05003366 * command.
3367 *
3368 * Return code :
3369 * 0x2003 - Error
James Smart3621a712009-04-06 18:47:14 -04003370 * 0x2002 - Success
James Smart9bad7672008-12-04 22:39:02 -05003371 **/
dea31012005-04-17 16:05:31 -05003372static int
James Smart7054a602007-04-25 09:52:34 -04003373lpfc_device_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05003374{
James Smart2e0fef82007-06-17 19:56:36 -05003375 struct Scsi_Host *shost = cmnd->device->host;
3376 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
dea31012005-04-17 16:05:31 -05003377 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003378 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003379 unsigned tgt_id = cmnd->device->id;
3380 unsigned int lun_id = cmnd->device->lun;
James Smartea2151b2008-09-07 11:52:10 -04003381 struct lpfc_scsi_event_header scsi_event;
James Smartbbb9d182009-06-10 17:23:16 -04003382 int status;
dea31012005-04-17 16:05:31 -05003383
James Smart1c6f4ef52009-11-18 15:40:49 -05003384 if (!rdata) {
3385 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3386 "0798 Device Reset rport failure: rdata x%p\n", rdata);
3387 return FAILED;
3388 }
3389 pnode = rdata->pnode;
James Smart589a52d2010-07-14 15:30:54 -04003390 status = fc_block_scsi_eh(cmnd);
3391 if (status)
3392 return status;
James Smartbbb9d182009-06-10 17:23:16 -04003393
3394 status = lpfc_chk_tgt_mapped(vport, cmnd);
3395 if (status == FAILED) {
3396 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3397 "0721 Device Reset rport failure: rdata x%p\n", rdata);
3398 return FAILED;
3399 }
3400
3401 scsi_event.event_type = FC_REG_SCSI_EVENT;
3402 scsi_event.subcategory = LPFC_EVENT_LUNRESET;
3403 scsi_event.lun = lun_id;
3404 memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
3405 memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
3406
3407 fc_host_post_vendor_event(shost, fc_get_event_number(),
3408 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
3409
3410 status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
3411 FCP_LUN_RESET);
3412
3413 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3414 "0713 SCSI layer issued Device Reset (%d, %d) "
3415 "return x%x\n", tgt_id, lun_id, status);
3416
dea31012005-04-17 16:05:31 -05003417 /*
James Smartbbb9d182009-06-10 17:23:16 -04003418 * We have to clean up i/o as : they may be orphaned by the TMF;
3419 * or if the TMF failed, they may be in an indeterminate state.
3420 * So, continue on.
3421 * We will report success if all the i/o aborts successfully.
dea31012005-04-17 16:05:31 -05003422 */
James Smartbbb9d182009-06-10 17:23:16 -04003423 status = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
3424 LPFC_CTX_LUN);
3425 return status;
3426}
3427
3428/**
3429 * lpfc_target_reset_handler - scsi_host_template eh_target_reset entry point
3430 * @cmnd: Pointer to scsi_cmnd data structure.
3431 *
3432 * This routine does a target reset by sending a TARGET_RESET task management
3433 * command.
3434 *
3435 * Return code :
3436 * 0x2003 - Error
3437 * 0x2002 - Success
3438 **/
3439static int
3440lpfc_target_reset_handler(struct scsi_cmnd *cmnd)
3441{
3442 struct Scsi_Host *shost = cmnd->device->host;
3443 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3444 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003445 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003446 unsigned tgt_id = cmnd->device->id;
3447 unsigned int lun_id = cmnd->device->lun;
3448 struct lpfc_scsi_event_header scsi_event;
3449 int status;
3450
James Smart1c6f4ef52009-11-18 15:40:49 -05003451 if (!rdata) {
3452 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3453 "0799 Target Reset rport failure: rdata x%p\n", rdata);
3454 return FAILED;
3455 }
3456 pnode = rdata->pnode;
James Smart589a52d2010-07-14 15:30:54 -04003457 status = fc_block_scsi_eh(cmnd);
3458 if (status)
3459 return status;
James Smartbbb9d182009-06-10 17:23:16 -04003460
3461 status = lpfc_chk_tgt_mapped(vport, cmnd);
3462 if (status == FAILED) {
3463 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3464 "0722 Target Reset rport failure: rdata x%p\n", rdata);
3465 return FAILED;
dea31012005-04-17 16:05:31 -05003466 }
James Smartea2151b2008-09-07 11:52:10 -04003467
3468 scsi_event.event_type = FC_REG_SCSI_EVENT;
3469 scsi_event.subcategory = LPFC_EVENT_TGTRESET;
3470 scsi_event.lun = 0;
3471 memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
3472 memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
3473
James Smartbbb9d182009-06-10 17:23:16 -04003474 fc_host_post_vendor_event(shost, fc_get_event_number(),
3475 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04003476
James Smartbbb9d182009-06-10 17:23:16 -04003477 status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
3478 FCP_TARGET_RESET);
dea31012005-04-17 16:05:31 -05003479
James Smarte8b62012007-08-02 11:10:09 -04003480 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
James Smartbbb9d182009-06-10 17:23:16 -04003481 "0723 SCSI layer issued Target Reset (%d, %d) "
3482 "return x%x\n", tgt_id, lun_id, status);
3483
3484 /*
3485 * We have to clean up i/o as : they may be orphaned by the TMF;
3486 * or if the TMF failed, they may be in an indeterminate state.
3487 * So, continue on.
3488 * We will report success if all the i/o aborts successfully.
3489 */
3490 status = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
3491 LPFC_CTX_TGT);
3492 return status;
dea31012005-04-17 16:05:31 -05003493}
3494
James Smart9bad7672008-12-04 22:39:02 -05003495/**
James Smart3621a712009-04-06 18:47:14 -04003496 * lpfc_bus_reset_handler - scsi_host_template eh_bus_reset_handler entry point
James Smart9bad7672008-12-04 22:39:02 -05003497 * @cmnd: Pointer to scsi_cmnd data structure.
3498 *
James Smartbbb9d182009-06-10 17:23:16 -04003499 * This routine does target reset to all targets on @cmnd->device->host.
3500 * This emulates Parallel SCSI Bus Reset Semantics.
James Smart9bad7672008-12-04 22:39:02 -05003501 *
James Smartbbb9d182009-06-10 17:23:16 -04003502 * Return code :
3503 * 0x2003 - Error
3504 * 0x2002 - Success
James Smart9bad7672008-12-04 22:39:02 -05003505 **/
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04003506static int
James Smart7054a602007-04-25 09:52:34 -04003507lpfc_bus_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05003508{
James Smart2e0fef82007-06-17 19:56:36 -05003509 struct Scsi_Host *shost = cmnd->device->host;
3510 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
dea31012005-04-17 16:05:31 -05003511 struct lpfc_nodelist *ndlp = NULL;
James Smartea2151b2008-09-07 11:52:10 -04003512 struct lpfc_scsi_event_header scsi_event;
James Smartbbb9d182009-06-10 17:23:16 -04003513 int match;
3514 int ret = SUCCESS, status, i;
James Smartea2151b2008-09-07 11:52:10 -04003515
3516 scsi_event.event_type = FC_REG_SCSI_EVENT;
3517 scsi_event.subcategory = LPFC_EVENT_BUSRESET;
3518 scsi_event.lun = 0;
3519 memcpy(scsi_event.wwpn, &vport->fc_portname, sizeof(struct lpfc_name));
3520 memcpy(scsi_event.wwnn, &vport->fc_nodename, sizeof(struct lpfc_name));
3521
James Smartbbb9d182009-06-10 17:23:16 -04003522 fc_host_post_vendor_event(shost, fc_get_event_number(),
3523 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
dea31012005-04-17 16:05:31 -05003524
James Smart589a52d2010-07-14 15:30:54 -04003525 ret = fc_block_scsi_eh(cmnd);
3526 if (ret)
3527 return ret;
James Smartbbb9d182009-06-10 17:23:16 -04003528
dea31012005-04-17 16:05:31 -05003529 /*
3530 * Since the driver manages a single bus device, reset all
3531 * targets known to the driver. Should any target reset
3532 * fail, this routine returns failure to the midlayer.
3533 */
James Smarte17da182006-07-06 15:49:25 -04003534 for (i = 0; i < LPFC_MAX_TARGET; i++) {
James Smart685f0bf2007-04-25 09:53:08 -04003535 /* Search for mapped node by target ID */
dea31012005-04-17 16:05:31 -05003536 match = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003537 spin_lock_irq(shost->host_lock);
3538 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05003539 if (!NLP_CHK_NODE_ACT(ndlp))
3540 continue;
James Smart685f0bf2007-04-25 09:53:08 -04003541 if (ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
James Smart915caaa2008-06-14 22:52:38 -04003542 ndlp->nlp_sid == i &&
James Smart685f0bf2007-04-25 09:53:08 -04003543 ndlp->rport) {
dea31012005-04-17 16:05:31 -05003544 match = 1;
3545 break;
3546 }
3547 }
James Smart2e0fef82007-06-17 19:56:36 -05003548 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003549 if (!match)
3550 continue;
James Smartbbb9d182009-06-10 17:23:16 -04003551
3552 status = lpfc_send_taskmgmt(vport, ndlp->rport->dd_data,
3553 i, 0, FCP_TARGET_RESET);
3554
3555 if (status != SUCCESS) {
James Smarte8b62012007-08-02 11:10:09 -04003556 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3557 "0700 Bus Reset on target %d failed\n",
3558 i);
James Smart915caaa2008-06-14 22:52:38 -04003559 ret = FAILED;
dea31012005-04-17 16:05:31 -05003560 }
3561 }
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003562 /*
James Smartbbb9d182009-06-10 17:23:16 -04003563 * We have to clean up i/o as : they may be orphaned by the TMFs
3564 * above; or if any of the TMFs failed, they may be in an
3565 * indeterminate state.
3566 * We will report success if all the i/o aborts successfully.
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003567 */
James Smartbbb9d182009-06-10 17:23:16 -04003568
3569 status = lpfc_reset_flush_io_context(vport, 0, 0, LPFC_CTX_HOST);
3570 if (status != SUCCESS)
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003571 ret = FAILED;
James Smartbbb9d182009-06-10 17:23:16 -04003572
James Smarte8b62012007-08-02 11:10:09 -04003573 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3574 "0714 SCSI layer issued Bus Reset Data: x%x\n", ret);
dea31012005-04-17 16:05:31 -05003575 return ret;
3576}
3577
James Smart9bad7672008-12-04 22:39:02 -05003578/**
James Smart3621a712009-04-06 18:47:14 -04003579 * lpfc_slave_alloc - scsi_host_template slave_alloc entry point
James Smart9bad7672008-12-04 22:39:02 -05003580 * @sdev: Pointer to scsi_device.
3581 *
3582 * This routine populates the cmds_per_lun count + 2 scsi_bufs into this host's
3583 * globally available list of scsi buffers. This routine also makes sure scsi
3584 * buffer is not allocated more than HBA limit conveyed to midlayer. This list
3585 * of scsi buffer exists for the lifetime of the driver.
3586 *
3587 * Return codes:
3588 * non-0 - Error
3589 * 0 - Success
3590 **/
dea31012005-04-17 16:05:31 -05003591static int
dea31012005-04-17 16:05:31 -05003592lpfc_slave_alloc(struct scsi_device *sdev)
3593{
James Smart2e0fef82007-06-17 19:56:36 -05003594 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
3595 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003596 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
James Smart3772a992009-05-22 14:50:54 -04003597 uint32_t total = 0;
dea31012005-04-17 16:05:31 -05003598 uint32_t num_to_alloc = 0;
James Smart3772a992009-05-22 14:50:54 -04003599 int num_allocated = 0;
James Smartd7c47992010-06-08 18:31:54 -04003600 uint32_t sdev_cnt;
dea31012005-04-17 16:05:31 -05003601
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003602 if (!rport || fc_remote_port_chkready(rport))
dea31012005-04-17 16:05:31 -05003603 return -ENXIO;
3604
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003605 sdev->hostdata = rport->dd_data;
James Smartd7c47992010-06-08 18:31:54 -04003606 sdev_cnt = atomic_inc_return(&phba->sdev_cnt);
dea31012005-04-17 16:05:31 -05003607
3608 /*
3609 * Populate the cmds_per_lun count scsi_bufs into this host's globally
3610 * available list of scsi buffers. Don't allocate more than the
James.Smart@Emulex.Coma784efb2005-10-28 20:29:51 -04003611 * HBA limit conveyed to the midlayer via the host structure. The
3612 * formula accounts for the lun_queue_depth + error handlers + 1
3613 * extra. This list of scsi bufs exists for the lifetime of the driver.
dea31012005-04-17 16:05:31 -05003614 */
3615 total = phba->total_scsi_bufs;
James Smart3de2a652007-08-02 11:09:59 -04003616 num_to_alloc = vport->cfg_lun_queue_depth + 2;
James Smart92d7f7b2007-06-17 19:56:38 -05003617
James Smartd7c47992010-06-08 18:31:54 -04003618 /* If allocated buffers are enough do nothing */
3619 if ((sdev_cnt * (vport->cfg_lun_queue_depth + 2)) < total)
3620 return 0;
3621
James Smart92d7f7b2007-06-17 19:56:38 -05003622 /* Allow some exchanges to be available always to complete discovery */
3623 if (total >= phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04003624 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3625 "0704 At limitation of %d preallocated "
3626 "command buffers\n", total);
dea31012005-04-17 16:05:31 -05003627 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05003628 /* Allow some exchanges to be available always to complete discovery */
3629 } else if (total + num_to_alloc >
3630 phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04003631 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3632 "0705 Allocation request of %d "
3633 "command buffers will exceed max of %d. "
3634 "Reducing allocation request to %d.\n",
3635 num_to_alloc, phba->cfg_hba_queue_depth,
3636 (phba->cfg_hba_queue_depth - total));
dea31012005-04-17 16:05:31 -05003637 num_to_alloc = phba->cfg_hba_queue_depth - total;
3638 }
James Smart3772a992009-05-22 14:50:54 -04003639 num_allocated = lpfc_new_scsi_buf(vport, num_to_alloc);
3640 if (num_to_alloc != num_allocated) {
3641 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3642 "0708 Allocation request of %d "
3643 "command buffers did not succeed. "
3644 "Allocated %d buffers.\n",
3645 num_to_alloc, num_allocated);
dea31012005-04-17 16:05:31 -05003646 }
James Smart1c6f4ef52009-11-18 15:40:49 -05003647 if (num_allocated > 0)
3648 phba->total_scsi_bufs += num_allocated;
dea31012005-04-17 16:05:31 -05003649 return 0;
3650}
3651
James Smart9bad7672008-12-04 22:39:02 -05003652/**
James Smart3621a712009-04-06 18:47:14 -04003653 * lpfc_slave_configure - scsi_host_template slave_configure entry point
James Smart9bad7672008-12-04 22:39:02 -05003654 * @sdev: Pointer to scsi_device.
3655 *
3656 * This routine configures following items
3657 * - Tag command queuing support for @sdev if supported.
3658 * - Dev loss time out value of fc_rport.
3659 * - Enable SLI polling for fcp ring if ENABLE_FCP_RING_POLLING flag is set.
3660 *
3661 * Return codes:
3662 * 0 - Success
3663 **/
dea31012005-04-17 16:05:31 -05003664static int
3665lpfc_slave_configure(struct scsi_device *sdev)
3666{
James Smart2e0fef82007-06-17 19:56:36 -05003667 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
3668 struct lpfc_hba *phba = vport->phba;
3669 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
dea31012005-04-17 16:05:31 -05003670
3671 if (sdev->tagged_supported)
James Smart3de2a652007-08-02 11:09:59 -04003672 scsi_activate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05003673 else
James Smart3de2a652007-08-02 11:09:59 -04003674 scsi_deactivate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05003675
3676 /*
3677 * Initialize the fc transport attributes for the target
3678 * containing this scsi device. Also note that the driver's
3679 * target pointer is stored in the starget_data for the
3680 * driver's sysfs entry point functions.
3681 */
James Smart3de2a652007-08-02 11:09:59 -04003682 rport->dev_loss_tmo = vport->cfg_devloss_tmo;
dea31012005-04-17 16:05:31 -05003683
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003684 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04003685 lpfc_sli_handle_fast_ring_event(phba,
3686 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003687 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
3688 lpfc_poll_rearm_timer(phba);
3689 }
3690
dea31012005-04-17 16:05:31 -05003691 return 0;
3692}
3693
James Smart9bad7672008-12-04 22:39:02 -05003694/**
James Smart3621a712009-04-06 18:47:14 -04003695 * lpfc_slave_destroy - slave_destroy entry point of SHT data structure
James Smart9bad7672008-12-04 22:39:02 -05003696 * @sdev: Pointer to scsi_device.
3697 *
3698 * This routine sets @sdev hostatdata filed to null.
3699 **/
dea31012005-04-17 16:05:31 -05003700static void
3701lpfc_slave_destroy(struct scsi_device *sdev)
3702{
James Smartd7c47992010-06-08 18:31:54 -04003703 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
3704 struct lpfc_hba *phba = vport->phba;
3705 atomic_dec(&phba->sdev_cnt);
dea31012005-04-17 16:05:31 -05003706 sdev->hostdata = NULL;
3707 return;
3708}
3709
James Smart92d7f7b2007-06-17 19:56:38 -05003710
dea31012005-04-17 16:05:31 -05003711struct scsi_host_template lpfc_template = {
3712 .module = THIS_MODULE,
3713 .name = LPFC_DRIVER_NAME,
3714 .info = lpfc_info,
3715 .queuecommand = lpfc_queuecommand,
3716 .eh_abort_handler = lpfc_abort_handler,
James Smartbbb9d182009-06-10 17:23:16 -04003717 .eh_device_reset_handler = lpfc_device_reset_handler,
3718 .eh_target_reset_handler = lpfc_target_reset_handler,
James Smart7054a602007-04-25 09:52:34 -04003719 .eh_bus_reset_handler = lpfc_bus_reset_handler,
dea31012005-04-17 16:05:31 -05003720 .slave_alloc = lpfc_slave_alloc,
3721 .slave_configure = lpfc_slave_configure,
3722 .slave_destroy = lpfc_slave_destroy,
James Smart47a86172007-04-25 09:53:22 -04003723 .scan_finished = lpfc_scan_finished,
dea31012005-04-17 16:05:31 -05003724 .this_id = -1,
James Smart83108bd2008-01-11 01:53:09 -05003725 .sg_tablesize = LPFC_DEFAULT_SG_SEG_CNT,
dea31012005-04-17 16:05:31 -05003726 .cmd_per_lun = LPFC_CMD_PER_LUN,
3727 .use_clustering = ENABLE_CLUSTERING,
James Smart2e0fef82007-06-17 19:56:36 -05003728 .shost_attrs = lpfc_hba_attrs,
James.Smart@Emulex.Com564b2962005-06-25 10:34:17 -04003729 .max_sectors = 0xFFFF,
James Smartf1c3b0f2009-07-19 10:01:32 -04003730 .vendor_id = LPFC_NL_VENDOR_ID,
James Smart5ffc2662009-11-18 15:39:44 -05003731 .change_queue_depth = lpfc_change_queue_depth,
dea31012005-04-17 16:05:31 -05003732};
James Smart3de2a652007-08-02 11:09:59 -04003733
3734struct scsi_host_template lpfc_vport_template = {
3735 .module = THIS_MODULE,
3736 .name = LPFC_DRIVER_NAME,
3737 .info = lpfc_info,
3738 .queuecommand = lpfc_queuecommand,
3739 .eh_abort_handler = lpfc_abort_handler,
James Smartbbb9d182009-06-10 17:23:16 -04003740 .eh_device_reset_handler = lpfc_device_reset_handler,
3741 .eh_target_reset_handler = lpfc_target_reset_handler,
James Smart3de2a652007-08-02 11:09:59 -04003742 .eh_bus_reset_handler = lpfc_bus_reset_handler,
3743 .slave_alloc = lpfc_slave_alloc,
3744 .slave_configure = lpfc_slave_configure,
3745 .slave_destroy = lpfc_slave_destroy,
3746 .scan_finished = lpfc_scan_finished,
3747 .this_id = -1,
James Smart83108bd2008-01-11 01:53:09 -05003748 .sg_tablesize = LPFC_DEFAULT_SG_SEG_CNT,
James Smart3de2a652007-08-02 11:09:59 -04003749 .cmd_per_lun = LPFC_CMD_PER_LUN,
3750 .use_clustering = ENABLE_CLUSTERING,
3751 .shost_attrs = lpfc_vport_attrs,
3752 .max_sectors = 0xFFFF,
James Smart5ffc2662009-11-18 15:39:44 -05003753 .change_queue_depth = lpfc_change_queue_depth,
James Smart3de2a652007-08-02 11:09:59 -04003754};