blob: 7f21b47db791bcd64ce068668cd1878e88fcfda7 [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smartd8e93df2009-05-22 14:53:05 -04004 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
dea31012005-04-17 16:05:31 -050021#include <linux/pci.h>
22#include <linux/interrupt.h>
James Smarta90f5682006-08-17 11:58:04 -040023#include <linux/delay.h>
James Smarte2a0a9d2008-12-04 22:40:02 -050024#include <asm/unaligned.h>
dea31012005-04-17 16:05:31 -050025
26#include <scsi/scsi.h>
27#include <scsi/scsi_device.h>
James Smarte2a0a9d2008-12-04 22:40:02 -050028#include <scsi/scsi_eh.h>
dea31012005-04-17 16:05:31 -050029#include <scsi/scsi_host.h>
30#include <scsi/scsi_tcq.h>
31#include <scsi/scsi_transport_fc.h>
32
33#include "lpfc_version.h"
James Smartda0436e2009-05-22 14:51:39 -040034#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050035#include "lpfc_hw.h"
36#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040037#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040038#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050039#include "lpfc_disc.h"
40#include "lpfc_scsi.h"
41#include "lpfc.h"
42#include "lpfc_logmsg.h"
43#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050044#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050045
46#define LPFC_RESET_WAIT 2
47#define LPFC_ABORT_WAIT 2
48
James Smarte2a0a9d2008-12-04 22:40:02 -050049int _dump_buf_done;
50
51static char *dif_op_str[] = {
52 "SCSI_PROT_NORMAL",
53 "SCSI_PROT_READ_INSERT",
54 "SCSI_PROT_WRITE_STRIP",
55 "SCSI_PROT_READ_STRIP",
56 "SCSI_PROT_WRITE_INSERT",
57 "SCSI_PROT_READ_PASS",
58 "SCSI_PROT_WRITE_PASS",
James Smarte2a0a9d2008-12-04 22:40:02 -050059};
James Smartda0436e2009-05-22 14:51:39 -040060static void
61lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb);
James Smart1c6f4ef52009-11-18 15:40:49 -050062static void
63lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb);
James Smarte2a0a9d2008-12-04 22:40:02 -050064
65static void
James Smart6a9c52c2009-10-02 15:16:51 -040066lpfc_debug_save_data(struct lpfc_hba *phba, struct scsi_cmnd *cmnd)
James Smarte2a0a9d2008-12-04 22:40:02 -050067{
68 void *src, *dst;
69 struct scatterlist *sgde = scsi_sglist(cmnd);
70
71 if (!_dump_buf_data) {
James Smart6a9c52c2009-10-02 15:16:51 -040072 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
73 "9050 BLKGRD: ERROR %s _dump_buf_data is NULL\n",
James Smarte2a0a9d2008-12-04 22:40:02 -050074 __func__);
75 return;
76 }
77
78
79 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -040080 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
81 "9051 BLKGRD: ERROR: data scatterlist is null\n");
James Smarte2a0a9d2008-12-04 22:40:02 -050082 return;
83 }
84
85 dst = (void *) _dump_buf_data;
86 while (sgde) {
87 src = sg_virt(sgde);
88 memcpy(dst, src, sgde->length);
89 dst += sgde->length;
90 sgde = sg_next(sgde);
91 }
92}
93
94static void
James Smart6a9c52c2009-10-02 15:16:51 -040095lpfc_debug_save_dif(struct lpfc_hba *phba, struct scsi_cmnd *cmnd)
James Smarte2a0a9d2008-12-04 22:40:02 -050096{
97 void *src, *dst;
98 struct scatterlist *sgde = scsi_prot_sglist(cmnd);
99
100 if (!_dump_buf_dif) {
James Smart6a9c52c2009-10-02 15:16:51 -0400101 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
102 "9052 BLKGRD: ERROR %s _dump_buf_data is NULL\n",
James Smarte2a0a9d2008-12-04 22:40:02 -0500103 __func__);
104 return;
105 }
106
107 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -0400108 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
109 "9053 BLKGRD: ERROR: prot scatterlist is null\n");
James Smarte2a0a9d2008-12-04 22:40:02 -0500110 return;
111 }
112
113 dst = _dump_buf_dif;
114 while (sgde) {
115 src = sg_virt(sgde);
116 memcpy(dst, src, sgde->length);
117 dst += sgde->length;
118 sgde = sg_next(sgde);
119 }
120}
121
James Smartea2151b2008-09-07 11:52:10 -0400122/**
James Smartf1126682009-06-10 17:22:44 -0400123 * lpfc_sli4_set_rsp_sgl_last - Set the last bit in the response sge.
124 * @phba: Pointer to HBA object.
125 * @lpfc_cmd: lpfc scsi command object pointer.
126 *
127 * This function is called from the lpfc_prep_task_mgmt_cmd function to
128 * set the last bit in the response sge entry.
129 **/
130static void
131lpfc_sli4_set_rsp_sgl_last(struct lpfc_hba *phba,
132 struct lpfc_scsi_buf *lpfc_cmd)
133{
134 struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
135 if (sgl) {
136 sgl += 1;
137 sgl->word2 = le32_to_cpu(sgl->word2);
138 bf_set(lpfc_sli4_sge_last, sgl, 1);
139 sgl->word2 = cpu_to_le32(sgl->word2);
140 }
141}
142
143/**
James Smart3621a712009-04-06 18:47:14 -0400144 * lpfc_update_stats - Update statistical data for the command completion
James Smartea2151b2008-09-07 11:52:10 -0400145 * @phba: Pointer to HBA object.
146 * @lpfc_cmd: lpfc scsi command object pointer.
147 *
148 * This function is called when there is a command completion and this
149 * function updates the statistical data for the command completion.
150 **/
151static void
152lpfc_update_stats(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
153{
154 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
155 struct lpfc_nodelist *pnode = rdata->pnode;
156 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
157 unsigned long flags;
158 struct Scsi_Host *shost = cmd->device->host;
159 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
160 unsigned long latency;
161 int i;
162
163 if (cmd->result)
164 return;
165
James Smart9f1e1b52008-12-04 22:39:40 -0500166 latency = jiffies_to_msecs((long)jiffies - (long)lpfc_cmd->start_time);
167
James Smartea2151b2008-09-07 11:52:10 -0400168 spin_lock_irqsave(shost->host_lock, flags);
169 if (!vport->stat_data_enabled ||
170 vport->stat_data_blocked ||
171 !pnode->lat_data ||
172 (phba->bucket_type == LPFC_NO_BUCKET)) {
173 spin_unlock_irqrestore(shost->host_lock, flags);
174 return;
175 }
James Smartea2151b2008-09-07 11:52:10 -0400176
177 if (phba->bucket_type == LPFC_LINEAR_BUCKET) {
178 i = (latency + phba->bucket_step - 1 - phba->bucket_base)/
179 phba->bucket_step;
James Smart9f1e1b52008-12-04 22:39:40 -0500180 /* check array subscript bounds */
181 if (i < 0)
182 i = 0;
183 else if (i >= LPFC_MAX_BUCKET_COUNT)
184 i = LPFC_MAX_BUCKET_COUNT - 1;
James Smartea2151b2008-09-07 11:52:10 -0400185 } else {
186 for (i = 0; i < LPFC_MAX_BUCKET_COUNT-1; i++)
187 if (latency <= (phba->bucket_base +
188 ((1<<i)*phba->bucket_step)))
189 break;
190 }
191
192 pnode->lat_data[i].cmd_count++;
193 spin_unlock_irqrestore(shost->host_lock, flags);
194}
195
James Smartea2151b2008-09-07 11:52:10 -0400196/**
James Smart3621a712009-04-06 18:47:14 -0400197 * lpfc_send_sdev_queuedepth_change_event - Posts a queuedepth change event
James Smartea2151b2008-09-07 11:52:10 -0400198 * @phba: Pointer to HBA context object.
199 * @vport: Pointer to vport object.
200 * @ndlp: Pointer to FC node associated with the target.
201 * @lun: Lun number of the scsi device.
202 * @old_val: Old value of the queue depth.
203 * @new_val: New value of the queue depth.
204 *
205 * This function sends an event to the mgmt application indicating
206 * there is a change in the scsi device queue depth.
207 **/
208static void
209lpfc_send_sdev_queuedepth_change_event(struct lpfc_hba *phba,
210 struct lpfc_vport *vport,
211 struct lpfc_nodelist *ndlp,
212 uint32_t lun,
213 uint32_t old_val,
214 uint32_t new_val)
215{
216 struct lpfc_fast_path_event *fast_path_evt;
217 unsigned long flags;
218
219 fast_path_evt = lpfc_alloc_fast_evt(phba);
220 if (!fast_path_evt)
221 return;
222
223 fast_path_evt->un.queue_depth_evt.scsi_event.event_type =
224 FC_REG_SCSI_EVENT;
225 fast_path_evt->un.queue_depth_evt.scsi_event.subcategory =
226 LPFC_EVENT_VARQUEDEPTH;
227
228 /* Report all luns with change in queue depth */
229 fast_path_evt->un.queue_depth_evt.scsi_event.lun = lun;
230 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
231 memcpy(&fast_path_evt->un.queue_depth_evt.scsi_event.wwpn,
232 &ndlp->nlp_portname, sizeof(struct lpfc_name));
233 memcpy(&fast_path_evt->un.queue_depth_evt.scsi_event.wwnn,
234 &ndlp->nlp_nodename, sizeof(struct lpfc_name));
235 }
236
237 fast_path_evt->un.queue_depth_evt.oldval = old_val;
238 fast_path_evt->un.queue_depth_evt.newval = new_val;
239 fast_path_evt->vport = vport;
240
241 fast_path_evt->work_evt.evt = LPFC_EVT_FASTPATH_MGMT_EVT;
242 spin_lock_irqsave(&phba->hbalock, flags);
243 list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
244 spin_unlock_irqrestore(&phba->hbalock, flags);
245 lpfc_worker_wake_up(phba);
246
247 return;
248}
249
James Smart9bad7672008-12-04 22:39:02 -0500250/**
James Smart5ffc2662009-11-18 15:39:44 -0500251 * lpfc_change_queue_depth - Alter scsi device queue depth
252 * @sdev: Pointer the scsi device on which to change the queue depth.
253 * @qdepth: New queue depth to set the sdev to.
254 * @reason: The reason for the queue depth change.
255 *
256 * This function is called by the midlayer and the LLD to alter the queue
257 * depth for a scsi device. This function sets the queue depth to the new
258 * value and sends an event out to log the queue depth change.
259 **/
260int
261lpfc_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
262{
263 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
264 struct lpfc_hba *phba = vport->phba;
265 struct lpfc_rport_data *rdata;
266 unsigned long new_queue_depth, old_queue_depth;
267
268 old_queue_depth = sdev->queue_depth;
269 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
270 new_queue_depth = sdev->queue_depth;
271 rdata = sdev->hostdata;
272 if (rdata)
273 lpfc_send_sdev_queuedepth_change_event(phba, vport,
274 rdata->pnode, sdev->lun,
275 old_queue_depth,
276 new_queue_depth);
277 return sdev->queue_depth;
278}
279
280/**
James Smart3621a712009-04-06 18:47:14 -0400281 * lpfc_rampdown_queue_depth - Post RAMP_DOWN_QUEUE event to worker thread
James Smart9bad7672008-12-04 22:39:02 -0500282 * @phba: The Hba for which this call is being executed.
283 *
284 * This routine is called when there is resource error in driver or firmware.
285 * This routine posts WORKER_RAMP_DOWN_QUEUE event for @phba. This routine
286 * posts at most 1 event each second. This routine wakes up worker thread of
287 * @phba to process WORKER_RAM_DOWN_EVENT event.
288 *
289 * This routine should be called with no lock held.
290 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500291void
James Smarteaf15d52008-12-04 22:39:29 -0500292lpfc_rampdown_queue_depth(struct lpfc_hba *phba)
James Smart92d7f7b2007-06-17 19:56:38 -0500293{
294 unsigned long flags;
James Smart5e9d9b82008-06-14 22:52:53 -0400295 uint32_t evt_posted;
James Smart92d7f7b2007-06-17 19:56:38 -0500296
297 spin_lock_irqsave(&phba->hbalock, flags);
298 atomic_inc(&phba->num_rsrc_err);
299 phba->last_rsrc_error_time = jiffies;
300
301 if ((phba->last_ramp_down_time + QUEUE_RAMP_DOWN_INTERVAL) > jiffies) {
302 spin_unlock_irqrestore(&phba->hbalock, flags);
303 return;
304 }
305
306 phba->last_ramp_down_time = jiffies;
307
308 spin_unlock_irqrestore(&phba->hbalock, flags);
309
310 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart5e9d9b82008-06-14 22:52:53 -0400311 evt_posted = phba->pport->work_port_events & WORKER_RAMP_DOWN_QUEUE;
312 if (!evt_posted)
James Smart92d7f7b2007-06-17 19:56:38 -0500313 phba->pport->work_port_events |= WORKER_RAMP_DOWN_QUEUE;
James Smart92d7f7b2007-06-17 19:56:38 -0500314 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
315
James Smart5e9d9b82008-06-14 22:52:53 -0400316 if (!evt_posted)
317 lpfc_worker_wake_up(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500318 return;
319}
320
James Smart9bad7672008-12-04 22:39:02 -0500321/**
James Smart3621a712009-04-06 18:47:14 -0400322 * lpfc_rampup_queue_depth - Post RAMP_UP_QUEUE event for worker thread
James Smart9bad7672008-12-04 22:39:02 -0500323 * @phba: The Hba for which this call is being executed.
324 *
325 * This routine post WORKER_RAMP_UP_QUEUE event for @phba vport. This routine
326 * post at most 1 event every 5 minute after last_ramp_up_time or
327 * last_rsrc_error_time. This routine wakes up worker thread of @phba
328 * to process WORKER_RAM_DOWN_EVENT event.
329 *
330 * This routine should be called with no lock held.
331 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500332static inline void
James Smart3de2a652007-08-02 11:09:59 -0400333lpfc_rampup_queue_depth(struct lpfc_vport *vport,
James Smarta257bf92009-04-06 18:48:10 -0400334 uint32_t queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -0500335{
336 unsigned long flags;
James Smart3de2a652007-08-02 11:09:59 -0400337 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -0400338 uint32_t evt_posted;
James Smart92d7f7b2007-06-17 19:56:38 -0500339 atomic_inc(&phba->num_cmd_success);
340
James Smarta257bf92009-04-06 18:48:10 -0400341 if (vport->cfg_lun_queue_depth <= queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -0500342 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500343 spin_lock_irqsave(&phba->hbalock, flags);
James Smart5ffc2662009-11-18 15:39:44 -0500344 if (time_before(jiffies,
345 phba->last_ramp_up_time + QUEUE_RAMP_UP_INTERVAL) ||
346 time_before(jiffies,
347 phba->last_rsrc_error_time + QUEUE_RAMP_UP_INTERVAL)) {
James Smart92d7f7b2007-06-17 19:56:38 -0500348 spin_unlock_irqrestore(&phba->hbalock, flags);
349 return;
350 }
James Smart92d7f7b2007-06-17 19:56:38 -0500351 phba->last_ramp_up_time = jiffies;
352 spin_unlock_irqrestore(&phba->hbalock, flags);
353
354 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart5e9d9b82008-06-14 22:52:53 -0400355 evt_posted = phba->pport->work_port_events & WORKER_RAMP_UP_QUEUE;
356 if (!evt_posted)
James Smart92d7f7b2007-06-17 19:56:38 -0500357 phba->pport->work_port_events |= WORKER_RAMP_UP_QUEUE;
James Smart92d7f7b2007-06-17 19:56:38 -0500358 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
359
James Smart5e9d9b82008-06-14 22:52:53 -0400360 if (!evt_posted)
361 lpfc_worker_wake_up(phba);
362 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500363}
364
James Smart9bad7672008-12-04 22:39:02 -0500365/**
James Smart3621a712009-04-06 18:47:14 -0400366 * lpfc_ramp_down_queue_handler - WORKER_RAMP_DOWN_QUEUE event handler
James Smart9bad7672008-12-04 22:39:02 -0500367 * @phba: The Hba for which this call is being executed.
368 *
369 * This routine is called to process WORKER_RAMP_DOWN_QUEUE event for worker
370 * thread.This routine reduces queue depth for all scsi device on each vport
371 * associated with @phba.
372 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500373void
374lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
375{
James Smart549e55c2007-08-02 11:09:51 -0400376 struct lpfc_vport **vports;
377 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500378 struct scsi_device *sdev;
James Smart5ffc2662009-11-18 15:39:44 -0500379 unsigned long new_queue_depth;
James Smart92d7f7b2007-06-17 19:56:38 -0500380 unsigned long num_rsrc_err, num_cmd_success;
James Smart549e55c2007-08-02 11:09:51 -0400381 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500382
383 num_rsrc_err = atomic_read(&phba->num_rsrc_err);
384 num_cmd_success = atomic_read(&phba->num_cmd_success);
385
James Smart549e55c2007-08-02 11:09:51 -0400386 vports = lpfc_create_vport_work_array(phba);
387 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400388 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400389 shost = lpfc_shost_from_vport(vports[i]);
390 shost_for_each_device(sdev, shost) {
James Smart92d7f7b2007-06-17 19:56:38 -0500391 new_queue_depth =
James Smart549e55c2007-08-02 11:09:51 -0400392 sdev->queue_depth * num_rsrc_err /
393 (num_rsrc_err + num_cmd_success);
394 if (!new_queue_depth)
395 new_queue_depth = sdev->queue_depth - 1;
396 else
397 new_queue_depth = sdev->queue_depth -
398 new_queue_depth;
James Smart5ffc2662009-11-18 15:39:44 -0500399 lpfc_change_queue_depth(sdev, new_queue_depth,
400 SCSI_QDEPTH_DEFAULT);
James Smart549e55c2007-08-02 11:09:51 -0400401 }
James Smart92d7f7b2007-06-17 19:56:38 -0500402 }
James Smart09372822008-01-11 01:52:54 -0500403 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500404 atomic_set(&phba->num_rsrc_err, 0);
405 atomic_set(&phba->num_cmd_success, 0);
406}
407
James Smart9bad7672008-12-04 22:39:02 -0500408/**
James Smart3621a712009-04-06 18:47:14 -0400409 * lpfc_ramp_up_queue_handler - WORKER_RAMP_UP_QUEUE event handler
James Smart9bad7672008-12-04 22:39:02 -0500410 * @phba: The Hba for which this call is being executed.
411 *
412 * This routine is called to process WORKER_RAMP_UP_QUEUE event for worker
413 * thread.This routine increases queue depth for all scsi device on each vport
414 * associated with @phba by 1. This routine also sets @phba num_rsrc_err and
415 * num_cmd_success to zero.
416 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500417void
418lpfc_ramp_up_queue_handler(struct lpfc_hba *phba)
419{
James Smart549e55c2007-08-02 11:09:51 -0400420 struct lpfc_vport **vports;
421 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500422 struct scsi_device *sdev;
James Smart549e55c2007-08-02 11:09:51 -0400423 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500424
James Smart549e55c2007-08-02 11:09:51 -0400425 vports = lpfc_create_vport_work_array(phba);
426 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400427 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400428 shost = lpfc_shost_from_vport(vports[i]);
429 shost_for_each_device(sdev, shost) {
James Smart97eab632008-04-07 10:16:05 -0400430 if (vports[i]->cfg_lun_queue_depth <=
431 sdev->queue_depth)
432 continue;
James Smart5ffc2662009-11-18 15:39:44 -0500433 lpfc_change_queue_depth(sdev,
434 sdev->queue_depth+1,
435 SCSI_QDEPTH_RAMP_UP);
James Smart549e55c2007-08-02 11:09:51 -0400436 }
James Smart92d7f7b2007-06-17 19:56:38 -0500437 }
James Smart09372822008-01-11 01:52:54 -0500438 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500439 atomic_set(&phba->num_rsrc_err, 0);
440 atomic_set(&phba->num_cmd_success, 0);
441}
442
James Smarta8e497d2008-08-24 21:50:11 -0400443/**
James Smart3621a712009-04-06 18:47:14 -0400444 * lpfc_scsi_dev_block - set all scsi hosts to block state
James Smarta8e497d2008-08-24 21:50:11 -0400445 * @phba: Pointer to HBA context object.
446 *
447 * This function walks vport list and set each SCSI host to block state
448 * by invoking fc_remote_port_delete() routine. This function is invoked
449 * with EEH when device's PCI slot has been permanently disabled.
450 **/
451void
452lpfc_scsi_dev_block(struct lpfc_hba *phba)
453{
454 struct lpfc_vport **vports;
455 struct Scsi_Host *shost;
456 struct scsi_device *sdev;
457 struct fc_rport *rport;
458 int i;
459
460 vports = lpfc_create_vport_work_array(phba);
461 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400462 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smarta8e497d2008-08-24 21:50:11 -0400463 shost = lpfc_shost_from_vport(vports[i]);
464 shost_for_each_device(sdev, shost) {
465 rport = starget_to_rport(scsi_target(sdev));
466 fc_remote_port_delete(rport);
467 }
468 }
469 lpfc_destroy_vport_work_array(phba, vports);
470}
471
James Smart9bad7672008-12-04 22:39:02 -0500472/**
James Smart3772a992009-05-22 14:50:54 -0400473 * lpfc_new_scsi_buf_s3 - Scsi buffer allocator for HBA with SLI3 IF spec
James Smart9bad7672008-12-04 22:39:02 -0500474 * @vport: The virtual port for which this call being executed.
James Smart3772a992009-05-22 14:50:54 -0400475 * @num_to_allocate: The requested number of buffers to allocate.
James Smart9bad7672008-12-04 22:39:02 -0500476 *
James Smart3772a992009-05-22 14:50:54 -0400477 * This routine allocates a scsi buffer for device with SLI-3 interface spec,
478 * the scsi buffer contains all the necessary information needed to initiate
479 * a SCSI I/O. The non-DMAable buffer region contains information to build
480 * the IOCB. The DMAable region contains memory for the FCP CMND, FCP RSP,
481 * and the initial BPL. In addition to allocating memory, the FCP CMND and
482 * FCP RSP BDEs are setup in the BPL and the BPL BDE is setup in the IOCB.
James Smart9bad7672008-12-04 22:39:02 -0500483 *
484 * Return codes:
James Smart3772a992009-05-22 14:50:54 -0400485 * int - number of scsi buffers that were allocated.
486 * 0 = failure, less than num_to_alloc is a partial failure.
James Smart9bad7672008-12-04 22:39:02 -0500487 **/
James Smart3772a992009-05-22 14:50:54 -0400488static int
489lpfc_new_scsi_buf_s3(struct lpfc_vport *vport, int num_to_alloc)
dea31012005-04-17 16:05:31 -0500490{
James Smart2e0fef82007-06-17 19:56:36 -0500491 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500492 struct lpfc_scsi_buf *psb;
493 struct ulp_bde64 *bpl;
494 IOCB_t *iocb;
James Smart34b02dc2008-08-24 21:49:55 -0400495 dma_addr_t pdma_phys_fcp_cmd;
496 dma_addr_t pdma_phys_fcp_rsp;
497 dma_addr_t pdma_phys_bpl;
James Bottomley604a3e32005-10-29 10:28:33 -0500498 uint16_t iotag;
James Smart3772a992009-05-22 14:50:54 -0400499 int bcnt;
dea31012005-04-17 16:05:31 -0500500
James Smart3772a992009-05-22 14:50:54 -0400501 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
502 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
503 if (!psb)
504 break;
dea31012005-04-17 16:05:31 -0500505
James Smart3772a992009-05-22 14:50:54 -0400506 /*
507 * Get memory from the pci pool to map the virt space to pci
508 * bus space for an I/O. The DMA buffer includes space for the
509 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
510 * necessary to support the sg_tablesize.
511 */
512 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
513 GFP_KERNEL, &psb->dma_handle);
514 if (!psb->data) {
515 kfree(psb);
516 break;
517 }
dea31012005-04-17 16:05:31 -0500518
James Smart3772a992009-05-22 14:50:54 -0400519 /* Initialize virtual ptrs to dma_buf region. */
520 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
dea31012005-04-17 16:05:31 -0500521
James Smart3772a992009-05-22 14:50:54 -0400522 /* Allocate iotag for psb->cur_iocbq. */
523 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
524 if (iotag == 0) {
525 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
526 psb->data, psb->dma_handle);
527 kfree(psb);
528 break;
529 }
530 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
James Bottomley604a3e32005-10-29 10:28:33 -0500531
James Smart3772a992009-05-22 14:50:54 -0400532 psb->fcp_cmnd = psb->data;
533 psb->fcp_rsp = psb->data + sizeof(struct fcp_cmnd);
534 psb->fcp_bpl = psb->data + sizeof(struct fcp_cmnd) +
James Smart34b02dc2008-08-24 21:49:55 -0400535 sizeof(struct fcp_rsp);
dea31012005-04-17 16:05:31 -0500536
James Smart3772a992009-05-22 14:50:54 -0400537 /* Initialize local short-hand pointers. */
538 bpl = psb->fcp_bpl;
539 pdma_phys_fcp_cmd = psb->dma_handle;
540 pdma_phys_fcp_rsp = psb->dma_handle + sizeof(struct fcp_cmnd);
541 pdma_phys_bpl = psb->dma_handle + sizeof(struct fcp_cmnd) +
542 sizeof(struct fcp_rsp);
dea31012005-04-17 16:05:31 -0500543
James Smart3772a992009-05-22 14:50:54 -0400544 /*
545 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
546 * are sg list bdes. Initialize the first two and leave the
547 * rest for queuecommand.
548 */
549 bpl[0].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_cmd));
550 bpl[0].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_cmd));
551 bpl[0].tus.f.bdeSize = sizeof(struct fcp_cmnd);
552 bpl[0].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
553 bpl[0].tus.w = le32_to_cpu(bpl[0].tus.w);
dea31012005-04-17 16:05:31 -0500554
James Smart3772a992009-05-22 14:50:54 -0400555 /* Setup the physical region for the FCP RSP */
556 bpl[1].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_rsp));
557 bpl[1].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_rsp));
558 bpl[1].tus.f.bdeSize = sizeof(struct fcp_rsp);
559 bpl[1].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
560 bpl[1].tus.w = le32_to_cpu(bpl[1].tus.w);
561
562 /*
563 * Since the IOCB for the FCP I/O is built into this
564 * lpfc_scsi_buf, initialize it with all known data now.
565 */
566 iocb = &psb->cur_iocbq.iocb;
567 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
568 if ((phba->sli_rev == 3) &&
569 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED)) {
570 /* fill in immediate fcp command BDE */
571 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_IMMED;
572 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
573 iocb->un.fcpi64.bdl.addrLow = offsetof(IOCB_t,
574 unsli3.fcp_ext.icd);
575 iocb->un.fcpi64.bdl.addrHigh = 0;
576 iocb->ulpBdeCount = 0;
577 iocb->ulpLe = 0;
578 /* fill in responce BDE */
579 iocb->unsli3.fcp_ext.rbde.tus.f.bdeFlags =
580 BUFF_TYPE_BDE_64;
581 iocb->unsli3.fcp_ext.rbde.tus.f.bdeSize =
582 sizeof(struct fcp_rsp);
583 iocb->unsli3.fcp_ext.rbde.addrLow =
584 putPaddrLow(pdma_phys_fcp_rsp);
585 iocb->unsli3.fcp_ext.rbde.addrHigh =
586 putPaddrHigh(pdma_phys_fcp_rsp);
587 } else {
588 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
589 iocb->un.fcpi64.bdl.bdeSize =
590 (2 * sizeof(struct ulp_bde64));
591 iocb->un.fcpi64.bdl.addrLow =
592 putPaddrLow(pdma_phys_bpl);
593 iocb->un.fcpi64.bdl.addrHigh =
594 putPaddrHigh(pdma_phys_bpl);
595 iocb->ulpBdeCount = 1;
596 iocb->ulpLe = 1;
597 }
598 iocb->ulpClass = CLASS3;
599 psb->status = IOSTAT_SUCCESS;
James Smartda0436e2009-05-22 14:51:39 -0400600 /* Put it back into the SCSI buffer list */
James Smart1c6f4ef52009-11-18 15:40:49 -0500601 lpfc_release_scsi_buf_s3(phba, psb);
James Smart3772a992009-05-22 14:50:54 -0400602
James Smart34b02dc2008-08-24 21:49:55 -0400603 }
dea31012005-04-17 16:05:31 -0500604
James Smart3772a992009-05-22 14:50:54 -0400605 return bcnt;
dea31012005-04-17 16:05:31 -0500606}
607
James Smart9bad7672008-12-04 22:39:02 -0500608/**
James Smartda0436e2009-05-22 14:51:39 -0400609 * lpfc_sli4_fcp_xri_aborted - Fast-path process of fcp xri abort
610 * @phba: pointer to lpfc hba data structure.
611 * @axri: pointer to the fcp xri abort wcqe structure.
612 *
613 * This routine is invoked by the worker thread to process a SLI4 fast-path
614 * FCP aborted xri.
615 **/
616void
617lpfc_sli4_fcp_xri_aborted(struct lpfc_hba *phba,
618 struct sli4_wcqe_xri_aborted *axri)
619{
620 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
621 struct lpfc_scsi_buf *psb, *next_psb;
622 unsigned long iflag = 0;
623
624 spin_lock_irqsave(&phba->sli4_hba.abts_scsi_buf_list_lock, iflag);
625 list_for_each_entry_safe(psb, next_psb,
626 &phba->sli4_hba.lpfc_abts_scsi_buf_list, list) {
627 if (psb->cur_iocbq.sli4_xritag == xri) {
628 list_del(&psb->list);
James Smart341af102010-01-26 23:07:37 -0500629 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400630 psb->status = IOSTAT_SUCCESS;
631 spin_unlock_irqrestore(
632 &phba->sli4_hba.abts_scsi_buf_list_lock,
633 iflag);
634 lpfc_release_scsi_buf_s4(phba, psb);
635 return;
636 }
637 }
638 spin_unlock_irqrestore(&phba->sli4_hba.abts_scsi_buf_list_lock,
639 iflag);
640}
641
642/**
643 * lpfc_sli4_repost_scsi_sgl_list - Repsot the Scsi buffers sgl pages as block
644 * @phba: pointer to lpfc hba data structure.
645 *
646 * This routine walks the list of scsi buffers that have been allocated and
647 * repost them to the HBA by using SGL block post. This is needed after a
648 * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
649 * is responsible for moving all scsi buffers on the lpfc_abts_scsi_sgl_list
650 * to the lpfc_scsi_buf_list. If the repost fails, reject all scsi buffers.
651 *
652 * Returns: 0 = success, non-zero failure.
653 **/
654int
655lpfc_sli4_repost_scsi_sgl_list(struct lpfc_hba *phba)
656{
657 struct lpfc_scsi_buf *psb;
658 int index, status, bcnt = 0, rcnt = 0, rc = 0;
659 LIST_HEAD(sblist);
660
661 for (index = 0; index < phba->sli4_hba.scsi_xri_cnt; index++) {
662 psb = phba->sli4_hba.lpfc_scsi_psb_array[index];
663 if (psb) {
664 /* Remove from SCSI buffer list */
665 list_del(&psb->list);
666 /* Add it to a local SCSI buffer list */
667 list_add_tail(&psb->list, &sblist);
668 if (++rcnt == LPFC_NEMBED_MBOX_SGL_CNT) {
669 bcnt = rcnt;
670 rcnt = 0;
671 }
672 } else
673 /* A hole present in the XRI array, need to skip */
674 bcnt = rcnt;
675
676 if (index == phba->sli4_hba.scsi_xri_cnt - 1)
677 /* End of XRI array for SCSI buffer, complete */
678 bcnt = rcnt;
679
680 /* Continue until collect up to a nembed page worth of sgls */
681 if (bcnt == 0)
682 continue;
683 /* Now, post the SCSI buffer list sgls as a block */
684 status = lpfc_sli4_post_scsi_sgl_block(phba, &sblist, bcnt);
685 /* Reset SCSI buffer count for next round of posting */
686 bcnt = 0;
687 while (!list_empty(&sblist)) {
688 list_remove_head(&sblist, psb, struct lpfc_scsi_buf,
689 list);
690 if (status) {
691 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500692 psb->exch_busy = 1;
James Smartda0436e2009-05-22 14:51:39 -0400693 rc++;
James Smart341af102010-01-26 23:07:37 -0500694 } else {
695 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400696 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500697 }
James Smartda0436e2009-05-22 14:51:39 -0400698 /* Put it back into the SCSI buffer list */
699 lpfc_release_scsi_buf_s4(phba, psb);
700 }
701 }
702 return rc;
703}
704
705/**
706 * lpfc_new_scsi_buf_s4 - Scsi buffer allocator for HBA with SLI4 IF spec
707 * @vport: The virtual port for which this call being executed.
708 * @num_to_allocate: The requested number of buffers to allocate.
709 *
710 * This routine allocates a scsi buffer for device with SLI-4 interface spec,
711 * the scsi buffer contains all the necessary information needed to initiate
712 * a SCSI I/O.
713 *
714 * Return codes:
715 * int - number of scsi buffers that were allocated.
716 * 0 = failure, less than num_to_alloc is a partial failure.
717 **/
718static int
719lpfc_new_scsi_buf_s4(struct lpfc_vport *vport, int num_to_alloc)
720{
721 struct lpfc_hba *phba = vport->phba;
722 struct lpfc_scsi_buf *psb;
723 struct sli4_sge *sgl;
724 IOCB_t *iocb;
725 dma_addr_t pdma_phys_fcp_cmd;
726 dma_addr_t pdma_phys_fcp_rsp;
727 dma_addr_t pdma_phys_bpl, pdma_phys_bpl1;
728 uint16_t iotag, last_xritag = NO_XRI;
729 int status = 0, index;
730 int bcnt;
731 int non_sequential_xri = 0;
732 int rc = 0;
733 LIST_HEAD(sblist);
734
735 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
736 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
737 if (!psb)
738 break;
739
740 /*
741 * Get memory from the pci pool to map the virt space to pci bus
742 * space for an I/O. The DMA buffer includes space for the
743 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
744 * necessary to support the sg_tablesize.
745 */
746 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
747 GFP_KERNEL, &psb->dma_handle);
748 if (!psb->data) {
749 kfree(psb);
750 break;
751 }
752
753 /* Initialize virtual ptrs to dma_buf region. */
754 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
755
756 /* Allocate iotag for psb->cur_iocbq. */
757 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
758 if (iotag == 0) {
759 kfree(psb);
760 break;
761 }
762
763 psb->cur_iocbq.sli4_xritag = lpfc_sli4_next_xritag(phba);
764 if (psb->cur_iocbq.sli4_xritag == NO_XRI) {
765 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
766 psb->data, psb->dma_handle);
767 kfree(psb);
768 break;
769 }
770 if (last_xritag != NO_XRI
771 && psb->cur_iocbq.sli4_xritag != (last_xritag+1)) {
772 non_sequential_xri = 1;
773 } else
774 list_add_tail(&psb->list, &sblist);
775 last_xritag = psb->cur_iocbq.sli4_xritag;
776
777 index = phba->sli4_hba.scsi_xri_cnt++;
778 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
779
780 psb->fcp_bpl = psb->data;
781 psb->fcp_cmnd = (psb->data + phba->cfg_sg_dma_buf_size)
782 - (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
783 psb->fcp_rsp = (struct fcp_rsp *)((uint8_t *)psb->fcp_cmnd +
784 sizeof(struct fcp_cmnd));
785
786 /* Initialize local short-hand pointers. */
787 sgl = (struct sli4_sge *)psb->fcp_bpl;
788 pdma_phys_bpl = psb->dma_handle;
789 pdma_phys_fcp_cmd =
790 (psb->dma_handle + phba->cfg_sg_dma_buf_size)
791 - (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
792 pdma_phys_fcp_rsp = pdma_phys_fcp_cmd + sizeof(struct fcp_cmnd);
793
794 /*
795 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
796 * are sg list bdes. Initialize the first two and leave the
797 * rest for queuecommand.
798 */
799 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_cmd));
800 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_cmd));
James Smartda0436e2009-05-22 14:51:39 -0400801 bf_set(lpfc_sli4_sge_last, sgl, 0);
802 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -0500803 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_cmnd));
James Smartda0436e2009-05-22 14:51:39 -0400804 sgl++;
805
806 /* Setup the physical region for the FCP RSP */
807 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_rsp));
808 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_rsp));
James Smartda0436e2009-05-22 14:51:39 -0400809 bf_set(lpfc_sli4_sge_last, sgl, 1);
810 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -0500811 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_rsp));
James Smartda0436e2009-05-22 14:51:39 -0400812
813 /*
814 * Since the IOCB for the FCP I/O is built into this
815 * lpfc_scsi_buf, initialize it with all known data now.
816 */
817 iocb = &psb->cur_iocbq.iocb;
818 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
819 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_64;
820 /* setting the BLP size to 2 * sizeof BDE may not be correct.
821 * We are setting the bpl to point to out sgl. An sgl's
822 * entries are 16 bytes, a bpl entries are 12 bytes.
823 */
824 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
825 iocb->un.fcpi64.bdl.addrLow = putPaddrLow(pdma_phys_fcp_cmd);
826 iocb->un.fcpi64.bdl.addrHigh = putPaddrHigh(pdma_phys_fcp_cmd);
827 iocb->ulpBdeCount = 1;
828 iocb->ulpLe = 1;
829 iocb->ulpClass = CLASS3;
830 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
831 pdma_phys_bpl1 = pdma_phys_bpl + SGL_PAGE_SIZE;
832 else
833 pdma_phys_bpl1 = 0;
834 psb->dma_phys_bpl = pdma_phys_bpl;
835 phba->sli4_hba.lpfc_scsi_psb_array[index] = psb;
836 if (non_sequential_xri) {
837 status = lpfc_sli4_post_sgl(phba, pdma_phys_bpl,
838 pdma_phys_bpl1,
839 psb->cur_iocbq.sli4_xritag);
840 if (status) {
841 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500842 psb->exch_busy = 1;
James Smartda0436e2009-05-22 14:51:39 -0400843 rc++;
James Smart341af102010-01-26 23:07:37 -0500844 } else {
845 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400846 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500847 }
James Smartda0436e2009-05-22 14:51:39 -0400848 /* Put it back into the SCSI buffer list */
849 lpfc_release_scsi_buf_s4(phba, psb);
850 break;
851 }
852 }
853 if (bcnt) {
854 status = lpfc_sli4_post_scsi_sgl_block(phba, &sblist, bcnt);
855 /* Reset SCSI buffer count for next round of posting */
856 while (!list_empty(&sblist)) {
857 list_remove_head(&sblist, psb, struct lpfc_scsi_buf,
858 list);
859 if (status) {
860 /* Put this back on the abort scsi list */
James Smart341af102010-01-26 23:07:37 -0500861 psb->exch_busy = 1;
James Smartda0436e2009-05-22 14:51:39 -0400862 rc++;
James Smart341af102010-01-26 23:07:37 -0500863 } else {
864 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400865 psb->status = IOSTAT_SUCCESS;
James Smart341af102010-01-26 23:07:37 -0500866 }
James Smartda0436e2009-05-22 14:51:39 -0400867 /* Put it back into the SCSI buffer list */
868 lpfc_release_scsi_buf_s4(phba, psb);
869 }
870 }
871
872 return bcnt + non_sequential_xri - rc;
873}
874
875/**
James Smart3772a992009-05-22 14:50:54 -0400876 * lpfc_new_scsi_buf - Wrapper funciton for scsi buffer allocator
877 * @vport: The virtual port for which this call being executed.
878 * @num_to_allocate: The requested number of buffers to allocate.
879 *
880 * This routine wraps the actual SCSI buffer allocator function pointer from
881 * the lpfc_hba struct.
882 *
883 * Return codes:
884 * int - number of scsi buffers that were allocated.
885 * 0 = failure, less than num_to_alloc is a partial failure.
886 **/
887static inline int
888lpfc_new_scsi_buf(struct lpfc_vport *vport, int num_to_alloc)
889{
890 return vport->phba->lpfc_new_scsi_buf(vport, num_to_alloc);
891}
892
893/**
894 * lpfc_get_scsi_buf - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
895 * @phba: The HBA for which this call is being executed.
James Smart9bad7672008-12-04 22:39:02 -0500896 *
897 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
898 * and returns to caller.
899 *
900 * Return codes:
901 * NULL - Error
902 * Pointer to lpfc_scsi_buf - Success
903 **/
Adrian Bunk455c53e2006-01-06 20:21:28 +0100904static struct lpfc_scsi_buf*
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500905lpfc_get_scsi_buf(struct lpfc_hba * phba)
dea31012005-04-17 16:05:31 -0500906{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400907 struct lpfc_scsi_buf * lpfc_cmd = NULL;
908 struct list_head *scsi_buf_list = &phba->lpfc_scsi_buf_list;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500909 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -0500910
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500911 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400912 list_remove_head(scsi_buf_list, lpfc_cmd, struct lpfc_scsi_buf, list);
James Smart1dcb58e2007-04-25 09:51:30 -0400913 if (lpfc_cmd) {
914 lpfc_cmd->seg_cnt = 0;
915 lpfc_cmd->nonsg_phys = 0;
James Smarte2a0a9d2008-12-04 22:40:02 -0500916 lpfc_cmd->prot_seg_cnt = 0;
James Smart1dcb58e2007-04-25 09:51:30 -0400917 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500918 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400919 return lpfc_cmd;
920}
921
James Smart9bad7672008-12-04 22:39:02 -0500922/**
James Smart3772a992009-05-22 14:50:54 -0400923 * lpfc_release_scsi_buf - Return a scsi buffer back to hba scsi buf list
James Smart9bad7672008-12-04 22:39:02 -0500924 * @phba: The Hba for which this call is being executed.
925 * @psb: The scsi buffer which is being released.
926 *
927 * This routine releases @psb scsi buffer by adding it to tail of @phba
928 * lpfc_scsi_buf_list list.
929 **/
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400930static void
James Smart3772a992009-05-22 14:50:54 -0400931lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400932{
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500933 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -0500934
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500935 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400936 psb->pCmd = NULL;
dea31012005-04-17 16:05:31 -0500937 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500938 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
dea31012005-04-17 16:05:31 -0500939}
940
James Smart9bad7672008-12-04 22:39:02 -0500941/**
James Smartda0436e2009-05-22 14:51:39 -0400942 * lpfc_release_scsi_buf_s4: Return a scsi buffer back to hba scsi buf list.
943 * @phba: The Hba for which this call is being executed.
944 * @psb: The scsi buffer which is being released.
945 *
946 * This routine releases @psb scsi buffer by adding it to tail of @phba
947 * lpfc_scsi_buf_list list. For SLI4 XRI's are tied to the scsi buffer
948 * and cannot be reused for at least RA_TOV amount of time if it was
949 * aborted.
950 **/
951static void
952lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
953{
954 unsigned long iflag = 0;
955
James Smart341af102010-01-26 23:07:37 -0500956 if (psb->exch_busy) {
James Smartda0436e2009-05-22 14:51:39 -0400957 spin_lock_irqsave(&phba->sli4_hba.abts_scsi_buf_list_lock,
958 iflag);
959 psb->pCmd = NULL;
960 list_add_tail(&psb->list,
961 &phba->sli4_hba.lpfc_abts_scsi_buf_list);
962 spin_unlock_irqrestore(&phba->sli4_hba.abts_scsi_buf_list_lock,
963 iflag);
964 } else {
965
966 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
967 psb->pCmd = NULL;
968 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
969 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
970 }
971}
972
973/**
James Smart3772a992009-05-22 14:50:54 -0400974 * lpfc_release_scsi_buf: Return a scsi buffer back to hba scsi buf list.
975 * @phba: The Hba for which this call is being executed.
976 * @psb: The scsi buffer which is being released.
977 *
978 * This routine releases @psb scsi buffer by adding it to tail of @phba
979 * lpfc_scsi_buf_list list.
980 **/
981static void
982lpfc_release_scsi_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
983{
984
985 phba->lpfc_release_scsi_buf(phba, psb);
986}
987
988/**
989 * lpfc_scsi_prep_dma_buf_s3 - DMA mapping for scsi buffer to SLI3 IF spec
James Smart9bad7672008-12-04 22:39:02 -0500990 * @phba: The Hba for which this call is being executed.
991 * @lpfc_cmd: The scsi buffer which is going to be mapped.
992 *
993 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
James Smart3772a992009-05-22 14:50:54 -0400994 * field of @lpfc_cmd for device with SLI-3 interface spec. This routine scans
995 * through sg elements and format the bdea. This routine also initializes all
996 * IOCB fields which are dependent on scsi command request buffer.
James Smart9bad7672008-12-04 22:39:02 -0500997 *
998 * Return codes:
999 * 1 - Error
1000 * 0 - Success
1001 **/
dea31012005-04-17 16:05:31 -05001002static int
James Smart3772a992009-05-22 14:50:54 -04001003lpfc_scsi_prep_dma_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
dea31012005-04-17 16:05:31 -05001004{
1005 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1006 struct scatterlist *sgel = NULL;
1007 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1008 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
1009 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
James Smart34b02dc2008-08-24 21:49:55 -04001010 struct ulp_bde64 *data_bde = iocb_cmd->unsli3.fcp_ext.dbde;
dea31012005-04-17 16:05:31 -05001011 dma_addr_t physaddr;
James Smart34b02dc2008-08-24 21:49:55 -04001012 uint32_t num_bde = 0;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001013 int nseg, datadir = scsi_cmnd->sc_data_direction;
dea31012005-04-17 16:05:31 -05001014
1015 /*
1016 * There are three possibilities here - use scatter-gather segment, use
1017 * the single mapping, or neither. Start the lpfc command prep by
1018 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1019 * data bde entry.
1020 */
1021 bpl += 2;
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001022 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -05001023 /*
1024 * The driver stores the segment count returned from pci_map_sg
1025 * because this a count of dma-mappings used to map the use_sg
1026 * pages. They are not guaranteed to be the same for those
1027 * architectures that implement an IOMMU.
1028 */
dea31012005-04-17 16:05:31 -05001029
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001030 nseg = dma_map_sg(&phba->pcidev->dev, scsi_sglist(scsi_cmnd),
1031 scsi_sg_count(scsi_cmnd), datadir);
1032 if (unlikely(!nseg))
1033 return 1;
1034
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001035 lpfc_cmd->seg_cnt = nseg;
dea31012005-04-17 16:05:31 -05001036 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001037 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1038 "9064 BLKGRD: %s: Too many sg segments from "
James Smarte2a0a9d2008-12-04 22:40:02 -05001039 "dma_map_sg. Config %d, seg_cnt %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001040 __func__, phba->cfg_sg_seg_cnt,
dea31012005-04-17 16:05:31 -05001041 lpfc_cmd->seg_cnt);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001042 scsi_dma_unmap(scsi_cmnd);
dea31012005-04-17 16:05:31 -05001043 return 1;
1044 }
1045
1046 /*
1047 * The driver established a maximum scatter-gather segment count
1048 * during probe that limits the number of sg elements in any
1049 * single scsi command. Just run through the seg_cnt and format
1050 * the bde's.
James Smart34b02dc2008-08-24 21:49:55 -04001051 * When using SLI-3 the driver will try to fit all the BDEs into
1052 * the IOCB. If it can't then the BDEs get added to a BPL as it
1053 * does for SLI-2 mode.
dea31012005-04-17 16:05:31 -05001054 */
James Smart34b02dc2008-08-24 21:49:55 -04001055 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
dea31012005-04-17 16:05:31 -05001056 physaddr = sg_dma_address(sgel);
James Smart34b02dc2008-08-24 21:49:55 -04001057 if (phba->sli_rev == 3 &&
James Smarte2a0a9d2008-12-04 22:40:02 -05001058 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
James Smart34b02dc2008-08-24 21:49:55 -04001059 nseg <= LPFC_EXT_DATA_BDE_COUNT) {
1060 data_bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1061 data_bde->tus.f.bdeSize = sg_dma_len(sgel);
1062 data_bde->addrLow = putPaddrLow(physaddr);
1063 data_bde->addrHigh = putPaddrHigh(physaddr);
1064 data_bde++;
1065 } else {
1066 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1067 bpl->tus.f.bdeSize = sg_dma_len(sgel);
1068 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1069 bpl->addrLow =
1070 le32_to_cpu(putPaddrLow(physaddr));
1071 bpl->addrHigh =
1072 le32_to_cpu(putPaddrHigh(physaddr));
1073 bpl++;
1074 }
dea31012005-04-17 16:05:31 -05001075 }
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001076 }
dea31012005-04-17 16:05:31 -05001077
1078 /*
1079 * Finish initializing those IOCB fields that are dependent on the
James Smart34b02dc2008-08-24 21:49:55 -04001080 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
1081 * explicitly reinitialized and for SLI-3 the extended bde count is
1082 * explicitly reinitialized since all iocb memory resources are reused.
dea31012005-04-17 16:05:31 -05001083 */
James Smarte2a0a9d2008-12-04 22:40:02 -05001084 if (phba->sli_rev == 3 &&
1085 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED)) {
James Smart34b02dc2008-08-24 21:49:55 -04001086 if (num_bde > LPFC_EXT_DATA_BDE_COUNT) {
1087 /*
1088 * The extended IOCB format can only fit 3 BDE or a BPL.
1089 * This I/O has more than 3 BDE so the 1st data bde will
1090 * be a BPL that is filled in here.
1091 */
1092 physaddr = lpfc_cmd->dma_handle;
1093 data_bde->tus.f.bdeFlags = BUFF_TYPE_BLP_64;
1094 data_bde->tus.f.bdeSize = (num_bde *
1095 sizeof(struct ulp_bde64));
1096 physaddr += (sizeof(struct fcp_cmnd) +
1097 sizeof(struct fcp_rsp) +
1098 (2 * sizeof(struct ulp_bde64)));
1099 data_bde->addrHigh = putPaddrHigh(physaddr);
1100 data_bde->addrLow = putPaddrLow(physaddr);
1101 /* ebde count includes the responce bde and data bpl */
1102 iocb_cmd->unsli3.fcp_ext.ebde_count = 2;
1103 } else {
1104 /* ebde count includes the responce bde and data bdes */
1105 iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
1106 }
1107 } else {
1108 iocb_cmd->un.fcpi64.bdl.bdeSize =
1109 ((num_bde + 2) * sizeof(struct ulp_bde64));
1110 }
James Smart09372822008-01-11 01:52:54 -05001111 fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
James Smarte2a0a9d2008-12-04 22:40:02 -05001112
1113 /*
1114 * Due to difference in data length between DIF/non-DIF paths,
1115 * we need to set word 4 of IOCB here
1116 */
James Smarta257bf92009-04-06 18:48:10 -04001117 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
dea31012005-04-17 16:05:31 -05001118 return 0;
1119}
1120
James Smarte2a0a9d2008-12-04 22:40:02 -05001121/*
1122 * Given a scsi cmnd, determine the BlockGuard profile to be used
1123 * with the cmd
1124 */
1125static int
James Smart6a9c52c2009-10-02 15:16:51 -04001126lpfc_sc_to_sli_prof(struct lpfc_hba *phba, struct scsi_cmnd *sc)
James Smarte2a0a9d2008-12-04 22:40:02 -05001127{
1128 uint8_t guard_type = scsi_host_get_guard(sc->device->host);
1129 uint8_t ret_prof = LPFC_PROF_INVALID;
1130
1131 if (guard_type == SHOST_DIX_GUARD_IP) {
1132 switch (scsi_get_prot_op(sc)) {
1133 case SCSI_PROT_READ_INSERT:
1134 case SCSI_PROT_WRITE_STRIP:
1135 ret_prof = LPFC_PROF_AST2;
1136 break;
1137
1138 case SCSI_PROT_READ_STRIP:
1139 case SCSI_PROT_WRITE_INSERT:
1140 ret_prof = LPFC_PROF_A1;
1141 break;
1142
Martin K. Petersenc6af4042009-09-18 17:32:59 -04001143 case SCSI_PROT_READ_PASS:
1144 case SCSI_PROT_WRITE_PASS:
James Smarte2a0a9d2008-12-04 22:40:02 -05001145 ret_prof = LPFC_PROF_AST1;
1146 break;
1147
James Smarte2a0a9d2008-12-04 22:40:02 -05001148 case SCSI_PROT_NORMAL:
1149 default:
James Smart6a9c52c2009-10-02 15:16:51 -04001150 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1151 "9063 BLKGRD:Bad op/guard:%d/%d combination\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001152 scsi_get_prot_op(sc), guard_type);
1153 break;
1154
1155 }
1156 } else if (guard_type == SHOST_DIX_GUARD_CRC) {
1157 switch (scsi_get_prot_op(sc)) {
1158 case SCSI_PROT_READ_STRIP:
1159 case SCSI_PROT_WRITE_INSERT:
1160 ret_prof = LPFC_PROF_A1;
1161 break;
1162
1163 case SCSI_PROT_READ_PASS:
1164 case SCSI_PROT_WRITE_PASS:
1165 ret_prof = LPFC_PROF_C1;
1166 break;
1167
James Smarte2a0a9d2008-12-04 22:40:02 -05001168 case SCSI_PROT_READ_INSERT:
1169 case SCSI_PROT_WRITE_STRIP:
1170 case SCSI_PROT_NORMAL:
1171 default:
James Smart6a9c52c2009-10-02 15:16:51 -04001172 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1173 "9075 BLKGRD: Bad op/guard:%d/%d combination\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001174 scsi_get_prot_op(sc), guard_type);
1175 break;
1176 }
1177 } else {
1178 /* unsupported format */
1179 BUG();
1180 }
1181
1182 return ret_prof;
1183}
1184
1185struct scsi_dif_tuple {
1186 __be16 guard_tag; /* Checksum */
1187 __be16 app_tag; /* Opaque storage */
1188 __be32 ref_tag; /* Target LBA or indirect LBA */
1189};
1190
1191static inline unsigned
1192lpfc_cmd_blksize(struct scsi_cmnd *sc)
1193{
1194 return sc->device->sector_size;
1195}
1196
1197/**
1198 * lpfc_get_cmd_dif_parms - Extract DIF parameters from SCSI command
1199 * @sc: in: SCSI command
James Smart3621a712009-04-06 18:47:14 -04001200 * @apptagmask: out: app tag mask
1201 * @apptagval: out: app tag value
1202 * @reftag: out: ref tag (reference tag)
James Smarte2a0a9d2008-12-04 22:40:02 -05001203 *
1204 * Description:
Martin Olsson98a17082009-04-22 18:21:29 +02001205 * Extract DIF parameters from the command if possible. Otherwise,
1206 * use default parameters.
James Smarte2a0a9d2008-12-04 22:40:02 -05001207 *
1208 **/
1209static inline void
1210lpfc_get_cmd_dif_parms(struct scsi_cmnd *sc, uint16_t *apptagmask,
1211 uint16_t *apptagval, uint32_t *reftag)
1212{
1213 struct scsi_dif_tuple *spt;
1214 unsigned char op = scsi_get_prot_op(sc);
1215 unsigned int protcnt = scsi_prot_sg_count(sc);
1216 static int cnt;
1217
1218 if (protcnt && (op == SCSI_PROT_WRITE_STRIP ||
Martin K. Petersenc6af4042009-09-18 17:32:59 -04001219 op == SCSI_PROT_WRITE_PASS)) {
James Smarte2a0a9d2008-12-04 22:40:02 -05001220
1221 cnt++;
1222 spt = page_address(sg_page(scsi_prot_sglist(sc))) +
1223 scsi_prot_sglist(sc)[0].offset;
1224 *apptagmask = 0;
1225 *apptagval = 0;
1226 *reftag = cpu_to_be32(spt->ref_tag);
1227
1228 } else {
1229 /* SBC defines ref tag to be lower 32bits of LBA */
1230 *reftag = (uint32_t) (0xffffffff & scsi_get_lba(sc));
1231 *apptagmask = 0;
1232 *apptagval = 0;
1233 }
1234}
1235
1236/*
1237 * This function sets up buffer list for protection groups of
1238 * type LPFC_PG_TYPE_NO_DIF
1239 *
1240 * This is usually used when the HBA is instructed to generate
1241 * DIFs and insert them into data stream (or strip DIF from
1242 * incoming data stream)
1243 *
1244 * The buffer list consists of just one protection group described
1245 * below:
1246 * +-------------------------+
1247 * start of prot group --> | PDE_1 |
1248 * +-------------------------+
1249 * | Data BDE |
1250 * +-------------------------+
1251 * |more Data BDE's ... (opt)|
1252 * +-------------------------+
1253 *
1254 * @sc: pointer to scsi command we're working on
1255 * @bpl: pointer to buffer list for protection groups
1256 * @datacnt: number of segments of data that have been dma mapped
1257 *
1258 * Note: Data s/g buffers have been dma mapped
1259 */
1260static int
1261lpfc_bg_setup_bpl(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1262 struct ulp_bde64 *bpl, int datasegcnt)
1263{
1264 struct scatterlist *sgde = NULL; /* s/g data entry */
1265 struct lpfc_pde *pde1 = NULL;
1266 dma_addr_t physaddr;
1267 int i = 0, num_bde = 0;
1268 int datadir = sc->sc_data_direction;
1269 int prof = LPFC_PROF_INVALID;
1270 unsigned blksize;
1271 uint32_t reftag;
1272 uint16_t apptagmask, apptagval;
1273
1274 pde1 = (struct lpfc_pde *) bpl;
James Smart6a9c52c2009-10-02 15:16:51 -04001275 prof = lpfc_sc_to_sli_prof(phba, sc);
James Smarte2a0a9d2008-12-04 22:40:02 -05001276
1277 if (prof == LPFC_PROF_INVALID)
1278 goto out;
1279
1280 /* extract some info from the scsi command for PDE1*/
1281 blksize = lpfc_cmd_blksize(sc);
1282 lpfc_get_cmd_dif_parms(sc, &apptagmask, &apptagval, &reftag);
1283
1284 /* setup PDE1 with what we have */
1285 lpfc_pde_set_bg_parms(pde1, LPFC_PDE1_DESCRIPTOR, prof, blksize,
1286 BG_EC_STOP_ERR);
1287 lpfc_pde_set_dif_parms(pde1, apptagmask, apptagval, reftag);
1288
1289 num_bde++;
1290 bpl++;
1291
1292 /* assumption: caller has already run dma_map_sg on command data */
1293 scsi_for_each_sg(sc, sgde, datasegcnt, i) {
1294 physaddr = sg_dma_address(sgde);
1295 bpl->addrLow = le32_to_cpu(putPaddrLow(physaddr));
1296 bpl->addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1297 bpl->tus.f.bdeSize = sg_dma_len(sgde);
1298 if (datadir == DMA_TO_DEVICE)
1299 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1300 else
1301 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
1302 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1303 bpl++;
1304 num_bde++;
1305 }
1306
1307out:
1308 return num_bde;
1309}
1310
1311/*
1312 * This function sets up buffer list for protection groups of
1313 * type LPFC_PG_TYPE_DIF_BUF
1314 *
1315 * This is usually used when DIFs are in their own buffers,
1316 * separate from the data. The HBA can then by instructed
1317 * to place the DIFs in the outgoing stream. For read operations,
1318 * The HBA could extract the DIFs and place it in DIF buffers.
1319 *
1320 * The buffer list for this type consists of one or more of the
1321 * protection groups described below:
1322 * +-------------------------+
1323 * start of first prot group --> | PDE_1 |
1324 * +-------------------------+
1325 * | PDE_3 (Prot BDE) |
1326 * +-------------------------+
1327 * | Data BDE |
1328 * +-------------------------+
1329 * |more Data BDE's ... (opt)|
1330 * +-------------------------+
1331 * start of new prot group --> | PDE_1 |
1332 * +-------------------------+
1333 * | ... |
1334 * +-------------------------+
1335 *
1336 * @sc: pointer to scsi command we're working on
1337 * @bpl: pointer to buffer list for protection groups
1338 * @datacnt: number of segments of data that have been dma mapped
1339 * @protcnt: number of segment of protection data that have been dma mapped
1340 *
1341 * Note: It is assumed that both data and protection s/g buffers have been
1342 * mapped for DMA
1343 */
1344static int
1345lpfc_bg_setup_bpl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1346 struct ulp_bde64 *bpl, int datacnt, int protcnt)
1347{
1348 struct scatterlist *sgde = NULL; /* s/g data entry */
1349 struct scatterlist *sgpe = NULL; /* s/g prot entry */
1350 struct lpfc_pde *pde1 = NULL;
1351 struct ulp_bde64 *prot_bde = NULL;
1352 dma_addr_t dataphysaddr, protphysaddr;
1353 unsigned short curr_data = 0, curr_prot = 0;
1354 unsigned int split_offset, protgroup_len;
1355 unsigned int protgrp_blks, protgrp_bytes;
1356 unsigned int remainder, subtotal;
1357 int prof = LPFC_PROF_INVALID;
1358 int datadir = sc->sc_data_direction;
1359 unsigned char pgdone = 0, alldone = 0;
1360 unsigned blksize;
1361 uint32_t reftag;
1362 uint16_t apptagmask, apptagval;
1363 int num_bde = 0;
1364
1365 sgpe = scsi_prot_sglist(sc);
1366 sgde = scsi_sglist(sc);
1367
1368 if (!sgpe || !sgde) {
1369 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1370 "9020 Invalid s/g entry: data=0x%p prot=0x%p\n",
1371 sgpe, sgde);
1372 return 0;
1373 }
1374
James Smart6a9c52c2009-10-02 15:16:51 -04001375 prof = lpfc_sc_to_sli_prof(phba, sc);
James Smarte2a0a9d2008-12-04 22:40:02 -05001376 if (prof == LPFC_PROF_INVALID)
1377 goto out;
1378
1379 /* extract some info from the scsi command for PDE1*/
1380 blksize = lpfc_cmd_blksize(sc);
1381 lpfc_get_cmd_dif_parms(sc, &apptagmask, &apptagval, &reftag);
1382
1383 split_offset = 0;
1384 do {
1385 /* setup the first PDE_1 */
1386 pde1 = (struct lpfc_pde *) bpl;
1387
1388 lpfc_pde_set_bg_parms(pde1, LPFC_PDE1_DESCRIPTOR, prof, blksize,
1389 BG_EC_STOP_ERR);
1390 lpfc_pde_set_dif_parms(pde1, apptagmask, apptagval, reftag);
1391
1392 num_bde++;
1393 bpl++;
1394
1395 /* setup the first BDE that points to protection buffer */
1396 prot_bde = (struct ulp_bde64 *) bpl;
1397 protphysaddr = sg_dma_address(sgpe);
1398 prot_bde->addrLow = le32_to_cpu(putPaddrLow(protphysaddr));
1399 prot_bde->addrHigh = le32_to_cpu(putPaddrHigh(protphysaddr));
1400 protgroup_len = sg_dma_len(sgpe);
1401
1402
1403 /* must be integer multiple of the DIF block length */
1404 BUG_ON(protgroup_len % 8);
1405
1406 protgrp_blks = protgroup_len / 8;
1407 protgrp_bytes = protgrp_blks * blksize;
1408
1409 prot_bde->tus.f.bdeSize = protgroup_len;
1410 if (datadir == DMA_TO_DEVICE)
1411 prot_bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1412 else
1413 prot_bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
1414 prot_bde->tus.w = le32_to_cpu(bpl->tus.w);
1415
1416 curr_prot++;
1417 num_bde++;
1418
1419 /* setup BDE's for data blocks associated with DIF data */
1420 pgdone = 0;
1421 subtotal = 0; /* total bytes processed for current prot grp */
1422 while (!pgdone) {
1423 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -04001424 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1425 "9065 BLKGRD:%s Invalid data segment\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001426 __func__);
1427 return 0;
1428 }
1429 bpl++;
1430 dataphysaddr = sg_dma_address(sgde) + split_offset;
1431 bpl->addrLow = le32_to_cpu(putPaddrLow(dataphysaddr));
1432 bpl->addrHigh = le32_to_cpu(putPaddrHigh(dataphysaddr));
1433
1434 remainder = sg_dma_len(sgde) - split_offset;
1435
1436 if ((subtotal + remainder) <= protgrp_bytes) {
1437 /* we can use this whole buffer */
1438 bpl->tus.f.bdeSize = remainder;
1439 split_offset = 0;
1440
1441 if ((subtotal + remainder) == protgrp_bytes)
1442 pgdone = 1;
1443 } else {
1444 /* must split this buffer with next prot grp */
1445 bpl->tus.f.bdeSize = protgrp_bytes - subtotal;
1446 split_offset += bpl->tus.f.bdeSize;
1447 }
1448
1449 subtotal += bpl->tus.f.bdeSize;
1450
1451 if (datadir == DMA_TO_DEVICE)
1452 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1453 else
1454 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
1455 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1456
1457 num_bde++;
1458 curr_data++;
1459
1460 if (split_offset)
1461 break;
1462
1463 /* Move to the next s/g segment if possible */
1464 sgde = sg_next(sgde);
1465 }
1466
1467 /* are we done ? */
1468 if (curr_prot == protcnt) {
1469 alldone = 1;
1470 } else if (curr_prot < protcnt) {
1471 /* advance to next prot buffer */
1472 sgpe = sg_next(sgpe);
1473 bpl++;
1474
1475 /* update the reference tag */
1476 reftag += protgrp_blks;
1477 } else {
1478 /* if we're here, we have a bug */
James Smart6a9c52c2009-10-02 15:16:51 -04001479 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1480 "9054 BLKGRD: bug in %s\n", __func__);
James Smarte2a0a9d2008-12-04 22:40:02 -05001481 }
1482
1483 } while (!alldone);
1484
1485out:
1486
1487
1488 return num_bde;
1489}
1490/*
1491 * Given a SCSI command that supports DIF, determine composition of protection
1492 * groups involved in setting up buffer lists
1493 *
1494 * Returns:
1495 * for DIF (for both read and write)
1496 * */
1497static int
1498lpfc_prot_group_type(struct lpfc_hba *phba, struct scsi_cmnd *sc)
1499{
1500 int ret = LPFC_PG_TYPE_INVALID;
1501 unsigned char op = scsi_get_prot_op(sc);
1502
1503 switch (op) {
1504 case SCSI_PROT_READ_STRIP:
1505 case SCSI_PROT_WRITE_INSERT:
1506 ret = LPFC_PG_TYPE_NO_DIF;
1507 break;
1508 case SCSI_PROT_READ_INSERT:
1509 case SCSI_PROT_WRITE_STRIP:
1510 case SCSI_PROT_READ_PASS:
1511 case SCSI_PROT_WRITE_PASS:
James Smarte2a0a9d2008-12-04 22:40:02 -05001512 ret = LPFC_PG_TYPE_DIF_BUF;
1513 break;
1514 default:
1515 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1516 "9021 Unsupported protection op:%d\n", op);
1517 break;
1518 }
1519
1520 return ret;
1521}
1522
1523/*
1524 * This is the protection/DIF aware version of
1525 * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
1526 * two functions eventually, but for now, it's here
1527 */
1528static int
1529lpfc_bg_scsi_prep_dma_buf(struct lpfc_hba *phba,
1530 struct lpfc_scsi_buf *lpfc_cmd)
1531{
1532 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1533 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1534 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
1535 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
1536 uint32_t num_bde = 0;
1537 int datasegcnt, protsegcnt, datadir = scsi_cmnd->sc_data_direction;
1538 int prot_group_type = 0;
1539 int diflen, fcpdl;
1540 unsigned blksize;
1541
1542 /*
1543 * Start the lpfc command prep by bumping the bpl beyond fcp_cmnd
1544 * fcp_rsp regions to the first data bde entry
1545 */
1546 bpl += 2;
1547 if (scsi_sg_count(scsi_cmnd)) {
1548 /*
1549 * The driver stores the segment count returned from pci_map_sg
1550 * because this a count of dma-mappings used to map the use_sg
1551 * pages. They are not guaranteed to be the same for those
1552 * architectures that implement an IOMMU.
1553 */
1554 datasegcnt = dma_map_sg(&phba->pcidev->dev,
1555 scsi_sglist(scsi_cmnd),
1556 scsi_sg_count(scsi_cmnd), datadir);
1557 if (unlikely(!datasegcnt))
1558 return 1;
1559
1560 lpfc_cmd->seg_cnt = datasegcnt;
1561 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001562 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1563 "9067 BLKGRD: %s: Too many sg segments"
1564 " from dma_map_sg. Config %d, seg_cnt"
1565 " %d\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001566 __func__, phba->cfg_sg_seg_cnt,
1567 lpfc_cmd->seg_cnt);
1568 scsi_dma_unmap(scsi_cmnd);
1569 return 1;
1570 }
1571
1572 prot_group_type = lpfc_prot_group_type(phba, scsi_cmnd);
1573
1574 switch (prot_group_type) {
1575 case LPFC_PG_TYPE_NO_DIF:
1576 num_bde = lpfc_bg_setup_bpl(phba, scsi_cmnd, bpl,
1577 datasegcnt);
1578 /* we shoud have 2 or more entries in buffer list */
1579 if (num_bde < 2)
1580 goto err;
1581 break;
1582 case LPFC_PG_TYPE_DIF_BUF:{
1583 /*
1584 * This type indicates that protection buffers are
1585 * passed to the driver, so that needs to be prepared
1586 * for DMA
1587 */
1588 protsegcnt = dma_map_sg(&phba->pcidev->dev,
1589 scsi_prot_sglist(scsi_cmnd),
1590 scsi_prot_sg_count(scsi_cmnd), datadir);
1591 if (unlikely(!protsegcnt)) {
1592 scsi_dma_unmap(scsi_cmnd);
1593 return 1;
1594 }
1595
1596 lpfc_cmd->prot_seg_cnt = protsegcnt;
1597 if (lpfc_cmd->prot_seg_cnt
1598 > phba->cfg_prot_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001599 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1600 "9068 BLKGRD: %s: Too many prot sg "
1601 "segments from dma_map_sg. Config %d,"
James Smarte2a0a9d2008-12-04 22:40:02 -05001602 "prot_seg_cnt %d\n", __func__,
1603 phba->cfg_prot_sg_seg_cnt,
1604 lpfc_cmd->prot_seg_cnt);
1605 dma_unmap_sg(&phba->pcidev->dev,
1606 scsi_prot_sglist(scsi_cmnd),
1607 scsi_prot_sg_count(scsi_cmnd),
1608 datadir);
1609 scsi_dma_unmap(scsi_cmnd);
1610 return 1;
1611 }
1612
1613 num_bde = lpfc_bg_setup_bpl_prot(phba, scsi_cmnd, bpl,
1614 datasegcnt, protsegcnt);
1615 /* we shoud have 3 or more entries in buffer list */
1616 if (num_bde < 3)
1617 goto err;
1618 break;
1619 }
1620 case LPFC_PG_TYPE_INVALID:
1621 default:
1622 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1623 "9022 Unexpected protection group %i\n",
1624 prot_group_type);
1625 return 1;
1626 }
1627 }
1628
1629 /*
1630 * Finish initializing those IOCB fields that are dependent on the
1631 * scsi_cmnd request_buffer. Note that the bdeSize is explicitly
1632 * reinitialized since all iocb memory resources are used many times
1633 * for transmit, receive, and continuation bpl's.
1634 */
1635 iocb_cmd->un.fcpi64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
1636 iocb_cmd->un.fcpi64.bdl.bdeSize += (num_bde * sizeof(struct ulp_bde64));
1637 iocb_cmd->ulpBdeCount = 1;
1638 iocb_cmd->ulpLe = 1;
1639
1640 fcpdl = scsi_bufflen(scsi_cmnd);
1641
1642 if (scsi_get_prot_type(scsi_cmnd) == SCSI_PROT_DIF_TYPE1) {
1643 /*
1644 * We are in DIF Type 1 mode
1645 * Every data block has a 8 byte DIF (trailer)
1646 * attached to it. Must ajust FCP data length
1647 */
1648 blksize = lpfc_cmd_blksize(scsi_cmnd);
1649 diflen = (fcpdl / blksize) * 8;
1650 fcpdl += diflen;
1651 }
1652 fcp_cmnd->fcpDl = be32_to_cpu(fcpdl);
1653
1654 /*
1655 * Due to difference in data length between DIF/non-DIF paths,
1656 * we need to set word 4 of IOCB here
1657 */
1658 iocb_cmd->un.fcpi.fcpi_parm = fcpdl;
1659
1660 return 0;
1661err:
1662 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
1663 "9023 Could not setup all needed BDE's"
1664 "prot_group_type=%d, num_bde=%d\n",
1665 prot_group_type, num_bde);
1666 return 1;
1667}
1668
1669/*
1670 * This function checks for BlockGuard errors detected by
1671 * the HBA. In case of errors, the ASC/ASCQ fields in the
1672 * sense buffer will be set accordingly, paired with
1673 * ILLEGAL_REQUEST to signal to the kernel that the HBA
1674 * detected corruption.
1675 *
1676 * Returns:
1677 * 0 - No error found
1678 * 1 - BlockGuard error found
1679 * -1 - Internal error (bad profile, ...etc)
1680 */
1681static int
1682lpfc_parse_bg_err(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd,
1683 struct lpfc_iocbq *pIocbOut)
1684{
1685 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
1686 struct sli3_bg_fields *bgf = &pIocbOut->iocb.unsli3.sli3_bg;
1687 int ret = 0;
1688 uint32_t bghm = bgf->bghm;
1689 uint32_t bgstat = bgf->bgstat;
1690 uint64_t failing_sector = 0;
1691
James Smart6a9c52c2009-10-02 15:16:51 -04001692 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9069 BLKGRD: BG ERROR in cmd"
1693 " 0x%x lba 0x%llx blk cnt 0x%x "
James Smarte2a0a9d2008-12-04 22:40:02 -05001694 "bgstat=0x%x bghm=0x%x\n",
James Smart87b5c322008-12-16 10:34:09 -05001695 cmd->cmnd[0], (unsigned long long)scsi_get_lba(cmd),
Tejun Heo83096eb2009-05-07 22:24:39 +09001696 blk_rq_sectors(cmd->request), bgstat, bghm);
James Smarte2a0a9d2008-12-04 22:40:02 -05001697
1698 spin_lock(&_dump_buf_lock);
1699 if (!_dump_buf_done) {
James Smart6a9c52c2009-10-02 15:16:51 -04001700 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9070 BLKGRD: Saving"
1701 " Data for %u blocks to debugfs\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001702 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
James Smart6a9c52c2009-10-02 15:16:51 -04001703 lpfc_debug_save_data(phba, cmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05001704
1705 /* If we have a prot sgl, save the DIF buffer */
1706 if (lpfc_prot_group_type(phba, cmd) ==
1707 LPFC_PG_TYPE_DIF_BUF) {
James Smart6a9c52c2009-10-02 15:16:51 -04001708 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9071 BLKGRD: "
1709 "Saving DIF for %u blocks to debugfs\n",
1710 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
1711 lpfc_debug_save_dif(phba, cmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05001712 }
1713
1714 _dump_buf_done = 1;
1715 }
1716 spin_unlock(&_dump_buf_lock);
1717
1718 if (lpfc_bgs_get_invalid_prof(bgstat)) {
1719 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04001720 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9072 BLKGRD: Invalid"
1721 " BlockGuard profile. bgstat:0x%x\n",
1722 bgstat);
James Smarte2a0a9d2008-12-04 22:40:02 -05001723 ret = (-1);
1724 goto out;
1725 }
1726
1727 if (lpfc_bgs_get_uninit_dif_block(bgstat)) {
1728 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04001729 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9073 BLKGRD: "
1730 "Invalid BlockGuard DIF Block. bgstat:0x%x\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05001731 bgstat);
1732 ret = (-1);
1733 goto out;
1734 }
1735
1736 if (lpfc_bgs_get_guard_err(bgstat)) {
1737 ret = 1;
1738
1739 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1740 0x10, 0x1);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001741 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001742 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
1743 phba->bg_guard_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04001744 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1745 "9055 BLKGRD: guard_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001746 }
1747
1748 if (lpfc_bgs_get_reftag_err(bgstat)) {
1749 ret = 1;
1750
1751 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1752 0x10, 0x3);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001753 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001754 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
1755
1756 phba->bg_reftag_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04001757 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1758 "9056 BLKGRD: ref_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001759 }
1760
1761 if (lpfc_bgs_get_apptag_err(bgstat)) {
1762 ret = 1;
1763
1764 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
1765 0x10, 0x2);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05001766 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05001767 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
1768
1769 phba->bg_apptag_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04001770 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1771 "9061 BLKGRD: app_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001772 }
1773
1774 if (lpfc_bgs_get_hi_water_mark_present(bgstat)) {
1775 /*
1776 * setup sense data descriptor 0 per SPC-4 as an information
1777 * field, and put the failing LBA in it
1778 */
1779 cmd->sense_buffer[8] = 0; /* Information */
1780 cmd->sense_buffer[9] = 0xa; /* Add. length */
David Howells2344b5b2009-04-14 17:08:34 +01001781 bghm /= cmd->device->sector_size;
James Smarte2a0a9d2008-12-04 22:40:02 -05001782
1783 failing_sector = scsi_get_lba(cmd);
1784 failing_sector += bghm;
1785
1786 put_unaligned_be64(failing_sector, &cmd->sense_buffer[10]);
1787 }
1788
1789 if (!ret) {
1790 /* No error was reported - problem in FW? */
1791 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04001792 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1793 "9057 BLKGRD: no errors reported!\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05001794 }
1795
1796out:
1797 return ret;
1798}
1799
James Smartea2151b2008-09-07 11:52:10 -04001800/**
James Smartda0436e2009-05-22 14:51:39 -04001801 * lpfc_scsi_prep_dma_buf_s4 - DMA mapping for scsi buffer to SLI4 IF spec
1802 * @phba: The Hba for which this call is being executed.
1803 * @lpfc_cmd: The scsi buffer which is going to be mapped.
1804 *
1805 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
1806 * field of @lpfc_cmd for device with SLI-4 interface spec.
1807 *
1808 * Return codes:
1809 * 1 - Error
1810 * 0 - Success
1811 **/
1812static int
1813lpfc_scsi_prep_dma_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
1814{
1815 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1816 struct scatterlist *sgel = NULL;
1817 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1818 struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
1819 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
1820 dma_addr_t physaddr;
1821 uint32_t num_bde = 0;
1822 uint32_t dma_len;
1823 uint32_t dma_offset = 0;
1824 int nseg;
1825
1826 /*
1827 * There are three possibilities here - use scatter-gather segment, use
1828 * the single mapping, or neither. Start the lpfc command prep by
1829 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1830 * data bde entry.
1831 */
1832 if (scsi_sg_count(scsi_cmnd)) {
1833 /*
1834 * The driver stores the segment count returned from pci_map_sg
1835 * because this a count of dma-mappings used to map the use_sg
1836 * pages. They are not guaranteed to be the same for those
1837 * architectures that implement an IOMMU.
1838 */
1839
1840 nseg = scsi_dma_map(scsi_cmnd);
1841 if (unlikely(!nseg))
1842 return 1;
1843 sgl += 1;
1844 /* clear the last flag in the fcp_rsp map entry */
1845 sgl->word2 = le32_to_cpu(sgl->word2);
1846 bf_set(lpfc_sli4_sge_last, sgl, 0);
1847 sgl->word2 = cpu_to_le32(sgl->word2);
1848 sgl += 1;
1849
1850 lpfc_cmd->seg_cnt = nseg;
1851 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001852 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9074 BLKGRD:"
1853 " %s: Too many sg segments from "
1854 "dma_map_sg. Config %d, seg_cnt %d\n",
1855 __func__, phba->cfg_sg_seg_cnt,
James Smartda0436e2009-05-22 14:51:39 -04001856 lpfc_cmd->seg_cnt);
1857 scsi_dma_unmap(scsi_cmnd);
1858 return 1;
1859 }
1860
1861 /*
1862 * The driver established a maximum scatter-gather segment count
1863 * during probe that limits the number of sg elements in any
1864 * single scsi command. Just run through the seg_cnt and format
1865 * the sge's.
1866 * When using SLI-3 the driver will try to fit all the BDEs into
1867 * the IOCB. If it can't then the BDEs get added to a BPL as it
1868 * does for SLI-2 mode.
1869 */
1870 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
1871 physaddr = sg_dma_address(sgel);
1872 dma_len = sg_dma_len(sgel);
James Smartda0436e2009-05-22 14:51:39 -04001873 sgl->addr_lo = cpu_to_le32(putPaddrLow(physaddr));
1874 sgl->addr_hi = cpu_to_le32(putPaddrHigh(physaddr));
1875 if ((num_bde + 1) == nseg)
1876 bf_set(lpfc_sli4_sge_last, sgl, 1);
1877 else
1878 bf_set(lpfc_sli4_sge_last, sgl, 0);
1879 bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
1880 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05001881 sgl->sge_len = cpu_to_le32(dma_len);
James Smartda0436e2009-05-22 14:51:39 -04001882 dma_offset += dma_len;
1883 sgl++;
1884 }
1885 } else {
1886 sgl += 1;
1887 /* clear the last flag in the fcp_rsp map entry */
1888 sgl->word2 = le32_to_cpu(sgl->word2);
1889 bf_set(lpfc_sli4_sge_last, sgl, 1);
1890 sgl->word2 = cpu_to_le32(sgl->word2);
1891 }
1892
1893 /*
1894 * Finish initializing those IOCB fields that are dependent on the
1895 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
1896 * explicitly reinitialized.
1897 * all iocb memory resources are reused.
1898 */
1899 fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
1900
1901 /*
1902 * Due to difference in data length between DIF/non-DIF paths,
1903 * we need to set word 4 of IOCB here
1904 */
1905 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
1906 return 0;
1907}
1908
1909/**
James Smart3772a992009-05-22 14:50:54 -04001910 * lpfc_scsi_prep_dma_buf - Wrapper function for DMA mapping of scsi buffer
1911 * @phba: The Hba for which this call is being executed.
1912 * @lpfc_cmd: The scsi buffer which is going to be mapped.
1913 *
1914 * This routine wraps the actual DMA mapping function pointer from the
1915 * lpfc_hba struct.
1916 *
1917 * Return codes:
1918 * 1 - Error
1919 * 0 - Success
1920 **/
1921static inline int
1922lpfc_scsi_prep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
1923{
1924 return phba->lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
1925}
1926
1927/**
James Smart3621a712009-04-06 18:47:14 -04001928 * lpfc_send_scsi_error_event - Posts an event when there is SCSI error
James Smartea2151b2008-09-07 11:52:10 -04001929 * @phba: Pointer to hba context object.
1930 * @vport: Pointer to vport object.
1931 * @lpfc_cmd: Pointer to lpfc scsi command which reported the error.
1932 * @rsp_iocb: Pointer to response iocb object which reported error.
1933 *
1934 * This function posts an event when there is a SCSI command reporting
1935 * error from the scsi device.
1936 **/
1937static void
1938lpfc_send_scsi_error_event(struct lpfc_hba *phba, struct lpfc_vport *vport,
1939 struct lpfc_scsi_buf *lpfc_cmd, struct lpfc_iocbq *rsp_iocb) {
1940 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
1941 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
1942 uint32_t resp_info = fcprsp->rspStatus2;
1943 uint32_t scsi_status = fcprsp->rspStatus3;
1944 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
1945 struct lpfc_fast_path_event *fast_path_evt = NULL;
1946 struct lpfc_nodelist *pnode = lpfc_cmd->rdata->pnode;
1947 unsigned long flags;
1948
1949 /* If there is queuefull or busy condition send a scsi event */
1950 if ((cmnd->result == SAM_STAT_TASK_SET_FULL) ||
1951 (cmnd->result == SAM_STAT_BUSY)) {
1952 fast_path_evt = lpfc_alloc_fast_evt(phba);
1953 if (!fast_path_evt)
1954 return;
1955 fast_path_evt->un.scsi_evt.event_type =
1956 FC_REG_SCSI_EVENT;
1957 fast_path_evt->un.scsi_evt.subcategory =
1958 (cmnd->result == SAM_STAT_TASK_SET_FULL) ?
1959 LPFC_EVENT_QFULL : LPFC_EVENT_DEVBSY;
1960 fast_path_evt->un.scsi_evt.lun = cmnd->device->lun;
1961 memcpy(&fast_path_evt->un.scsi_evt.wwpn,
1962 &pnode->nlp_portname, sizeof(struct lpfc_name));
1963 memcpy(&fast_path_evt->un.scsi_evt.wwnn,
1964 &pnode->nlp_nodename, sizeof(struct lpfc_name));
1965 } else if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen &&
1966 ((cmnd->cmnd[0] == READ_10) || (cmnd->cmnd[0] == WRITE_10))) {
1967 fast_path_evt = lpfc_alloc_fast_evt(phba);
1968 if (!fast_path_evt)
1969 return;
1970 fast_path_evt->un.check_cond_evt.scsi_event.event_type =
1971 FC_REG_SCSI_EVENT;
1972 fast_path_evt->un.check_cond_evt.scsi_event.subcategory =
1973 LPFC_EVENT_CHECK_COND;
1974 fast_path_evt->un.check_cond_evt.scsi_event.lun =
1975 cmnd->device->lun;
1976 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwpn,
1977 &pnode->nlp_portname, sizeof(struct lpfc_name));
1978 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwnn,
1979 &pnode->nlp_nodename, sizeof(struct lpfc_name));
1980 fast_path_evt->un.check_cond_evt.sense_key =
1981 cmnd->sense_buffer[2] & 0xf;
1982 fast_path_evt->un.check_cond_evt.asc = cmnd->sense_buffer[12];
1983 fast_path_evt->un.check_cond_evt.ascq = cmnd->sense_buffer[13];
1984 } else if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
1985 fcpi_parm &&
1986 ((be32_to_cpu(fcprsp->rspResId) != fcpi_parm) ||
1987 ((scsi_status == SAM_STAT_GOOD) &&
1988 !(resp_info & (RESID_UNDER | RESID_OVER))))) {
1989 /*
1990 * If status is good or resid does not match with fcp_param and
1991 * there is valid fcpi_parm, then there is a read_check error
1992 */
1993 fast_path_evt = lpfc_alloc_fast_evt(phba);
1994 if (!fast_path_evt)
1995 return;
1996 fast_path_evt->un.read_check_error.header.event_type =
1997 FC_REG_FABRIC_EVENT;
1998 fast_path_evt->un.read_check_error.header.subcategory =
1999 LPFC_EVENT_FCPRDCHKERR;
2000 memcpy(&fast_path_evt->un.read_check_error.header.wwpn,
2001 &pnode->nlp_portname, sizeof(struct lpfc_name));
2002 memcpy(&fast_path_evt->un.read_check_error.header.wwnn,
2003 &pnode->nlp_nodename, sizeof(struct lpfc_name));
2004 fast_path_evt->un.read_check_error.lun = cmnd->device->lun;
2005 fast_path_evt->un.read_check_error.opcode = cmnd->cmnd[0];
2006 fast_path_evt->un.read_check_error.fcpiparam =
2007 fcpi_parm;
2008 } else
2009 return;
2010
2011 fast_path_evt->vport = vport;
2012 spin_lock_irqsave(&phba->hbalock, flags);
2013 list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
2014 spin_unlock_irqrestore(&phba->hbalock, flags);
2015 lpfc_worker_wake_up(phba);
2016 return;
2017}
James Smart9bad7672008-12-04 22:39:02 -05002018
2019/**
James Smartf1126682009-06-10 17:22:44 -04002020 * lpfc_scsi_unprep_dma_buf - Un-map DMA mapping of SG-list for dev
James Smart3772a992009-05-22 14:50:54 -04002021 * @phba: The HBA for which this call is being executed.
James Smart9bad7672008-12-04 22:39:02 -05002022 * @psb: The scsi buffer which is going to be un-mapped.
2023 *
2024 * This routine does DMA un-mapping of scatter gather list of scsi command
James Smart3772a992009-05-22 14:50:54 -04002025 * field of @lpfc_cmd for device with SLI-3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002026 **/
dea31012005-04-17 16:05:31 -05002027static void
James Smartf1126682009-06-10 17:22:44 -04002028lpfc_scsi_unprep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James Smartbcf4dbf2006-07-06 15:50:08 -04002029{
2030 /*
2031 * There are only two special cases to consider. (1) the scsi command
2032 * requested scatter-gather usage or (2) the scsi command allocated
2033 * a request buffer, but did not request use_sg. There is a third
2034 * case, but it does not require resource deallocation.
2035 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002036 if (psb->seg_cnt > 0)
2037 scsi_dma_unmap(psb->pCmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05002038 if (psb->prot_seg_cnt > 0)
2039 dma_unmap_sg(&phba->pcidev->dev, scsi_prot_sglist(psb->pCmd),
2040 scsi_prot_sg_count(psb->pCmd),
2041 psb->pCmd->sc_data_direction);
James Smartbcf4dbf2006-07-06 15:50:08 -04002042}
2043
James Smart9bad7672008-12-04 22:39:02 -05002044/**
James Smart3621a712009-04-06 18:47:14 -04002045 * lpfc_handler_fcp_err - FCP response handler
James Smart9bad7672008-12-04 22:39:02 -05002046 * @vport: The virtual port for which this call is being executed.
2047 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2048 * @rsp_iocb: The response IOCB which contains FCP error.
2049 *
2050 * This routine is called to process response IOCB with status field
2051 * IOSTAT_FCP_RSP_ERROR. This routine sets result field of scsi command
2052 * based upon SCSI and FCP error.
2053 **/
James Smartbcf4dbf2006-07-06 15:50:08 -04002054static void
James Smart2e0fef82007-06-17 19:56:36 -05002055lpfc_handle_fcp_err(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
2056 struct lpfc_iocbq *rsp_iocb)
dea31012005-04-17 16:05:31 -05002057{
2058 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
2059 struct fcp_cmnd *fcpcmd = lpfc_cmd->fcp_cmnd;
2060 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
James Smart7054a602007-04-25 09:52:34 -04002061 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
dea31012005-04-17 16:05:31 -05002062 uint32_t resp_info = fcprsp->rspStatus2;
2063 uint32_t scsi_status = fcprsp->rspStatus3;
James Smartc7743952006-12-02 13:34:42 -05002064 uint32_t *lp;
dea31012005-04-17 16:05:31 -05002065 uint32_t host_status = DID_OK;
2066 uint32_t rsplen = 0;
James Smartc7743952006-12-02 13:34:42 -05002067 uint32_t logit = LOG_FCP | LOG_FCP_ERROR;
dea31012005-04-17 16:05:31 -05002068
James Smartea2151b2008-09-07 11:52:10 -04002069
dea31012005-04-17 16:05:31 -05002070 /*
2071 * If this is a task management command, there is no
2072 * scsi packet associated with this lpfc_cmd. The driver
2073 * consumes it.
2074 */
2075 if (fcpcmd->fcpCntl2) {
2076 scsi_status = 0;
2077 goto out;
2078 }
2079
James Smart6a9c52c2009-10-02 15:16:51 -04002080 if (resp_info & RSP_LEN_VALID) {
2081 rsplen = be32_to_cpu(fcprsp->rspRspLen);
2082 if ((rsplen != 0 && rsplen != 4 && rsplen != 8) ||
2083 (fcprsp->rspInfo3 != RSP_NO_FAILURE)) {
2084 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
2085 "2719 Invalid response length: "
2086 "tgt x%x lun x%x cmnd x%x rsplen x%x\n",
2087 cmnd->device->id,
2088 cmnd->device->lun, cmnd->cmnd[0],
2089 rsplen);
2090 host_status = DID_ERROR;
2091 goto out;
2092 }
2093 }
2094
James Smartc7743952006-12-02 13:34:42 -05002095 if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen) {
2096 uint32_t snslen = be32_to_cpu(fcprsp->rspSnsLen);
2097 if (snslen > SCSI_SENSE_BUFFERSIZE)
2098 snslen = SCSI_SENSE_BUFFERSIZE;
2099
2100 if (resp_info & RSP_LEN_VALID)
2101 rsplen = be32_to_cpu(fcprsp->rspRspLen);
2102 memcpy(cmnd->sense_buffer, &fcprsp->rspInfo0 + rsplen, snslen);
2103 }
2104 lp = (uint32_t *)cmnd->sense_buffer;
2105
2106 if (!scsi_status && (resp_info & RESID_UNDER))
2107 logit = LOG_FCP;
2108
James Smarte8b62012007-08-02 11:10:09 -04002109 lpfc_printf_vlog(vport, KERN_WARNING, logit,
James Smarte2a0a9d2008-12-04 22:40:02 -05002110 "9024 FCP command x%x failed: x%x SNS x%x x%x "
James Smarte8b62012007-08-02 11:10:09 -04002111 "Data: x%x x%x x%x x%x x%x\n",
2112 cmnd->cmnd[0], scsi_status,
2113 be32_to_cpu(*lp), be32_to_cpu(*(lp + 3)), resp_info,
2114 be32_to_cpu(fcprsp->rspResId),
2115 be32_to_cpu(fcprsp->rspSnsLen),
2116 be32_to_cpu(fcprsp->rspRspLen),
2117 fcprsp->rspInfo3);
dea31012005-04-17 16:05:31 -05002118
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002119 scsi_set_resid(cmnd, 0);
dea31012005-04-17 16:05:31 -05002120 if (resp_info & RESID_UNDER) {
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002121 scsi_set_resid(cmnd, be32_to_cpu(fcprsp->rspResId));
dea31012005-04-17 16:05:31 -05002122
James Smarte8b62012007-08-02 11:10:09 -04002123 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002124 "9025 FCP Read Underrun, expected %d, "
James Smarte8b62012007-08-02 11:10:09 -04002125 "residual %d Data: x%x x%x x%x\n",
2126 be32_to_cpu(fcpcmd->fcpDl),
2127 scsi_get_resid(cmnd), fcpi_parm, cmnd->cmnd[0],
2128 cmnd->underflow);
dea31012005-04-17 16:05:31 -05002129
2130 /*
James Smart7054a602007-04-25 09:52:34 -04002131 * If there is an under run check if under run reported by
2132 * storage array is same as the under run reported by HBA.
2133 * If this is not same, there is a dropped frame.
2134 */
2135 if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
2136 fcpi_parm &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002137 (scsi_get_resid(cmnd) != fcpi_parm)) {
James Smarte8b62012007-08-02 11:10:09 -04002138 lpfc_printf_vlog(vport, KERN_WARNING,
2139 LOG_FCP | LOG_FCP_ERROR,
James Smarte2a0a9d2008-12-04 22:40:02 -05002140 "9026 FCP Read Check Error "
James Smarte8b62012007-08-02 11:10:09 -04002141 "and Underrun Data: x%x x%x x%x x%x\n",
2142 be32_to_cpu(fcpcmd->fcpDl),
2143 scsi_get_resid(cmnd), fcpi_parm,
2144 cmnd->cmnd[0]);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002145 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
James Smart7054a602007-04-25 09:52:34 -04002146 host_status = DID_ERROR;
2147 }
2148 /*
dea31012005-04-17 16:05:31 -05002149 * The cmnd->underflow is the minimum number of bytes that must
2150 * be transfered for this command. Provided a sense condition
2151 * is not present, make sure the actual amount transferred is at
2152 * least the underflow value or fail.
2153 */
2154 if (!(resp_info & SNS_LEN_VALID) &&
2155 (scsi_status == SAM_STAT_GOOD) &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002156 (scsi_bufflen(cmnd) - scsi_get_resid(cmnd)
2157 < cmnd->underflow)) {
James Smarte8b62012007-08-02 11:10:09 -04002158 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002159 "9027 FCP command x%x residual "
James Smarte8b62012007-08-02 11:10:09 -04002160 "underrun converted to error "
2161 "Data: x%x x%x x%x\n",
James Smart66dbfbe2007-08-05 06:08:38 -04002162 cmnd->cmnd[0], scsi_bufflen(cmnd),
James Smarte8b62012007-08-02 11:10:09 -04002163 scsi_get_resid(cmnd), cmnd->underflow);
dea31012005-04-17 16:05:31 -05002164 host_status = DID_ERROR;
2165 }
2166 } else if (resp_info & RESID_OVER) {
James Smarte8b62012007-08-02 11:10:09 -04002167 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002168 "9028 FCP command x%x residual overrun error. "
James Smarte4e74272009-07-19 10:01:38 -04002169 "Data: x%x x%x\n", cmnd->cmnd[0],
James Smarte8b62012007-08-02 11:10:09 -04002170 scsi_bufflen(cmnd), scsi_get_resid(cmnd));
dea31012005-04-17 16:05:31 -05002171 host_status = DID_ERROR;
2172
2173 /*
2174 * Check SLI validation that all the transfer was actually done
2175 * (fcpi_parm should be zero). Apply check only to reads.
2176 */
2177 } else if ((scsi_status == SAM_STAT_GOOD) && fcpi_parm &&
2178 (cmnd->sc_data_direction == DMA_FROM_DEVICE)) {
James Smarte8b62012007-08-02 11:10:09 -04002179 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP | LOG_FCP_ERROR,
James Smarte2a0a9d2008-12-04 22:40:02 -05002180 "9029 FCP Read Check Error Data: "
James Smarte8b62012007-08-02 11:10:09 -04002181 "x%x x%x x%x x%x\n",
2182 be32_to_cpu(fcpcmd->fcpDl),
2183 be32_to_cpu(fcprsp->rspResId),
2184 fcpi_parm, cmnd->cmnd[0]);
dea31012005-04-17 16:05:31 -05002185 host_status = DID_ERROR;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002186 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
dea31012005-04-17 16:05:31 -05002187 }
2188
2189 out:
2190 cmnd->result = ScsiResult(host_status, scsi_status);
James Smartea2151b2008-09-07 11:52:10 -04002191 lpfc_send_scsi_error_event(vport->phba, vport, lpfc_cmd, rsp_iocb);
dea31012005-04-17 16:05:31 -05002192}
2193
James Smart9bad7672008-12-04 22:39:02 -05002194/**
James Smart3621a712009-04-06 18:47:14 -04002195 * lpfc_scsi_cmd_iocb_cmpl - Scsi cmnd IOCB completion routine
James Smart9bad7672008-12-04 22:39:02 -05002196 * @phba: The Hba for which this call is being executed.
2197 * @pIocbIn: The command IOCBQ for the scsi cmnd.
James Smart3772a992009-05-22 14:50:54 -04002198 * @pIocbOut: The response IOCBQ for the scsi cmnd.
James Smart9bad7672008-12-04 22:39:02 -05002199 *
2200 * This routine assigns scsi command result by looking into response IOCB
2201 * status field appropriately. This routine handles QUEUE FULL condition as
2202 * well by ramping down device queue depth.
2203 **/
dea31012005-04-17 16:05:31 -05002204static void
2205lpfc_scsi_cmd_iocb_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *pIocbIn,
2206 struct lpfc_iocbq *pIocbOut)
2207{
2208 struct lpfc_scsi_buf *lpfc_cmd =
2209 (struct lpfc_scsi_buf *) pIocbIn->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002210 struct lpfc_vport *vport = pIocbIn->vport;
dea31012005-04-17 16:05:31 -05002211 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
2212 struct lpfc_nodelist *pnode = rdata->pnode;
2213 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002214 int result;
James Smarta257bf92009-04-06 18:48:10 -04002215 struct scsi_device *tmp_sdev;
James Smart5ffc2662009-11-18 15:39:44 -05002216 int depth;
James Smartfa61a542008-01-11 01:52:42 -05002217 unsigned long flags;
James Smartea2151b2008-09-07 11:52:10 -04002218 struct lpfc_fast_path_event *fast_path_evt;
James Smarta257bf92009-04-06 18:48:10 -04002219 struct Scsi_Host *shost = cmd->device->host;
2220 uint32_t queue_depth, scsi_id;
dea31012005-04-17 16:05:31 -05002221
2222 lpfc_cmd->result = pIocbOut->iocb.un.ulpWord[4];
2223 lpfc_cmd->status = pIocbOut->iocb.ulpStatus;
James Smart341af102010-01-26 23:07:37 -05002224 /* pick up SLI4 exhange busy status from HBA */
2225 lpfc_cmd->exch_busy = pIocbOut->iocb_flag & LPFC_EXCHANGE_BUSY;
2226
James Smart109f6ed2008-12-04 22:39:08 -05002227 if (pnode && NLP_CHK_NODE_ACT(pnode))
2228 atomic_dec(&pnode->cmd_pending);
dea31012005-04-17 16:05:31 -05002229
2230 if (lpfc_cmd->status) {
2231 if (lpfc_cmd->status == IOSTAT_LOCAL_REJECT &&
2232 (lpfc_cmd->result & IOERR_DRVR_MASK))
2233 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
2234 else if (lpfc_cmd->status >= IOSTAT_CNT)
2235 lpfc_cmd->status = IOSTAT_DEFAULT;
2236
James Smarte8b62012007-08-02 11:10:09 -04002237 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05002238 "9030 FCP cmd x%x failed <%d/%d> "
James Smarte8b62012007-08-02 11:10:09 -04002239 "status: x%x result: x%x Data: x%x x%x\n",
2240 cmd->cmnd[0],
2241 cmd->device ? cmd->device->id : 0xffff,
2242 cmd->device ? cmd->device->lun : 0xffff,
2243 lpfc_cmd->status, lpfc_cmd->result,
2244 pIocbOut->iocb.ulpContext,
2245 lpfc_cmd->cur_iocbq.iocb.ulpIoTag);
dea31012005-04-17 16:05:31 -05002246
2247 switch (lpfc_cmd->status) {
2248 case IOSTAT_FCP_RSP_ERROR:
2249 /* Call FCP RSP handler to determine result */
James Smart2e0fef82007-06-17 19:56:36 -05002250 lpfc_handle_fcp_err(vport, lpfc_cmd, pIocbOut);
dea31012005-04-17 16:05:31 -05002251 break;
2252 case IOSTAT_NPORT_BSY:
2253 case IOSTAT_FABRIC_BSY:
James Smart0f1f53a2008-08-24 21:50:18 -04002254 cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED, 0);
James Smartea2151b2008-09-07 11:52:10 -04002255 fast_path_evt = lpfc_alloc_fast_evt(phba);
2256 if (!fast_path_evt)
2257 break;
2258 fast_path_evt->un.fabric_evt.event_type =
2259 FC_REG_FABRIC_EVENT;
2260 fast_path_evt->un.fabric_evt.subcategory =
2261 (lpfc_cmd->status == IOSTAT_NPORT_BSY) ?
2262 LPFC_EVENT_PORT_BUSY : LPFC_EVENT_FABRIC_BUSY;
2263 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
2264 memcpy(&fast_path_evt->un.fabric_evt.wwpn,
2265 &pnode->nlp_portname,
2266 sizeof(struct lpfc_name));
2267 memcpy(&fast_path_evt->un.fabric_evt.wwnn,
2268 &pnode->nlp_nodename,
2269 sizeof(struct lpfc_name));
2270 }
2271 fast_path_evt->vport = vport;
2272 fast_path_evt->work_evt.evt =
2273 LPFC_EVT_FASTPATH_MGMT_EVT;
2274 spin_lock_irqsave(&phba->hbalock, flags);
2275 list_add_tail(&fast_path_evt->work_evt.evt_listp,
2276 &phba->work_list);
2277 spin_unlock_irqrestore(&phba->hbalock, flags);
2278 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05002279 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002280 case IOSTAT_LOCAL_REJECT:
James Smartd7c255b2008-08-24 21:50:00 -04002281 if (lpfc_cmd->result == IOERR_INVALID_RPI ||
James Smart92d7f7b2007-06-17 19:56:38 -05002282 lpfc_cmd->result == IOERR_NO_RESOURCES ||
James Smartd7c255b2008-08-24 21:50:00 -04002283 lpfc_cmd->result == IOERR_ABORT_REQUESTED) {
James Smart92d7f7b2007-06-17 19:56:38 -05002284 cmd->result = ScsiResult(DID_REQUEUE, 0);
James Smart58da1ff2008-04-07 10:15:56 -04002285 break;
James Smarte2a0a9d2008-12-04 22:40:02 -05002286 }
2287
2288 if ((lpfc_cmd->result == IOERR_RX_DMA_FAILED ||
2289 lpfc_cmd->result == IOERR_TX_DMA_FAILED) &&
2290 pIocbOut->iocb.unsli3.sli3_bg.bgstat) {
2291 if (scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
2292 /*
2293 * This is a response for a BG enabled
2294 * cmd. Parse BG error
2295 */
2296 lpfc_parse_bg_err(phba, lpfc_cmd,
2297 pIocbOut);
2298 break;
2299 } else {
2300 lpfc_printf_vlog(vport, KERN_WARNING,
2301 LOG_BG,
2302 "9031 non-zero BGSTAT "
James Smart6a9c52c2009-10-02 15:16:51 -04002303 "on unprotected cmd\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002304 }
2305 }
2306
2307 /* else: fall through */
dea31012005-04-17 16:05:31 -05002308 default:
2309 cmd->result = ScsiResult(DID_ERROR, 0);
2310 break;
2311 }
2312
James Smart58da1ff2008-04-07 10:15:56 -04002313 if (!pnode || !NLP_CHK_NODE_ACT(pnode)
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002314 || (pnode->nlp_state != NLP_STE_MAPPED_NODE))
James Smart0f1f53a2008-08-24 21:50:18 -04002315 cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED,
2316 SAM_STAT_BUSY);
dea31012005-04-17 16:05:31 -05002317 } else {
2318 cmd->result = ScsiResult(DID_OK, 0);
2319 }
2320
2321 if (cmd->result || lpfc_cmd->fcp_rsp->rspSnsLen) {
2322 uint32_t *lp = (uint32_t *)cmd->sense_buffer;
2323
James Smarte8b62012007-08-02 11:10:09 -04002324 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
2325 "0710 Iodone <%d/%d> cmd %p, error "
2326 "x%x SNS x%x x%x Data: x%x x%x\n",
2327 cmd->device->id, cmd->device->lun, cmd,
2328 cmd->result, *lp, *(lp + 3), cmd->retries,
2329 scsi_get_resid(cmd));
dea31012005-04-17 16:05:31 -05002330 }
2331
James Smartea2151b2008-09-07 11:52:10 -04002332 lpfc_update_stats(phba, lpfc_cmd);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002333 result = cmd->result;
James Smart977b5a02008-09-07 11:52:04 -04002334 if (vport->cfg_max_scsicmpl_time &&
2335 time_after(jiffies, lpfc_cmd->start_time +
2336 msecs_to_jiffies(vport->cfg_max_scsicmpl_time))) {
James Smarta257bf92009-04-06 18:48:10 -04002337 spin_lock_irqsave(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002338 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
2339 if (pnode->cmd_qdepth >
2340 atomic_read(&pnode->cmd_pending) &&
2341 (atomic_read(&pnode->cmd_pending) >
2342 LPFC_MIN_TGT_QDEPTH) &&
2343 ((cmd->cmnd[0] == READ_10) ||
2344 (cmd->cmnd[0] == WRITE_10)))
2345 pnode->cmd_qdepth =
2346 atomic_read(&pnode->cmd_pending);
James Smart977b5a02008-09-07 11:52:04 -04002347
James Smart109f6ed2008-12-04 22:39:08 -05002348 pnode->last_change_time = jiffies;
2349 }
James Smarta257bf92009-04-06 18:48:10 -04002350 spin_unlock_irqrestore(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002351 } else if (pnode && NLP_CHK_NODE_ACT(pnode)) {
2352 if ((pnode->cmd_qdepth < LPFC_MAX_TGT_QDEPTH) &&
James Smart977b5a02008-09-07 11:52:04 -04002353 time_after(jiffies, pnode->last_change_time +
James Smart109f6ed2008-12-04 22:39:08 -05002354 msecs_to_jiffies(LPFC_TGTQ_INTERVAL))) {
James Smarta257bf92009-04-06 18:48:10 -04002355 spin_lock_irqsave(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002356 pnode->cmd_qdepth += pnode->cmd_qdepth *
2357 LPFC_TGTQ_RAMPUP_PCENT / 100;
2358 if (pnode->cmd_qdepth > LPFC_MAX_TGT_QDEPTH)
2359 pnode->cmd_qdepth = LPFC_MAX_TGT_QDEPTH;
2360 pnode->last_change_time = jiffies;
James Smarta257bf92009-04-06 18:48:10 -04002361 spin_unlock_irqrestore(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05002362 }
James Smart977b5a02008-09-07 11:52:04 -04002363 }
2364
James Smart1dcb58e2007-04-25 09:51:30 -04002365 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James Smarta257bf92009-04-06 18:48:10 -04002366
2367 /* The sdev is not guaranteed to be valid post scsi_done upcall. */
2368 queue_depth = cmd->device->queue_depth;
2369 scsi_id = cmd->device->id;
dea31012005-04-17 16:05:31 -05002370 cmd->scsi_done(cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002371
Jamie Wellnitzb8086082006-02-28 22:33:12 -05002372 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smartfa61a542008-01-11 01:52:42 -05002373 /*
2374 * If there is a thread waiting for command completion
2375 * wake up the thread.
2376 */
James Smarta257bf92009-04-06 18:48:10 -04002377 spin_lock_irqsave(shost->host_lock, flags);
James Smart495a7142008-06-14 22:52:59 -04002378 lpfc_cmd->pCmd = NULL;
James Smartfa61a542008-01-11 01:52:42 -05002379 if (lpfc_cmd->waitq)
2380 wake_up(lpfc_cmd->waitq);
James Smarta257bf92009-04-06 18:48:10 -04002381 spin_unlock_irqrestore(shost->host_lock, flags);
Jamie Wellnitzb8086082006-02-28 22:33:12 -05002382 lpfc_release_scsi_buf(phba, lpfc_cmd);
2383 return;
2384 }
2385
James Smart92d7f7b2007-06-17 19:56:38 -05002386 if (!result)
James Smarta257bf92009-04-06 18:48:10 -04002387 lpfc_rampup_queue_depth(vport, queue_depth);
James Smart92d7f7b2007-06-17 19:56:38 -05002388
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002389 /*
2390 * Check for queue full. If the lun is reporting queue full, then
2391 * back off the lun queue depth to prevent target overloads.
2392 */
James Smart58da1ff2008-04-07 10:15:56 -04002393 if (result == SAM_STAT_TASK_SET_FULL && pnode &&
2394 NLP_CHK_NODE_ACT(pnode)) {
James Smarta257bf92009-04-06 18:48:10 -04002395 shost_for_each_device(tmp_sdev, shost) {
2396 if (tmp_sdev->id != scsi_id)
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002397 continue;
2398 depth = scsi_track_queue_full(tmp_sdev,
James Smart5ffc2662009-11-18 15:39:44 -05002399 tmp_sdev->queue_depth-1);
2400 if (depth <= 0)
2401 continue;
James Smarte8b62012007-08-02 11:10:09 -04002402 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
2403 "0711 detected queue full - lun queue "
2404 "depth adjusted to %d.\n", depth);
James Smartea2151b2008-09-07 11:52:10 -04002405 lpfc_send_sdev_queuedepth_change_event(phba, vport,
James Smart5ffc2662009-11-18 15:39:44 -05002406 pnode,
2407 tmp_sdev->lun,
2408 depth+1, depth);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05002409 }
2410 }
2411
James Smartfa61a542008-01-11 01:52:42 -05002412 /*
2413 * If there is a thread waiting for command completion
2414 * wake up the thread.
2415 */
James Smarta257bf92009-04-06 18:48:10 -04002416 spin_lock_irqsave(shost->host_lock, flags);
James Smart495a7142008-06-14 22:52:59 -04002417 lpfc_cmd->pCmd = NULL;
James Smartfa61a542008-01-11 01:52:42 -05002418 if (lpfc_cmd->waitq)
2419 wake_up(lpfc_cmd->waitq);
James Smarta257bf92009-04-06 18:48:10 -04002420 spin_unlock_irqrestore(shost->host_lock, flags);
James Smartfa61a542008-01-11 01:52:42 -05002421
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002422 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05002423}
2424
James Smart34b02dc2008-08-24 21:49:55 -04002425/**
James Smart3621a712009-04-06 18:47:14 -04002426 * lpfc_fcpcmd_to_iocb - copy the fcp_cmd data into the IOCB
James Smart34b02dc2008-08-24 21:49:55 -04002427 * @data: A pointer to the immediate command data portion of the IOCB.
2428 * @fcp_cmnd: The FCP Command that is provided by the SCSI layer.
2429 *
2430 * The routine copies the entire FCP command from @fcp_cmnd to @data while
2431 * byte swapping the data to big endian format for transmission on the wire.
2432 **/
2433static void
2434lpfc_fcpcmd_to_iocb(uint8_t *data, struct fcp_cmnd *fcp_cmnd)
2435{
2436 int i, j;
2437 for (i = 0, j = 0; i < sizeof(struct fcp_cmnd);
2438 i += sizeof(uint32_t), j++) {
2439 ((uint32_t *)data)[j] = cpu_to_be32(((uint32_t *)fcp_cmnd)[j]);
2440 }
2441}
2442
James Smart9bad7672008-12-04 22:39:02 -05002443/**
James Smartf1126682009-06-10 17:22:44 -04002444 * lpfc_scsi_prep_cmnd - Wrapper func for convert scsi cmnd to FCP info unit
James Smart9bad7672008-12-04 22:39:02 -05002445 * @vport: The virtual port for which this call is being executed.
2446 * @lpfc_cmd: The scsi command which needs to send.
2447 * @pnode: Pointer to lpfc_nodelist.
2448 *
2449 * This routine initializes fcp_cmnd and iocb data structure from scsi command
James Smart3772a992009-05-22 14:50:54 -04002450 * to transfer for device with SLI3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002451 **/
dea31012005-04-17 16:05:31 -05002452static void
James Smartf1126682009-06-10 17:22:44 -04002453lpfc_scsi_prep_cmnd(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
James Smart2e0fef82007-06-17 19:56:36 -05002454 struct lpfc_nodelist *pnode)
dea31012005-04-17 16:05:31 -05002455{
James Smart2e0fef82007-06-17 19:56:36 -05002456 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002457 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
2458 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
2459 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
2460 struct lpfc_iocbq *piocbq = &(lpfc_cmd->cur_iocbq);
2461 int datadir = scsi_cmnd->sc_data_direction;
James Smart7e2b19f2007-10-29 11:00:39 -04002462 char tag[2];
dea31012005-04-17 16:05:31 -05002463
James Smart58da1ff2008-04-07 10:15:56 -04002464 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
2465 return;
2466
dea31012005-04-17 16:05:31 -05002467 lpfc_cmd->fcp_rsp->rspSnsLen = 0;
James.Smart@Emulex.Com69859dc2005-08-10 15:02:37 -04002468 /* clear task management bits */
2469 lpfc_cmd->fcp_cmnd->fcpCntl2 = 0;
dea31012005-04-17 16:05:31 -05002470
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -04002471 int_to_scsilun(lpfc_cmd->pCmd->device->lun,
2472 &lpfc_cmd->fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -05002473
2474 memcpy(&fcp_cmnd->fcpCdb[0], scsi_cmnd->cmnd, 16);
2475
James Smart7e2b19f2007-10-29 11:00:39 -04002476 if (scsi_populate_tag_msg(scsi_cmnd, tag)) {
2477 switch (tag[0]) {
dea31012005-04-17 16:05:31 -05002478 case HEAD_OF_QUEUE_TAG:
2479 fcp_cmnd->fcpCntl1 = HEAD_OF_Q;
2480 break;
2481 case ORDERED_QUEUE_TAG:
2482 fcp_cmnd->fcpCntl1 = ORDERED_Q;
2483 break;
2484 default:
2485 fcp_cmnd->fcpCntl1 = SIMPLE_Q;
2486 break;
2487 }
2488 } else
2489 fcp_cmnd->fcpCntl1 = 0;
2490
2491 /*
2492 * There are three possibilities here - use scatter-gather segment, use
2493 * the single mapping, or neither. Start the lpfc command prep by
2494 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
2495 * data bde entry.
2496 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05002497 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -05002498 if (datadir == DMA_TO_DEVICE) {
2499 iocb_cmd->ulpCommand = CMD_FCP_IWRITE64_CR;
James Smart3772a992009-05-22 14:50:54 -04002500 if (phba->sli_rev < LPFC_SLI_REV4) {
2501 iocb_cmd->un.fcpi.fcpi_parm = 0;
2502 iocb_cmd->ulpPU = 0;
2503 } else
2504 iocb_cmd->ulpPU = PARM_READ_CHECK;
dea31012005-04-17 16:05:31 -05002505 fcp_cmnd->fcpCntl3 = WRITE_DATA;
2506 phba->fc4OutputRequests++;
2507 } else {
2508 iocb_cmd->ulpCommand = CMD_FCP_IREAD64_CR;
2509 iocb_cmd->ulpPU = PARM_READ_CHECK;
dea31012005-04-17 16:05:31 -05002510 fcp_cmnd->fcpCntl3 = READ_DATA;
2511 phba->fc4InputRequests++;
2512 }
2513 } else {
2514 iocb_cmd->ulpCommand = CMD_FCP_ICMND64_CR;
2515 iocb_cmd->un.fcpi.fcpi_parm = 0;
2516 iocb_cmd->ulpPU = 0;
2517 fcp_cmnd->fcpCntl3 = 0;
2518 phba->fc4ControlRequests++;
2519 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002520 if (phba->sli_rev == 3 &&
2521 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED))
James Smart34b02dc2008-08-24 21:49:55 -04002522 lpfc_fcpcmd_to_iocb(iocb_cmd->unsli3.fcp_ext.icd, fcp_cmnd);
dea31012005-04-17 16:05:31 -05002523 /*
2524 * Finish initializing those IOCB fields that are independent
2525 * of the scsi_cmnd request_buffer
2526 */
2527 piocbq->iocb.ulpContext = pnode->nlp_rpi;
2528 if (pnode->nlp_fcp_info & NLP_FCP_2_DEVICE)
2529 piocbq->iocb.ulpFCP2Rcvy = 1;
James Smart09372822008-01-11 01:52:54 -05002530 else
2531 piocbq->iocb.ulpFCP2Rcvy = 0;
dea31012005-04-17 16:05:31 -05002532
2533 piocbq->iocb.ulpClass = (pnode->nlp_fcp_info & 0x0f);
2534 piocbq->context1 = lpfc_cmd;
2535 piocbq->iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
2536 piocbq->iocb.ulpTimeout = lpfc_cmd->timeout;
James Smart2e0fef82007-06-17 19:56:36 -05002537 piocbq->vport = vport;
dea31012005-04-17 16:05:31 -05002538}
2539
James Smart9bad7672008-12-04 22:39:02 -05002540/**
James Smartf1126682009-06-10 17:22:44 -04002541 * lpfc_scsi_prep_task_mgmt_cmnd - Convert SLI3 scsi TM cmd to FCP info unit
James Smart9bad7672008-12-04 22:39:02 -05002542 * @vport: The virtual port for which this call is being executed.
2543 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2544 * @lun: Logical unit number.
2545 * @task_mgmt_cmd: SCSI task management command.
2546 *
James Smart3772a992009-05-22 14:50:54 -04002547 * This routine creates FCP information unit corresponding to @task_mgmt_cmd
2548 * for device with SLI-3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05002549 *
2550 * Return codes:
2551 * 0 - Error
2552 * 1 - Success
2553 **/
dea31012005-04-17 16:05:31 -05002554static int
James Smartf1126682009-06-10 17:22:44 -04002555lpfc_scsi_prep_task_mgmt_cmd(struct lpfc_vport *vport,
dea31012005-04-17 16:05:31 -05002556 struct lpfc_scsi_buf *lpfc_cmd,
James Smart420b630d2006-07-06 15:50:16 -04002557 unsigned int lun,
dea31012005-04-17 16:05:31 -05002558 uint8_t task_mgmt_cmd)
2559{
dea31012005-04-17 16:05:31 -05002560 struct lpfc_iocbq *piocbq;
2561 IOCB_t *piocb;
2562 struct fcp_cmnd *fcp_cmnd;
James Smart0b18ac42006-05-01 21:50:40 -04002563 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
dea31012005-04-17 16:05:31 -05002564 struct lpfc_nodelist *ndlp = rdata->pnode;
2565
James Smart58da1ff2008-04-07 10:15:56 -04002566 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
2567 ndlp->nlp_state != NLP_STE_MAPPED_NODE)
dea31012005-04-17 16:05:31 -05002568 return 0;
dea31012005-04-17 16:05:31 -05002569
dea31012005-04-17 16:05:31 -05002570 piocbq = &(lpfc_cmd->cur_iocbq);
James Smart2e0fef82007-06-17 19:56:36 -05002571 piocbq->vport = vport;
2572
dea31012005-04-17 16:05:31 -05002573 piocb = &piocbq->iocb;
2574
2575 fcp_cmnd = lpfc_cmd->fcp_cmnd;
James Smart34b02dc2008-08-24 21:49:55 -04002576 /* Clear out any old data in the FCP command area */
2577 memset(fcp_cmnd, 0, sizeof(struct fcp_cmnd));
2578 int_to_scsilun(lun, &fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -05002579 fcp_cmnd->fcpCntl2 = task_mgmt_cmd;
James Smarte2a0a9d2008-12-04 22:40:02 -05002580 if (vport->phba->sli_rev == 3 &&
2581 !(vport->phba->sli3_options & LPFC_SLI3_BG_ENABLED))
James Smart34b02dc2008-08-24 21:49:55 -04002582 lpfc_fcpcmd_to_iocb(piocb->unsli3.fcp_ext.icd, fcp_cmnd);
dea31012005-04-17 16:05:31 -05002583 piocb->ulpCommand = CMD_FCP_ICMND64_CR;
dea31012005-04-17 16:05:31 -05002584 piocb->ulpContext = ndlp->nlp_rpi;
2585 if (ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
2586 piocb->ulpFCP2Rcvy = 1;
2587 }
2588 piocb->ulpClass = (ndlp->nlp_fcp_info & 0x0f);
2589
2590 /* ulpTimeout is only one byte */
2591 if (lpfc_cmd->timeout > 0xff) {
2592 /*
2593 * Do not timeout the command at the firmware level.
2594 * The driver will provide the timeout mechanism.
2595 */
2596 piocb->ulpTimeout = 0;
James Smartf1126682009-06-10 17:22:44 -04002597 } else
dea31012005-04-17 16:05:31 -05002598 piocb->ulpTimeout = lpfc_cmd->timeout;
James Smartf1126682009-06-10 17:22:44 -04002599
2600 if (vport->phba->sli_rev == LPFC_SLI_REV4)
2601 lpfc_sli4_set_rsp_sgl_last(vport->phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05002602
James Smart2e0fef82007-06-17 19:56:36 -05002603 return 1;
dea31012005-04-17 16:05:31 -05002604}
2605
James Smart9bad7672008-12-04 22:39:02 -05002606/**
James Smart3772a992009-05-22 14:50:54 -04002607 * lpfc_scsi_api_table_setup - Set up scsi api fucntion jump table
2608 * @phba: The hba struct for which this call is being executed.
2609 * @dev_grp: The HBA PCI-Device group number.
2610 *
2611 * This routine sets up the SCSI interface API function jump table in @phba
2612 * struct.
2613 * Returns: 0 - success, -ENODEV - failure.
2614 **/
2615int
2616lpfc_scsi_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
2617{
2618
James Smartf1126682009-06-10 17:22:44 -04002619 phba->lpfc_scsi_unprep_dma_buf = lpfc_scsi_unprep_dma_buf;
2620 phba->lpfc_scsi_prep_cmnd = lpfc_scsi_prep_cmnd;
2621 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf;
2622
James Smart3772a992009-05-22 14:50:54 -04002623 switch (dev_grp) {
2624 case LPFC_PCI_DEV_LP:
2625 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s3;
2626 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s3;
James Smart3772a992009-05-22 14:50:54 -04002627 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s3;
2628 break;
James Smartda0436e2009-05-22 14:51:39 -04002629 case LPFC_PCI_DEV_OC:
2630 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s4;
2631 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s4;
James Smartda0436e2009-05-22 14:51:39 -04002632 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s4;
2633 break;
James Smart3772a992009-05-22 14:50:54 -04002634 default:
2635 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2636 "1418 Invalid HBA PCI-device group: 0x%x\n",
2637 dev_grp);
2638 return -ENODEV;
2639 break;
2640 }
2641 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf;
2642 phba->lpfc_rampdown_queue_depth = lpfc_rampdown_queue_depth;
James Smart84d1b002010-02-12 14:42:33 -05002643 phba->lpfc_scsi_cmd_iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
James Smart3772a992009-05-22 14:50:54 -04002644 return 0;
2645}
2646
2647/**
James Smart3621a712009-04-06 18:47:14 -04002648 * lpfc_taskmgmt_def_cmpl - IOCB completion routine for task management command
James Smart9bad7672008-12-04 22:39:02 -05002649 * @phba: The Hba for which this call is being executed.
2650 * @cmdiocbq: Pointer to lpfc_iocbq data structure.
2651 * @rspiocbq: Pointer to lpfc_iocbq data structure.
2652 *
2653 * This routine is IOCB completion routine for device reset and target reset
2654 * routine. This routine release scsi buffer associated with lpfc_cmd.
2655 **/
James Smart7054a602007-04-25 09:52:34 -04002656static void
2657lpfc_tskmgmt_def_cmpl(struct lpfc_hba *phba,
2658 struct lpfc_iocbq *cmdiocbq,
2659 struct lpfc_iocbq *rspiocbq)
2660{
2661 struct lpfc_scsi_buf *lpfc_cmd =
2662 (struct lpfc_scsi_buf *) cmdiocbq->context1;
2663 if (lpfc_cmd)
2664 lpfc_release_scsi_buf(phba, lpfc_cmd);
2665 return;
2666}
2667
James Smart9bad7672008-12-04 22:39:02 -05002668/**
James Smart3621a712009-04-06 18:47:14 -04002669 * lpfc_info - Info entry point of scsi_host_template data structure
James Smart9bad7672008-12-04 22:39:02 -05002670 * @host: The scsi host for which this call is being executed.
2671 *
2672 * This routine provides module information about hba.
2673 *
2674 * Reutrn code:
2675 * Pointer to char - Success.
2676 **/
dea31012005-04-17 16:05:31 -05002677const char *
2678lpfc_info(struct Scsi_Host *host)
2679{
James Smart2e0fef82007-06-17 19:56:36 -05002680 struct lpfc_vport *vport = (struct lpfc_vport *) host->hostdata;
2681 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002682 int len;
2683 static char lpfcinfobuf[384];
2684
2685 memset(lpfcinfobuf,0,384);
2686 if (phba && phba->pcidev){
2687 strncpy(lpfcinfobuf, phba->ModelDesc, 256);
2688 len = strlen(lpfcinfobuf);
2689 snprintf(lpfcinfobuf + len,
2690 384-len,
2691 " on PCI bus %02x device %02x irq %d",
2692 phba->pcidev->bus->number,
2693 phba->pcidev->devfn,
2694 phba->pcidev->irq);
2695 len = strlen(lpfcinfobuf);
2696 if (phba->Port[0]) {
2697 snprintf(lpfcinfobuf + len,
2698 384-len,
2699 " port %s",
2700 phba->Port);
2701 }
James Smart65467b62010-01-26 23:08:29 -05002702 len = strlen(lpfcinfobuf);
2703 if (phba->sli4_hba.link_state.logical_speed) {
2704 snprintf(lpfcinfobuf + len,
2705 384-len,
2706 " Logical Link Speed: %d Mbps",
2707 phba->sli4_hba.link_state.logical_speed * 10);
2708 }
dea31012005-04-17 16:05:31 -05002709 }
2710 return lpfcinfobuf;
2711}
2712
James Smart9bad7672008-12-04 22:39:02 -05002713/**
James Smart3621a712009-04-06 18:47:14 -04002714 * lpfc_poll_rearm_time - Routine to modify fcp_poll timer of hba
James Smart9bad7672008-12-04 22:39:02 -05002715 * @phba: The Hba for which this call is being executed.
2716 *
2717 * This routine modifies fcp_poll_timer field of @phba by cfg_poll_tmo.
2718 * The default value of cfg_poll_tmo is 10 milliseconds.
2719 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002720static __inline__ void lpfc_poll_rearm_timer(struct lpfc_hba * phba)
2721{
2722 unsigned long poll_tmo_expires =
2723 (jiffies + msecs_to_jiffies(phba->cfg_poll_tmo));
2724
2725 if (phba->sli.ring[LPFC_FCP_RING].txcmplq_cnt)
2726 mod_timer(&phba->fcp_poll_timer,
2727 poll_tmo_expires);
2728}
2729
James Smart9bad7672008-12-04 22:39:02 -05002730/**
James Smart3621a712009-04-06 18:47:14 -04002731 * lpfc_poll_start_timer - Routine to start fcp_poll_timer of HBA
James Smart9bad7672008-12-04 22:39:02 -05002732 * @phba: The Hba for which this call is being executed.
2733 *
2734 * This routine starts the fcp_poll_timer of @phba.
2735 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002736void lpfc_poll_start_timer(struct lpfc_hba * phba)
2737{
2738 lpfc_poll_rearm_timer(phba);
2739}
2740
James Smart9bad7672008-12-04 22:39:02 -05002741/**
James Smart3621a712009-04-06 18:47:14 -04002742 * lpfc_poll_timeout - Restart polling timer
James Smart9bad7672008-12-04 22:39:02 -05002743 * @ptr: Map to lpfc_hba data structure pointer.
2744 *
2745 * This routine restarts fcp_poll timer, when FCP ring polling is enable
2746 * and FCP Ring interrupt is disable.
2747 **/
2748
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002749void lpfc_poll_timeout(unsigned long ptr)
2750{
James Smart2e0fef82007-06-17 19:56:36 -05002751 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002752
2753 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04002754 lpfc_sli_handle_fast_ring_event(phba,
2755 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
2756
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002757 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
2758 lpfc_poll_rearm_timer(phba);
2759 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002760}
2761
James Smart9bad7672008-12-04 22:39:02 -05002762/**
James Smart3621a712009-04-06 18:47:14 -04002763 * lpfc_queuecommand - scsi_host_template queuecommand entry point
James Smart9bad7672008-12-04 22:39:02 -05002764 * @cmnd: Pointer to scsi_cmnd data structure.
2765 * @done: Pointer to done routine.
2766 *
2767 * Driver registers this routine to scsi midlayer to submit a @cmd to process.
2768 * This routine prepares an IOCB from scsi command and provides to firmware.
2769 * The @done callback is invoked after driver finished processing the command.
2770 *
2771 * Return value :
2772 * 0 - Success
2773 * SCSI_MLQUEUE_HOST_BUSY - Block all devices served by this host temporarily.
2774 **/
dea31012005-04-17 16:05:31 -05002775static int
2776lpfc_queuecommand(struct scsi_cmnd *cmnd, void (*done) (struct scsi_cmnd *))
2777{
James Smart2e0fef82007-06-17 19:56:36 -05002778 struct Scsi_Host *shost = cmnd->device->host;
2779 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2780 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002781 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05002782 struct lpfc_nodelist *ndlp;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002783 struct lpfc_scsi_buf *lpfc_cmd;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002784 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002785 int err;
dea31012005-04-17 16:05:31 -05002786
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002787 err = fc_remote_port_chkready(rport);
2788 if (err) {
2789 cmnd->result = err;
dea31012005-04-17 16:05:31 -05002790 goto out_fail_command;
2791 }
James Smart1c6f4ef52009-11-18 15:40:49 -05002792 ndlp = rdata->pnode;
dea31012005-04-17 16:05:31 -05002793
James Smarte2a0a9d2008-12-04 22:40:02 -05002794 if (!(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
2795 scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) {
2796
James Smart6a9c52c2009-10-02 15:16:51 -04002797 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2798 "9058 BLKGRD: ERROR: rcvd protected cmd:%02x"
2799 " op:%02x str=%s without registering for"
2800 " BlockGuard - Rejecting command\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05002801 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
2802 dif_op_str[scsi_get_prot_op(cmnd)]);
2803 goto out_fail_command;
2804 }
2805
dea31012005-04-17 16:05:31 -05002806 /*
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04002807 * Catch race where our node has transitioned, but the
2808 * transport is still transitioning.
dea31012005-04-17 16:05:31 -05002809 */
James Smartb522d7d2008-09-07 11:51:56 -04002810 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
2811 cmnd->result = ScsiResult(DID_TRANSPORT_DISRUPTED, 0);
2812 goto out_fail_command;
2813 }
James Smart109f6ed2008-12-04 22:39:08 -05002814 if (vport->cfg_max_scsicmpl_time &&
2815 (atomic_read(&ndlp->cmd_pending) >= ndlp->cmd_qdepth))
James Smart977b5a02008-09-07 11:52:04 -04002816 goto out_host_busy;
Mike Christiea93ce022008-08-17 15:24:41 -05002817
James Smarted957682007-06-17 19:56:37 -05002818 lpfc_cmd = lpfc_get_scsi_buf(phba);
dea31012005-04-17 16:05:31 -05002819 if (lpfc_cmd == NULL) {
James Smarteaf15d52008-12-04 22:39:29 -05002820 lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002821
James Smarte8b62012007-08-02 11:10:09 -04002822 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
2823 "0707 driver's buffer pool is empty, "
2824 "IO busied\n");
dea31012005-04-17 16:05:31 -05002825 goto out_host_busy;
2826 }
2827
2828 /*
2829 * Store the midlayer's command structure for the completion phase
2830 * and complete the command initialization.
2831 */
2832 lpfc_cmd->pCmd = cmnd;
2833 lpfc_cmd->rdata = rdata;
2834 lpfc_cmd->timeout = 0;
James Smart977b5a02008-09-07 11:52:04 -04002835 lpfc_cmd->start_time = jiffies;
dea31012005-04-17 16:05:31 -05002836 cmnd->host_scribble = (unsigned char *)lpfc_cmd;
2837 cmnd->scsi_done = done;
2838
James Smarte2a0a9d2008-12-04 22:40:02 -05002839 if (scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) {
James Smart6a9c52c2009-10-02 15:16:51 -04002840 if (vport->phba->cfg_enable_bg) {
2841 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002842 "9033 BLKGRD: rcvd protected cmd:%02x op:%02x "
2843 "str=%s\n",
2844 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
2845 dif_op_str[scsi_get_prot_op(cmnd)]);
James Smart6a9c52c2009-10-02 15:16:51 -04002846 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002847 "9034 BLKGRD: CDB: %02x %02x %02x %02x %02x "
James Smarte4e74272009-07-19 10:01:38 -04002848 "%02x %02x %02x %02x %02x\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05002849 cmnd->cmnd[0], cmnd->cmnd[1], cmnd->cmnd[2],
2850 cmnd->cmnd[3], cmnd->cmnd[4], cmnd->cmnd[5],
2851 cmnd->cmnd[6], cmnd->cmnd[7], cmnd->cmnd[8],
2852 cmnd->cmnd[9]);
James Smart6a9c52c2009-10-02 15:16:51 -04002853 if (cmnd->cmnd[0] == READ_10)
2854 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002855 "9035 BLKGRD: READ @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09002856 "count %u\n",
2857 (unsigned long long)scsi_get_lba(cmnd),
2858 blk_rq_sectors(cmnd->request));
James Smart6a9c52c2009-10-02 15:16:51 -04002859 else if (cmnd->cmnd[0] == WRITE_10)
2860 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002861 "9036 BLKGRD: WRITE @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09002862 "count %u cmd=%p\n",
James Smart87b5c322008-12-16 10:34:09 -05002863 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09002864 blk_rq_sectors(cmnd->request),
James Smarte2a0a9d2008-12-04 22:40:02 -05002865 cmnd);
James Smart6a9c52c2009-10-02 15:16:51 -04002866 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002867
2868 err = lpfc_bg_scsi_prep_dma_buf(phba, lpfc_cmd);
2869 } else {
James Smart6a9c52c2009-10-02 15:16:51 -04002870 if (vport->phba->cfg_enable_bg) {
James Smarte2a0a9d2008-12-04 22:40:02 -05002871 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smart6a9c52c2009-10-02 15:16:51 -04002872 "9038 BLKGRD: rcvd unprotected cmd:"
2873 "%02x op:%02x str=%s\n",
2874 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
2875 dif_op_str[scsi_get_prot_op(cmnd)]);
2876 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
2877 "9039 BLKGRD: CDB: %02x %02x %02x "
2878 "%02x %02x %02x %02x %02x %02x %02x\n",
2879 cmnd->cmnd[0], cmnd->cmnd[1],
2880 cmnd->cmnd[2], cmnd->cmnd[3],
2881 cmnd->cmnd[4], cmnd->cmnd[5],
2882 cmnd->cmnd[6], cmnd->cmnd[7],
2883 cmnd->cmnd[8], cmnd->cmnd[9]);
2884 if (cmnd->cmnd[0] == READ_10)
2885 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
2886 "9040 dbg: READ @ sector %llu, "
2887 "count %u\n",
2888 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09002889 blk_rq_sectors(cmnd->request));
James Smart6a9c52c2009-10-02 15:16:51 -04002890 else if (cmnd->cmnd[0] == WRITE_10)
2891 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002892 "9041 dbg: WRITE @ sector %llu, "
Tejun Heo83096eb2009-05-07 22:24:39 +09002893 "count %u cmd=%p\n",
James Smart87b5c322008-12-16 10:34:09 -05002894 (unsigned long long)scsi_get_lba(cmnd),
Tejun Heo83096eb2009-05-07 22:24:39 +09002895 blk_rq_sectors(cmnd->request), cmnd);
James Smart6a9c52c2009-10-02 15:16:51 -04002896 else
2897 lpfc_printf_vlog(vport, KERN_WARNING, LOG_BG,
James Smarte2a0a9d2008-12-04 22:40:02 -05002898 "9042 dbg: parser not implemented\n");
James Smart6a9c52c2009-10-02 15:16:51 -04002899 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002900 err = lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
2901 }
2902
dea31012005-04-17 16:05:31 -05002903 if (err)
2904 goto out_host_busy_free_buf;
2905
James Smart2e0fef82007-06-17 19:56:36 -05002906 lpfc_scsi_prep_cmnd(vport, lpfc_cmd, ndlp);
dea31012005-04-17 16:05:31 -05002907
James Smart977b5a02008-09-07 11:52:04 -04002908 atomic_inc(&ndlp->cmd_pending);
James Smart3772a992009-05-22 14:50:54 -04002909 err = lpfc_sli_issue_iocb(phba, LPFC_FCP_RING,
James Smart92d7f7b2007-06-17 19:56:38 -05002910 &lpfc_cmd->cur_iocbq, SLI_IOCB_RET_IOCB);
James Smarteaf15d52008-12-04 22:39:29 -05002911 if (err) {
2912 atomic_dec(&ndlp->cmd_pending);
dea31012005-04-17 16:05:31 -05002913 goto out_host_busy_free_buf;
James Smarteaf15d52008-12-04 22:39:29 -05002914 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002915 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04002916 spin_unlock(shost->host_lock);
2917 lpfc_sli_handle_fast_ring_event(phba,
2918 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
2919
2920 spin_lock(shost->host_lock);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05002921 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
2922 lpfc_poll_rearm_timer(phba);
2923 }
2924
dea31012005-04-17 16:05:31 -05002925 return 0;
2926
2927 out_host_busy_free_buf:
James Smartbcf4dbf2006-07-06 15:50:08 -04002928 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002929 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05002930 out_host_busy:
2931 return SCSI_MLQUEUE_HOST_BUSY;
2932
2933 out_fail_command:
2934 done(cmnd);
2935 return 0;
2936}
2937
James Smart9bad7672008-12-04 22:39:02 -05002938/**
James Smart3621a712009-04-06 18:47:14 -04002939 * lpfc_abort_handler - scsi_host_template eh_abort_handler entry point
James Smart9bad7672008-12-04 22:39:02 -05002940 * @cmnd: Pointer to scsi_cmnd data structure.
2941 *
2942 * This routine aborts @cmnd pending in base driver.
2943 *
2944 * Return code :
2945 * 0x2003 - Error
2946 * 0x2002 - Success
2947 **/
dea31012005-04-17 16:05:31 -05002948static int
James.Smart@Emulex.Com63c59c32005-11-28 11:41:53 -05002949lpfc_abort_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05002950{
James Smart2e0fef82007-06-17 19:56:36 -05002951 struct Scsi_Host *shost = cmnd->device->host;
2952 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2953 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002954 struct lpfc_iocbq *iocb;
2955 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -05002956 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05002957 IOCB_t *cmd, *icmd;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002958 int ret = SUCCESS;
James Smartfa61a542008-01-11 01:52:42 -05002959 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002960
Christof Schmitt65d430f2009-10-30 17:59:29 +01002961 fc_block_scsi_eh(cmnd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002962 lpfc_cmd = (struct lpfc_scsi_buf *)cmnd->host_scribble;
2963 BUG_ON(!lpfc_cmd);
dea31012005-04-17 16:05:31 -05002964
2965 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002966 * If pCmd field of the corresponding lpfc_scsi_buf structure
2967 * points to a different SCSI command, then the driver has
2968 * already completed this command, but the midlayer did not
2969 * see the completion before the eh fired. Just return
2970 * SUCCESS.
dea31012005-04-17 16:05:31 -05002971 */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002972 iocb = &lpfc_cmd->cur_iocbq;
2973 if (lpfc_cmd->pCmd != cmnd)
2974 goto out;
dea31012005-04-17 16:05:31 -05002975
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002976 BUG_ON(iocb->context1 != lpfc_cmd);
dea31012005-04-17 16:05:31 -05002977
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002978 abtsiocb = lpfc_sli_get_iocbq(phba);
2979 if (abtsiocb == NULL) {
2980 ret = FAILED;
dea31012005-04-17 16:05:31 -05002981 goto out;
2982 }
2983
dea31012005-04-17 16:05:31 -05002984 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002985 * The scsi command can not be in txq and it is in flight because the
2986 * pCmd is still pointig at the SCSI command we have to abort. There
2987 * is no need to search the txcmplq. Just send an abort to the FW.
dea31012005-04-17 16:05:31 -05002988 */
dea31012005-04-17 16:05:31 -05002989
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002990 cmd = &iocb->iocb;
2991 icmd = &abtsiocb->iocb;
2992 icmd->un.acxri.abortType = ABORT_TYPE_ABTS;
2993 icmd->un.acxri.abortContextTag = cmd->ulpContext;
James Smart3772a992009-05-22 14:50:54 -04002994 if (phba->sli_rev == LPFC_SLI_REV4)
2995 icmd->un.acxri.abortIoTag = iocb->sli4_xritag;
2996 else
2997 icmd->un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05002998
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04002999 icmd->ulpLe = 1;
3000 icmd->ulpClass = cmd->ulpClass;
James Smart5ffc2662009-11-18 15:39:44 -05003001
3002 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
3003 abtsiocb->fcp_wqidx = iocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05003004 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05003005
James Smart2e0fef82007-06-17 19:56:36 -05003006 if (lpfc_is_link_up(phba))
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003007 icmd->ulpCommand = CMD_ABORT_XRI_CN;
3008 else
3009 icmd->ulpCommand = CMD_CLOSE_XRI_CN;
dea31012005-04-17 16:05:31 -05003010
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003011 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smart2e0fef82007-06-17 19:56:36 -05003012 abtsiocb->vport = vport;
James Smart3772a992009-05-22 14:50:54 -04003013 if (lpfc_sli_issue_iocb(phba, LPFC_FCP_RING, abtsiocb, 0) ==
3014 IOCB_ERROR) {
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003015 lpfc_sli_release_iocbq(phba, abtsiocb);
3016 ret = FAILED;
3017 goto out;
3018 }
3019
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003020 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
James Smart45ed1192009-10-02 15:17:02 -04003021 lpfc_sli_handle_fast_ring_event(phba,
3022 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003023
James Smartfa61a542008-01-11 01:52:42 -05003024 lpfc_cmd->waitq = &waitq;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003025 /* Wait for abort to complete */
James Smartfa61a542008-01-11 01:52:42 -05003026 wait_event_timeout(waitq,
3027 (lpfc_cmd->pCmd != cmnd),
3028 (2*vport->cfg_devloss_tmo*HZ));
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003029
James Smartfa61a542008-01-11 01:52:42 -05003030 spin_lock_irq(shost->host_lock);
3031 lpfc_cmd->waitq = NULL;
3032 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003033
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003034 if (lpfc_cmd->pCmd == cmnd) {
3035 ret = FAILED;
James Smarte8b62012007-08-02 11:10:09 -04003036 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3037 "0748 abort handler timed out waiting "
3038 "for abort to complete: ret %#x, ID %d, "
3039 "LUN %d, snum %#lx\n",
3040 ret, cmnd->device->id, cmnd->device->lun,
3041 cmnd->serial_number);
dea31012005-04-17 16:05:31 -05003042 }
3043
3044 out:
James Smarte8b62012007-08-02 11:10:09 -04003045 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3046 "0749 SCSI Layer I/O Abort Request Status x%x ID %d "
3047 "LUN %d snum %#lx\n", ret, cmnd->device->id,
3048 cmnd->device->lun, cmnd->serial_number);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003049 return ret;
dea31012005-04-17 16:05:31 -05003050}
3051
James Smartbbb9d182009-06-10 17:23:16 -04003052static char *
3053lpfc_taskmgmt_name(uint8_t task_mgmt_cmd)
3054{
3055 switch (task_mgmt_cmd) {
3056 case FCP_ABORT_TASK_SET:
3057 return "ABORT_TASK_SET";
3058 case FCP_CLEAR_TASK_SET:
3059 return "FCP_CLEAR_TASK_SET";
3060 case FCP_BUS_RESET:
3061 return "FCP_BUS_RESET";
3062 case FCP_LUN_RESET:
3063 return "FCP_LUN_RESET";
3064 case FCP_TARGET_RESET:
3065 return "FCP_TARGET_RESET";
3066 case FCP_CLEAR_ACA:
3067 return "FCP_CLEAR_ACA";
3068 case FCP_TERMINATE_TASK:
3069 return "FCP_TERMINATE_TASK";
3070 default:
3071 return "unknown";
3072 }
3073}
3074
3075/**
3076 * lpfc_send_taskmgmt - Generic SCSI Task Mgmt Handler
3077 * @vport: The virtual port for which this call is being executed.
3078 * @rdata: Pointer to remote port local data
3079 * @tgt_id: Target ID of remote device.
3080 * @lun_id: Lun number for the TMF
3081 * @task_mgmt_cmd: type of TMF to send
3082 *
3083 * This routine builds and sends a TMF (SCSI Task Mgmt Function) to
3084 * a remote port.
3085 *
3086 * Return Code:
3087 * 0x2003 - Error
3088 * 0x2002 - Success.
3089 **/
3090static int
3091lpfc_send_taskmgmt(struct lpfc_vport *vport, struct lpfc_rport_data *rdata,
3092 unsigned tgt_id, unsigned int lun_id,
3093 uint8_t task_mgmt_cmd)
3094{
3095 struct lpfc_hba *phba = vport->phba;
3096 struct lpfc_scsi_buf *lpfc_cmd;
3097 struct lpfc_iocbq *iocbq;
3098 struct lpfc_iocbq *iocbqrsp;
3099 int ret;
3100 int status;
3101
3102 if (!rdata->pnode || !NLP_CHK_NODE_ACT(rdata->pnode))
3103 return FAILED;
3104
3105 lpfc_cmd = lpfc_get_scsi_buf(phba);
3106 if (lpfc_cmd == NULL)
3107 return FAILED;
3108 lpfc_cmd->timeout = 60;
3109 lpfc_cmd->rdata = rdata;
3110
3111 status = lpfc_scsi_prep_task_mgmt_cmd(vport, lpfc_cmd, lun_id,
3112 task_mgmt_cmd);
3113 if (!status) {
3114 lpfc_release_scsi_buf(phba, lpfc_cmd);
3115 return FAILED;
3116 }
3117
3118 iocbq = &lpfc_cmd->cur_iocbq;
3119 iocbqrsp = lpfc_sli_get_iocbq(phba);
3120 if (iocbqrsp == NULL) {
3121 lpfc_release_scsi_buf(phba, lpfc_cmd);
3122 return FAILED;
3123 }
3124
3125 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3126 "0702 Issue %s to TGT %d LUN %d "
3127 "rpi x%x nlp_flag x%x\n",
3128 lpfc_taskmgmt_name(task_mgmt_cmd), tgt_id, lun_id,
3129 rdata->pnode->nlp_rpi, rdata->pnode->nlp_flag);
3130
3131 status = lpfc_sli_issue_iocb_wait(phba, LPFC_FCP_RING,
3132 iocbq, iocbqrsp, lpfc_cmd->timeout);
3133 if (status != IOCB_SUCCESS) {
3134 if (status == IOCB_TIMEDOUT) {
3135 iocbq->iocb_cmpl = lpfc_tskmgmt_def_cmpl;
3136 ret = TIMEOUT_ERROR;
3137 } else
3138 ret = FAILED;
3139 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
3140 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3141 "0727 TMF %s to TGT %d LUN %d failed (%d, %d)\n",
3142 lpfc_taskmgmt_name(task_mgmt_cmd),
3143 tgt_id, lun_id, iocbqrsp->iocb.ulpStatus,
3144 iocbqrsp->iocb.un.ulpWord[4]);
3145 } else
3146 ret = SUCCESS;
3147
3148 lpfc_sli_release_iocbq(phba, iocbqrsp);
3149
3150 if (ret != TIMEOUT_ERROR)
3151 lpfc_release_scsi_buf(phba, lpfc_cmd);
3152
3153 return ret;
3154}
3155
3156/**
3157 * lpfc_chk_tgt_mapped -
3158 * @vport: The virtual port to check on
3159 * @cmnd: Pointer to scsi_cmnd data structure.
3160 *
3161 * This routine delays until the scsi target (aka rport) for the
3162 * command exists (is present and logged in) or we declare it non-existent.
3163 *
3164 * Return code :
3165 * 0x2003 - Error
3166 * 0x2002 - Success
3167 **/
3168static int
3169lpfc_chk_tgt_mapped(struct lpfc_vport *vport, struct scsi_cmnd *cmnd)
3170{
3171 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003172 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003173 unsigned long later;
3174
James Smart1c6f4ef52009-11-18 15:40:49 -05003175 if (!rdata) {
3176 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3177 "0797 Tgt Map rport failure: rdata x%p\n", rdata);
3178 return FAILED;
3179 }
3180 pnode = rdata->pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003181 /*
3182 * If target is not in a MAPPED state, delay until
3183 * target is rediscovered or devloss timeout expires.
3184 */
3185 later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
3186 while (time_after(later, jiffies)) {
3187 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
3188 return FAILED;
3189 if (pnode->nlp_state == NLP_STE_MAPPED_NODE)
3190 return SUCCESS;
3191 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
3192 rdata = cmnd->device->hostdata;
3193 if (!rdata)
3194 return FAILED;
3195 pnode = rdata->pnode;
3196 }
3197 if (!pnode || !NLP_CHK_NODE_ACT(pnode) ||
3198 (pnode->nlp_state != NLP_STE_MAPPED_NODE))
3199 return FAILED;
3200 return SUCCESS;
3201}
3202
3203/**
3204 * lpfc_reset_flush_io_context -
3205 * @vport: The virtual port (scsi_host) for the flush context
3206 * @tgt_id: If aborting by Target contect - specifies the target id
3207 * @lun_id: If aborting by Lun context - specifies the lun id
3208 * @context: specifies the context level to flush at.
3209 *
3210 * After a reset condition via TMF, we need to flush orphaned i/o
3211 * contexts from the adapter. This routine aborts any contexts
3212 * outstanding, then waits for their completions. The wait is
3213 * bounded by devloss_tmo though.
3214 *
3215 * Return code :
3216 * 0x2003 - Error
3217 * 0x2002 - Success
3218 **/
3219static int
3220lpfc_reset_flush_io_context(struct lpfc_vport *vport, uint16_t tgt_id,
3221 uint64_t lun_id, lpfc_ctx_cmd context)
3222{
3223 struct lpfc_hba *phba = vport->phba;
3224 unsigned long later;
3225 int cnt;
3226
3227 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
3228 if (cnt)
3229 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
3230 tgt_id, lun_id, context);
3231 later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
3232 while (time_after(later, jiffies) && cnt) {
3233 schedule_timeout_uninterruptible(msecs_to_jiffies(20));
3234 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
3235 }
3236 if (cnt) {
3237 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3238 "0724 I/O flush failure for context %s : cnt x%x\n",
3239 ((context == LPFC_CTX_LUN) ? "LUN" :
3240 ((context == LPFC_CTX_TGT) ? "TGT" :
3241 ((context == LPFC_CTX_HOST) ? "HOST" : "Unknown"))),
3242 cnt);
3243 return FAILED;
3244 }
3245 return SUCCESS;
3246}
3247
James Smart9bad7672008-12-04 22:39:02 -05003248/**
James Smart3621a712009-04-06 18:47:14 -04003249 * lpfc_device_reset_handler - scsi_host_template eh_device_reset entry point
James Smart9bad7672008-12-04 22:39:02 -05003250 * @cmnd: Pointer to scsi_cmnd data structure.
3251 *
James Smartbbb9d182009-06-10 17:23:16 -04003252 * This routine does a device reset by sending a LUN_RESET task management
James Smart9bad7672008-12-04 22:39:02 -05003253 * command.
3254 *
3255 * Return code :
3256 * 0x2003 - Error
James Smart3621a712009-04-06 18:47:14 -04003257 * 0x2002 - Success
James Smart9bad7672008-12-04 22:39:02 -05003258 **/
dea31012005-04-17 16:05:31 -05003259static int
James Smart7054a602007-04-25 09:52:34 -04003260lpfc_device_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05003261{
James Smart2e0fef82007-06-17 19:56:36 -05003262 struct Scsi_Host *shost = cmnd->device->host;
3263 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
dea31012005-04-17 16:05:31 -05003264 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003265 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003266 unsigned tgt_id = cmnd->device->id;
3267 unsigned int lun_id = cmnd->device->lun;
James Smartea2151b2008-09-07 11:52:10 -04003268 struct lpfc_scsi_event_header scsi_event;
James Smartbbb9d182009-06-10 17:23:16 -04003269 int status;
dea31012005-04-17 16:05:31 -05003270
James Smart1c6f4ef52009-11-18 15:40:49 -05003271 if (!rdata) {
3272 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3273 "0798 Device Reset rport failure: rdata x%p\n", rdata);
3274 return FAILED;
3275 }
3276 pnode = rdata->pnode;
Christof Schmitt65d430f2009-10-30 17:59:29 +01003277 fc_block_scsi_eh(cmnd);
James Smartbbb9d182009-06-10 17:23:16 -04003278
3279 status = lpfc_chk_tgt_mapped(vport, cmnd);
3280 if (status == FAILED) {
3281 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3282 "0721 Device Reset rport failure: rdata x%p\n", rdata);
3283 return FAILED;
3284 }
3285
3286 scsi_event.event_type = FC_REG_SCSI_EVENT;
3287 scsi_event.subcategory = LPFC_EVENT_LUNRESET;
3288 scsi_event.lun = lun_id;
3289 memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
3290 memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
3291
3292 fc_host_post_vendor_event(shost, fc_get_event_number(),
3293 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
3294
3295 status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
3296 FCP_LUN_RESET);
3297
3298 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3299 "0713 SCSI layer issued Device Reset (%d, %d) "
3300 "return x%x\n", tgt_id, lun_id, status);
3301
dea31012005-04-17 16:05:31 -05003302 /*
James Smartbbb9d182009-06-10 17:23:16 -04003303 * We have to clean up i/o as : they may be orphaned by the TMF;
3304 * or if the TMF failed, they may be in an indeterminate state.
3305 * So, continue on.
3306 * We will report success if all the i/o aborts successfully.
dea31012005-04-17 16:05:31 -05003307 */
James Smartbbb9d182009-06-10 17:23:16 -04003308 status = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
3309 LPFC_CTX_LUN);
3310 return status;
3311}
3312
3313/**
3314 * lpfc_target_reset_handler - scsi_host_template eh_target_reset entry point
3315 * @cmnd: Pointer to scsi_cmnd data structure.
3316 *
3317 * This routine does a target reset by sending a TARGET_RESET task management
3318 * command.
3319 *
3320 * Return code :
3321 * 0x2003 - Error
3322 * 0x2002 - Success
3323 **/
3324static int
3325lpfc_target_reset_handler(struct scsi_cmnd *cmnd)
3326{
3327 struct Scsi_Host *shost = cmnd->device->host;
3328 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3329 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05003330 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04003331 unsigned tgt_id = cmnd->device->id;
3332 unsigned int lun_id = cmnd->device->lun;
3333 struct lpfc_scsi_event_header scsi_event;
3334 int status;
3335
James Smart1c6f4ef52009-11-18 15:40:49 -05003336 if (!rdata) {
3337 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3338 "0799 Target Reset rport failure: rdata x%p\n", rdata);
3339 return FAILED;
3340 }
3341 pnode = rdata->pnode;
Christof Schmitt65d430f2009-10-30 17:59:29 +01003342 fc_block_scsi_eh(cmnd);
James Smartbbb9d182009-06-10 17:23:16 -04003343
3344 status = lpfc_chk_tgt_mapped(vport, cmnd);
3345 if (status == FAILED) {
3346 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3347 "0722 Target Reset rport failure: rdata x%p\n", rdata);
3348 return FAILED;
dea31012005-04-17 16:05:31 -05003349 }
James Smartea2151b2008-09-07 11:52:10 -04003350
3351 scsi_event.event_type = FC_REG_SCSI_EVENT;
3352 scsi_event.subcategory = LPFC_EVENT_TGTRESET;
3353 scsi_event.lun = 0;
3354 memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
3355 memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
3356
James Smartbbb9d182009-06-10 17:23:16 -04003357 fc_host_post_vendor_event(shost, fc_get_event_number(),
3358 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04003359
James Smartbbb9d182009-06-10 17:23:16 -04003360 status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
3361 FCP_TARGET_RESET);
dea31012005-04-17 16:05:31 -05003362
James Smarte8b62012007-08-02 11:10:09 -04003363 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
James Smartbbb9d182009-06-10 17:23:16 -04003364 "0723 SCSI layer issued Target Reset (%d, %d) "
3365 "return x%x\n", tgt_id, lun_id, status);
3366
3367 /*
3368 * We have to clean up i/o as : they may be orphaned by the TMF;
3369 * or if the TMF failed, they may be in an indeterminate state.
3370 * So, continue on.
3371 * We will report success if all the i/o aborts successfully.
3372 */
3373 status = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
3374 LPFC_CTX_TGT);
3375 return status;
dea31012005-04-17 16:05:31 -05003376}
3377
James Smart9bad7672008-12-04 22:39:02 -05003378/**
James Smart3621a712009-04-06 18:47:14 -04003379 * lpfc_bus_reset_handler - scsi_host_template eh_bus_reset_handler entry point
James Smart9bad7672008-12-04 22:39:02 -05003380 * @cmnd: Pointer to scsi_cmnd data structure.
3381 *
James Smartbbb9d182009-06-10 17:23:16 -04003382 * This routine does target reset to all targets on @cmnd->device->host.
3383 * This emulates Parallel SCSI Bus Reset Semantics.
James Smart9bad7672008-12-04 22:39:02 -05003384 *
James Smartbbb9d182009-06-10 17:23:16 -04003385 * Return code :
3386 * 0x2003 - Error
3387 * 0x2002 - Success
James Smart9bad7672008-12-04 22:39:02 -05003388 **/
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04003389static int
James Smart7054a602007-04-25 09:52:34 -04003390lpfc_bus_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05003391{
James Smart2e0fef82007-06-17 19:56:36 -05003392 struct Scsi_Host *shost = cmnd->device->host;
3393 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
dea31012005-04-17 16:05:31 -05003394 struct lpfc_nodelist *ndlp = NULL;
James Smartea2151b2008-09-07 11:52:10 -04003395 struct lpfc_scsi_event_header scsi_event;
James Smartbbb9d182009-06-10 17:23:16 -04003396 int match;
3397 int ret = SUCCESS, status, i;
James Smartea2151b2008-09-07 11:52:10 -04003398
3399 scsi_event.event_type = FC_REG_SCSI_EVENT;
3400 scsi_event.subcategory = LPFC_EVENT_BUSRESET;
3401 scsi_event.lun = 0;
3402 memcpy(scsi_event.wwpn, &vport->fc_portname, sizeof(struct lpfc_name));
3403 memcpy(scsi_event.wwnn, &vport->fc_nodename, sizeof(struct lpfc_name));
3404
James Smartbbb9d182009-06-10 17:23:16 -04003405 fc_host_post_vendor_event(shost, fc_get_event_number(),
3406 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
dea31012005-04-17 16:05:31 -05003407
Christof Schmitt65d430f2009-10-30 17:59:29 +01003408 fc_block_scsi_eh(cmnd);
James Smartbbb9d182009-06-10 17:23:16 -04003409
dea31012005-04-17 16:05:31 -05003410 /*
3411 * Since the driver manages a single bus device, reset all
3412 * targets known to the driver. Should any target reset
3413 * fail, this routine returns failure to the midlayer.
3414 */
James Smarte17da182006-07-06 15:49:25 -04003415 for (i = 0; i < LPFC_MAX_TARGET; i++) {
James Smart685f0bf2007-04-25 09:53:08 -04003416 /* Search for mapped node by target ID */
dea31012005-04-17 16:05:31 -05003417 match = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003418 spin_lock_irq(shost->host_lock);
3419 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05003420 if (!NLP_CHK_NODE_ACT(ndlp))
3421 continue;
James Smart685f0bf2007-04-25 09:53:08 -04003422 if (ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
James Smart915caaa2008-06-14 22:52:38 -04003423 ndlp->nlp_sid == i &&
James Smart685f0bf2007-04-25 09:53:08 -04003424 ndlp->rport) {
dea31012005-04-17 16:05:31 -05003425 match = 1;
3426 break;
3427 }
3428 }
James Smart2e0fef82007-06-17 19:56:36 -05003429 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003430 if (!match)
3431 continue;
James Smartbbb9d182009-06-10 17:23:16 -04003432
3433 status = lpfc_send_taskmgmt(vport, ndlp->rport->dd_data,
3434 i, 0, FCP_TARGET_RESET);
3435
3436 if (status != SUCCESS) {
James Smarte8b62012007-08-02 11:10:09 -04003437 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3438 "0700 Bus Reset on target %d failed\n",
3439 i);
James Smart915caaa2008-06-14 22:52:38 -04003440 ret = FAILED;
dea31012005-04-17 16:05:31 -05003441 }
3442 }
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003443 /*
James Smartbbb9d182009-06-10 17:23:16 -04003444 * We have to clean up i/o as : they may be orphaned by the TMFs
3445 * above; or if any of the TMFs failed, they may be in an
3446 * indeterminate state.
3447 * We will report success if all the i/o aborts successfully.
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003448 */
James Smartbbb9d182009-06-10 17:23:16 -04003449
3450 status = lpfc_reset_flush_io_context(vport, 0, 0, LPFC_CTX_HOST);
3451 if (status != SUCCESS)
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05003452 ret = FAILED;
James Smartbbb9d182009-06-10 17:23:16 -04003453
James Smarte8b62012007-08-02 11:10:09 -04003454 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3455 "0714 SCSI layer issued Bus Reset Data: x%x\n", ret);
dea31012005-04-17 16:05:31 -05003456 return ret;
3457}
3458
James Smart9bad7672008-12-04 22:39:02 -05003459/**
James Smart3621a712009-04-06 18:47:14 -04003460 * lpfc_slave_alloc - scsi_host_template slave_alloc entry point
James Smart9bad7672008-12-04 22:39:02 -05003461 * @sdev: Pointer to scsi_device.
3462 *
3463 * This routine populates the cmds_per_lun count + 2 scsi_bufs into this host's
3464 * globally available list of scsi buffers. This routine also makes sure scsi
3465 * buffer is not allocated more than HBA limit conveyed to midlayer. This list
3466 * of scsi buffer exists for the lifetime of the driver.
3467 *
3468 * Return codes:
3469 * non-0 - Error
3470 * 0 - Success
3471 **/
dea31012005-04-17 16:05:31 -05003472static int
dea31012005-04-17 16:05:31 -05003473lpfc_slave_alloc(struct scsi_device *sdev)
3474{
James Smart2e0fef82007-06-17 19:56:36 -05003475 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
3476 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003477 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
James Smart3772a992009-05-22 14:50:54 -04003478 uint32_t total = 0;
dea31012005-04-17 16:05:31 -05003479 uint32_t num_to_alloc = 0;
James Smart3772a992009-05-22 14:50:54 -04003480 int num_allocated = 0;
dea31012005-04-17 16:05:31 -05003481
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003482 if (!rport || fc_remote_port_chkready(rport))
dea31012005-04-17 16:05:31 -05003483 return -ENXIO;
3484
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003485 sdev->hostdata = rport->dd_data;
dea31012005-04-17 16:05:31 -05003486
3487 /*
3488 * Populate the cmds_per_lun count scsi_bufs into this host's globally
3489 * available list of scsi buffers. Don't allocate more than the
James.Smart@Emulex.Coma784efb2005-10-28 20:29:51 -04003490 * HBA limit conveyed to the midlayer via the host structure. The
3491 * formula accounts for the lun_queue_depth + error handlers + 1
3492 * extra. This list of scsi bufs exists for the lifetime of the driver.
dea31012005-04-17 16:05:31 -05003493 */
3494 total = phba->total_scsi_bufs;
James Smart3de2a652007-08-02 11:09:59 -04003495 num_to_alloc = vport->cfg_lun_queue_depth + 2;
James Smart92d7f7b2007-06-17 19:56:38 -05003496
3497 /* Allow some exchanges to be available always to complete discovery */
3498 if (total >= phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04003499 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3500 "0704 At limitation of %d preallocated "
3501 "command buffers\n", total);
dea31012005-04-17 16:05:31 -05003502 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05003503 /* Allow some exchanges to be available always to complete discovery */
3504 } else if (total + num_to_alloc >
3505 phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04003506 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3507 "0705 Allocation request of %d "
3508 "command buffers will exceed max of %d. "
3509 "Reducing allocation request to %d.\n",
3510 num_to_alloc, phba->cfg_hba_queue_depth,
3511 (phba->cfg_hba_queue_depth - total));
dea31012005-04-17 16:05:31 -05003512 num_to_alloc = phba->cfg_hba_queue_depth - total;
3513 }
James Smart3772a992009-05-22 14:50:54 -04003514 num_allocated = lpfc_new_scsi_buf(vport, num_to_alloc);
3515 if (num_to_alloc != num_allocated) {
3516 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3517 "0708 Allocation request of %d "
3518 "command buffers did not succeed. "
3519 "Allocated %d buffers.\n",
3520 num_to_alloc, num_allocated);
dea31012005-04-17 16:05:31 -05003521 }
James Smart1c6f4ef52009-11-18 15:40:49 -05003522 if (num_allocated > 0)
3523 phba->total_scsi_bufs += num_allocated;
dea31012005-04-17 16:05:31 -05003524 return 0;
3525}
3526
James Smart9bad7672008-12-04 22:39:02 -05003527/**
James Smart3621a712009-04-06 18:47:14 -04003528 * lpfc_slave_configure - scsi_host_template slave_configure entry point
James Smart9bad7672008-12-04 22:39:02 -05003529 * @sdev: Pointer to scsi_device.
3530 *
3531 * This routine configures following items
3532 * - Tag command queuing support for @sdev if supported.
3533 * - Dev loss time out value of fc_rport.
3534 * - Enable SLI polling for fcp ring if ENABLE_FCP_RING_POLLING flag is set.
3535 *
3536 * Return codes:
3537 * 0 - Success
3538 **/
dea31012005-04-17 16:05:31 -05003539static int
3540lpfc_slave_configure(struct scsi_device *sdev)
3541{
James Smart2e0fef82007-06-17 19:56:36 -05003542 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
3543 struct lpfc_hba *phba = vport->phba;
3544 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
dea31012005-04-17 16:05:31 -05003545
3546 if (sdev->tagged_supported)
James Smart3de2a652007-08-02 11:09:59 -04003547 scsi_activate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05003548 else
James Smart3de2a652007-08-02 11:09:59 -04003549 scsi_deactivate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05003550
3551 /*
3552 * Initialize the fc transport attributes for the target
3553 * containing this scsi device. Also note that the driver's
3554 * target pointer is stored in the starget_data for the
3555 * driver's sysfs entry point functions.
3556 */
James Smart3de2a652007-08-02 11:09:59 -04003557 rport->dev_loss_tmo = vport->cfg_devloss_tmo;
dea31012005-04-17 16:05:31 -05003558
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003559 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04003560 lpfc_sli_handle_fast_ring_event(phba,
3561 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003562 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
3563 lpfc_poll_rearm_timer(phba);
3564 }
3565
dea31012005-04-17 16:05:31 -05003566 return 0;
3567}
3568
James Smart9bad7672008-12-04 22:39:02 -05003569/**
James Smart3621a712009-04-06 18:47:14 -04003570 * lpfc_slave_destroy - slave_destroy entry point of SHT data structure
James Smart9bad7672008-12-04 22:39:02 -05003571 * @sdev: Pointer to scsi_device.
3572 *
3573 * This routine sets @sdev hostatdata filed to null.
3574 **/
dea31012005-04-17 16:05:31 -05003575static void
3576lpfc_slave_destroy(struct scsi_device *sdev)
3577{
3578 sdev->hostdata = NULL;
3579 return;
3580}
3581
James Smart92d7f7b2007-06-17 19:56:38 -05003582
dea31012005-04-17 16:05:31 -05003583struct scsi_host_template lpfc_template = {
3584 .module = THIS_MODULE,
3585 .name = LPFC_DRIVER_NAME,
3586 .info = lpfc_info,
3587 .queuecommand = lpfc_queuecommand,
3588 .eh_abort_handler = lpfc_abort_handler,
James Smartbbb9d182009-06-10 17:23:16 -04003589 .eh_device_reset_handler = lpfc_device_reset_handler,
3590 .eh_target_reset_handler = lpfc_target_reset_handler,
James Smart7054a602007-04-25 09:52:34 -04003591 .eh_bus_reset_handler = lpfc_bus_reset_handler,
dea31012005-04-17 16:05:31 -05003592 .slave_alloc = lpfc_slave_alloc,
3593 .slave_configure = lpfc_slave_configure,
3594 .slave_destroy = lpfc_slave_destroy,
James Smart47a86172007-04-25 09:53:22 -04003595 .scan_finished = lpfc_scan_finished,
dea31012005-04-17 16:05:31 -05003596 .this_id = -1,
James Smart83108bd2008-01-11 01:53:09 -05003597 .sg_tablesize = LPFC_DEFAULT_SG_SEG_CNT,
dea31012005-04-17 16:05:31 -05003598 .cmd_per_lun = LPFC_CMD_PER_LUN,
3599 .use_clustering = ENABLE_CLUSTERING,
James Smart2e0fef82007-06-17 19:56:36 -05003600 .shost_attrs = lpfc_hba_attrs,
James.Smart@Emulex.Com564b2962005-06-25 10:34:17 -04003601 .max_sectors = 0xFFFF,
James Smartf1c3b0f2009-07-19 10:01:32 -04003602 .vendor_id = LPFC_NL_VENDOR_ID,
James Smart5ffc2662009-11-18 15:39:44 -05003603 .change_queue_depth = lpfc_change_queue_depth,
dea31012005-04-17 16:05:31 -05003604};
James Smart3de2a652007-08-02 11:09:59 -04003605
3606struct scsi_host_template lpfc_vport_template = {
3607 .module = THIS_MODULE,
3608 .name = LPFC_DRIVER_NAME,
3609 .info = lpfc_info,
3610 .queuecommand = lpfc_queuecommand,
3611 .eh_abort_handler = lpfc_abort_handler,
James Smartbbb9d182009-06-10 17:23:16 -04003612 .eh_device_reset_handler = lpfc_device_reset_handler,
3613 .eh_target_reset_handler = lpfc_target_reset_handler,
James Smart3de2a652007-08-02 11:09:59 -04003614 .eh_bus_reset_handler = lpfc_bus_reset_handler,
3615 .slave_alloc = lpfc_slave_alloc,
3616 .slave_configure = lpfc_slave_configure,
3617 .slave_destroy = lpfc_slave_destroy,
3618 .scan_finished = lpfc_scan_finished,
3619 .this_id = -1,
James Smart83108bd2008-01-11 01:53:09 -05003620 .sg_tablesize = LPFC_DEFAULT_SG_SEG_CNT,
James Smart3de2a652007-08-02 11:09:59 -04003621 .cmd_per_lun = LPFC_CMD_PER_LUN,
3622 .use_clustering = ENABLE_CLUSTERING,
3623 .shost_attrs = lpfc_vport_attrs,
3624 .max_sectors = 0xFFFF,
James Smart5ffc2662009-11-18 15:39:44 -05003625 .change_queue_depth = lpfc_change_queue_depth,
James Smart3de2a652007-08-02 11:09:59 -04003626};