blob: bb158880685c5862e57d3930b9b5241d53ac88db [file] [log] [blame]
James Smartd85296c2012-03-01 22:38:13 -05001/*******************************************************************
dea31012005-04-17 16:05:31 -05002 * 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 Smartacd68592012-01-18 16:25:09 -05004 * Copyright (C) 2004-2012 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
dea31012005-04-17 16:05:31 -050021#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050023#include <linux/interrupt.h>
Paul Gortmaker09703662011-05-27 09:37:25 -040024#include <linux/export.h>
James Smarta90f5682006-08-17 11:58:04 -040025#include <linux/delay.h>
James Smarte2a0a9d2008-12-04 22:40:02 -050026#include <asm/unaligned.h>
dea31012005-04-17 16:05:31 -050027
28#include <scsi/scsi.h>
29#include <scsi/scsi_device.h>
James Smarte2a0a9d2008-12-04 22:40:02 -050030#include <scsi/scsi_eh.h>
dea31012005-04-17 16:05:31 -050031#include <scsi/scsi_host.h>
32#include <scsi/scsi_tcq.h>
33#include <scsi/scsi_transport_fc.h>
34
35#include "lpfc_version.h"
James Smartda0436e2009-05-22 14:51:39 -040036#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050037#include "lpfc_hw.h"
38#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040039#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040040#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050041#include "lpfc_disc.h"
dea31012005-04-17 16:05:31 -050042#include "lpfc.h"
James Smart9a6b09c2012-03-01 22:37:42 -050043#include "lpfc_scsi.h"
dea31012005-04-17 16:05:31 -050044#include "lpfc_logmsg.h"
45#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050046#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050047
48#define LPFC_RESET_WAIT 2
49#define LPFC_ABORT_WAIT 2
50
James Smarte2a0a9d2008-12-04 22:40:02 -050051int _dump_buf_done;
52
53static char *dif_op_str[] = {
James Smart9a6b09c2012-03-01 22:37:42 -050054 "PROT_NORMAL",
55 "PROT_READ_INSERT",
56 "PROT_WRITE_STRIP",
57 "PROT_READ_STRIP",
58 "PROT_WRITE_INSERT",
59 "PROT_READ_PASS",
60 "PROT_WRITE_PASS",
61};
62
James Smartf9bb2da2011-10-10 21:34:11 -040063struct scsi_dif_tuple {
64 __be16 guard_tag; /* Checksum */
65 __be16 app_tag; /* Opaque storage */
66 __be32 ref_tag; /* Target LBA or indirect LBA */
67};
68
James Smartda0436e2009-05-22 14:51:39 -040069static void
70lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb);
James Smart1c6f4ef52009-11-18 15:40:49 -050071static void
72lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb);
James Smarte2a0a9d2008-12-04 22:40:02 -050073
74static void
James Smart6a9c52c2009-10-02 15:16:51 -040075lpfc_debug_save_data(struct lpfc_hba *phba, struct scsi_cmnd *cmnd)
James Smarte2a0a9d2008-12-04 22:40:02 -050076{
77 void *src, *dst;
78 struct scatterlist *sgde = scsi_sglist(cmnd);
79
80 if (!_dump_buf_data) {
James Smart6a9c52c2009-10-02 15:16:51 -040081 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
82 "9050 BLKGRD: ERROR %s _dump_buf_data is NULL\n",
James Smarte2a0a9d2008-12-04 22:40:02 -050083 __func__);
84 return;
85 }
86
87
88 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -040089 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
90 "9051 BLKGRD: ERROR: data scatterlist is null\n");
James Smarte2a0a9d2008-12-04 22:40:02 -050091 return;
92 }
93
94 dst = (void *) _dump_buf_data;
95 while (sgde) {
96 src = sg_virt(sgde);
97 memcpy(dst, src, sgde->length);
98 dst += sgde->length;
99 sgde = sg_next(sgde);
100 }
101}
102
103static void
James Smart6a9c52c2009-10-02 15:16:51 -0400104lpfc_debug_save_dif(struct lpfc_hba *phba, struct scsi_cmnd *cmnd)
James Smarte2a0a9d2008-12-04 22:40:02 -0500105{
106 void *src, *dst;
107 struct scatterlist *sgde = scsi_prot_sglist(cmnd);
108
109 if (!_dump_buf_dif) {
James Smart6a9c52c2009-10-02 15:16:51 -0400110 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
111 "9052 BLKGRD: ERROR %s _dump_buf_data is NULL\n",
James Smarte2a0a9d2008-12-04 22:40:02 -0500112 __func__);
113 return;
114 }
115
116 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -0400117 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
118 "9053 BLKGRD: ERROR: prot scatterlist is null\n");
James Smarte2a0a9d2008-12-04 22:40:02 -0500119 return;
120 }
121
122 dst = _dump_buf_dif;
123 while (sgde) {
124 src = sg_virt(sgde);
125 memcpy(dst, src, sgde->length);
126 dst += sgde->length;
127 sgde = sg_next(sgde);
128 }
129}
130
James Smartea2151b2008-09-07 11:52:10 -0400131/**
James Smartf1126682009-06-10 17:22:44 -0400132 * lpfc_sli4_set_rsp_sgl_last - Set the last bit in the response sge.
133 * @phba: Pointer to HBA object.
134 * @lpfc_cmd: lpfc scsi command object pointer.
135 *
136 * This function is called from the lpfc_prep_task_mgmt_cmd function to
137 * set the last bit in the response sge entry.
138 **/
139static void
140lpfc_sli4_set_rsp_sgl_last(struct lpfc_hba *phba,
141 struct lpfc_scsi_buf *lpfc_cmd)
142{
143 struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
144 if (sgl) {
145 sgl += 1;
146 sgl->word2 = le32_to_cpu(sgl->word2);
147 bf_set(lpfc_sli4_sge_last, sgl, 1);
148 sgl->word2 = cpu_to_le32(sgl->word2);
149 }
150}
151
152/**
James Smart3621a712009-04-06 18:47:14 -0400153 * lpfc_update_stats - Update statistical data for the command completion
James Smartea2151b2008-09-07 11:52:10 -0400154 * @phba: Pointer to HBA object.
155 * @lpfc_cmd: lpfc scsi command object pointer.
156 *
157 * This function is called when there is a command completion and this
158 * function updates the statistical data for the command completion.
159 **/
160static void
161lpfc_update_stats(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
162{
163 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
164 struct lpfc_nodelist *pnode = rdata->pnode;
165 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
166 unsigned long flags;
167 struct Scsi_Host *shost = cmd->device->host;
168 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
169 unsigned long latency;
170 int i;
171
172 if (cmd->result)
173 return;
174
James Smart9f1e1b52008-12-04 22:39:40 -0500175 latency = jiffies_to_msecs((long)jiffies - (long)lpfc_cmd->start_time);
176
James Smartea2151b2008-09-07 11:52:10 -0400177 spin_lock_irqsave(shost->host_lock, flags);
178 if (!vport->stat_data_enabled ||
179 vport->stat_data_blocked ||
James Smart5989b8d2010-10-22 11:06:56 -0400180 !pnode ||
James Smartea2151b2008-09-07 11:52:10 -0400181 !pnode->lat_data ||
182 (phba->bucket_type == LPFC_NO_BUCKET)) {
183 spin_unlock_irqrestore(shost->host_lock, flags);
184 return;
185 }
James Smartea2151b2008-09-07 11:52:10 -0400186
187 if (phba->bucket_type == LPFC_LINEAR_BUCKET) {
188 i = (latency + phba->bucket_step - 1 - phba->bucket_base)/
189 phba->bucket_step;
James Smart9f1e1b52008-12-04 22:39:40 -0500190 /* check array subscript bounds */
191 if (i < 0)
192 i = 0;
193 else if (i >= LPFC_MAX_BUCKET_COUNT)
194 i = LPFC_MAX_BUCKET_COUNT - 1;
James Smartea2151b2008-09-07 11:52:10 -0400195 } else {
196 for (i = 0; i < LPFC_MAX_BUCKET_COUNT-1; i++)
197 if (latency <= (phba->bucket_base +
198 ((1<<i)*phba->bucket_step)))
199 break;
200 }
201
202 pnode->lat_data[i].cmd_count++;
203 spin_unlock_irqrestore(shost->host_lock, flags);
204}
205
James Smartea2151b2008-09-07 11:52:10 -0400206/**
James Smart3621a712009-04-06 18:47:14 -0400207 * lpfc_send_sdev_queuedepth_change_event - Posts a queuedepth change event
James Smartea2151b2008-09-07 11:52:10 -0400208 * @phba: Pointer to HBA context object.
209 * @vport: Pointer to vport object.
210 * @ndlp: Pointer to FC node associated with the target.
211 * @lun: Lun number of the scsi device.
212 * @old_val: Old value of the queue depth.
213 * @new_val: New value of the queue depth.
214 *
215 * This function sends an event to the mgmt application indicating
216 * there is a change in the scsi device queue depth.
217 **/
218static void
219lpfc_send_sdev_queuedepth_change_event(struct lpfc_hba *phba,
220 struct lpfc_vport *vport,
221 struct lpfc_nodelist *ndlp,
222 uint32_t lun,
223 uint32_t old_val,
224 uint32_t new_val)
225{
226 struct lpfc_fast_path_event *fast_path_evt;
227 unsigned long flags;
228
229 fast_path_evt = lpfc_alloc_fast_evt(phba);
230 if (!fast_path_evt)
231 return;
232
233 fast_path_evt->un.queue_depth_evt.scsi_event.event_type =
234 FC_REG_SCSI_EVENT;
235 fast_path_evt->un.queue_depth_evt.scsi_event.subcategory =
236 LPFC_EVENT_VARQUEDEPTH;
237
238 /* Report all luns with change in queue depth */
239 fast_path_evt->un.queue_depth_evt.scsi_event.lun = lun;
240 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
241 memcpy(&fast_path_evt->un.queue_depth_evt.scsi_event.wwpn,
242 &ndlp->nlp_portname, sizeof(struct lpfc_name));
243 memcpy(&fast_path_evt->un.queue_depth_evt.scsi_event.wwnn,
244 &ndlp->nlp_nodename, sizeof(struct lpfc_name));
245 }
246
247 fast_path_evt->un.queue_depth_evt.oldval = old_val;
248 fast_path_evt->un.queue_depth_evt.newval = new_val;
249 fast_path_evt->vport = vport;
250
251 fast_path_evt->work_evt.evt = LPFC_EVT_FASTPATH_MGMT_EVT;
252 spin_lock_irqsave(&phba->hbalock, flags);
253 list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
254 spin_unlock_irqrestore(&phba->hbalock, flags);
255 lpfc_worker_wake_up(phba);
256
257 return;
258}
259
James Smart9bad7672008-12-04 22:39:02 -0500260/**
James Smart5ffc2662009-11-18 15:39:44 -0500261 * lpfc_change_queue_depth - Alter scsi device queue depth
262 * @sdev: Pointer the scsi device on which to change the queue depth.
263 * @qdepth: New queue depth to set the sdev to.
264 * @reason: The reason for the queue depth change.
265 *
266 * This function is called by the midlayer and the LLD to alter the queue
267 * depth for a scsi device. This function sets the queue depth to the new
268 * value and sends an event out to log the queue depth change.
269 **/
270int
271lpfc_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
272{
273 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
274 struct lpfc_hba *phba = vport->phba;
275 struct lpfc_rport_data *rdata;
276 unsigned long new_queue_depth, old_queue_depth;
277
278 old_queue_depth = sdev->queue_depth;
279 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
280 new_queue_depth = sdev->queue_depth;
281 rdata = sdev->hostdata;
282 if (rdata)
283 lpfc_send_sdev_queuedepth_change_event(phba, vport,
284 rdata->pnode, sdev->lun,
285 old_queue_depth,
286 new_queue_depth);
287 return sdev->queue_depth;
288}
289
290/**
James Smart3621a712009-04-06 18:47:14 -0400291 * lpfc_rampdown_queue_depth - Post RAMP_DOWN_QUEUE event to worker thread
James Smart9bad7672008-12-04 22:39:02 -0500292 * @phba: The Hba for which this call is being executed.
293 *
294 * This routine is called when there is resource error in driver or firmware.
295 * This routine posts WORKER_RAMP_DOWN_QUEUE event for @phba. This routine
296 * posts at most 1 event each second. This routine wakes up worker thread of
297 * @phba to process WORKER_RAM_DOWN_EVENT event.
298 *
299 * This routine should be called with no lock held.
300 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500301void
James Smarteaf15d52008-12-04 22:39:29 -0500302lpfc_rampdown_queue_depth(struct lpfc_hba *phba)
James Smart92d7f7b2007-06-17 19:56:38 -0500303{
304 unsigned long flags;
James Smart5e9d9b82008-06-14 22:52:53 -0400305 uint32_t evt_posted;
James Smart92d7f7b2007-06-17 19:56:38 -0500306
307 spin_lock_irqsave(&phba->hbalock, flags);
308 atomic_inc(&phba->num_rsrc_err);
309 phba->last_rsrc_error_time = jiffies;
310
311 if ((phba->last_ramp_down_time + QUEUE_RAMP_DOWN_INTERVAL) > jiffies) {
312 spin_unlock_irqrestore(&phba->hbalock, flags);
313 return;
314 }
315
316 phba->last_ramp_down_time = jiffies;
317
318 spin_unlock_irqrestore(&phba->hbalock, flags);
319
320 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart5e9d9b82008-06-14 22:52:53 -0400321 evt_posted = phba->pport->work_port_events & WORKER_RAMP_DOWN_QUEUE;
322 if (!evt_posted)
James Smart92d7f7b2007-06-17 19:56:38 -0500323 phba->pport->work_port_events |= WORKER_RAMP_DOWN_QUEUE;
James Smart92d7f7b2007-06-17 19:56:38 -0500324 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
325
James Smart5e9d9b82008-06-14 22:52:53 -0400326 if (!evt_posted)
327 lpfc_worker_wake_up(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500328 return;
329}
330
James Smart9bad7672008-12-04 22:39:02 -0500331/**
James Smart3621a712009-04-06 18:47:14 -0400332 * lpfc_rampup_queue_depth - Post RAMP_UP_QUEUE event for worker thread
James Smart9bad7672008-12-04 22:39:02 -0500333 * @phba: The Hba for which this call is being executed.
334 *
335 * This routine post WORKER_RAMP_UP_QUEUE event for @phba vport. This routine
336 * post at most 1 event every 5 minute after last_ramp_up_time or
337 * last_rsrc_error_time. This routine wakes up worker thread of @phba
338 * to process WORKER_RAM_DOWN_EVENT event.
339 *
340 * This routine should be called with no lock held.
341 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500342static inline void
James Smart3de2a652007-08-02 11:09:59 -0400343lpfc_rampup_queue_depth(struct lpfc_vport *vport,
James Smarta257bf92009-04-06 18:48:10 -0400344 uint32_t queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -0500345{
346 unsigned long flags;
James Smart3de2a652007-08-02 11:09:59 -0400347 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -0400348 uint32_t evt_posted;
James Smart92d7f7b2007-06-17 19:56:38 -0500349 atomic_inc(&phba->num_cmd_success);
350
James Smarta257bf92009-04-06 18:48:10 -0400351 if (vport->cfg_lun_queue_depth <= queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -0500352 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500353 spin_lock_irqsave(&phba->hbalock, flags);
James Smart5ffc2662009-11-18 15:39:44 -0500354 if (time_before(jiffies,
355 phba->last_ramp_up_time + QUEUE_RAMP_UP_INTERVAL) ||
356 time_before(jiffies,
357 phba->last_rsrc_error_time + QUEUE_RAMP_UP_INTERVAL)) {
James Smart92d7f7b2007-06-17 19:56:38 -0500358 spin_unlock_irqrestore(&phba->hbalock, flags);
359 return;
360 }
James Smart92d7f7b2007-06-17 19:56:38 -0500361 phba->last_ramp_up_time = jiffies;
362 spin_unlock_irqrestore(&phba->hbalock, flags);
363
364 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart5e9d9b82008-06-14 22:52:53 -0400365 evt_posted = phba->pport->work_port_events & WORKER_RAMP_UP_QUEUE;
366 if (!evt_posted)
James Smart92d7f7b2007-06-17 19:56:38 -0500367 phba->pport->work_port_events |= WORKER_RAMP_UP_QUEUE;
James Smart92d7f7b2007-06-17 19:56:38 -0500368 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
369
James Smart5e9d9b82008-06-14 22:52:53 -0400370 if (!evt_posted)
371 lpfc_worker_wake_up(phba);
372 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500373}
374
James Smart9bad7672008-12-04 22:39:02 -0500375/**
James Smart3621a712009-04-06 18:47:14 -0400376 * lpfc_ramp_down_queue_handler - WORKER_RAMP_DOWN_QUEUE event handler
James Smart9bad7672008-12-04 22:39:02 -0500377 * @phba: The Hba for which this call is being executed.
378 *
379 * This routine is called to process WORKER_RAMP_DOWN_QUEUE event for worker
380 * thread.This routine reduces queue depth for all scsi device on each vport
381 * associated with @phba.
382 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500383void
384lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
385{
James Smart549e55c2007-08-02 11:09:51 -0400386 struct lpfc_vport **vports;
387 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500388 struct scsi_device *sdev;
James Smart5ffc2662009-11-18 15:39:44 -0500389 unsigned long new_queue_depth;
James Smart92d7f7b2007-06-17 19:56:38 -0500390 unsigned long num_rsrc_err, num_cmd_success;
James Smart549e55c2007-08-02 11:09:51 -0400391 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500392
393 num_rsrc_err = atomic_read(&phba->num_rsrc_err);
394 num_cmd_success = atomic_read(&phba->num_cmd_success);
395
James Smart75ad83a2012-05-09 21:18:40 -0400396 /*
397 * The error and success command counters are global per
398 * driver instance. If another handler has already
399 * operated on this error event, just exit.
400 */
401 if (num_rsrc_err == 0)
402 return;
403
James Smart549e55c2007-08-02 11:09:51 -0400404 vports = lpfc_create_vport_work_array(phba);
405 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400406 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400407 shost = lpfc_shost_from_vport(vports[i]);
408 shost_for_each_device(sdev, shost) {
James Smart92d7f7b2007-06-17 19:56:38 -0500409 new_queue_depth =
James Smart549e55c2007-08-02 11:09:51 -0400410 sdev->queue_depth * num_rsrc_err /
411 (num_rsrc_err + num_cmd_success);
412 if (!new_queue_depth)
413 new_queue_depth = sdev->queue_depth - 1;
414 else
415 new_queue_depth = sdev->queue_depth -
416 new_queue_depth;
James Smart5ffc2662009-11-18 15:39:44 -0500417 lpfc_change_queue_depth(sdev, new_queue_depth,
418 SCSI_QDEPTH_DEFAULT);
James Smart549e55c2007-08-02 11:09:51 -0400419 }
James Smart92d7f7b2007-06-17 19:56:38 -0500420 }
James Smart09372822008-01-11 01:52:54 -0500421 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500422 atomic_set(&phba->num_rsrc_err, 0);
423 atomic_set(&phba->num_cmd_success, 0);
424}
425
James Smart9bad7672008-12-04 22:39:02 -0500426/**
James Smart3621a712009-04-06 18:47:14 -0400427 * lpfc_ramp_up_queue_handler - WORKER_RAMP_UP_QUEUE event handler
James Smart9bad7672008-12-04 22:39:02 -0500428 * @phba: The Hba for which this call is being executed.
429 *
430 * This routine is called to process WORKER_RAMP_UP_QUEUE event for worker
431 * thread.This routine increases queue depth for all scsi device on each vport
432 * associated with @phba by 1. This routine also sets @phba num_rsrc_err and
433 * num_cmd_success to zero.
434 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500435void
436lpfc_ramp_up_queue_handler(struct lpfc_hba *phba)
437{
James Smart549e55c2007-08-02 11:09:51 -0400438 struct lpfc_vport **vports;
439 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500440 struct scsi_device *sdev;
James Smart549e55c2007-08-02 11:09:51 -0400441 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500442
James Smart549e55c2007-08-02 11:09:51 -0400443 vports = lpfc_create_vport_work_array(phba);
444 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400445 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400446 shost = lpfc_shost_from_vport(vports[i]);
447 shost_for_each_device(sdev, shost) {
James Smart97eab632008-04-07 10:16:05 -0400448 if (vports[i]->cfg_lun_queue_depth <=
449 sdev->queue_depth)
450 continue;
James Smart5ffc2662009-11-18 15:39:44 -0500451 lpfc_change_queue_depth(sdev,
452 sdev->queue_depth+1,
453 SCSI_QDEPTH_RAMP_UP);
James Smart549e55c2007-08-02 11:09:51 -0400454 }
James Smart92d7f7b2007-06-17 19:56:38 -0500455 }
James Smart09372822008-01-11 01:52:54 -0500456 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500457 atomic_set(&phba->num_rsrc_err, 0);
458 atomic_set(&phba->num_cmd_success, 0);
459}
460
James Smarta8e497d2008-08-24 21:50:11 -0400461/**
James Smart3621a712009-04-06 18:47:14 -0400462 * lpfc_scsi_dev_block - set all scsi hosts to block state
James Smarta8e497d2008-08-24 21:50:11 -0400463 * @phba: Pointer to HBA context object.
464 *
465 * This function walks vport list and set each SCSI host to block state
466 * by invoking fc_remote_port_delete() routine. This function is invoked
467 * with EEH when device's PCI slot has been permanently disabled.
468 **/
469void
470lpfc_scsi_dev_block(struct lpfc_hba *phba)
471{
472 struct lpfc_vport **vports;
473 struct Scsi_Host *shost;
474 struct scsi_device *sdev;
475 struct fc_rport *rport;
476 int i;
477
478 vports = lpfc_create_vport_work_array(phba);
479 if (vports != NULL)
James Smart21e9a0a2009-05-22 14:53:21 -0400480 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smarta8e497d2008-08-24 21:50:11 -0400481 shost = lpfc_shost_from_vport(vports[i]);
482 shost_for_each_device(sdev, shost) {
483 rport = starget_to_rport(scsi_target(sdev));
484 fc_remote_port_delete(rport);
485 }
486 }
487 lpfc_destroy_vport_work_array(phba, vports);
488}
489
James Smart9bad7672008-12-04 22:39:02 -0500490/**
James Smart3772a992009-05-22 14:50:54 -0400491 * lpfc_new_scsi_buf_s3 - Scsi buffer allocator for HBA with SLI3 IF spec
James Smart9bad7672008-12-04 22:39:02 -0500492 * @vport: The virtual port for which this call being executed.
James Smart3772a992009-05-22 14:50:54 -0400493 * @num_to_allocate: The requested number of buffers to allocate.
James Smart9bad7672008-12-04 22:39:02 -0500494 *
James Smart3772a992009-05-22 14:50:54 -0400495 * This routine allocates a scsi buffer for device with SLI-3 interface spec,
496 * the scsi buffer contains all the necessary information needed to initiate
497 * a SCSI I/O. The non-DMAable buffer region contains information to build
498 * the IOCB. The DMAable region contains memory for the FCP CMND, FCP RSP,
499 * and the initial BPL. In addition to allocating memory, the FCP CMND and
500 * FCP RSP BDEs are setup in the BPL and the BPL BDE is setup in the IOCB.
James Smart9bad7672008-12-04 22:39:02 -0500501 *
502 * Return codes:
James Smart3772a992009-05-22 14:50:54 -0400503 * int - number of scsi buffers that were allocated.
504 * 0 = failure, less than num_to_alloc is a partial failure.
James Smart9bad7672008-12-04 22:39:02 -0500505 **/
James Smart3772a992009-05-22 14:50:54 -0400506static int
507lpfc_new_scsi_buf_s3(struct lpfc_vport *vport, int num_to_alloc)
dea31012005-04-17 16:05:31 -0500508{
James Smart2e0fef82007-06-17 19:56:36 -0500509 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500510 struct lpfc_scsi_buf *psb;
511 struct ulp_bde64 *bpl;
512 IOCB_t *iocb;
James Smart34b02dc2008-08-24 21:49:55 -0400513 dma_addr_t pdma_phys_fcp_cmd;
514 dma_addr_t pdma_phys_fcp_rsp;
515 dma_addr_t pdma_phys_bpl;
James Bottomley604a3e32005-10-29 10:28:33 -0500516 uint16_t iotag;
James Smart3772a992009-05-22 14:50:54 -0400517 int bcnt;
dea31012005-04-17 16:05:31 -0500518
James Smart3772a992009-05-22 14:50:54 -0400519 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
520 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
521 if (!psb)
522 break;
dea31012005-04-17 16:05:31 -0500523
James Smart3772a992009-05-22 14:50:54 -0400524 /*
525 * Get memory from the pci pool to map the virt space to pci
526 * bus space for an I/O. The DMA buffer includes space for the
527 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
528 * necessary to support the sg_tablesize.
529 */
530 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
531 GFP_KERNEL, &psb->dma_handle);
532 if (!psb->data) {
533 kfree(psb);
534 break;
535 }
dea31012005-04-17 16:05:31 -0500536
James Smart3772a992009-05-22 14:50:54 -0400537 /* Initialize virtual ptrs to dma_buf region. */
538 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
dea31012005-04-17 16:05:31 -0500539
James Smart3772a992009-05-22 14:50:54 -0400540 /* Allocate iotag for psb->cur_iocbq. */
541 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
542 if (iotag == 0) {
543 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
544 psb->data, psb->dma_handle);
545 kfree(psb);
546 break;
547 }
548 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
James Bottomley604a3e32005-10-29 10:28:33 -0500549
James Smart3772a992009-05-22 14:50:54 -0400550 psb->fcp_cmnd = psb->data;
551 psb->fcp_rsp = psb->data + sizeof(struct fcp_cmnd);
552 psb->fcp_bpl = psb->data + sizeof(struct fcp_cmnd) +
James Smart34b02dc2008-08-24 21:49:55 -0400553 sizeof(struct fcp_rsp);
dea31012005-04-17 16:05:31 -0500554
James Smart3772a992009-05-22 14:50:54 -0400555 /* Initialize local short-hand pointers. */
556 bpl = psb->fcp_bpl;
557 pdma_phys_fcp_cmd = psb->dma_handle;
558 pdma_phys_fcp_rsp = psb->dma_handle + sizeof(struct fcp_cmnd);
559 pdma_phys_bpl = psb->dma_handle + sizeof(struct fcp_cmnd) +
560 sizeof(struct fcp_rsp);
dea31012005-04-17 16:05:31 -0500561
James Smart3772a992009-05-22 14:50:54 -0400562 /*
563 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
564 * are sg list bdes. Initialize the first two and leave the
565 * rest for queuecommand.
566 */
567 bpl[0].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_cmd));
568 bpl[0].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_cmd));
569 bpl[0].tus.f.bdeSize = sizeof(struct fcp_cmnd);
570 bpl[0].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
571 bpl[0].tus.w = le32_to_cpu(bpl[0].tus.w);
dea31012005-04-17 16:05:31 -0500572
James Smart3772a992009-05-22 14:50:54 -0400573 /* Setup the physical region for the FCP RSP */
574 bpl[1].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_rsp));
575 bpl[1].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_rsp));
576 bpl[1].tus.f.bdeSize = sizeof(struct fcp_rsp);
577 bpl[1].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
578 bpl[1].tus.w = le32_to_cpu(bpl[1].tus.w);
579
580 /*
581 * Since the IOCB for the FCP I/O is built into this
582 * lpfc_scsi_buf, initialize it with all known data now.
583 */
584 iocb = &psb->cur_iocbq.iocb;
585 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
586 if ((phba->sli_rev == 3) &&
587 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED)) {
588 /* fill in immediate fcp command BDE */
589 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_IMMED;
590 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
591 iocb->un.fcpi64.bdl.addrLow = offsetof(IOCB_t,
592 unsli3.fcp_ext.icd);
593 iocb->un.fcpi64.bdl.addrHigh = 0;
594 iocb->ulpBdeCount = 0;
595 iocb->ulpLe = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300596 /* fill in response BDE */
James Smart3772a992009-05-22 14:50:54 -0400597 iocb->unsli3.fcp_ext.rbde.tus.f.bdeFlags =
598 BUFF_TYPE_BDE_64;
599 iocb->unsli3.fcp_ext.rbde.tus.f.bdeSize =
600 sizeof(struct fcp_rsp);
601 iocb->unsli3.fcp_ext.rbde.addrLow =
602 putPaddrLow(pdma_phys_fcp_rsp);
603 iocb->unsli3.fcp_ext.rbde.addrHigh =
604 putPaddrHigh(pdma_phys_fcp_rsp);
605 } else {
606 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
607 iocb->un.fcpi64.bdl.bdeSize =
608 (2 * sizeof(struct ulp_bde64));
609 iocb->un.fcpi64.bdl.addrLow =
610 putPaddrLow(pdma_phys_bpl);
611 iocb->un.fcpi64.bdl.addrHigh =
612 putPaddrHigh(pdma_phys_bpl);
613 iocb->ulpBdeCount = 1;
614 iocb->ulpLe = 1;
615 }
616 iocb->ulpClass = CLASS3;
617 psb->status = IOSTAT_SUCCESS;
James Smartda0436e2009-05-22 14:51:39 -0400618 /* Put it back into the SCSI buffer list */
James Smarteee88772010-09-29 11:19:08 -0400619 psb->cur_iocbq.context1 = psb;
James Smart1c6f4ef52009-11-18 15:40:49 -0500620 lpfc_release_scsi_buf_s3(phba, psb);
James Smart3772a992009-05-22 14:50:54 -0400621
James Smart34b02dc2008-08-24 21:49:55 -0400622 }
dea31012005-04-17 16:05:31 -0500623
James Smart3772a992009-05-22 14:50:54 -0400624 return bcnt;
dea31012005-04-17 16:05:31 -0500625}
626
James Smart9bad7672008-12-04 22:39:02 -0500627/**
James Smart1151e3e2011-02-16 12:39:35 -0500628 * lpfc_sli4_vport_delete_fcp_xri_aborted -Remove all ndlp references for vport
629 * @vport: pointer to lpfc vport data structure.
630 *
631 * This routine is invoked by the vport cleanup for deletions and the cleanup
632 * for an ndlp on removal.
633 **/
634void
635lpfc_sli4_vport_delete_fcp_xri_aborted(struct lpfc_vport *vport)
636{
637 struct lpfc_hba *phba = vport->phba;
638 struct lpfc_scsi_buf *psb, *next_psb;
639 unsigned long iflag = 0;
640
641 spin_lock_irqsave(&phba->hbalock, iflag);
642 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
643 list_for_each_entry_safe(psb, next_psb,
644 &phba->sli4_hba.lpfc_abts_scsi_buf_list, list) {
645 if (psb->rdata && psb->rdata->pnode
646 && psb->rdata->pnode->vport == vport)
647 psb->rdata = NULL;
648 }
649 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
650 spin_unlock_irqrestore(&phba->hbalock, iflag);
651}
652
653/**
James Smartda0436e2009-05-22 14:51:39 -0400654 * lpfc_sli4_fcp_xri_aborted - Fast-path process of fcp xri abort
655 * @phba: pointer to lpfc hba data structure.
656 * @axri: pointer to the fcp xri abort wcqe structure.
657 *
658 * This routine is invoked by the worker thread to process a SLI4 fast-path
659 * FCP aborted xri.
660 **/
661void
662lpfc_sli4_fcp_xri_aborted(struct lpfc_hba *phba,
663 struct sli4_wcqe_xri_aborted *axri)
664{
665 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
James Smart19ca7602010-11-20 23:11:55 -0500666 uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
James Smartda0436e2009-05-22 14:51:39 -0400667 struct lpfc_scsi_buf *psb, *next_psb;
668 unsigned long iflag = 0;
James Smart0f65ff62010-02-26 14:14:23 -0500669 struct lpfc_iocbq *iocbq;
670 int i;
James Smart19ca7602010-11-20 23:11:55 -0500671 struct lpfc_nodelist *ndlp;
672 int rrq_empty = 0;
James Smart589a52d2010-07-14 15:30:54 -0400673 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smartda0436e2009-05-22 14:51:39 -0400674
James Smart0f65ff62010-02-26 14:14:23 -0500675 spin_lock_irqsave(&phba->hbalock, iflag);
676 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
James Smartda0436e2009-05-22 14:51:39 -0400677 list_for_each_entry_safe(psb, next_psb,
678 &phba->sli4_hba.lpfc_abts_scsi_buf_list, list) {
679 if (psb->cur_iocbq.sli4_xritag == xri) {
680 list_del(&psb->list);
James Smart341af102010-01-26 23:07:37 -0500681 psb->exch_busy = 0;
James Smartda0436e2009-05-22 14:51:39 -0400682 psb->status = IOSTAT_SUCCESS;
James Smart0f65ff62010-02-26 14:14:23 -0500683 spin_unlock(
684 &phba->sli4_hba.abts_scsi_buf_list_lock);
James Smart1151e3e2011-02-16 12:39:35 -0500685 if (psb->rdata && psb->rdata->pnode)
686 ndlp = psb->rdata->pnode;
687 else
688 ndlp = NULL;
689
James Smart19ca7602010-11-20 23:11:55 -0500690 rrq_empty = list_empty(&phba->active_rrq_list);
James Smart0f65ff62010-02-26 14:14:23 -0500691 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartcb69f7d2011-12-13 13:21:57 -0500692 if (ndlp) {
James Smartee0f4fe2012-05-09 21:19:14 -0400693 lpfc_set_rrq_active(phba, ndlp,
694 psb->cur_iocbq.sli4_lxritag, rxid, 1);
James Smartcb69f7d2011-12-13 13:21:57 -0500695 lpfc_sli4_abts_err_handler(phba, ndlp, axri);
696 }
James Smartda0436e2009-05-22 14:51:39 -0400697 lpfc_release_scsi_buf_s4(phba, psb);
James Smart19ca7602010-11-20 23:11:55 -0500698 if (rrq_empty)
699 lpfc_worker_wake_up(phba);
James Smartda0436e2009-05-22 14:51:39 -0400700 return;
701 }
702 }
James Smart0f65ff62010-02-26 14:14:23 -0500703 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
704 for (i = 1; i <= phba->sli.last_iotag; i++) {
705 iocbq = phba->sli.iocbq_lookup[i];
706
707 if (!(iocbq->iocb_flag & LPFC_IO_FCP) ||
708 (iocbq->iocb_flag & LPFC_IO_LIBDFC))
709 continue;
710 if (iocbq->sli4_xritag != xri)
711 continue;
712 psb = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
713 psb->exch_busy = 0;
714 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart589a52d2010-07-14 15:30:54 -0400715 if (pring->txq_cnt)
716 lpfc_worker_wake_up(phba);
James Smart0f65ff62010-02-26 14:14:23 -0500717 return;
718
719 }
720 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartda0436e2009-05-22 14:51:39 -0400721}
722
723/**
James Smart8a9d2e82012-05-09 21:16:12 -0400724 * lpfc_sli4_post_scsi_sgl_list - Psot blocks of scsi buffer sgls from a list
725 * @phba: pointer to lpfc hba data structure.
726 * @post_sblist: pointer to the scsi buffer list.
727 *
728 * This routine walks a list of scsi buffers that was passed in. It attempts
729 * to construct blocks of scsi buffer sgls which contains contiguous xris and
730 * uses the non-embedded SGL block post mailbox commands to post to the port.
731 * For single SCSI buffer sgl with non-contiguous xri, if any, it shall use
732 * embedded SGL post mailbox command for posting. The @post_sblist passed in
733 * must be local list, thus no lock is needed when manipulate the list.
734 *
735 * Returns: 0 = failure, non-zero number of successfully posted buffers.
736 **/
737int
738lpfc_sli4_post_scsi_sgl_list(struct lpfc_hba *phba,
739 struct list_head *post_sblist, int sb_count)
740{
741 struct lpfc_scsi_buf *psb, *psb_next;
742 int status;
743 int post_cnt = 0, block_cnt = 0, num_posting = 0, num_posted = 0;
744 dma_addr_t pdma_phys_bpl1;
745 int last_xritag = NO_XRI;
746 LIST_HEAD(prep_sblist);
747 LIST_HEAD(blck_sblist);
748 LIST_HEAD(scsi_sblist);
749
750 /* sanity check */
751 if (sb_count <= 0)
752 return -EINVAL;
753
754 list_for_each_entry_safe(psb, psb_next, post_sblist, list) {
755 list_del_init(&psb->list);
756 block_cnt++;
757 if ((last_xritag != NO_XRI) &&
758 (psb->cur_iocbq.sli4_xritag != last_xritag + 1)) {
759 /* a hole in xri block, form a sgl posting block */
760 list_splice_init(&prep_sblist, &blck_sblist);
761 post_cnt = block_cnt - 1;
762 /* prepare list for next posting block */
763 list_add_tail(&psb->list, &prep_sblist);
764 block_cnt = 1;
765 } else {
766 /* prepare list for next posting block */
767 list_add_tail(&psb->list, &prep_sblist);
768 /* enough sgls for non-embed sgl mbox command */
769 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
770 list_splice_init(&prep_sblist, &blck_sblist);
771 post_cnt = block_cnt;
772 block_cnt = 0;
773 }
774 }
775 num_posting++;
776 last_xritag = psb->cur_iocbq.sli4_xritag;
777
778 /* end of repost sgl list condition for SCSI buffers */
779 if (num_posting == sb_count) {
780 if (post_cnt == 0) {
781 /* last sgl posting block */
782 list_splice_init(&prep_sblist, &blck_sblist);
783 post_cnt = block_cnt;
784 } else if (block_cnt == 1) {
785 /* last single sgl with non-contiguous xri */
786 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
787 pdma_phys_bpl1 = psb->dma_phys_bpl +
788 SGL_PAGE_SIZE;
789 else
790 pdma_phys_bpl1 = 0;
791 status = lpfc_sli4_post_sgl(phba,
792 psb->dma_phys_bpl,
793 pdma_phys_bpl1,
794 psb->cur_iocbq.sli4_xritag);
795 if (status) {
796 /* failure, put on abort scsi list */
797 psb->exch_busy = 1;
798 } else {
799 /* success, put on SCSI buffer list */
800 psb->exch_busy = 0;
801 psb->status = IOSTAT_SUCCESS;
802 num_posted++;
803 }
804 /* success, put on SCSI buffer sgl list */
805 list_add_tail(&psb->list, &scsi_sblist);
806 }
807 }
808
809 /* continue until a nembed page worth of sgls */
810 if (post_cnt == 0)
811 continue;
812
813 /* post block of SCSI buffer list sgls */
814 status = lpfc_sli4_post_scsi_sgl_block(phba, &blck_sblist,
815 post_cnt);
816
817 /* don't reset xirtag due to hole in xri block */
818 if (block_cnt == 0)
819 last_xritag = NO_XRI;
820
821 /* reset SCSI buffer post count for next round of posting */
822 post_cnt = 0;
823
824 /* put posted SCSI buffer-sgl posted on SCSI buffer sgl list */
825 while (!list_empty(&blck_sblist)) {
826 list_remove_head(&blck_sblist, psb,
827 struct lpfc_scsi_buf, list);
828 if (status) {
829 /* failure, put on abort scsi list */
830 psb->exch_busy = 1;
831 } else {
832 /* success, put on SCSI buffer list */
833 psb->exch_busy = 0;
834 psb->status = IOSTAT_SUCCESS;
835 num_posted++;
836 }
837 list_add_tail(&psb->list, &scsi_sblist);
838 }
839 }
840 /* Push SCSI buffers with sgl posted to the availble list */
841 while (!list_empty(&scsi_sblist)) {
842 list_remove_head(&scsi_sblist, psb,
843 struct lpfc_scsi_buf, list);
844 lpfc_release_scsi_buf_s4(phba, psb);
845 }
846 return num_posted;
847}
848
849/**
850 * lpfc_sli4_repost_scsi_sgl_list - Repsot all the allocated scsi buffer sgls
James Smartda0436e2009-05-22 14:51:39 -0400851 * @phba: pointer to lpfc hba data structure.
852 *
853 * This routine walks the list of scsi buffers that have been allocated and
James Smart8a9d2e82012-05-09 21:16:12 -0400854 * repost them to the port by using SGL block post. This is needed after a
James Smartda0436e2009-05-22 14:51:39 -0400855 * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
856 * is responsible for moving all scsi buffers on the lpfc_abts_scsi_sgl_list
857 * to the lpfc_scsi_buf_list. If the repost fails, reject all scsi buffers.
858 *
859 * Returns: 0 = success, non-zero failure.
860 **/
861int
862lpfc_sli4_repost_scsi_sgl_list(struct lpfc_hba *phba)
863{
James Smart8a9d2e82012-05-09 21:16:12 -0400864 LIST_HEAD(post_sblist);
865 int num_posted, rc = 0;
James Smartda0436e2009-05-22 14:51:39 -0400866
James Smart8a9d2e82012-05-09 21:16:12 -0400867 /* get all SCSI buffers need to repost to a local list */
868 spin_lock(&phba->scsi_buf_list_lock);
869 list_splice_init(&phba->lpfc_scsi_buf_list, &post_sblist);
870 spin_unlock(&phba->scsi_buf_list_lock);
James Smartda0436e2009-05-22 14:51:39 -0400871
James Smart8a9d2e82012-05-09 21:16:12 -0400872 /* post the list of scsi buffer sgls to port if available */
873 if (!list_empty(&post_sblist)) {
874 num_posted = lpfc_sli4_post_scsi_sgl_list(phba, &post_sblist,
875 phba->sli4_hba.scsi_xri_cnt);
876 /* failed to post any scsi buffer, return error */
877 if (num_posted == 0)
878 rc = -EIO;
James Smartda0436e2009-05-22 14:51:39 -0400879 }
880 return rc;
881}
882
883/**
884 * lpfc_new_scsi_buf_s4 - Scsi buffer allocator for HBA with SLI4 IF spec
885 * @vport: The virtual port for which this call being executed.
886 * @num_to_allocate: The requested number of buffers to allocate.
887 *
James Smart8a9d2e82012-05-09 21:16:12 -0400888 * This routine allocates scsi buffers for device with SLI-4 interface spec,
James Smartda0436e2009-05-22 14:51:39 -0400889 * the scsi buffer contains all the necessary information needed to initiate
James Smart8a9d2e82012-05-09 21:16:12 -0400890 * a SCSI I/O. After allocating up to @num_to_allocate SCSI buffers and put
891 * them on a list, it post them to the port by using SGL block post.
James Smartda0436e2009-05-22 14:51:39 -0400892 *
893 * Return codes:
James Smart8a9d2e82012-05-09 21:16:12 -0400894 * int - number of scsi buffers that were allocated and posted.
James Smartda0436e2009-05-22 14:51:39 -0400895 * 0 = failure, less than num_to_alloc is a partial failure.
896 **/
897static int
898lpfc_new_scsi_buf_s4(struct lpfc_vport *vport, int num_to_alloc)
899{
900 struct lpfc_hba *phba = vport->phba;
901 struct lpfc_scsi_buf *psb;
902 struct sli4_sge *sgl;
903 IOCB_t *iocb;
904 dma_addr_t pdma_phys_fcp_cmd;
905 dma_addr_t pdma_phys_fcp_rsp;
906 dma_addr_t pdma_phys_bpl, pdma_phys_bpl1;
James Smart8a9d2e82012-05-09 21:16:12 -0400907 uint16_t iotag, lxri = 0;
908 int bcnt, num_posted;
909 LIST_HEAD(prep_sblist);
910 LIST_HEAD(post_sblist);
911 LIST_HEAD(scsi_sblist);
James Smartda0436e2009-05-22 14:51:39 -0400912
913 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
914 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
915 if (!psb)
916 break;
James Smartda0436e2009-05-22 14:51:39 -0400917 /*
James Smart8a9d2e82012-05-09 21:16:12 -0400918 * Get memory from the pci pool to map the virt space to
919 * pci bus space for an I/O. The DMA buffer includes space
920 * for the struct fcp_cmnd, struct fcp_rsp and the number
921 * of bde's necessary to support the sg_tablesize.
James Smartda0436e2009-05-22 14:51:39 -0400922 */
923 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
924 GFP_KERNEL, &psb->dma_handle);
925 if (!psb->data) {
926 kfree(psb);
927 break;
928 }
James Smartda0436e2009-05-22 14:51:39 -0400929 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
930
931 /* Allocate iotag for psb->cur_iocbq. */
932 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
933 if (iotag == 0) {
James Smartb92938b2010-06-07 15:24:12 -0400934 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
935 psb->data, psb->dma_handle);
James Smartda0436e2009-05-22 14:51:39 -0400936 kfree(psb);
937 break;
938 }
939
James Smart6d368e52011-05-24 11:44:12 -0400940 lxri = lpfc_sli4_next_xritag(phba);
941 if (lxri == NO_XRI) {
James Smartda0436e2009-05-22 14:51:39 -0400942 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
943 psb->data, psb->dma_handle);
944 kfree(psb);
945 break;
946 }
James Smart6d368e52011-05-24 11:44:12 -0400947 psb->cur_iocbq.sli4_lxritag = lxri;
948 psb->cur_iocbq.sli4_xritag = phba->sli4_hba.xri_ids[lxri];
James Smartda0436e2009-05-22 14:51:39 -0400949 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
James Smartda0436e2009-05-22 14:51:39 -0400950 psb->fcp_bpl = psb->data;
951 psb->fcp_cmnd = (psb->data + phba->cfg_sg_dma_buf_size)
952 - (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
953 psb->fcp_rsp = (struct fcp_rsp *)((uint8_t *)psb->fcp_cmnd +
954 sizeof(struct fcp_cmnd));
955
956 /* Initialize local short-hand pointers. */
957 sgl = (struct sli4_sge *)psb->fcp_bpl;
958 pdma_phys_bpl = psb->dma_handle;
959 pdma_phys_fcp_cmd =
960 (psb->dma_handle + phba->cfg_sg_dma_buf_size)
961 - (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
962 pdma_phys_fcp_rsp = pdma_phys_fcp_cmd + sizeof(struct fcp_cmnd);
963
964 /*
James Smart8a9d2e82012-05-09 21:16:12 -0400965 * The first two bdes are the FCP_CMD and FCP_RSP.
966 * The balance are sg list bdes. Initialize the
967 * first two and leave the rest for queuecommand.
James Smartda0436e2009-05-22 14:51:39 -0400968 */
969 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_cmd));
970 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_cmd));
James Smart05580562011-05-24 11:40:48 -0400971 sgl->word2 = le32_to_cpu(sgl->word2);
James Smartda0436e2009-05-22 14:51:39 -0400972 bf_set(lpfc_sli4_sge_last, sgl, 0);
973 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -0500974 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_cmnd));
James Smartda0436e2009-05-22 14:51:39 -0400975 sgl++;
976
977 /* Setup the physical region for the FCP RSP */
978 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_rsp));
979 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_rsp));
James Smart05580562011-05-24 11:40:48 -0400980 sgl->word2 = le32_to_cpu(sgl->word2);
James Smartda0436e2009-05-22 14:51:39 -0400981 bf_set(lpfc_sli4_sge_last, sgl, 1);
982 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -0500983 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_rsp));
James Smartda0436e2009-05-22 14:51:39 -0400984
985 /*
986 * Since the IOCB for the FCP I/O is built into this
987 * lpfc_scsi_buf, initialize it with all known data now.
988 */
989 iocb = &psb->cur_iocbq.iocb;
990 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
991 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_64;
992 /* setting the BLP size to 2 * sizeof BDE may not be correct.
993 * We are setting the bpl to point to out sgl. An sgl's
994 * entries are 16 bytes, a bpl entries are 12 bytes.
995 */
996 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
997 iocb->un.fcpi64.bdl.addrLow = putPaddrLow(pdma_phys_fcp_cmd);
998 iocb->un.fcpi64.bdl.addrHigh = putPaddrHigh(pdma_phys_fcp_cmd);
999 iocb->ulpBdeCount = 1;
1000 iocb->ulpLe = 1;
1001 iocb->ulpClass = CLASS3;
James Smart8a9d2e82012-05-09 21:16:12 -04001002 psb->cur_iocbq.context1 = psb;
James Smartda0436e2009-05-22 14:51:39 -04001003 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
1004 pdma_phys_bpl1 = pdma_phys_bpl + SGL_PAGE_SIZE;
1005 else
1006 pdma_phys_bpl1 = 0;
1007 psb->dma_phys_bpl = pdma_phys_bpl;
James Smart6d368e52011-05-24 11:44:12 -04001008
James Smart8a9d2e82012-05-09 21:16:12 -04001009 /* add the scsi buffer to a post list */
1010 list_add_tail(&psb->list, &post_sblist);
1011 spin_lock_irq(&phba->scsi_buf_list_lock);
1012 phba->sli4_hba.scsi_xri_cnt++;
1013 spin_unlock_irq(&phba->scsi_buf_list_lock);
James Smartda0436e2009-05-22 14:51:39 -04001014 }
James Smart8a9d2e82012-05-09 21:16:12 -04001015 lpfc_printf_log(phba, KERN_INFO, LOG_BG,
1016 "3021 Allocate %d out of %d requested new SCSI "
1017 "buffers\n", bcnt, num_to_alloc);
James Smartda0436e2009-05-22 14:51:39 -04001018
James Smart8a9d2e82012-05-09 21:16:12 -04001019 /* post the list of scsi buffer sgls to port if available */
1020 if (!list_empty(&post_sblist))
1021 num_posted = lpfc_sli4_post_scsi_sgl_list(phba,
1022 &post_sblist, bcnt);
1023 else
1024 num_posted = 0;
1025
1026 return num_posted;
James Smartda0436e2009-05-22 14:51:39 -04001027}
1028
1029/**
James Smart3772a992009-05-22 14:50:54 -04001030 * lpfc_new_scsi_buf - Wrapper funciton for scsi buffer allocator
1031 * @vport: The virtual port for which this call being executed.
1032 * @num_to_allocate: The requested number of buffers to allocate.
1033 *
1034 * This routine wraps the actual SCSI buffer allocator function pointer from
1035 * the lpfc_hba struct.
1036 *
1037 * Return codes:
1038 * int - number of scsi buffers that were allocated.
1039 * 0 = failure, less than num_to_alloc is a partial failure.
1040 **/
1041static inline int
1042lpfc_new_scsi_buf(struct lpfc_vport *vport, int num_to_alloc)
1043{
1044 return vport->phba->lpfc_new_scsi_buf(vport, num_to_alloc);
1045}
1046
1047/**
James Smart19ca7602010-11-20 23:11:55 -05001048 * lpfc_get_scsi_buf_s3 - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
James Smart3772a992009-05-22 14:50:54 -04001049 * @phba: The HBA for which this call is being executed.
James Smart9bad7672008-12-04 22:39:02 -05001050 *
1051 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
1052 * and returns to caller.
1053 *
1054 * Return codes:
1055 * NULL - Error
1056 * Pointer to lpfc_scsi_buf - Success
1057 **/
Adrian Bunk455c53e2006-01-06 20:21:28 +01001058static struct lpfc_scsi_buf*
James Smart19ca7602010-11-20 23:11:55 -05001059lpfc_get_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05001060{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001061 struct lpfc_scsi_buf * lpfc_cmd = NULL;
1062 struct list_head *scsi_buf_list = &phba->lpfc_scsi_buf_list;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001063 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -05001064
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001065 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001066 list_remove_head(scsi_buf_list, lpfc_cmd, struct lpfc_scsi_buf, list);
James Smart1dcb58e2007-04-25 09:51:30 -04001067 if (lpfc_cmd) {
1068 lpfc_cmd->seg_cnt = 0;
1069 lpfc_cmd->nonsg_phys = 0;
James Smarte2a0a9d2008-12-04 22:40:02 -05001070 lpfc_cmd->prot_seg_cnt = 0;
James Smart1dcb58e2007-04-25 09:51:30 -04001071 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001072 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001073 return lpfc_cmd;
1074}
James Smart19ca7602010-11-20 23:11:55 -05001075/**
1076 * lpfc_get_scsi_buf_s4 - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
1077 * @phba: The HBA for which this call is being executed.
1078 *
1079 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
1080 * and returns to caller.
1081 *
1082 * Return codes:
1083 * NULL - Error
1084 * Pointer to lpfc_scsi_buf - Success
1085 **/
1086static struct lpfc_scsi_buf*
1087lpfc_get_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
1088{
James Smart1151e3e2011-02-16 12:39:35 -05001089 struct lpfc_scsi_buf *lpfc_cmd ;
James Smart19ca7602010-11-20 23:11:55 -05001090 unsigned long iflag = 0;
1091 int found = 0;
1092
1093 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James Smart1151e3e2011-02-16 12:39:35 -05001094 list_for_each_entry(lpfc_cmd, &phba->lpfc_scsi_buf_list,
1095 list) {
James Smart19ca7602010-11-20 23:11:55 -05001096 if (lpfc_test_rrq_active(phba, ndlp,
James Smartee0f4fe2012-05-09 21:19:14 -04001097 lpfc_cmd->cur_iocbq.sli4_lxritag))
James Smart1151e3e2011-02-16 12:39:35 -05001098 continue;
1099 list_del(&lpfc_cmd->list);
James Smart19ca7602010-11-20 23:11:55 -05001100 found = 1;
1101 lpfc_cmd->seg_cnt = 0;
1102 lpfc_cmd->nonsg_phys = 0;
1103 lpfc_cmd->prot_seg_cnt = 0;
James Smart1151e3e2011-02-16 12:39:35 -05001104 break;
James Smart19ca7602010-11-20 23:11:55 -05001105 }
James Smart1151e3e2011-02-16 12:39:35 -05001106 spin_unlock_irqrestore(&phba->scsi_buf_list_lock,
1107 iflag);
1108 if (!found)
1109 return NULL;
1110 else
1111 return lpfc_cmd;
James Smart19ca7602010-11-20 23:11:55 -05001112}
1113/**
1114 * lpfc_get_scsi_buf - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
1115 * @phba: The HBA for which this call is being executed.
1116 *
1117 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
1118 * and returns to caller.
1119 *
1120 * Return codes:
1121 * NULL - Error
1122 * Pointer to lpfc_scsi_buf - Success
1123 **/
1124static struct lpfc_scsi_buf*
1125lpfc_get_scsi_buf(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
1126{
1127 return phba->lpfc_get_scsi_buf(phba, ndlp);
1128}
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001129
James Smart9bad7672008-12-04 22:39:02 -05001130/**
James Smart3772a992009-05-22 14:50:54 -04001131 * lpfc_release_scsi_buf - Return a scsi buffer back to hba scsi buf list
James Smart9bad7672008-12-04 22:39:02 -05001132 * @phba: The Hba for which this call is being executed.
1133 * @psb: The scsi buffer which is being released.
1134 *
1135 * This routine releases @psb scsi buffer by adding it to tail of @phba
1136 * lpfc_scsi_buf_list list.
1137 **/
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001138static void
James Smart3772a992009-05-22 14:50:54 -04001139lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001140{
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001141 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -05001142
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001143 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001144 psb->pCmd = NULL;
dea31012005-04-17 16:05:31 -05001145 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001146 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
dea31012005-04-17 16:05:31 -05001147}
1148
James Smart9bad7672008-12-04 22:39:02 -05001149/**
James Smartda0436e2009-05-22 14:51:39 -04001150 * lpfc_release_scsi_buf_s4: Return a scsi buffer back to hba scsi buf list.
1151 * @phba: The Hba for which this call is being executed.
1152 * @psb: The scsi buffer which is being released.
1153 *
1154 * This routine releases @psb scsi buffer by adding it to tail of @phba
1155 * lpfc_scsi_buf_list list. For SLI4 XRI's are tied to the scsi buffer
1156 * and cannot be reused for at least RA_TOV amount of time if it was
1157 * aborted.
1158 **/
1159static void
1160lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
1161{
1162 unsigned long iflag = 0;
1163
James Smart341af102010-01-26 23:07:37 -05001164 if (psb->exch_busy) {
James Smartda0436e2009-05-22 14:51:39 -04001165 spin_lock_irqsave(&phba->sli4_hba.abts_scsi_buf_list_lock,
1166 iflag);
1167 psb->pCmd = NULL;
1168 list_add_tail(&psb->list,
1169 &phba->sli4_hba.lpfc_abts_scsi_buf_list);
1170 spin_unlock_irqrestore(&phba->sli4_hba.abts_scsi_buf_list_lock,
1171 iflag);
1172 } else {
1173
1174 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
1175 psb->pCmd = NULL;
1176 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
1177 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
1178 }
1179}
1180
1181/**
James Smart3772a992009-05-22 14:50:54 -04001182 * lpfc_release_scsi_buf: Return a scsi buffer back to hba scsi buf list.
1183 * @phba: The Hba for which this call is being executed.
1184 * @psb: The scsi buffer which is being released.
1185 *
1186 * This routine releases @psb scsi buffer by adding it to tail of @phba
1187 * lpfc_scsi_buf_list list.
1188 **/
1189static void
1190lpfc_release_scsi_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
1191{
1192
1193 phba->lpfc_release_scsi_buf(phba, psb);
1194}
1195
1196/**
1197 * lpfc_scsi_prep_dma_buf_s3 - DMA mapping for scsi buffer to SLI3 IF spec
James Smart9bad7672008-12-04 22:39:02 -05001198 * @phba: The Hba for which this call is being executed.
1199 * @lpfc_cmd: The scsi buffer which is going to be mapped.
1200 *
1201 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
James Smart3772a992009-05-22 14:50:54 -04001202 * field of @lpfc_cmd for device with SLI-3 interface spec. This routine scans
1203 * through sg elements and format the bdea. This routine also initializes all
1204 * IOCB fields which are dependent on scsi command request buffer.
James Smart9bad7672008-12-04 22:39:02 -05001205 *
1206 * Return codes:
1207 * 1 - Error
1208 * 0 - Success
1209 **/
dea31012005-04-17 16:05:31 -05001210static int
James Smart3772a992009-05-22 14:50:54 -04001211lpfc_scsi_prep_dma_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
dea31012005-04-17 16:05:31 -05001212{
1213 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1214 struct scatterlist *sgel = NULL;
1215 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1216 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
James Smart0f65ff62010-02-26 14:14:23 -05001217 struct lpfc_iocbq *iocbq = &lpfc_cmd->cur_iocbq;
dea31012005-04-17 16:05:31 -05001218 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
James Smart34b02dc2008-08-24 21:49:55 -04001219 struct ulp_bde64 *data_bde = iocb_cmd->unsli3.fcp_ext.dbde;
dea31012005-04-17 16:05:31 -05001220 dma_addr_t physaddr;
James Smart34b02dc2008-08-24 21:49:55 -04001221 uint32_t num_bde = 0;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001222 int nseg, datadir = scsi_cmnd->sc_data_direction;
dea31012005-04-17 16:05:31 -05001223
1224 /*
1225 * There are three possibilities here - use scatter-gather segment, use
1226 * the single mapping, or neither. Start the lpfc command prep by
1227 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1228 * data bde entry.
1229 */
1230 bpl += 2;
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001231 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -05001232 /*
1233 * The driver stores the segment count returned from pci_map_sg
1234 * because this a count of dma-mappings used to map the use_sg
1235 * pages. They are not guaranteed to be the same for those
1236 * architectures that implement an IOMMU.
1237 */
dea31012005-04-17 16:05:31 -05001238
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001239 nseg = dma_map_sg(&phba->pcidev->dev, scsi_sglist(scsi_cmnd),
1240 scsi_sg_count(scsi_cmnd), datadir);
1241 if (unlikely(!nseg))
1242 return 1;
1243
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001244 lpfc_cmd->seg_cnt = nseg;
dea31012005-04-17 16:05:31 -05001245 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04001246 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1247 "9064 BLKGRD: %s: Too many sg segments from "
James Smarte2a0a9d2008-12-04 22:40:02 -05001248 "dma_map_sg. Config %d, seg_cnt %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001249 __func__, phba->cfg_sg_seg_cnt,
dea31012005-04-17 16:05:31 -05001250 lpfc_cmd->seg_cnt);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05001251 scsi_dma_unmap(scsi_cmnd);
dea31012005-04-17 16:05:31 -05001252 return 1;
1253 }
1254
1255 /*
1256 * The driver established a maximum scatter-gather segment count
1257 * during probe that limits the number of sg elements in any
1258 * single scsi command. Just run through the seg_cnt and format
1259 * the bde's.
James Smart34b02dc2008-08-24 21:49:55 -04001260 * When using SLI-3 the driver will try to fit all the BDEs into
1261 * the IOCB. If it can't then the BDEs get added to a BPL as it
1262 * does for SLI-2 mode.
dea31012005-04-17 16:05:31 -05001263 */
James Smart34b02dc2008-08-24 21:49:55 -04001264 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
dea31012005-04-17 16:05:31 -05001265 physaddr = sg_dma_address(sgel);
James Smart34b02dc2008-08-24 21:49:55 -04001266 if (phba->sli_rev == 3 &&
James Smarte2a0a9d2008-12-04 22:40:02 -05001267 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
James Smart0f65ff62010-02-26 14:14:23 -05001268 !(iocbq->iocb_flag & DSS_SECURITY_OP) &&
James Smart34b02dc2008-08-24 21:49:55 -04001269 nseg <= LPFC_EXT_DATA_BDE_COUNT) {
1270 data_bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1271 data_bde->tus.f.bdeSize = sg_dma_len(sgel);
1272 data_bde->addrLow = putPaddrLow(physaddr);
1273 data_bde->addrHigh = putPaddrHigh(physaddr);
1274 data_bde++;
1275 } else {
1276 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1277 bpl->tus.f.bdeSize = sg_dma_len(sgel);
1278 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1279 bpl->addrLow =
1280 le32_to_cpu(putPaddrLow(physaddr));
1281 bpl->addrHigh =
1282 le32_to_cpu(putPaddrHigh(physaddr));
1283 bpl++;
1284 }
dea31012005-04-17 16:05:31 -05001285 }
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -07001286 }
dea31012005-04-17 16:05:31 -05001287
1288 /*
1289 * Finish initializing those IOCB fields that are dependent on the
James Smart34b02dc2008-08-24 21:49:55 -04001290 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
1291 * explicitly reinitialized and for SLI-3 the extended bde count is
1292 * explicitly reinitialized since all iocb memory resources are reused.
dea31012005-04-17 16:05:31 -05001293 */
James Smarte2a0a9d2008-12-04 22:40:02 -05001294 if (phba->sli_rev == 3 &&
James Smart0f65ff62010-02-26 14:14:23 -05001295 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
1296 !(iocbq->iocb_flag & DSS_SECURITY_OP)) {
James Smart34b02dc2008-08-24 21:49:55 -04001297 if (num_bde > LPFC_EXT_DATA_BDE_COUNT) {
1298 /*
1299 * The extended IOCB format can only fit 3 BDE or a BPL.
1300 * This I/O has more than 3 BDE so the 1st data bde will
1301 * be a BPL that is filled in here.
1302 */
1303 physaddr = lpfc_cmd->dma_handle;
1304 data_bde->tus.f.bdeFlags = BUFF_TYPE_BLP_64;
1305 data_bde->tus.f.bdeSize = (num_bde *
1306 sizeof(struct ulp_bde64));
1307 physaddr += (sizeof(struct fcp_cmnd) +
1308 sizeof(struct fcp_rsp) +
1309 (2 * sizeof(struct ulp_bde64)));
1310 data_bde->addrHigh = putPaddrHigh(physaddr);
1311 data_bde->addrLow = putPaddrLow(physaddr);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001312 /* ebde count includes the response bde and data bpl */
James Smart34b02dc2008-08-24 21:49:55 -04001313 iocb_cmd->unsli3.fcp_ext.ebde_count = 2;
1314 } else {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001315 /* ebde count includes the response bde and data bdes */
James Smart34b02dc2008-08-24 21:49:55 -04001316 iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
1317 }
1318 } else {
1319 iocb_cmd->un.fcpi64.bdl.bdeSize =
1320 ((num_bde + 2) * sizeof(struct ulp_bde64));
James Smart0f65ff62010-02-26 14:14:23 -05001321 iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
James Smart34b02dc2008-08-24 21:49:55 -04001322 }
James Smart09372822008-01-11 01:52:54 -05001323 fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
James Smarte2a0a9d2008-12-04 22:40:02 -05001324
1325 /*
1326 * Due to difference in data length between DIF/non-DIF paths,
1327 * we need to set word 4 of IOCB here
1328 */
James Smarta257bf92009-04-06 18:48:10 -04001329 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
dea31012005-04-17 16:05:31 -05001330 return 0;
1331}
1332
James Smartf9bb2da2011-10-10 21:34:11 -04001333static inline unsigned
1334lpfc_cmd_blksize(struct scsi_cmnd *sc)
1335{
1336 return sc->device->sector_size;
1337}
1338
1339#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smartacd68592012-01-18 16:25:09 -05001340
James Smart9a6b09c2012-03-01 22:37:42 -05001341/* Return if if error injection is detected by Initiator */
1342#define BG_ERR_INIT 0x1
1343/* Return if if error injection is detected by Target */
1344#define BG_ERR_TGT 0x2
1345/* Return if if swapping CSUM<-->CRC is required for error injection */
1346#define BG_ERR_SWAP 0x10
1347/* Return if disabling Guard/Ref/App checking is required for error injection */
1348#define BG_ERR_CHECK 0x20
James Smartacd68592012-01-18 16:25:09 -05001349
1350/**
1351 * lpfc_bg_err_inject - Determine if we should inject an error
1352 * @phba: The Hba for which this call is being executed.
James Smartf9bb2da2011-10-10 21:34:11 -04001353 * @sc: The SCSI command to examine
1354 * @reftag: (out) BlockGuard reference tag for transmitted data
1355 * @apptag: (out) BlockGuard application tag for transmitted data
1356 * @new_guard (in) Value to replace CRC with if needed
1357 *
James Smart9a6b09c2012-03-01 22:37:42 -05001358 * Returns BG_ERR_* bit mask or 0 if request ignored
James Smartacd68592012-01-18 16:25:09 -05001359 **/
James Smartf9bb2da2011-10-10 21:34:11 -04001360static int
1361lpfc_bg_err_inject(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1362 uint32_t *reftag, uint16_t *apptag, uint32_t new_guard)
1363{
1364 struct scatterlist *sgpe; /* s/g prot entry */
1365 struct scatterlist *sgde; /* s/g data entry */
James Smart9a6b09c2012-03-01 22:37:42 -05001366 struct lpfc_scsi_buf *lpfc_cmd = NULL;
James Smartacd68592012-01-18 16:25:09 -05001367 struct scsi_dif_tuple *src = NULL;
James Smart4ac9b222012-03-01 22:38:29 -05001368 struct lpfc_nodelist *ndlp;
1369 struct lpfc_rport_data *rdata;
James Smartf9bb2da2011-10-10 21:34:11 -04001370 uint32_t op = scsi_get_prot_op(sc);
1371 uint32_t blksize;
1372 uint32_t numblks;
1373 sector_t lba;
1374 int rc = 0;
James Smartacd68592012-01-18 16:25:09 -05001375 int blockoff = 0;
James Smartf9bb2da2011-10-10 21:34:11 -04001376
1377 if (op == SCSI_PROT_NORMAL)
1378 return 0;
1379
James Smartacd68592012-01-18 16:25:09 -05001380 sgpe = scsi_prot_sglist(sc);
1381 sgde = scsi_sglist(sc);
James Smartf9bb2da2011-10-10 21:34:11 -04001382 lba = scsi_get_lba(sc);
James Smart4ac9b222012-03-01 22:38:29 -05001383
1384 /* First check if we need to match the LBA */
James Smartf9bb2da2011-10-10 21:34:11 -04001385 if (phba->lpfc_injerr_lba != LPFC_INJERR_LBA_OFF) {
1386 blksize = lpfc_cmd_blksize(sc);
1387 numblks = (scsi_bufflen(sc) + blksize - 1) / blksize;
1388
1389 /* Make sure we have the right LBA if one is specified */
1390 if ((phba->lpfc_injerr_lba < lba) ||
1391 (phba->lpfc_injerr_lba >= (lba + numblks)))
1392 return 0;
James Smartacd68592012-01-18 16:25:09 -05001393 if (sgpe) {
1394 blockoff = phba->lpfc_injerr_lba - lba;
1395 numblks = sg_dma_len(sgpe) /
1396 sizeof(struct scsi_dif_tuple);
1397 if (numblks < blockoff)
1398 blockoff = numblks;
James Smartacd68592012-01-18 16:25:09 -05001399 }
James Smartf9bb2da2011-10-10 21:34:11 -04001400 }
1401
James Smart4ac9b222012-03-01 22:38:29 -05001402 /* Next check if we need to match the remote NPortID or WWPN */
1403 rdata = sc->device->hostdata;
1404 if (rdata && rdata->pnode) {
1405 ndlp = rdata->pnode;
1406
1407 /* Make sure we have the right NPortID if one is specified */
1408 if (phba->lpfc_injerr_nportid &&
1409 (phba->lpfc_injerr_nportid != ndlp->nlp_DID))
1410 return 0;
1411
1412 /*
1413 * Make sure we have the right WWPN if one is specified.
1414 * wwn[0] should be a non-zero NAA in a good WWPN.
1415 */
1416 if (phba->lpfc_injerr_wwpn.u.wwn[0] &&
1417 (memcmp(&ndlp->nlp_portname, &phba->lpfc_injerr_wwpn,
1418 sizeof(struct lpfc_name)) != 0))
1419 return 0;
1420 }
1421
1422 /* Setup a ptr to the protection data if the SCSI host provides it */
1423 if (sgpe) {
1424 src = (struct scsi_dif_tuple *)sg_virt(sgpe);
1425 src += blockoff;
1426 lpfc_cmd = (struct lpfc_scsi_buf *)sc->host_scribble;
1427 }
1428
James Smartf9bb2da2011-10-10 21:34:11 -04001429 /* Should we change the Reference Tag */
1430 if (reftag) {
James Smartacd68592012-01-18 16:25:09 -05001431 if (phba->lpfc_injerr_wref_cnt) {
1432 switch (op) {
1433 case SCSI_PROT_WRITE_PASS:
James Smart9a6b09c2012-03-01 22:37:42 -05001434 if (src) {
1435 /*
1436 * For WRITE_PASS, force the error
1437 * to be sent on the wire. It should
1438 * be detected by the Target.
1439 * If blockoff != 0 error will be
1440 * inserted in middle of the IO.
1441 */
James Smartf9bb2da2011-10-10 21:34:11 -04001442
James Smartacd68592012-01-18 16:25:09 -05001443 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1444 "9076 BLKGRD: Injecting reftag error: "
1445 "write lba x%lx + x%x oldrefTag x%x\n",
1446 (unsigned long)lba, blockoff,
James Smart9a6b09c2012-03-01 22:37:42 -05001447 be32_to_cpu(src->ref_tag));
James Smartacd68592012-01-18 16:25:09 -05001448
1449 /*
James Smart9a6b09c2012-03-01 22:37:42 -05001450 * Save the old ref_tag so we can
1451 * restore it on completion.
James Smartacd68592012-01-18 16:25:09 -05001452 */
James Smart9a6b09c2012-03-01 22:37:42 -05001453 if (lpfc_cmd) {
1454 lpfc_cmd->prot_data_type =
1455 LPFC_INJERR_REFTAG;
1456 lpfc_cmd->prot_data_segment =
1457 src;
1458 lpfc_cmd->prot_data =
1459 src->ref_tag;
1460 }
1461 src->ref_tag = cpu_to_be32(0xDEADBEEF);
James Smartacd68592012-01-18 16:25:09 -05001462 phba->lpfc_injerr_wref_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001463 if (phba->lpfc_injerr_wref_cnt == 0) {
1464 phba->lpfc_injerr_nportid = 0;
1465 phba->lpfc_injerr_lba =
1466 LPFC_INJERR_LBA_OFF;
1467 memset(&phba->lpfc_injerr_wwpn,
1468 0, sizeof(struct lpfc_name));
1469 }
James Smart9a6b09c2012-03-01 22:37:42 -05001470 rc = BG_ERR_TGT | BG_ERR_CHECK;
1471
James Smartacd68592012-01-18 16:25:09 -05001472 break;
1473 }
1474 /* Drop thru */
James Smart9a6b09c2012-03-01 22:37:42 -05001475 case SCSI_PROT_WRITE_INSERT:
1476 /*
1477 * For WRITE_INSERT, force the error
1478 * to be sent on the wire. It should be
1479 * detected by the Target.
1480 */
1481 /* DEADBEEF will be the reftag on the wire */
1482 *reftag = 0xDEADBEEF;
1483 phba->lpfc_injerr_wref_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001484 if (phba->lpfc_injerr_wref_cnt == 0) {
1485 phba->lpfc_injerr_nportid = 0;
1486 phba->lpfc_injerr_lba =
1487 LPFC_INJERR_LBA_OFF;
1488 memset(&phba->lpfc_injerr_wwpn,
1489 0, sizeof(struct lpfc_name));
1490 }
James Smart9a6b09c2012-03-01 22:37:42 -05001491 rc = BG_ERR_TGT | BG_ERR_CHECK;
1492
1493 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1494 "9078 BLKGRD: Injecting reftag error: "
1495 "write lba x%lx\n", (unsigned long)lba);
1496 break;
James Smartacd68592012-01-18 16:25:09 -05001497 case SCSI_PROT_WRITE_STRIP:
1498 /*
1499 * For WRITE_STRIP and WRITE_PASS,
1500 * force the error on data
1501 * being copied from SLI-Host to SLI-Port.
1502 */
1503 *reftag = 0xDEADBEEF;
1504 phba->lpfc_injerr_wref_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001505 if (phba->lpfc_injerr_wref_cnt == 0) {
1506 phba->lpfc_injerr_nportid = 0;
1507 phba->lpfc_injerr_lba =
1508 LPFC_INJERR_LBA_OFF;
1509 memset(&phba->lpfc_injerr_wwpn,
1510 0, sizeof(struct lpfc_name));
1511 }
James Smartacd68592012-01-18 16:25:09 -05001512 rc = BG_ERR_INIT;
1513
1514 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1515 "9077 BLKGRD: Injecting reftag error: "
1516 "write lba x%lx\n", (unsigned long)lba);
1517 break;
James Smartf9bb2da2011-10-10 21:34:11 -04001518 }
James Smartacd68592012-01-18 16:25:09 -05001519 }
1520 if (phba->lpfc_injerr_rref_cnt) {
1521 switch (op) {
1522 case SCSI_PROT_READ_INSERT:
James Smartacd68592012-01-18 16:25:09 -05001523 case SCSI_PROT_READ_STRIP:
1524 case SCSI_PROT_READ_PASS:
1525 /*
1526 * For READ_STRIP and READ_PASS, force the
1527 * error on data being read off the wire. It
1528 * should force an IO error to the driver.
1529 */
James Smartf9bb2da2011-10-10 21:34:11 -04001530 *reftag = 0xDEADBEEF;
1531 phba->lpfc_injerr_rref_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001532 if (phba->lpfc_injerr_rref_cnt == 0) {
1533 phba->lpfc_injerr_nportid = 0;
1534 phba->lpfc_injerr_lba =
1535 LPFC_INJERR_LBA_OFF;
1536 memset(&phba->lpfc_injerr_wwpn,
1537 0, sizeof(struct lpfc_name));
1538 }
James Smartacd68592012-01-18 16:25:09 -05001539 rc = BG_ERR_INIT;
James Smartf9bb2da2011-10-10 21:34:11 -04001540
1541 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
James Smartacd68592012-01-18 16:25:09 -05001542 "9079 BLKGRD: Injecting reftag error: "
James Smartf9bb2da2011-10-10 21:34:11 -04001543 "read lba x%lx\n", (unsigned long)lba);
James Smartacd68592012-01-18 16:25:09 -05001544 break;
James Smartf9bb2da2011-10-10 21:34:11 -04001545 }
1546 }
1547 }
1548
1549 /* Should we change the Application Tag */
1550 if (apptag) {
James Smartacd68592012-01-18 16:25:09 -05001551 if (phba->lpfc_injerr_wapp_cnt) {
1552 switch (op) {
1553 case SCSI_PROT_WRITE_PASS:
James Smart4ac9b222012-03-01 22:38:29 -05001554 if (src) {
James Smart9a6b09c2012-03-01 22:37:42 -05001555 /*
1556 * For WRITE_PASS, force the error
1557 * to be sent on the wire. It should
1558 * be detected by the Target.
1559 * If blockoff != 0 error will be
1560 * inserted in middle of the IO.
1561 */
1562
James Smartacd68592012-01-18 16:25:09 -05001563 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1564 "9080 BLKGRD: Injecting apptag error: "
1565 "write lba x%lx + x%x oldappTag x%x\n",
1566 (unsigned long)lba, blockoff,
James Smart9a6b09c2012-03-01 22:37:42 -05001567 be16_to_cpu(src->app_tag));
James Smartacd68592012-01-18 16:25:09 -05001568
1569 /*
James Smart9a6b09c2012-03-01 22:37:42 -05001570 * Save the old app_tag so we can
1571 * restore it on completion.
James Smartacd68592012-01-18 16:25:09 -05001572 */
James Smart9a6b09c2012-03-01 22:37:42 -05001573 if (lpfc_cmd) {
1574 lpfc_cmd->prot_data_type =
1575 LPFC_INJERR_APPTAG;
1576 lpfc_cmd->prot_data_segment =
1577 src;
1578 lpfc_cmd->prot_data =
1579 src->app_tag;
1580 }
1581 src->app_tag = cpu_to_be16(0xDEAD);
James Smartacd68592012-01-18 16:25:09 -05001582 phba->lpfc_injerr_wapp_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001583 if (phba->lpfc_injerr_wapp_cnt == 0) {
1584 phba->lpfc_injerr_nportid = 0;
1585 phba->lpfc_injerr_lba =
1586 LPFC_INJERR_LBA_OFF;
1587 memset(&phba->lpfc_injerr_wwpn,
1588 0, sizeof(struct lpfc_name));
1589 }
James Smart9a6b09c2012-03-01 22:37:42 -05001590 rc = BG_ERR_TGT | BG_ERR_CHECK;
James Smartacd68592012-01-18 16:25:09 -05001591 break;
1592 }
1593 /* Drop thru */
James Smart9a6b09c2012-03-01 22:37:42 -05001594 case SCSI_PROT_WRITE_INSERT:
1595 /*
1596 * For WRITE_INSERT, force the
1597 * error to be sent on the wire. It should be
1598 * detected by the Target.
1599 */
1600 /* DEAD will be the apptag on the wire */
1601 *apptag = 0xDEAD;
1602 phba->lpfc_injerr_wapp_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001603 if (phba->lpfc_injerr_wapp_cnt == 0) {
1604 phba->lpfc_injerr_nportid = 0;
1605 phba->lpfc_injerr_lba =
1606 LPFC_INJERR_LBA_OFF;
1607 memset(&phba->lpfc_injerr_wwpn,
1608 0, sizeof(struct lpfc_name));
1609 }
James Smart9a6b09c2012-03-01 22:37:42 -05001610 rc = BG_ERR_TGT | BG_ERR_CHECK;
1611
1612 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1613 "0813 BLKGRD: Injecting apptag error: "
1614 "write lba x%lx\n", (unsigned long)lba);
1615 break;
James Smartacd68592012-01-18 16:25:09 -05001616 case SCSI_PROT_WRITE_STRIP:
1617 /*
1618 * For WRITE_STRIP and WRITE_PASS,
1619 * force the error on data
1620 * being copied from SLI-Host to SLI-Port.
1621 */
1622 *apptag = 0xDEAD;
1623 phba->lpfc_injerr_wapp_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001624 if (phba->lpfc_injerr_wapp_cnt == 0) {
1625 phba->lpfc_injerr_nportid = 0;
1626 phba->lpfc_injerr_lba =
1627 LPFC_INJERR_LBA_OFF;
1628 memset(&phba->lpfc_injerr_wwpn,
1629 0, sizeof(struct lpfc_name));
1630 }
James Smartacd68592012-01-18 16:25:09 -05001631 rc = BG_ERR_INIT;
1632
1633 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1634 "0812 BLKGRD: Injecting apptag error: "
1635 "write lba x%lx\n", (unsigned long)lba);
1636 break;
James Smartf9bb2da2011-10-10 21:34:11 -04001637 }
James Smartacd68592012-01-18 16:25:09 -05001638 }
1639 if (phba->lpfc_injerr_rapp_cnt) {
1640 switch (op) {
1641 case SCSI_PROT_READ_INSERT:
James Smartacd68592012-01-18 16:25:09 -05001642 case SCSI_PROT_READ_STRIP:
1643 case SCSI_PROT_READ_PASS:
1644 /*
1645 * For READ_STRIP and READ_PASS, force the
1646 * error on data being read off the wire. It
1647 * should force an IO error to the driver.
1648 */
James Smartf9bb2da2011-10-10 21:34:11 -04001649 *apptag = 0xDEAD;
1650 phba->lpfc_injerr_rapp_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001651 if (phba->lpfc_injerr_rapp_cnt == 0) {
1652 phba->lpfc_injerr_nportid = 0;
1653 phba->lpfc_injerr_lba =
1654 LPFC_INJERR_LBA_OFF;
1655 memset(&phba->lpfc_injerr_wwpn,
1656 0, sizeof(struct lpfc_name));
1657 }
James Smartacd68592012-01-18 16:25:09 -05001658 rc = BG_ERR_INIT;
James Smartf9bb2da2011-10-10 21:34:11 -04001659
1660 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
James Smartacd68592012-01-18 16:25:09 -05001661 "0814 BLKGRD: Injecting apptag error: "
1662 "read lba x%lx\n", (unsigned long)lba);
1663 break;
1664 }
1665 }
1666 }
1667
1668
1669 /* Should we change the Guard Tag */
1670 if (new_guard) {
1671 if (phba->lpfc_injerr_wgrd_cnt) {
1672 switch (op) {
1673 case SCSI_PROT_WRITE_PASS:
James Smart9a6b09c2012-03-01 22:37:42 -05001674 rc = BG_ERR_CHECK;
James Smartacd68592012-01-18 16:25:09 -05001675 /* Drop thru */
James Smartacd68592012-01-18 16:25:09 -05001676
James Smartacd68592012-01-18 16:25:09 -05001677 case SCSI_PROT_WRITE_INSERT:
1678 /*
1679 * For WRITE_INSERT, force the
1680 * error to be sent on the wire. It should be
1681 * detected by the Target.
1682 */
1683 phba->lpfc_injerr_wgrd_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001684 if (phba->lpfc_injerr_wgrd_cnt == 0) {
1685 phba->lpfc_injerr_nportid = 0;
1686 phba->lpfc_injerr_lba =
1687 LPFC_INJERR_LBA_OFF;
1688 memset(&phba->lpfc_injerr_wwpn,
1689 0, sizeof(struct lpfc_name));
1690 }
James Smartacd68592012-01-18 16:25:09 -05001691
James Smart9a6b09c2012-03-01 22:37:42 -05001692 rc |= BG_ERR_TGT | BG_ERR_SWAP;
James Smartacd68592012-01-18 16:25:09 -05001693 /* Signals the caller to swap CRC->CSUM */
1694
1695 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1696 "0817 BLKGRD: Injecting guard error: "
1697 "write lba x%lx\n", (unsigned long)lba);
1698 break;
James Smart9a6b09c2012-03-01 22:37:42 -05001699 case SCSI_PROT_WRITE_STRIP:
1700 /*
1701 * For WRITE_STRIP and WRITE_PASS,
1702 * force the error on data
1703 * being copied from SLI-Host to SLI-Port.
1704 */
1705 phba->lpfc_injerr_wgrd_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001706 if (phba->lpfc_injerr_wgrd_cnt == 0) {
1707 phba->lpfc_injerr_nportid = 0;
1708 phba->lpfc_injerr_lba =
1709 LPFC_INJERR_LBA_OFF;
1710 memset(&phba->lpfc_injerr_wwpn,
1711 0, sizeof(struct lpfc_name));
1712 }
James Smart9a6b09c2012-03-01 22:37:42 -05001713
1714 rc = BG_ERR_INIT | BG_ERR_SWAP;
1715 /* Signals the caller to swap CRC->CSUM */
1716
1717 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1718 "0816 BLKGRD: Injecting guard error: "
1719 "write lba x%lx\n", (unsigned long)lba);
1720 break;
James Smartacd68592012-01-18 16:25:09 -05001721 }
1722 }
1723 if (phba->lpfc_injerr_rgrd_cnt) {
1724 switch (op) {
1725 case SCSI_PROT_READ_INSERT:
James Smartacd68592012-01-18 16:25:09 -05001726 case SCSI_PROT_READ_STRIP:
1727 case SCSI_PROT_READ_PASS:
1728 /*
1729 * For READ_STRIP and READ_PASS, force the
1730 * error on data being read off the wire. It
1731 * should force an IO error to the driver.
1732 */
James Smartacd68592012-01-18 16:25:09 -05001733 phba->lpfc_injerr_rgrd_cnt--;
James Smart4ac9b222012-03-01 22:38:29 -05001734 if (phba->lpfc_injerr_rgrd_cnt == 0) {
1735 phba->lpfc_injerr_nportid = 0;
1736 phba->lpfc_injerr_lba =
1737 LPFC_INJERR_LBA_OFF;
1738 memset(&phba->lpfc_injerr_wwpn,
1739 0, sizeof(struct lpfc_name));
1740 }
James Smartacd68592012-01-18 16:25:09 -05001741
James Smart9a6b09c2012-03-01 22:37:42 -05001742 rc = BG_ERR_INIT | BG_ERR_SWAP;
James Smartacd68592012-01-18 16:25:09 -05001743 /* Signals the caller to swap CRC->CSUM */
1744
1745 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1746 "0818 BLKGRD: Injecting guard error: "
James Smartf9bb2da2011-10-10 21:34:11 -04001747 "read lba x%lx\n", (unsigned long)lba);
1748 }
1749 }
1750 }
1751
James Smartf9bb2da2011-10-10 21:34:11 -04001752 return rc;
1753}
1754#endif
1755
James Smartacd68592012-01-18 16:25:09 -05001756/**
1757 * lpfc_sc_to_bg_opcodes - Determine the BlockGuard opcodes to be used with
1758 * the specified SCSI command.
1759 * @phba: The Hba for which this call is being executed.
James Smart6c8eea52010-04-06 14:49:53 -04001760 * @sc: The SCSI command to examine
1761 * @txopt: (out) BlockGuard operation for transmitted data
1762 * @rxopt: (out) BlockGuard operation for received data
1763 *
1764 * Returns: zero on success; non-zero if tx and/or rx op cannot be determined
1765 *
James Smartacd68592012-01-18 16:25:09 -05001766 **/
James Smarte2a0a9d2008-12-04 22:40:02 -05001767static int
James Smart6c8eea52010-04-06 14:49:53 -04001768lpfc_sc_to_bg_opcodes(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1769 uint8_t *txop, uint8_t *rxop)
James Smarte2a0a9d2008-12-04 22:40:02 -05001770{
1771 uint8_t guard_type = scsi_host_get_guard(sc->device->host);
James Smart6c8eea52010-04-06 14:49:53 -04001772 uint8_t ret = 0;
James Smarte2a0a9d2008-12-04 22:40:02 -05001773
1774 if (guard_type == SHOST_DIX_GUARD_IP) {
1775 switch (scsi_get_prot_op(sc)) {
1776 case SCSI_PROT_READ_INSERT:
1777 case SCSI_PROT_WRITE_STRIP:
James Smart6c8eea52010-04-06 14:49:53 -04001778 *rxop = BG_OP_IN_NODIF_OUT_CSUM;
James Smart4ac9b222012-03-01 22:38:29 -05001779 *txop = BG_OP_IN_CSUM_OUT_NODIF;
James Smarte2a0a9d2008-12-04 22:40:02 -05001780 break;
1781
1782 case SCSI_PROT_READ_STRIP:
1783 case SCSI_PROT_WRITE_INSERT:
James Smart6c8eea52010-04-06 14:49:53 -04001784 *rxop = BG_OP_IN_CRC_OUT_NODIF;
James Smart4ac9b222012-03-01 22:38:29 -05001785 *txop = BG_OP_IN_NODIF_OUT_CRC;
James Smarte2a0a9d2008-12-04 22:40:02 -05001786 break;
1787
Martin K. Petersenc6af4042009-09-18 17:32:59 -04001788 case SCSI_PROT_READ_PASS:
1789 case SCSI_PROT_WRITE_PASS:
James Smart6c8eea52010-04-06 14:49:53 -04001790 *rxop = BG_OP_IN_CRC_OUT_CSUM;
James Smart4ac9b222012-03-01 22:38:29 -05001791 *txop = BG_OP_IN_CSUM_OUT_CRC;
James Smarte2a0a9d2008-12-04 22:40:02 -05001792 break;
1793
James Smarte2a0a9d2008-12-04 22:40:02 -05001794 case SCSI_PROT_NORMAL:
1795 default:
James Smart6a9c52c2009-10-02 15:16:51 -04001796 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
James Smart7c56b9f2011-07-22 18:36:25 -04001797 "9063 BLKGRD: Bad op/guard:%d/IP combination\n",
1798 scsi_get_prot_op(sc));
James Smart6c8eea52010-04-06 14:49:53 -04001799 ret = 1;
James Smarte2a0a9d2008-12-04 22:40:02 -05001800 break;
1801
1802 }
James Smart7c56b9f2011-07-22 18:36:25 -04001803 } else {
James Smarte2a0a9d2008-12-04 22:40:02 -05001804 switch (scsi_get_prot_op(sc)) {
1805 case SCSI_PROT_READ_STRIP:
1806 case SCSI_PROT_WRITE_INSERT:
James Smart6c8eea52010-04-06 14:49:53 -04001807 *rxop = BG_OP_IN_CRC_OUT_NODIF;
James Smart4ac9b222012-03-01 22:38:29 -05001808 *txop = BG_OP_IN_NODIF_OUT_CRC;
James Smarte2a0a9d2008-12-04 22:40:02 -05001809 break;
1810
1811 case SCSI_PROT_READ_PASS:
1812 case SCSI_PROT_WRITE_PASS:
James Smart6c8eea52010-04-06 14:49:53 -04001813 *rxop = BG_OP_IN_CRC_OUT_CRC;
James Smart4ac9b222012-03-01 22:38:29 -05001814 *txop = BG_OP_IN_CRC_OUT_CRC;
James Smarte2a0a9d2008-12-04 22:40:02 -05001815 break;
1816
James Smarte2a0a9d2008-12-04 22:40:02 -05001817 case SCSI_PROT_READ_INSERT:
1818 case SCSI_PROT_WRITE_STRIP:
James Smart7c56b9f2011-07-22 18:36:25 -04001819 *rxop = BG_OP_IN_NODIF_OUT_CRC;
James Smart4ac9b222012-03-01 22:38:29 -05001820 *txop = BG_OP_IN_CRC_OUT_NODIF;
James Smart7c56b9f2011-07-22 18:36:25 -04001821 break;
1822
James Smarte2a0a9d2008-12-04 22:40:02 -05001823 case SCSI_PROT_NORMAL:
1824 default:
James Smart6a9c52c2009-10-02 15:16:51 -04001825 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
James Smart7c56b9f2011-07-22 18:36:25 -04001826 "9075 BLKGRD: Bad op/guard:%d/CRC combination\n",
1827 scsi_get_prot_op(sc));
James Smart6c8eea52010-04-06 14:49:53 -04001828 ret = 1;
James Smarte2a0a9d2008-12-04 22:40:02 -05001829 break;
1830 }
James Smarte2a0a9d2008-12-04 22:40:02 -05001831 }
1832
James Smart6c8eea52010-04-06 14:49:53 -04001833 return ret;
James Smarte2a0a9d2008-12-04 22:40:02 -05001834}
1835
James Smartacd68592012-01-18 16:25:09 -05001836#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1837/**
1838 * lpfc_bg_err_opcodes - reDetermine the BlockGuard opcodes to be used with
1839 * the specified SCSI command in order to force a guard tag error.
1840 * @phba: The Hba for which this call is being executed.
1841 * @sc: The SCSI command to examine
1842 * @txopt: (out) BlockGuard operation for transmitted data
1843 * @rxopt: (out) BlockGuard operation for received data
1844 *
1845 * Returns: zero on success; non-zero if tx and/or rx op cannot be determined
1846 *
1847 **/
1848static int
1849lpfc_bg_err_opcodes(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1850 uint8_t *txop, uint8_t *rxop)
1851{
1852 uint8_t guard_type = scsi_host_get_guard(sc->device->host);
1853 uint8_t ret = 0;
1854
1855 if (guard_type == SHOST_DIX_GUARD_IP) {
1856 switch (scsi_get_prot_op(sc)) {
1857 case SCSI_PROT_READ_INSERT:
1858 case SCSI_PROT_WRITE_STRIP:
James Smartacd68592012-01-18 16:25:09 -05001859 *rxop = BG_OP_IN_NODIF_OUT_CRC;
James Smart4ac9b222012-03-01 22:38:29 -05001860 *txop = BG_OP_IN_CRC_OUT_NODIF;
James Smartacd68592012-01-18 16:25:09 -05001861 break;
1862
1863 case SCSI_PROT_READ_STRIP:
1864 case SCSI_PROT_WRITE_INSERT:
James Smartacd68592012-01-18 16:25:09 -05001865 *rxop = BG_OP_IN_CSUM_OUT_NODIF;
James Smart4ac9b222012-03-01 22:38:29 -05001866 *txop = BG_OP_IN_NODIF_OUT_CSUM;
James Smartacd68592012-01-18 16:25:09 -05001867 break;
1868
1869 case SCSI_PROT_READ_PASS:
1870 case SCSI_PROT_WRITE_PASS:
James Smart4ac9b222012-03-01 22:38:29 -05001871 *rxop = BG_OP_IN_CSUM_OUT_CRC;
James Smart9a6b09c2012-03-01 22:37:42 -05001872 *txop = BG_OP_IN_CRC_OUT_CSUM;
James Smartacd68592012-01-18 16:25:09 -05001873 break;
1874
1875 case SCSI_PROT_NORMAL:
1876 default:
1877 break;
1878
1879 }
1880 } else {
1881 switch (scsi_get_prot_op(sc)) {
1882 case SCSI_PROT_READ_STRIP:
1883 case SCSI_PROT_WRITE_INSERT:
James Smartacd68592012-01-18 16:25:09 -05001884 *rxop = BG_OP_IN_CSUM_OUT_NODIF;
James Smart4ac9b222012-03-01 22:38:29 -05001885 *txop = BG_OP_IN_NODIF_OUT_CSUM;
James Smartacd68592012-01-18 16:25:09 -05001886 break;
1887
1888 case SCSI_PROT_READ_PASS:
1889 case SCSI_PROT_WRITE_PASS:
James Smart4ac9b222012-03-01 22:38:29 -05001890 *rxop = BG_OP_IN_CSUM_OUT_CSUM;
James Smart9a6b09c2012-03-01 22:37:42 -05001891 *txop = BG_OP_IN_CSUM_OUT_CSUM;
James Smartacd68592012-01-18 16:25:09 -05001892 break;
1893
1894 case SCSI_PROT_READ_INSERT:
1895 case SCSI_PROT_WRITE_STRIP:
James Smartacd68592012-01-18 16:25:09 -05001896 *rxop = BG_OP_IN_NODIF_OUT_CSUM;
James Smart4ac9b222012-03-01 22:38:29 -05001897 *txop = BG_OP_IN_CSUM_OUT_NODIF;
James Smartacd68592012-01-18 16:25:09 -05001898 break;
1899
1900 case SCSI_PROT_NORMAL:
1901 default:
1902 break;
1903 }
1904 }
1905
1906 return ret;
1907}
1908#endif
1909
1910/**
1911 * lpfc_bg_setup_bpl - Setup BlockGuard BPL with no protection data
1912 * @phba: The Hba for which this call is being executed.
1913 * @sc: pointer to scsi command we're working on
1914 * @bpl: pointer to buffer list for protection groups
1915 * @datacnt: number of segments of data that have been dma mapped
1916 *
1917 * This function sets up BPL buffer list for protection groups of
James Smarte2a0a9d2008-12-04 22:40:02 -05001918 * type LPFC_PG_TYPE_NO_DIF
1919 *
1920 * This is usually used when the HBA is instructed to generate
1921 * DIFs and insert them into data stream (or strip DIF from
1922 * incoming data stream)
1923 *
1924 * The buffer list consists of just one protection group described
1925 * below:
1926 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04001927 * start of prot group --> | PDE_5 |
1928 * +-------------------------+
1929 * | PDE_6 |
James Smarte2a0a9d2008-12-04 22:40:02 -05001930 * +-------------------------+
1931 * | Data BDE |
1932 * +-------------------------+
1933 * |more Data BDE's ... (opt)|
1934 * +-------------------------+
1935 *
James Smarte2a0a9d2008-12-04 22:40:02 -05001936 *
1937 * Note: Data s/g buffers have been dma mapped
James Smartacd68592012-01-18 16:25:09 -05001938 *
1939 * Returns the number of BDEs added to the BPL.
1940 **/
James Smarte2a0a9d2008-12-04 22:40:02 -05001941static int
1942lpfc_bg_setup_bpl(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1943 struct ulp_bde64 *bpl, int datasegcnt)
1944{
1945 struct scatterlist *sgde = NULL; /* s/g data entry */
James Smart6c8eea52010-04-06 14:49:53 -04001946 struct lpfc_pde5 *pde5 = NULL;
1947 struct lpfc_pde6 *pde6 = NULL;
James Smarte2a0a9d2008-12-04 22:40:02 -05001948 dma_addr_t physaddr;
James Smart6c8eea52010-04-06 14:49:53 -04001949 int i = 0, num_bde = 0, status;
James Smarte2a0a9d2008-12-04 22:40:02 -05001950 int datadir = sc->sc_data_direction;
James Smart0829a192012-05-09 21:18:12 -04001951#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smartacd68592012-01-18 16:25:09 -05001952 uint32_t rc;
James Smart0829a192012-05-09 21:18:12 -04001953#endif
James Smartacd68592012-01-18 16:25:09 -05001954 uint32_t checking = 1;
James Smarte2a0a9d2008-12-04 22:40:02 -05001955 uint32_t reftag;
James Smart7c56b9f2011-07-22 18:36:25 -04001956 unsigned blksize;
James Smart6c8eea52010-04-06 14:49:53 -04001957 uint8_t txop, rxop;
James Smarte2a0a9d2008-12-04 22:40:02 -05001958
James Smart6c8eea52010-04-06 14:49:53 -04001959 status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
1960 if (status)
James Smarte2a0a9d2008-12-04 22:40:02 -05001961 goto out;
1962
James Smart6c8eea52010-04-06 14:49:53 -04001963 /* extract some info from the scsi command for pde*/
James Smarte2a0a9d2008-12-04 22:40:02 -05001964 blksize = lpfc_cmd_blksize(sc);
James Smartacd68592012-01-18 16:25:09 -05001965 reftag = (uint32_t)scsi_get_lba(sc); /* Truncate LBA */
James Smarte2a0a9d2008-12-04 22:40:02 -05001966
James Smartf9bb2da2011-10-10 21:34:11 -04001967#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smart4ac9b222012-03-01 22:38:29 -05001968 rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1);
James Smartacd68592012-01-18 16:25:09 -05001969 if (rc) {
James Smart9a6b09c2012-03-01 22:37:42 -05001970 if (rc & BG_ERR_SWAP)
James Smartacd68592012-01-18 16:25:09 -05001971 lpfc_bg_err_opcodes(phba, sc, &txop, &rxop);
James Smart9a6b09c2012-03-01 22:37:42 -05001972 if (rc & BG_ERR_CHECK)
James Smartacd68592012-01-18 16:25:09 -05001973 checking = 0;
1974 }
James Smartf9bb2da2011-10-10 21:34:11 -04001975#endif
1976
James Smart6c8eea52010-04-06 14:49:53 -04001977 /* setup PDE5 with what we have */
1978 pde5 = (struct lpfc_pde5 *) bpl;
1979 memset(pde5, 0, sizeof(struct lpfc_pde5));
1980 bf_set(pde5_type, pde5, LPFC_PDE5_DESCRIPTOR);
James Smarte2a0a9d2008-12-04 22:40:02 -05001981
James Smartbc739052010-08-04 16:11:18 -04001982 /* Endianness conversion if necessary for PDE5 */
James Smart589a52d2010-07-14 15:30:54 -04001983 pde5->word0 = cpu_to_le32(pde5->word0);
James Smart7c56b9f2011-07-22 18:36:25 -04001984 pde5->reftag = cpu_to_le32(reftag);
James Smart589a52d2010-07-14 15:30:54 -04001985
James Smart6c8eea52010-04-06 14:49:53 -04001986 /* advance bpl and increment bde count */
1987 num_bde++;
1988 bpl++;
1989 pde6 = (struct lpfc_pde6 *) bpl;
1990
1991 /* setup PDE6 with the rest of the info */
1992 memset(pde6, 0, sizeof(struct lpfc_pde6));
1993 bf_set(pde6_type, pde6, LPFC_PDE6_DESCRIPTOR);
1994 bf_set(pde6_optx, pde6, txop);
1995 bf_set(pde6_oprx, pde6, rxop);
1996 if (datadir == DMA_FROM_DEVICE) {
James Smartacd68592012-01-18 16:25:09 -05001997 bf_set(pde6_ce, pde6, checking);
1998 bf_set(pde6_re, pde6, checking);
James Smart6c8eea52010-04-06 14:49:53 -04001999 }
2000 bf_set(pde6_ai, pde6, 1);
James Smart7c56b9f2011-07-22 18:36:25 -04002001 bf_set(pde6_ae, pde6, 0);
2002 bf_set(pde6_apptagval, pde6, 0);
James Smart6c8eea52010-04-06 14:49:53 -04002003
James Smartbc739052010-08-04 16:11:18 -04002004 /* Endianness conversion if necessary for PDE6 */
James Smart589a52d2010-07-14 15:30:54 -04002005 pde6->word0 = cpu_to_le32(pde6->word0);
2006 pde6->word1 = cpu_to_le32(pde6->word1);
2007 pde6->word2 = cpu_to_le32(pde6->word2);
2008
James Smart6c8eea52010-04-06 14:49:53 -04002009 /* advance bpl and increment bde count */
James Smarte2a0a9d2008-12-04 22:40:02 -05002010 num_bde++;
2011 bpl++;
2012
2013 /* assumption: caller has already run dma_map_sg on command data */
2014 scsi_for_each_sg(sc, sgde, datasegcnt, i) {
2015 physaddr = sg_dma_address(sgde);
2016 bpl->addrLow = le32_to_cpu(putPaddrLow(physaddr));
2017 bpl->addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
2018 bpl->tus.f.bdeSize = sg_dma_len(sgde);
2019 if (datadir == DMA_TO_DEVICE)
2020 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
2021 else
2022 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
2023 bpl->tus.w = le32_to_cpu(bpl->tus.w);
2024 bpl++;
2025 num_bde++;
2026 }
2027
2028out:
2029 return num_bde;
2030}
2031
James Smartacd68592012-01-18 16:25:09 -05002032/**
2033 * lpfc_bg_setup_bpl_prot - Setup BlockGuard BPL with protection data
2034 * @phba: The Hba for which this call is being executed.
2035 * @sc: pointer to scsi command we're working on
2036 * @bpl: pointer to buffer list for protection groups
2037 * @datacnt: number of segments of data that have been dma mapped
2038 * @protcnt: number of segment of protection data that have been dma mapped
2039 *
2040 * This function sets up BPL buffer list for protection groups of
2041 * type LPFC_PG_TYPE_DIF
James Smarte2a0a9d2008-12-04 22:40:02 -05002042 *
2043 * This is usually used when DIFs are in their own buffers,
2044 * separate from the data. The HBA can then by instructed
2045 * to place the DIFs in the outgoing stream. For read operations,
2046 * The HBA could extract the DIFs and place it in DIF buffers.
2047 *
2048 * The buffer list for this type consists of one or more of the
2049 * protection groups described below:
2050 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04002051 * start of first prot group --> | PDE_5 |
James Smarte2a0a9d2008-12-04 22:40:02 -05002052 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04002053 * | PDE_6 |
2054 * +-------------------------+
2055 * | PDE_7 (Prot BDE) |
James Smarte2a0a9d2008-12-04 22:40:02 -05002056 * +-------------------------+
2057 * | Data BDE |
2058 * +-------------------------+
2059 * |more Data BDE's ... (opt)|
2060 * +-------------------------+
James Smart6c8eea52010-04-06 14:49:53 -04002061 * start of new prot group --> | PDE_5 |
James Smarte2a0a9d2008-12-04 22:40:02 -05002062 * +-------------------------+
2063 * | ... |
2064 * +-------------------------+
2065 *
James Smarte2a0a9d2008-12-04 22:40:02 -05002066 * Note: It is assumed that both data and protection s/g buffers have been
2067 * mapped for DMA
James Smartacd68592012-01-18 16:25:09 -05002068 *
2069 * Returns the number of BDEs added to the BPL.
2070 **/
James Smarte2a0a9d2008-12-04 22:40:02 -05002071static int
2072lpfc_bg_setup_bpl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc,
2073 struct ulp_bde64 *bpl, int datacnt, int protcnt)
2074{
2075 struct scatterlist *sgde = NULL; /* s/g data entry */
2076 struct scatterlist *sgpe = NULL; /* s/g prot entry */
James Smart6c8eea52010-04-06 14:49:53 -04002077 struct lpfc_pde5 *pde5 = NULL;
2078 struct lpfc_pde6 *pde6 = NULL;
James Smart7f860592011-03-11 16:05:52 -05002079 struct lpfc_pde7 *pde7 = NULL;
James Smarte2a0a9d2008-12-04 22:40:02 -05002080 dma_addr_t dataphysaddr, protphysaddr;
2081 unsigned short curr_data = 0, curr_prot = 0;
James Smart7f860592011-03-11 16:05:52 -05002082 unsigned int split_offset;
2083 unsigned int protgroup_len, protgroup_offset = 0, protgroup_remainder;
James Smarte2a0a9d2008-12-04 22:40:02 -05002084 unsigned int protgrp_blks, protgrp_bytes;
2085 unsigned int remainder, subtotal;
James Smart6c8eea52010-04-06 14:49:53 -04002086 int status;
James Smarte2a0a9d2008-12-04 22:40:02 -05002087 int datadir = sc->sc_data_direction;
2088 unsigned char pgdone = 0, alldone = 0;
2089 unsigned blksize;
James Smart0829a192012-05-09 21:18:12 -04002090#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smartacd68592012-01-18 16:25:09 -05002091 uint32_t rc;
James Smart0829a192012-05-09 21:18:12 -04002092#endif
James Smartacd68592012-01-18 16:25:09 -05002093 uint32_t checking = 1;
James Smarte2a0a9d2008-12-04 22:40:02 -05002094 uint32_t reftag;
James Smart6c8eea52010-04-06 14:49:53 -04002095 uint8_t txop, rxop;
James Smarte2a0a9d2008-12-04 22:40:02 -05002096 int num_bde = 0;
2097
2098 sgpe = scsi_prot_sglist(sc);
2099 sgde = scsi_sglist(sc);
2100
2101 if (!sgpe || !sgde) {
2102 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2103 "9020 Invalid s/g entry: data=0x%p prot=0x%p\n",
2104 sgpe, sgde);
2105 return 0;
2106 }
2107
James Smart6c8eea52010-04-06 14:49:53 -04002108 status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
2109 if (status)
James Smarte2a0a9d2008-12-04 22:40:02 -05002110 goto out;
2111
James Smart6c8eea52010-04-06 14:49:53 -04002112 /* extract some info from the scsi command */
James Smarte2a0a9d2008-12-04 22:40:02 -05002113 blksize = lpfc_cmd_blksize(sc);
James Smartacd68592012-01-18 16:25:09 -05002114 reftag = (uint32_t)scsi_get_lba(sc); /* Truncate LBA */
James Smarte2a0a9d2008-12-04 22:40:02 -05002115
James Smartf9bb2da2011-10-10 21:34:11 -04002116#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smart4ac9b222012-03-01 22:38:29 -05002117 rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1);
James Smartacd68592012-01-18 16:25:09 -05002118 if (rc) {
James Smart9a6b09c2012-03-01 22:37:42 -05002119 if (rc & BG_ERR_SWAP)
James Smartacd68592012-01-18 16:25:09 -05002120 lpfc_bg_err_opcodes(phba, sc, &txop, &rxop);
James Smart9a6b09c2012-03-01 22:37:42 -05002121 if (rc & BG_ERR_CHECK)
James Smartacd68592012-01-18 16:25:09 -05002122 checking = 0;
2123 }
James Smartf9bb2da2011-10-10 21:34:11 -04002124#endif
2125
James Smarte2a0a9d2008-12-04 22:40:02 -05002126 split_offset = 0;
2127 do {
James Smart6c8eea52010-04-06 14:49:53 -04002128 /* setup PDE5 with what we have */
2129 pde5 = (struct lpfc_pde5 *) bpl;
2130 memset(pde5, 0, sizeof(struct lpfc_pde5));
2131 bf_set(pde5_type, pde5, LPFC_PDE5_DESCRIPTOR);
James Smarte2a0a9d2008-12-04 22:40:02 -05002132
James Smartbc739052010-08-04 16:11:18 -04002133 /* Endianness conversion if necessary for PDE5 */
James Smart589a52d2010-07-14 15:30:54 -04002134 pde5->word0 = cpu_to_le32(pde5->word0);
James Smart7c56b9f2011-07-22 18:36:25 -04002135 pde5->reftag = cpu_to_le32(reftag);
James Smart589a52d2010-07-14 15:30:54 -04002136
James Smart6c8eea52010-04-06 14:49:53 -04002137 /* advance bpl and increment bde count */
2138 num_bde++;
2139 bpl++;
2140 pde6 = (struct lpfc_pde6 *) bpl;
James Smarte2a0a9d2008-12-04 22:40:02 -05002141
James Smart6c8eea52010-04-06 14:49:53 -04002142 /* setup PDE6 with the rest of the info */
2143 memset(pde6, 0, sizeof(struct lpfc_pde6));
2144 bf_set(pde6_type, pde6, LPFC_PDE6_DESCRIPTOR);
2145 bf_set(pde6_optx, pde6, txop);
2146 bf_set(pde6_oprx, pde6, rxop);
James Smartacd68592012-01-18 16:25:09 -05002147 bf_set(pde6_ce, pde6, checking);
2148 bf_set(pde6_re, pde6, checking);
James Smart6c8eea52010-04-06 14:49:53 -04002149 bf_set(pde6_ai, pde6, 1);
James Smart7c56b9f2011-07-22 18:36:25 -04002150 bf_set(pde6_ae, pde6, 0);
2151 bf_set(pde6_apptagval, pde6, 0);
James Smart6c8eea52010-04-06 14:49:53 -04002152
James Smartbc739052010-08-04 16:11:18 -04002153 /* Endianness conversion if necessary for PDE6 */
James Smart589a52d2010-07-14 15:30:54 -04002154 pde6->word0 = cpu_to_le32(pde6->word0);
2155 pde6->word1 = cpu_to_le32(pde6->word1);
2156 pde6->word2 = cpu_to_le32(pde6->word2);
2157
James Smart6c8eea52010-04-06 14:49:53 -04002158 /* advance bpl and increment bde count */
James Smarte2a0a9d2008-12-04 22:40:02 -05002159 num_bde++;
2160 bpl++;
2161
2162 /* setup the first BDE that points to protection buffer */
James Smart7f860592011-03-11 16:05:52 -05002163 protphysaddr = sg_dma_address(sgpe) + protgroup_offset;
2164 protgroup_len = sg_dma_len(sgpe) - protgroup_offset;
James Smarte2a0a9d2008-12-04 22:40:02 -05002165
James Smarte2a0a9d2008-12-04 22:40:02 -05002166 /* must be integer multiple of the DIF block length */
2167 BUG_ON(protgroup_len % 8);
2168
James Smart7f860592011-03-11 16:05:52 -05002169 pde7 = (struct lpfc_pde7 *) bpl;
2170 memset(pde7, 0, sizeof(struct lpfc_pde7));
2171 bf_set(pde7_type, pde7, LPFC_PDE7_DESCRIPTOR);
2172
James Smart7c56b9f2011-07-22 18:36:25 -04002173 pde7->addrHigh = le32_to_cpu(putPaddrHigh(protphysaddr));
2174 pde7->addrLow = le32_to_cpu(putPaddrLow(protphysaddr));
James Smart7f860592011-03-11 16:05:52 -05002175
James Smarte2a0a9d2008-12-04 22:40:02 -05002176 protgrp_blks = protgroup_len / 8;
2177 protgrp_bytes = protgrp_blks * blksize;
2178
James Smart7f860592011-03-11 16:05:52 -05002179 /* check if this pde is crossing the 4K boundary; if so split */
2180 if ((pde7->addrLow & 0xfff) + protgroup_len > 0x1000) {
2181 protgroup_remainder = 0x1000 - (pde7->addrLow & 0xfff);
2182 protgroup_offset += protgroup_remainder;
2183 protgrp_blks = protgroup_remainder / 8;
James Smart7c56b9f2011-07-22 18:36:25 -04002184 protgrp_bytes = protgrp_blks * blksize;
James Smart7f860592011-03-11 16:05:52 -05002185 } else {
2186 protgroup_offset = 0;
2187 curr_prot++;
2188 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002189
James Smarte2a0a9d2008-12-04 22:40:02 -05002190 num_bde++;
2191
2192 /* setup BDE's for data blocks associated with DIF data */
2193 pgdone = 0;
2194 subtotal = 0; /* total bytes processed for current prot grp */
2195 while (!pgdone) {
2196 if (!sgde) {
James Smart6a9c52c2009-10-02 15:16:51 -04002197 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2198 "9065 BLKGRD:%s Invalid data segment\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05002199 __func__);
2200 return 0;
2201 }
2202 bpl++;
2203 dataphysaddr = sg_dma_address(sgde) + split_offset;
2204 bpl->addrLow = le32_to_cpu(putPaddrLow(dataphysaddr));
2205 bpl->addrHigh = le32_to_cpu(putPaddrHigh(dataphysaddr));
2206
2207 remainder = sg_dma_len(sgde) - split_offset;
2208
2209 if ((subtotal + remainder) <= protgrp_bytes) {
2210 /* we can use this whole buffer */
2211 bpl->tus.f.bdeSize = remainder;
2212 split_offset = 0;
2213
2214 if ((subtotal + remainder) == protgrp_bytes)
2215 pgdone = 1;
2216 } else {
2217 /* must split this buffer with next prot grp */
2218 bpl->tus.f.bdeSize = protgrp_bytes - subtotal;
2219 split_offset += bpl->tus.f.bdeSize;
2220 }
2221
2222 subtotal += bpl->tus.f.bdeSize;
2223
2224 if (datadir == DMA_TO_DEVICE)
2225 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
2226 else
2227 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
2228 bpl->tus.w = le32_to_cpu(bpl->tus.w);
2229
2230 num_bde++;
2231 curr_data++;
2232
2233 if (split_offset)
2234 break;
2235
2236 /* Move to the next s/g segment if possible */
2237 sgde = sg_next(sgde);
James Smart6c8eea52010-04-06 14:49:53 -04002238
James Smarte2a0a9d2008-12-04 22:40:02 -05002239 }
2240
James Smart7f860592011-03-11 16:05:52 -05002241 if (protgroup_offset) {
2242 /* update the reference tag */
2243 reftag += protgrp_blks;
2244 bpl++;
2245 continue;
2246 }
2247
James Smarte2a0a9d2008-12-04 22:40:02 -05002248 /* are we done ? */
2249 if (curr_prot == protcnt) {
2250 alldone = 1;
2251 } else if (curr_prot < protcnt) {
2252 /* advance to next prot buffer */
2253 sgpe = sg_next(sgpe);
2254 bpl++;
2255
2256 /* update the reference tag */
2257 reftag += protgrp_blks;
2258 } else {
2259 /* if we're here, we have a bug */
James Smart6a9c52c2009-10-02 15:16:51 -04002260 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2261 "9054 BLKGRD: bug in %s\n", __func__);
James Smarte2a0a9d2008-12-04 22:40:02 -05002262 }
2263
2264 } while (!alldone);
James Smarte2a0a9d2008-12-04 22:40:02 -05002265out:
2266
James Smarte2a0a9d2008-12-04 22:40:02 -05002267 return num_bde;
2268}
James Smart7f860592011-03-11 16:05:52 -05002269
James Smartacd68592012-01-18 16:25:09 -05002270/**
2271 * lpfc_bg_setup_sgl - Setup BlockGuard SGL with no protection data
2272 * @phba: The Hba for which this call is being executed.
2273 * @sc: pointer to scsi command we're working on
2274 * @sgl: pointer to buffer list for protection groups
2275 * @datacnt: number of segments of data that have been dma mapped
2276 *
2277 * This function sets up SGL buffer list for protection groups of
2278 * type LPFC_PG_TYPE_NO_DIF
2279 *
2280 * This is usually used when the HBA is instructed to generate
2281 * DIFs and insert them into data stream (or strip DIF from
2282 * incoming data stream)
2283 *
2284 * The buffer list consists of just one protection group described
2285 * below:
2286 * +-------------------------+
2287 * start of prot group --> | DI_SEED |
2288 * +-------------------------+
2289 * | Data SGE |
2290 * +-------------------------+
2291 * |more Data SGE's ... (opt)|
2292 * +-------------------------+
2293 *
2294 *
2295 * Note: Data s/g buffers have been dma mapped
2296 *
2297 * Returns the number of SGEs added to the SGL.
2298 **/
2299static int
2300lpfc_bg_setup_sgl(struct lpfc_hba *phba, struct scsi_cmnd *sc,
2301 struct sli4_sge *sgl, int datasegcnt)
2302{
2303 struct scatterlist *sgde = NULL; /* s/g data entry */
2304 struct sli4_sge_diseed *diseed = NULL;
2305 dma_addr_t physaddr;
2306 int i = 0, num_sge = 0, status;
2307 int datadir = sc->sc_data_direction;
2308 uint32_t reftag;
2309 unsigned blksize;
2310 uint8_t txop, rxop;
James Smart0829a192012-05-09 21:18:12 -04002311#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smartacd68592012-01-18 16:25:09 -05002312 uint32_t rc;
James Smart0829a192012-05-09 21:18:12 -04002313#endif
James Smartacd68592012-01-18 16:25:09 -05002314 uint32_t checking = 1;
2315 uint32_t dma_len;
2316 uint32_t dma_offset = 0;
2317
2318 status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
2319 if (status)
2320 goto out;
2321
2322 /* extract some info from the scsi command for pde*/
2323 blksize = lpfc_cmd_blksize(sc);
2324 reftag = (uint32_t)scsi_get_lba(sc); /* Truncate LBA */
2325
2326#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smart4ac9b222012-03-01 22:38:29 -05002327 rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1);
James Smartacd68592012-01-18 16:25:09 -05002328 if (rc) {
James Smart9a6b09c2012-03-01 22:37:42 -05002329 if (rc & BG_ERR_SWAP)
James Smartacd68592012-01-18 16:25:09 -05002330 lpfc_bg_err_opcodes(phba, sc, &txop, &rxop);
James Smart9a6b09c2012-03-01 22:37:42 -05002331 if (rc & BG_ERR_CHECK)
James Smartacd68592012-01-18 16:25:09 -05002332 checking = 0;
2333 }
2334#endif
2335
2336 /* setup DISEED with what we have */
2337 diseed = (struct sli4_sge_diseed *) sgl;
2338 memset(diseed, 0, sizeof(struct sli4_sge_diseed));
2339 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DISEED);
2340
2341 /* Endianness conversion if necessary */
2342 diseed->ref_tag = cpu_to_le32(reftag);
2343 diseed->ref_tag_tran = diseed->ref_tag;
2344
2345 /* setup DISEED with the rest of the info */
2346 bf_set(lpfc_sli4_sge_dif_optx, diseed, txop);
2347 bf_set(lpfc_sli4_sge_dif_oprx, diseed, rxop);
2348 if (datadir == DMA_FROM_DEVICE) {
2349 bf_set(lpfc_sli4_sge_dif_ce, diseed, checking);
2350 bf_set(lpfc_sli4_sge_dif_re, diseed, checking);
2351 }
2352 bf_set(lpfc_sli4_sge_dif_ai, diseed, 1);
2353 bf_set(lpfc_sli4_sge_dif_me, diseed, 0);
2354
2355 /* Endianness conversion if necessary for DISEED */
2356 diseed->word2 = cpu_to_le32(diseed->word2);
2357 diseed->word3 = cpu_to_le32(diseed->word3);
2358
2359 /* advance bpl and increment sge count */
2360 num_sge++;
2361 sgl++;
2362
2363 /* assumption: caller has already run dma_map_sg on command data */
2364 scsi_for_each_sg(sc, sgde, datasegcnt, i) {
2365 physaddr = sg_dma_address(sgde);
2366 dma_len = sg_dma_len(sgde);
2367 sgl->addr_lo = cpu_to_le32(putPaddrLow(physaddr));
2368 sgl->addr_hi = cpu_to_le32(putPaddrHigh(physaddr));
2369 if ((i + 1) == datasegcnt)
2370 bf_set(lpfc_sli4_sge_last, sgl, 1);
2371 else
2372 bf_set(lpfc_sli4_sge_last, sgl, 0);
2373 bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
2374 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
2375
2376 sgl->sge_len = cpu_to_le32(dma_len);
2377 dma_offset += dma_len;
2378
2379 sgl++;
2380 num_sge++;
2381 }
2382
2383out:
2384 return num_sge;
2385}
2386
2387/**
2388 * lpfc_bg_setup_sgl_prot - Setup BlockGuard SGL with protection data
2389 * @phba: The Hba for which this call is being executed.
2390 * @sc: pointer to scsi command we're working on
2391 * @sgl: pointer to buffer list for protection groups
2392 * @datacnt: number of segments of data that have been dma mapped
2393 * @protcnt: number of segment of protection data that have been dma mapped
2394 *
2395 * This function sets up SGL buffer list for protection groups of
2396 * type LPFC_PG_TYPE_DIF
2397 *
2398 * This is usually used when DIFs are in their own buffers,
2399 * separate from the data. The HBA can then by instructed
2400 * to place the DIFs in the outgoing stream. For read operations,
2401 * The HBA could extract the DIFs and place it in DIF buffers.
2402 *
2403 * The buffer list for this type consists of one or more of the
2404 * protection groups described below:
2405 * +-------------------------+
2406 * start of first prot group --> | DISEED |
2407 * +-------------------------+
2408 * | DIF (Prot SGE) |
2409 * +-------------------------+
2410 * | Data SGE |
2411 * +-------------------------+
2412 * |more Data SGE's ... (opt)|
2413 * +-------------------------+
2414 * start of new prot group --> | DISEED |
2415 * +-------------------------+
2416 * | ... |
2417 * +-------------------------+
2418 *
2419 * Note: It is assumed that both data and protection s/g buffers have been
2420 * mapped for DMA
2421 *
2422 * Returns the number of SGEs added to the SGL.
2423 **/
2424static int
2425lpfc_bg_setup_sgl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc,
2426 struct sli4_sge *sgl, int datacnt, int protcnt)
2427{
2428 struct scatterlist *sgde = NULL; /* s/g data entry */
2429 struct scatterlist *sgpe = NULL; /* s/g prot entry */
2430 struct sli4_sge_diseed *diseed = NULL;
2431 dma_addr_t dataphysaddr, protphysaddr;
2432 unsigned short curr_data = 0, curr_prot = 0;
2433 unsigned int split_offset;
2434 unsigned int protgroup_len, protgroup_offset = 0, protgroup_remainder;
2435 unsigned int protgrp_blks, protgrp_bytes;
2436 unsigned int remainder, subtotal;
2437 int status;
2438 unsigned char pgdone = 0, alldone = 0;
2439 unsigned blksize;
2440 uint32_t reftag;
2441 uint8_t txop, rxop;
2442 uint32_t dma_len;
James Smart0829a192012-05-09 21:18:12 -04002443#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smartacd68592012-01-18 16:25:09 -05002444 uint32_t rc;
James Smart0829a192012-05-09 21:18:12 -04002445#endif
James Smartacd68592012-01-18 16:25:09 -05002446 uint32_t checking = 1;
2447 uint32_t dma_offset = 0;
2448 int num_sge = 0;
2449
2450 sgpe = scsi_prot_sglist(sc);
2451 sgde = scsi_sglist(sc);
2452
2453 if (!sgpe || !sgde) {
2454 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2455 "9082 Invalid s/g entry: data=0x%p prot=0x%p\n",
2456 sgpe, sgde);
2457 return 0;
2458 }
2459
2460 status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
2461 if (status)
2462 goto out;
2463
2464 /* extract some info from the scsi command */
2465 blksize = lpfc_cmd_blksize(sc);
2466 reftag = (uint32_t)scsi_get_lba(sc); /* Truncate LBA */
2467
2468#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
James Smart4ac9b222012-03-01 22:38:29 -05002469 rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1);
James Smartacd68592012-01-18 16:25:09 -05002470 if (rc) {
James Smart9a6b09c2012-03-01 22:37:42 -05002471 if (rc & BG_ERR_SWAP)
James Smartacd68592012-01-18 16:25:09 -05002472 lpfc_bg_err_opcodes(phba, sc, &txop, &rxop);
James Smart9a6b09c2012-03-01 22:37:42 -05002473 if (rc & BG_ERR_CHECK)
James Smartacd68592012-01-18 16:25:09 -05002474 checking = 0;
2475 }
2476#endif
2477
2478 split_offset = 0;
2479 do {
2480 /* setup DISEED with what we have */
2481 diseed = (struct sli4_sge_diseed *) sgl;
2482 memset(diseed, 0, sizeof(struct sli4_sge_diseed));
2483 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DISEED);
2484
2485 /* Endianness conversion if necessary */
2486 diseed->ref_tag = cpu_to_le32(reftag);
2487 diseed->ref_tag_tran = diseed->ref_tag;
2488
2489 /* setup DISEED with the rest of the info */
2490 bf_set(lpfc_sli4_sge_dif_optx, diseed, txop);
2491 bf_set(lpfc_sli4_sge_dif_oprx, diseed, rxop);
2492 bf_set(lpfc_sli4_sge_dif_ce, diseed, checking);
2493 bf_set(lpfc_sli4_sge_dif_re, diseed, checking);
2494 bf_set(lpfc_sli4_sge_dif_ai, diseed, 1);
2495 bf_set(lpfc_sli4_sge_dif_me, diseed, 0);
2496
2497 /* Endianness conversion if necessary for DISEED */
2498 diseed->word2 = cpu_to_le32(diseed->word2);
2499 diseed->word3 = cpu_to_le32(diseed->word3);
2500
2501 /* advance sgl and increment bde count */
2502 num_sge++;
2503 sgl++;
2504
2505 /* setup the first BDE that points to protection buffer */
2506 protphysaddr = sg_dma_address(sgpe) + protgroup_offset;
2507 protgroup_len = sg_dma_len(sgpe) - protgroup_offset;
2508
2509 /* must be integer multiple of the DIF block length */
2510 BUG_ON(protgroup_len % 8);
2511
2512 /* Now setup DIF SGE */
2513 sgl->word2 = 0;
2514 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DIF);
2515 sgl->addr_hi = le32_to_cpu(putPaddrHigh(protphysaddr));
2516 sgl->addr_lo = le32_to_cpu(putPaddrLow(protphysaddr));
2517 sgl->word2 = cpu_to_le32(sgl->word2);
2518
2519 protgrp_blks = protgroup_len / 8;
2520 protgrp_bytes = protgrp_blks * blksize;
2521
2522 /* check if DIF SGE is crossing the 4K boundary; if so split */
2523 if ((sgl->addr_lo & 0xfff) + protgroup_len > 0x1000) {
2524 protgroup_remainder = 0x1000 - (sgl->addr_lo & 0xfff);
2525 protgroup_offset += protgroup_remainder;
2526 protgrp_blks = protgroup_remainder / 8;
2527 protgrp_bytes = protgrp_blks * blksize;
2528 } else {
2529 protgroup_offset = 0;
2530 curr_prot++;
2531 }
2532
2533 num_sge++;
2534
2535 /* setup SGE's for data blocks associated with DIF data */
2536 pgdone = 0;
2537 subtotal = 0; /* total bytes processed for current prot grp */
2538 while (!pgdone) {
2539 if (!sgde) {
2540 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2541 "9086 BLKGRD:%s Invalid data segment\n",
2542 __func__);
2543 return 0;
2544 }
2545 sgl++;
2546 dataphysaddr = sg_dma_address(sgde) + split_offset;
2547
2548 remainder = sg_dma_len(sgde) - split_offset;
2549
2550 if ((subtotal + remainder) <= protgrp_bytes) {
2551 /* we can use this whole buffer */
2552 dma_len = remainder;
2553 split_offset = 0;
2554
2555 if ((subtotal + remainder) == protgrp_bytes)
2556 pgdone = 1;
2557 } else {
2558 /* must split this buffer with next prot grp */
2559 dma_len = protgrp_bytes - subtotal;
2560 split_offset += dma_len;
2561 }
2562
2563 subtotal += dma_len;
2564
2565 sgl->addr_lo = cpu_to_le32(putPaddrLow(dataphysaddr));
2566 sgl->addr_hi = cpu_to_le32(putPaddrHigh(dataphysaddr));
2567 bf_set(lpfc_sli4_sge_last, sgl, 0);
2568 bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
2569 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
2570
2571 sgl->sge_len = cpu_to_le32(dma_len);
2572 dma_offset += dma_len;
2573
2574 num_sge++;
2575 curr_data++;
2576
2577 if (split_offset)
2578 break;
2579
2580 /* Move to the next s/g segment if possible */
2581 sgde = sg_next(sgde);
2582 }
2583
2584 if (protgroup_offset) {
2585 /* update the reference tag */
2586 reftag += protgrp_blks;
2587 sgl++;
2588 continue;
2589 }
2590
2591 /* are we done ? */
2592 if (curr_prot == protcnt) {
2593 bf_set(lpfc_sli4_sge_last, sgl, 1);
2594 alldone = 1;
2595 } else if (curr_prot < protcnt) {
2596 /* advance to next prot buffer */
2597 sgpe = sg_next(sgpe);
2598 sgl++;
2599
2600 /* update the reference tag */
2601 reftag += protgrp_blks;
2602 } else {
2603 /* if we're here, we have a bug */
2604 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2605 "9085 BLKGRD: bug in %s\n", __func__);
2606 }
2607
2608 } while (!alldone);
2609
2610out:
2611
2612 return num_sge;
2613}
2614
2615/**
2616 * lpfc_prot_group_type - Get prtotection group type of SCSI command
2617 * @phba: The Hba for which this call is being executed.
2618 * @sc: pointer to scsi command we're working on
2619 *
James Smarte2a0a9d2008-12-04 22:40:02 -05002620 * Given a SCSI command that supports DIF, determine composition of protection
2621 * groups involved in setting up buffer lists
2622 *
James Smartacd68592012-01-18 16:25:09 -05002623 * Returns: Protection group type (with or without DIF)
2624 *
2625 **/
James Smarte2a0a9d2008-12-04 22:40:02 -05002626static int
2627lpfc_prot_group_type(struct lpfc_hba *phba, struct scsi_cmnd *sc)
2628{
2629 int ret = LPFC_PG_TYPE_INVALID;
2630 unsigned char op = scsi_get_prot_op(sc);
2631
2632 switch (op) {
2633 case SCSI_PROT_READ_STRIP:
2634 case SCSI_PROT_WRITE_INSERT:
2635 ret = LPFC_PG_TYPE_NO_DIF;
2636 break;
2637 case SCSI_PROT_READ_INSERT:
2638 case SCSI_PROT_WRITE_STRIP:
2639 case SCSI_PROT_READ_PASS:
2640 case SCSI_PROT_WRITE_PASS:
James Smarte2a0a9d2008-12-04 22:40:02 -05002641 ret = LPFC_PG_TYPE_DIF_BUF;
2642 break;
2643 default:
2644 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2645 "9021 Unsupported protection op:%d\n", op);
2646 break;
2647 }
2648
2649 return ret;
2650}
2651
James Smartacd68592012-01-18 16:25:09 -05002652/**
2653 * lpfc_bg_scsi_prep_dma_buf_s3 - DMA mapping for scsi buffer to SLI3 IF spec
2654 * @phba: The Hba for which this call is being executed.
2655 * @lpfc_cmd: The scsi buffer which is going to be prep'ed.
2656 *
James Smarte2a0a9d2008-12-04 22:40:02 -05002657 * This is the protection/DIF aware version of
2658 * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
2659 * two functions eventually, but for now, it's here
James Smartacd68592012-01-18 16:25:09 -05002660 **/
James Smarte2a0a9d2008-12-04 22:40:02 -05002661static int
James Smartacd68592012-01-18 16:25:09 -05002662lpfc_bg_scsi_prep_dma_buf_s3(struct lpfc_hba *phba,
James Smarte2a0a9d2008-12-04 22:40:02 -05002663 struct lpfc_scsi_buf *lpfc_cmd)
2664{
2665 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
2666 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
2667 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
2668 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
2669 uint32_t num_bde = 0;
2670 int datasegcnt, protsegcnt, datadir = scsi_cmnd->sc_data_direction;
2671 int prot_group_type = 0;
2672 int diflen, fcpdl;
2673 unsigned blksize;
2674
2675 /*
2676 * Start the lpfc command prep by bumping the bpl beyond fcp_cmnd
2677 * fcp_rsp regions to the first data bde entry
2678 */
2679 bpl += 2;
2680 if (scsi_sg_count(scsi_cmnd)) {
2681 /*
2682 * The driver stores the segment count returned from pci_map_sg
2683 * because this a count of dma-mappings used to map the use_sg
2684 * pages. They are not guaranteed to be the same for those
2685 * architectures that implement an IOMMU.
2686 */
2687 datasegcnt = dma_map_sg(&phba->pcidev->dev,
2688 scsi_sglist(scsi_cmnd),
2689 scsi_sg_count(scsi_cmnd), datadir);
2690 if (unlikely(!datasegcnt))
2691 return 1;
2692
2693 lpfc_cmd->seg_cnt = datasegcnt;
2694 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04002695 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2696 "9067 BLKGRD: %s: Too many sg segments"
2697 " from dma_map_sg. Config %d, seg_cnt"
2698 " %d\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05002699 __func__, phba->cfg_sg_seg_cnt,
2700 lpfc_cmd->seg_cnt);
2701 scsi_dma_unmap(scsi_cmnd);
2702 return 1;
2703 }
2704
2705 prot_group_type = lpfc_prot_group_type(phba, scsi_cmnd);
2706
2707 switch (prot_group_type) {
2708 case LPFC_PG_TYPE_NO_DIF:
2709 num_bde = lpfc_bg_setup_bpl(phba, scsi_cmnd, bpl,
2710 datasegcnt);
Adam Buchbinderc9404c92009-12-18 15:40:42 -05002711 /* we should have 2 or more entries in buffer list */
James Smarte2a0a9d2008-12-04 22:40:02 -05002712 if (num_bde < 2)
2713 goto err;
2714 break;
2715 case LPFC_PG_TYPE_DIF_BUF:{
2716 /*
2717 * This type indicates that protection buffers are
2718 * passed to the driver, so that needs to be prepared
2719 * for DMA
2720 */
2721 protsegcnt = dma_map_sg(&phba->pcidev->dev,
2722 scsi_prot_sglist(scsi_cmnd),
2723 scsi_prot_sg_count(scsi_cmnd), datadir);
2724 if (unlikely(!protsegcnt)) {
2725 scsi_dma_unmap(scsi_cmnd);
2726 return 1;
2727 }
2728
2729 lpfc_cmd->prot_seg_cnt = protsegcnt;
2730 if (lpfc_cmd->prot_seg_cnt
2731 > phba->cfg_prot_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04002732 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2733 "9068 BLKGRD: %s: Too many prot sg "
2734 "segments from dma_map_sg. Config %d,"
James Smarte2a0a9d2008-12-04 22:40:02 -05002735 "prot_seg_cnt %d\n", __func__,
2736 phba->cfg_prot_sg_seg_cnt,
2737 lpfc_cmd->prot_seg_cnt);
2738 dma_unmap_sg(&phba->pcidev->dev,
2739 scsi_prot_sglist(scsi_cmnd),
2740 scsi_prot_sg_count(scsi_cmnd),
2741 datadir);
2742 scsi_dma_unmap(scsi_cmnd);
2743 return 1;
2744 }
2745
2746 num_bde = lpfc_bg_setup_bpl_prot(phba, scsi_cmnd, bpl,
2747 datasegcnt, protsegcnt);
Adam Buchbinderc9404c92009-12-18 15:40:42 -05002748 /* we should have 3 or more entries in buffer list */
James Smarte2a0a9d2008-12-04 22:40:02 -05002749 if (num_bde < 3)
2750 goto err;
2751 break;
2752 }
2753 case LPFC_PG_TYPE_INVALID:
2754 default:
2755 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2756 "9022 Unexpected protection group %i\n",
2757 prot_group_type);
2758 return 1;
2759 }
2760 }
2761
2762 /*
2763 * Finish initializing those IOCB fields that are dependent on the
2764 * scsi_cmnd request_buffer. Note that the bdeSize is explicitly
2765 * reinitialized since all iocb memory resources are used many times
2766 * for transmit, receive, and continuation bpl's.
2767 */
2768 iocb_cmd->un.fcpi64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
2769 iocb_cmd->un.fcpi64.bdl.bdeSize += (num_bde * sizeof(struct ulp_bde64));
2770 iocb_cmd->ulpBdeCount = 1;
2771 iocb_cmd->ulpLe = 1;
2772
2773 fcpdl = scsi_bufflen(scsi_cmnd);
2774
2775 if (scsi_get_prot_type(scsi_cmnd) == SCSI_PROT_DIF_TYPE1) {
2776 /*
2777 * We are in DIF Type 1 mode
2778 * Every data block has a 8 byte DIF (trailer)
2779 * attached to it. Must ajust FCP data length
2780 */
2781 blksize = lpfc_cmd_blksize(scsi_cmnd);
2782 diflen = (fcpdl / blksize) * 8;
2783 fcpdl += diflen;
2784 }
2785 fcp_cmnd->fcpDl = be32_to_cpu(fcpdl);
2786
2787 /*
2788 * Due to difference in data length between DIF/non-DIF paths,
2789 * we need to set word 4 of IOCB here
2790 */
2791 iocb_cmd->un.fcpi.fcpi_parm = fcpdl;
2792
2793 return 0;
2794err:
2795 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2796 "9023 Could not setup all needed BDE's"
2797 "prot_group_type=%d, num_bde=%d\n",
2798 prot_group_type, num_bde);
2799 return 1;
2800}
2801
2802/*
2803 * This function checks for BlockGuard errors detected by
2804 * the HBA. In case of errors, the ASC/ASCQ fields in the
2805 * sense buffer will be set accordingly, paired with
2806 * ILLEGAL_REQUEST to signal to the kernel that the HBA
2807 * detected corruption.
2808 *
2809 * Returns:
2810 * 0 - No error found
2811 * 1 - BlockGuard error found
2812 * -1 - Internal error (bad profile, ...etc)
2813 */
2814static int
2815lpfc_parse_bg_err(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd,
2816 struct lpfc_iocbq *pIocbOut)
2817{
2818 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
2819 struct sli3_bg_fields *bgf = &pIocbOut->iocb.unsli3.sli3_bg;
2820 int ret = 0;
2821 uint32_t bghm = bgf->bghm;
2822 uint32_t bgstat = bgf->bgstat;
2823 uint64_t failing_sector = 0;
2824
James Smart6a9c52c2009-10-02 15:16:51 -04002825 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9069 BLKGRD: BG ERROR in cmd"
2826 " 0x%x lba 0x%llx blk cnt 0x%x "
James Smarte2a0a9d2008-12-04 22:40:02 -05002827 "bgstat=0x%x bghm=0x%x\n",
James Smart87b5c322008-12-16 10:34:09 -05002828 cmd->cmnd[0], (unsigned long long)scsi_get_lba(cmd),
Tejun Heo83096eb2009-05-07 22:24:39 +09002829 blk_rq_sectors(cmd->request), bgstat, bghm);
James Smarte2a0a9d2008-12-04 22:40:02 -05002830
2831 spin_lock(&_dump_buf_lock);
2832 if (!_dump_buf_done) {
James Smart6a9c52c2009-10-02 15:16:51 -04002833 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9070 BLKGRD: Saving"
2834 " Data for %u blocks to debugfs\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05002835 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
James Smart6a9c52c2009-10-02 15:16:51 -04002836 lpfc_debug_save_data(phba, cmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05002837
2838 /* If we have a prot sgl, save the DIF buffer */
2839 if (lpfc_prot_group_type(phba, cmd) ==
2840 LPFC_PG_TYPE_DIF_BUF) {
James Smart6a9c52c2009-10-02 15:16:51 -04002841 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9071 BLKGRD: "
2842 "Saving DIF for %u blocks to debugfs\n",
2843 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
2844 lpfc_debug_save_dif(phba, cmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05002845 }
2846
2847 _dump_buf_done = 1;
2848 }
2849 spin_unlock(&_dump_buf_lock);
2850
2851 if (lpfc_bgs_get_invalid_prof(bgstat)) {
2852 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04002853 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9072 BLKGRD: Invalid"
2854 " BlockGuard profile. bgstat:0x%x\n",
2855 bgstat);
James Smarte2a0a9d2008-12-04 22:40:02 -05002856 ret = (-1);
2857 goto out;
2858 }
2859
2860 if (lpfc_bgs_get_uninit_dif_block(bgstat)) {
2861 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04002862 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9073 BLKGRD: "
2863 "Invalid BlockGuard DIF Block. bgstat:0x%x\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05002864 bgstat);
2865 ret = (-1);
2866 goto out;
2867 }
2868
2869 if (lpfc_bgs_get_guard_err(bgstat)) {
2870 ret = 1;
2871
2872 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
2873 0x10, 0x1);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05002874 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05002875 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
2876 phba->bg_guard_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04002877 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2878 "9055 BLKGRD: guard_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002879 }
2880
2881 if (lpfc_bgs_get_reftag_err(bgstat)) {
2882 ret = 1;
2883
2884 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
2885 0x10, 0x3);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05002886 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05002887 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
2888
2889 phba->bg_reftag_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04002890 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2891 "9056 BLKGRD: ref_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002892 }
2893
2894 if (lpfc_bgs_get_apptag_err(bgstat)) {
2895 ret = 1;
2896
2897 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
2898 0x10, 0x2);
Martin K. Petersen1c9fbaf2009-01-04 03:14:11 -05002899 cmd->result = DRIVER_SENSE << 24
James Smarte2a0a9d2008-12-04 22:40:02 -05002900 | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
2901
2902 phba->bg_apptag_err_cnt++;
James Smart6a9c52c2009-10-02 15:16:51 -04002903 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2904 "9061 BLKGRD: app_tag error\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002905 }
2906
2907 if (lpfc_bgs_get_hi_water_mark_present(bgstat)) {
2908 /*
2909 * setup sense data descriptor 0 per SPC-4 as an information
James Smart7c56b9f2011-07-22 18:36:25 -04002910 * field, and put the failing LBA in it.
2911 * This code assumes there was also a guard/app/ref tag error
2912 * indication.
James Smarte2a0a9d2008-12-04 22:40:02 -05002913 */
James Smart7c56b9f2011-07-22 18:36:25 -04002914 cmd->sense_buffer[7] = 0xc; /* Additional sense length */
2915 cmd->sense_buffer[8] = 0; /* Information descriptor type */
2916 cmd->sense_buffer[9] = 0xa; /* Additional descriptor length */
2917 cmd->sense_buffer[10] = 0x80; /* Validity bit */
James Smartacd68592012-01-18 16:25:09 -05002918
2919 /* bghm is a "on the wire" FC frame based count */
2920 switch (scsi_get_prot_op(cmd)) {
2921 case SCSI_PROT_READ_INSERT:
2922 case SCSI_PROT_WRITE_STRIP:
2923 bghm /= cmd->device->sector_size;
2924 break;
2925 case SCSI_PROT_READ_STRIP:
2926 case SCSI_PROT_WRITE_INSERT:
2927 case SCSI_PROT_READ_PASS:
2928 case SCSI_PROT_WRITE_PASS:
2929 bghm /= (cmd->device->sector_size +
2930 sizeof(struct scsi_dif_tuple));
2931 break;
2932 }
James Smarte2a0a9d2008-12-04 22:40:02 -05002933
2934 failing_sector = scsi_get_lba(cmd);
2935 failing_sector += bghm;
2936
James Smart7c56b9f2011-07-22 18:36:25 -04002937 /* Descriptor Information */
2938 put_unaligned_be64(failing_sector, &cmd->sense_buffer[12]);
James Smarte2a0a9d2008-12-04 22:40:02 -05002939 }
2940
2941 if (!ret) {
2942 /* No error was reported - problem in FW? */
2943 cmd->result = ScsiResult(DID_ERROR, 0);
James Smart6a9c52c2009-10-02 15:16:51 -04002944 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
James Smart4ac9b222012-03-01 22:38:29 -05002945 "9057 BLKGRD: Unknown error reported!\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05002946 }
2947
2948out:
2949 return ret;
2950}
2951
James Smartea2151b2008-09-07 11:52:10 -04002952/**
James Smartda0436e2009-05-22 14:51:39 -04002953 * lpfc_scsi_prep_dma_buf_s4 - DMA mapping for scsi buffer to SLI4 IF spec
2954 * @phba: The Hba for which this call is being executed.
2955 * @lpfc_cmd: The scsi buffer which is going to be mapped.
2956 *
2957 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
2958 * field of @lpfc_cmd for device with SLI-4 interface spec.
2959 *
2960 * Return codes:
James Smart6c8eea52010-04-06 14:49:53 -04002961 * 1 - Error
2962 * 0 - Success
James Smartda0436e2009-05-22 14:51:39 -04002963 **/
2964static int
2965lpfc_scsi_prep_dma_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
2966{
2967 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
2968 struct scatterlist *sgel = NULL;
2969 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
2970 struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
James Smartfedd3b72011-02-16 12:39:24 -05002971 struct sli4_sge *first_data_sgl;
James Smartda0436e2009-05-22 14:51:39 -04002972 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
2973 dma_addr_t physaddr;
2974 uint32_t num_bde = 0;
2975 uint32_t dma_len;
2976 uint32_t dma_offset = 0;
2977 int nseg;
James Smartfedd3b72011-02-16 12:39:24 -05002978 struct ulp_bde64 *bde;
James Smartda0436e2009-05-22 14:51:39 -04002979
2980 /*
2981 * There are three possibilities here - use scatter-gather segment, use
2982 * the single mapping, or neither. Start the lpfc command prep by
2983 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
2984 * data bde entry.
2985 */
2986 if (scsi_sg_count(scsi_cmnd)) {
2987 /*
2988 * The driver stores the segment count returned from pci_map_sg
2989 * because this a count of dma-mappings used to map the use_sg
2990 * pages. They are not guaranteed to be the same for those
2991 * architectures that implement an IOMMU.
2992 */
2993
2994 nseg = scsi_dma_map(scsi_cmnd);
2995 if (unlikely(!nseg))
2996 return 1;
2997 sgl += 1;
2998 /* clear the last flag in the fcp_rsp map entry */
2999 sgl->word2 = le32_to_cpu(sgl->word2);
3000 bf_set(lpfc_sli4_sge_last, sgl, 0);
3001 sgl->word2 = cpu_to_le32(sgl->word2);
3002 sgl += 1;
James Smartfedd3b72011-02-16 12:39:24 -05003003 first_data_sgl = sgl;
James Smartda0436e2009-05-22 14:51:39 -04003004 lpfc_cmd->seg_cnt = nseg;
3005 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
James Smart6a9c52c2009-10-02 15:16:51 -04003006 lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9074 BLKGRD:"
3007 " %s: Too many sg segments from "
3008 "dma_map_sg. Config %d, seg_cnt %d\n",
3009 __func__, phba->cfg_sg_seg_cnt,
James Smartda0436e2009-05-22 14:51:39 -04003010 lpfc_cmd->seg_cnt);
3011 scsi_dma_unmap(scsi_cmnd);
3012 return 1;
3013 }
3014
3015 /*
3016 * The driver established a maximum scatter-gather segment count
3017 * during probe that limits the number of sg elements in any
3018 * single scsi command. Just run through the seg_cnt and format
3019 * the sge's.
3020 * When using SLI-3 the driver will try to fit all the BDEs into
3021 * the IOCB. If it can't then the BDEs get added to a BPL as it
3022 * does for SLI-2 mode.
3023 */
3024 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
3025 physaddr = sg_dma_address(sgel);
3026 dma_len = sg_dma_len(sgel);
James Smartda0436e2009-05-22 14:51:39 -04003027 sgl->addr_lo = cpu_to_le32(putPaddrLow(physaddr));
3028 sgl->addr_hi = cpu_to_le32(putPaddrHigh(physaddr));
James Smart05580562011-05-24 11:40:48 -04003029 sgl->word2 = le32_to_cpu(sgl->word2);
James Smartda0436e2009-05-22 14:51:39 -04003030 if ((num_bde + 1) == nseg)
3031 bf_set(lpfc_sli4_sge_last, sgl, 1);
3032 else
3033 bf_set(lpfc_sli4_sge_last, sgl, 0);
3034 bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
James Smartf9bb2da2011-10-10 21:34:11 -04003035 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
James Smartda0436e2009-05-22 14:51:39 -04003036 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05003037 sgl->sge_len = cpu_to_le32(dma_len);
James Smartda0436e2009-05-22 14:51:39 -04003038 dma_offset += dma_len;
3039 sgl++;
3040 }
James Smartfedd3b72011-02-16 12:39:24 -05003041 /* setup the performance hint (first data BDE) if enabled */
3042 if (phba->sli3_options & LPFC_SLI4_PERFH_ENABLED) {
3043 bde = (struct ulp_bde64 *)
3044 &(iocb_cmd->unsli3.sli3Words[5]);
3045 bde->addrLow = first_data_sgl->addr_lo;
3046 bde->addrHigh = first_data_sgl->addr_hi;
3047 bde->tus.f.bdeSize =
3048 le32_to_cpu(first_data_sgl->sge_len);
3049 bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
3050 bde->tus.w = cpu_to_le32(bde->tus.w);
3051 }
James Smartda0436e2009-05-22 14:51:39 -04003052 } else {
3053 sgl += 1;
3054 /* clear the last flag in the fcp_rsp map entry */
3055 sgl->word2 = le32_to_cpu(sgl->word2);
3056 bf_set(lpfc_sli4_sge_last, sgl, 1);
3057 sgl->word2 = cpu_to_le32(sgl->word2);
3058 }
3059
3060 /*
3061 * Finish initializing those IOCB fields that are dependent on the
3062 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
3063 * explicitly reinitialized.
3064 * all iocb memory resources are reused.
3065 */
3066 fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
3067
3068 /*
3069 * Due to difference in data length between DIF/non-DIF paths,
3070 * we need to set word 4 of IOCB here
3071 */
3072 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
3073 return 0;
3074}
3075
3076/**
James Smartacd68592012-01-18 16:25:09 -05003077 * lpfc_bg_scsi_adjust_dl - Adjust SCSI data length for BlockGuard
3078 * @phba: The Hba for which this call is being executed.
3079 * @lpfc_cmd: The scsi buffer which is going to be adjusted.
3080 *
3081 * Adjust the data length to account for how much data
3082 * is actually on the wire.
3083 *
3084 * returns the adjusted data length
3085 **/
3086static int
3087lpfc_bg_scsi_adjust_dl(struct lpfc_hba *phba,
3088 struct lpfc_scsi_buf *lpfc_cmd)
3089{
3090 struct scsi_cmnd *sc = lpfc_cmd->pCmd;
3091 int diflen, fcpdl;
3092 unsigned blksize;
3093
3094 fcpdl = scsi_bufflen(sc);
3095
3096 /* Check if there is protection data on the wire */
3097 if (sc->sc_data_direction == DMA_FROM_DEVICE) {
3098 /* Read */
3099 if (scsi_get_prot_op(sc) == SCSI_PROT_READ_INSERT)
3100 return fcpdl;
3101
3102 } else {
3103 /* Write */
3104 if (scsi_get_prot_op(sc) == SCSI_PROT_WRITE_STRIP)
3105 return fcpdl;
3106 }
3107
3108 /* If protection data on the wire, adjust the count accordingly */
3109 blksize = lpfc_cmd_blksize(sc);
3110 diflen = (fcpdl / blksize) * 8;
3111 fcpdl += diflen;
3112 return fcpdl;
3113}
3114
3115/**
3116 * lpfc_bg_scsi_prep_dma_buf_s4 - DMA mapping for scsi buffer to SLI4 IF spec
3117 * @phba: The Hba for which this call is being executed.
3118 * @lpfc_cmd: The scsi buffer which is going to be mapped.
3119 *
3120 * This is the protection/DIF aware version of
3121 * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
3122 * two functions eventually, but for now, it's here
3123 **/
3124static int
3125lpfc_bg_scsi_prep_dma_buf_s4(struct lpfc_hba *phba,
3126 struct lpfc_scsi_buf *lpfc_cmd)
3127{
3128 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
3129 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
3130 struct sli4_sge *sgl = (struct sli4_sge *)(lpfc_cmd->fcp_bpl);
3131 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
3132 uint32_t num_bde = 0;
3133 int datasegcnt, protsegcnt, datadir = scsi_cmnd->sc_data_direction;
3134 int prot_group_type = 0;
3135 int fcpdl;
3136
3137 /*
3138 * Start the lpfc command prep by bumping the sgl beyond fcp_cmnd
3139 * fcp_rsp regions to the first data bde entry
3140 */
3141 if (scsi_sg_count(scsi_cmnd)) {
3142 /*
3143 * The driver stores the segment count returned from pci_map_sg
3144 * because this a count of dma-mappings used to map the use_sg
3145 * pages. They are not guaranteed to be the same for those
3146 * architectures that implement an IOMMU.
3147 */
3148 datasegcnt = dma_map_sg(&phba->pcidev->dev,
3149 scsi_sglist(scsi_cmnd),
3150 scsi_sg_count(scsi_cmnd), datadir);
3151 if (unlikely(!datasegcnt))
3152 return 1;
3153
3154 sgl += 1;
3155 /* clear the last flag in the fcp_rsp map entry */
3156 sgl->word2 = le32_to_cpu(sgl->word2);
3157 bf_set(lpfc_sli4_sge_last, sgl, 0);
3158 sgl->word2 = cpu_to_le32(sgl->word2);
3159
3160 sgl += 1;
3161 lpfc_cmd->seg_cnt = datasegcnt;
3162 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
3163 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
3164 "9087 BLKGRD: %s: Too many sg segments"
3165 " from dma_map_sg. Config %d, seg_cnt"
3166 " %d\n",
3167 __func__, phba->cfg_sg_seg_cnt,
3168 lpfc_cmd->seg_cnt);
3169 scsi_dma_unmap(scsi_cmnd);
3170 return 1;
3171 }
3172
3173 prot_group_type = lpfc_prot_group_type(phba, scsi_cmnd);
3174
3175 switch (prot_group_type) {
3176 case LPFC_PG_TYPE_NO_DIF:
3177 num_bde = lpfc_bg_setup_sgl(phba, scsi_cmnd, sgl,
3178 datasegcnt);
3179 /* we should have 2 or more entries in buffer list */
3180 if (num_bde < 2)
3181 goto err;
3182 break;
3183 case LPFC_PG_TYPE_DIF_BUF:{
3184 /*
3185 * This type indicates that protection buffers are
3186 * passed to the driver, so that needs to be prepared
3187 * for DMA
3188 */
3189 protsegcnt = dma_map_sg(&phba->pcidev->dev,
3190 scsi_prot_sglist(scsi_cmnd),
3191 scsi_prot_sg_count(scsi_cmnd), datadir);
3192 if (unlikely(!protsegcnt)) {
3193 scsi_dma_unmap(scsi_cmnd);
3194 return 1;
3195 }
3196
3197 lpfc_cmd->prot_seg_cnt = protsegcnt;
3198 if (lpfc_cmd->prot_seg_cnt
3199 > phba->cfg_prot_sg_seg_cnt) {
3200 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
3201 "9088 BLKGRD: %s: Too many prot sg "
3202 "segments from dma_map_sg. Config %d,"
3203 "prot_seg_cnt %d\n", __func__,
3204 phba->cfg_prot_sg_seg_cnt,
3205 lpfc_cmd->prot_seg_cnt);
3206 dma_unmap_sg(&phba->pcidev->dev,
3207 scsi_prot_sglist(scsi_cmnd),
3208 scsi_prot_sg_count(scsi_cmnd),
3209 datadir);
3210 scsi_dma_unmap(scsi_cmnd);
3211 return 1;
3212 }
3213
3214 num_bde = lpfc_bg_setup_sgl_prot(phba, scsi_cmnd, sgl,
3215 datasegcnt, protsegcnt);
3216 /* we should have 3 or more entries in buffer list */
3217 if (num_bde < 3)
3218 goto err;
3219 break;
3220 }
3221 case LPFC_PG_TYPE_INVALID:
3222 default:
3223 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
3224 "9083 Unexpected protection group %i\n",
3225 prot_group_type);
3226 return 1;
3227 }
3228 }
3229
3230 fcpdl = lpfc_bg_scsi_adjust_dl(phba, lpfc_cmd);
3231
3232 fcp_cmnd->fcpDl = be32_to_cpu(fcpdl);
3233
3234 /*
3235 * Due to difference in data length between DIF/non-DIF paths,
3236 * we need to set word 4 of IOCB here
3237 */
3238 iocb_cmd->un.fcpi.fcpi_parm = fcpdl;
3239 lpfc_cmd->cur_iocbq.iocb_flag |= LPFC_IO_DIF;
3240
3241 return 0;
3242err:
3243 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
3244 "9084 Could not setup all needed BDE's"
3245 "prot_group_type=%d, num_bde=%d\n",
3246 prot_group_type, num_bde);
3247 return 1;
3248}
3249
3250/**
James Smart3772a992009-05-22 14:50:54 -04003251 * lpfc_scsi_prep_dma_buf - Wrapper function for DMA mapping of scsi buffer
3252 * @phba: The Hba for which this call is being executed.
3253 * @lpfc_cmd: The scsi buffer which is going to be mapped.
3254 *
3255 * This routine wraps the actual DMA mapping function pointer from the
3256 * lpfc_hba struct.
3257 *
3258 * Return codes:
James Smart6c8eea52010-04-06 14:49:53 -04003259 * 1 - Error
3260 * 0 - Success
James Smart3772a992009-05-22 14:50:54 -04003261 **/
3262static inline int
3263lpfc_scsi_prep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
3264{
3265 return phba->lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
3266}
3267
3268/**
James Smartacd68592012-01-18 16:25:09 -05003269 * lpfc_bg_scsi_prep_dma_buf - Wrapper function for DMA mapping of scsi buffer
3270 * using BlockGuard.
3271 * @phba: The Hba for which this call is being executed.
3272 * @lpfc_cmd: The scsi buffer which is going to be mapped.
3273 *
3274 * This routine wraps the actual DMA mapping function pointer from the
3275 * lpfc_hba struct.
3276 *
3277 * Return codes:
3278 * 1 - Error
3279 * 0 - Success
3280 **/
3281static inline int
3282lpfc_bg_scsi_prep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
3283{
3284 return phba->lpfc_bg_scsi_prep_dma_buf(phba, lpfc_cmd);
3285}
3286
3287/**
James Smart3621a712009-04-06 18:47:14 -04003288 * lpfc_send_scsi_error_event - Posts an event when there is SCSI error
James Smartea2151b2008-09-07 11:52:10 -04003289 * @phba: Pointer to hba context object.
3290 * @vport: Pointer to vport object.
3291 * @lpfc_cmd: Pointer to lpfc scsi command which reported the error.
3292 * @rsp_iocb: Pointer to response iocb object which reported error.
3293 *
3294 * This function posts an event when there is a SCSI command reporting
3295 * error from the scsi device.
3296 **/
3297static void
3298lpfc_send_scsi_error_event(struct lpfc_hba *phba, struct lpfc_vport *vport,
3299 struct lpfc_scsi_buf *lpfc_cmd, struct lpfc_iocbq *rsp_iocb) {
3300 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
3301 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
3302 uint32_t resp_info = fcprsp->rspStatus2;
3303 uint32_t scsi_status = fcprsp->rspStatus3;
3304 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
3305 struct lpfc_fast_path_event *fast_path_evt = NULL;
3306 struct lpfc_nodelist *pnode = lpfc_cmd->rdata->pnode;
3307 unsigned long flags;
3308
James Smart5989b8d2010-10-22 11:06:56 -04003309 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
3310 return;
3311
James Smartea2151b2008-09-07 11:52:10 -04003312 /* If there is queuefull or busy condition send a scsi event */
3313 if ((cmnd->result == SAM_STAT_TASK_SET_FULL) ||
3314 (cmnd->result == SAM_STAT_BUSY)) {
3315 fast_path_evt = lpfc_alloc_fast_evt(phba);
3316 if (!fast_path_evt)
3317 return;
3318 fast_path_evt->un.scsi_evt.event_type =
3319 FC_REG_SCSI_EVENT;
3320 fast_path_evt->un.scsi_evt.subcategory =
3321 (cmnd->result == SAM_STAT_TASK_SET_FULL) ?
3322 LPFC_EVENT_QFULL : LPFC_EVENT_DEVBSY;
3323 fast_path_evt->un.scsi_evt.lun = cmnd->device->lun;
3324 memcpy(&fast_path_evt->un.scsi_evt.wwpn,
3325 &pnode->nlp_portname, sizeof(struct lpfc_name));
3326 memcpy(&fast_path_evt->un.scsi_evt.wwnn,
3327 &pnode->nlp_nodename, sizeof(struct lpfc_name));
3328 } else if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen &&
3329 ((cmnd->cmnd[0] == READ_10) || (cmnd->cmnd[0] == WRITE_10))) {
3330 fast_path_evt = lpfc_alloc_fast_evt(phba);
3331 if (!fast_path_evt)
3332 return;
3333 fast_path_evt->un.check_cond_evt.scsi_event.event_type =
3334 FC_REG_SCSI_EVENT;
3335 fast_path_evt->un.check_cond_evt.scsi_event.subcategory =
3336 LPFC_EVENT_CHECK_COND;
3337 fast_path_evt->un.check_cond_evt.scsi_event.lun =
3338 cmnd->device->lun;
3339 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwpn,
3340 &pnode->nlp_portname, sizeof(struct lpfc_name));
3341 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwnn,
3342 &pnode->nlp_nodename, sizeof(struct lpfc_name));
3343 fast_path_evt->un.check_cond_evt.sense_key =
3344 cmnd->sense_buffer[2] & 0xf;
3345 fast_path_evt->un.check_cond_evt.asc = cmnd->sense_buffer[12];
3346 fast_path_evt->un.check_cond_evt.ascq = cmnd->sense_buffer[13];
3347 } else if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
3348 fcpi_parm &&
3349 ((be32_to_cpu(fcprsp->rspResId) != fcpi_parm) ||
3350 ((scsi_status == SAM_STAT_GOOD) &&
3351 !(resp_info & (RESID_UNDER | RESID_OVER))))) {
3352 /*
3353 * If status is good or resid does not match with fcp_param and
3354 * there is valid fcpi_parm, then there is a read_check error
3355 */
3356 fast_path_evt = lpfc_alloc_fast_evt(phba);
3357 if (!fast_path_evt)
3358 return;
3359 fast_path_evt->un.read_check_error.header.event_type =
3360 FC_REG_FABRIC_EVENT;
3361 fast_path_evt->un.read_check_error.header.subcategory =
3362 LPFC_EVENT_FCPRDCHKERR;
3363 memcpy(&fast_path_evt->un.read_check_error.header.wwpn,
3364 &pnode->nlp_portname, sizeof(struct lpfc_name));
3365 memcpy(&fast_path_evt->un.read_check_error.header.wwnn,
3366 &pnode->nlp_nodename, sizeof(struct lpfc_name));
3367 fast_path_evt->un.read_check_error.lun = cmnd->device->lun;
3368 fast_path_evt->un.read_check_error.opcode = cmnd->cmnd[0];
3369 fast_path_evt->un.read_check_error.fcpiparam =
3370 fcpi_parm;
3371 } else
3372 return;
3373
3374 fast_path_evt->vport = vport;
3375 spin_lock_irqsave(&phba->hbalock, flags);
3376 list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
3377 spin_unlock_irqrestore(&phba->hbalock, flags);
3378 lpfc_worker_wake_up(phba);
3379 return;
3380}
James Smart9bad7672008-12-04 22:39:02 -05003381
3382/**
James Smartf1126682009-06-10 17:22:44 -04003383 * lpfc_scsi_unprep_dma_buf - Un-map DMA mapping of SG-list for dev
James Smart3772a992009-05-22 14:50:54 -04003384 * @phba: The HBA for which this call is being executed.
James Smart9bad7672008-12-04 22:39:02 -05003385 * @psb: The scsi buffer which is going to be un-mapped.
3386 *
3387 * This routine does DMA un-mapping of scatter gather list of scsi command
James Smart3772a992009-05-22 14:50:54 -04003388 * field of @lpfc_cmd for device with SLI-3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05003389 **/
dea31012005-04-17 16:05:31 -05003390static void
James Smartf1126682009-06-10 17:22:44 -04003391lpfc_scsi_unprep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James Smartbcf4dbf2006-07-06 15:50:08 -04003392{
3393 /*
3394 * There are only two special cases to consider. (1) the scsi command
3395 * requested scatter-gather usage or (2) the scsi command allocated
3396 * a request buffer, but did not request use_sg. There is a third
3397 * case, but it does not require resource deallocation.
3398 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05003399 if (psb->seg_cnt > 0)
3400 scsi_dma_unmap(psb->pCmd);
James Smarte2a0a9d2008-12-04 22:40:02 -05003401 if (psb->prot_seg_cnt > 0)
3402 dma_unmap_sg(&phba->pcidev->dev, scsi_prot_sglist(psb->pCmd),
3403 scsi_prot_sg_count(psb->pCmd),
3404 psb->pCmd->sc_data_direction);
James Smartbcf4dbf2006-07-06 15:50:08 -04003405}
3406
James Smart9bad7672008-12-04 22:39:02 -05003407/**
James Smart3621a712009-04-06 18:47:14 -04003408 * lpfc_handler_fcp_err - FCP response handler
James Smart9bad7672008-12-04 22:39:02 -05003409 * @vport: The virtual port for which this call is being executed.
3410 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
3411 * @rsp_iocb: The response IOCB which contains FCP error.
3412 *
3413 * This routine is called to process response IOCB with status field
3414 * IOSTAT_FCP_RSP_ERROR. This routine sets result field of scsi command
3415 * based upon SCSI and FCP error.
3416 **/
James Smartbcf4dbf2006-07-06 15:50:08 -04003417static void
James Smart2e0fef82007-06-17 19:56:36 -05003418lpfc_handle_fcp_err(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
3419 struct lpfc_iocbq *rsp_iocb)
dea31012005-04-17 16:05:31 -05003420{
3421 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
3422 struct fcp_cmnd *fcpcmd = lpfc_cmd->fcp_cmnd;
3423 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
James Smart7054a602007-04-25 09:52:34 -04003424 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
dea31012005-04-17 16:05:31 -05003425 uint32_t resp_info = fcprsp->rspStatus2;
3426 uint32_t scsi_status = fcprsp->rspStatus3;
James Smartc7743952006-12-02 13:34:42 -05003427 uint32_t *lp;
dea31012005-04-17 16:05:31 -05003428 uint32_t host_status = DID_OK;
3429 uint32_t rsplen = 0;
James Smartc7743952006-12-02 13:34:42 -05003430 uint32_t logit = LOG_FCP | LOG_FCP_ERROR;
dea31012005-04-17 16:05:31 -05003431
James Smartea2151b2008-09-07 11:52:10 -04003432
dea31012005-04-17 16:05:31 -05003433 /*
3434 * If this is a task management command, there is no
3435 * scsi packet associated with this lpfc_cmd. The driver
3436 * consumes it.
3437 */
3438 if (fcpcmd->fcpCntl2) {
3439 scsi_status = 0;
3440 goto out;
3441 }
3442
James Smart6a9c52c2009-10-02 15:16:51 -04003443 if (resp_info & RSP_LEN_VALID) {
3444 rsplen = be32_to_cpu(fcprsp->rspRspLen);
James Smarte40a02c2010-02-26 14:13:54 -05003445 if (rsplen != 0 && rsplen != 4 && rsplen != 8) {
James Smart6a9c52c2009-10-02 15:16:51 -04003446 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3447 "2719 Invalid response length: "
3448 "tgt x%x lun x%x cmnd x%x rsplen x%x\n",
3449 cmnd->device->id,
3450 cmnd->device->lun, cmnd->cmnd[0],
3451 rsplen);
3452 host_status = DID_ERROR;
3453 goto out;
3454 }
James Smarte40a02c2010-02-26 14:13:54 -05003455 if (fcprsp->rspInfo3 != RSP_NO_FAILURE) {
3456 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3457 "2757 Protocol failure detected during "
3458 "processing of FCP I/O op: "
3459 "tgt x%x lun x%x cmnd x%x rspInfo3 x%x\n",
3460 cmnd->device->id,
3461 cmnd->device->lun, cmnd->cmnd[0],
3462 fcprsp->rspInfo3);
3463 host_status = DID_ERROR;
3464 goto out;
3465 }
James Smart6a9c52c2009-10-02 15:16:51 -04003466 }
3467
James Smartc7743952006-12-02 13:34:42 -05003468 if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen) {
3469 uint32_t snslen = be32_to_cpu(fcprsp->rspSnsLen);
3470 if (snslen > SCSI_SENSE_BUFFERSIZE)
3471 snslen = SCSI_SENSE_BUFFERSIZE;
3472
3473 if (resp_info & RSP_LEN_VALID)
3474 rsplen = be32_to_cpu(fcprsp->rspRspLen);
3475 memcpy(cmnd->sense_buffer, &fcprsp->rspInfo0 + rsplen, snslen);
3476 }
3477 lp = (uint32_t *)cmnd->sense_buffer;
3478
James Smart73d91e52011-10-10 21:32:10 -04003479 if (!scsi_status && (resp_info & RESID_UNDER) &&
3480 vport->cfg_log_verbose & LOG_FCP_UNDER)
3481 logit = LOG_FCP_UNDER;
James Smartc7743952006-12-02 13:34:42 -05003482
James Smarte8b62012007-08-02 11:10:09 -04003483 lpfc_printf_vlog(vport, KERN_WARNING, logit,
James Smarte2a0a9d2008-12-04 22:40:02 -05003484 "9024 FCP command x%x failed: x%x SNS x%x x%x "
James Smarte8b62012007-08-02 11:10:09 -04003485 "Data: x%x x%x x%x x%x x%x\n",
3486 cmnd->cmnd[0], scsi_status,
3487 be32_to_cpu(*lp), be32_to_cpu(*(lp + 3)), resp_info,
3488 be32_to_cpu(fcprsp->rspResId),
3489 be32_to_cpu(fcprsp->rspSnsLen),
3490 be32_to_cpu(fcprsp->rspRspLen),
3491 fcprsp->rspInfo3);
dea31012005-04-17 16:05:31 -05003492
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05003493 scsi_set_resid(cmnd, 0);
dea31012005-04-17 16:05:31 -05003494 if (resp_info & RESID_UNDER) {
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05003495 scsi_set_resid(cmnd, be32_to_cpu(fcprsp->rspResId));
dea31012005-04-17 16:05:31 -05003496
James Smart73d91e52011-10-10 21:32:10 -04003497 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP_UNDER,
James Smarte2a0a9d2008-12-04 22:40:02 -05003498 "9025 FCP Read Underrun, expected %d, "
James Smarte8b62012007-08-02 11:10:09 -04003499 "residual %d Data: x%x x%x x%x\n",
3500 be32_to_cpu(fcpcmd->fcpDl),
3501 scsi_get_resid(cmnd), fcpi_parm, cmnd->cmnd[0],
3502 cmnd->underflow);
dea31012005-04-17 16:05:31 -05003503
3504 /*
James Smart7054a602007-04-25 09:52:34 -04003505 * If there is an under run check if under run reported by
3506 * storage array is same as the under run reported by HBA.
3507 * If this is not same, there is a dropped frame.
3508 */
3509 if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
3510 fcpi_parm &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05003511 (scsi_get_resid(cmnd) != fcpi_parm)) {
James Smarte8b62012007-08-02 11:10:09 -04003512 lpfc_printf_vlog(vport, KERN_WARNING,
3513 LOG_FCP | LOG_FCP_ERROR,
James Smarte2a0a9d2008-12-04 22:40:02 -05003514 "9026 FCP Read Check Error "
James Smarte8b62012007-08-02 11:10:09 -04003515 "and Underrun Data: x%x x%x x%x x%x\n",
3516 be32_to_cpu(fcpcmd->fcpDl),
3517 scsi_get_resid(cmnd), fcpi_parm,
3518 cmnd->cmnd[0]);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05003519 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
James Smart7054a602007-04-25 09:52:34 -04003520 host_status = DID_ERROR;
3521 }
3522 /*
dea31012005-04-17 16:05:31 -05003523 * The cmnd->underflow is the minimum number of bytes that must
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003524 * be transferred for this command. Provided a sense condition
dea31012005-04-17 16:05:31 -05003525 * is not present, make sure the actual amount transferred is at
3526 * least the underflow value or fail.
3527 */
3528 if (!(resp_info & SNS_LEN_VALID) &&
3529 (scsi_status == SAM_STAT_GOOD) &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05003530 (scsi_bufflen(cmnd) - scsi_get_resid(cmnd)
3531 < cmnd->underflow)) {
James Smarte8b62012007-08-02 11:10:09 -04003532 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05003533 "9027 FCP command x%x residual "
James Smarte8b62012007-08-02 11:10:09 -04003534 "underrun converted to error "
3535 "Data: x%x x%x x%x\n",
James Smart66dbfbe2007-08-05 06:08:38 -04003536 cmnd->cmnd[0], scsi_bufflen(cmnd),
James Smarte8b62012007-08-02 11:10:09 -04003537 scsi_get_resid(cmnd), cmnd->underflow);
dea31012005-04-17 16:05:31 -05003538 host_status = DID_ERROR;
3539 }
3540 } else if (resp_info & RESID_OVER) {
James Smarte8b62012007-08-02 11:10:09 -04003541 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
James Smarte2a0a9d2008-12-04 22:40:02 -05003542 "9028 FCP command x%x residual overrun error. "
James Smarte4e74272009-07-19 10:01:38 -04003543 "Data: x%x x%x\n", cmnd->cmnd[0],
James Smarte8b62012007-08-02 11:10:09 -04003544 scsi_bufflen(cmnd), scsi_get_resid(cmnd));
dea31012005-04-17 16:05:31 -05003545 host_status = DID_ERROR;
3546
3547 /*
3548 * Check SLI validation that all the transfer was actually done
James Smart582dd792012-08-03 12:34:44 -04003549 * (fcpi_parm should be zero).
dea31012005-04-17 16:05:31 -05003550 */
James Smart582dd792012-08-03 12:34:44 -04003551 } else if (fcpi_parm) {
James Smarte8b62012007-08-02 11:10:09 -04003552 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP | LOG_FCP_ERROR,
James Smart582dd792012-08-03 12:34:44 -04003553 "9029 FCP Data Transfer Check Error: "
James Smarteee88772010-09-29 11:19:08 -04003554 "x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003555 be32_to_cpu(fcpcmd->fcpDl),
3556 be32_to_cpu(fcprsp->rspResId),
James Smarteee88772010-09-29 11:19:08 -04003557 fcpi_parm, cmnd->cmnd[0], scsi_status);
3558 switch (scsi_status) {
3559 case SAM_STAT_GOOD:
3560 case SAM_STAT_CHECK_CONDITION:
3561 /* Fabric dropped a data frame. Fail any successful
3562 * command in which we detected dropped frames.
3563 * A status of good or some check conditions could
3564 * be considered a successful command.
3565 */
3566 host_status = DID_ERROR;
3567 break;
3568 }
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05003569 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
dea31012005-04-17 16:05:31 -05003570 }
3571
3572 out:
3573 cmnd->result = ScsiResult(host_status, scsi_status);
James Smartea2151b2008-09-07 11:52:10 -04003574 lpfc_send_scsi_error_event(vport->phba, vport, lpfc_cmd, rsp_iocb);
dea31012005-04-17 16:05:31 -05003575}
3576
James Smart9bad7672008-12-04 22:39:02 -05003577/**
James Smart3621a712009-04-06 18:47:14 -04003578 * lpfc_scsi_cmd_iocb_cmpl - Scsi cmnd IOCB completion routine
James Smart9bad7672008-12-04 22:39:02 -05003579 * @phba: The Hba for which this call is being executed.
3580 * @pIocbIn: The command IOCBQ for the scsi cmnd.
James Smart3772a992009-05-22 14:50:54 -04003581 * @pIocbOut: The response IOCBQ for the scsi cmnd.
James Smart9bad7672008-12-04 22:39:02 -05003582 *
3583 * This routine assigns scsi command result by looking into response IOCB
3584 * status field appropriately. This routine handles QUEUE FULL condition as
3585 * well by ramping down device queue depth.
3586 **/
dea31012005-04-17 16:05:31 -05003587static void
3588lpfc_scsi_cmd_iocb_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *pIocbIn,
3589 struct lpfc_iocbq *pIocbOut)
3590{
3591 struct lpfc_scsi_buf *lpfc_cmd =
3592 (struct lpfc_scsi_buf *) pIocbIn->context1;
James Smart2e0fef82007-06-17 19:56:36 -05003593 struct lpfc_vport *vport = pIocbIn->vport;
dea31012005-04-17 16:05:31 -05003594 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
3595 struct lpfc_nodelist *pnode = rdata->pnode;
James Smart75baf692010-06-08 18:31:21 -04003596 struct scsi_cmnd *cmd;
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05003597 int result;
James Smarta257bf92009-04-06 18:48:10 -04003598 struct scsi_device *tmp_sdev;
James Smart5ffc2662009-11-18 15:39:44 -05003599 int depth;
James Smartfa61a542008-01-11 01:52:42 -05003600 unsigned long flags;
James Smartea2151b2008-09-07 11:52:10 -04003601 struct lpfc_fast_path_event *fast_path_evt;
James Smart75baf692010-06-08 18:31:21 -04003602 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -04003603 uint32_t queue_depth, scsi_id;
James Smart73d91e52011-10-10 21:32:10 -04003604 uint32_t logit = LOG_FCP;
dea31012005-04-17 16:05:31 -05003605
James Smart75baf692010-06-08 18:31:21 -04003606 /* Sanity check on return of outstanding command */
3607 if (!(lpfc_cmd->pCmd))
3608 return;
3609 cmd = lpfc_cmd->pCmd;
3610 shost = cmd->device->host;
3611
James Smarte3d2b802012-08-14 14:25:43 -04003612 lpfc_cmd->result = (pIocbOut->iocb.un.ulpWord[4] & IOERR_PARAM_MASK);
dea31012005-04-17 16:05:31 -05003613 lpfc_cmd->status = pIocbOut->iocb.ulpStatus;
James Smart341af102010-01-26 23:07:37 -05003614 /* pick up SLI4 exhange busy status from HBA */
3615 lpfc_cmd->exch_busy = pIocbOut->iocb_flag & LPFC_EXCHANGE_BUSY;
3616
James Smart9a6b09c2012-03-01 22:37:42 -05003617#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
3618 if (lpfc_cmd->prot_data_type) {
3619 struct scsi_dif_tuple *src = NULL;
3620
3621 src = (struct scsi_dif_tuple *)lpfc_cmd->prot_data_segment;
3622 /*
3623 * Used to restore any changes to protection
3624 * data for error injection.
3625 */
3626 switch (lpfc_cmd->prot_data_type) {
3627 case LPFC_INJERR_REFTAG:
3628 src->ref_tag =
3629 lpfc_cmd->prot_data;
3630 break;
3631 case LPFC_INJERR_APPTAG:
3632 src->app_tag =
3633 (uint16_t)lpfc_cmd->prot_data;
3634 break;
3635 case LPFC_INJERR_GUARD:
3636 src->guard_tag =
3637 (uint16_t)lpfc_cmd->prot_data;
3638 break;
3639 default:
3640 break;
3641 }
3642
3643 lpfc_cmd->prot_data = 0;
3644 lpfc_cmd->prot_data_type = 0;
3645 lpfc_cmd->prot_data_segment = NULL;
3646 }
3647#endif
James Smart109f6ed2008-12-04 22:39:08 -05003648 if (pnode && NLP_CHK_NODE_ACT(pnode))
3649 atomic_dec(&pnode->cmd_pending);
dea31012005-04-17 16:05:31 -05003650
3651 if (lpfc_cmd->status) {
3652 if (lpfc_cmd->status == IOSTAT_LOCAL_REJECT &&
3653 (lpfc_cmd->result & IOERR_DRVR_MASK))
3654 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
3655 else if (lpfc_cmd->status >= IOSTAT_CNT)
3656 lpfc_cmd->status = IOSTAT_DEFAULT;
James Smart73d91e52011-10-10 21:32:10 -04003657 if (lpfc_cmd->status == IOSTAT_FCP_RSP_ERROR
3658 && !lpfc_cmd->fcp_rsp->rspStatus3
3659 && (lpfc_cmd->fcp_rsp->rspStatus2 & RESID_UNDER)
3660 && !(phba->cfg_log_verbose & LOG_FCP_UNDER))
3661 logit = 0;
3662 else
3663 logit = LOG_FCP | LOG_FCP_UNDER;
3664 lpfc_printf_vlog(vport, KERN_WARNING, logit,
3665 "9030 FCP cmd x%x failed <%d/%d> "
James Smart5a0d80f2012-05-09 21:18:20 -04003666 "status: x%x result: x%x "
3667 "sid: x%x did: x%x oxid: x%x "
3668 "Data: x%x x%x\n",
James Smart73d91e52011-10-10 21:32:10 -04003669 cmd->cmnd[0],
3670 cmd->device ? cmd->device->id : 0xffff,
3671 cmd->device ? cmd->device->lun : 0xffff,
3672 lpfc_cmd->status, lpfc_cmd->result,
James Smart5a0d80f2012-05-09 21:18:20 -04003673 vport->fc_myDID, pnode->nlp_DID,
3674 phba->sli_rev == LPFC_SLI_REV4 ?
3675 lpfc_cmd->cur_iocbq.sli4_xritag : 0xffff,
James Smart73d91e52011-10-10 21:32:10 -04003676 pIocbOut->iocb.ulpContext,
3677 lpfc_cmd->cur_iocbq.iocb.ulpIoTag);
dea31012005-04-17 16:05:31 -05003678
3679 switch (lpfc_cmd->status) {
3680 case IOSTAT_FCP_RSP_ERROR:
3681 /* Call FCP RSP handler to determine result */
James Smart2e0fef82007-06-17 19:56:36 -05003682 lpfc_handle_fcp_err(vport, lpfc_cmd, pIocbOut);
dea31012005-04-17 16:05:31 -05003683 break;
3684 case IOSTAT_NPORT_BSY:
3685 case IOSTAT_FABRIC_BSY:
James Smart0f1f53a2008-08-24 21:50:18 -04003686 cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED, 0);
James Smartea2151b2008-09-07 11:52:10 -04003687 fast_path_evt = lpfc_alloc_fast_evt(phba);
3688 if (!fast_path_evt)
3689 break;
3690 fast_path_evt->un.fabric_evt.event_type =
3691 FC_REG_FABRIC_EVENT;
3692 fast_path_evt->un.fabric_evt.subcategory =
3693 (lpfc_cmd->status == IOSTAT_NPORT_BSY) ?
3694 LPFC_EVENT_PORT_BUSY : LPFC_EVENT_FABRIC_BUSY;
3695 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
3696 memcpy(&fast_path_evt->un.fabric_evt.wwpn,
3697 &pnode->nlp_portname,
3698 sizeof(struct lpfc_name));
3699 memcpy(&fast_path_evt->un.fabric_evt.wwnn,
3700 &pnode->nlp_nodename,
3701 sizeof(struct lpfc_name));
3702 }
3703 fast_path_evt->vport = vport;
3704 fast_path_evt->work_evt.evt =
3705 LPFC_EVT_FASTPATH_MGMT_EVT;
3706 spin_lock_irqsave(&phba->hbalock, flags);
3707 list_add_tail(&fast_path_evt->work_evt.evt_listp,
3708 &phba->work_list);
3709 spin_unlock_irqrestore(&phba->hbalock, flags);
3710 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05003711 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003712 case IOSTAT_LOCAL_REJECT:
James Smart1151e3e2011-02-16 12:39:35 -05003713 case IOSTAT_REMOTE_STOP:
James Smartab56dc22011-02-16 12:39:57 -05003714 if (lpfc_cmd->result == IOERR_ELXSEC_KEY_UNWRAP_ERROR ||
3715 lpfc_cmd->result ==
3716 IOERR_ELXSEC_KEY_UNWRAP_COMPARE_ERROR ||
3717 lpfc_cmd->result == IOERR_ELXSEC_CRYPTO_ERROR ||
3718 lpfc_cmd->result ==
3719 IOERR_ELXSEC_CRYPTO_COMPARE_ERROR) {
3720 cmd->result = ScsiResult(DID_NO_CONNECT, 0);
3721 break;
3722 }
James Smartd7c255b2008-08-24 21:50:00 -04003723 if (lpfc_cmd->result == IOERR_INVALID_RPI ||
James Smart92d7f7b2007-06-17 19:56:38 -05003724 lpfc_cmd->result == IOERR_NO_RESOURCES ||
James Smartb92938b2010-06-07 15:24:12 -04003725 lpfc_cmd->result == IOERR_ABORT_REQUESTED ||
3726 lpfc_cmd->result == IOERR_SLER_CMD_RCV_FAILURE) {
James Smart92d7f7b2007-06-17 19:56:38 -05003727 cmd->result = ScsiResult(DID_REQUEUE, 0);
James Smart58da1ff2008-04-07 10:15:56 -04003728 break;
James Smarte2a0a9d2008-12-04 22:40:02 -05003729 }
James Smarte2a0a9d2008-12-04 22:40:02 -05003730 if ((lpfc_cmd->result == IOERR_RX_DMA_FAILED ||
3731 lpfc_cmd->result == IOERR_TX_DMA_FAILED) &&
3732 pIocbOut->iocb.unsli3.sli3_bg.bgstat) {
3733 if (scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
3734 /*
3735 * This is a response for a BG enabled
3736 * cmd. Parse BG error
3737 */
3738 lpfc_parse_bg_err(phba, lpfc_cmd,
3739 pIocbOut);
3740 break;
3741 } else {
3742 lpfc_printf_vlog(vport, KERN_WARNING,
3743 LOG_BG,
3744 "9031 non-zero BGSTAT "
James Smart6a9c52c2009-10-02 15:16:51 -04003745 "on unprotected cmd\n");
James Smarte2a0a9d2008-12-04 22:40:02 -05003746 }
3747 }
James Smart1151e3e2011-02-16 12:39:35 -05003748 if ((lpfc_cmd->status == IOSTAT_REMOTE_STOP)
3749 && (phba->sli_rev == LPFC_SLI_REV4)
3750 && (pnode && NLP_CHK_NODE_ACT(pnode))) {
3751 /* This IO was aborted by the target, we don't
3752 * know the rxid and because we did not send the
3753 * ABTS we cannot generate and RRQ.
3754 */
3755 lpfc_set_rrq_active(phba, pnode,
James Smartee0f4fe2012-05-09 21:19:14 -04003756 lpfc_cmd->cur_iocbq.sli4_lxritag,
3757 0, 0);
James Smart1151e3e2011-02-16 12:39:35 -05003758 }
James Smarte2a0a9d2008-12-04 22:40:02 -05003759 /* else: fall through */
dea31012005-04-17 16:05:31 -05003760 default:
3761 cmd->result = ScsiResult(DID_ERROR, 0);
3762 break;
3763 }
3764
James Smart58da1ff2008-04-07 10:15:56 -04003765 if (!pnode || !NLP_CHK_NODE_ACT(pnode)
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003766 || (pnode->nlp_state != NLP_STE_MAPPED_NODE))
James Smart0f1f53a2008-08-24 21:50:18 -04003767 cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED,
3768 SAM_STAT_BUSY);
James Smartab56dc22011-02-16 12:39:57 -05003769 } else
dea31012005-04-17 16:05:31 -05003770 cmd->result = ScsiResult(DID_OK, 0);
dea31012005-04-17 16:05:31 -05003771
3772 if (cmd->result || lpfc_cmd->fcp_rsp->rspSnsLen) {
3773 uint32_t *lp = (uint32_t *)cmd->sense_buffer;
3774
James Smarte8b62012007-08-02 11:10:09 -04003775 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3776 "0710 Iodone <%d/%d> cmd %p, error "
3777 "x%x SNS x%x x%x Data: x%x x%x\n",
3778 cmd->device->id, cmd->device->lun, cmd,
3779 cmd->result, *lp, *(lp + 3), cmd->retries,
3780 scsi_get_resid(cmd));
dea31012005-04-17 16:05:31 -05003781 }
3782
James Smartea2151b2008-09-07 11:52:10 -04003783 lpfc_update_stats(phba, lpfc_cmd);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05003784 result = cmd->result;
James Smart977b5a02008-09-07 11:52:04 -04003785 if (vport->cfg_max_scsicmpl_time &&
3786 time_after(jiffies, lpfc_cmd->start_time +
3787 msecs_to_jiffies(vport->cfg_max_scsicmpl_time))) {
James Smarta257bf92009-04-06 18:48:10 -04003788 spin_lock_irqsave(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05003789 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
3790 if (pnode->cmd_qdepth >
3791 atomic_read(&pnode->cmd_pending) &&
3792 (atomic_read(&pnode->cmd_pending) >
3793 LPFC_MIN_TGT_QDEPTH) &&
3794 ((cmd->cmnd[0] == READ_10) ||
3795 (cmd->cmnd[0] == WRITE_10)))
3796 pnode->cmd_qdepth =
3797 atomic_read(&pnode->cmd_pending);
James Smart977b5a02008-09-07 11:52:04 -04003798
James Smart109f6ed2008-12-04 22:39:08 -05003799 pnode->last_change_time = jiffies;
3800 }
James Smarta257bf92009-04-06 18:48:10 -04003801 spin_unlock_irqrestore(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05003802 } else if (pnode && NLP_CHK_NODE_ACT(pnode)) {
James Smart7dc517d2010-07-14 15:32:10 -04003803 if ((pnode->cmd_qdepth < vport->cfg_tgt_queue_depth) &&
James Smart977b5a02008-09-07 11:52:04 -04003804 time_after(jiffies, pnode->last_change_time +
James Smart109f6ed2008-12-04 22:39:08 -05003805 msecs_to_jiffies(LPFC_TGTQ_INTERVAL))) {
James Smarta257bf92009-04-06 18:48:10 -04003806 spin_lock_irqsave(shost->host_lock, flags);
James Smart7dc517d2010-07-14 15:32:10 -04003807 depth = pnode->cmd_qdepth * LPFC_TGTQ_RAMPUP_PCENT
3808 / 100;
3809 depth = depth ? depth : 1;
3810 pnode->cmd_qdepth += depth;
3811 if (pnode->cmd_qdepth > vport->cfg_tgt_queue_depth)
3812 pnode->cmd_qdepth = vport->cfg_tgt_queue_depth;
James Smart109f6ed2008-12-04 22:39:08 -05003813 pnode->last_change_time = jiffies;
James Smarta257bf92009-04-06 18:48:10 -04003814 spin_unlock_irqrestore(shost->host_lock, flags);
James Smart109f6ed2008-12-04 22:39:08 -05003815 }
James Smart977b5a02008-09-07 11:52:04 -04003816 }
3817
James Smart1dcb58e2007-04-25 09:51:30 -04003818 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James Smarta257bf92009-04-06 18:48:10 -04003819
3820 /* The sdev is not guaranteed to be valid post scsi_done upcall. */
3821 queue_depth = cmd->device->queue_depth;
3822 scsi_id = cmd->device->id;
dea31012005-04-17 16:05:31 -05003823 cmd->scsi_done(cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003824
Jamie Wellnitzb8086082006-02-28 22:33:12 -05003825 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smartfa61a542008-01-11 01:52:42 -05003826 /*
3827 * If there is a thread waiting for command completion
3828 * wake up the thread.
3829 */
James Smarta257bf92009-04-06 18:48:10 -04003830 spin_lock_irqsave(shost->host_lock, flags);
James Smart495a7142008-06-14 22:52:59 -04003831 lpfc_cmd->pCmd = NULL;
James Smartfa61a542008-01-11 01:52:42 -05003832 if (lpfc_cmd->waitq)
3833 wake_up(lpfc_cmd->waitq);
James Smarta257bf92009-04-06 18:48:10 -04003834 spin_unlock_irqrestore(shost->host_lock, flags);
Jamie Wellnitzb8086082006-02-28 22:33:12 -05003835 lpfc_release_scsi_buf(phba, lpfc_cmd);
3836 return;
3837 }
3838
James Smart92d7f7b2007-06-17 19:56:38 -05003839 if (!result)
James Smarta257bf92009-04-06 18:48:10 -04003840 lpfc_rampup_queue_depth(vport, queue_depth);
James Smart92d7f7b2007-06-17 19:56:38 -05003841
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05003842 /*
3843 * Check for queue full. If the lun is reporting queue full, then
3844 * back off the lun queue depth to prevent target overloads.
3845 */
James Smart58da1ff2008-04-07 10:15:56 -04003846 if (result == SAM_STAT_TASK_SET_FULL && pnode &&
3847 NLP_CHK_NODE_ACT(pnode)) {
James Smarta257bf92009-04-06 18:48:10 -04003848 shost_for_each_device(tmp_sdev, shost) {
3849 if (tmp_sdev->id != scsi_id)
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05003850 continue;
3851 depth = scsi_track_queue_full(tmp_sdev,
James Smart5ffc2662009-11-18 15:39:44 -05003852 tmp_sdev->queue_depth-1);
3853 if (depth <= 0)
3854 continue;
James Smarte8b62012007-08-02 11:10:09 -04003855 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3856 "0711 detected queue full - lun queue "
3857 "depth adjusted to %d.\n", depth);
James Smartea2151b2008-09-07 11:52:10 -04003858 lpfc_send_sdev_queuedepth_change_event(phba, vport,
James Smart5ffc2662009-11-18 15:39:44 -05003859 pnode,
3860 tmp_sdev->lun,
3861 depth+1, depth);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -05003862 }
3863 }
3864
James Smartfa61a542008-01-11 01:52:42 -05003865 /*
3866 * If there is a thread waiting for command completion
3867 * wake up the thread.
3868 */
James Smarta257bf92009-04-06 18:48:10 -04003869 spin_lock_irqsave(shost->host_lock, flags);
James Smart495a7142008-06-14 22:52:59 -04003870 lpfc_cmd->pCmd = NULL;
James Smartfa61a542008-01-11 01:52:42 -05003871 if (lpfc_cmd->waitq)
3872 wake_up(lpfc_cmd->waitq);
James Smarta257bf92009-04-06 18:48:10 -04003873 spin_unlock_irqrestore(shost->host_lock, flags);
James Smartfa61a542008-01-11 01:52:42 -05003874
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04003875 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05003876}
3877
James Smart34b02dc2008-08-24 21:49:55 -04003878/**
James Smart3621a712009-04-06 18:47:14 -04003879 * lpfc_fcpcmd_to_iocb - copy the fcp_cmd data into the IOCB
James Smart34b02dc2008-08-24 21:49:55 -04003880 * @data: A pointer to the immediate command data portion of the IOCB.
3881 * @fcp_cmnd: The FCP Command that is provided by the SCSI layer.
3882 *
3883 * The routine copies the entire FCP command from @fcp_cmnd to @data while
3884 * byte swapping the data to big endian format for transmission on the wire.
3885 **/
3886static void
3887lpfc_fcpcmd_to_iocb(uint8_t *data, struct fcp_cmnd *fcp_cmnd)
3888{
3889 int i, j;
3890 for (i = 0, j = 0; i < sizeof(struct fcp_cmnd);
3891 i += sizeof(uint32_t), j++) {
3892 ((uint32_t *)data)[j] = cpu_to_be32(((uint32_t *)fcp_cmnd)[j]);
3893 }
3894}
3895
James Smart9bad7672008-12-04 22:39:02 -05003896/**
James Smartf1126682009-06-10 17:22:44 -04003897 * lpfc_scsi_prep_cmnd - Wrapper func for convert scsi cmnd to FCP info unit
James Smart9bad7672008-12-04 22:39:02 -05003898 * @vport: The virtual port for which this call is being executed.
3899 * @lpfc_cmd: The scsi command which needs to send.
3900 * @pnode: Pointer to lpfc_nodelist.
3901 *
3902 * This routine initializes fcp_cmnd and iocb data structure from scsi command
James Smart3772a992009-05-22 14:50:54 -04003903 * to transfer for device with SLI3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05003904 **/
dea31012005-04-17 16:05:31 -05003905static void
James Smartf1126682009-06-10 17:22:44 -04003906lpfc_scsi_prep_cmnd(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
James Smart2e0fef82007-06-17 19:56:36 -05003907 struct lpfc_nodelist *pnode)
dea31012005-04-17 16:05:31 -05003908{
James Smart2e0fef82007-06-17 19:56:36 -05003909 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003910 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
3911 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
3912 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
3913 struct lpfc_iocbq *piocbq = &(lpfc_cmd->cur_iocbq);
3914 int datadir = scsi_cmnd->sc_data_direction;
James Smart7e2b19f2007-10-29 11:00:39 -04003915 char tag[2];
James Smart027140e2012-08-03 12:35:44 -04003916 uint8_t *ptr;
3917 bool sli4;
dea31012005-04-17 16:05:31 -05003918
James Smart58da1ff2008-04-07 10:15:56 -04003919 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
3920 return;
3921
dea31012005-04-17 16:05:31 -05003922 lpfc_cmd->fcp_rsp->rspSnsLen = 0;
James.Smart@Emulex.Com69859dc2005-08-10 15:02:37 -04003923 /* clear task management bits */
3924 lpfc_cmd->fcp_cmnd->fcpCntl2 = 0;
dea31012005-04-17 16:05:31 -05003925
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -04003926 int_to_scsilun(lpfc_cmd->pCmd->device->lun,
3927 &lpfc_cmd->fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -05003928
James Smart027140e2012-08-03 12:35:44 -04003929 ptr = &fcp_cmnd->fcpCdb[0];
3930 memcpy(ptr, scsi_cmnd->cmnd, scsi_cmnd->cmd_len);
3931 if (scsi_cmnd->cmd_len < LPFC_FCP_CDB_LEN) {
3932 ptr += scsi_cmnd->cmd_len;
3933 memset(ptr, 0, (LPFC_FCP_CDB_LEN - scsi_cmnd->cmd_len));
3934 }
3935
James Smart7e2b19f2007-10-29 11:00:39 -04003936 if (scsi_populate_tag_msg(scsi_cmnd, tag)) {
3937 switch (tag[0]) {
dea31012005-04-17 16:05:31 -05003938 case HEAD_OF_QUEUE_TAG:
3939 fcp_cmnd->fcpCntl1 = HEAD_OF_Q;
3940 break;
3941 case ORDERED_QUEUE_TAG:
3942 fcp_cmnd->fcpCntl1 = ORDERED_Q;
3943 break;
3944 default:
3945 fcp_cmnd->fcpCntl1 = SIMPLE_Q;
3946 break;
3947 }
3948 } else
3949 fcp_cmnd->fcpCntl1 = 0;
3950
James Smart027140e2012-08-03 12:35:44 -04003951 sli4 = (phba->sli_rev == LPFC_SLI_REV4);
3952
dea31012005-04-17 16:05:31 -05003953 /*
3954 * There are three possibilities here - use scatter-gather segment, use
3955 * the single mapping, or neither. Start the lpfc command prep by
3956 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
3957 * data bde entry.
3958 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -05003959 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -05003960 if (datadir == DMA_TO_DEVICE) {
3961 iocb_cmd->ulpCommand = CMD_FCP_IWRITE64_CR;
James Smart027140e2012-08-03 12:35:44 -04003962 if (sli4)
3963 iocb_cmd->ulpPU = PARM_READ_CHECK;
3964 else {
James Smart3772a992009-05-22 14:50:54 -04003965 iocb_cmd->un.fcpi.fcpi_parm = 0;
3966 iocb_cmd->ulpPU = 0;
James Smart027140e2012-08-03 12:35:44 -04003967 }
dea31012005-04-17 16:05:31 -05003968 fcp_cmnd->fcpCntl3 = WRITE_DATA;
3969 phba->fc4OutputRequests++;
3970 } else {
3971 iocb_cmd->ulpCommand = CMD_FCP_IREAD64_CR;
3972 iocb_cmd->ulpPU = PARM_READ_CHECK;
dea31012005-04-17 16:05:31 -05003973 fcp_cmnd->fcpCntl3 = READ_DATA;
3974 phba->fc4InputRequests++;
3975 }
3976 } else {
3977 iocb_cmd->ulpCommand = CMD_FCP_ICMND64_CR;
3978 iocb_cmd->un.fcpi.fcpi_parm = 0;
3979 iocb_cmd->ulpPU = 0;
3980 fcp_cmnd->fcpCntl3 = 0;
3981 phba->fc4ControlRequests++;
3982 }
James Smarte2a0a9d2008-12-04 22:40:02 -05003983 if (phba->sli_rev == 3 &&
3984 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED))
James Smart34b02dc2008-08-24 21:49:55 -04003985 lpfc_fcpcmd_to_iocb(iocb_cmd->unsli3.fcp_ext.icd, fcp_cmnd);
dea31012005-04-17 16:05:31 -05003986 /*
3987 * Finish initializing those IOCB fields that are independent
3988 * of the scsi_cmnd request_buffer
3989 */
3990 piocbq->iocb.ulpContext = pnode->nlp_rpi;
James Smart027140e2012-08-03 12:35:44 -04003991 if (sli4)
James Smart6d368e52011-05-24 11:44:12 -04003992 piocbq->iocb.ulpContext =
3993 phba->sli4_hba.rpi_ids[pnode->nlp_rpi];
dea31012005-04-17 16:05:31 -05003994 if (pnode->nlp_fcp_info & NLP_FCP_2_DEVICE)
3995 piocbq->iocb.ulpFCP2Rcvy = 1;
James Smart09372822008-01-11 01:52:54 -05003996 else
3997 piocbq->iocb.ulpFCP2Rcvy = 0;
dea31012005-04-17 16:05:31 -05003998
3999 piocbq->iocb.ulpClass = (pnode->nlp_fcp_info & 0x0f);
4000 piocbq->context1 = lpfc_cmd;
4001 piocbq->iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
4002 piocbq->iocb.ulpTimeout = lpfc_cmd->timeout;
James Smart2e0fef82007-06-17 19:56:36 -05004003 piocbq->vport = vport;
dea31012005-04-17 16:05:31 -05004004}
4005
James Smart9bad7672008-12-04 22:39:02 -05004006/**
James Smart6d368e52011-05-24 11:44:12 -04004007 * lpfc_scsi_prep_task_mgmt_cmd - Convert SLI3 scsi TM cmd to FCP info unit
James Smart9bad7672008-12-04 22:39:02 -05004008 * @vport: The virtual port for which this call is being executed.
4009 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
4010 * @lun: Logical unit number.
4011 * @task_mgmt_cmd: SCSI task management command.
4012 *
James Smart3772a992009-05-22 14:50:54 -04004013 * This routine creates FCP information unit corresponding to @task_mgmt_cmd
4014 * for device with SLI-3 interface spec.
James Smart9bad7672008-12-04 22:39:02 -05004015 *
4016 * Return codes:
4017 * 0 - Error
4018 * 1 - Success
4019 **/
dea31012005-04-17 16:05:31 -05004020static int
James Smartf1126682009-06-10 17:22:44 -04004021lpfc_scsi_prep_task_mgmt_cmd(struct lpfc_vport *vport,
dea31012005-04-17 16:05:31 -05004022 struct lpfc_scsi_buf *lpfc_cmd,
James Smart420b630d2006-07-06 15:50:16 -04004023 unsigned int lun,
dea31012005-04-17 16:05:31 -05004024 uint8_t task_mgmt_cmd)
4025{
dea31012005-04-17 16:05:31 -05004026 struct lpfc_iocbq *piocbq;
4027 IOCB_t *piocb;
4028 struct fcp_cmnd *fcp_cmnd;
James Smart0b18ac42006-05-01 21:50:40 -04004029 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
dea31012005-04-17 16:05:31 -05004030 struct lpfc_nodelist *ndlp = rdata->pnode;
4031
James Smart58da1ff2008-04-07 10:15:56 -04004032 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
4033 ndlp->nlp_state != NLP_STE_MAPPED_NODE)
dea31012005-04-17 16:05:31 -05004034 return 0;
dea31012005-04-17 16:05:31 -05004035
dea31012005-04-17 16:05:31 -05004036 piocbq = &(lpfc_cmd->cur_iocbq);
James Smart2e0fef82007-06-17 19:56:36 -05004037 piocbq->vport = vport;
4038
dea31012005-04-17 16:05:31 -05004039 piocb = &piocbq->iocb;
4040
4041 fcp_cmnd = lpfc_cmd->fcp_cmnd;
James Smart34b02dc2008-08-24 21:49:55 -04004042 /* Clear out any old data in the FCP command area */
4043 memset(fcp_cmnd, 0, sizeof(struct fcp_cmnd));
4044 int_to_scsilun(lun, &fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -05004045 fcp_cmnd->fcpCntl2 = task_mgmt_cmd;
James Smarte2a0a9d2008-12-04 22:40:02 -05004046 if (vport->phba->sli_rev == 3 &&
4047 !(vport->phba->sli3_options & LPFC_SLI3_BG_ENABLED))
James Smart34b02dc2008-08-24 21:49:55 -04004048 lpfc_fcpcmd_to_iocb(piocb->unsli3.fcp_ext.icd, fcp_cmnd);
dea31012005-04-17 16:05:31 -05004049 piocb->ulpCommand = CMD_FCP_ICMND64_CR;
dea31012005-04-17 16:05:31 -05004050 piocb->ulpContext = ndlp->nlp_rpi;
James Smart6d368e52011-05-24 11:44:12 -04004051 if (vport->phba->sli_rev == LPFC_SLI_REV4) {
4052 piocb->ulpContext =
4053 vport->phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
4054 }
dea31012005-04-17 16:05:31 -05004055 if (ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
4056 piocb->ulpFCP2Rcvy = 1;
4057 }
4058 piocb->ulpClass = (ndlp->nlp_fcp_info & 0x0f);
4059
4060 /* ulpTimeout is only one byte */
4061 if (lpfc_cmd->timeout > 0xff) {
4062 /*
4063 * Do not timeout the command at the firmware level.
4064 * The driver will provide the timeout mechanism.
4065 */
4066 piocb->ulpTimeout = 0;
James Smartf1126682009-06-10 17:22:44 -04004067 } else
dea31012005-04-17 16:05:31 -05004068 piocb->ulpTimeout = lpfc_cmd->timeout;
James Smartf1126682009-06-10 17:22:44 -04004069
4070 if (vport->phba->sli_rev == LPFC_SLI_REV4)
4071 lpfc_sli4_set_rsp_sgl_last(vport->phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05004072
James Smart2e0fef82007-06-17 19:56:36 -05004073 return 1;
dea31012005-04-17 16:05:31 -05004074}
4075
James Smart9bad7672008-12-04 22:39:02 -05004076/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004077 * lpfc_scsi_api_table_setup - Set up scsi api function jump table
James Smart3772a992009-05-22 14:50:54 -04004078 * @phba: The hba struct for which this call is being executed.
4079 * @dev_grp: The HBA PCI-Device group number.
4080 *
4081 * This routine sets up the SCSI interface API function jump table in @phba
4082 * struct.
4083 * Returns: 0 - success, -ENODEV - failure.
4084 **/
4085int
4086lpfc_scsi_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
4087{
4088
James Smartf1126682009-06-10 17:22:44 -04004089 phba->lpfc_scsi_unprep_dma_buf = lpfc_scsi_unprep_dma_buf;
4090 phba->lpfc_scsi_prep_cmnd = lpfc_scsi_prep_cmnd;
James Smartf1126682009-06-10 17:22:44 -04004091
James Smart3772a992009-05-22 14:50:54 -04004092 switch (dev_grp) {
4093 case LPFC_PCI_DEV_LP:
4094 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s3;
4095 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s3;
James Smartacd68592012-01-18 16:25:09 -05004096 phba->lpfc_bg_scsi_prep_dma_buf = lpfc_bg_scsi_prep_dma_buf_s3;
James Smart3772a992009-05-22 14:50:54 -04004097 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s3;
James Smart19ca7602010-11-20 23:11:55 -05004098 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf_s3;
James Smart3772a992009-05-22 14:50:54 -04004099 break;
James Smartda0436e2009-05-22 14:51:39 -04004100 case LPFC_PCI_DEV_OC:
4101 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s4;
4102 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s4;
James Smartacd68592012-01-18 16:25:09 -05004103 phba->lpfc_bg_scsi_prep_dma_buf = lpfc_bg_scsi_prep_dma_buf_s4;
James Smartda0436e2009-05-22 14:51:39 -04004104 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s4;
James Smart19ca7602010-11-20 23:11:55 -05004105 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf_s4;
James Smartda0436e2009-05-22 14:51:39 -04004106 break;
James Smart3772a992009-05-22 14:50:54 -04004107 default:
4108 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4109 "1418 Invalid HBA PCI-device group: 0x%x\n",
4110 dev_grp);
4111 return -ENODEV;
4112 break;
4113 }
James Smart3772a992009-05-22 14:50:54 -04004114 phba->lpfc_rampdown_queue_depth = lpfc_rampdown_queue_depth;
James Smart84d1b002010-02-12 14:42:33 -05004115 phba->lpfc_scsi_cmd_iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
James Smart3772a992009-05-22 14:50:54 -04004116 return 0;
4117}
4118
4119/**
James Smart3621a712009-04-06 18:47:14 -04004120 * lpfc_taskmgmt_def_cmpl - IOCB completion routine for task management command
James Smart9bad7672008-12-04 22:39:02 -05004121 * @phba: The Hba for which this call is being executed.
4122 * @cmdiocbq: Pointer to lpfc_iocbq data structure.
4123 * @rspiocbq: Pointer to lpfc_iocbq data structure.
4124 *
4125 * This routine is IOCB completion routine for device reset and target reset
4126 * routine. This routine release scsi buffer associated with lpfc_cmd.
4127 **/
James Smart7054a602007-04-25 09:52:34 -04004128static void
4129lpfc_tskmgmt_def_cmpl(struct lpfc_hba *phba,
4130 struct lpfc_iocbq *cmdiocbq,
4131 struct lpfc_iocbq *rspiocbq)
4132{
4133 struct lpfc_scsi_buf *lpfc_cmd =
4134 (struct lpfc_scsi_buf *) cmdiocbq->context1;
4135 if (lpfc_cmd)
4136 lpfc_release_scsi_buf(phba, lpfc_cmd);
4137 return;
4138}
4139
James Smart9bad7672008-12-04 22:39:02 -05004140/**
James Smart3621a712009-04-06 18:47:14 -04004141 * lpfc_info - Info entry point of scsi_host_template data structure
James Smart9bad7672008-12-04 22:39:02 -05004142 * @host: The scsi host for which this call is being executed.
4143 *
4144 * This routine provides module information about hba.
4145 *
4146 * Reutrn code:
4147 * Pointer to char - Success.
4148 **/
dea31012005-04-17 16:05:31 -05004149const char *
4150lpfc_info(struct Scsi_Host *host)
4151{
James Smart2e0fef82007-06-17 19:56:36 -05004152 struct lpfc_vport *vport = (struct lpfc_vport *) host->hostdata;
4153 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004154 int len;
4155 static char lpfcinfobuf[384];
4156
4157 memset(lpfcinfobuf,0,384);
4158 if (phba && phba->pcidev){
4159 strncpy(lpfcinfobuf, phba->ModelDesc, 256);
4160 len = strlen(lpfcinfobuf);
4161 snprintf(lpfcinfobuf + len,
4162 384-len,
4163 " on PCI bus %02x device %02x irq %d",
4164 phba->pcidev->bus->number,
4165 phba->pcidev->devfn,
4166 phba->pcidev->irq);
4167 len = strlen(lpfcinfobuf);
4168 if (phba->Port[0]) {
4169 snprintf(lpfcinfobuf + len,
4170 384-len,
4171 " port %s",
4172 phba->Port);
4173 }
James Smart65467b62010-01-26 23:08:29 -05004174 len = strlen(lpfcinfobuf);
4175 if (phba->sli4_hba.link_state.logical_speed) {
4176 snprintf(lpfcinfobuf + len,
4177 384-len,
4178 " Logical Link Speed: %d Mbps",
4179 phba->sli4_hba.link_state.logical_speed * 10);
4180 }
dea31012005-04-17 16:05:31 -05004181 }
4182 return lpfcinfobuf;
4183}
4184
James Smart9bad7672008-12-04 22:39:02 -05004185/**
James Smart3621a712009-04-06 18:47:14 -04004186 * lpfc_poll_rearm_time - Routine to modify fcp_poll timer of hba
James Smart9bad7672008-12-04 22:39:02 -05004187 * @phba: The Hba for which this call is being executed.
4188 *
4189 * This routine modifies fcp_poll_timer field of @phba by cfg_poll_tmo.
4190 * The default value of cfg_poll_tmo is 10 milliseconds.
4191 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004192static __inline__ void lpfc_poll_rearm_timer(struct lpfc_hba * phba)
4193{
4194 unsigned long poll_tmo_expires =
4195 (jiffies + msecs_to_jiffies(phba->cfg_poll_tmo));
4196
4197 if (phba->sli.ring[LPFC_FCP_RING].txcmplq_cnt)
4198 mod_timer(&phba->fcp_poll_timer,
4199 poll_tmo_expires);
4200}
4201
James Smart9bad7672008-12-04 22:39:02 -05004202/**
James Smart3621a712009-04-06 18:47:14 -04004203 * lpfc_poll_start_timer - Routine to start fcp_poll_timer of HBA
James Smart9bad7672008-12-04 22:39:02 -05004204 * @phba: The Hba for which this call is being executed.
4205 *
4206 * This routine starts the fcp_poll_timer of @phba.
4207 **/
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004208void lpfc_poll_start_timer(struct lpfc_hba * phba)
4209{
4210 lpfc_poll_rearm_timer(phba);
4211}
4212
James Smart9bad7672008-12-04 22:39:02 -05004213/**
James Smart3621a712009-04-06 18:47:14 -04004214 * lpfc_poll_timeout - Restart polling timer
James Smart9bad7672008-12-04 22:39:02 -05004215 * @ptr: Map to lpfc_hba data structure pointer.
4216 *
4217 * This routine restarts fcp_poll timer, when FCP ring polling is enable
4218 * and FCP Ring interrupt is disable.
4219 **/
4220
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004221void lpfc_poll_timeout(unsigned long ptr)
4222{
James Smart2e0fef82007-06-17 19:56:36 -05004223 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004224
4225 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04004226 lpfc_sli_handle_fast_ring_event(phba,
4227 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
4228
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004229 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
4230 lpfc_poll_rearm_timer(phba);
4231 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004232}
4233
James Smart9bad7672008-12-04 22:39:02 -05004234/**
James Smart3621a712009-04-06 18:47:14 -04004235 * lpfc_queuecommand - scsi_host_template queuecommand entry point
James Smart9bad7672008-12-04 22:39:02 -05004236 * @cmnd: Pointer to scsi_cmnd data structure.
4237 * @done: Pointer to done routine.
4238 *
4239 * Driver registers this routine to scsi midlayer to submit a @cmd to process.
4240 * This routine prepares an IOCB from scsi command and provides to firmware.
4241 * The @done callback is invoked after driver finished processing the command.
4242 *
4243 * Return value :
4244 * 0 - Success
4245 * SCSI_MLQUEUE_HOST_BUSY - Block all devices served by this host temporarily.
4246 **/
dea31012005-04-17 16:05:31 -05004247static int
James Smartb9a7c632012-08-03 12:35:24 -04004248lpfc_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05004249{
James Smart2e0fef82007-06-17 19:56:36 -05004250 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4251 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004252 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05004253 struct lpfc_nodelist *ndlp;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004254 struct lpfc_scsi_buf *lpfc_cmd;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04004255 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04004256 int err;
dea31012005-04-17 16:05:31 -05004257
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04004258 err = fc_remote_port_chkready(rport);
4259 if (err) {
4260 cmnd->result = err;
dea31012005-04-17 16:05:31 -05004261 goto out_fail_command;
4262 }
James Smart1c6f4ef52009-11-18 15:40:49 -05004263 ndlp = rdata->pnode;
dea31012005-04-17 16:05:31 -05004264
James Smartbf086112011-08-21 21:48:13 -04004265 if ((scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) &&
James Smartacd68592012-01-18 16:25:09 -05004266 (!(phba->sli3_options & LPFC_SLI3_BG_ENABLED))) {
James Smarte2a0a9d2008-12-04 22:40:02 -05004267
James Smart6a9c52c2009-10-02 15:16:51 -04004268 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
4269 "9058 BLKGRD: ERROR: rcvd protected cmd:%02x"
4270 " op:%02x str=%s without registering for"
4271 " BlockGuard - Rejecting command\n",
James Smarte2a0a9d2008-12-04 22:40:02 -05004272 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
4273 dif_op_str[scsi_get_prot_op(cmnd)]);
4274 goto out_fail_command;
4275 }
4276
dea31012005-04-17 16:05:31 -05004277 /*
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04004278 * Catch race where our node has transitioned, but the
4279 * transport is still transitioning.
dea31012005-04-17 16:05:31 -05004280 */
James Smart6b415f52012-06-12 13:54:59 -04004281 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
4282 goto out_tgt_busy;
James Smart7dc517d2010-07-14 15:32:10 -04004283 if (atomic_read(&ndlp->cmd_pending) >= ndlp->cmd_qdepth)
Mike Christie34963432011-02-25 14:04:28 -06004284 goto out_tgt_busy;
Mike Christiea93ce022008-08-17 15:24:41 -05004285
James Smart19ca7602010-11-20 23:11:55 -05004286 lpfc_cmd = lpfc_get_scsi_buf(phba, ndlp);
dea31012005-04-17 16:05:31 -05004287 if (lpfc_cmd == NULL) {
James Smarteaf15d52008-12-04 22:39:29 -05004288 lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05004289
James Smarte8b62012007-08-02 11:10:09 -04004290 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4291 "0707 driver's buffer pool is empty, "
4292 "IO busied\n");
dea31012005-04-17 16:05:31 -05004293 goto out_host_busy;
4294 }
4295
4296 /*
4297 * Store the midlayer's command structure for the completion phase
4298 * and complete the command initialization.
4299 */
4300 lpfc_cmd->pCmd = cmnd;
4301 lpfc_cmd->rdata = rdata;
4302 lpfc_cmd->timeout = 0;
James Smart977b5a02008-09-07 11:52:04 -04004303 lpfc_cmd->start_time = jiffies;
dea31012005-04-17 16:05:31 -05004304 cmnd->host_scribble = (unsigned char *)lpfc_cmd;
dea31012005-04-17 16:05:31 -05004305
James Smarte2a0a9d2008-12-04 22:40:02 -05004306 if (scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) {
James Smart6a9c52c2009-10-02 15:16:51 -04004307 if (vport->phba->cfg_enable_bg) {
James Smart26134702012-08-14 14:25:50 -04004308 lpfc_printf_vlog(vport, KERN_INFO, LOG_BG,
4309 "9033 BLKGRD: rcvd %s cmd:x%x "
4310 "sector x%llx cnt %u pt %x\n",
4311 dif_op_str[scsi_get_prot_op(cmnd)],
4312 cmnd->cmnd[0],
4313 (unsigned long long)scsi_get_lba(cmnd),
4314 blk_rq_sectors(cmnd->request),
4315 (cmnd->cmnd[1]>>5));
James Smart6a9c52c2009-10-02 15:16:51 -04004316 }
James Smarte2a0a9d2008-12-04 22:40:02 -05004317 err = lpfc_bg_scsi_prep_dma_buf(phba, lpfc_cmd);
4318 } else {
James Smart6a9c52c2009-10-02 15:16:51 -04004319 if (vport->phba->cfg_enable_bg) {
James Smart26134702012-08-14 14:25:50 -04004320 lpfc_printf_vlog(vport, KERN_INFO, LOG_BG,
4321 "9038 BLKGRD: rcvd PROT_NORMAL cmd: "
4322 "x%x sector x%llx cnt %u pt %x\n",
4323 cmnd->cmnd[0],
4324 (unsigned long long)scsi_get_lba(cmnd),
James Smart9a6b09c2012-03-01 22:37:42 -05004325 blk_rq_sectors(cmnd->request),
James Smart26134702012-08-14 14:25:50 -04004326 (cmnd->cmnd[1]>>5));
James Smart6a9c52c2009-10-02 15:16:51 -04004327 }
James Smarte2a0a9d2008-12-04 22:40:02 -05004328 err = lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
4329 }
4330
dea31012005-04-17 16:05:31 -05004331 if (err)
4332 goto out_host_busy_free_buf;
4333
James Smart2e0fef82007-06-17 19:56:36 -05004334 lpfc_scsi_prep_cmnd(vport, lpfc_cmd, ndlp);
dea31012005-04-17 16:05:31 -05004335
James Smart977b5a02008-09-07 11:52:04 -04004336 atomic_inc(&ndlp->cmd_pending);
James Smart3772a992009-05-22 14:50:54 -04004337 err = lpfc_sli_issue_iocb(phba, LPFC_FCP_RING,
James Smart92d7f7b2007-06-17 19:56:38 -05004338 &lpfc_cmd->cur_iocbq, SLI_IOCB_RET_IOCB);
James Smarteaf15d52008-12-04 22:39:29 -05004339 if (err) {
4340 atomic_dec(&ndlp->cmd_pending);
dea31012005-04-17 16:05:31 -05004341 goto out_host_busy_free_buf;
James Smarteaf15d52008-12-04 22:39:29 -05004342 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004343 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04004344 lpfc_sli_handle_fast_ring_event(phba,
4345 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
4346
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004347 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
4348 lpfc_poll_rearm_timer(phba);
4349 }
4350
dea31012005-04-17 16:05:31 -05004351 return 0;
4352
4353 out_host_busy_free_buf:
James Smartbcf4dbf2006-07-06 15:50:08 -04004354 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004355 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05004356 out_host_busy:
4357 return SCSI_MLQUEUE_HOST_BUSY;
4358
Mike Christie34963432011-02-25 14:04:28 -06004359 out_tgt_busy:
4360 return SCSI_MLQUEUE_TARGET_BUSY;
4361
dea31012005-04-17 16:05:31 -05004362 out_fail_command:
James Smartb9a7c632012-08-03 12:35:24 -04004363 cmnd->scsi_done(cmnd);
dea31012005-04-17 16:05:31 -05004364 return 0;
4365}
4366
Jeff Garzikf2812332010-11-16 02:10:29 -05004367
James Smart9bad7672008-12-04 22:39:02 -05004368/**
James Smart3621a712009-04-06 18:47:14 -04004369 * lpfc_abort_handler - scsi_host_template eh_abort_handler entry point
James Smart9bad7672008-12-04 22:39:02 -05004370 * @cmnd: Pointer to scsi_cmnd data structure.
4371 *
4372 * This routine aborts @cmnd pending in base driver.
4373 *
4374 * Return code :
4375 * 0x2003 - Error
4376 * 0x2002 - Success
4377 **/
dea31012005-04-17 16:05:31 -05004378static int
James.Smart@Emulex.Com63c59c32005-11-28 11:41:53 -05004379lpfc_abort_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05004380{
James Smart2e0fef82007-06-17 19:56:36 -05004381 struct Scsi_Host *shost = cmnd->device->host;
4382 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4383 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004384 struct lpfc_iocbq *iocb;
4385 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -05004386 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05004387 IOCB_t *cmd, *icmd;
James Smart3a707302012-06-12 13:54:42 -04004388 int ret = SUCCESS, status = 0;
James Smartfa61a542008-01-11 01:52:42 -05004389 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004390
James Smart3a707302012-06-12 13:54:42 -04004391 status = fc_block_scsi_eh(cmnd);
James Smart908e18e2012-08-03 12:34:54 -04004392 if (status != 0 && status != SUCCESS)
James Smart3a707302012-06-12 13:54:42 -04004393 return status;
James Smart4f2e66c2012-05-09 21:17:07 -04004394
4395 spin_lock_irq(&phba->hbalock);
4396 /* driver queued commands are in process of being flushed */
4397 if (phba->hba_flag & HBA_FCP_IOQ_FLUSH) {
4398 spin_unlock_irq(&phba->hbalock);
4399 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4400 "3168 SCSI Layer abort requested I/O has been "
4401 "flushed by LLD.\n");
4402 return FAILED;
4403 }
4404
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004405 lpfc_cmd = (struct lpfc_scsi_buf *)cmnd->host_scribble;
James Smarteee88772010-09-29 11:19:08 -04004406 if (!lpfc_cmd) {
James Smart4f2e66c2012-05-09 21:17:07 -04004407 spin_unlock_irq(&phba->hbalock);
James Smarteee88772010-09-29 11:19:08 -04004408 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4409 "2873 SCSI Layer I/O Abort Request IO CMPL Status "
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04004410 "x%x ID %d LUN %d\n",
James Smart3a707302012-06-12 13:54:42 -04004411 SUCCESS, cmnd->device->id, cmnd->device->lun);
James Smarteee88772010-09-29 11:19:08 -04004412 return SUCCESS;
4413 }
dea31012005-04-17 16:05:31 -05004414
James Smart4f2e66c2012-05-09 21:17:07 -04004415 iocb = &lpfc_cmd->cur_iocbq;
4416 /* the command is in process of being cancelled */
4417 if (!(iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ)) {
4418 spin_unlock_irq(&phba->hbalock);
4419 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4420 "3169 SCSI Layer abort requested I/O has been "
4421 "cancelled by LLD.\n");
4422 return FAILED;
4423 }
dea31012005-04-17 16:05:31 -05004424 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004425 * If pCmd field of the corresponding lpfc_scsi_buf structure
4426 * points to a different SCSI command, then the driver has
4427 * already completed this command, but the midlayer did not
James Smart4f2e66c2012-05-09 21:17:07 -04004428 * see the completion before the eh fired. Just return SUCCESS.
dea31012005-04-17 16:05:31 -05004429 */
James Smart4f2e66c2012-05-09 21:17:07 -04004430 if (lpfc_cmd->pCmd != cmnd) {
4431 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4432 "3170 SCSI Layer abort requested I/O has been "
4433 "completed by LLD.\n");
4434 goto out_unlock;
4435 }
dea31012005-04-17 16:05:31 -05004436
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004437 BUG_ON(iocb->context1 != lpfc_cmd);
dea31012005-04-17 16:05:31 -05004438
James Smart4f2e66c2012-05-09 21:17:07 -04004439 abtsiocb = __lpfc_sli_get_iocbq(phba);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004440 if (abtsiocb == NULL) {
4441 ret = FAILED;
James Smart4f2e66c2012-05-09 21:17:07 -04004442 goto out_unlock;
dea31012005-04-17 16:05:31 -05004443 }
4444
dea31012005-04-17 16:05:31 -05004445 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004446 * The scsi command can not be in txq and it is in flight because the
4447 * pCmd is still pointig at the SCSI command we have to abort. There
4448 * is no need to search the txcmplq. Just send an abort to the FW.
dea31012005-04-17 16:05:31 -05004449 */
dea31012005-04-17 16:05:31 -05004450
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004451 cmd = &iocb->iocb;
4452 icmd = &abtsiocb->iocb;
4453 icmd->un.acxri.abortType = ABORT_TYPE_ABTS;
4454 icmd->un.acxri.abortContextTag = cmd->ulpContext;
James Smart3772a992009-05-22 14:50:54 -04004455 if (phba->sli_rev == LPFC_SLI_REV4)
4456 icmd->un.acxri.abortIoTag = iocb->sli4_xritag;
4457 else
4458 icmd->un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05004459
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004460 icmd->ulpLe = 1;
4461 icmd->ulpClass = cmd->ulpClass;
James Smart5ffc2662009-11-18 15:39:44 -05004462
4463 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
4464 abtsiocb->fcp_wqidx = iocb->fcp_wqidx;
James Smart341af102010-01-26 23:07:37 -05004465 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart5ffc2662009-11-18 15:39:44 -05004466
James Smart2e0fef82007-06-17 19:56:36 -05004467 if (lpfc_is_link_up(phba))
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004468 icmd->ulpCommand = CMD_ABORT_XRI_CN;
4469 else
4470 icmd->ulpCommand = CMD_CLOSE_XRI_CN;
dea31012005-04-17 16:05:31 -05004471
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004472 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smart2e0fef82007-06-17 19:56:36 -05004473 abtsiocb->vport = vport;
James Smart4f2e66c2012-05-09 21:17:07 -04004474 /* no longer need the lock after this point */
4475 spin_unlock_irq(&phba->hbalock);
4476
James Smart3772a992009-05-22 14:50:54 -04004477 if (lpfc_sli_issue_iocb(phba, LPFC_FCP_RING, abtsiocb, 0) ==
4478 IOCB_ERROR) {
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004479 lpfc_sli_release_iocbq(phba, abtsiocb);
4480 ret = FAILED;
4481 goto out;
4482 }
4483
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004484 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
James Smart45ed1192009-10-02 15:17:02 -04004485 lpfc_sli_handle_fast_ring_event(phba,
4486 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05004487
James Smartfa61a542008-01-11 01:52:42 -05004488 lpfc_cmd->waitq = &waitq;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004489 /* Wait for abort to complete */
James Smartfa61a542008-01-11 01:52:42 -05004490 wait_event_timeout(waitq,
4491 (lpfc_cmd->pCmd != cmnd),
4492 (2*vport->cfg_devloss_tmo*HZ));
James Smartfa61a542008-01-11 01:52:42 -05004493 lpfc_cmd->waitq = NULL;
dea31012005-04-17 16:05:31 -05004494
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004495 if (lpfc_cmd->pCmd == cmnd) {
4496 ret = FAILED;
James Smarte8b62012007-08-02 11:10:09 -04004497 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4498 "0748 abort handler timed out waiting "
4499 "for abort to complete: ret %#x, ID %d, "
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04004500 "LUN %d\n",
4501 ret, cmnd->device->id, cmnd->device->lun);
dea31012005-04-17 16:05:31 -05004502 }
James Smart4f2e66c2012-05-09 21:17:07 -04004503 goto out;
dea31012005-04-17 16:05:31 -05004504
James Smart4f2e66c2012-05-09 21:17:07 -04004505out_unlock:
4506 spin_unlock_irq(&phba->hbalock);
4507out:
James Smarte8b62012007-08-02 11:10:09 -04004508 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4509 "0749 SCSI Layer I/O Abort Request Status x%x ID %d "
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04004510 "LUN %d\n", ret, cmnd->device->id,
4511 cmnd->device->lun);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04004512 return ret;
dea31012005-04-17 16:05:31 -05004513}
4514
James Smartbbb9d182009-06-10 17:23:16 -04004515static char *
4516lpfc_taskmgmt_name(uint8_t task_mgmt_cmd)
4517{
4518 switch (task_mgmt_cmd) {
4519 case FCP_ABORT_TASK_SET:
4520 return "ABORT_TASK_SET";
4521 case FCP_CLEAR_TASK_SET:
4522 return "FCP_CLEAR_TASK_SET";
4523 case FCP_BUS_RESET:
4524 return "FCP_BUS_RESET";
4525 case FCP_LUN_RESET:
4526 return "FCP_LUN_RESET";
4527 case FCP_TARGET_RESET:
4528 return "FCP_TARGET_RESET";
4529 case FCP_CLEAR_ACA:
4530 return "FCP_CLEAR_ACA";
4531 case FCP_TERMINATE_TASK:
4532 return "FCP_TERMINATE_TASK";
4533 default:
4534 return "unknown";
4535 }
4536}
4537
4538/**
4539 * lpfc_send_taskmgmt - Generic SCSI Task Mgmt Handler
4540 * @vport: The virtual port for which this call is being executed.
4541 * @rdata: Pointer to remote port local data
4542 * @tgt_id: Target ID of remote device.
4543 * @lun_id: Lun number for the TMF
4544 * @task_mgmt_cmd: type of TMF to send
4545 *
4546 * This routine builds and sends a TMF (SCSI Task Mgmt Function) to
4547 * a remote port.
4548 *
4549 * Return Code:
4550 * 0x2003 - Error
4551 * 0x2002 - Success.
4552 **/
4553static int
4554lpfc_send_taskmgmt(struct lpfc_vport *vport, struct lpfc_rport_data *rdata,
4555 unsigned tgt_id, unsigned int lun_id,
4556 uint8_t task_mgmt_cmd)
4557{
4558 struct lpfc_hba *phba = vport->phba;
4559 struct lpfc_scsi_buf *lpfc_cmd;
4560 struct lpfc_iocbq *iocbq;
4561 struct lpfc_iocbq *iocbqrsp;
James Smart5989b8d2010-10-22 11:06:56 -04004562 struct lpfc_nodelist *pnode = rdata->pnode;
James Smartbbb9d182009-06-10 17:23:16 -04004563 int ret;
4564 int status;
4565
James Smart5989b8d2010-10-22 11:06:56 -04004566 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
James Smartbbb9d182009-06-10 17:23:16 -04004567 return FAILED;
4568
James Smart19ca7602010-11-20 23:11:55 -05004569 lpfc_cmd = lpfc_get_scsi_buf(phba, rdata->pnode);
James Smartbbb9d182009-06-10 17:23:16 -04004570 if (lpfc_cmd == NULL)
4571 return FAILED;
4572 lpfc_cmd->timeout = 60;
4573 lpfc_cmd->rdata = rdata;
4574
4575 status = lpfc_scsi_prep_task_mgmt_cmd(vport, lpfc_cmd, lun_id,
4576 task_mgmt_cmd);
4577 if (!status) {
4578 lpfc_release_scsi_buf(phba, lpfc_cmd);
4579 return FAILED;
4580 }
4581
4582 iocbq = &lpfc_cmd->cur_iocbq;
4583 iocbqrsp = lpfc_sli_get_iocbq(phba);
4584 if (iocbqrsp == NULL) {
4585 lpfc_release_scsi_buf(phba, lpfc_cmd);
4586 return FAILED;
4587 }
4588
4589 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4590 "0702 Issue %s to TGT %d LUN %d "
James Smart6d368e52011-05-24 11:44:12 -04004591 "rpi x%x nlp_flag x%x Data: x%x x%x\n",
James Smartbbb9d182009-06-10 17:23:16 -04004592 lpfc_taskmgmt_name(task_mgmt_cmd), tgt_id, lun_id,
James Smart6d368e52011-05-24 11:44:12 -04004593 pnode->nlp_rpi, pnode->nlp_flag, iocbq->sli4_xritag,
4594 iocbq->iocb_flag);
James Smartbbb9d182009-06-10 17:23:16 -04004595
4596 status = lpfc_sli_issue_iocb_wait(phba, LPFC_FCP_RING,
4597 iocbq, iocbqrsp, lpfc_cmd->timeout);
4598 if (status != IOCB_SUCCESS) {
4599 if (status == IOCB_TIMEDOUT) {
4600 iocbq->iocb_cmpl = lpfc_tskmgmt_def_cmpl;
4601 ret = TIMEOUT_ERROR;
4602 } else
4603 ret = FAILED;
4604 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
4605 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
James Smart6d368e52011-05-24 11:44:12 -04004606 "0727 TMF %s to TGT %d LUN %d failed (%d, %d) "
4607 "iocb_flag x%x\n",
James Smartbbb9d182009-06-10 17:23:16 -04004608 lpfc_taskmgmt_name(task_mgmt_cmd),
4609 tgt_id, lun_id, iocbqrsp->iocb.ulpStatus,
James Smart6d368e52011-05-24 11:44:12 -04004610 iocbqrsp->iocb.un.ulpWord[4],
4611 iocbq->iocb_flag);
James Smart2a9bf3d2010-06-07 15:24:45 -04004612 } else if (status == IOCB_BUSY)
4613 ret = FAILED;
4614 else
James Smartbbb9d182009-06-10 17:23:16 -04004615 ret = SUCCESS;
4616
4617 lpfc_sli_release_iocbq(phba, iocbqrsp);
4618
4619 if (ret != TIMEOUT_ERROR)
4620 lpfc_release_scsi_buf(phba, lpfc_cmd);
4621
4622 return ret;
4623}
4624
4625/**
4626 * lpfc_chk_tgt_mapped -
4627 * @vport: The virtual port to check on
4628 * @cmnd: Pointer to scsi_cmnd data structure.
4629 *
4630 * This routine delays until the scsi target (aka rport) for the
4631 * command exists (is present and logged in) or we declare it non-existent.
4632 *
4633 * Return code :
4634 * 0x2003 - Error
4635 * 0x2002 - Success
4636 **/
4637static int
4638lpfc_chk_tgt_mapped(struct lpfc_vport *vport, struct scsi_cmnd *cmnd)
4639{
4640 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05004641 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04004642 unsigned long later;
4643
James Smart1c6f4ef52009-11-18 15:40:49 -05004644 if (!rdata) {
4645 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4646 "0797 Tgt Map rport failure: rdata x%p\n", rdata);
4647 return FAILED;
4648 }
4649 pnode = rdata->pnode;
James Smartbbb9d182009-06-10 17:23:16 -04004650 /*
4651 * If target is not in a MAPPED state, delay until
4652 * target is rediscovered or devloss timeout expires.
4653 */
4654 later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
4655 while (time_after(later, jiffies)) {
4656 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
4657 return FAILED;
4658 if (pnode->nlp_state == NLP_STE_MAPPED_NODE)
4659 return SUCCESS;
4660 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
4661 rdata = cmnd->device->hostdata;
4662 if (!rdata)
4663 return FAILED;
4664 pnode = rdata->pnode;
4665 }
4666 if (!pnode || !NLP_CHK_NODE_ACT(pnode) ||
4667 (pnode->nlp_state != NLP_STE_MAPPED_NODE))
4668 return FAILED;
4669 return SUCCESS;
4670}
4671
4672/**
4673 * lpfc_reset_flush_io_context -
4674 * @vport: The virtual port (scsi_host) for the flush context
4675 * @tgt_id: If aborting by Target contect - specifies the target id
4676 * @lun_id: If aborting by Lun context - specifies the lun id
4677 * @context: specifies the context level to flush at.
4678 *
4679 * After a reset condition via TMF, we need to flush orphaned i/o
4680 * contexts from the adapter. This routine aborts any contexts
4681 * outstanding, then waits for their completions. The wait is
4682 * bounded by devloss_tmo though.
4683 *
4684 * Return code :
4685 * 0x2003 - Error
4686 * 0x2002 - Success
4687 **/
4688static int
4689lpfc_reset_flush_io_context(struct lpfc_vport *vport, uint16_t tgt_id,
4690 uint64_t lun_id, lpfc_ctx_cmd context)
4691{
4692 struct lpfc_hba *phba = vport->phba;
4693 unsigned long later;
4694 int cnt;
4695
4696 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
4697 if (cnt)
4698 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
4699 tgt_id, lun_id, context);
4700 later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
4701 while (time_after(later, jiffies) && cnt) {
4702 schedule_timeout_uninterruptible(msecs_to_jiffies(20));
4703 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
4704 }
4705 if (cnt) {
4706 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4707 "0724 I/O flush failure for context %s : cnt x%x\n",
4708 ((context == LPFC_CTX_LUN) ? "LUN" :
4709 ((context == LPFC_CTX_TGT) ? "TGT" :
4710 ((context == LPFC_CTX_HOST) ? "HOST" : "Unknown"))),
4711 cnt);
4712 return FAILED;
4713 }
4714 return SUCCESS;
4715}
4716
James Smart9bad7672008-12-04 22:39:02 -05004717/**
James Smart3621a712009-04-06 18:47:14 -04004718 * lpfc_device_reset_handler - scsi_host_template eh_device_reset entry point
James Smart9bad7672008-12-04 22:39:02 -05004719 * @cmnd: Pointer to scsi_cmnd data structure.
4720 *
James Smartbbb9d182009-06-10 17:23:16 -04004721 * This routine does a device reset by sending a LUN_RESET task management
James Smart9bad7672008-12-04 22:39:02 -05004722 * command.
4723 *
4724 * Return code :
4725 * 0x2003 - Error
James Smart3621a712009-04-06 18:47:14 -04004726 * 0x2002 - Success
James Smart9bad7672008-12-04 22:39:02 -05004727 **/
dea31012005-04-17 16:05:31 -05004728static int
James Smart7054a602007-04-25 09:52:34 -04004729lpfc_device_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05004730{
James Smart2e0fef82007-06-17 19:56:36 -05004731 struct Scsi_Host *shost = cmnd->device->host;
4732 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
dea31012005-04-17 16:05:31 -05004733 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05004734 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04004735 unsigned tgt_id = cmnd->device->id;
4736 unsigned int lun_id = cmnd->device->lun;
James Smartea2151b2008-09-07 11:52:10 -04004737 struct lpfc_scsi_event_header scsi_event;
James Smart3a707302012-06-12 13:54:42 -04004738 int status, ret = SUCCESS;
dea31012005-04-17 16:05:31 -05004739
James Smart1c6f4ef52009-11-18 15:40:49 -05004740 if (!rdata) {
4741 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4742 "0798 Device Reset rport failure: rdata x%p\n", rdata);
4743 return FAILED;
4744 }
4745 pnode = rdata->pnode;
James Smart589a52d2010-07-14 15:30:54 -04004746 status = fc_block_scsi_eh(cmnd);
James Smart908e18e2012-08-03 12:34:54 -04004747 if (status != 0 && status != SUCCESS)
James Smart589a52d2010-07-14 15:30:54 -04004748 return status;
James Smartbbb9d182009-06-10 17:23:16 -04004749
4750 status = lpfc_chk_tgt_mapped(vport, cmnd);
4751 if (status == FAILED) {
4752 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4753 "0721 Device Reset rport failure: rdata x%p\n", rdata);
4754 return FAILED;
4755 }
4756
4757 scsi_event.event_type = FC_REG_SCSI_EVENT;
4758 scsi_event.subcategory = LPFC_EVENT_LUNRESET;
4759 scsi_event.lun = lun_id;
4760 memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
4761 memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
4762
4763 fc_host_post_vendor_event(shost, fc_get_event_number(),
4764 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
4765
4766 status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
4767 FCP_LUN_RESET);
4768
4769 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4770 "0713 SCSI layer issued Device Reset (%d, %d) "
4771 "return x%x\n", tgt_id, lun_id, status);
4772
dea31012005-04-17 16:05:31 -05004773 /*
James Smartbbb9d182009-06-10 17:23:16 -04004774 * We have to clean up i/o as : they may be orphaned by the TMF;
4775 * or if the TMF failed, they may be in an indeterminate state.
4776 * So, continue on.
4777 * We will report success if all the i/o aborts successfully.
dea31012005-04-17 16:05:31 -05004778 */
James Smart3a707302012-06-12 13:54:42 -04004779 ret = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
James Smartbbb9d182009-06-10 17:23:16 -04004780 LPFC_CTX_LUN);
James Smart3a707302012-06-12 13:54:42 -04004781 return ret;
James Smartbbb9d182009-06-10 17:23:16 -04004782}
4783
4784/**
4785 * lpfc_target_reset_handler - scsi_host_template eh_target_reset entry point
4786 * @cmnd: Pointer to scsi_cmnd data structure.
4787 *
4788 * This routine does a target reset by sending a TARGET_RESET task management
4789 * command.
4790 *
4791 * Return code :
4792 * 0x2003 - Error
4793 * 0x2002 - Success
4794 **/
4795static int
4796lpfc_target_reset_handler(struct scsi_cmnd *cmnd)
4797{
4798 struct Scsi_Host *shost = cmnd->device->host;
4799 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4800 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
James Smart1c6f4ef52009-11-18 15:40:49 -05004801 struct lpfc_nodelist *pnode;
James Smartbbb9d182009-06-10 17:23:16 -04004802 unsigned tgt_id = cmnd->device->id;
4803 unsigned int lun_id = cmnd->device->lun;
4804 struct lpfc_scsi_event_header scsi_event;
James Smart3a707302012-06-12 13:54:42 -04004805 int status, ret = SUCCESS;
James Smartbbb9d182009-06-10 17:23:16 -04004806
James Smart1c6f4ef52009-11-18 15:40:49 -05004807 if (!rdata) {
4808 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4809 "0799 Target Reset rport failure: rdata x%p\n", rdata);
4810 return FAILED;
4811 }
4812 pnode = rdata->pnode;
James Smart589a52d2010-07-14 15:30:54 -04004813 status = fc_block_scsi_eh(cmnd);
James Smart908e18e2012-08-03 12:34:54 -04004814 if (status != 0 && status != SUCCESS)
James Smart589a52d2010-07-14 15:30:54 -04004815 return status;
James Smartbbb9d182009-06-10 17:23:16 -04004816
4817 status = lpfc_chk_tgt_mapped(vport, cmnd);
4818 if (status == FAILED) {
4819 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4820 "0722 Target Reset rport failure: rdata x%p\n", rdata);
4821 return FAILED;
dea31012005-04-17 16:05:31 -05004822 }
James Smartea2151b2008-09-07 11:52:10 -04004823
4824 scsi_event.event_type = FC_REG_SCSI_EVENT;
4825 scsi_event.subcategory = LPFC_EVENT_TGTRESET;
4826 scsi_event.lun = 0;
4827 memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
4828 memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
4829
James Smartbbb9d182009-06-10 17:23:16 -04004830 fc_host_post_vendor_event(shost, fc_get_event_number(),
4831 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04004832
James Smartbbb9d182009-06-10 17:23:16 -04004833 status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
4834 FCP_TARGET_RESET);
dea31012005-04-17 16:05:31 -05004835
James Smarte8b62012007-08-02 11:10:09 -04004836 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
James Smartbbb9d182009-06-10 17:23:16 -04004837 "0723 SCSI layer issued Target Reset (%d, %d) "
4838 "return x%x\n", tgt_id, lun_id, status);
4839
4840 /*
4841 * We have to clean up i/o as : they may be orphaned by the TMF;
4842 * or if the TMF failed, they may be in an indeterminate state.
4843 * So, continue on.
4844 * We will report success if all the i/o aborts successfully.
4845 */
James Smart3a707302012-06-12 13:54:42 -04004846 ret = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
4847 LPFC_CTX_TGT);
4848 return ret;
dea31012005-04-17 16:05:31 -05004849}
4850
James Smart9bad7672008-12-04 22:39:02 -05004851/**
James Smart3621a712009-04-06 18:47:14 -04004852 * lpfc_bus_reset_handler - scsi_host_template eh_bus_reset_handler entry point
James Smart9bad7672008-12-04 22:39:02 -05004853 * @cmnd: Pointer to scsi_cmnd data structure.
4854 *
James Smartbbb9d182009-06-10 17:23:16 -04004855 * This routine does target reset to all targets on @cmnd->device->host.
4856 * This emulates Parallel SCSI Bus Reset Semantics.
James Smart9bad7672008-12-04 22:39:02 -05004857 *
James Smartbbb9d182009-06-10 17:23:16 -04004858 * Return code :
4859 * 0x2003 - Error
4860 * 0x2002 - Success
James Smart9bad7672008-12-04 22:39:02 -05004861 **/
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04004862static int
James Smart7054a602007-04-25 09:52:34 -04004863lpfc_bus_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05004864{
James Smart2e0fef82007-06-17 19:56:36 -05004865 struct Scsi_Host *shost = cmnd->device->host;
4866 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
dea31012005-04-17 16:05:31 -05004867 struct lpfc_nodelist *ndlp = NULL;
James Smartea2151b2008-09-07 11:52:10 -04004868 struct lpfc_scsi_event_header scsi_event;
James Smartbbb9d182009-06-10 17:23:16 -04004869 int match;
4870 int ret = SUCCESS, status, i;
James Smartea2151b2008-09-07 11:52:10 -04004871
4872 scsi_event.event_type = FC_REG_SCSI_EVENT;
4873 scsi_event.subcategory = LPFC_EVENT_BUSRESET;
4874 scsi_event.lun = 0;
4875 memcpy(scsi_event.wwpn, &vport->fc_portname, sizeof(struct lpfc_name));
4876 memcpy(scsi_event.wwnn, &vport->fc_nodename, sizeof(struct lpfc_name));
4877
James Smartbbb9d182009-06-10 17:23:16 -04004878 fc_host_post_vendor_event(shost, fc_get_event_number(),
4879 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
dea31012005-04-17 16:05:31 -05004880
James Smartbf086112011-08-21 21:48:13 -04004881 status = fc_block_scsi_eh(cmnd);
James Smart908e18e2012-08-03 12:34:54 -04004882 if (status != 0 && status != SUCCESS)
James Smartbf086112011-08-21 21:48:13 -04004883 return status;
James Smartbbb9d182009-06-10 17:23:16 -04004884
dea31012005-04-17 16:05:31 -05004885 /*
4886 * Since the driver manages a single bus device, reset all
4887 * targets known to the driver. Should any target reset
4888 * fail, this routine returns failure to the midlayer.
4889 */
James Smarte17da182006-07-06 15:49:25 -04004890 for (i = 0; i < LPFC_MAX_TARGET; i++) {
James Smart685f0bf2007-04-25 09:53:08 -04004891 /* Search for mapped node by target ID */
dea31012005-04-17 16:05:31 -05004892 match = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004893 spin_lock_irq(shost->host_lock);
4894 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004895 if (!NLP_CHK_NODE_ACT(ndlp))
4896 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004897 if (ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
James Smart915caaa2008-06-14 22:52:38 -04004898 ndlp->nlp_sid == i &&
James Smart685f0bf2007-04-25 09:53:08 -04004899 ndlp->rport) {
dea31012005-04-17 16:05:31 -05004900 match = 1;
4901 break;
4902 }
4903 }
James Smart2e0fef82007-06-17 19:56:36 -05004904 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004905 if (!match)
4906 continue;
James Smartbbb9d182009-06-10 17:23:16 -04004907
4908 status = lpfc_send_taskmgmt(vport, ndlp->rport->dd_data,
4909 i, 0, FCP_TARGET_RESET);
4910
4911 if (status != SUCCESS) {
James Smarte8b62012007-08-02 11:10:09 -04004912 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4913 "0700 Bus Reset on target %d failed\n",
4914 i);
James Smart915caaa2008-06-14 22:52:38 -04004915 ret = FAILED;
dea31012005-04-17 16:05:31 -05004916 }
4917 }
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05004918 /*
James Smartbbb9d182009-06-10 17:23:16 -04004919 * We have to clean up i/o as : they may be orphaned by the TMFs
4920 * above; or if any of the TMFs failed, they may be in an
4921 * indeterminate state.
4922 * We will report success if all the i/o aborts successfully.
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05004923 */
James Smartbbb9d182009-06-10 17:23:16 -04004924
4925 status = lpfc_reset_flush_io_context(vport, 0, 0, LPFC_CTX_HOST);
4926 if (status != SUCCESS)
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05004927 ret = FAILED;
James Smartbbb9d182009-06-10 17:23:16 -04004928
James Smarte8b62012007-08-02 11:10:09 -04004929 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4930 "0714 SCSI layer issued Bus Reset Data: x%x\n", ret);
dea31012005-04-17 16:05:31 -05004931 return ret;
4932}
4933
James Smart9bad7672008-12-04 22:39:02 -05004934/**
James Smart27b01b82012-05-09 21:19:44 -04004935 * lpfc_host_reset_handler - scsi_host_template eh_host_reset_handler entry pt
4936 * @cmnd: Pointer to scsi_cmnd data structure.
4937 *
4938 * This routine does host reset to the adaptor port. It brings the HBA
4939 * offline, performs a board restart, and then brings the board back online.
4940 * The lpfc_offline calls lpfc_sli_hba_down which will abort and local
4941 * reject all outstanding SCSI commands to the host and error returned
4942 * back to SCSI mid-level. As this will be SCSI mid-level's last resort
4943 * of error handling, it will only return error if resetting of the adapter
4944 * is not successful; in all other cases, will return success.
4945 *
4946 * Return code :
4947 * 0x2003 - Error
4948 * 0x2002 - Success
4949 **/
4950static int
4951lpfc_host_reset_handler(struct scsi_cmnd *cmnd)
4952{
4953 struct Scsi_Host *shost = cmnd->device->host;
4954 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4955 struct lpfc_hba *phba = vport->phba;
4956 int rc, ret = SUCCESS;
4957
James Smart618a5232012-06-12 13:54:36 -04004958 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
James Smart27b01b82012-05-09 21:19:44 -04004959 lpfc_offline(phba);
4960 rc = lpfc_sli_brdrestart(phba);
4961 if (rc)
4962 ret = FAILED;
4963 lpfc_online(phba);
4964 lpfc_unblock_mgmt_io(phba);
4965
4966 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
4967 "3172 SCSI layer issued Host Reset Data: x%x\n", ret);
4968 return ret;
4969}
4970
4971/**
James Smart3621a712009-04-06 18:47:14 -04004972 * lpfc_slave_alloc - scsi_host_template slave_alloc entry point
James Smart9bad7672008-12-04 22:39:02 -05004973 * @sdev: Pointer to scsi_device.
4974 *
4975 * This routine populates the cmds_per_lun count + 2 scsi_bufs into this host's
4976 * globally available list of scsi buffers. This routine also makes sure scsi
4977 * buffer is not allocated more than HBA limit conveyed to midlayer. This list
4978 * of scsi buffer exists for the lifetime of the driver.
4979 *
4980 * Return codes:
4981 * non-0 - Error
4982 * 0 - Success
4983 **/
dea31012005-04-17 16:05:31 -05004984static int
dea31012005-04-17 16:05:31 -05004985lpfc_slave_alloc(struct scsi_device *sdev)
4986{
James Smart2e0fef82007-06-17 19:56:36 -05004987 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
4988 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04004989 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
James Smart3772a992009-05-22 14:50:54 -04004990 uint32_t total = 0;
dea31012005-04-17 16:05:31 -05004991 uint32_t num_to_alloc = 0;
James Smart3772a992009-05-22 14:50:54 -04004992 int num_allocated = 0;
James Smartd7c47992010-06-08 18:31:54 -04004993 uint32_t sdev_cnt;
dea31012005-04-17 16:05:31 -05004994
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04004995 if (!rport || fc_remote_port_chkready(rport))
dea31012005-04-17 16:05:31 -05004996 return -ENXIO;
4997
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04004998 sdev->hostdata = rport->dd_data;
James Smartd7c47992010-06-08 18:31:54 -04004999 sdev_cnt = atomic_inc_return(&phba->sdev_cnt);
dea31012005-04-17 16:05:31 -05005000
5001 /*
5002 * Populate the cmds_per_lun count scsi_bufs into this host's globally
5003 * available list of scsi buffers. Don't allocate more than the
James.Smart@Emulex.Coma784efb2005-10-28 20:29:51 -04005004 * HBA limit conveyed to the midlayer via the host structure. The
5005 * formula accounts for the lun_queue_depth + error handlers + 1
5006 * extra. This list of scsi bufs exists for the lifetime of the driver.
dea31012005-04-17 16:05:31 -05005007 */
5008 total = phba->total_scsi_bufs;
James Smart3de2a652007-08-02 11:09:59 -04005009 num_to_alloc = vport->cfg_lun_queue_depth + 2;
James Smart92d7f7b2007-06-17 19:56:38 -05005010
James Smartd7c47992010-06-08 18:31:54 -04005011 /* If allocated buffers are enough do nothing */
5012 if ((sdev_cnt * (vport->cfg_lun_queue_depth + 2)) < total)
5013 return 0;
5014
James Smart92d7f7b2007-06-17 19:56:38 -05005015 /* Allow some exchanges to be available always to complete discovery */
5016 if (total >= phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04005017 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
5018 "0704 At limitation of %d preallocated "
5019 "command buffers\n", total);
dea31012005-04-17 16:05:31 -05005020 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05005021 /* Allow some exchanges to be available always to complete discovery */
5022 } else if (total + num_to_alloc >
5023 phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04005024 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
5025 "0705 Allocation request of %d "
5026 "command buffers will exceed max of %d. "
5027 "Reducing allocation request to %d.\n",
5028 num_to_alloc, phba->cfg_hba_queue_depth,
5029 (phba->cfg_hba_queue_depth - total));
dea31012005-04-17 16:05:31 -05005030 num_to_alloc = phba->cfg_hba_queue_depth - total;
5031 }
James Smart3772a992009-05-22 14:50:54 -04005032 num_allocated = lpfc_new_scsi_buf(vport, num_to_alloc);
5033 if (num_to_alloc != num_allocated) {
5034 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
5035 "0708 Allocation request of %d "
5036 "command buffers did not succeed. "
5037 "Allocated %d buffers.\n",
5038 num_to_alloc, num_allocated);
dea31012005-04-17 16:05:31 -05005039 }
James Smart1c6f4ef52009-11-18 15:40:49 -05005040 if (num_allocated > 0)
5041 phba->total_scsi_bufs += num_allocated;
dea31012005-04-17 16:05:31 -05005042 return 0;
5043}
5044
James Smart9bad7672008-12-04 22:39:02 -05005045/**
James Smart3621a712009-04-06 18:47:14 -04005046 * lpfc_slave_configure - scsi_host_template slave_configure entry point
James Smart9bad7672008-12-04 22:39:02 -05005047 * @sdev: Pointer to scsi_device.
5048 *
5049 * This routine configures following items
5050 * - Tag command queuing support for @sdev if supported.
James Smart9bad7672008-12-04 22:39:02 -05005051 * - Enable SLI polling for fcp ring if ENABLE_FCP_RING_POLLING flag is set.
5052 *
5053 * Return codes:
5054 * 0 - Success
5055 **/
dea31012005-04-17 16:05:31 -05005056static int
5057lpfc_slave_configure(struct scsi_device *sdev)
5058{
James Smart2e0fef82007-06-17 19:56:36 -05005059 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
5060 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005061
5062 if (sdev->tagged_supported)
James Smart3de2a652007-08-02 11:09:59 -04005063 scsi_activate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05005064 else
James Smart3de2a652007-08-02 11:09:59 -04005065 scsi_deactivate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05005066
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05005067 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smart45ed1192009-10-02 15:17:02 -04005068 lpfc_sli_handle_fast_ring_event(phba,
5069 &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05005070 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
5071 lpfc_poll_rearm_timer(phba);
5072 }
5073
dea31012005-04-17 16:05:31 -05005074 return 0;
5075}
5076
James Smart9bad7672008-12-04 22:39:02 -05005077/**
James Smart3621a712009-04-06 18:47:14 -04005078 * lpfc_slave_destroy - slave_destroy entry point of SHT data structure
James Smart9bad7672008-12-04 22:39:02 -05005079 * @sdev: Pointer to scsi_device.
5080 *
5081 * This routine sets @sdev hostatdata filed to null.
5082 **/
dea31012005-04-17 16:05:31 -05005083static void
5084lpfc_slave_destroy(struct scsi_device *sdev)
5085{
James Smartd7c47992010-06-08 18:31:54 -04005086 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
5087 struct lpfc_hba *phba = vport->phba;
5088 atomic_dec(&phba->sdev_cnt);
dea31012005-04-17 16:05:31 -05005089 sdev->hostdata = NULL;
5090 return;
5091}
5092
James Smart92d7f7b2007-06-17 19:56:38 -05005093
dea31012005-04-17 16:05:31 -05005094struct scsi_host_template lpfc_template = {
5095 .module = THIS_MODULE,
5096 .name = LPFC_DRIVER_NAME,
5097 .info = lpfc_info,
5098 .queuecommand = lpfc_queuecommand,
5099 .eh_abort_handler = lpfc_abort_handler,
James Smartbbb9d182009-06-10 17:23:16 -04005100 .eh_device_reset_handler = lpfc_device_reset_handler,
5101 .eh_target_reset_handler = lpfc_target_reset_handler,
James Smart7054a602007-04-25 09:52:34 -04005102 .eh_bus_reset_handler = lpfc_bus_reset_handler,
James Smart27b01b82012-05-09 21:19:44 -04005103 .eh_host_reset_handler = lpfc_host_reset_handler,
dea31012005-04-17 16:05:31 -05005104 .slave_alloc = lpfc_slave_alloc,
5105 .slave_configure = lpfc_slave_configure,
5106 .slave_destroy = lpfc_slave_destroy,
James Smart47a86172007-04-25 09:53:22 -04005107 .scan_finished = lpfc_scan_finished,
dea31012005-04-17 16:05:31 -05005108 .this_id = -1,
James Smart83108bd2008-01-11 01:53:09 -05005109 .sg_tablesize = LPFC_DEFAULT_SG_SEG_CNT,
dea31012005-04-17 16:05:31 -05005110 .cmd_per_lun = LPFC_CMD_PER_LUN,
5111 .use_clustering = ENABLE_CLUSTERING,
James Smart2e0fef82007-06-17 19:56:36 -05005112 .shost_attrs = lpfc_hba_attrs,
James.Smart@Emulex.Com564b2962005-06-25 10:34:17 -04005113 .max_sectors = 0xFFFF,
James Smartf1c3b0f2009-07-19 10:01:32 -04005114 .vendor_id = LPFC_NL_VENDOR_ID,
James Smart5ffc2662009-11-18 15:39:44 -05005115 .change_queue_depth = lpfc_change_queue_depth,
dea31012005-04-17 16:05:31 -05005116};
James Smart3de2a652007-08-02 11:09:59 -04005117
5118struct scsi_host_template lpfc_vport_template = {
5119 .module = THIS_MODULE,
5120 .name = LPFC_DRIVER_NAME,
5121 .info = lpfc_info,
5122 .queuecommand = lpfc_queuecommand,
5123 .eh_abort_handler = lpfc_abort_handler,
James Smartbbb9d182009-06-10 17:23:16 -04005124 .eh_device_reset_handler = lpfc_device_reset_handler,
5125 .eh_target_reset_handler = lpfc_target_reset_handler,
James Smart3de2a652007-08-02 11:09:59 -04005126 .eh_bus_reset_handler = lpfc_bus_reset_handler,
5127 .slave_alloc = lpfc_slave_alloc,
5128 .slave_configure = lpfc_slave_configure,
5129 .slave_destroy = lpfc_slave_destroy,
5130 .scan_finished = lpfc_scan_finished,
5131 .this_id = -1,
James Smart83108bd2008-01-11 01:53:09 -05005132 .sg_tablesize = LPFC_DEFAULT_SG_SEG_CNT,
James Smart3de2a652007-08-02 11:09:59 -04005133 .cmd_per_lun = LPFC_CMD_PER_LUN,
5134 .use_clustering = ENABLE_CLUSTERING,
5135 .shost_attrs = lpfc_vport_attrs,
5136 .max_sectors = 0xFFFF,
James Smart5ffc2662009-11-18 15:39:44 -05005137 .change_queue_depth = lpfc_change_queue_depth,
James Smart3de2a652007-08-02 11:09:59 -04005138};