blob: 3ccc97496ebfdb17c3aa63ce1fa0259dc497780c [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 Smart792581d2011-03-11 16:06:44 -05004 * Copyright (C) 2004-2011 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 ||
James Smart5989b8d2010-10-22 11:06:56 -0400172 !pnode ||
James Smartea2151b2008-09-07 11:52:10 -0400173 !pnode->lat_data ||
174 (phba->bucket_type == LPFC_NO_BUCKET)) {
175 spin_unlock_irqrestore(shost->host_lock, flags);
176 return;
177 }
James Smartea2151b2008-09-07 11:52:10 -0400178
179 if (phba->bucket_type == LPFC_LINEAR_BUCKET) {
180 i = (latency + phba->bucket_step - 1 - phba->bucket_base)/
181 phba->bucket_step;
James Smart9f1e1b52008-12-04 22:39:40 -0500182 /* check array subscript bounds */
183 if (i < 0)
184 i = 0;
185 else if (i >= LPFC_MAX_BUCKET_COUNT)
186 i = LPFC_MAX_BUCKET_COUNT - 1;
James Smartea2151b2008-09-07 11:52:10 -0400187 } else {
188 for (i = 0; i < LPFC_MAX_BUCKET_COUNT-1; i++)
189 if (latency <= (phba->bucket_base +
190 ((1<<i)*phba->bucket_step)))
191 break;
192 }
193
194 pnode->lat_data[i].cmd_count++;
195 spin_unlock_irqrestore(shost->host_lock, flags);
196}
197
James Smartea2151b2008-09-07 11:52:10 -0400198/**
James Smart3621a712009-04-06 18:47:14 -0400199 * lpfc_send_sdev_queuedepth_change_event - Posts a queuedepth change event
James Smartea2151b2008-09-07 11:52:10 -0400200 * @phba: Pointer to HBA context object.
201 * @vport: Pointer to vport object.
202 * @ndlp: Pointer to FC node associated with the target.
203 * @lun: Lun number of the scsi device.
204 * @old_val: Old value of the queue depth.
205 * @new_val: New value of the queue depth.
206 *
207 * This function sends an event to the mgmt application indicating
208 * there is a change in the scsi device queue depth.
209 **/
210static void
211lpfc_send_sdev_queuedepth_change_event(struct lpfc_hba *phba,
212 struct lpfc_vport *vport,
213 struct lpfc_nodelist *ndlp,
214 uint32_t lun,
215 uint32_t old_val,
216 uint32_t new_val)
217{
218 struct lpfc_fast_path_event *fast_path_evt;
219 unsigned long flags;
220
221 fast_path_evt = lpfc_alloc_fast_evt(phba);
222 if (!fast_path_evt)
223 return;
224
225 fast_path_evt->un.queue_depth_evt.scsi_event.event_type =
226 FC_REG_SCSI_EVENT;
227 fast_path_evt->un.queue_depth_evt.scsi_event.subcategory =
228 LPFC_EVENT_VARQUEDEPTH;
229
230 /* Report all luns with change in queue depth */
231 fast_path_evt->un.queue_depth_evt.scsi_event.lun = lun;
232 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
233 memcpy(&fast_path_evt->un.queue_depth_evt.scsi_event.wwpn,
234 &ndlp->nlp_portname, sizeof(struct lpfc_name));
235 memcpy(&fast_path_evt->un.queue_depth_evt.scsi_event.wwnn,
236 &ndlp->nlp_nodename, sizeof(struct lpfc_name));
237 }
238
239 fast_path_evt->un.queue_depth_evt.oldval = old_val;
240 fast_path_evt->un.queue_depth_evt.newval = new_val;
241 fast_path_evt->vport = vport;
242
243 fast_path_evt->work_evt.evt = LPFC_EVT_FASTPATH_MGMT_EVT;
244 spin_lock_irqsave(&phba->hbalock, flags);
245 list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
246 spin_unlock_irqrestore(&phba->hbalock, flags);
247 lpfc_worker_wake_up(phba);
248
249 return;
250}
251
James Smart9bad7672008-12-04 22:39:02 -0500252/**
James Smart5ffc2662009-11-18 15:39:44 -0500253 * lpfc_change_queue_depth - Alter scsi device queue depth
254 * @sdev: Pointer the scsi device on which to change the queue depth.
255 * @qdepth: New queue depth to set the sdev to.
256 * @reason: The reason for the queue depth change.
257 *
258 * This function is called by the midlayer and the LLD to alter the queue
259 * depth for a scsi device. This function sets the queue depth to the new
260 * value and sends an event out to log the queue depth change.
261 **/
262int
263lpfc_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
264{
265 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
266 struct lpfc_hba *phba = vport->phba;
267 struct lpfc_rport_data *rdata;
268 unsigned long new_queue_depth, old_queue_depth;
269
270 old_queue_depth = sdev->queue_depth;
271 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
272 new_queue_depth = sdev->queue_depth;
273 rdata = sdev->hostdata;
274 if (rdata)
275 lpfc_send_sdev_queuedepth_change_event(phba, vport,
276 rdata->pnode, sdev->lun,
277 old_queue_depth,
278 new_queue_depth);
279 return sdev->queue_depth;
280}
281
282/**
James Smart3621a712009-04-06 18:47:14 -0400283 * lpfc_rampdown_queue_depth - Post RAMP_DOWN_QUEUE event to worker thread
James Smart9bad7672008-12-04 22:39:02 -0500284 * @phba: The Hba for which this call is being executed.
285 *
286 * This routine is called when there is resource error in driver or firmware.
287 * This routine posts WORKER_RAMP_DOWN_QUEUE event for @phba. This routine
288 * posts at most 1 event each second. This routine wakes up worker thread of
289 * @phba to process WORKER_RAM_DOWN_EVENT event.
290 *
291 * This routine should be called with no lock held.
292 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500293void
James Smarteaf15d52008-12-04 22:39:29 -0500294lpfc_rampdown_queue_depth(struct lpfc_hba *phba)
James Smart92d7f7b2007-06-17 19:56:38 -0500295{
296 unsigned long flags;
James Smart5e9d9b82008-06-14 22:52:53 -0400297 uint32_t evt_posted;
James Smart92d7f7b2007-06-17 19:56:38 -0500298
299 spin_lock_irqsave(&phba->hbalock, flags);
300 atomic_inc(&phba->num_rsrc_err);
301 phba->last_rsrc_error_time = jiffies;
302
303 if ((phba->last_ramp_down_time + QUEUE_RAMP_DOWN_INTERVAL) > jiffies) {
304 spin_unlock_irqrestore(&phba->hbalock, flags);
305 return;
306 }
307
308 phba->last_ramp_down_time = jiffies;
309
310 spin_unlock_irqrestore(&phba->hbalock, flags);
311
312 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart5e9d9b82008-06-14 22:52:53 -0400313 evt_posted = phba->pport->work_port_events & WORKER_RAMP_DOWN_QUEUE;
314 if (!evt_posted)
James Smart92d7f7b2007-06-17 19:56:38 -0500315 phba->pport->work_port_events |= WORKER_RAMP_DOWN_QUEUE;
James Smart92d7f7b2007-06-17 19:56:38 -0500316 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
317
James Smart5e9d9b82008-06-14 22:52:53 -0400318 if (!evt_posted)
319 lpfc_worker_wake_up(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500320 return;
321}
322
James Smart9bad7672008-12-04 22:39:02 -0500323/**
James Smart3621a712009-04-06 18:47:14 -0400324 * lpfc_rampup_queue_depth - Post RAMP_UP_QUEUE event for worker thread
James Smart9bad7672008-12-04 22:39:02 -0500325 * @phba: The Hba for which this call is being executed.
326 *
327 * This routine post WORKER_RAMP_UP_QUEUE event for @phba vport. This routine
328 * post at most 1 event every 5 minute after last_ramp_up_time or
329 * last_rsrc_error_time. This routine wakes up worker thread of @phba
330 * to process WORKER_RAM_DOWN_EVENT event.
331 *
332 * This routine should be called with no lock held.
333 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500334static inline void
James Smart3de2a652007-08-02 11:09:59 -0400335lpfc_rampup_queue_depth(struct lpfc_vport *vport,
James Smarta257bf92009-04-06 18:48:10 -0400336 uint32_t queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -0500337{
338 unsigned long flags;
James Smart3de2a652007-08-02 11:09:59 -0400339 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -0400340 uint32_t evt_posted;
James Smart92d7f7b2007-06-17 19:56:38 -0500341 atomic_inc(&phba->num_cmd_success);
342
James Smarta257bf92009-04-06 18:48:10 -0400343 if (vport->cfg_lun_queue_depth <= queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -0500344 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500345 spin_lock_irqsave(&phba->hbalock, flags);
James Smart5ffc2662009-11-18 15:39:44 -0500346 if (time_before(jiffies,
347 phba->last_ramp_up_time + QUEUE_RAMP_UP_INTERVAL) ||
348 time_before(jiffies,
349 phba->last_rsrc_error_time + QUEUE_RAMP_UP_INTERVAL)) {
James Smart92d7f7b2007-06-17 19:56:38 -0500350 spin_unlock_irqrestore(&phba->hbalock, flags);
351 return;
352 }
James Smart92d7f7b2007-06-17 19:56:38 -0500353 phba->last_ramp_up_time = jiffies;
354 spin_unlock_irqrestore(&phba->hbalock, flags);
355
356 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart5e9d9b82008-06-14 22:52:53 -0400357 evt_posted = phba->pport->work_port_events & WORKER_RAMP_UP_QUEUE;
358 if (!evt_posted)
James Smart92d7f7b2007-06-17 19:56:38 -0500359 phba->pport->work_port_events |= WORKER_RAMP_UP_QUEUE;
James Smart92d7f7b2007-06-17 19:56:38 -0500360 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
361
James Smart5e9d9b82008-06-14 22:52:53 -0400362 if (!evt_posted)
363 lpfc_worker_wake_up(phba);
364 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500365}
366
James Smart9bad7672008-12-04 22:39:02 -0500367/**
James Smart3621a712009-04-06 18:47:14 -0400368 * lpfc_ramp_down_queue_handler - WORKER_RAMP_DOWN_QUEUE event handler
James Smart9bad7672008-12-04 22:39:02 -0500369 * @phba: The Hba for which this call is being executed.
370 *
371 * This routine is called to process WORKER_RAMP_DOWN_QUEUE event for worker
372 * thread.This routine reduces queue depth for all scsi device on each vport
373 * associated with @phba.
374 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500375void
376lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
377{
James Smart549e55c2007-08-02 11:09:51 -0400378 struct lpfc_vport **vports;
379 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500380 struct scsi_device *sdev;
James Smart5ffc2662009-11-18 15:39:44 -0500381 unsigned long new_queue_depth;
James Smart92d7f7b2007-06-17 19:56:38 -0500382 unsigned long num_rsrc_err, num_cmd_success;
James Smart549e55c2007-08-02 11:09:51 -0400383 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500384
385 num_rsrc_err = atomic_read(&phba->num_rsrc_err);
386 num_cmd_success = atomic_read(&phba->num_cmd_success);
387
James Smart549e55c2007-08-02 11:09:51 -0400388 vports = lpfc_create_vport_work_array(phba);
389 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400390 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400391 shost = lpfc_shost_from_vport(vports[i]);
392 shost_for_each_device(sdev, shost) {
James Smart92d7f7b2007-06-17 19:56:38 -0500393 new_queue_depth =
James Smart549e55c2007-08-02 11:09:51 -0400394 sdev->queue_depth * num_rsrc_err /
395 (num_rsrc_err + num_cmd_success);
396 if (!new_queue_depth)
397 new_queue_depth = sdev->queue_depth - 1;
398 else
399 new_queue_depth = sdev->queue_depth -
400 new_queue_depth;
James Smart5ffc2662009-11-18 15:39:44 -0500401 lpfc_change_queue_depth(sdev, new_queue_depth,
402 SCSI_QDEPTH_DEFAULT);
James Smart549e55c2007-08-02 11:09:51 -0400403 }
James Smart92d7f7b2007-06-17 19:56:38 -0500404 }
James Smart09372822008-01-11 01:52:54 -0500405 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500406 atomic_set(&phba->num_rsrc_err, 0);
407 atomic_set(&phba->num_cmd_success, 0);
408}
409
James Smart9bad7672008-12-04 22:39:02 -0500410/**
James Smart3621a712009-04-06 18:47:14 -0400411 * lpfc_ramp_up_queue_handler - WORKER_RAMP_UP_QUEUE event handler
James Smart9bad7672008-12-04 22:39:02 -0500412 * @phba: The Hba for which this call is being executed.
413 *
414 * This routine is called to process WORKER_RAMP_UP_QUEUE event for worker
415 * thread.This routine increases queue depth for all scsi device on each vport
416 * associated with @phba by 1. This routine also sets @phba num_rsrc_err and
417 * num_cmd_success to zero.
418 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500419void
420lpfc_ramp_up_queue_handler(struct lpfc_hba *phba)
421{
James Smart549e55c2007-08-02 11:09:51 -0400422 struct lpfc_vport **vports;
423 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500424 struct scsi_device *sdev;
James Smart549e55c2007-08-02 11:09:51 -0400425 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500426
James Smart549e55c2007-08-02 11:09:51 -0400427 vports = lpfc_create_vport_work_array(phba);
428 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400429 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400430 shost = lpfc_shost_from_vport(vports[i]);
431 shost_for_each_device(sdev, shost) {
James Smart97eab632008-04-07 10:16:05 -0400432 if (vports[i]->cfg_lun_queue_depth <=
433 sdev->queue_depth)
434 continue;
James Smart5ffc2662009-11-18 15:39:44 -0500435 lpfc_change_queue_depth(sdev,
436 sdev->queue_depth+1,
437 SCSI_QDEPTH_RAMP_UP);
James Smart549e55c2007-08-02 11:09:51 -0400438 }
James Smart92d7f7b2007-06-17 19:56:38 -0500439 }
James Smart09372822008-01-11 01:52:54 -0500440 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500441 atomic_set(&phba->num_rsrc_err, 0);
442 atomic_set(&phba->num_cmd_success, 0);
443}
444
James Smarta8e497d2008-08-24 21:50:11 -0400445/**
James Smart3621a712009-04-06 18:47:14 -0400446 * lpfc_scsi_dev_block - set all scsi hosts to block state
James Smarta8e497d2008-08-24 21:50:11 -0400447 * @phba: Pointer to HBA context object.
448 *
449 * This function walks vport list and set each SCSI host to block state
450 * by invoking fc_remote_port_delete() routine. This function is invoked
451 * with EEH when device's PCI slot has been permanently disabled.
452 **/
453void
454lpfc_scsi_dev_block(struct lpfc_hba *phba)
455{
456 struct lpfc_vport **vports;
457 struct Scsi_Host *shost;
458 struct scsi_device *sdev;
459 struct fc_rport *rport;
460 int i;
461
462 vports = lpfc_create_vport_work_array(phba);
463 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400464 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smarta8e497d2008-08-24 21:50:11 -0400465 shost = lpfc_shost_from_vport(vports[i]);
466 shost_for_each_device(sdev, shost) {
467 rport = starget_to_rport(scsi_target(sdev));
468 fc_remote_port_delete(rport);
469 }
470 }
471 lpfc_destroy_vport_work_array(phba, vports);
472}
473
James Smart9bad7672008-12-04 22:39:02 -0500474/**
James Smart3772a992009-05-22 14:50:54 -0400475 * lpfc_new_scsi_buf_s3 - Scsi buffer allocator for HBA with SLI3 IF spec
James Smart9bad7672008-12-04 22:39:02 -0500476 * @vport: The virtual port for which this call being executed.
James Smart3772a992009-05-22 14:50:54 -0400477 * @num_to_allocate: The requested number of buffers to allocate.
James Smart9bad7672008-12-04 22:39:02 -0500478 *
James Smart3772a992009-05-22 14:50:54 -0400479 * This routine allocates a scsi buffer for device with SLI-3 interface spec,
480 * the scsi buffer contains all the necessary information needed to initiate
481 * a SCSI I/O. The non-DMAable buffer region contains information to build
482 * the IOCB. The DMAable region contains memory for the FCP CMND, FCP RSP,
483 * and the initial BPL. In addition to allocating memory, the FCP CMND and
484 * FCP RSP BDEs are setup in the BPL and the BPL BDE is setup in the IOCB.
James Smart9bad7672008-12-04 22:39:02 -0500485 *
486 * Return codes:
James Smart3772a992009-05-22 14:50:54 -0400487 * int - number of scsi buffers that were allocated.
488 * 0 = failure, less than num_to_alloc is a partial failure.
James Smart9bad7672008-12-04 22:39:02 -0500489 **/
James Smart3772a992009-05-22 14:50:54 -0400490static int
491lpfc_new_scsi_buf_s3(struct lpfc_vport *vport, int num_to_alloc)
dea31012005-04-17 16:05:31 -0500492{
James Smart2e0fef82007-06-17 19:56:36 -0500493 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500494 struct lpfc_scsi_buf *psb;
495 struct ulp_bde64 *bpl;
496 IOCB_t *iocb;
James Smart34b02dc2008-08-24 21:49:55 -0400497 dma_addr_t pdma_phys_fcp_cmd;
498 dma_addr_t pdma_phys_fcp_rsp;
499 dma_addr_t pdma_phys_bpl;
James Bottomley604a3e32005-10-29 10:28:33 -0500500 uint16_t iotag;
James Smart3772a992009-05-22 14:50:54 -0400501 int bcnt;
dea31012005-04-17 16:05:31 -0500502
James Smart3772a992009-05-22 14:50:54 -0400503 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
504 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
505 if (!psb)
506 break;
dea31012005-04-17 16:05:31 -0500507
James Smart3772a992009-05-22 14:50:54 -0400508 /*
509 * Get memory from the pci pool to map the virt space to pci
510 * bus space for an I/O. The DMA buffer includes space for the
511 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
512 * necessary to support the sg_tablesize.
513 */
514 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
515 GFP_KERNEL, &psb->dma_handle);
516 if (!psb->data) {
517 kfree(psb);
518 break;
519 }
dea31012005-04-17 16:05:31 -0500520
James Smart3772a992009-05-22 14:50:54 -0400521 /* Initialize virtual ptrs to dma_buf region. */
522 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
dea31012005-04-17 16:05:31 -0500523
James Smart3772a992009-05-22 14:50:54 -0400524 /* Allocate iotag for psb->cur_iocbq. */
525 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
526 if (iotag == 0) {
527 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
528 psb->data, psb->dma_handle);
529 kfree(psb);
530 break;
531 }
532 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
James Bottomley604a3e32005-10-29 10:28:33 -0500533
James Smart3772a992009-05-22 14:50:54 -0400534 psb->fcp_cmnd = psb->data;
535 psb->fcp_rsp = psb->data + sizeof(struct fcp_cmnd);
536 psb->fcp_bpl = psb->data + sizeof(struct fcp_cmnd) +
James Smart34b02dc2008-08-24 21:49:55 -0400537 sizeof(struct fcp_rsp);
dea31012005-04-17 16:05:31 -0500538
James Smart3772a992009-05-22 14:50:54 -0400539 /* Initialize local short-hand pointers. */
540 bpl = psb->fcp_bpl;
541 pdma_phys_fcp_cmd = psb->dma_handle;
542 pdma_phys_fcp_rsp = psb->dma_handle + sizeof(struct fcp_cmnd);
543 pdma_phys_bpl = psb->dma_handle + sizeof(struct fcp_cmnd) +
544 sizeof(struct fcp_rsp);
dea31012005-04-17 16:05:31 -0500545
James Smart3772a992009-05-22 14:50:54 -0400546 /*
547 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
548 * are sg list bdes. Initialize the first two and leave the
549 * rest for queuecommand.
550 */
551 bpl[0].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_cmd));
552 bpl[0].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_cmd));
553 bpl[0].tus.f.bdeSize = sizeof(struct fcp_cmnd);
554 bpl[0].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
555 bpl[0].tus.w = le32_to_cpu(bpl[0].tus.w);
dea31012005-04-17 16:05:31 -0500556
James Smart3772a992009-05-22 14:50:54 -0400557 /* Setup the physical region for the FCP RSP */
558 bpl[1].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_rsp));
559 bpl[1].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_rsp));
560 bpl[1].tus.f.bdeSize = sizeof(struct fcp_rsp);
561 bpl[1].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
562 bpl[1].tus.w = le32_to_cpu(bpl[1].tus.w);
563
564 /*
565 * Since the IOCB for the FCP I/O is built into this
566 * lpfc_scsi_buf, initialize it with all known data now.
567 */
568 iocb = &psb->cur_iocbq.iocb;
569 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
570 if ((phba->sli_rev == 3) &&
571 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED)) {
572 /* fill in immediate fcp command BDE */
573 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_IMMED;
574 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
575 iocb->un.fcpi64.bdl.addrLow = offsetof(IOCB_t,
576 unsli3.fcp_ext.icd);
577 iocb->un.fcpi64.bdl.addrHigh = 0;
578 iocb->ulpBdeCount = 0;
579 iocb->ulpLe = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300580 /* fill in response BDE */
James Smart3772a992009-05-22 14:50:54 -0400581 iocb->unsli3.fcp_ext.rbde.tus.f.bdeFlags =
582 BUFF_TYPE_BDE_64;
583 iocb->unsli3.fcp_ext.rbde.tus.f.bdeSize =
584 sizeof(struct fcp_rsp);
585 iocb->unsli3.fcp_ext.rbde.addrLow =
586 putPaddrLow(pdma_phys_fcp_rsp);
587 iocb->unsli3.fcp_ext.rbde.addrHigh =
588 putPaddrHigh(pdma_phys_fcp_rsp);
589 } else {
590 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
591 iocb->un.fcpi64.bdl.bdeSize =
592 (2 * sizeof(struct ulp_bde64));
593 iocb->un.fcpi64.bdl.addrLow =
594 putPaddrLow(pdma_phys_bpl);
595 iocb->un.fcpi64.bdl.addrHigh =
596 putPaddrHigh(pdma_phys_bpl);
597 iocb->ulpBdeCount = 1;
598 iocb->ulpLe = 1;
599 }
600 iocb->ulpClass = CLASS3;
601 psb->status = IOSTAT_SUCCESS;
James Smartda0436e2009-05-22 14:51:39 -0400602 /* Put it back into the SCSI buffer list */
James Smarteee88772010-09-29 11:19:08 -0400603 psb->cur_iocbq.context1 = psb;
James Smart1c6f4ef52009-11-18 15:40:49 -0500604 lpfc_release_scsi_buf_s3(phba, psb);
James Smart3772a992009-05-22 14:50:54 -0400605
James Smart34b02dc2008-08-24 21:49:55 -0400606 }
dea31012005-04-17 16:05:31 -0500607
James Smart3772a992009-05-22 14:50:54 -0400608 return bcnt;
dea31012005-04-17 16:05:31 -0500609}
610
James Smart9bad7672008-12-04 22:39:02 -0500611/**
James Smart1151e3e2011-02-16 12:39:35 -0500612 * lpfc_sli4_vport_delete_fcp_xri_aborted -Remove all ndlp references for vport
613 * @vport: pointer to lpfc vport data structure.
614 *
615 * This routine is invoked by the vport cleanup for deletions and the cleanup
616 * for an ndlp on removal.
617 **/
618void
619lpfc_sli4_vport_delete_fcp_xri_aborted(struct lpfc_vport *vport)
620{
621 struct lpfc_hba *phba = vport->phba;
622 struct lpfc_scsi_buf *psb, *next_psb;
623 unsigned long iflag = 0;
624
625 spin_lock_irqsave(&phba->hbalock, iflag);
626 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
627 list_for_each_entry_safe(psb, next_psb,
628 &phba->sli4_hba.lpfc_abts_scsi_buf_list, list) {
629 if (psb->rdata && psb->rdata->pnode
630 && psb->rdata->pnode->vport == vport)
631 psb->rdata = NULL;
632 }
633 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
634 spin_unlock_irqrestore(&phba->hbalock, iflag);
635}
636
637/**
James Smartda0436e2009-05-22 14:51:39 -0400638 * lpfc_sli4_fcp_xri_aborted - Fast-path process of fcp xri abort
639 * @phba: pointer to lpfc hba data structure.
640 * @axri: pointer to the fcp xri abort wcqe structure.
641 *
642 * This routine is invoked by the worker thread to process a SLI4 fast-path
643 * FCP aborted xri.
644 **/
645void
646lpfc_sli4_fcp_xri_aborted(struct lpfc_hba *phba,
647 struct sli4_wcqe_xri_aborted *axri)
648{
649 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
James Smart19ca7602010-11-20 23:11:55 -0500650 uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
James Smartda0436e2009-05-22 14:51:39 -0400651 struct lpfc_scsi_buf *psb, *next_psb;
652 unsigned long iflag = 0;
James Smart0f65ff62010-02-26 14:14:23 -0500653 struct lpfc_iocbq *iocbq;
654 int i;
James Smart19ca7602010-11-20 23:11:55 -0500655 struct lpfc_nodelist *ndlp;
656 int rrq_empty = 0;
James Smart589a52d2010-07-14 15:30:54 -0400657 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smartda0436e2009-05-22 14:51:39 -0400658
James Smart0f65ff62010-02-26 14:14:23 -0500659 spin_lock_irqsave(&phba->hbalock, iflag);
660 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
James Smartda0436e2009-05-22 14:51:39 -0400661 list_for_each_entry_safe(psb, next_psb,
662 &phba->sli4_hba.lpfc_abts_scsi_buf_list, list) {
663 if (psb->cur_iocbq.sli4_xritag == xri) {
664 list_del(&psb->list);
James Smart341af102010-01-26 23:07:37 -0500665 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400666 psb->status = IOSTAT_SUCCESS;
James Smart0f65ff62010-02-26 14:14:23 -0500667 spin_unlock(
668 &phba->sli4_hba.abts_scsi_buf_list_lock);
James Smart1151e3e2011-02-16 12:39:35 -0500669 if (psb->rdata && psb->rdata->pnode)
670 ndlp = psb->rdata->pnode;
671 else
672 ndlp = NULL;
673
James Smart19ca7602010-11-20 23:11:55 -0500674 rrq_empty = list_empty(&phba->active_rrq_list);
James Smart0f65ff62010-02-26 14:14:23 -0500675 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart19ca7602010-11-20 23:11:55 -0500676 if (ndlp)
677 lpfc_set_rrq_active(phba, ndlp, xri, rxid, 1);
James Smartda0436e2009-05-22 14:51:39 -0400678 lpfc_release_scsi_buf_s4(phba, psb);
James Smart19ca7602010-11-20 23:11:55 -0500679 if (rrq_empty)
680 lpfc_worker_wake_up(phba);
James Smartda0436e2009-05-22 14:51:39 -0400681 return;
682 }
683 }
James Smart0f65ff62010-02-26 14:14:23 -0500684 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
685 for (i = 1; i <= phba->sli.last_iotag; i++) {
686 iocbq = phba->sli.iocbq_lookup[i];
687
688 if (!(iocbq->iocb_flag & LPFC_IO_FCP) ||
689 (iocbq->iocb_flag & LPFC_IO_LIBDFC))
690 continue;
691 if (iocbq->sli4_xritag != xri)
692 continue;
693 psb = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
694 psb->exch_busy = 0;
695 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart589a52d2010-07-14 15:30:54 -0400696 if (pring->txq_cnt)
697 lpfc_worker_wake_up(phba);
James Smart0f65ff62010-02-26 14:14:23 -0500698 return;
699
700 }
701 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartda0436e2009-05-22 14:51:39 -0400702}
703
704/**
705 * lpfc_sli4_repost_scsi_sgl_list - Repsot the Scsi buffers sgl pages as block
706 * @phba: pointer to lpfc hba data structure.
707 *
708 * This routine walks the list of scsi buffers that have been allocated and
709 * repost them to the HBA by using SGL block post. This is needed after a
710 * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
711 * is responsible for moving all scsi buffers on the lpfc_abts_scsi_sgl_list
712 * to the lpfc_scsi_buf_list. If the repost fails, reject all scsi buffers.
713 *
714 * Returns: 0 = success, non-zero failure.
715 **/
716int
717lpfc_sli4_repost_scsi_sgl_list(struct lpfc_hba *phba)
718{
719 struct lpfc_scsi_buf *psb;
720 int index, status, bcnt = 0, rcnt = 0, rc = 0;
721 LIST_HEAD(sblist);
722
723 for (index = 0; index < phba->sli4_hba.scsi_xri_cnt; index++) {
724 psb = phba->sli4_hba.lpfc_scsi_psb_array[index];
725 if (psb) {
726 /* Remove from SCSI buffer list */
727 list_del(&psb->list);
728 /* Add it to a local SCSI buffer list */
729 list_add_tail(&psb->list, &sblist);
730 if (++rcnt == LPFC_NEMBED_MBOX_SGL_CNT) {
731 bcnt = rcnt;
732 rcnt = 0;
733 }
734 } else
735 /* A hole present in the XRI array, need to skip */
736 bcnt = rcnt;
737
738 if (index == phba->sli4_hba.scsi_xri_cnt - 1)
739 /* End of XRI array for SCSI buffer, complete */
740 bcnt = rcnt;
741
742 /* Continue until collect up to a nembed page worth of sgls */
743 if (bcnt == 0)
744 continue;
745 /* Now, post the SCSI buffer list sgls as a block */
James Smart6d368e52011-05-24 11:44:12 -0400746 if (!phba->sli4_hba.extents_in_use)
747 status = lpfc_sli4_post_scsi_sgl_block(phba,
748 &sblist,
749 bcnt);
750 else
751 status = lpfc_sli4_post_scsi_sgl_blk_ext(phba,
752 &sblist,
753 bcnt);
James Smartda0436e2009-05-22 14:51:39 -0400754 /* Reset SCSI buffer count for next round of posting */
755 bcnt = 0;
756 while (!list_empty(&sblist)) {
757 list_remove_head(&sblist, psb, struct lpfc_scsi_buf,
758 list);
759 if (status) {
760 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500761 psb->exch_busy = 1;
James Smartda0436e2009-05-22 14:51:39 -0400762 rc++;
James Smart341af102010-01-26 23:07:37 -0500763 } else {
764 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400765 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500766 }
James Smartda0436e2009-05-22 14:51:39 -0400767 /* Put it back into the SCSI buffer list */
768 lpfc_release_scsi_buf_s4(phba, psb);
769 }
770 }
771 return rc;
772}
773
774/**
775 * lpfc_new_scsi_buf_s4 - Scsi buffer allocator for HBA with SLI4 IF spec
776 * @vport: The virtual port for which this call being executed.
777 * @num_to_allocate: The requested number of buffers to allocate.
778 *
779 * This routine allocates a scsi buffer for device with SLI-4 interface spec,
780 * the scsi buffer contains all the necessary information needed to initiate
781 * a SCSI I/O.
782 *
783 * Return codes:
784 * int - number of scsi buffers that were allocated.
785 * 0 = failure, less than num_to_alloc is a partial failure.
786 **/
787static int
788lpfc_new_scsi_buf_s4(struct lpfc_vport *vport, int num_to_alloc)
789{
790 struct lpfc_hba *phba = vport->phba;
791 struct lpfc_scsi_buf *psb;
792 struct sli4_sge *sgl;
793 IOCB_t *iocb;
794 dma_addr_t pdma_phys_fcp_cmd;
795 dma_addr_t pdma_phys_fcp_rsp;
796 dma_addr_t pdma_phys_bpl, pdma_phys_bpl1;
James Smart6d368e52011-05-24 11:44:12 -0400797 uint16_t iotag, last_xritag = NO_XRI, lxri = 0;
James Smartda0436e2009-05-22 14:51:39 -0400798 int status = 0, index;
799 int bcnt;
800 int non_sequential_xri = 0;
James Smartda0436e2009-05-22 14:51:39 -0400801 LIST_HEAD(sblist);
802
803 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
804 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
805 if (!psb)
806 break;
807
808 /*
809 * Get memory from the pci pool to map the virt space to pci bus
810 * space for an I/O. The DMA buffer includes space for the
811 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
812 * necessary to support the sg_tablesize.
813 */
814 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
815 GFP_KERNEL, &psb->dma_handle);
816 if (!psb->data) {
817 kfree(psb);
818 break;
819 }
820
821 /* Initialize virtual ptrs to dma_buf region. */
822 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
823
824 /* Allocate iotag for psb->cur_iocbq. */
825 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
826 if (iotag == 0) {
James Smartb92938b2010-06-07 15:24:12 -0400827 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
828 psb->data, psb->dma_handle);
James Smartda0436e2009-05-22 14:51:39 -0400829 kfree(psb);
830 break;
831 }
832
James Smart6d368e52011-05-24 11:44:12 -0400833 lxri = lpfc_sli4_next_xritag(phba);
834 if (lxri == NO_XRI) {
James Smartda0436e2009-05-22 14:51:39 -0400835 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
836 psb->data, psb->dma_handle);
837 kfree(psb);
838 break;
839 }
James Smart6d368e52011-05-24 11:44:12 -0400840 psb->cur_iocbq.sli4_lxritag = lxri;
841 psb->cur_iocbq.sli4_xritag = phba->sli4_hba.xri_ids[lxri];
James Smartda0436e2009-05-22 14:51:39 -0400842 if (last_xritag != NO_XRI
843 && psb->cur_iocbq.sli4_xritag != (last_xritag+1)) {
844 non_sequential_xri = 1;
845 } else
846 list_add_tail(&psb->list, &sblist);
847 last_xritag = psb->cur_iocbq.sli4_xritag;
848
849 index = phba->sli4_hba.scsi_xri_cnt++;
850 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
851
852 psb->fcp_bpl = psb->data;
853 psb->fcp_cmnd = (psb->data + phba->cfg_sg_dma_buf_size)
854 - (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
855 psb->fcp_rsp = (struct fcp_rsp *)((uint8_t *)psb->fcp_cmnd +
856 sizeof(struct fcp_cmnd));
857
858 /* Initialize local short-hand pointers. */
859 sgl = (struct sli4_sge *)psb->fcp_bpl;
860 pdma_phys_bpl = psb->dma_handle;
861 pdma_phys_fcp_cmd =
862 (psb->dma_handle + phba->cfg_sg_dma_buf_size)
863 - (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
864 pdma_phys_fcp_rsp = pdma_phys_fcp_cmd + sizeof(struct fcp_cmnd);
865
866 /*
867 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
868 * are sg list bdes. Initialize the first two and leave the
869 * rest for queuecommand.
870 */
871 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_cmd));
872 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_cmd));
James Smart05580562011-05-24 11:40:48 -0400873 sgl->word2 = le32_to_cpu(sgl->word2);
James Smartda0436e2009-05-22 14:51:39 -0400874 bf_set(lpfc_sli4_sge_last, sgl, 0);
875 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -0500876 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_cmnd));
James Smartda0436e2009-05-22 14:51:39 -0400877 sgl++;
878
879 /* Setup the physical region for the FCP RSP */
880 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_rsp));
881 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_rsp));
James Smart05580562011-05-24 11:40:48 -0400882 sgl->word2 = le32_to_cpu(sgl->word2);
James Smartda0436e2009-05-22 14:51:39 -0400883 bf_set(lpfc_sli4_sge_last, sgl, 1);
884 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -0500885 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_rsp));
James Smartda0436e2009-05-22 14:51:39 -0400886
887 /*
888 * Since the IOCB for the FCP I/O is built into this
889 * lpfc_scsi_buf, initialize it with all known data now.
890 */
891 iocb = &psb->cur_iocbq.iocb;
892 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
893 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_64;
894 /* setting the BLP size to 2 * sizeof BDE may not be correct.
895 * We are setting the bpl to point to out sgl. An sgl's
896 * entries are 16 bytes, a bpl entries are 12 bytes.
897 */
898 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
899 iocb->un.fcpi64.bdl.addrLow = putPaddrLow(pdma_phys_fcp_cmd);
900 iocb->un.fcpi64.bdl.addrHigh = putPaddrHigh(pdma_phys_fcp_cmd);
901 iocb->ulpBdeCount = 1;
902 iocb->ulpLe = 1;
903 iocb->ulpClass = CLASS3;
James Smarteee88772010-09-29 11:19:08 -0400904 psb->cur_iocbq.context1 = psb;
James Smartda0436e2009-05-22 14:51:39 -0400905 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
906 pdma_phys_bpl1 = pdma_phys_bpl + SGL_PAGE_SIZE;
907 else
908 pdma_phys_bpl1 = 0;
909 psb->dma_phys_bpl = pdma_phys_bpl;
910 phba->sli4_hba.lpfc_scsi_psb_array[index] = psb;
911 if (non_sequential_xri) {
912 status = lpfc_sli4_post_sgl(phba, pdma_phys_bpl,
913 pdma_phys_bpl1,
914 psb->cur_iocbq.sli4_xritag);
915 if (status) {
916 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500917 psb->exch_busy = 1;
James Smart341af102010-01-26 23:07:37 -0500918 } else {
919 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400920 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500921 }
James Smartda0436e2009-05-22 14:51:39 -0400922 /* Put it back into the SCSI buffer list */
923 lpfc_release_scsi_buf_s4(phba, psb);
924 break;
925 }
926 }
927 if (bcnt) {
James Smart6d368e52011-05-24 11:44:12 -0400928 if (!phba->sli4_hba.extents_in_use)
929 status = lpfc_sli4_post_scsi_sgl_block(phba,
930 &sblist,
931 bcnt);
932 else
933 status = lpfc_sli4_post_scsi_sgl_blk_ext(phba,
934 &sblist,
935 bcnt);
936
937 if (status) {
938 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
939 "3021 SCSI SGL post error %d\n",
940 status);
941 bcnt = 0;
942 }
James Smartda0436e2009-05-22 14:51:39 -0400943 /* Reset SCSI buffer count for next round of posting */
944 while (!list_empty(&sblist)) {
945 list_remove_head(&sblist, psb, struct lpfc_scsi_buf,
946 list);
947 if (status) {
948 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500949 psb->exch_busy = 1;
James Smart341af102010-01-26 23:07:37 -0500950 } else {
951 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400952 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500953 }
James Smartda0436e2009-05-22 14:51:39 -0400954 /* Put it back into the SCSI buffer list */
955 lpfc_release_scsi_buf_s4(phba, psb);
956 }
957 }
958
James Smartd7c47992010-06-08 18:31:54 -0400959 return bcnt + non_sequential_xri;
James Smartda0436e2009-05-22 14:51:39 -0400960}
961
962/**
James Smart3772a992009-05-22 14:50:54 -0400963 * lpfc_new_scsi_buf - Wrapper funciton for scsi buffer allocator
964 * @vport: The virtual port for which this call being executed.
965 * @num_to_allocate: The requested number of buffers to allocate.
966 *
967 * This routine wraps the actual SCSI buffer allocator function pointer from
968 * the lpfc_hba struct.
969 *
970 * Return codes:
971 * int - number of scsi buffers that were allocated.
972 * 0 = failure, less than num_to_alloc is a partial failure.
973 **/
974static inline int
975lpfc_new_scsi_buf(struct lpfc_vport *vport, int num_to_alloc)
976{
977 return vport->phba->lpfc_new_scsi_buf(vport, num_to_alloc);
978}
979
980/**
James Smart19ca7602010-11-20 23:11:55 -0500981 * lpfc_get_scsi_buf_s3 - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
James Smart3772a992009-05-22 14:50:54 -0400982 * @phba: The HBA for which this call is being executed.
James Smart9bad7672008-12-04 22:39:02 -0500983 *
984 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
985 * and returns to caller.
986 *
987 * Return codes:
988 * NULL - Error
989 * Pointer to lpfc_scsi_buf - Success
990 **/
Adrian Bunk455c53e2006-01-06 20:21:28 +0100991static struct lpfc_scsi_buf*
James Smart19ca7602010-11-20 23:11:55 -0500992lpfc_get_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500993{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400994 struct lpfc_scsi_buf * lpfc_cmd = NULL;
995 struct list_head *scsi_buf_list = &phba->lpfc_scsi_buf_list;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500996 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -0500997
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500998 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400999 list_remove_head(scsi_buf_list, lpfc_cmd, struct lpfc_scsi_buf, list);
James Smart1dcb58e2007-04-25 09:51:30 -04001000 if (lpfc_cmd) {
1001 lpfc_cmd->seg_cnt = 0;
1002 lpfc_cmd->nonsg_phys = 0;
James Smarte2a0a9d2008-12-04 22:40:02 -05001003 lpfc_cmd->prot_seg_cnt = 0;
James Smart1dcb58e2007-04-25 09:51:30 -04001004 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001005 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001006 return lpfc_cmd;
1007}
James Smart19ca7602010-11-20 23:11:55 -05001008/**
1009 * lpfc_get_scsi_buf_s4 - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
1010 * @phba: The HBA for which this call is being executed.
1011 *
1012 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
1013 * and returns to caller.
1014 *
1015 * Return codes:
1016 * NULL - Error
1017 * Pointer to lpfc_scsi_buf - Success
1018 **/
1019static struct lpfc_scsi_buf*
1020lpfc_get_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
1021{
James Smart1151e3e2011-02-16 12:39:35 -05001022 struct lpfc_scsi_buf *lpfc_cmd ;
James Smart19ca7602010-11-20 23:11:55 -05001023 unsigned long iflag = 0;
1024 int found = 0;
1025
1026 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James Smart1151e3e2011-02-16 12:39:35 -05001027 list_for_each_entry(lpfc_cmd, &phba->lpfc_scsi_buf_list,
1028 list) {
James Smart19ca7602010-11-20 23:11:55 -05001029 if (lpfc_test_rrq_active(phba, ndlp,
James Smart1151e3e2011-02-16 12:39:35 -05001030 lpfc_cmd->cur_iocbq.sli4_xritag))
1031 continue;
1032 list_del(&lpfc_cmd->list);
James Smart19ca7602010-11-20 23:11:55 -05001033 found = 1;
1034 lpfc_cmd->seg_cnt = 0;
1035 lpfc_cmd->nonsg_phys = 0;
1036 lpfc_cmd->prot_seg_cnt = 0;
James Smart1151e3e2011-02-16 12:39:35 -05001037 break;
James Smart19ca7602010-11-20 23:11:55 -05001038 }
James Smart1151e3e2011-02-16 12:39:35 -05001039 spin_unlock_irqrestore(&phba->scsi_buf_list_lock,
1040 iflag);
1041 if (!found)
1042 return NULL;
1043 else
1044 return lpfc_cmd;
James Smart19ca7602010-11-20 23:11:55 -05001045}
1046/**
1047 * lpfc_get_scsi_buf - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
1048 * @phba: The HBA for which this call is being executed.
1049 *
1050 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
1051 * and returns to caller.
1052 *
1053 * Return codes:
1054 * NULL - Error
1055 * Pointer to lpfc_scsi_buf - Success
1056 **/
1057static struct lpfc_scsi_buf*
1058lpfc_get_scsi_buf(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
1059{
1060 return phba->lpfc_get_scsi_buf(phba, ndlp);
1061}
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001062
James Smart9bad7672008-12-04 22:39:02 -05001063/**
James Smart3772a992009-05-22 14:50:54 -04001064 * lpfc_release_scsi_buf - Return a scsi buffer back to hba scsi buf list
James Smart9bad7672008-12-04 22:39:02 -05001065 * @phba: The Hba for which this call is being executed.
1066 * @psb: The scsi buffer which is being released.
1067 *
1068 * This routine releases @psb scsi buffer by adding it to tail of @phba
1069 * lpfc_scsi_buf_list list.
1070 **/
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001071static void
James Smart3772a992009-05-22 14:50:54 -04001072lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001073{
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001074 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -05001075
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001076 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001077 psb->pCmd = NULL;
dea31012005-04-17 16:05:31 -05001078 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001079 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
dea31012005-04-17 16:05:31 -05001080}
1081
James Smart9bad7672008-12-04 22:39:02 -05001082/**
James Smartda0436e2009-05-22 14:51:39 -04001083 * lpfc_release_scsi_buf_s4: Return a scsi buffer back to hba scsi buf list.
1084 * @phba: The Hba for which this call is being executed.
1085 * @psb: The scsi buffer which is being released.
1086 *
1087 * This routine releases @psb scsi buffer by adding it to tail of @phba
1088 * lpfc_scsi_buf_list list. For SLI4 XRI's are tied to the scsi buffer
1089 * and cannot be reused for at least RA_TOV amount of time if it was
1090 * aborted.
1091 **/
1092static void
1093lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
1094{
1095 unsigned long iflag = 0;
1096
James Smart341af102010-01-26 23:07:37 -05001097 if (psb->exch_busy) {
James Smartda0436e2009-05-22 14:51:39 -04001098 spin_lock_irqsave(&phba->sli4_hba.abts_scsi_buf_list_lock,
1099 iflag);
1100 psb->pCmd = NULL;
1101 list_add_tail(&psb->list,
1102 &phba->sli4_hba.lpfc_abts_scsi_buf_list);
1103 spin_unlock_irqrestore(&phba->sli4_hba.abts_scsi_buf_list_lock,
1104 iflag);
1105 } else {
1106
1107 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
1108 psb->pCmd = NULL;
1109 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
1110 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
1111 }
1112}
1113
1114/**
James Smart3772a992009-05-22 14:50:54 -04001115 * lpfc_release_scsi_buf: Return a scsi buffer back to hba scsi buf list.
1116 * @phba: The Hba for which this call is being executed.
1117 * @psb: The scsi buffer which is being released.
1118 *
1119 * This routine releases @psb scsi buffer by adding it to tail of @phba
1120 * lpfc_scsi_buf_list list.
1121 **/
1122static void
1123lpfc_release_scsi_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
1124{
1125
1126 phba->lpfc_release_scsi_buf(phba, psb);
1127}
1128
1129/**
1130 * lpfc_scsi_prep_dma_buf_s3 - DMA mapping for scsi buffer to SLI3 IF spec
James Smart9bad7672008-12-04 22:39:02 -05001131 * @phba: The Hba for which this call is being executed.
1132 * @lpfc_cmd: The scsi buffer which is going to be mapped.
1133 *
1134 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
James Smart3772a992009-05-22 14:50:54 -04001135 * field of @lpfc_cmd for device with SLI-3 interface spec. This routine scans
1136 * through sg elements and format the bdea. This routine also initializes all
1137 * IOCB fields which are dependent on scsi command request buffer.
James Smart9bad7672008-12-04 22:39:02 -05001138 *
1139 * Return codes:
1140 * 1 - Error
1141 * 0 - Success
1142 **/
dea31012005-04-17 16:05:31 -05001143static int
James Smart3772a992009-05-22 14:50:54 -04001144lpfc_scsi_prep_dma_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
dea31012005-04-17 16:05:31 -05001145{
1146 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1147 struct scatterlist *sgel = NULL;
1148 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1149 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
James Smart0f65ff62010-02-26 14:14:23 -05001150 struct lpfc_iocbq *iocbq = &lpfc_cmd->cur_iocbq;
dea31012005-04-17 16:05:31 -05001151 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
James Smart34b02dc2008-08-24 21:49:55 -04001152 struct ulp_bde64 *data_bde = iocb_cmd->unsli3.fcp_ext.dbde;
dea31012005-04-17 16:05:31 -05001153 dma_addr_t physaddr;
James Smart34b02dc2008-08-24 21:49:55 -04001154 uint32_t num_bde = 0;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001155 int nseg, datadir = scsi_cmnd->sc_data_direction;
dea31012005-04-17 16:05:31 -05001156
1157 /*
1158 * There are three possibilities here - use scatter-gather segment, use
1159 * the single mapping, or neither. Start the lpfc command prep by
1160 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1161 * data bde entry.
1162 */
1163 bpl += 2;
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001164 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -05001165 /*
1166 * The driver stores the segment count returned from pci_map_sg
1167 * because this a count of dma-mappings used to map the use_sg
1168 * pages. They are not guaranteed to be the same for those
1169 * architectures that implement an IOMMU.
1170 */
dea31012005-04-17 16:05:31 -05001171
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001172 nseg = dma_map_sg(&phba->pcidev->dev, scsi_sglist(scsi_cmnd),
1173 scsi_sg_count(scsi_cmnd), datadir);
1174 if (unlikely(!nseg))
1175 return 1;
1176
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001177 lpfc_cmd->seg_cnt = nseg;
dea31012005-04-17 16:05:31 -05001178 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001179 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1180 "9064 BLKGRD: %s: Too many sg segments from "
James Smarte2a0a9d2008-12-04 22:40:02 -05001181 "dma_map_sg. Config %d, seg_cnt %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001182 __func__, phba->cfg_sg_seg_cnt,
dea31012005-04-17 16:05:31 -05001183 lpfc_cmd->seg_cnt);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001184 scsi_dma_unmap(scsi_cmnd);
dea31012005-04-17 16:05:31 -05001185 return 1;
1186 }
1187
1188 /*
1189 * The driver established a maximum scatter-gather segment count
1190 * during probe that limits the number of sg elements in any
1191 * single scsi command. Just run through the seg_cnt and format
1192 * the bde's.
James Smart34b02dc2008-08-24 21:49:55 -04001193 * When using SLI-3 the driver will try to fit all the BDEs into
1194 * the IOCB. If it can't then the BDEs get added to a BPL as it
1195 * does for SLI-2 mode.
dea31012005-04-17 16:05:31 -05001196 */
James Smart34b02dc2008-08-24 21:49:55 -04001197 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
dea31012005-04-17 16:05:31 -05001198 physaddr = sg_dma_address(sgel);
James Smart34b02dc2008-08-24 21:49:55 -04001199 if (phba->sli_rev == 3 &&
James Smarte2a0a9d2008-12-04 22:40:02 -05001200 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
James Smart0f65ff62010-02-26 14:14:23 -05001201 !(iocbq->iocb_flag & DSS_SECURITY_OP) &&
James Smart34b02dc2008-08-24 21:49:55 -04001202 nseg <= LPFC_EXT_DATA_BDE_COUNT) {
1203 data_bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1204 data_bde->tus.f.bdeSize = sg_dma_len(sgel);
1205 data_bde->addrLow = putPaddrLow(physaddr);
1206 data_bde->addrHigh = putPaddrHigh(physaddr);
1207 data_bde++;
1208 } else {
1209 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1210 bpl->tus.f.bdeSize = sg_dma_len(sgel);
1211 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1212 bpl->addrLow =
1213 le32_to_cpu(putPaddrLow(physaddr));
1214 bpl->addrHigh =
1215 le32_to_cpu(putPaddrHigh(physaddr));
1216 bpl++;
1217 }
dea31012005-04-17 16:05:31 -05001218 }
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001219 }
dea31012005-04-17 16:05:31 -05001220
1221 /*
1222 * Finish initializing those IOCB fields that are dependent on the
James Smart34b02dc2008-08-24 21:49:55 -04001223 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
1224 * explicitly reinitialized and for SLI-3 the extended bde count is
1225 * explicitly reinitialized since all iocb memory resources are reused.
dea31012005-04-17 16:05:31 -05001226 */
James Smarte2a0a9d2008-12-04 22:40:02 -05001227 if (phba->sli_rev == 3 &&
James Smart0f65ff62010-02-26 14:14:23 -05001228 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
1229 !(iocbq->iocb_flag & DSS_SECURITY_OP)) {
James Smart34b02dc2008-08-24 21:49:55 -04001230 if (num_bde > LPFC_EXT_DATA_BDE_COUNT) {
1231 /*
1232 * The extended IOCB format can only fit 3 BDE or a BPL.
1233 * This I/O has more than 3 BDE so the 1st data bde will
1234 * be a BPL that is filled in here.
1235 */
1236 physaddr = lpfc_cmd->dma_handle;
1237 data_bde->tus.f.bdeFlags = BUFF_TYPE_BLP_64;
1238 data_bde->tus.f.bdeSize = (num_bde *
1239 sizeof(struct ulp_bde64));
1240 physaddr += (sizeof(struct fcp_cmnd) +
1241 sizeof(struct fcp_rsp) +
1242 (2 * sizeof(struct ulp_bde64)));
1243 data_bde->addrHigh = putPaddrHigh(physaddr);
1244 data_bde->addrLow = putPaddrLow(physaddr);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001245 /* ebde count includes the response bde and data bpl */
James Smart34b02dc2008-08-24 21:49:55 -04001246 iocb_cmd->unsli3.fcp_ext.ebde_count = 2;
1247 } else {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001248 /* ebde count includes the response bde and data bdes */
James Smart34b02dc2008-08-24 21:49:55 -04001249 iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
1250 }
1251 } else {
1252 iocb_cmd->un.fcpi64.bdl.bdeSize =
1253 ((num_bde + 2) * sizeof(struct ulp_bde64));
James Smart0f65ff62010-02-26 14:14:23 -05001254 iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
James Smart34b02dc2008-08-24 21:49:55 -04001255 }
James Smart09372822008-01-11 01:52:54 -05001256 fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
James Smarte2a0a9d2008-12-04 22:40:02 -05001257
1258 /*
1259 * Due to difference in data length between DIF/non-DIF paths,
1260 * we need to set word 4 of IOCB here
1261 */
James Smarta257bf92009-04-06 18:48:10 -04001262 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
dea31012005-04-17 16:05:31 -05001263 return 0;
1264}
1265
James Smarte2a0a9d2008-12-04 22:40:02 -05001266/*
James Smart6c8eea52010-04-06 14:49:53 -04001267 * Given a scsi cmnd, determine the BlockGuard opcodes to be used with it
1268 * @sc: The SCSI command to examine
1269 * @txopt: (out) BlockGuard operation for transmitted data
1270 * @rxopt: (out) BlockGuard operation for received data
1271 *
1272 * Returns: zero on success; non-zero if tx and/or rx op cannot be determined
1273 *
James Smarte2a0a9d2008-12-04 22:40:02 -05001274 */
1275static int
James Smart6c8eea52010-04-06 14:49:53 -04001276lpfc_sc_to_bg_opcodes(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1277 uint8_t *txop, uint8_t *rxop)
James Smarte2a0a9d2008-12-04 22:40:02 -05001278{
1279 uint8_t guard_type = scsi_host_get_guard(sc->device->host);
James Smart6c8eea52010-04-06 14:49:53 -04001280 uint8_t ret = 0;
James Smarte2a0a9d2008-12-04 22:40:02 -05001281
1282 if (guard_type == SHOST_DIX_GUARD_IP) {
1283 switch (scsi_get_prot_op(sc)) {
1284 case SCSI_PROT_READ_INSERT:
1285 case SCSI_PROT_WRITE_STRIP:
James Smart6c8eea52010-04-06 14:49:53 -04001286 *txop = BG_OP_IN_CSUM_OUT_NODIF;
1287 *rxop = BG_OP_IN_NODIF_OUT_CSUM;
James Smarte2a0a9d2008-12-04 22:40:02 -05001288 break;
1289
1290 case SCSI_PROT_READ_STRIP:
1291 case SCSI_PROT_WRITE_INSERT:
James Smart6c8eea52010-04-06 14:49:53 -04001292 *txop = BG_OP_IN_NODIF_OUT_CRC;
1293 *rxop = BG_OP_IN_CRC_OUT_NODIF;
James Smarte2a0a9d2008-12-04 22:40:02 -05001294 break;
1295
Martin K. Petersenc6af4042009-09-18 17:32:59 -04001296 case SCSI_PROT_READ_PASS:
1297 case SCSI_PROT_WRITE_PASS:
James Smart6c8eea52010-04-06 14:49:53 -04001298 *txop = BG_OP_IN_CSUM_OUT_CRC;
1299 *rxop = BG_OP_IN_CRC_OUT_CSUM;
James Smarte2a0a9d2008-12-04 22:40:02 -05001300 break;
1301
James Smarte2a0a9d2008-12-04 22:40:02 -05001302 case SCSI_PROT_NORMAL:
1303 default:
James Smart6a9c52c2009-10-02 15:16:51 -04001304 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
James Smart6c8eea52010-04-06 14:49:53 -04001305 "9063 BLKGRD: Bad op/guard:%d/%d combination\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001306 scsi_get_prot_op(sc), guard_type);
James Smart6c8eea52010-04-06 14:49:53 -04001307 ret = 1;
James Smarte2a0a9d2008-12-04 22:40:02 -05001308 break;
1309
1310 }
1311 } else if (guard_type == SHOST_DIX_GUARD_CRC) {
1312 switch (scsi_get_prot_op(sc)) {
1313 case SCSI_PROT_READ_STRIP:
1314 case SCSI_PROT_WRITE_INSERT:
James Smart6c8eea52010-04-06 14:49:53 -04001315 *txop = BG_OP_IN_NODIF_OUT_CRC;
1316 *rxop = BG_OP_IN_CRC_OUT_NODIF;
James Smarte2a0a9d2008-12-04 22:40:02 -05001317 break;
1318
1319 case SCSI_PROT_READ_PASS:
1320 case SCSI_PROT_WRITE_PASS:
James Smart6c8eea52010-04-06 14:49:53 -04001321 *txop = BG_OP_IN_CRC_OUT_CRC;
1322 *rxop = BG_OP_IN_CRC_OUT_CRC;
James Smarte2a0a9d2008-12-04 22:40:02 -05001323 break;
1324
James Smarte2a0a9d2008-12-04 22:40:02 -05001325 case SCSI_PROT_READ_INSERT:
1326 case SCSI_PROT_WRITE_STRIP:
1327 case SCSI_PROT_NORMAL:
1328 default:
James Smart6a9c52c2009-10-02 15:16:51 -04001329 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1330 "9075 BLKGRD: Bad op/guard:%d/%d combination\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001331 scsi_get_prot_op(sc), guard_type);
James Smart6c8eea52010-04-06 14:49:53 -04001332 ret = 1;
James Smarte2a0a9d2008-12-04 22:40:02 -05001333 break;
1334 }
1335 } else {
1336 /* unsupported format */
1337 BUG();
1338 }
1339
James Smart6c8eea52010-04-06 14:49:53 -04001340 return ret;
James Smarte2a0a9d2008-12-04 22:40:02 -05001341}
1342
1343struct scsi_dif_tuple {
1344 __be16 guard_tag; /* Checksum */
1345 __be16 app_tag; /* Opaque storage */
1346 __be32 ref_tag; /* Target LBA or indirect LBA */
1347};
1348
1349static inline unsigned
1350lpfc_cmd_blksize(struct scsi_cmnd *sc)
1351{
1352 return sc->device->sector_size;
1353}
1354
1355/**
1356 * lpfc_get_cmd_dif_parms - Extract DIF parameters from SCSI command
1357 * @sc: in: SCSI command
James Smart3621a712009-04-06 18:47:14 -04001358 * @apptagmask: out: app tag mask
1359 * @apptagval: out: app tag value
1360 * @reftag: out: ref tag (reference tag)
James Smarte2a0a9d2008-12-04 22:40:02 -05001361 *
1362 * Description:
Martin Olsson98a17082009-04-22 18:21:29 +02001363 * Extract DIF parameters from the command if possible. Otherwise,
1364 * use default parameters.
James Smarte2a0a9d2008-12-04 22:40:02 -05001365 *
1366 **/
1367static inline void
1368lpfc_get_cmd_dif_parms(struct scsi_cmnd *sc, uint16_t *apptagmask,
1369 uint16_t *apptagval, uint32_t *reftag)
1370{
1371 struct scsi_dif_tuple *spt;
1372 unsigned char op = scsi_get_prot_op(sc);
1373 unsigned int protcnt = scsi_prot_sg_count(sc);
1374 static int cnt;
1375
1376 if (protcnt && (op == SCSI_PROT_WRITE_STRIP ||
Martin K. Petersenc6af4042009-09-18 17:32:59 -04001377 op == SCSI_PROT_WRITE_PASS)) {
James Smarte2a0a9d2008-12-04 22:40:02 -05001378
1379 cnt++;
1380 spt = page_address(sg_page(scsi_prot_sglist(sc))) +
1381 scsi_prot_sglist(sc)[0].offset;
1382 *apptagmask = 0;
1383 *apptagval = 0;
1384 *reftag = cpu_to_be32(spt->ref_tag);
1385
1386 } else {
1387 /* SBC defines ref tag to be lower 32bits of LBA */
1388 *reftag = (uint32_t) (0xffffffff & scsi_get_lba(sc));
1389 *apptagmask = 0;
1390 *apptagval = 0;
1391 }
1392}
1393
1394/*
1395 * This function sets up buffer list for protection groups of
1396 * type LPFC_PG_TYPE_NO_DIF
1397 *
1398 * This is usually used when the HBA is instructed to generate
1399 * DIFs and insert them into data stream (or strip DIF from
1400 * incoming data stream)
1401 *
1402 * The buffer list consists of just one protection group described
1403 * below:
1404 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001405 * start of prot group --> | PDE_5 |
1406 * +-------------------------+
1407 * | PDE_6 |
James Smarte2a0a9d2008-12-04 22:40:02 -05001408 * +-------------------------+
1409 * | Data BDE |
1410 * +-------------------------+
1411 * |more Data BDE's ... (opt)|
1412 * +-------------------------+
1413 *
1414 * @sc: pointer to scsi command we're working on
1415 * @bpl: pointer to buffer list for protection groups
1416 * @datacnt: number of segments of data that have been dma mapped
1417 *
1418 * Note: Data s/g buffers have been dma mapped
1419 */
1420static int
1421lpfc_bg_setup_bpl(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1422 struct ulp_bde64 *bpl, int datasegcnt)
1423{
1424 struct scatterlist *sgde = NULL; /* s/g data entry */
James Smart6c8eea52010-04-06 14:49:53 -04001425 struct lpfc_pde5 *pde5 = NULL;
1426 struct lpfc_pde6 *pde6 = NULL;
James Smarte2a0a9d2008-12-04 22:40:02 -05001427 dma_addr_t physaddr;
James Smart6c8eea52010-04-06 14:49:53 -04001428 int i = 0, num_bde = 0, status;
James Smarte2a0a9d2008-12-04 22:40:02 -05001429 int datadir = sc->sc_data_direction;
James Smarte2a0a9d2008-12-04 22:40:02 -05001430 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
James Smart6c8eea52010-04-06 14:49:53 -04001435 status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
1436 if (status)
James Smarte2a0a9d2008-12-04 22:40:02 -05001437 goto out;
1438
James Smart6c8eea52010-04-06 14:49:53 -04001439 /* extract some info from the scsi command for pde*/
James Smarte2a0a9d2008-12-04 22:40:02 -05001440 blksize = lpfc_cmd_blksize(sc);
1441 lpfc_get_cmd_dif_parms(sc, &apptagmask, &apptagval, &reftag);
1442
James Smart6c8eea52010-04-06 14:49:53 -04001443 /* setup PDE5 with what we have */
1444 pde5 = (struct lpfc_pde5 *) bpl;
1445 memset(pde5, 0, sizeof(struct lpfc_pde5));
1446 bf_set(pde5_type, pde5, LPFC_PDE5_DESCRIPTOR);
1447 pde5->reftag = reftag;
James Smarte2a0a9d2008-12-04 22:40:02 -05001448
James Smartbc739052010-08-04 16:11:18 -04001449 /* Endianness conversion if necessary for PDE5 */
James Smart589a52d2010-07-14 15:30:54 -04001450 pde5->word0 = cpu_to_le32(pde5->word0);
1451 pde5->reftag = cpu_to_le32(pde5->reftag);
1452
James Smart6c8eea52010-04-06 14:49:53 -04001453 /* advance bpl and increment bde count */
1454 num_bde++;
1455 bpl++;
1456 pde6 = (struct lpfc_pde6 *) bpl;
1457
1458 /* setup PDE6 with the rest of the info */
1459 memset(pde6, 0, sizeof(struct lpfc_pde6));
1460 bf_set(pde6_type, pde6, LPFC_PDE6_DESCRIPTOR);
1461 bf_set(pde6_optx, pde6, txop);
1462 bf_set(pde6_oprx, pde6, rxop);
1463 if (datadir == DMA_FROM_DEVICE) {
1464 bf_set(pde6_ce, pde6, 1);
1465 bf_set(pde6_re, pde6, 1);
1466 bf_set(pde6_ae, pde6, 1);
1467 }
1468 bf_set(pde6_ai, pde6, 1);
1469 bf_set(pde6_apptagval, pde6, apptagval);
1470
James Smartbc739052010-08-04 16:11:18 -04001471 /* Endianness conversion if necessary for PDE6 */
James Smart589a52d2010-07-14 15:30:54 -04001472 pde6->word0 = cpu_to_le32(pde6->word0);
1473 pde6->word1 = cpu_to_le32(pde6->word1);
1474 pde6->word2 = cpu_to_le32(pde6->word2);
1475
James Smart6c8eea52010-04-06 14:49:53 -04001476 /* advance bpl and increment bde count */
James Smarte2a0a9d2008-12-04 22:40:02 -05001477 num_bde++;
1478 bpl++;
1479
1480 /* assumption: caller has already run dma_map_sg on command data */
1481 scsi_for_each_sg(sc, sgde, datasegcnt, i) {
1482 physaddr = sg_dma_address(sgde);
1483 bpl->addrLow = le32_to_cpu(putPaddrLow(physaddr));
1484 bpl->addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1485 bpl->tus.f.bdeSize = sg_dma_len(sgde);
1486 if (datadir == DMA_TO_DEVICE)
1487 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1488 else
1489 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
1490 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1491 bpl++;
1492 num_bde++;
1493 }
1494
1495out:
1496 return num_bde;
1497}
1498
1499/*
1500 * This function sets up buffer list for protection groups of
1501 * type LPFC_PG_TYPE_DIF_BUF
1502 *
1503 * This is usually used when DIFs are in their own buffers,
1504 * separate from the data. The HBA can then by instructed
1505 * to place the DIFs in the outgoing stream. For read operations,
1506 * The HBA could extract the DIFs and place it in DIF buffers.
1507 *
1508 * The buffer list for this type consists of one or more of the
1509 * protection groups described below:
1510 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001511 * start of first prot group --> | PDE_5 |
James Smarte2a0a9d2008-12-04 22:40:02 -05001512 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001513 * | PDE_6 |
1514 * +-------------------------+
1515 * | PDE_7 (Prot BDE) |
James Smarte2a0a9d2008-12-04 22:40:02 -05001516 * +-------------------------+
1517 * | Data BDE |
1518 * +-------------------------+
1519 * |more Data BDE's ... (opt)|
1520 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001521 * start of new prot group --> | PDE_5 |
James Smarte2a0a9d2008-12-04 22:40:02 -05001522 * +-------------------------+
1523 * | ... |
1524 * +-------------------------+
1525 *
1526 * @sc: pointer to scsi command we're working on
1527 * @bpl: pointer to buffer list for protection groups
1528 * @datacnt: number of segments of data that have been dma mapped
1529 * @protcnt: number of segment of protection data that have been dma mapped
1530 *
1531 * Note: It is assumed that both data and protection s/g buffers have been
1532 * mapped for DMA
1533 */
1534static int
1535lpfc_bg_setup_bpl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1536 struct ulp_bde64 *bpl, int datacnt, int protcnt)
1537{
1538 struct scatterlist *sgde = NULL; /* s/g data entry */
1539 struct scatterlist *sgpe = NULL; /* s/g prot entry */
James Smart6c8eea52010-04-06 14:49:53 -04001540 struct lpfc_pde5 *pde5 = NULL;
1541 struct lpfc_pde6 *pde6 = NULL;
James Smart7f860592011-03-11 16:05:52 -05001542 struct lpfc_pde7 *pde7 = NULL;
James Smarte2a0a9d2008-12-04 22:40:02 -05001543 dma_addr_t dataphysaddr, protphysaddr;
1544 unsigned short curr_data = 0, curr_prot = 0;
James Smart7f860592011-03-11 16:05:52 -05001545 unsigned int split_offset;
1546 unsigned int protgroup_len, protgroup_offset = 0, protgroup_remainder;
James Smarte2a0a9d2008-12-04 22:40:02 -05001547 unsigned int protgrp_blks, protgrp_bytes;
1548 unsigned int remainder, subtotal;
James Smart6c8eea52010-04-06 14:49:53 -04001549 int status;
James Smarte2a0a9d2008-12-04 22:40:02 -05001550 int datadir = sc->sc_data_direction;
1551 unsigned char pgdone = 0, alldone = 0;
1552 unsigned blksize;
1553 uint32_t reftag;
1554 uint16_t apptagmask, apptagval;
James Smart6c8eea52010-04-06 14:49:53 -04001555 uint8_t txop, rxop;
James Smarte2a0a9d2008-12-04 22:40:02 -05001556 int num_bde = 0;
1557
1558 sgpe = scsi_prot_sglist(sc);
1559 sgde = scsi_sglist(sc);
1560
1561 if (!sgpe || !sgde) {
1562 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1563 "9020 Invalid s/g entry: data=0x%p prot=0x%p\n",
1564 sgpe, sgde);
1565 return 0;
1566 }
1567
James Smart6c8eea52010-04-06 14:49:53 -04001568 status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
1569 if (status)
James Smarte2a0a9d2008-12-04 22:40:02 -05001570 goto out;
1571
James Smart6c8eea52010-04-06 14:49:53 -04001572 /* extract some info from the scsi command */
James Smarte2a0a9d2008-12-04 22:40:02 -05001573 blksize = lpfc_cmd_blksize(sc);
1574 lpfc_get_cmd_dif_parms(sc, &apptagmask, &apptagval, &reftag);
1575
1576 split_offset = 0;
1577 do {
James Smart6c8eea52010-04-06 14:49:53 -04001578 /* setup PDE5 with what we have */
1579 pde5 = (struct lpfc_pde5 *) bpl;
1580 memset(pde5, 0, sizeof(struct lpfc_pde5));
1581 bf_set(pde5_type, pde5, LPFC_PDE5_DESCRIPTOR);
1582 pde5->reftag = reftag;
James Smarte2a0a9d2008-12-04 22:40:02 -05001583
James Smartbc739052010-08-04 16:11:18 -04001584 /* Endianness conversion if necessary for PDE5 */
James Smart589a52d2010-07-14 15:30:54 -04001585 pde5->word0 = cpu_to_le32(pde5->word0);
1586 pde5->reftag = cpu_to_le32(pde5->reftag);
1587
James Smart6c8eea52010-04-06 14:49:53 -04001588 /* advance bpl and increment bde count */
1589 num_bde++;
1590 bpl++;
1591 pde6 = (struct lpfc_pde6 *) bpl;
James Smarte2a0a9d2008-12-04 22:40:02 -05001592
James Smart6c8eea52010-04-06 14:49:53 -04001593 /* setup PDE6 with the rest of the info */
1594 memset(pde6, 0, sizeof(struct lpfc_pde6));
1595 bf_set(pde6_type, pde6, LPFC_PDE6_DESCRIPTOR);
1596 bf_set(pde6_optx, pde6, txop);
1597 bf_set(pde6_oprx, pde6, rxop);
1598 bf_set(pde6_ce, pde6, 1);
1599 bf_set(pde6_re, pde6, 1);
1600 bf_set(pde6_ae, pde6, 1);
1601 bf_set(pde6_ai, pde6, 1);
1602 bf_set(pde6_apptagval, pde6, apptagval);
1603
James Smartbc739052010-08-04 16:11:18 -04001604 /* Endianness conversion if necessary for PDE6 */
James Smart589a52d2010-07-14 15:30:54 -04001605 pde6->word0 = cpu_to_le32(pde6->word0);
1606 pde6->word1 = cpu_to_le32(pde6->word1);
1607 pde6->word2 = cpu_to_le32(pde6->word2);
1608
James Smart6c8eea52010-04-06 14:49:53 -04001609 /* advance bpl and increment bde count */
James Smarte2a0a9d2008-12-04 22:40:02 -05001610 num_bde++;
1611 bpl++;
1612
1613 /* setup the first BDE that points to protection buffer */
James Smart7f860592011-03-11 16:05:52 -05001614 protphysaddr = sg_dma_address(sgpe) + protgroup_offset;
1615 protgroup_len = sg_dma_len(sgpe) - protgroup_offset;
James Smarte2a0a9d2008-12-04 22:40:02 -05001616
James Smarte2a0a9d2008-12-04 22:40:02 -05001617 /* must be integer multiple of the DIF block length */
1618 BUG_ON(protgroup_len % 8);
1619
James Smart7f860592011-03-11 16:05:52 -05001620 pde7 = (struct lpfc_pde7 *) bpl;
1621 memset(pde7, 0, sizeof(struct lpfc_pde7));
1622 bf_set(pde7_type, pde7, LPFC_PDE7_DESCRIPTOR);
1623
1624 pde7->addrHigh = le32_to_cpu(putPaddrLow(protphysaddr));
1625 pde7->addrLow = le32_to_cpu(putPaddrHigh(protphysaddr));
1626
James Smarte2a0a9d2008-12-04 22:40:02 -05001627 protgrp_blks = protgroup_len / 8;
1628 protgrp_bytes = protgrp_blks * blksize;
1629
James Smart7f860592011-03-11 16:05:52 -05001630 /* check if this pde is crossing the 4K boundary; if so split */
1631 if ((pde7->addrLow & 0xfff) + protgroup_len > 0x1000) {
1632 protgroup_remainder = 0x1000 - (pde7->addrLow & 0xfff);
1633 protgroup_offset += protgroup_remainder;
1634 protgrp_blks = protgroup_remainder / 8;
1635 protgrp_bytes = protgroup_remainder * blksize;
1636 } else {
1637 protgroup_offset = 0;
1638 curr_prot++;
1639 }
James Smarte2a0a9d2008-12-04 22:40:02 -05001640
James Smarte2a0a9d2008-12-04 22:40:02 -05001641 num_bde++;
1642
1643 /* setup BDE's for data blocks associated with DIF data */
1644 pgdone = 0;
1645 subtotal = 0; /* total bytes processed for current prot grp */
1646 while (!pgdone) {
1647 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -04001648 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1649 "9065 BLKGRD:%s Invalid data segment\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001650 __func__);
1651 return 0;
1652 }
1653 bpl++;
1654 dataphysaddr = sg_dma_address(sgde) + split_offset;
1655 bpl->addrLow = le32_to_cpu(putPaddrLow(dataphysaddr));
1656 bpl->addrHigh = le32_to_cpu(putPaddrHigh(dataphysaddr));
1657
1658 remainder = sg_dma_len(sgde) - split_offset;
1659
1660 if ((subtotal + remainder) <= protgrp_bytes) {
1661 /* we can use this whole buffer */
1662 bpl->tus.f.bdeSize = remainder;
1663 split_offset = 0;
1664
1665 if ((subtotal + remainder) == protgrp_bytes)
1666 pgdone = 1;
1667 } else {
1668 /* must split this buffer with next prot grp */
1669 bpl->tus.f.bdeSize = protgrp_bytes - subtotal;
1670 split_offset += bpl->tus.f.bdeSize;
1671 }
1672
1673 subtotal += bpl->tus.f.bdeSize;
1674
1675 if (datadir == DMA_TO_DEVICE)
1676 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1677 else
1678 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
1679 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1680
1681 num_bde++;
1682 curr_data++;
1683
1684 if (split_offset)
1685 break;
1686
1687 /* Move to the next s/g segment if possible */
1688 sgde = sg_next(sgde);
James Smart6c8eea52010-04-06 14:49:53 -04001689
James Smarte2a0a9d2008-12-04 22:40:02 -05001690 }
1691
James Smart7f860592011-03-11 16:05:52 -05001692 if (protgroup_offset) {
1693 /* update the reference tag */
1694 reftag += protgrp_blks;
1695 bpl++;
1696 continue;
1697 }
1698
James Smarte2a0a9d2008-12-04 22:40:02 -05001699 /* are we done ? */
1700 if (curr_prot == protcnt) {
1701 alldone = 1;
1702 } else if (curr_prot < protcnt) {
1703 /* advance to next prot buffer */
1704 sgpe = sg_next(sgpe);
1705 bpl++;
1706
1707 /* update the reference tag */
1708 reftag += protgrp_blks;
1709 } else {
1710 /* if we're here, we have a bug */
James Smart6a9c52c2009-10-02 15:16:51 -04001711 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1712 "9054 BLKGRD: bug in %s\n", __func__);
James Smarte2a0a9d2008-12-04 22:40:02 -05001713 }
1714
1715 } while (!alldone);
1716
1717out:
1718
James Smarte2a0a9d2008-12-04 22:40:02 -05001719 return num_bde;
1720}
James Smart7f860592011-03-11 16:05:52 -05001721
James Smarte2a0a9d2008-12-04 22:40:02 -05001722/*
1723 * Given a SCSI command that supports DIF, determine composition of protection
1724 * groups involved in setting up buffer lists
1725 *
1726 * Returns:
1727 * for DIF (for both read and write)
1728 * */
1729static int
1730lpfc_prot_group_type(struct lpfc_hba *phba, struct scsi_cmnd *sc)
1731{
1732 int ret = LPFC_PG_TYPE_INVALID;
1733 unsigned char op = scsi_get_prot_op(sc);
1734
1735 switch (op) {
1736 case SCSI_PROT_READ_STRIP:
1737 case SCSI_PROT_WRITE_INSERT:
1738 ret = LPFC_PG_TYPE_NO_DIF;
1739 break;
1740 case SCSI_PROT_READ_INSERT:
1741 case SCSI_PROT_WRITE_STRIP:
1742 case SCSI_PROT_READ_PASS:
1743 case SCSI_PROT_WRITE_PASS:
James Smarte2a0a9d2008-12-04 22:40:02 -05001744 ret = LPFC_PG_TYPE_DIF_BUF;
1745 break;
1746 default:
1747 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1748 "9021 Unsupported protection op:%d\n", op);
1749 break;
1750 }
1751
1752 return ret;
1753}
1754
1755/*
1756 * This is the protection/DIF aware version of
1757 * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
1758 * two functions eventually, but for now, it's here
1759 */
1760static int
1761lpfc_bg_scsi_prep_dma_buf(struct lpfc_hba *phba,
1762 struct lpfc_scsi_buf *lpfc_cmd)
1763{
1764 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1765 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1766 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
1767 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
1768 uint32_t num_bde = 0;
1769 int datasegcnt, protsegcnt, datadir = scsi_cmnd->sc_data_direction;
1770 int prot_group_type = 0;
1771 int diflen, fcpdl;
1772 unsigned blksize;
1773
1774 /*
1775 * Start the lpfc command prep by bumping the bpl beyond fcp_cmnd
1776 * fcp_rsp regions to the first data bde entry
1777 */
1778 bpl += 2;
1779 if (scsi_sg_count(scsi_cmnd)) {
1780 /*
1781 * The driver stores the segment count returned from pci_map_sg
1782 * because this a count of dma-mappings used to map the use_sg
1783 * pages. They are not guaranteed to be the same for those
1784 * architectures that implement an IOMMU.
1785 */
1786 datasegcnt = dma_map_sg(&phba->pcidev->dev,
1787 scsi_sglist(scsi_cmnd),
1788 scsi_sg_count(scsi_cmnd), datadir);
1789 if (unlikely(!datasegcnt))
1790 return 1;
1791
1792 lpfc_cmd->seg_cnt = datasegcnt;
1793 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001794 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1795 "9067 BLKGRD: %s: Too many sg segments"
1796 " from dma_map_sg. Config %d, seg_cnt"
1797 " %d\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001798 __func__, phba->cfg_sg_seg_cnt,
1799 lpfc_cmd->seg_cnt);
1800 scsi_dma_unmap(scsi_cmnd);
1801 return 1;
1802 }
1803
1804 prot_group_type = lpfc_prot_group_type(phba, scsi_cmnd);
1805
1806 switch (prot_group_type) {
1807 case LPFC_PG_TYPE_NO_DIF:
1808 num_bde = lpfc_bg_setup_bpl(phba, scsi_cmnd, bpl,
1809 datasegcnt);
Adam Buchbinderc9404c92009-12-18 15:40:42 -05001810 /* we should have 2 or more entries in buffer list */
James Smarte2a0a9d2008-12-04 22:40:02 -05001811 if (num_bde < 2)
1812 goto err;
1813 break;
1814 case LPFC_PG_TYPE_DIF_BUF:{
1815 /*
1816 * This type indicates that protection buffers are
1817 * passed to the driver, so that needs to be prepared
1818 * for DMA
1819 */
1820 protsegcnt = dma_map_sg(&phba->pcidev->dev,
1821 scsi_prot_sglist(scsi_cmnd),
1822 scsi_prot_sg_count(scsi_cmnd), datadir);
1823 if (unlikely(!protsegcnt)) {
1824 scsi_dma_unmap(scsi_cmnd);
1825 return 1;
1826 }
1827
1828 lpfc_cmd->prot_seg_cnt = protsegcnt;
1829 if (lpfc_cmd->prot_seg_cnt
1830 > phba->cfg_prot_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001831 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1832 "9068 BLKGRD: %s: Too many prot sg "
1833 "segments from dma_map_sg. Config %d,"
James Smarte2a0a9d2008-12-04 22:40:02 -05001834 "prot_seg_cnt %d\n", __func__,
1835 phba->cfg_prot_sg_seg_cnt,
1836 lpfc_cmd->prot_seg_cnt);
1837 dma_unmap_sg(&phba->pcidev->dev,
1838 scsi_prot_sglist(scsi_cmnd),
1839 scsi_prot_sg_count(scsi_cmnd),
1840 datadir);
1841 scsi_dma_unmap(scsi_cmnd);
1842 return 1;
1843 }
1844
1845 num_bde = lpfc_bg_setup_bpl_prot(phba, scsi_cmnd, bpl,
1846 datasegcnt, protsegcnt);
Adam Buchbinderc9404c92009-12-18 15:40:42 -05001847 /* we should have 3 or more entries in buffer list */
James Smarte2a0a9d2008-12-04 22:40:02 -05001848 if (num_bde < 3)
1849 goto err;
1850 break;
1851 }
1852 case LPFC_PG_TYPE_INVALID:
1853 default:
1854 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1855 "9022 Unexpected protection group %i\n",
1856 prot_group_type);
1857 return 1;
1858 }
1859 }
1860
1861 /*
1862 * Finish initializing those IOCB fields that are dependent on the
1863 * scsi_cmnd request_buffer. Note that the bdeSize is explicitly
1864 * reinitialized since all iocb memory resources are used many times
1865 * for transmit, receive, and continuation bpl's.
1866 */
1867 iocb_cmd->un.fcpi64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
1868 iocb_cmd->un.fcpi64.bdl.bdeSize += (num_bde * sizeof(struct ulp_bde64));
1869 iocb_cmd->ulpBdeCount = 1;
1870 iocb_cmd->ulpLe = 1;
1871
1872 fcpdl = scsi_bufflen(scsi_cmnd);
1873
1874 if (scsi_get_prot_type(scsi_cmnd) == SCSI_PROT_DIF_TYPE1) {
1875 /*
1876 * We are in DIF Type 1 mode
1877 * Every data block has a 8 byte DIF (trailer)
1878 * attached to it. Must ajust FCP data length
1879 */
1880 blksize = lpfc_cmd_blksize(scsi_cmnd);
1881 diflen = (fcpdl / blksize) * 8;
1882 fcpdl += diflen;
1883 }
1884 fcp_cmnd->fcpDl = be32_to_cpu(fcpdl);
1885
1886 /*
1887 * Due to difference in data length between DIF/non-DIF paths,
1888 * we need to set word 4 of IOCB here
1889 */
1890 iocb_cmd->un.fcpi.fcpi_parm = fcpdl;
1891
1892 return 0;
1893err:
1894 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1895 "9023 Could not setup all needed BDE's"
1896 "prot_group_type=%d, num_bde=%d\n",
1897 prot_group_type, num_bde);
1898 return 1;
1899}
1900
1901/*
1902 * This function checks for BlockGuard errors detected by
1903 * the HBA. In case of errors, the ASC/ASCQ fields in the
1904 * sense buffer will be set accordingly, paired with
1905 * ILLEGAL_REQUEST to signal to the kernel that the HBA
1906 * detected corruption.
1907 *
1908 * Returns:
1909 * 0 - No error found
1910 * 1 - BlockGuard error found
1911 * -1 - Internal error (bad profile, ...etc)
1912 */
1913static int
1914lpfc_parse_bg_err(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd,
1915 struct lpfc_iocbq *pIocbOut)
1916{
1917 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
1918 struct sli3_bg_fields *bgf = &pIocbOut->iocb.unsli3.sli3_bg;
1919 int ret = 0;
1920 uint32_t bghm = bgf->bghm;
1921 uint32_t bgstat = bgf->bgstat;
1922 uint64_t failing_sector = 0;
1923
James Smart6a9c52c2009-10-02 15:16:51 -04001924 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9069 BLKGRD: BG ERROR in cmd"
1925 " 0x%x lba 0x%llx blk cnt 0x%x "
James Smarte2a0a9d2008-12-04 22:40:02 -05001926 "bgstat=0x%x bghm=0x%x\n",
James Smart87b5c322008-12-16 10:34:09 -05001927 cmd->cmnd[0], (unsigned long long)scsi_get_lba(cmd),
Tejun Heo83096eb2009-05-07 22:24:39 +09001928 blk_rq_sectors(cmd->request), bgstat, bghm);
James Smarte2a0a9d2008-12-04 22:40:02 -05001929
1930 spin_lock(&_dump_buf_lock);
1931 if (!_dump_buf_done) {
James Smart6a9c52c2009-10-02 15:16:51 -04001932 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9070 BLKGRD: Saving"
1933 " Data for %u blocks to debugfs\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001934 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
James Smart6a9c52c2009-10-02 15:16:51 -04001935 lpfc_debug_save_data(phba, cmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05001936
1937 /* If we have a prot sgl, save the DIF buffer */
1938 if (lpfc_prot_group_type(phba, cmd) ==
1939 LPFC_PG_TYPE_DIF_BUF) {
James Smart6a9c52c2009-10-02 15:16:51 -04001940 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9071 BLKGRD: "
1941 "Saving DIF for %u blocks to debugfs\n",
1942 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
1943 lpfc_debug_save_dif(phba, cmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05001944 }
1945
1946 _dump_buf_done = 1;
1947 }
1948 spin_unlock(&_dump_buf_lock);
1949
1950 if (lpfc_bgs_get_invalid_prof(bgstat)) {
1951 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04001952 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9072 BLKGRD: Invalid"
1953 " BlockGuard profile. bgstat:0x%x\n",
1954 bgstat);
James Smarte2a0a9d2008-12-04 22:40:02 -05001955 ret = (-1);
1956 goto out;
1957 }
1958
1959 if (lpfc_bgs_get_uninit_dif_block(bgstat)) {
1960 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04001961 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9073 BLKGRD: "
1962 "Invalid BlockGuard DIF Block. bgstat:0x%x\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001963 bgstat);
1964 ret = (-1);
1965 goto out;
1966 }
1967
1968 if (lpfc_bgs_get_guard_err(bgstat)) {
1969 ret = 1;
1970
1971 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1972 0x10, 0x1);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001973 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001974 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
1975 phba->bg_guard_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04001976 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1977 "9055 BLKGRD: guard_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001978 }
1979
1980 if (lpfc_bgs_get_reftag_err(bgstat)) {
1981 ret = 1;
1982
1983 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1984 0x10, 0x3);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001985 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001986 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
1987
1988 phba->bg_reftag_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04001989 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1990 "9056 BLKGRD: ref_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001991 }
1992
1993 if (lpfc_bgs_get_apptag_err(bgstat)) {
1994 ret = 1;
1995
1996 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1997 0x10, 0x2);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001998 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001999 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
2000
2001 phba->bg_apptag_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04002002 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2003 "9061 BLKGRD: app_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002004 }
2005
2006 if (lpfc_bgs_get_hi_water_mark_present(bgstat)) {
2007 /*
2008 * setup sense data descriptor 0 per SPC-4 as an information
2009 * field, and put the failing LBA in it
2010 */
2011 cmd->sense_buffer[8] = 0; /* Information */
2012 cmd->sense_buffer[9] = 0xa; /* Add. length */
David Howells2344b5b2009-04-14 17:08:34 +01002013 bghm /= cmd->device->sector_size;
James Smarte2a0a9d2008-12-04 22:40:02 -05002014
2015 failing_sector = scsi_get_lba(cmd);
2016 failing_sector += bghm;
2017
2018 put_unaligned_be64(failing_sector, &cmd->sense_buffer[10]);
2019 }
2020
2021 if (!ret) {
2022 /* No error was reported - problem in FW? */
2023 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04002024 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2025 "9057 BLKGRD: no errors reported!\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002026 }
2027
2028out:
2029 return ret;
2030}
2031
James Smartea2151b2008-09-07 11:52:10 -04002032/**
James Smartda0436e2009-05-22 14:51:39 -04002033 * lpfc_scsi_prep_dma_buf_s4 - DMA mapping for scsi buffer to SLI4 IF spec
2034 * @phba: The Hba for which this call is being executed.
2035 * @lpfc_cmd: The scsi buffer which is going to be mapped.
2036 *
2037 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
2038 * field of @lpfc_cmd for device with SLI-4 interface spec.
2039 *
2040 * Return codes:
James Smart6c8eea52010-04-06 14:49:53 -04002041 * 1 - Error
2042 * 0 - Success
James Smartda0436e2009-05-22 14:51:39 -04002043 **/
2044static int
2045lpfc_scsi_prep_dma_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
2046{
2047 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
2048 struct scatterlist *sgel = NULL;
2049 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
2050 struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
James Smartfedd3b72011-02-16 12:39:24 -05002051 struct sli4_sge *first_data_sgl;
James Smartda0436e2009-05-22 14:51:39 -04002052 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
2053 dma_addr_t physaddr;
2054 uint32_t num_bde = 0;
2055 uint32_t dma_len;
2056 uint32_t dma_offset = 0;
2057 int nseg;
James Smartfedd3b72011-02-16 12:39:24 -05002058 struct ulp_bde64 *bde;
James Smartda0436e2009-05-22 14:51:39 -04002059
2060 /*
2061 * There are three possibilities here - use scatter-gather segment, use
2062 * the single mapping, or neither. Start the lpfc command prep by
2063 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
2064 * data bde entry.
2065 */
2066 if (scsi_sg_count(scsi_cmnd)) {
2067 /*
2068 * The driver stores the segment count returned from pci_map_sg
2069 * because this a count of dma-mappings used to map the use_sg
2070 * pages. They are not guaranteed to be the same for those
2071 * architectures that implement an IOMMU.
2072 */
2073
2074 nseg = scsi_dma_map(scsi_cmnd);
2075 if (unlikely(!nseg))
2076 return 1;
2077 sgl += 1;
2078 /* clear the last flag in the fcp_rsp map entry */
2079 sgl->word2 = le32_to_cpu(sgl->word2);
2080 bf_set(lpfc_sli4_sge_last, sgl, 0);
2081 sgl->word2 = cpu_to_le32(sgl->word2);
2082 sgl += 1;
James Smartfedd3b72011-02-16 12:39:24 -05002083 first_data_sgl = sgl;
James Smartda0436e2009-05-22 14:51:39 -04002084 lpfc_cmd->seg_cnt = nseg;
2085 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04002086 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9074 BLKGRD:"
2087 " %s: Too many sg segments from "
2088 "dma_map_sg. Config %d, seg_cnt %d\n",
2089 __func__, phba->cfg_sg_seg_cnt,
James Smartda0436e2009-05-22 14:51:39 -04002090 lpfc_cmd->seg_cnt);
2091 scsi_dma_unmap(scsi_cmnd);
2092 return 1;
2093 }
2094
2095 /*
2096 * The driver established a maximum scatter-gather segment count
2097 * during probe that limits the number of sg elements in any
2098 * single scsi command. Just run through the seg_cnt and format
2099 * the sge's.
2100 * When using SLI-3 the driver will try to fit all the BDEs into
2101 * the IOCB. If it can't then the BDEs get added to a BPL as it
2102 * does for SLI-2 mode.
2103 */
2104 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
2105 physaddr = sg_dma_address(sgel);
2106 dma_len = sg_dma_len(sgel);
James Smartda0436e2009-05-22 14:51:39 -04002107 sgl->addr_lo = cpu_to_le32(putPaddrLow(physaddr));
2108 sgl->addr_hi = cpu_to_le32(putPaddrHigh(physaddr));
James Smart05580562011-05-24 11:40:48 -04002109 sgl->word2 = le32_to_cpu(sgl->word2);
James Smartda0436e2009-05-22 14:51:39 -04002110 if ((num_bde + 1) == nseg)
2111 bf_set(lpfc_sli4_sge_last, sgl, 1);
2112 else
2113 bf_set(lpfc_sli4_sge_last, sgl, 0);
2114 bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
2115 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05002116 sgl->sge_len = cpu_to_le32(dma_len);
James Smartda0436e2009-05-22 14:51:39 -04002117 dma_offset += dma_len;
2118 sgl++;
2119 }
James Smartfedd3b72011-02-16 12:39:24 -05002120 /* setup the performance hint (first data BDE) if enabled */
2121 if (phba->sli3_options & LPFC_SLI4_PERFH_ENABLED) {
2122 bde = (struct ulp_bde64 *)
2123 &(iocb_cmd->unsli3.sli3Words[5]);
2124 bde->addrLow = first_data_sgl->addr_lo;
2125 bde->addrHigh = first_data_sgl->addr_hi;
2126 bde->tus.f.bdeSize =
2127 le32_to_cpu(first_data_sgl->sge_len);
2128 bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
2129 bde->tus.w = cpu_to_le32(bde->tus.w);
2130 }
James Smartda0436e2009-05-22 14:51:39 -04002131 } else {
2132 sgl += 1;
2133 /* clear the last flag in the fcp_rsp map entry */
2134 sgl->word2 = le32_to_cpu(sgl->word2);
2135 bf_set(lpfc_sli4_sge_last, sgl, 1);
2136 sgl->word2 = cpu_to_le32(sgl->word2);
2137 }
2138
2139 /*
2140 * Finish initializing those IOCB fields that are dependent on the
2141 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
2142 * explicitly reinitialized.
2143 * all iocb memory resources are reused.
2144 */
2145 fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
2146
2147 /*
2148 * Due to difference in data length between DIF/non-DIF paths,
2149 * we need to set word 4 of IOCB here
2150 */
2151 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
2152 return 0;
2153}
2154
2155/**
James Smart3772a992009-05-22 14:50:54 -04002156 * lpfc_scsi_prep_dma_buf - Wrapper function for DMA mapping of scsi buffer
2157 * @phba: The Hba for which this call is being executed.
2158 * @lpfc_cmd: The scsi buffer which is going to be mapped.
2159 *
2160 * This routine wraps the actual DMA mapping function pointer from the
2161 * lpfc_hba struct.
2162 *
2163 * Return codes:
James Smart6c8eea52010-04-06 14:49:53 -04002164 * 1 - Error
2165 * 0 - Success
James Smart3772a992009-05-22 14:50:54 -04002166 **/
2167static inline int
2168lpfc_scsi_prep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
2169{
2170 return phba->lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
2171}
2172
2173/**
James Smart3621a712009-04-06 18:47:14 -04002174 * lpfc_send_scsi_error_event - Posts an event when there is SCSI error
James Smartea2151b2008-09-07 11:52:10 -04002175 * @phba: Pointer to hba context object.
2176 * @vport: Pointer to vport object.
2177 * @lpfc_cmd: Pointer to lpfc scsi command which reported the error.
2178 * @rsp_iocb: Pointer to response iocb object which reported error.
2179 *
2180 * This function posts an event when there is a SCSI command reporting
2181 * error from the scsi device.
2182 **/
2183static void
2184lpfc_send_scsi_error_event(struct lpfc_hba *phba, struct lpfc_vport *vport,
2185 struct lpfc_scsi_buf *lpfc_cmd, struct lpfc_iocbq *rsp_iocb) {
2186 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
2187 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
2188 uint32_t resp_info = fcprsp->rspStatus2;
2189 uint32_t scsi_status = fcprsp->rspStatus3;
2190 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
2191 struct lpfc_fast_path_event *fast_path_evt = NULL;
2192 struct lpfc_nodelist *pnode = lpfc_cmd->rdata->pnode;
2193 unsigned long flags;
2194
James Smart5989b8d2010-10-22 11:06:56 -04002195 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
2196 return;
2197
James Smartea2151b2008-09-07 11:52:10 -04002198 /* If there is queuefull or busy condition send a scsi event */
2199 if ((cmnd->result == SAM_STAT_TASK_SET_FULL) ||
2200 (cmnd->result == SAM_STAT_BUSY)) {
2201 fast_path_evt = lpfc_alloc_fast_evt(phba);
2202 if (!fast_path_evt)
2203 return;
2204 fast_path_evt->un.scsi_evt.event_type =
2205 FC_REG_SCSI_EVENT;
2206 fast_path_evt->un.scsi_evt.subcategory =
2207 (cmnd->result == SAM_STAT_TASK_SET_FULL) ?
2208 LPFC_EVENT_QFULL : LPFC_EVENT_DEVBSY;
2209 fast_path_evt->un.scsi_evt.lun = cmnd->device->lun;
2210 memcpy(&fast_path_evt->un.scsi_evt.wwpn,
2211 &pnode->nlp_portname, sizeof(struct lpfc_name));
2212 memcpy(&fast_path_evt->un.scsi_evt.wwnn,
2213 &pnode->nlp_nodename, sizeof(struct lpfc_name));
2214 } else if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen &&
2215 ((cmnd->cmnd[0] == READ_10) || (cmnd->cmnd[0] == WRITE_10))) {
2216 fast_path_evt = lpfc_alloc_fast_evt(phba);
2217 if (!fast_path_evt)
2218 return;
2219 fast_path_evt->un.check_cond_evt.scsi_event.event_type =
2220 FC_REG_SCSI_EVENT;
2221 fast_path_evt->un.check_cond_evt.scsi_event.subcategory =
2222 LPFC_EVENT_CHECK_COND;
2223 fast_path_evt->un.check_cond_evt.scsi_event.lun =
2224 cmnd->device->lun;
2225 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwpn,
2226 &pnode->nlp_portname, sizeof(struct lpfc_name));
2227 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwnn,
2228 &pnode->nlp_nodename, sizeof(struct lpfc_name));
2229 fast_path_evt->un.check_cond_evt.sense_key =
2230 cmnd->sense_buffer[2] & 0xf;
2231 fast_path_evt->un.check_cond_evt.asc = cmnd->sense_buffer[12];
2232 fast_path_evt->un.check_cond_evt.ascq = cmnd->sense_buffer[13];
2233 } else if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
2234 fcpi_parm &&
2235 ((be32_to_cpu(fcprsp->rspResId) != fcpi_parm) ||
2236 ((scsi_status == SAM_STAT_GOOD) &&
2237 !(resp_info & (RESID_UNDER | RESID_OVER))))) {
2238 /*
2239 * If status is good or resid does not match with fcp_param and
2240 * there is valid fcpi_parm, then there is a read_check error
2241 */
2242 fast_path_evt = lpfc_alloc_fast_evt(phba);
2243 if (!fast_path_evt)
2244 return;
2245 fast_path_evt->un.read_check_error.header.event_type =
2246 FC_REG_FABRIC_EVENT;
2247 fast_path_evt->un.read_check_error.header.subcategory =
2248 LPFC_EVENT_FCPRDCHKERR;
2249 memcpy(&fast_path_evt->un.read_check_error.header.wwpn,
2250 &pnode->nlp_portname, sizeof(struct lpfc_name));
2251 memcpy(&fast_path_evt->un.read_check_error.header.wwnn,
2252 &pnode->nlp_nodename, sizeof(struct lpfc_name));
2253 fast_path_evt->un.read_check_error.lun = cmnd->device->lun;
2254 fast_path_evt->un.read_check_error.opcode = cmnd->cmnd[0];
2255 fast_path_evt->un.read_check_error.fcpiparam =
2256 fcpi_parm;
2257 } else
2258 return;
2259
2260 fast_path_evt->vport = vport;
2261 spin_lock_irqsave(&phba->hbalock, flags);
2262 list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
2263 spin_unlock_irqrestore(&phba->hbalock, flags);
2264 lpfc_worker_wake_up(phba);
2265 return;
2266}
James Smart9bad7672008-12-04 22:39:02 -05002267
2268/**
James Smartf1126682009-06-10 17:22:44 -04002269 * lpfc_scsi_unprep_dma_buf - Un-map DMA mapping of SG-list for dev
James Smart3772a992009-05-22 14:50:54 -04002270 * @phba: The HBA for which this call is being executed.
James Smart9bad7672008-12-04 22:39:02 -05002271 * @psb: The scsi buffer which is going to be un-mapped.
2272 *
2273 * This routine does DMA un-mapping of scatter gather list of scsi command
James Smart3772a992009-05-22 14:50:54 -04002274 * field of @lpfc_cmd for device with SLI-3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002275 **/
dea31012005-04-17 16:05:31 -05002276static void
James Smartf1126682009-06-10 17:22:44 -04002277lpfc_scsi_unprep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James Smartbcf4dbf2006-07-06 15:50:08 -04002278{
2279 /*
2280 * There are only two special cases to consider. (1) the scsi command
2281 * requested scatter-gather usage or (2) the scsi command allocated
2282 * a request buffer, but did not request use_sg. There is a third
2283 * case, but it does not require resource deallocation.
2284 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002285 if (psb->seg_cnt > 0)
2286 scsi_dma_unmap(psb->pCmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05002287 if (psb->prot_seg_cnt > 0)
2288 dma_unmap_sg(&phba->pcidev->dev, scsi_prot_sglist(psb->pCmd),
2289 scsi_prot_sg_count(psb->pCmd),
2290 psb->pCmd->sc_data_direction);
James Smartbcf4dbf2006-07-06 15:50:08 -04002291}
2292
James Smart9bad7672008-12-04 22:39:02 -05002293/**
James Smart3621a712009-04-06 18:47:14 -04002294 * lpfc_handler_fcp_err - FCP response handler
James Smart9bad7672008-12-04 22:39:02 -05002295 * @vport: The virtual port for which this call is being executed.
2296 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2297 * @rsp_iocb: The response IOCB which contains FCP error.
2298 *
2299 * This routine is called to process response IOCB with status field
2300 * IOSTAT_FCP_RSP_ERROR. This routine sets result field of scsi command
2301 * based upon SCSI and FCP error.
2302 **/
James Smartbcf4dbf2006-07-06 15:50:08 -04002303static void
James Smart2e0fef82007-06-17 19:56:36 -05002304lpfc_handle_fcp_err(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
2305 struct lpfc_iocbq *rsp_iocb)
dea31012005-04-17 16:05:31 -05002306{
2307 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
2308 struct fcp_cmnd *fcpcmd = lpfc_cmd->fcp_cmnd;
2309 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
James Smart7054a602007-04-25 09:52:34 -04002310 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
dea31012005-04-17 16:05:31 -05002311 uint32_t resp_info = fcprsp->rspStatus2;
2312 uint32_t scsi_status = fcprsp->rspStatus3;
James Smartc7743952006-12-02 13:34:42 -05002313 uint32_t *lp;
dea31012005-04-17 16:05:31 -05002314 uint32_t host_status = DID_OK;
2315 uint32_t rsplen = 0;
James Smartc7743952006-12-02 13:34:42 -05002316 uint32_t logit = LOG_FCP | LOG_FCP_ERROR;
dea31012005-04-17 16:05:31 -05002317
James Smartea2151b2008-09-07 11:52:10 -04002318
dea31012005-04-17 16:05:31 -05002319 /*
2320 * If this is a task management command, there is no
2321 * scsi packet associated with this lpfc_cmd. The driver
2322 * consumes it.
2323 */
2324 if (fcpcmd->fcpCntl2) {
2325 scsi_status = 0;
2326 goto out;
2327 }
2328
James Smart6a9c52c2009-10-02 15:16:51 -04002329 if (resp_info & RSP_LEN_VALID) {
2330 rsplen = be32_to_cpu(fcprsp->rspRspLen);
James Smarte40a02c2010-02-26 14:13:54 -05002331 if (rsplen != 0 && rsplen != 4 && rsplen != 8) {
James Smart6a9c52c2009-10-02 15:16:51 -04002332 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
2333 "2719 Invalid response length: "
2334 "tgt x%x lun x%x cmnd x%x rsplen x%x\n",
2335 cmnd->device->id,
2336 cmnd->device->lun, cmnd->cmnd[0],
2337 rsplen);
2338 host_status = DID_ERROR;
2339 goto out;
2340 }
James Smarte40a02c2010-02-26 14:13:54 -05002341 if (fcprsp->rspInfo3 != RSP_NO_FAILURE) {
2342 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
2343 "2757 Protocol failure detected during "
2344 "processing of FCP I/O op: "
2345 "tgt x%x lun x%x cmnd x%x rspInfo3 x%x\n",
2346 cmnd->device->id,
2347 cmnd->device->lun, cmnd->cmnd[0],
2348 fcprsp->rspInfo3);
2349 host_status = DID_ERROR;
2350 goto out;
2351 }
James Smart6a9c52c2009-10-02 15:16:51 -04002352 }
2353
James Smartc7743952006-12-02 13:34:42 -05002354 if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen) {
2355 uint32_t snslen = be32_to_cpu(fcprsp->rspSnsLen);
2356 if (snslen > SCSI_SENSE_BUFFERSIZE)
2357 snslen = SCSI_SENSE_BUFFERSIZE;
2358
2359 if (resp_info & RSP_LEN_VALID)
2360 rsplen = be32_to_cpu(fcprsp->rspRspLen);
2361 memcpy(cmnd->sense_buffer, &fcprsp->rspInfo0 + rsplen, snslen);
2362 }
2363 lp = (uint32_t *)cmnd->sense_buffer;
2364
2365 if (!scsi_status && (resp_info & RESID_UNDER))
2366 logit = LOG_FCP;
2367
James Smarte8b62012007-08-02 11:10:09 -04002368 lpfc_printf_vlog(vport, KERN_WARNING, logit,
James Smarte2a0a9d2008-12-04 22:40:02 -05002369 "9024 FCP command x%x failed: x%x SNS x%x x%x "
James Smarte8b62012007-08-02 11:10:09 -04002370 "Data: x%x x%x x%x x%x x%x\n",
2371 cmnd->cmnd[0], scsi_status,
2372 be32_to_cpu(*lp), be32_to_cpu(*(lp + 3)), resp_info,
2373 be32_to_cpu(fcprsp->rspResId),
2374 be32_to_cpu(fcprsp->rspSnsLen),
2375 be32_to_cpu(fcprsp->rspRspLen),
2376 fcprsp->rspInfo3);
dea31012005-04-17 16:05:31 -05002377
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002378 scsi_set_resid(cmnd, 0);
dea31012005-04-17 16:05:31 -05002379 if (resp_info & RESID_UNDER) {
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002380 scsi_set_resid(cmnd, be32_to_cpu(fcprsp->rspResId));
dea31012005-04-17 16:05:31 -05002381
James Smarte8b62012007-08-02 11:10:09 -04002382 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002383 "9025 FCP Read Underrun, expected %d, "
James Smarte8b62012007-08-02 11:10:09 -04002384 "residual %d Data: x%x x%x x%x\n",
2385 be32_to_cpu(fcpcmd->fcpDl),
2386 scsi_get_resid(cmnd), fcpi_parm, cmnd->cmnd[0],
2387 cmnd->underflow);
dea31012005-04-17 16:05:31 -05002388
2389 /*
James Smart7054a602007-04-25 09:52:34 -04002390 * If there is an under run check if under run reported by
2391 * storage array is same as the under run reported by HBA.
2392 * If this is not same, there is a dropped frame.
2393 */
2394 if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
2395 fcpi_parm &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002396 (scsi_get_resid(cmnd) != fcpi_parm)) {
James Smarte8b62012007-08-02 11:10:09 -04002397 lpfc_printf_vlog(vport, KERN_WARNING,
2398 LOG_FCP | LOG_FCP_ERROR,
James Smarte2a0a9d2008-12-04 22:40:02 -05002399 "9026 FCP Read Check Error "
James Smarte8b62012007-08-02 11:10:09 -04002400 "and Underrun Data: x%x x%x x%x x%x\n",
2401 be32_to_cpu(fcpcmd->fcpDl),
2402 scsi_get_resid(cmnd), fcpi_parm,
2403 cmnd->cmnd[0]);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002404 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
James Smart7054a602007-04-25 09:52:34 -04002405 host_status = DID_ERROR;
2406 }
2407 /*
dea31012005-04-17 16:05:31 -05002408 * The cmnd->underflow is the minimum number of bytes that must
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002409 * be transferred for this command. Provided a sense condition
dea31012005-04-17 16:05:31 -05002410 * is not present, make sure the actual amount transferred is at
2411 * least the underflow value or fail.
2412 */
2413 if (!(resp_info & SNS_LEN_VALID) &&
2414 (scsi_status == SAM_STAT_GOOD) &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002415 (scsi_bufflen(cmnd) - scsi_get_resid(cmnd)
2416 < cmnd->underflow)) {
James Smarte8b62012007-08-02 11:10:09 -04002417 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002418 "9027 FCP command x%x residual "
James Smarte8b62012007-08-02 11:10:09 -04002419 "underrun converted to error "
2420 "Data: x%x x%x x%x\n",
James Smart66dbfbe2007-08-05 06:08:38 -04002421 cmnd->cmnd[0], scsi_bufflen(cmnd),
James Smarte8b62012007-08-02 11:10:09 -04002422 scsi_get_resid(cmnd), cmnd->underflow);
dea31012005-04-17 16:05:31 -05002423 host_status = DID_ERROR;
2424 }
2425 } else if (resp_info & RESID_OVER) {
James Smarte8b62012007-08-02 11:10:09 -04002426 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002427 "9028 FCP command x%x residual overrun error. "
James Smarte4e74272009-07-19 10:01:38 -04002428 "Data: x%x x%x\n", cmnd->cmnd[0],
James Smarte8b62012007-08-02 11:10:09 -04002429 scsi_bufflen(cmnd), scsi_get_resid(cmnd));
dea31012005-04-17 16:05:31 -05002430 host_status = DID_ERROR;
2431
2432 /*
2433 * Check SLI validation that all the transfer was actually done
2434 * (fcpi_parm should be zero). Apply check only to reads.
2435 */
James Smarteee88772010-09-29 11:19:08 -04002436 } else if (fcpi_parm && (cmnd->sc_data_direction == DMA_FROM_DEVICE)) {
James Smarte8b62012007-08-02 11:10:09 -04002437 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP | LOG_FCP_ERROR,
James Smarte2a0a9d2008-12-04 22:40:02 -05002438 "9029 FCP Read Check Error Data: "
James Smarteee88772010-09-29 11:19:08 -04002439 "x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04002440 be32_to_cpu(fcpcmd->fcpDl),
2441 be32_to_cpu(fcprsp->rspResId),
James Smarteee88772010-09-29 11:19:08 -04002442 fcpi_parm, cmnd->cmnd[0], scsi_status);
2443 switch (scsi_status) {
2444 case SAM_STAT_GOOD:
2445 case SAM_STAT_CHECK_CONDITION:
2446 /* Fabric dropped a data frame. Fail any successful
2447 * command in which we detected dropped frames.
2448 * A status of good or some check conditions could
2449 * be considered a successful command.
2450 */
2451 host_status = DID_ERROR;
2452 break;
2453 }
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002454 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
dea31012005-04-17 16:05:31 -05002455 }
2456
2457 out:
2458 cmnd->result = ScsiResult(host_status, scsi_status);
James Smartea2151b2008-09-07 11:52:10 -04002459 lpfc_send_scsi_error_event(vport->phba, vport, lpfc_cmd, rsp_iocb);
dea31012005-04-17 16:05:31 -05002460}
2461
James Smart9bad7672008-12-04 22:39:02 -05002462/**
James Smart3621a712009-04-06 18:47:14 -04002463 * lpfc_scsi_cmd_iocb_cmpl - Scsi cmnd IOCB completion routine
James Smart9bad7672008-12-04 22:39:02 -05002464 * @phba: The Hba for which this call is being executed.
2465 * @pIocbIn: The command IOCBQ for the scsi cmnd.
James Smart3772a992009-05-22 14:50:54 -04002466 * @pIocbOut: The response IOCBQ for the scsi cmnd.
James Smart9bad7672008-12-04 22:39:02 -05002467 *
2468 * This routine assigns scsi command result by looking into response IOCB
2469 * status field appropriately. This routine handles QUEUE FULL condition as
2470 * well by ramping down device queue depth.
2471 **/
dea31012005-04-17 16:05:31 -05002472static void
2473lpfc_scsi_cmd_iocb_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *pIocbIn,
2474 struct lpfc_iocbq *pIocbOut)
2475{
2476 struct lpfc_scsi_buf *lpfc_cmd =
2477 (struct lpfc_scsi_buf *) pIocbIn->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002478 struct lpfc_vport *vport = pIocbIn->vport;
dea31012005-04-17 16:05:31 -05002479 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
2480 struct lpfc_nodelist *pnode = rdata->pnode;
James Smart75baf692010-06-08 18:31:21 -04002481 struct scsi_cmnd *cmd;
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002482 int result;
James Smarta257bf92009-04-06 18:48:10 -04002483 struct scsi_device *tmp_sdev;
James Smart5ffc2662009-11-18 15:39:44 -05002484 int depth;
James Smartfa61a542008-01-11 01:52:42 -05002485 unsigned long flags;
James Smartea2151b2008-09-07 11:52:10 -04002486 struct lpfc_fast_path_event *fast_path_evt;
James Smart75baf692010-06-08 18:31:21 -04002487 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -04002488 uint32_t queue_depth, scsi_id;
dea31012005-04-17 16:05:31 -05002489
James Smart75baf692010-06-08 18:31:21 -04002490 /* Sanity check on return of outstanding command */
2491 if (!(lpfc_cmd->pCmd))
2492 return;
2493 cmd = lpfc_cmd->pCmd;
2494 shost = cmd->device->host;
2495
dea31012005-04-17 16:05:31 -05002496 lpfc_cmd->result = pIocbOut->iocb.un.ulpWord[4];
2497 lpfc_cmd->status = pIocbOut->iocb.ulpStatus;
James Smart341af102010-01-26 23:07:37 -05002498 /* pick up SLI4 exhange busy status from HBA */
2499 lpfc_cmd->exch_busy = pIocbOut->iocb_flag & LPFC_EXCHANGE_BUSY;
2500
James Smart109f6ed2008-12-04 22:39:08 -05002501 if (pnode && NLP_CHK_NODE_ACT(pnode))
2502 atomic_dec(&pnode->cmd_pending);
dea31012005-04-17 16:05:31 -05002503
2504 if (lpfc_cmd->status) {
2505 if (lpfc_cmd->status == IOSTAT_LOCAL_REJECT &&
2506 (lpfc_cmd->result & IOERR_DRVR_MASK))
2507 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
2508 else if (lpfc_cmd->status >= IOSTAT_CNT)
2509 lpfc_cmd->status = IOSTAT_DEFAULT;
2510
James Smarte8b62012007-08-02 11:10:09 -04002511 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002512 "9030 FCP cmd x%x failed <%d/%d> "
James Smarte8b62012007-08-02 11:10:09 -04002513 "status: x%x result: x%x Data: x%x x%x\n",
2514 cmd->cmnd[0],
2515 cmd->device ? cmd->device->id : 0xffff,
2516 cmd->device ? cmd->device->lun : 0xffff,
2517 lpfc_cmd->status, lpfc_cmd->result,
2518 pIocbOut->iocb.ulpContext,
2519 lpfc_cmd->cur_iocbq.iocb.ulpIoTag);
dea31012005-04-17 16:05:31 -05002520
2521 switch (lpfc_cmd->status) {
2522 case IOSTAT_FCP_RSP_ERROR:
2523 /* Call FCP RSP handler to determine result */
James Smart2e0fef82007-06-17 19:56:36 -05002524 lpfc_handle_fcp_err(vport, lpfc_cmd, pIocbOut);
dea31012005-04-17 16:05:31 -05002525 break;
2526 case IOSTAT_NPORT_BSY:
2527 case IOSTAT_FABRIC_BSY:
James Smart0f1f53a2008-08-24 21:50:18 -04002528 cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED, 0);
James Smartea2151b2008-09-07 11:52:10 -04002529 fast_path_evt = lpfc_alloc_fast_evt(phba);
2530 if (!fast_path_evt)
2531 break;
2532 fast_path_evt->un.fabric_evt.event_type =
2533 FC_REG_FABRIC_EVENT;
2534 fast_path_evt->un.fabric_evt.subcategory =
2535 (lpfc_cmd->status == IOSTAT_NPORT_BSY) ?
2536 LPFC_EVENT_PORT_BUSY : LPFC_EVENT_FABRIC_BUSY;
2537 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
2538 memcpy(&fast_path_evt->un.fabric_evt.wwpn,
2539 &pnode->nlp_portname,
2540 sizeof(struct lpfc_name));
2541 memcpy(&fast_path_evt->un.fabric_evt.wwnn,
2542 &pnode->nlp_nodename,
2543 sizeof(struct lpfc_name));
2544 }
2545 fast_path_evt->vport = vport;
2546 fast_path_evt->work_evt.evt =
2547 LPFC_EVT_FASTPATH_MGMT_EVT;
2548 spin_lock_irqsave(&phba->hbalock, flags);
2549 list_add_tail(&fast_path_evt->work_evt.evt_listp,
2550 &phba->work_list);
2551 spin_unlock_irqrestore(&phba->hbalock, flags);
2552 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05002553 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002554 case IOSTAT_LOCAL_REJECT:
James Smart1151e3e2011-02-16 12:39:35 -05002555 case IOSTAT_REMOTE_STOP:
James Smartab56dc22011-02-16 12:39:57 -05002556 if (lpfc_cmd->result == IOERR_ELXSEC_KEY_UNWRAP_ERROR ||
2557 lpfc_cmd->result ==
2558 IOERR_ELXSEC_KEY_UNWRAP_COMPARE_ERROR ||
2559 lpfc_cmd->result == IOERR_ELXSEC_CRYPTO_ERROR ||
2560 lpfc_cmd->result ==
2561 IOERR_ELXSEC_CRYPTO_COMPARE_ERROR) {
2562 cmd->result = ScsiResult(DID_NO_CONNECT, 0);
2563 break;
2564 }
James Smartd7c255b2008-08-24 21:50:00 -04002565 if (lpfc_cmd->result == IOERR_INVALID_RPI ||
James Smart92d7f7b2007-06-17 19:56:38 -05002566 lpfc_cmd->result == IOERR_NO_RESOURCES ||
James Smartb92938b2010-06-07 15:24:12 -04002567 lpfc_cmd->result == IOERR_ABORT_REQUESTED ||
2568 lpfc_cmd->result == IOERR_SLER_CMD_RCV_FAILURE) {
James Smart92d7f7b2007-06-17 19:56:38 -05002569 cmd->result = ScsiResult(DID_REQUEUE, 0);
James Smart58da1ff2008-04-07 10:15:56 -04002570 break;
James Smarte2a0a9d2008-12-04 22:40:02 -05002571 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002572 if ((lpfc_cmd->result == IOERR_RX_DMA_FAILED ||
2573 lpfc_cmd->result == IOERR_TX_DMA_FAILED) &&
2574 pIocbOut->iocb.unsli3.sli3_bg.bgstat) {
2575 if (scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
2576 /*
2577 * This is a response for a BG enabled
2578 * cmd. Parse BG error
2579 */
2580 lpfc_parse_bg_err(phba, lpfc_cmd,
2581 pIocbOut);
2582 break;
2583 } else {
2584 lpfc_printf_vlog(vport, KERN_WARNING,
2585 LOG_BG,
2586 "9031 non-zero BGSTAT "
James Smart6a9c52c2009-10-02 15:16:51 -04002587 "on unprotected cmd\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002588 }
2589 }
James Smart1151e3e2011-02-16 12:39:35 -05002590 if ((lpfc_cmd->status == IOSTAT_REMOTE_STOP)
2591 && (phba->sli_rev == LPFC_SLI_REV4)
2592 && (pnode && NLP_CHK_NODE_ACT(pnode))) {
2593 /* This IO was aborted by the target, we don't
2594 * know the rxid and because we did not send the
2595 * ABTS we cannot generate and RRQ.
2596 */
2597 lpfc_set_rrq_active(phba, pnode,
2598 lpfc_cmd->cur_iocbq.sli4_xritag,
2599 0, 0);
2600 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002601 /* else: fall through */
dea31012005-04-17 16:05:31 -05002602 default:
2603 cmd->result = ScsiResult(DID_ERROR, 0);
2604 break;
2605 }
2606
James Smart58da1ff2008-04-07 10:15:56 -04002607 if (!pnode || !NLP_CHK_NODE_ACT(pnode)
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002608 || (pnode->nlp_state != NLP_STE_MAPPED_NODE))
James Smart0f1f53a2008-08-24 21:50:18 -04002609 cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED,
2610 SAM_STAT_BUSY);
James Smartab56dc22011-02-16 12:39:57 -05002611 } else
dea31012005-04-17 16:05:31 -05002612 cmd->result = ScsiResult(DID_OK, 0);
dea31012005-04-17 16:05:31 -05002613
2614 if (cmd->result || lpfc_cmd->fcp_rsp->rspSnsLen) {
2615 uint32_t *lp = (uint32_t *)cmd->sense_buffer;
2616
James Smarte8b62012007-08-02 11:10:09 -04002617 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
2618 "0710 Iodone <%d/%d> cmd %p, error "
2619 "x%x SNS x%x x%x Data: x%x x%x\n",
2620 cmd->device->id, cmd->device->lun, cmd,
2621 cmd->result, *lp, *(lp + 3), cmd->retries,
2622 scsi_get_resid(cmd));
dea31012005-04-17 16:05:31 -05002623 }
2624
James Smartea2151b2008-09-07 11:52:10 -04002625 lpfc_update_stats(phba, lpfc_cmd);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002626 result = cmd->result;
James Smart977b5a02008-09-07 11:52:04 -04002627 if (vport->cfg_max_scsicmpl_time &&
2628 time_after(jiffies, lpfc_cmd->start_time +
2629 msecs_to_jiffies(vport->cfg_max_scsicmpl_time))) {
James Smarta257bf92009-04-06 18:48:10 -04002630 spin_lock_irqsave(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002631 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
2632 if (pnode->cmd_qdepth >
2633 atomic_read(&pnode->cmd_pending) &&
2634 (atomic_read(&pnode->cmd_pending) >
2635 LPFC_MIN_TGT_QDEPTH) &&
2636 ((cmd->cmnd[0] == READ_10) ||
2637 (cmd->cmnd[0] == WRITE_10)))
2638 pnode->cmd_qdepth =
2639 atomic_read(&pnode->cmd_pending);
James Smart977b5a02008-09-07 11:52:04 -04002640
James Smart109f6ed2008-12-04 22:39:08 -05002641 pnode->last_change_time = jiffies;
2642 }
James Smarta257bf92009-04-06 18:48:10 -04002643 spin_unlock_irqrestore(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002644 } else if (pnode && NLP_CHK_NODE_ACT(pnode)) {
James Smart7dc517d2010-07-14 15:32:10 -04002645 if ((pnode->cmd_qdepth < vport->cfg_tgt_queue_depth) &&
James Smart977b5a02008-09-07 11:52:04 -04002646 time_after(jiffies, pnode->last_change_time +
James Smart109f6ed2008-12-04 22:39:08 -05002647 msecs_to_jiffies(LPFC_TGTQ_INTERVAL))) {
James Smarta257bf92009-04-06 18:48:10 -04002648 spin_lock_irqsave(shost->host_lock, flags);
James Smart7dc517d2010-07-14 15:32:10 -04002649 depth = pnode->cmd_qdepth * LPFC_TGTQ_RAMPUP_PCENT
2650 / 100;
2651 depth = depth ? depth : 1;
2652 pnode->cmd_qdepth += depth;
2653 if (pnode->cmd_qdepth > vport->cfg_tgt_queue_depth)
2654 pnode->cmd_qdepth = vport->cfg_tgt_queue_depth;
James Smart109f6ed2008-12-04 22:39:08 -05002655 pnode->last_change_time = jiffies;
James Smarta257bf92009-04-06 18:48:10 -04002656 spin_unlock_irqrestore(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002657 }
James Smart977b5a02008-09-07 11:52:04 -04002658 }
2659
James Smart1dcb58e2007-04-25 09:51:30 -04002660 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James Smarta257bf92009-04-06 18:48:10 -04002661
2662 /* The sdev is not guaranteed to be valid post scsi_done upcall. */
2663 queue_depth = cmd->device->queue_depth;
2664 scsi_id = cmd->device->id;
dea31012005-04-17 16:05:31 -05002665 cmd->scsi_done(cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002666
Jamie Wellnitzb8086082006-02-28 22:33:12 -05002667 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smartfa61a542008-01-11 01:52:42 -05002668 /*
2669 * If there is a thread waiting for command completion
2670 * wake up the thread.
2671 */
James Smarta257bf92009-04-06 18:48:10 -04002672 spin_lock_irqsave(shost->host_lock, flags);
James Smart495a7142008-06-14 22:52:59 -04002673 lpfc_cmd->pCmd = NULL;
James Smartfa61a542008-01-11 01:52:42 -05002674 if (lpfc_cmd->waitq)
2675 wake_up(lpfc_cmd->waitq);
James Smarta257bf92009-04-06 18:48:10 -04002676 spin_unlock_irqrestore(shost->host_lock, flags);
Jamie Wellnitzb8086082006-02-28 22:33:12 -05002677 lpfc_release_scsi_buf(phba, lpfc_cmd);
2678 return;
2679 }
2680
James Smart92d7f7b2007-06-17 19:56:38 -05002681 if (!result)
James Smarta257bf92009-04-06 18:48:10 -04002682 lpfc_rampup_queue_depth(vport, queue_depth);
James Smart92d7f7b2007-06-17 19:56:38 -05002683
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002684 /*
2685 * Check for queue full. If the lun is reporting queue full, then
2686 * back off the lun queue depth to prevent target overloads.
2687 */
James Smart58da1ff2008-04-07 10:15:56 -04002688 if (result == SAM_STAT_TASK_SET_FULL && pnode &&
2689 NLP_CHK_NODE_ACT(pnode)) {
James Smarta257bf92009-04-06 18:48:10 -04002690 shost_for_each_device(tmp_sdev, shost) {
2691 if (tmp_sdev->id != scsi_id)
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002692 continue;
2693 depth = scsi_track_queue_full(tmp_sdev,
James Smart5ffc2662009-11-18 15:39:44 -05002694 tmp_sdev->queue_depth-1);
2695 if (depth <= 0)
2696 continue;
James Smarte8b62012007-08-02 11:10:09 -04002697 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
2698 "0711 detected queue full - lun queue "
2699 "depth adjusted to %d.\n", depth);
James Smartea2151b2008-09-07 11:52:10 -04002700 lpfc_send_sdev_queuedepth_change_event(phba, vport,
James Smart5ffc2662009-11-18 15:39:44 -05002701 pnode,
2702 tmp_sdev->lun,
2703 depth+1, depth);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002704 }
2705 }
2706
James Smartfa61a542008-01-11 01:52:42 -05002707 /*
2708 * If there is a thread waiting for command completion
2709 * wake up the thread.
2710 */
James Smarta257bf92009-04-06 18:48:10 -04002711 spin_lock_irqsave(shost->host_lock, flags);
James Smart495a7142008-06-14 22:52:59 -04002712 lpfc_cmd->pCmd = NULL;
James Smartfa61a542008-01-11 01:52:42 -05002713 if (lpfc_cmd->waitq)
2714 wake_up(lpfc_cmd->waitq);
James Smarta257bf92009-04-06 18:48:10 -04002715 spin_unlock_irqrestore(shost->host_lock, flags);
James Smartfa61a542008-01-11 01:52:42 -05002716
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002717 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05002718}
2719
James Smart34b02dc2008-08-24 21:49:55 -04002720/**
James Smart3621a712009-04-06 18:47:14 -04002721 * lpfc_fcpcmd_to_iocb - copy the fcp_cmd data into the IOCB
James Smart34b02dc2008-08-24 21:49:55 -04002722 * @data: A pointer to the immediate command data portion of the IOCB.
2723 * @fcp_cmnd: The FCP Command that is provided by the SCSI layer.
2724 *
2725 * The routine copies the entire FCP command from @fcp_cmnd to @data while
2726 * byte swapping the data to big endian format for transmission on the wire.
2727 **/
2728static void
2729lpfc_fcpcmd_to_iocb(uint8_t *data, struct fcp_cmnd *fcp_cmnd)
2730{
2731 int i, j;
2732 for (i = 0, j = 0; i < sizeof(struct fcp_cmnd);
2733 i += sizeof(uint32_t), j++) {
2734 ((uint32_t *)data)[j] = cpu_to_be32(((uint32_t *)fcp_cmnd)[j]);
2735 }
2736}
2737
James Smart9bad7672008-12-04 22:39:02 -05002738/**
James Smartf1126682009-06-10 17:22:44 -04002739 * lpfc_scsi_prep_cmnd - Wrapper func for convert scsi cmnd to FCP info unit
James Smart9bad7672008-12-04 22:39:02 -05002740 * @vport: The virtual port for which this call is being executed.
2741 * @lpfc_cmd: The scsi command which needs to send.
2742 * @pnode: Pointer to lpfc_nodelist.
2743 *
2744 * This routine initializes fcp_cmnd and iocb data structure from scsi command
James Smart3772a992009-05-22 14:50:54 -04002745 * to transfer for device with SLI3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002746 **/
dea31012005-04-17 16:05:31 -05002747static void
James Smartf1126682009-06-10 17:22:44 -04002748lpfc_scsi_prep_cmnd(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
James Smart2e0fef82007-06-17 19:56:36 -05002749 struct lpfc_nodelist *pnode)
dea31012005-04-17 16:05:31 -05002750{
James Smart2e0fef82007-06-17 19:56:36 -05002751 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002752 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
2753 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
2754 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
2755 struct lpfc_iocbq *piocbq = &(lpfc_cmd->cur_iocbq);
2756 int datadir = scsi_cmnd->sc_data_direction;
James Smart7e2b19f2007-10-29 11:00:39 -04002757 char tag[2];
dea31012005-04-17 16:05:31 -05002758
James Smart58da1ff2008-04-07 10:15:56 -04002759 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
2760 return;
2761
dea31012005-04-17 16:05:31 -05002762 lpfc_cmd->fcp_rsp->rspSnsLen = 0;
James.Smart@Emulex.Com69859dc2005-08-10 15:02:37 -04002763 /* clear task management bits */
2764 lpfc_cmd->fcp_cmnd->fcpCntl2 = 0;
dea31012005-04-17 16:05:31 -05002765
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -04002766 int_to_scsilun(lpfc_cmd->pCmd->device->lun,
2767 &lpfc_cmd->fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -05002768
2769 memcpy(&fcp_cmnd->fcpCdb[0], scsi_cmnd->cmnd, 16);
2770
James Smart7e2b19f2007-10-29 11:00:39 -04002771 if (scsi_populate_tag_msg(scsi_cmnd, tag)) {
2772 switch (tag[0]) {
dea31012005-04-17 16:05:31 -05002773 case HEAD_OF_QUEUE_TAG:
2774 fcp_cmnd->fcpCntl1 = HEAD_OF_Q;
2775 break;
2776 case ORDERED_QUEUE_TAG:
2777 fcp_cmnd->fcpCntl1 = ORDERED_Q;
2778 break;
2779 default:
2780 fcp_cmnd->fcpCntl1 = SIMPLE_Q;
2781 break;
2782 }
2783 } else
2784 fcp_cmnd->fcpCntl1 = 0;
2785
2786 /*
2787 * There are three possibilities here - use scatter-gather segment, use
2788 * the single mapping, or neither. Start the lpfc command prep by
2789 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
2790 * data bde entry.
2791 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002792 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -05002793 if (datadir == DMA_TO_DEVICE) {
2794 iocb_cmd->ulpCommand = CMD_FCP_IWRITE64_CR;
James Smart3772a992009-05-22 14:50:54 -04002795 if (phba->sli_rev < LPFC_SLI_REV4) {
2796 iocb_cmd->un.fcpi.fcpi_parm = 0;
2797 iocb_cmd->ulpPU = 0;
2798 } else
2799 iocb_cmd->ulpPU = PARM_READ_CHECK;
dea31012005-04-17 16:05:31 -05002800 fcp_cmnd->fcpCntl3 = WRITE_DATA;
2801 phba->fc4OutputRequests++;
2802 } else {
2803 iocb_cmd->ulpCommand = CMD_FCP_IREAD64_CR;
2804 iocb_cmd->ulpPU = PARM_READ_CHECK;
dea31012005-04-17 16:05:31 -05002805 fcp_cmnd->fcpCntl3 = READ_DATA;
2806 phba->fc4InputRequests++;
2807 }
2808 } else {
2809 iocb_cmd->ulpCommand = CMD_FCP_ICMND64_CR;
2810 iocb_cmd->un.fcpi.fcpi_parm = 0;
2811 iocb_cmd->ulpPU = 0;
2812 fcp_cmnd->fcpCntl3 = 0;
2813 phba->fc4ControlRequests++;
2814 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002815 if (phba->sli_rev == 3 &&
2816 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED))
James Smart34b02dc2008-08-24 21:49:55 -04002817 lpfc_fcpcmd_to_iocb(iocb_cmd->unsli3.fcp_ext.icd, fcp_cmnd);
dea31012005-04-17 16:05:31 -05002818 /*
2819 * Finish initializing those IOCB fields that are independent
2820 * of the scsi_cmnd request_buffer
2821 */
2822 piocbq->iocb.ulpContext = pnode->nlp_rpi;
James Smart6d368e52011-05-24 11:44:12 -04002823 if (phba->sli_rev == LPFC_SLI_REV4)
2824 piocbq->iocb.ulpContext =
2825 phba->sli4_hba.rpi_ids[pnode->nlp_rpi];
dea31012005-04-17 16:05:31 -05002826 if (pnode->nlp_fcp_info & NLP_FCP_2_DEVICE)
2827 piocbq->iocb.ulpFCP2Rcvy = 1;
James Smart09372822008-01-11 01:52:54 -05002828 else
2829 piocbq->iocb.ulpFCP2Rcvy = 0;
dea31012005-04-17 16:05:31 -05002830
2831 piocbq->iocb.ulpClass = (pnode->nlp_fcp_info & 0x0f);
2832 piocbq->context1 = lpfc_cmd;
2833 piocbq->iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
2834 piocbq->iocb.ulpTimeout = lpfc_cmd->timeout;
James Smart2e0fef82007-06-17 19:56:36 -05002835 piocbq->vport = vport;
dea31012005-04-17 16:05:31 -05002836}
2837
James Smart9bad7672008-12-04 22:39:02 -05002838/**
James Smart6d368e52011-05-24 11:44:12 -04002839 * lpfc_scsi_prep_task_mgmt_cmd - Convert SLI3 scsi TM cmd to FCP info unit
James Smart9bad7672008-12-04 22:39:02 -05002840 * @vport: The virtual port for which this call is being executed.
2841 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2842 * @lun: Logical unit number.
2843 * @task_mgmt_cmd: SCSI task management command.
2844 *
James Smart3772a992009-05-22 14:50:54 -04002845 * This routine creates FCP information unit corresponding to @task_mgmt_cmd
2846 * for device with SLI-3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002847 *
2848 * Return codes:
2849 * 0 - Error
2850 * 1 - Success
2851 **/
dea31012005-04-17 16:05:31 -05002852static int
James Smartf1126682009-06-10 17:22:44 -04002853lpfc_scsi_prep_task_mgmt_cmd(struct lpfc_vport *vport,
dea31012005-04-17 16:05:31 -05002854 struct lpfc_scsi_buf *lpfc_cmd,
James Smart420b630d2006-07-06 15:50:16 -04002855 unsigned int lun,
dea31012005-04-17 16:05:31 -05002856 uint8_t task_mgmt_cmd)
2857{
dea31012005-04-17 16:05:31 -05002858 struct lpfc_iocbq *piocbq;
2859 IOCB_t *piocb;
2860 struct fcp_cmnd *fcp_cmnd;
James Smart0b18ac42006-05-01 21:50:40 -04002861 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
dea31012005-04-17 16:05:31 -05002862 struct lpfc_nodelist *ndlp = rdata->pnode;
2863
James Smart58da1ff2008-04-07 10:15:56 -04002864 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
2865 ndlp->nlp_state != NLP_STE_MAPPED_NODE)
dea31012005-04-17 16:05:31 -05002866 return 0;
dea31012005-04-17 16:05:31 -05002867
dea31012005-04-17 16:05:31 -05002868 piocbq = &(lpfc_cmd->cur_iocbq);
James Smart2e0fef82007-06-17 19:56:36 -05002869 piocbq->vport = vport;
2870
dea31012005-04-17 16:05:31 -05002871 piocb = &piocbq->iocb;
2872
2873 fcp_cmnd = lpfc_cmd->fcp_cmnd;
James Smart34b02dc2008-08-24 21:49:55 -04002874 /* Clear out any old data in the FCP command area */
2875 memset(fcp_cmnd, 0, sizeof(struct fcp_cmnd));
2876 int_to_scsilun(lun, &fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -05002877 fcp_cmnd->fcpCntl2 = task_mgmt_cmd;
James Smarte2a0a9d2008-12-04 22:40:02 -05002878 if (vport->phba->sli_rev == 3 &&
2879 !(vport->phba->sli3_options & LPFC_SLI3_BG_ENABLED))
James Smart34b02dc2008-08-24 21:49:55 -04002880 lpfc_fcpcmd_to_iocb(piocb->unsli3.fcp_ext.icd, fcp_cmnd);
dea31012005-04-17 16:05:31 -05002881 piocb->ulpCommand = CMD_FCP_ICMND64_CR;
dea31012005-04-17 16:05:31 -05002882 piocb->ulpContext = ndlp->nlp_rpi;
James Smart6d368e52011-05-24 11:44:12 -04002883 if (vport->phba->sli_rev == LPFC_SLI_REV4) {
2884 piocb->ulpContext =
2885 vport->phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
2886 }
dea31012005-04-17 16:05:31 -05002887 if (ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
2888 piocb->ulpFCP2Rcvy = 1;
2889 }
2890 piocb->ulpClass = (ndlp->nlp_fcp_info & 0x0f);
2891
2892 /* ulpTimeout is only one byte */
2893 if (lpfc_cmd->timeout > 0xff) {
2894 /*
2895 * Do not timeout the command at the firmware level.
2896 * The driver will provide the timeout mechanism.
2897 */
2898 piocb->ulpTimeout = 0;
James Smartf1126682009-06-10 17:22:44 -04002899 } else
dea31012005-04-17 16:05:31 -05002900 piocb->ulpTimeout = lpfc_cmd->timeout;
James Smartf1126682009-06-10 17:22:44 -04002901
2902 if (vport->phba->sli_rev == LPFC_SLI_REV4)
2903 lpfc_sli4_set_rsp_sgl_last(vport->phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05002904
James Smart2e0fef82007-06-17 19:56:36 -05002905 return 1;
dea31012005-04-17 16:05:31 -05002906}
2907
James Smart9bad7672008-12-04 22:39:02 -05002908/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002909 * lpfc_scsi_api_table_setup - Set up scsi api function jump table
James Smart3772a992009-05-22 14:50:54 -04002910 * @phba: The hba struct for which this call is being executed.
2911 * @dev_grp: The HBA PCI-Device group number.
2912 *
2913 * This routine sets up the SCSI interface API function jump table in @phba
2914 * struct.
2915 * Returns: 0 - success, -ENODEV - failure.
2916 **/
2917int
2918lpfc_scsi_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
2919{
2920
James Smartf1126682009-06-10 17:22:44 -04002921 phba->lpfc_scsi_unprep_dma_buf = lpfc_scsi_unprep_dma_buf;
2922 phba->lpfc_scsi_prep_cmnd = lpfc_scsi_prep_cmnd;
James Smartf1126682009-06-10 17:22:44 -04002923
James Smart3772a992009-05-22 14:50:54 -04002924 switch (dev_grp) {
2925 case LPFC_PCI_DEV_LP:
2926 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s3;
2927 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s3;
James Smart3772a992009-05-22 14:50:54 -04002928 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s3;
James Smart19ca7602010-11-20 23:11:55 -05002929 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf_s3;
James Smart3772a992009-05-22 14:50:54 -04002930 break;
James Smartda0436e2009-05-22 14:51:39 -04002931 case LPFC_PCI_DEV_OC:
2932 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s4;
2933 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s4;
James Smartda0436e2009-05-22 14:51:39 -04002934 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s4;
James Smart19ca7602010-11-20 23:11:55 -05002935 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf_s4;
James Smartda0436e2009-05-22 14:51:39 -04002936 break;
James Smart3772a992009-05-22 14:50:54 -04002937 default:
2938 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2939 "1418 Invalid HBA PCI-device group: 0x%x\n",
2940 dev_grp);
2941 return -ENODEV;
2942 break;
2943 }
James Smart3772a992009-05-22 14:50:54 -04002944 phba->lpfc_rampdown_queue_depth = lpfc_rampdown_queue_depth;
James Smart84d1b002010-02-12 14:42:33 -05002945 phba->lpfc_scsi_cmd_iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
James Smart3772a992009-05-22 14:50:54 -04002946 return 0;
2947}
2948
2949/**
James Smart3621a712009-04-06 18:47:14 -04002950 * lpfc_taskmgmt_def_cmpl - IOCB completion routine for task management command
James Smart9bad7672008-12-04 22:39:02 -05002951 * @phba: The Hba for which this call is being executed.
2952 * @cmdiocbq: Pointer to lpfc_iocbq data structure.
2953 * @rspiocbq: Pointer to lpfc_iocbq data structure.
2954 *
2955 * This routine is IOCB completion routine for device reset and target reset
2956 * routine. This routine release scsi buffer associated with lpfc_cmd.
2957 **/
James Smart7054a602007-04-25 09:52:34 -04002958static void
2959lpfc_tskmgmt_def_cmpl(struct lpfc_hba *phba,
2960 struct lpfc_iocbq *cmdiocbq,
2961 struct lpfc_iocbq *rspiocbq)
2962{
2963 struct lpfc_scsi_buf *lpfc_cmd =
2964 (struct lpfc_scsi_buf *) cmdiocbq->context1;
2965 if (lpfc_cmd)
2966 lpfc_release_scsi_buf(phba, lpfc_cmd);
2967 return;
2968}
2969
James Smart9bad7672008-12-04 22:39:02 -05002970/**
James Smart3621a712009-04-06 18:47:14 -04002971 * lpfc_info - Info entry point of scsi_host_template data structure
James Smart9bad7672008-12-04 22:39:02 -05002972 * @host: The scsi host for which this call is being executed.
2973 *
2974 * This routine provides module information about hba.
2975 *
2976 * Reutrn code:
2977 * Pointer to char - Success.
2978 **/
dea31012005-04-17 16:05:31 -05002979const char *
2980lpfc_info(struct Scsi_Host *host)
2981{
James Smart2e0fef82007-06-17 19:56:36 -05002982 struct lpfc_vport *vport = (struct lpfc_vport *) host->hostdata;
2983 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002984 int len;
2985 static char lpfcinfobuf[384];
2986
2987 memset(lpfcinfobuf,0,384);
2988 if (phba && phba->pcidev){
2989 strncpy(lpfcinfobuf, phba->ModelDesc, 256);
2990 len = strlen(lpfcinfobuf);
2991 snprintf(lpfcinfobuf + len,
2992 384-len,
2993 " on PCI bus %02x device %02x irq %d",
2994 phba->pcidev->bus->number,
2995 phba->pcidev->devfn,
2996 phba->pcidev->irq);
2997 len = strlen(lpfcinfobuf);
2998 if (phba->Port[0]) {
2999 snprintf(lpfcinfobuf + len,
3000 384-len,
3001 " port %s",
3002 phba->Port);
3003 }
James Smart65467b62010-01-26 23:08:29 -05003004 len = strlen(lpfcinfobuf);
3005 if (phba->sli4_hba.link_state.logical_speed) {
3006 snprintf(lpfcinfobuf + len,
3007 384-len,
3008 " Logical Link Speed: %d Mbps",
3009 phba->sli4_hba.link_state.logical_speed * 10);
3010 }
dea31012005-04-17 16:05:31 -05003011 }
3012 return lpfcinfobuf;
3013}
3014
James Smart9bad7672008-12-04 22:39:02 -05003015/**
James Smart3621a712009-04-06 18:47:14 -04003016 * lpfc_poll_rearm_time - Routine to modify fcp_poll timer of hba
James Smart9bad7672008-12-04 22:39:02 -05003017 * @phba: The Hba for which this call is being executed.
3018 *
3019 * This routine modifies fcp_poll_timer field of @phba by cfg_poll_tmo.
3020 * The default value of cfg_poll_tmo is 10 milliseconds.
3021 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003022static __inline__ void lpfc_poll_rearm_timer(struct lpfc_hba * phba)
3023{
3024 unsigned long poll_tmo_expires =
3025 (jiffies + msecs_to_jiffies(phba->cfg_poll_tmo));
3026
3027 if (phba->sli.ring[LPFC_FCP_RING].txcmplq_cnt)
3028 mod_timer(&phba->fcp_poll_timer,
3029 poll_tmo_expires);
3030}
3031
James Smart9bad7672008-12-04 22:39:02 -05003032/**
James Smart3621a712009-04-06 18:47:14 -04003033 * lpfc_poll_start_timer - Routine to start fcp_poll_timer of HBA
James Smart9bad7672008-12-04 22:39:02 -05003034 * @phba: The Hba for which this call is being executed.
3035 *
3036 * This routine starts the fcp_poll_timer of @phba.
3037 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003038void lpfc_poll_start_timer(struct lpfc_hba * phba)
3039{
3040 lpfc_poll_rearm_timer(phba);
3041}
3042
James Smart9bad7672008-12-04 22:39:02 -05003043/**
James Smart3621a712009-04-06 18:47:14 -04003044 * lpfc_poll_timeout - Restart polling timer
James Smart9bad7672008-12-04 22:39:02 -05003045 * @ptr: Map to lpfc_hba data structure pointer.
3046 *
3047 * This routine restarts fcp_poll timer, when FCP ring polling is enable
3048 * and FCP Ring interrupt is disable.
3049 **/
3050
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003051void lpfc_poll_timeout(unsigned long ptr)
3052{
James Smart2e0fef82007-06-17 19:56:36 -05003053 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003054
3055 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04003056 lpfc_sli_handle_fast_ring_event(phba,
3057 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
3058
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003059 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
3060 lpfc_poll_rearm_timer(phba);
3061 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003062}
3063
James Smart9bad7672008-12-04 22:39:02 -05003064/**
James Smart3621a712009-04-06 18:47:14 -04003065 * lpfc_queuecommand - scsi_host_template queuecommand entry point
James Smart9bad7672008-12-04 22:39:02 -05003066 * @cmnd: Pointer to scsi_cmnd data structure.
3067 * @done: Pointer to done routine.
3068 *
3069 * Driver registers this routine to scsi midlayer to submit a @cmd to process.
3070 * This routine prepares an IOCB from scsi command and provides to firmware.
3071 * The @done callback is invoked after driver finished processing the command.
3072 *
3073 * Return value :
3074 * 0 - Success
3075 * SCSI_MLQUEUE_HOST_BUSY - Block all devices served by this host temporarily.
3076 **/
dea31012005-04-17 16:05:31 -05003077static int
Jeff Garzikf2812332010-11-16 02:10:29 -05003078lpfc_queuecommand_lck(struct scsi_cmnd *cmnd, void (*done) (struct scsi_cmnd *))
dea31012005-04-17 16:05:31 -05003079{
James Smart2e0fef82007-06-17 19:56:36 -05003080 struct Scsi_Host *shost = cmnd->device->host;
3081 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3082 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003083 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003084 struct lpfc_nodelist *ndlp;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003085 struct lpfc_scsi_buf *lpfc_cmd;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003086 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003087 int err;
dea31012005-04-17 16:05:31 -05003088
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003089 err = fc_remote_port_chkready(rport);
3090 if (err) {
3091 cmnd->result = err;
dea31012005-04-17 16:05:31 -05003092 goto out_fail_command;
3093 }
James Smart1c6f4ef52009-11-18 15:40:49 -05003094 ndlp = rdata->pnode;
dea31012005-04-17 16:05:31 -05003095
James Smarte2a0a9d2008-12-04 22:40:02 -05003096 if (!(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
3097 scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) {
3098
James Smart6a9c52c2009-10-02 15:16:51 -04003099 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
3100 "9058 BLKGRD: ERROR: rcvd protected cmd:%02x"
3101 " op:%02x str=%s without registering for"
3102 " BlockGuard - Rejecting command\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05003103 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
3104 dif_op_str[scsi_get_prot_op(cmnd)]);
3105 goto out_fail_command;
3106 }
3107
dea31012005-04-17 16:05:31 -05003108 /*
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003109 * Catch race where our node has transitioned, but the
3110 * transport is still transitioning.
dea31012005-04-17 16:05:31 -05003111 */
James Smartb522d7d2008-09-07 11:51:56 -04003112 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
Mike Christief55ca84d2011-02-25 14:04:27 -06003113 cmnd->result = ScsiResult(DID_IMM_RETRY, 0);
James Smartb522d7d2008-09-07 11:51:56 -04003114 goto out_fail_command;
3115 }
James Smart7dc517d2010-07-14 15:32:10 -04003116 if (atomic_read(&ndlp->cmd_pending) >= ndlp->cmd_qdepth)
Mike Christie34963432011-02-25 14:04:28 -06003117 goto out_tgt_busy;
Mike Christiea93ce022008-08-17 15:24:41 -05003118
James Smart19ca7602010-11-20 23:11:55 -05003119 lpfc_cmd = lpfc_get_scsi_buf(phba, ndlp);
dea31012005-04-17 16:05:31 -05003120 if (lpfc_cmd == NULL) {
James Smarteaf15d52008-12-04 22:39:29 -05003121 lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05003122
James Smarte8b62012007-08-02 11:10:09 -04003123 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3124 "0707 driver's buffer pool is empty, "
3125 "IO busied\n");
dea31012005-04-17 16:05:31 -05003126 goto out_host_busy;
3127 }
3128
3129 /*
3130 * Store the midlayer's command structure for the completion phase
3131 * and complete the command initialization.
3132 */
3133 lpfc_cmd->pCmd = cmnd;
3134 lpfc_cmd->rdata = rdata;
3135 lpfc_cmd->timeout = 0;
James Smart977b5a02008-09-07 11:52:04 -04003136 lpfc_cmd->start_time = jiffies;
dea31012005-04-17 16:05:31 -05003137 cmnd->host_scribble = (unsigned char *)lpfc_cmd;
3138 cmnd->scsi_done = done;
3139
James Smarte2a0a9d2008-12-04 22:40:02 -05003140 if (scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) {
James Smart6a9c52c2009-10-02 15:16:51 -04003141 if (vport->phba->cfg_enable_bg) {
3142 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05003143 "9033 BLKGRD: rcvd protected cmd:%02x op:%02x "
3144 "str=%s\n",
3145 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
3146 dif_op_str[scsi_get_prot_op(cmnd)]);
James Smart6a9c52c2009-10-02 15:16:51 -04003147 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05003148 "9034 BLKGRD: CDB: %02x %02x %02x %02x %02x "
James Smarte4e74272009-07-19 10:01:38 -04003149 "%02x %02x %02x %02x %02x\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05003150 cmnd->cmnd[0], cmnd->cmnd[1], cmnd->cmnd[2],
3151 cmnd->cmnd[3], cmnd->cmnd[4], cmnd->cmnd[5],
3152 cmnd->cmnd[6], cmnd->cmnd[7], cmnd->cmnd[8],
3153 cmnd->cmnd[9]);
James Smart6a9c52c2009-10-02 15:16:51 -04003154 if (cmnd->cmnd[0] == READ_10)
3155 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05003156 "9035 BLKGRD: READ @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09003157 "count %u\n",
3158 (unsigned long long)scsi_get_lba(cmnd),
3159 blk_rq_sectors(cmnd->request));
James Smart6a9c52c2009-10-02 15:16:51 -04003160 else if (cmnd->cmnd[0] == WRITE_10)
3161 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05003162 "9036 BLKGRD: WRITE @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09003163 "count %u cmd=%p\n",
James Smart87b5c322008-12-16 10:34:09 -05003164 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09003165 blk_rq_sectors(cmnd->request),
James Smarte2a0a9d2008-12-04 22:40:02 -05003166 cmnd);
James Smart6a9c52c2009-10-02 15:16:51 -04003167 }
James Smarte2a0a9d2008-12-04 22:40:02 -05003168
3169 err = lpfc_bg_scsi_prep_dma_buf(phba, lpfc_cmd);
3170 } else {
James Smart6a9c52c2009-10-02 15:16:51 -04003171 if (vport->phba->cfg_enable_bg) {
James Smarte2a0a9d2008-12-04 22:40:02 -05003172 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smart6a9c52c2009-10-02 15:16:51 -04003173 "9038 BLKGRD: rcvd unprotected cmd:"
3174 "%02x op:%02x str=%s\n",
3175 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
3176 dif_op_str[scsi_get_prot_op(cmnd)]);
3177 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
3178 "9039 BLKGRD: CDB: %02x %02x %02x "
3179 "%02x %02x %02x %02x %02x %02x %02x\n",
3180 cmnd->cmnd[0], cmnd->cmnd[1],
3181 cmnd->cmnd[2], cmnd->cmnd[3],
3182 cmnd->cmnd[4], cmnd->cmnd[5],
3183 cmnd->cmnd[6], cmnd->cmnd[7],
3184 cmnd->cmnd[8], cmnd->cmnd[9]);
3185 if (cmnd->cmnd[0] == READ_10)
3186 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
3187 "9040 dbg: READ @ sector %llu, "
3188 "count %u\n",
3189 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09003190 blk_rq_sectors(cmnd->request));
James Smart6a9c52c2009-10-02 15:16:51 -04003191 else if (cmnd->cmnd[0] == WRITE_10)
3192 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05003193 "9041 dbg: WRITE @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09003194 "count %u cmd=%p\n",
James Smart87b5c322008-12-16 10:34:09 -05003195 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09003196 blk_rq_sectors(cmnd->request), cmnd);
James Smart6a9c52c2009-10-02 15:16:51 -04003197 else
3198 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05003199 "9042 dbg: parser not implemented\n");
James Smart6a9c52c2009-10-02 15:16:51 -04003200 }
James Smarte2a0a9d2008-12-04 22:40:02 -05003201 err = lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
3202 }
3203
dea31012005-04-17 16:05:31 -05003204 if (err)
3205 goto out_host_busy_free_buf;
3206
James Smart2e0fef82007-06-17 19:56:36 -05003207 lpfc_scsi_prep_cmnd(vport, lpfc_cmd, ndlp);
dea31012005-04-17 16:05:31 -05003208
James Smart977b5a02008-09-07 11:52:04 -04003209 atomic_inc(&ndlp->cmd_pending);
James Smart3772a992009-05-22 14:50:54 -04003210 err = lpfc_sli_issue_iocb(phba, LPFC_FCP_RING,
James Smart92d7f7b2007-06-17 19:56:38 -05003211 &lpfc_cmd->cur_iocbq, SLI_IOCB_RET_IOCB);
James Smarteaf15d52008-12-04 22:39:29 -05003212 if (err) {
3213 atomic_dec(&ndlp->cmd_pending);
dea31012005-04-17 16:05:31 -05003214 goto out_host_busy_free_buf;
James Smarteaf15d52008-12-04 22:39:29 -05003215 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003216 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04003217 spin_unlock(shost->host_lock);
3218 lpfc_sli_handle_fast_ring_event(phba,
3219 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
3220
3221 spin_lock(shost->host_lock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003222 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
3223 lpfc_poll_rearm_timer(phba);
3224 }
3225
dea31012005-04-17 16:05:31 -05003226 return 0;
3227
3228 out_host_busy_free_buf:
James Smartbcf4dbf2006-07-06 15:50:08 -04003229 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003230 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05003231 out_host_busy:
3232 return SCSI_MLQUEUE_HOST_BUSY;
3233
Mike Christie34963432011-02-25 14:04:28 -06003234 out_tgt_busy:
3235 return SCSI_MLQUEUE_TARGET_BUSY;
3236
dea31012005-04-17 16:05:31 -05003237 out_fail_command:
3238 done(cmnd);
3239 return 0;
3240}
3241
Jeff Garzikf2812332010-11-16 02:10:29 -05003242static DEF_SCSI_QCMD(lpfc_queuecommand)
3243
James Smart9bad7672008-12-04 22:39:02 -05003244/**
James Smart3621a712009-04-06 18:47:14 -04003245 * lpfc_abort_handler - scsi_host_template eh_abort_handler entry point
James Smart9bad7672008-12-04 22:39:02 -05003246 * @cmnd: Pointer to scsi_cmnd data structure.
3247 *
3248 * This routine aborts @cmnd pending in base driver.
3249 *
3250 * Return code :
3251 * 0x2003 - Error
3252 * 0x2002 - Success
3253 **/
dea31012005-04-17 16:05:31 -05003254static int
James.Smart@Emulex.Com63c59c32005-11-28 11:41:53 -05003255lpfc_abort_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05003256{
James Smart2e0fef82007-06-17 19:56:36 -05003257 struct Scsi_Host *shost = cmnd->device->host;
3258 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3259 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003260 struct lpfc_iocbq *iocb;
3261 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -05003262 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05003263 IOCB_t *cmd, *icmd;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003264 int ret = SUCCESS;
James Smartfa61a542008-01-11 01:52:42 -05003265 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003266
James Smart589a52d2010-07-14 15:30:54 -04003267 ret = fc_block_scsi_eh(cmnd);
3268 if (ret)
3269 return ret;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003270 lpfc_cmd = (struct lpfc_scsi_buf *)cmnd->host_scribble;
James Smarteee88772010-09-29 11:19:08 -04003271 if (!lpfc_cmd) {
3272 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3273 "2873 SCSI Layer I/O Abort Request IO CMPL Status "
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04003274 "x%x ID %d LUN %d\n",
3275 ret, cmnd->device->id, cmnd->device->lun);
James Smarteee88772010-09-29 11:19:08 -04003276 return SUCCESS;
3277 }
dea31012005-04-17 16:05:31 -05003278
3279 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003280 * If pCmd field of the corresponding lpfc_scsi_buf structure
3281 * points to a different SCSI command, then the driver has
3282 * already completed this command, but the midlayer did not
3283 * see the completion before the eh fired. Just return
3284 * SUCCESS.
dea31012005-04-17 16:05:31 -05003285 */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003286 iocb = &lpfc_cmd->cur_iocbq;
3287 if (lpfc_cmd->pCmd != cmnd)
3288 goto out;
dea31012005-04-17 16:05:31 -05003289
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003290 BUG_ON(iocb->context1 != lpfc_cmd);
dea31012005-04-17 16:05:31 -05003291
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003292 abtsiocb = lpfc_sli_get_iocbq(phba);
3293 if (abtsiocb == NULL) {
3294 ret = FAILED;
dea31012005-04-17 16:05:31 -05003295 goto out;
3296 }
3297
dea31012005-04-17 16:05:31 -05003298 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003299 * The scsi command can not be in txq and it is in flight because the
3300 * pCmd is still pointig at the SCSI command we have to abort. There
3301 * is no need to search the txcmplq. Just send an abort to the FW.
dea31012005-04-17 16:05:31 -05003302 */
dea31012005-04-17 16:05:31 -05003303
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003304 cmd = &iocb->iocb;
3305 icmd = &abtsiocb->iocb;
3306 icmd->un.acxri.abortType = ABORT_TYPE_ABTS;
3307 icmd->un.acxri.abortContextTag = cmd->ulpContext;
James Smart3772a992009-05-22 14:50:54 -04003308 if (phba->sli_rev == LPFC_SLI_REV4)
3309 icmd->un.acxri.abortIoTag = iocb->sli4_xritag;
3310 else
3311 icmd->un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05003312
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003313 icmd->ulpLe = 1;
3314 icmd->ulpClass = cmd->ulpClass;
James Smart5ffc2662009-11-18 15:39:44 -05003315
3316 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
3317 abtsiocb->fcp_wqidx = iocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05003318 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05003319
James Smart2e0fef82007-06-17 19:56:36 -05003320 if (lpfc_is_link_up(phba))
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003321 icmd->ulpCommand = CMD_ABORT_XRI_CN;
3322 else
3323 icmd->ulpCommand = CMD_CLOSE_XRI_CN;
dea31012005-04-17 16:05:31 -05003324
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003325 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smart2e0fef82007-06-17 19:56:36 -05003326 abtsiocb->vport = vport;
James Smart3772a992009-05-22 14:50:54 -04003327 if (lpfc_sli_issue_iocb(phba, LPFC_FCP_RING, abtsiocb, 0) ==
3328 IOCB_ERROR) {
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003329 lpfc_sli_release_iocbq(phba, abtsiocb);
3330 ret = FAILED;
3331 goto out;
3332 }
3333
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003334 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
James Smart45ed1192009-10-02 15:17:02 -04003335 lpfc_sli_handle_fast_ring_event(phba,
3336 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003337
James Smartfa61a542008-01-11 01:52:42 -05003338 lpfc_cmd->waitq = &waitq;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003339 /* Wait for abort to complete */
James Smartfa61a542008-01-11 01:52:42 -05003340 wait_event_timeout(waitq,
3341 (lpfc_cmd->pCmd != cmnd),
3342 (2*vport->cfg_devloss_tmo*HZ));
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003343
James Smartfa61a542008-01-11 01:52:42 -05003344 spin_lock_irq(shost->host_lock);
3345 lpfc_cmd->waitq = NULL;
3346 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003347
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003348 if (lpfc_cmd->pCmd == cmnd) {
3349 ret = FAILED;
James Smarte8b62012007-08-02 11:10:09 -04003350 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3351 "0748 abort handler timed out waiting "
3352 "for abort to complete: ret %#x, ID %d, "
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04003353 "LUN %d\n",
3354 ret, cmnd->device->id, cmnd->device->lun);
dea31012005-04-17 16:05:31 -05003355 }
3356
3357 out:
James Smarte8b62012007-08-02 11:10:09 -04003358 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3359 "0749 SCSI Layer I/O Abort Request Status x%x ID %d "
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04003360 "LUN %d\n", ret, cmnd->device->id,
3361 cmnd->device->lun);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003362 return ret;
dea31012005-04-17 16:05:31 -05003363}
3364
James Smartbbb9d182009-06-10 17:23:16 -04003365static char *
3366lpfc_taskmgmt_name(uint8_t task_mgmt_cmd)
3367{
3368 switch (task_mgmt_cmd) {
3369 case FCP_ABORT_TASK_SET:
3370 return "ABORT_TASK_SET";
3371 case FCP_CLEAR_TASK_SET:
3372 return "FCP_CLEAR_TASK_SET";
3373 case FCP_BUS_RESET:
3374 return "FCP_BUS_RESET";
3375 case FCP_LUN_RESET:
3376 return "FCP_LUN_RESET";
3377 case FCP_TARGET_RESET:
3378 return "FCP_TARGET_RESET";
3379 case FCP_CLEAR_ACA:
3380 return "FCP_CLEAR_ACA";
3381 case FCP_TERMINATE_TASK:
3382 return "FCP_TERMINATE_TASK";
3383 default:
3384 return "unknown";
3385 }
3386}
3387
3388/**
3389 * lpfc_send_taskmgmt - Generic SCSI Task Mgmt Handler
3390 * @vport: The virtual port for which this call is being executed.
3391 * @rdata: Pointer to remote port local data
3392 * @tgt_id: Target ID of remote device.
3393 * @lun_id: Lun number for the TMF
3394 * @task_mgmt_cmd: type of TMF to send
3395 *
3396 * This routine builds and sends a TMF (SCSI Task Mgmt Function) to
3397 * a remote port.
3398 *
3399 * Return Code:
3400 * 0x2003 - Error
3401 * 0x2002 - Success.
3402 **/
3403static int
3404lpfc_send_taskmgmt(struct lpfc_vport *vport, struct lpfc_rport_data *rdata,
3405 unsigned tgt_id, unsigned int lun_id,
3406 uint8_t task_mgmt_cmd)
3407{
3408 struct lpfc_hba *phba = vport->phba;
3409 struct lpfc_scsi_buf *lpfc_cmd;
3410 struct lpfc_iocbq *iocbq;
3411 struct lpfc_iocbq *iocbqrsp;
James Smart5989b8d2010-10-22 11:06:56 -04003412 struct lpfc_nodelist *pnode = rdata->pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003413 int ret;
3414 int status;
3415
James Smart5989b8d2010-10-22 11:06:56 -04003416 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
James Smartbbb9d182009-06-10 17:23:16 -04003417 return FAILED;
3418
James Smart19ca7602010-11-20 23:11:55 -05003419 lpfc_cmd = lpfc_get_scsi_buf(phba, rdata->pnode);
James Smartbbb9d182009-06-10 17:23:16 -04003420 if (lpfc_cmd == NULL)
3421 return FAILED;
3422 lpfc_cmd->timeout = 60;
3423 lpfc_cmd->rdata = rdata;
3424
3425 status = lpfc_scsi_prep_task_mgmt_cmd(vport, lpfc_cmd, lun_id,
3426 task_mgmt_cmd);
3427 if (!status) {
3428 lpfc_release_scsi_buf(phba, lpfc_cmd);
3429 return FAILED;
3430 }
3431
3432 iocbq = &lpfc_cmd->cur_iocbq;
3433 iocbqrsp = lpfc_sli_get_iocbq(phba);
3434 if (iocbqrsp == NULL) {
3435 lpfc_release_scsi_buf(phba, lpfc_cmd);
3436 return FAILED;
3437 }
3438
3439 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3440 "0702 Issue %s to TGT %d LUN %d "
James Smart6d368e52011-05-24 11:44:12 -04003441 "rpi x%x nlp_flag x%x Data: x%x x%x\n",
James Smartbbb9d182009-06-10 17:23:16 -04003442 lpfc_taskmgmt_name(task_mgmt_cmd), tgt_id, lun_id,
James Smart6d368e52011-05-24 11:44:12 -04003443 pnode->nlp_rpi, pnode->nlp_flag, iocbq->sli4_xritag,
3444 iocbq->iocb_flag);
James Smartbbb9d182009-06-10 17:23:16 -04003445
3446 status = lpfc_sli_issue_iocb_wait(phba, LPFC_FCP_RING,
3447 iocbq, iocbqrsp, lpfc_cmd->timeout);
3448 if (status != IOCB_SUCCESS) {
3449 if (status == IOCB_TIMEDOUT) {
3450 iocbq->iocb_cmpl = lpfc_tskmgmt_def_cmpl;
3451 ret = TIMEOUT_ERROR;
3452 } else
3453 ret = FAILED;
3454 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
3455 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
James Smart6d368e52011-05-24 11:44:12 -04003456 "0727 TMF %s to TGT %d LUN %d failed (%d, %d) "
3457 "iocb_flag x%x\n",
James Smartbbb9d182009-06-10 17:23:16 -04003458 lpfc_taskmgmt_name(task_mgmt_cmd),
3459 tgt_id, lun_id, iocbqrsp->iocb.ulpStatus,
James Smart6d368e52011-05-24 11:44:12 -04003460 iocbqrsp->iocb.un.ulpWord[4],
3461 iocbq->iocb_flag);
James Smart2a9bf3d2010-06-07 15:24:45 -04003462 } else if (status == IOCB_BUSY)
3463 ret = FAILED;
3464 else
James Smartbbb9d182009-06-10 17:23:16 -04003465 ret = SUCCESS;
3466
3467 lpfc_sli_release_iocbq(phba, iocbqrsp);
3468
3469 if (ret != TIMEOUT_ERROR)
3470 lpfc_release_scsi_buf(phba, lpfc_cmd);
3471
3472 return ret;
3473}
3474
3475/**
3476 * lpfc_chk_tgt_mapped -
3477 * @vport: The virtual port to check on
3478 * @cmnd: Pointer to scsi_cmnd data structure.
3479 *
3480 * This routine delays until the scsi target (aka rport) for the
3481 * command exists (is present and logged in) or we declare it non-existent.
3482 *
3483 * Return code :
3484 * 0x2003 - Error
3485 * 0x2002 - Success
3486 **/
3487static int
3488lpfc_chk_tgt_mapped(struct lpfc_vport *vport, struct scsi_cmnd *cmnd)
3489{
3490 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003491 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003492 unsigned long later;
3493
James Smart1c6f4ef52009-11-18 15:40:49 -05003494 if (!rdata) {
3495 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3496 "0797 Tgt Map rport failure: rdata x%p\n", rdata);
3497 return FAILED;
3498 }
3499 pnode = rdata->pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003500 /*
3501 * If target is not in a MAPPED state, delay until
3502 * target is rediscovered or devloss timeout expires.
3503 */
3504 later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
3505 while (time_after(later, jiffies)) {
3506 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
3507 return FAILED;
3508 if (pnode->nlp_state == NLP_STE_MAPPED_NODE)
3509 return SUCCESS;
3510 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
3511 rdata = cmnd->device->hostdata;
3512 if (!rdata)
3513 return FAILED;
3514 pnode = rdata->pnode;
3515 }
3516 if (!pnode || !NLP_CHK_NODE_ACT(pnode) ||
3517 (pnode->nlp_state != NLP_STE_MAPPED_NODE))
3518 return FAILED;
3519 return SUCCESS;
3520}
3521
3522/**
3523 * lpfc_reset_flush_io_context -
3524 * @vport: The virtual port (scsi_host) for the flush context
3525 * @tgt_id: If aborting by Target contect - specifies the target id
3526 * @lun_id: If aborting by Lun context - specifies the lun id
3527 * @context: specifies the context level to flush at.
3528 *
3529 * After a reset condition via TMF, we need to flush orphaned i/o
3530 * contexts from the adapter. This routine aborts any contexts
3531 * outstanding, then waits for their completions. The wait is
3532 * bounded by devloss_tmo though.
3533 *
3534 * Return code :
3535 * 0x2003 - Error
3536 * 0x2002 - Success
3537 **/
3538static int
3539lpfc_reset_flush_io_context(struct lpfc_vport *vport, uint16_t tgt_id,
3540 uint64_t lun_id, lpfc_ctx_cmd context)
3541{
3542 struct lpfc_hba *phba = vport->phba;
3543 unsigned long later;
3544 int cnt;
3545
3546 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
3547 if (cnt)
3548 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
3549 tgt_id, lun_id, context);
3550 later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
3551 while (time_after(later, jiffies) && cnt) {
3552 schedule_timeout_uninterruptible(msecs_to_jiffies(20));
3553 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
3554 }
3555 if (cnt) {
3556 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3557 "0724 I/O flush failure for context %s : cnt x%x\n",
3558 ((context == LPFC_CTX_LUN) ? "LUN" :
3559 ((context == LPFC_CTX_TGT) ? "TGT" :
3560 ((context == LPFC_CTX_HOST) ? "HOST" : "Unknown"))),
3561 cnt);
3562 return FAILED;
3563 }
3564 return SUCCESS;
3565}
3566
James Smart9bad7672008-12-04 22:39:02 -05003567/**
James Smart3621a712009-04-06 18:47:14 -04003568 * lpfc_device_reset_handler - scsi_host_template eh_device_reset entry point
James Smart9bad7672008-12-04 22:39:02 -05003569 * @cmnd: Pointer to scsi_cmnd data structure.
3570 *
James Smartbbb9d182009-06-10 17:23:16 -04003571 * This routine does a device reset by sending a LUN_RESET task management
James Smart9bad7672008-12-04 22:39:02 -05003572 * command.
3573 *
3574 * Return code :
3575 * 0x2003 - Error
James Smart3621a712009-04-06 18:47:14 -04003576 * 0x2002 - Success
James Smart9bad7672008-12-04 22:39:02 -05003577 **/
dea31012005-04-17 16:05:31 -05003578static int
James Smart7054a602007-04-25 09:52:34 -04003579lpfc_device_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05003580{
James Smart2e0fef82007-06-17 19:56:36 -05003581 struct Scsi_Host *shost = cmnd->device->host;
3582 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
dea31012005-04-17 16:05:31 -05003583 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003584 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003585 unsigned tgt_id = cmnd->device->id;
3586 unsigned int lun_id = cmnd->device->lun;
James Smartea2151b2008-09-07 11:52:10 -04003587 struct lpfc_scsi_event_header scsi_event;
James Smartbbb9d182009-06-10 17:23:16 -04003588 int status;
dea31012005-04-17 16:05:31 -05003589
James Smart1c6f4ef52009-11-18 15:40:49 -05003590 if (!rdata) {
3591 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3592 "0798 Device Reset rport failure: rdata x%p\n", rdata);
3593 return FAILED;
3594 }
3595 pnode = rdata->pnode;
James Smart589a52d2010-07-14 15:30:54 -04003596 status = fc_block_scsi_eh(cmnd);
3597 if (status)
3598 return status;
James Smartbbb9d182009-06-10 17:23:16 -04003599
3600 status = lpfc_chk_tgt_mapped(vport, cmnd);
3601 if (status == FAILED) {
3602 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3603 "0721 Device Reset rport failure: rdata x%p\n", rdata);
3604 return FAILED;
3605 }
3606
3607 scsi_event.event_type = FC_REG_SCSI_EVENT;
3608 scsi_event.subcategory = LPFC_EVENT_LUNRESET;
3609 scsi_event.lun = lun_id;
3610 memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
3611 memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
3612
3613 fc_host_post_vendor_event(shost, fc_get_event_number(),
3614 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
3615
3616 status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
3617 FCP_LUN_RESET);
3618
3619 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3620 "0713 SCSI layer issued Device Reset (%d, %d) "
3621 "return x%x\n", tgt_id, lun_id, status);
3622
dea31012005-04-17 16:05:31 -05003623 /*
James Smartbbb9d182009-06-10 17:23:16 -04003624 * We have to clean up i/o as : they may be orphaned by the TMF;
3625 * or if the TMF failed, they may be in an indeterminate state.
3626 * So, continue on.
3627 * We will report success if all the i/o aborts successfully.
dea31012005-04-17 16:05:31 -05003628 */
James Smartbbb9d182009-06-10 17:23:16 -04003629 status = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
3630 LPFC_CTX_LUN);
3631 return status;
3632}
3633
3634/**
3635 * lpfc_target_reset_handler - scsi_host_template eh_target_reset entry point
3636 * @cmnd: Pointer to scsi_cmnd data structure.
3637 *
3638 * This routine does a target reset by sending a TARGET_RESET task management
3639 * command.
3640 *
3641 * Return code :
3642 * 0x2003 - Error
3643 * 0x2002 - Success
3644 **/
3645static int
3646lpfc_target_reset_handler(struct scsi_cmnd *cmnd)
3647{
3648 struct Scsi_Host *shost = cmnd->device->host;
3649 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3650 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003651 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003652 unsigned tgt_id = cmnd->device->id;
3653 unsigned int lun_id = cmnd->device->lun;
3654 struct lpfc_scsi_event_header scsi_event;
3655 int status;
3656
James Smart1c6f4ef52009-11-18 15:40:49 -05003657 if (!rdata) {
3658 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3659 "0799 Target Reset rport failure: rdata x%p\n", rdata);
3660 return FAILED;
3661 }
3662 pnode = rdata->pnode;
James Smart589a52d2010-07-14 15:30:54 -04003663 status = fc_block_scsi_eh(cmnd);
3664 if (status)
3665 return status;
James Smartbbb9d182009-06-10 17:23:16 -04003666
3667 status = lpfc_chk_tgt_mapped(vport, cmnd);
3668 if (status == FAILED) {
3669 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3670 "0722 Target Reset rport failure: rdata x%p\n", rdata);
3671 return FAILED;
dea31012005-04-17 16:05:31 -05003672 }
James Smartea2151b2008-09-07 11:52:10 -04003673
3674 scsi_event.event_type = FC_REG_SCSI_EVENT;
3675 scsi_event.subcategory = LPFC_EVENT_TGTRESET;
3676 scsi_event.lun = 0;
3677 memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
3678 memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
3679
James Smartbbb9d182009-06-10 17:23:16 -04003680 fc_host_post_vendor_event(shost, fc_get_event_number(),
3681 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04003682
James Smartbbb9d182009-06-10 17:23:16 -04003683 status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
3684 FCP_TARGET_RESET);
dea31012005-04-17 16:05:31 -05003685
James Smarte8b62012007-08-02 11:10:09 -04003686 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
James Smartbbb9d182009-06-10 17:23:16 -04003687 "0723 SCSI layer issued Target Reset (%d, %d) "
3688 "return x%x\n", tgt_id, lun_id, status);
3689
3690 /*
3691 * We have to clean up i/o as : they may be orphaned by the TMF;
3692 * or if the TMF failed, they may be in an indeterminate state.
3693 * So, continue on.
3694 * We will report success if all the i/o aborts successfully.
3695 */
3696 status = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
3697 LPFC_CTX_TGT);
3698 return status;
dea31012005-04-17 16:05:31 -05003699}
3700
James Smart9bad7672008-12-04 22:39:02 -05003701/**
James Smart3621a712009-04-06 18:47:14 -04003702 * lpfc_bus_reset_handler - scsi_host_template eh_bus_reset_handler entry point
James Smart9bad7672008-12-04 22:39:02 -05003703 * @cmnd: Pointer to scsi_cmnd data structure.
3704 *
James Smartbbb9d182009-06-10 17:23:16 -04003705 * This routine does target reset to all targets on @cmnd->device->host.
3706 * This emulates Parallel SCSI Bus Reset Semantics.
James Smart9bad7672008-12-04 22:39:02 -05003707 *
James Smartbbb9d182009-06-10 17:23:16 -04003708 * Return code :
3709 * 0x2003 - Error
3710 * 0x2002 - Success
James Smart9bad7672008-12-04 22:39:02 -05003711 **/
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04003712static int
James Smart7054a602007-04-25 09:52:34 -04003713lpfc_bus_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05003714{
James Smart2e0fef82007-06-17 19:56:36 -05003715 struct Scsi_Host *shost = cmnd->device->host;
3716 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
dea31012005-04-17 16:05:31 -05003717 struct lpfc_nodelist *ndlp = NULL;
James Smartea2151b2008-09-07 11:52:10 -04003718 struct lpfc_scsi_event_header scsi_event;
James Smartbbb9d182009-06-10 17:23:16 -04003719 int match;
3720 int ret = SUCCESS, status, i;
James Smartea2151b2008-09-07 11:52:10 -04003721
3722 scsi_event.event_type = FC_REG_SCSI_EVENT;
3723 scsi_event.subcategory = LPFC_EVENT_BUSRESET;
3724 scsi_event.lun = 0;
3725 memcpy(scsi_event.wwpn, &vport->fc_portname, sizeof(struct lpfc_name));
3726 memcpy(scsi_event.wwnn, &vport->fc_nodename, sizeof(struct lpfc_name));
3727
James Smartbbb9d182009-06-10 17:23:16 -04003728 fc_host_post_vendor_event(shost, fc_get_event_number(),
3729 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
dea31012005-04-17 16:05:31 -05003730
James Smart589a52d2010-07-14 15:30:54 -04003731 ret = fc_block_scsi_eh(cmnd);
3732 if (ret)
3733 return ret;
James Smartbbb9d182009-06-10 17:23:16 -04003734
dea31012005-04-17 16:05:31 -05003735 /*
3736 * Since the driver manages a single bus device, reset all
3737 * targets known to the driver. Should any target reset
3738 * fail, this routine returns failure to the midlayer.
3739 */
James Smarte17da182006-07-06 15:49:25 -04003740 for (i = 0; i < LPFC_MAX_TARGET; i++) {
James Smart685f0bf2007-04-25 09:53:08 -04003741 /* Search for mapped node by target ID */
dea31012005-04-17 16:05:31 -05003742 match = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003743 spin_lock_irq(shost->host_lock);
3744 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05003745 if (!NLP_CHK_NODE_ACT(ndlp))
3746 continue;
James Smart685f0bf2007-04-25 09:53:08 -04003747 if (ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
James Smart915caaa2008-06-14 22:52:38 -04003748 ndlp->nlp_sid == i &&
James Smart685f0bf2007-04-25 09:53:08 -04003749 ndlp->rport) {
dea31012005-04-17 16:05:31 -05003750 match = 1;
3751 break;
3752 }
3753 }
James Smart2e0fef82007-06-17 19:56:36 -05003754 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003755 if (!match)
3756 continue;
James Smartbbb9d182009-06-10 17:23:16 -04003757
3758 status = lpfc_send_taskmgmt(vport, ndlp->rport->dd_data,
3759 i, 0, FCP_TARGET_RESET);
3760
3761 if (status != SUCCESS) {
James Smarte8b62012007-08-02 11:10:09 -04003762 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3763 "0700 Bus Reset on target %d failed\n",
3764 i);
James Smart915caaa2008-06-14 22:52:38 -04003765 ret = FAILED;
dea31012005-04-17 16:05:31 -05003766 }
3767 }
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003768 /*
James Smartbbb9d182009-06-10 17:23:16 -04003769 * We have to clean up i/o as : they may be orphaned by the TMFs
3770 * above; or if any of the TMFs failed, they may be in an
3771 * indeterminate state.
3772 * We will report success if all the i/o aborts successfully.
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003773 */
James Smartbbb9d182009-06-10 17:23:16 -04003774
3775 status = lpfc_reset_flush_io_context(vport, 0, 0, LPFC_CTX_HOST);
3776 if (status != SUCCESS)
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003777 ret = FAILED;
James Smartbbb9d182009-06-10 17:23:16 -04003778
James Smarte8b62012007-08-02 11:10:09 -04003779 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3780 "0714 SCSI layer issued Bus Reset Data: x%x\n", ret);
dea31012005-04-17 16:05:31 -05003781 return ret;
3782}
3783
James Smart9bad7672008-12-04 22:39:02 -05003784/**
James Smart3621a712009-04-06 18:47:14 -04003785 * lpfc_slave_alloc - scsi_host_template slave_alloc entry point
James Smart9bad7672008-12-04 22:39:02 -05003786 * @sdev: Pointer to scsi_device.
3787 *
3788 * This routine populates the cmds_per_lun count + 2 scsi_bufs into this host's
3789 * globally available list of scsi buffers. This routine also makes sure scsi
3790 * buffer is not allocated more than HBA limit conveyed to midlayer. This list
3791 * of scsi buffer exists for the lifetime of the driver.
3792 *
3793 * Return codes:
3794 * non-0 - Error
3795 * 0 - Success
3796 **/
dea31012005-04-17 16:05:31 -05003797static int
dea31012005-04-17 16:05:31 -05003798lpfc_slave_alloc(struct scsi_device *sdev)
3799{
James Smart2e0fef82007-06-17 19:56:36 -05003800 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
3801 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003802 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
James Smart3772a992009-05-22 14:50:54 -04003803 uint32_t total = 0;
dea31012005-04-17 16:05:31 -05003804 uint32_t num_to_alloc = 0;
James Smart3772a992009-05-22 14:50:54 -04003805 int num_allocated = 0;
James Smartd7c47992010-06-08 18:31:54 -04003806 uint32_t sdev_cnt;
dea31012005-04-17 16:05:31 -05003807
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003808 if (!rport || fc_remote_port_chkready(rport))
dea31012005-04-17 16:05:31 -05003809 return -ENXIO;
3810
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003811 sdev->hostdata = rport->dd_data;
James Smartd7c47992010-06-08 18:31:54 -04003812 sdev_cnt = atomic_inc_return(&phba->sdev_cnt);
dea31012005-04-17 16:05:31 -05003813
3814 /*
3815 * Populate the cmds_per_lun count scsi_bufs into this host's globally
3816 * available list of scsi buffers. Don't allocate more than the
James.Smart@Emulex.Coma784efb2005-10-28 20:29:51 -04003817 * HBA limit conveyed to the midlayer via the host structure. The
3818 * formula accounts for the lun_queue_depth + error handlers + 1
3819 * extra. This list of scsi bufs exists for the lifetime of the driver.
dea31012005-04-17 16:05:31 -05003820 */
3821 total = phba->total_scsi_bufs;
James Smart3de2a652007-08-02 11:09:59 -04003822 num_to_alloc = vport->cfg_lun_queue_depth + 2;
James Smart92d7f7b2007-06-17 19:56:38 -05003823
James Smartd7c47992010-06-08 18:31:54 -04003824 /* If allocated buffers are enough do nothing */
3825 if ((sdev_cnt * (vport->cfg_lun_queue_depth + 2)) < total)
3826 return 0;
3827
James Smart92d7f7b2007-06-17 19:56:38 -05003828 /* Allow some exchanges to be available always to complete discovery */
3829 if (total >= phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04003830 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3831 "0704 At limitation of %d preallocated "
3832 "command buffers\n", total);
dea31012005-04-17 16:05:31 -05003833 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05003834 /* Allow some exchanges to be available always to complete discovery */
3835 } else if (total + num_to_alloc >
3836 phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04003837 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3838 "0705 Allocation request of %d "
3839 "command buffers will exceed max of %d. "
3840 "Reducing allocation request to %d.\n",
3841 num_to_alloc, phba->cfg_hba_queue_depth,
3842 (phba->cfg_hba_queue_depth - total));
dea31012005-04-17 16:05:31 -05003843 num_to_alloc = phba->cfg_hba_queue_depth - total;
3844 }
James Smart3772a992009-05-22 14:50:54 -04003845 num_allocated = lpfc_new_scsi_buf(vport, num_to_alloc);
3846 if (num_to_alloc != num_allocated) {
3847 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3848 "0708 Allocation request of %d "
3849 "command buffers did not succeed. "
3850 "Allocated %d buffers.\n",
3851 num_to_alloc, num_allocated);
dea31012005-04-17 16:05:31 -05003852 }
James Smart1c6f4ef52009-11-18 15:40:49 -05003853 if (num_allocated > 0)
3854 phba->total_scsi_bufs += num_allocated;
dea31012005-04-17 16:05:31 -05003855 return 0;
3856}
3857
James Smart9bad7672008-12-04 22:39:02 -05003858/**
James Smart3621a712009-04-06 18:47:14 -04003859 * lpfc_slave_configure - scsi_host_template slave_configure entry point
James Smart9bad7672008-12-04 22:39:02 -05003860 * @sdev: Pointer to scsi_device.
3861 *
3862 * This routine configures following items
3863 * - Tag command queuing support for @sdev if supported.
James Smart9bad7672008-12-04 22:39:02 -05003864 * - Enable SLI polling for fcp ring if ENABLE_FCP_RING_POLLING flag is set.
3865 *
3866 * Return codes:
3867 * 0 - Success
3868 **/
dea31012005-04-17 16:05:31 -05003869static int
3870lpfc_slave_configure(struct scsi_device *sdev)
3871{
James Smart2e0fef82007-06-17 19:56:36 -05003872 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
3873 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003874
3875 if (sdev->tagged_supported)
James Smart3de2a652007-08-02 11:09:59 -04003876 scsi_activate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05003877 else
James Smart3de2a652007-08-02 11:09:59 -04003878 scsi_deactivate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05003879
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003880 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04003881 lpfc_sli_handle_fast_ring_event(phba,
3882 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003883 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
3884 lpfc_poll_rearm_timer(phba);
3885 }
3886
dea31012005-04-17 16:05:31 -05003887 return 0;
3888}
3889
James Smart9bad7672008-12-04 22:39:02 -05003890/**
James Smart3621a712009-04-06 18:47:14 -04003891 * lpfc_slave_destroy - slave_destroy entry point of SHT data structure
James Smart9bad7672008-12-04 22:39:02 -05003892 * @sdev: Pointer to scsi_device.
3893 *
3894 * This routine sets @sdev hostatdata filed to null.
3895 **/
dea31012005-04-17 16:05:31 -05003896static void
3897lpfc_slave_destroy(struct scsi_device *sdev)
3898{
James Smartd7c47992010-06-08 18:31:54 -04003899 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
3900 struct lpfc_hba *phba = vport->phba;
3901 atomic_dec(&phba->sdev_cnt);
dea31012005-04-17 16:05:31 -05003902 sdev->hostdata = NULL;
3903 return;
3904}
3905
James Smart92d7f7b2007-06-17 19:56:38 -05003906
dea31012005-04-17 16:05:31 -05003907struct scsi_host_template lpfc_template = {
3908 .module = THIS_MODULE,
3909 .name = LPFC_DRIVER_NAME,
3910 .info = lpfc_info,
3911 .queuecommand = lpfc_queuecommand,
3912 .eh_abort_handler = lpfc_abort_handler,
James Smartbbb9d182009-06-10 17:23:16 -04003913 .eh_device_reset_handler = lpfc_device_reset_handler,
3914 .eh_target_reset_handler = lpfc_target_reset_handler,
James Smart7054a602007-04-25 09:52:34 -04003915 .eh_bus_reset_handler = lpfc_bus_reset_handler,
dea31012005-04-17 16:05:31 -05003916 .slave_alloc = lpfc_slave_alloc,
3917 .slave_configure = lpfc_slave_configure,
3918 .slave_destroy = lpfc_slave_destroy,
James Smart47a86172007-04-25 09:53:22 -04003919 .scan_finished = lpfc_scan_finished,
dea31012005-04-17 16:05:31 -05003920 .this_id = -1,
James Smart83108bd2008-01-11 01:53:09 -05003921 .sg_tablesize = LPFC_DEFAULT_SG_SEG_CNT,
dea31012005-04-17 16:05:31 -05003922 .cmd_per_lun = LPFC_CMD_PER_LUN,
3923 .use_clustering = ENABLE_CLUSTERING,
James Smart2e0fef82007-06-17 19:56:36 -05003924 .shost_attrs = lpfc_hba_attrs,
James.Smart@Emulex.Com564b2962005-06-25 10:34:17 -04003925 .max_sectors = 0xFFFF,
James Smartf1c3b0f2009-07-19 10:01:32 -04003926 .vendor_id = LPFC_NL_VENDOR_ID,
James Smart5ffc2662009-11-18 15:39:44 -05003927 .change_queue_depth = lpfc_change_queue_depth,
dea31012005-04-17 16:05:31 -05003928};
James Smart3de2a652007-08-02 11:09:59 -04003929
3930struct scsi_host_template lpfc_vport_template = {
3931 .module = THIS_MODULE,
3932 .name = LPFC_DRIVER_NAME,
3933 .info = lpfc_info,
3934 .queuecommand = lpfc_queuecommand,
3935 .eh_abort_handler = lpfc_abort_handler,
James Smartbbb9d182009-06-10 17:23:16 -04003936 .eh_device_reset_handler = lpfc_device_reset_handler,
3937 .eh_target_reset_handler = lpfc_target_reset_handler,
James Smart3de2a652007-08-02 11:09:59 -04003938 .eh_bus_reset_handler = lpfc_bus_reset_handler,
3939 .slave_alloc = lpfc_slave_alloc,
3940 .slave_configure = lpfc_slave_configure,
3941 .slave_destroy = lpfc_slave_destroy,
3942 .scan_finished = lpfc_scan_finished,
3943 .this_id = -1,
James Smart83108bd2008-01-11 01:53:09 -05003944 .sg_tablesize = LPFC_DEFAULT_SG_SEG_CNT,
James Smart3de2a652007-08-02 11:09:59 -04003945 .cmd_per_lun = LPFC_CMD_PER_LUN,
3946 .use_clustering = ENABLE_CLUSTERING,
3947 .shost_attrs = lpfc_vport_attrs,
3948 .max_sectors = 0xFFFF,
James Smart5ffc2662009-11-18 15:39:44 -05003949 .change_queue_depth = lpfc_change_queue_depth,
James Smart3de2a652007-08-02 11:09:59 -04003950};