blob: 4bc43d8eeb9e8d30e91ad68f925e42b4088a253b [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
2 * linux/drivers/message/fusion/mptscsih.c
3 * For use with LSI PCI chip/adapter(s)
4 * running LSI Fusion MPT (Message Passing Technology) firmware.
5 *
6 * Copyright (c) 1999-2008 LSI Corporation
7 * (mailto:DL-MPTFusionLinux@lsi.com)
8 *
9 */
10/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
11/*
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; version 2 of the License.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 NO WARRANTY
22 THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
23 CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
24 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
25 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
26 solely responsible for determining the appropriateness of using and
27 distributing the Program and assumes all risks associated with its
28 exercise of rights under this Agreement, including but not limited to
29 the risks and costs of program errors, damage to or loss of data,
30 programs or equipment, and unavailability or interruption of operations.
31
32 DISCLAIMER OF LIABILITY
33 NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
34 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
36 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
37 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
38 USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
39 HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
40
41 You should have received a copy of the GNU General Public License
42 along with this program; if not, write to the Free Software
43 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
44*/
45/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
46
47#include <linux/module.h>
48#include <linux/kernel.h>
49#include <linux/slab.h>
50#include <linux/init.h>
51#include <linux/errno.h>
52#include <linux/kdev_t.h>
53#include <linux/blkdev.h>
54#include <linux/delay.h> /* for mdelay */
55#include <linux/interrupt.h> /* needed for in_interrupt() proto */
56#include <linux/reboot.h> /* notifier code */
57#include <linux/workqueue.h>
58
59#include <scsi/scsi.h>
60#include <scsi/scsi_cmnd.h>
61#include <scsi/scsi_device.h>
62#include <scsi/scsi_host.h>
63#include <scsi/scsi_tcq.h>
64#include <scsi/scsi_dbg.h>
65
66#include "mptbase.h"
67#include "mptscsih.h"
68#include "lsi/mpi_log_sas.h"
69
70/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
71#define my_NAME "Fusion MPT SCSI Host driver"
72#define my_VERSION MPT_LINUX_VERSION_COMMON
73#define MYNAM "mptscsih"
74
75MODULE_AUTHOR(MODULEAUTHOR);
76MODULE_DESCRIPTION(my_NAME);
77MODULE_LICENSE("GPL");
78MODULE_VERSION(my_VERSION);
79
80/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
81/*
82 * Other private/forward protos...
83 */
84struct scsi_cmnd *mptscsih_get_scsi_lookup(MPT_ADAPTER *ioc, int i);
85static struct scsi_cmnd * mptscsih_getclear_scsi_lookup(MPT_ADAPTER *ioc, int i);
86static void mptscsih_set_scsi_lookup(MPT_ADAPTER *ioc, int i, struct scsi_cmnd *scmd);
87static int SCPNT_TO_LOOKUP_IDX(MPT_ADAPTER *ioc, struct scsi_cmnd *scmd);
88int mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r);
89static void mptscsih_report_queue_full(struct scsi_cmnd *sc, SCSIIOReply_t *pScsiReply, SCSIIORequest_t *pScsiReq);
90int mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r);
91
92static int mptscsih_AddSGE(MPT_ADAPTER *ioc, struct scsi_cmnd *SCpnt,
93 SCSIIORequest_t *pReq, int req_idx);
94static void mptscsih_freeChainBuffers(MPT_ADAPTER *ioc, int req_idx);
95static void mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SCSIIOReply_t *pScsiReply);
96
97int mptscsih_IssueTaskMgmt(MPT_SCSI_HOST *hd, u8 type, u8 channel, u8 id,
98 u64 lun, int ctx2abort, ulong timeout);
99
100int mptscsih_ioc_reset(MPT_ADAPTER *ioc, int post_reset);
101int mptscsih_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply);
102
103void
104mptscsih_taskmgmt_response_code(MPT_ADAPTER *ioc, u8 response_code);
105static int mptscsih_get_completion_code(MPT_ADAPTER *ioc,
106 MPT_FRAME_HDR *req, MPT_FRAME_HDR *reply);
107int mptscsih_scandv_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r);
108static int mptscsih_do_cmd(MPT_SCSI_HOST *hd, INTERNAL_CMD *iocmd);
109static void mptscsih_synchronize_cache(MPT_SCSI_HOST *hd, VirtDevice *vdevice);
110
111static int
112mptscsih_taskmgmt_reply(MPT_ADAPTER *ioc, u8 type,
113 SCSITaskMgmtReply_t *pScsiTmReply);
114void mptscsih_remove(struct pci_dev *);
115void mptscsih_shutdown(struct pci_dev *);
116#ifdef CONFIG_PM
117int mptscsih_suspend(struct pci_dev *pdev, pm_message_t state);
118int mptscsih_resume(struct pci_dev *pdev);
119#endif
120
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000121
122/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
123/*
124 * mptscsih_getFreeChainBuffer - Function to get a free chain
125 * from the MPT_SCSI_HOST FreeChainQ.
126 * @ioc: Pointer to MPT_ADAPTER structure
127 * @req_idx: Index of the SCSI IO request frame. (output)
128 *
129 * return SUCCESS or FAILED
130 */
131static inline int
132mptscsih_getFreeChainBuffer(MPT_ADAPTER *ioc, int *retIndex)
133{
134 MPT_FRAME_HDR *chainBuf;
135 unsigned long flags;
136 int rc;
137 int chain_idx;
138
139 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT "getFreeChainBuffer called\n",
140 ioc->name));
141 spin_lock_irqsave(&ioc->FreeQlock, flags);
142 if (!list_empty(&ioc->FreeChainQ)) {
143 int offset;
144
145 chainBuf = list_entry(ioc->FreeChainQ.next, MPT_FRAME_HDR,
146 u.frame.linkage.list);
147 list_del(&chainBuf->u.frame.linkage.list);
148 offset = (u8 *)chainBuf - (u8 *)ioc->ChainBuffer;
149 chain_idx = offset / ioc->req_sz;
150 rc = SUCCESS;
151 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT
152 "getFreeChainBuffer chainBuf=%p ChainBuffer=%p offset=%d chain_idx=%d\n",
153 ioc->name, chainBuf, ioc->ChainBuffer, offset, chain_idx));
154 } else {
155 rc = FAILED;
156 chain_idx = MPT_HOST_NO_CHAIN;
157 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT "getFreeChainBuffer failed\n",
158 ioc->name));
159 }
160 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
161
162 *retIndex = chain_idx;
163 return rc;
164} /* mptscsih_getFreeChainBuffer() */
165
166/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
167/*
168 * mptscsih_AddSGE - Add a SGE (plus chain buffers) to the
169 * SCSIIORequest_t Message Frame.
170 * @ioc: Pointer to MPT_ADAPTER structure
171 * @SCpnt: Pointer to scsi_cmnd structure
172 * @pReq: Pointer to SCSIIORequest_t structure
173 *
174 * Returns ...
175 */
176static int
177mptscsih_AddSGE(MPT_ADAPTER *ioc, struct scsi_cmnd *SCpnt,
178 SCSIIORequest_t *pReq, int req_idx)
179{
180 char *psge;
181 char *chainSge;
182 struct scatterlist *sg;
183 int frm_sz;
184 int sges_left, sg_done;
185 int chain_idx = MPT_HOST_NO_CHAIN;
186 int sgeOffset;
187 int numSgeSlots, numSgeThisFrame;
188 u32 sgflags, sgdir, thisxfer = 0;
189 int chain_dma_off = 0;
190 int newIndex;
191 int ii;
192 dma_addr_t v2;
193 u32 RequestNB;
194
195 sgdir = le32_to_cpu(pReq->Control) & MPI_SCSIIO_CONTROL_DATADIRECTION_MASK;
196 if (sgdir == MPI_SCSIIO_CONTROL_WRITE) {
197 sgdir = MPT_TRANSFER_HOST_TO_IOC;
198 } else {
199 sgdir = MPT_TRANSFER_IOC_TO_HOST;
200 }
201
202 psge = (char *) &pReq->SGL;
203 frm_sz = ioc->req_sz;
204
205 /* Map the data portion, if any.
206 * sges_left = 0 if no data transfer.
207 */
208 sges_left = scsi_dma_map(SCpnt);
209 if (sges_left < 0)
210 return FAILED;
211
212 /* Handle the SG case.
213 */
214 sg = scsi_sglist(SCpnt);
215 sg_done = 0;
216 sgeOffset = sizeof(SCSIIORequest_t) - sizeof(SGE_IO_UNION);
217 chainSge = NULL;
218
219 /* Prior to entering this loop - the following must be set
220 * current MF: sgeOffset (bytes)
221 * chainSge (Null if original MF is not a chain buffer)
222 * sg_done (num SGE done for this MF)
223 */
224
225nextSGEset:
226 numSgeSlots = ((frm_sz - sgeOffset) / ioc->SGE_size);
227 numSgeThisFrame = (sges_left < numSgeSlots) ? sges_left : numSgeSlots;
228
229 sgflags = MPT_SGE_FLAGS_SIMPLE_ELEMENT | sgdir;
230
231 /* Get first (num - 1) SG elements
232 * Skip any SG entries with a length of 0
233 * NOTE: at finish, sg and psge pointed to NEXT data/location positions
234 */
235 for (ii=0; ii < (numSgeThisFrame-1); ii++) {
236 thisxfer = sg_dma_len(sg);
237 if (thisxfer == 0) {
238 /* Get next SG element from the OS */
239 sg = sg_next(sg);
240 sg_done++;
241 continue;
242 }
243
244 v2 = sg_dma_address(sg);
245 ioc->add_sge(psge, sgflags | thisxfer, v2);
246
247 /* Get next SG element from the OS */
248 sg = sg_next(sg);
249 psge += ioc->SGE_size;
250 sgeOffset += ioc->SGE_size;
251 sg_done++;
252 }
253
254 if (numSgeThisFrame == sges_left) {
255 /* Add last element, end of buffer and end of list flags.
256 */
257 sgflags |= MPT_SGE_FLAGS_LAST_ELEMENT |
258 MPT_SGE_FLAGS_END_OF_BUFFER |
259 MPT_SGE_FLAGS_END_OF_LIST;
260
261 /* Add last SGE and set termination flags.
262 * Note: Last SGE may have a length of 0 - which should be ok.
263 */
264 thisxfer = sg_dma_len(sg);
265
266 v2 = sg_dma_address(sg);
267 ioc->add_sge(psge, sgflags | thisxfer, v2);
268 sgeOffset += ioc->SGE_size;
269 sg_done++;
270
271 if (chainSge) {
272 /* The current buffer is a chain buffer,
273 * but there is not another one.
274 * Update the chain element
275 * Offset and Length fields.
276 */
277 ioc->add_chain((char *)chainSge, 0, sgeOffset,
278 ioc->ChainBufferDMA + chain_dma_off);
279 } else {
280 /* The current buffer is the original MF
281 * and there is no Chain buffer.
282 */
283 pReq->ChainOffset = 0;
284 RequestNB = (((sgeOffset - 1) >> ioc->NBShiftFactor) + 1) & 0x03;
285 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT
286 "Single Buffer RequestNB=%x, sgeOffset=%d\n", ioc->name, RequestNB, sgeOffset));
287 ioc->RequestNB[req_idx] = RequestNB;
288 }
289 } else {
290 /* At least one chain buffer is needed.
291 * Complete the first MF
292 * - last SGE element, set the LastElement bit
293 * - set ChainOffset (words) for orig MF
294 * (OR finish previous MF chain buffer)
295 * - update MFStructPtr ChainIndex
296 * - Populate chain element
297 * Also
298 * Loop until done.
299 */
300
301 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT "SG: Chain Required! sg done %d\n",
302 ioc->name, sg_done));
303
304 /* Set LAST_ELEMENT flag for last non-chain element
305 * in the buffer. Since psge points at the NEXT
306 * SGE element, go back one SGE element, update the flags
307 * and reset the pointer. (Note: sgflags & thisxfer are already
308 * set properly).
309 */
310 if (sg_done) {
311 u32 *ptmp = (u32 *) (psge - ioc->SGE_size);
312 sgflags = le32_to_cpu(*ptmp);
313 sgflags |= MPT_SGE_FLAGS_LAST_ELEMENT;
314 *ptmp = cpu_to_le32(sgflags);
315 }
316
317 if (chainSge) {
318 /* The current buffer is a chain buffer.
319 * chainSge points to the previous Chain Element.
320 * Update its chain element Offset and Length (must
321 * include chain element size) fields.
322 * Old chain element is now complete.
323 */
324 u8 nextChain = (u8) (sgeOffset >> 2);
325 sgeOffset += ioc->SGE_size;
326 ioc->add_chain((char *)chainSge, nextChain, sgeOffset,
327 ioc->ChainBufferDMA + chain_dma_off);
328 } else {
329 /* The original MF buffer requires a chain buffer -
330 * set the offset.
331 * Last element in this MF is a chain element.
332 */
333 pReq->ChainOffset = (u8) (sgeOffset >> 2);
334 RequestNB = (((sgeOffset - 1) >> ioc->NBShiftFactor) + 1) & 0x03;
335 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Chain Buffer Needed, RequestNB=%x sgeOffset=%d\n", ioc->name, RequestNB, sgeOffset));
336 ioc->RequestNB[req_idx] = RequestNB;
337 }
338
339 sges_left -= sg_done;
340
341
342 /* NOTE: psge points to the beginning of the chain element
343 * in current buffer. Get a chain buffer.
344 */
345 if ((mptscsih_getFreeChainBuffer(ioc, &newIndex)) == FAILED) {
346 dfailprintk(ioc, printk(MYIOC_s_DEBUG_FMT
347 "getFreeChainBuffer FAILED SCSI cmd=%02x (%p)\n",
348 ioc->name, pReq->CDB[0], SCpnt));
349 return FAILED;
350 }
351
352 /* Update the tracking arrays.
353 * If chainSge == NULL, update ReqToChain, else ChainToChain
354 */
355 if (chainSge) {
356 ioc->ChainToChain[chain_idx] = newIndex;
357 } else {
358 ioc->ReqToChain[req_idx] = newIndex;
359 }
360 chain_idx = newIndex;
361 chain_dma_off = ioc->req_sz * chain_idx;
362
363 /* Populate the chainSGE for the current buffer.
364 * - Set chain buffer pointer to psge and fill
365 * out the Address and Flags fields.
366 */
367 chainSge = (char *) psge;
368 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT " Current buff @ %p (index 0x%x)",
369 ioc->name, psge, req_idx));
370
371 /* Start the SGE for the next buffer
372 */
373 psge = (char *) (ioc->ChainBuffer + chain_dma_off);
374 sgeOffset = 0;
375 sg_done = 0;
376
377 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT " Chain buff @ %p (index 0x%x)\n",
378 ioc->name, psge, chain_idx));
379
380 /* Start the SGE for the next buffer
381 */
382
383 goto nextSGEset;
384 }
385
386 return SUCCESS;
387} /* mptscsih_AddSGE() */
388
389static void
390mptscsih_issue_sep_command(MPT_ADAPTER *ioc, VirtTarget *vtarget,
391 U32 SlotStatus)
392{
393 MPT_FRAME_HDR *mf;
394 SEPRequest_t *SEPMsg;
395
396 if (ioc->bus_type != SAS)
397 return;
398
399 /* Not supported for hidden raid components
400 */
401 if (vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT)
402 return;
403
404 if ((mf = mpt_get_msg_frame(ioc->InternalCtx, ioc)) == NULL) {
405 dfailprintk(ioc, printk(MYIOC_s_WARN_FMT "%s: no msg frames!!\n",
406 ioc->name,__func__));
407 return;
408 }
409
410 SEPMsg = (SEPRequest_t *)mf;
411 SEPMsg->Function = MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR;
412 SEPMsg->Bus = vtarget->channel;
413 SEPMsg->TargetID = vtarget->id;
414 SEPMsg->Action = MPI_SEP_REQ_ACTION_WRITE_STATUS;
415 SEPMsg->SlotStatus = SlotStatus;
416 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
417 "Sending SEP cmd=%x channel=%d id=%d\n",
418 ioc->name, SlotStatus, SEPMsg->Bus, SEPMsg->TargetID));
419 mpt_put_msg_frame(ioc->DoneCtx, ioc, mf);
420}
421
422#ifdef CONFIG_FUSION_LOGGING
423/**
424 * mptscsih_info_scsiio - debug print info on reply frame
425 * @ioc: Pointer to MPT_ADAPTER structure
426 * @sc: original scsi cmnd pointer
427 * @pScsiReply: Pointer to MPT reply frame
428 *
429 * MPT_DEBUG_REPLY needs to be enabled to obtain this info
430 *
431 * Refer to lsi/mpi.h.
432 **/
433static void
434mptscsih_info_scsiio(MPT_ADAPTER *ioc, struct scsi_cmnd *sc, SCSIIOReply_t * pScsiReply)
435{
436 char *desc = NULL;
437 char *desc1 = NULL;
438 u16 ioc_status;
439 u8 skey, asc, ascq;
440
441 ioc_status = le16_to_cpu(pScsiReply->IOCStatus) & MPI_IOCSTATUS_MASK;
442
443 switch (ioc_status) {
444
445 case MPI_IOCSTATUS_SUCCESS:
446 desc = "success";
447 break;
448 case MPI_IOCSTATUS_SCSI_INVALID_BUS:
449 desc = "invalid bus";
450 break;
451 case MPI_IOCSTATUS_SCSI_INVALID_TARGETID:
452 desc = "invalid target_id";
453 break;
454 case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
455 desc = "device not there";
456 break;
457 case MPI_IOCSTATUS_SCSI_DATA_OVERRUN:
458 desc = "data overrun";
459 break;
460 case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN:
461 desc = "data underrun";
462 break;
463 case MPI_IOCSTATUS_SCSI_IO_DATA_ERROR:
464 desc = "I/O data error";
465 break;
466 case MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR:
467 desc = "protocol error";
468 break;
469 case MPI_IOCSTATUS_SCSI_TASK_TERMINATED:
470 desc = "task terminated";
471 break;
472 case MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
473 desc = "residual mismatch";
474 break;
475 case MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
476 desc = "task management failed";
477 break;
478 case MPI_IOCSTATUS_SCSI_IOC_TERMINATED:
479 desc = "IOC terminated";
480 break;
481 case MPI_IOCSTATUS_SCSI_EXT_TERMINATED:
482 desc = "ext terminated";
483 break;
484 default:
485 desc = "";
486 break;
487 }
488
489 switch (pScsiReply->SCSIStatus)
490 {
491
492 case MPI_SCSI_STATUS_SUCCESS:
493 desc1 = "success";
494 break;
495 case MPI_SCSI_STATUS_CHECK_CONDITION:
496 desc1 = "check condition";
497 break;
498 case MPI_SCSI_STATUS_CONDITION_MET:
499 desc1 = "condition met";
500 break;
501 case MPI_SCSI_STATUS_BUSY:
502 desc1 = "busy";
503 break;
504 case MPI_SCSI_STATUS_INTERMEDIATE:
505 desc1 = "intermediate";
506 break;
507 case MPI_SCSI_STATUS_INTERMEDIATE_CONDMET:
508 desc1 = "intermediate condmet";
509 break;
510 case MPI_SCSI_STATUS_RESERVATION_CONFLICT:
511 desc1 = "reservation conflict";
512 break;
513 case MPI_SCSI_STATUS_COMMAND_TERMINATED:
514 desc1 = "command terminated";
515 break;
516 case MPI_SCSI_STATUS_TASK_SET_FULL:
517 desc1 = "task set full";
518 break;
519 case MPI_SCSI_STATUS_ACA_ACTIVE:
520 desc1 = "aca active";
521 break;
522 case MPI_SCSI_STATUS_FCPEXT_DEVICE_LOGGED_OUT:
523 desc1 = "fcpext device logged out";
524 break;
525 case MPI_SCSI_STATUS_FCPEXT_NO_LINK:
526 desc1 = "fcpext no link";
527 break;
528 case MPI_SCSI_STATUS_FCPEXT_UNASSIGNED:
529 desc1 = "fcpext unassigned";
530 break;
531 default:
532 desc1 = "";
533 break;
534 }
535
536 scsi_print_command(sc);
537 printk(MYIOC_s_DEBUG_FMT "\tfw_channel = %d, fw_id = %d, lun = %llu\n",
538 ioc->name, pScsiReply->Bus, pScsiReply->TargetID, sc->device->lun);
539 printk(MYIOC_s_DEBUG_FMT "\trequest_len = %d, underflow = %d, "
540 "resid = %d\n", ioc->name, scsi_bufflen(sc), sc->underflow,
541 scsi_get_resid(sc));
542 printk(MYIOC_s_DEBUG_FMT "\ttag = %d, transfer_count = %d, "
543 "sc->result = %08X\n", ioc->name, le16_to_cpu(pScsiReply->TaskTag),
544 le32_to_cpu(pScsiReply->TransferCount), sc->result);
545
546 printk(MYIOC_s_DEBUG_FMT "\tiocstatus = %s (0x%04x), "
547 "scsi_status = %s (0x%02x), scsi_state = (0x%02x)\n",
548 ioc->name, desc, ioc_status, desc1, pScsiReply->SCSIStatus,
549 pScsiReply->SCSIState);
550
551 if (pScsiReply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_VALID) {
552 skey = sc->sense_buffer[2] & 0x0F;
553 asc = sc->sense_buffer[12];
554 ascq = sc->sense_buffer[13];
555
556 printk(MYIOC_s_DEBUG_FMT "\t[sense_key,asc,ascq]: "
557 "[0x%02x,0x%02x,0x%02x]\n", ioc->name, skey, asc, ascq);
558 }
559
560 /*
561 * Look for + dump FCP ResponseInfo[]!
562 */
563 if (pScsiReply->SCSIState & MPI_SCSI_STATE_RESPONSE_INFO_VALID &&
564 pScsiReply->ResponseInfo)
565 printk(MYIOC_s_DEBUG_FMT "response_info = %08xh\n",
566 ioc->name, le32_to_cpu(pScsiReply->ResponseInfo));
567}
568#endif
569
570/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
571/*
572 * mptscsih_io_done - Main SCSI IO callback routine registered to
573 * Fusion MPT (base) driver
574 * @ioc: Pointer to MPT_ADAPTER structure
575 * @mf: Pointer to original MPT request frame
576 * @r: Pointer to MPT reply frame (NULL if TurboReply)
577 *
578 * This routine is called from mpt.c::mpt_interrupt() at the completion
579 * of any SCSI IO request.
580 * This routine is registered with the Fusion MPT (base) driver at driver
581 * load/init time via the mpt_register() API call.
582 *
583 * Returns 1 indicating alloc'd request frame ptr should be freed.
584 */
585int
586mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr)
587{
588 struct scsi_cmnd *sc;
589 MPT_SCSI_HOST *hd;
590 SCSIIORequest_t *pScsiReq;
591 SCSIIOReply_t *pScsiReply;
592 u16 req_idx, req_idx_MR;
593 VirtDevice *vdevice;
594 VirtTarget *vtarget;
595
596 hd = shost_priv(ioc->sh);
597 req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
598 req_idx_MR = (mr != NULL) ?
599 le16_to_cpu(mr->u.frame.hwhdr.msgctxu.fld.req_idx) : req_idx;
600
601 /* Special case, where already freed message frame is received from
602 * Firmware. It happens with Resetting IOC.
603 * Return immediately. Do not care
604 */
605 if ((req_idx != req_idx_MR) ||
606 (le32_to_cpu(mf->u.frame.linkage.arg1) == 0xdeadbeaf))
607 return 0;
608
609 sc = mptscsih_getclear_scsi_lookup(ioc, req_idx);
610 if (sc == NULL) {
611 MPIHeader_t *hdr = (MPIHeader_t *)mf;
612
613 /* Remark: writeSDP1 will use the ScsiDoneCtx
614 * If a SCSI I/O cmd, device disabled by OS and
615 * completion done. Cannot touch sc struct. Just free mem.
616 */
617 if (hdr->Function == MPI_FUNCTION_SCSI_IO_REQUEST)
618 printk(MYIOC_s_ERR_FMT "NULL ScsiCmd ptr!\n",
619 ioc->name);
620
621 mptscsih_freeChainBuffers(ioc, req_idx);
622 return 1;
623 }
624
625 if ((unsigned char *)mf != sc->host_scribble) {
626 mptscsih_freeChainBuffers(ioc, req_idx);
627 return 1;
628 }
629
630 if (ioc->bus_type == SAS) {
631 VirtDevice *vdevice = sc->device->hostdata;
632
633 if (!vdevice || !vdevice->vtarget ||
634 vdevice->vtarget->deleted) {
635 sc->result = DID_NO_CONNECT << 16;
636 goto out;
637 }
638 }
639
640 sc->host_scribble = NULL;
641 sc->result = DID_OK << 16; /* Set default reply as OK */
642 pScsiReq = (SCSIIORequest_t *) mf;
643 pScsiReply = (SCSIIOReply_t *) mr;
644
645 if((ioc->facts.MsgVersion >= MPI_VERSION_01_05) && pScsiReply){
646 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT
647 "ScsiDone (mf=%p,mr=%p,sc=%p,idx=%d,task-tag=%d)\n",
648 ioc->name, mf, mr, sc, req_idx, pScsiReply->TaskTag));
649 }else{
650 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT
651 "ScsiDone (mf=%p,mr=%p,sc=%p,idx=%d)\n",
652 ioc->name, mf, mr, sc, req_idx));
653 }
654
655 if (pScsiReply == NULL) {
656 /* special context reply handling */
657 ;
658 } else {
659 u32 xfer_cnt;
660 u16 status;
661 u8 scsi_state, scsi_status;
662 u32 log_info;
663
664 status = le16_to_cpu(pScsiReply->IOCStatus) & MPI_IOCSTATUS_MASK;
665
666 scsi_state = pScsiReply->SCSIState;
667 scsi_status = pScsiReply->SCSIStatus;
668 xfer_cnt = le32_to_cpu(pScsiReply->TransferCount);
669 scsi_set_resid(sc, scsi_bufflen(sc) - xfer_cnt);
670 log_info = le32_to_cpu(pScsiReply->IOCLogInfo);
671
672 /*
673 * if we get a data underrun indication, yet no data was
674 * transferred and the SCSI status indicates that the
675 * command was never started, change the data underrun
676 * to success
677 */
678 if (status == MPI_IOCSTATUS_SCSI_DATA_UNDERRUN && xfer_cnt == 0 &&
679 (scsi_status == MPI_SCSI_STATUS_BUSY ||
680 scsi_status == MPI_SCSI_STATUS_RESERVATION_CONFLICT ||
681 scsi_status == MPI_SCSI_STATUS_TASK_SET_FULL)) {
682 status = MPI_IOCSTATUS_SUCCESS;
683 }
684
685 if (scsi_state & MPI_SCSI_STATE_AUTOSENSE_VALID)
686 mptscsih_copy_sense_data(sc, hd, mf, pScsiReply);
687
688 /*
689 * Look for + dump FCP ResponseInfo[]!
690 */
691 if (scsi_state & MPI_SCSI_STATE_RESPONSE_INFO_VALID &&
692 pScsiReply->ResponseInfo) {
693 printk(MYIOC_s_NOTE_FMT "[%d:%d:%d:%llu] "
694 "FCP_ResponseInfo=%08xh\n", ioc->name,
695 sc->device->host->host_no, sc->device->channel,
696 sc->device->id, sc->device->lun,
697 le32_to_cpu(pScsiReply->ResponseInfo));
698 }
699
700 switch(status) {
701 case MPI_IOCSTATUS_BUSY: /* 0x0002 */
702 case MPI_IOCSTATUS_INSUFFICIENT_RESOURCES: /* 0x0006 */
703 /* CHECKME!
704 * Maybe: DRIVER_BUSY | SUGGEST_RETRY | DID_SOFT_ERROR (retry)
705 * But not: DID_BUS_BUSY lest one risk
706 * killing interrupt handler:-(
707 */
708 sc->result = SAM_STAT_BUSY;
709 break;
710
711 case MPI_IOCSTATUS_SCSI_INVALID_BUS: /* 0x0041 */
712 case MPI_IOCSTATUS_SCSI_INVALID_TARGETID: /* 0x0042 */
713 sc->result = DID_BAD_TARGET << 16;
714 break;
715
716 case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE: /* 0x0043 */
717 /* Spoof to SCSI Selection Timeout! */
718 if (ioc->bus_type != FC)
719 sc->result = DID_NO_CONNECT << 16;
720 /* else fibre, just stall until rescan event */
721 else
722 sc->result = DID_REQUEUE << 16;
723
724 if (hd->sel_timeout[pScsiReq->TargetID] < 0xFFFF)
725 hd->sel_timeout[pScsiReq->TargetID]++;
726
727 vdevice = sc->device->hostdata;
728 if (!vdevice)
729 break;
730 vtarget = vdevice->vtarget;
731 if (vtarget->tflags & MPT_TARGET_FLAGS_LED_ON) {
732 mptscsih_issue_sep_command(ioc, vtarget,
733 MPI_SEP_REQ_SLOTSTATUS_UNCONFIGURED);
734 vtarget->tflags &= ~MPT_TARGET_FLAGS_LED_ON;
735 }
736 break;
737
738 case MPI_IOCSTATUS_SCSI_IOC_TERMINATED: /* 0x004B */
739 if ( ioc->bus_type == SAS ) {
740 u16 ioc_status =
741 le16_to_cpu(pScsiReply->IOCStatus);
742 if ((ioc_status &
743 MPI_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE)
744 &&
745 ((log_info & SAS_LOGINFO_MASK) ==
746 SAS_LOGINFO_NEXUS_LOSS)) {
747 VirtDevice *vdevice =
748 sc->device->hostdata;
749
750 /* flag the device as being in
751 * device removal delay so we can
752 * notify the midlayer to hold off
753 * on timeout eh */
754 if (vdevice && vdevice->
755 vtarget &&
756 vdevice->vtarget->
757 raidVolume)
758 printk(KERN_INFO
759 "Skipping Raid Volume"
760 "for inDMD\n");
761 else if (vdevice &&
762 vdevice->vtarget)
763 vdevice->vtarget->
764 inDMD = 1;
765
766 sc->result =
767 (DID_TRANSPORT_DISRUPTED
768 << 16);
769 break;
770 }
771 } else if (ioc->bus_type == FC) {
772 /*
773 * The FC IOC may kill a request for variety of
774 * reasons, some of which may be recovered by a
775 * retry, some which are unlikely to be
776 * recovered. Return DID_ERROR instead of
777 * DID_RESET to permit retry of the command,
778 * just not an infinite number of them
779 */
780 sc->result = DID_ERROR << 16;
781 break;
782 }
783
784 /*
785 * Allow non-SAS & non-NEXUS_LOSS to drop into below code
786 */
David Brazdil0f672f62019-12-10 10:32:29 +0000787 /* Fall through */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000788
789 case MPI_IOCSTATUS_SCSI_TASK_TERMINATED: /* 0x0048 */
790 /* Linux handles an unsolicited DID_RESET better
791 * than an unsolicited DID_ABORT.
792 */
793 sc->result = DID_RESET << 16;
794 break;
795
796 case MPI_IOCSTATUS_SCSI_EXT_TERMINATED: /* 0x004C */
797 if (ioc->bus_type == FC)
798 sc->result = DID_ERROR << 16;
799 else
800 sc->result = DID_RESET << 16;
801 break;
802
803 case MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH: /* 0x0049 */
804 scsi_set_resid(sc, scsi_bufflen(sc) - xfer_cnt);
805 if((xfer_cnt==0)||(sc->underflow > xfer_cnt))
806 sc->result=DID_SOFT_ERROR << 16;
807 else /* Sufficient data transfer occurred */
808 sc->result = (DID_OK << 16) | scsi_status;
809 dreplyprintk(ioc, printk(MYIOC_s_DEBUG_FMT
810 "RESIDUAL_MISMATCH: result=%x on channel=%d id=%d\n",
811 ioc->name, sc->result, sc->device->channel, sc->device->id));
812 break;
813
814 case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN: /* 0x0045 */
815 /*
816 * Do upfront check for valid SenseData and give it
817 * precedence!
818 */
819 sc->result = (DID_OK << 16) | scsi_status;
820 if (!(scsi_state & MPI_SCSI_STATE_AUTOSENSE_VALID)) {
821
822 /*
823 * For an Errata on LSI53C1030
824 * When the length of request data
825 * and transfer data are different
826 * with result of command (READ or VERIFY),
827 * DID_SOFT_ERROR is set.
828 */
829 if (ioc->bus_type == SPI) {
830 if ((pScsiReq->CDB[0] == READ_6 && ((pScsiReq->CDB[1] & 0x02) == 0)) ||
831 pScsiReq->CDB[0] == READ_10 ||
832 pScsiReq->CDB[0] == READ_12 ||
833 (pScsiReq->CDB[0] == READ_16 &&
834 ((pScsiReq->CDB[1] & 0x02) == 0)) ||
835 pScsiReq->CDB[0] == VERIFY ||
836 pScsiReq->CDB[0] == VERIFY_16) {
837 if (scsi_bufflen(sc) !=
838 xfer_cnt) {
839 sc->result =
840 DID_SOFT_ERROR << 16;
841 printk(KERN_WARNING "Errata"
842 "on LSI53C1030 occurred."
843 "sc->req_bufflen=0x%02x,"
844 "xfer_cnt=0x%02x\n",
845 scsi_bufflen(sc),
846 xfer_cnt);
847 }
848 }
849 }
850
851 if (xfer_cnt < sc->underflow) {
852 if (scsi_status == SAM_STAT_BUSY)
853 sc->result = SAM_STAT_BUSY;
854 else
855 sc->result = DID_SOFT_ERROR << 16;
856 }
857 if (scsi_state & (MPI_SCSI_STATE_AUTOSENSE_FAILED | MPI_SCSI_STATE_NO_SCSI_STATUS)) {
858 /* What to do?
859 */
860 sc->result = DID_SOFT_ERROR << 16;
861 }
862 else if (scsi_state & MPI_SCSI_STATE_TERMINATED) {
863 /* Not real sure here either... */
864 sc->result = DID_RESET << 16;
865 }
866 }
867
868
869 dreplyprintk(ioc, printk(MYIOC_s_DEBUG_FMT
870 " sc->underflow={report ERR if < %02xh bytes xfer'd}\n",
871 ioc->name, sc->underflow));
872 dreplyprintk(ioc, printk(MYIOC_s_DEBUG_FMT
873 " ActBytesXferd=%02xh\n", ioc->name, xfer_cnt));
874
875 /* Report Queue Full
876 */
877 if (scsi_status == MPI_SCSI_STATUS_TASK_SET_FULL)
878 mptscsih_report_queue_full(sc, pScsiReply, pScsiReq);
879
880 break;
881
882 case MPI_IOCSTATUS_SCSI_DATA_OVERRUN: /* 0x0044 */
883 scsi_set_resid(sc, 0);
David Brazdil0f672f62019-12-10 10:32:29 +0000884 /* Fall through */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000885 case MPI_IOCSTATUS_SCSI_RECOVERED_ERROR: /* 0x0040 */
886 case MPI_IOCSTATUS_SUCCESS: /* 0x0000 */
887 sc->result = (DID_OK << 16) | scsi_status;
888 if (scsi_state == 0) {
889 ;
890 } else if (scsi_state &
891 MPI_SCSI_STATE_AUTOSENSE_VALID) {
892
893 /*
894 * For potential trouble on LSI53C1030.
895 * (date:2007.xx.)
896 * It is checked whether the length of
897 * request data is equal to
898 * the length of transfer and residual.
899 * MEDIUM_ERROR is set by incorrect data.
900 */
901 if ((ioc->bus_type == SPI) &&
902 (sc->sense_buffer[2] & 0x20)) {
903 u32 difftransfer;
904 difftransfer =
905 sc->sense_buffer[3] << 24 |
906 sc->sense_buffer[4] << 16 |
907 sc->sense_buffer[5] << 8 |
908 sc->sense_buffer[6];
909 if (((sc->sense_buffer[3] & 0x80) ==
910 0x80) && (scsi_bufflen(sc)
911 != xfer_cnt)) {
912 sc->sense_buffer[2] =
913 MEDIUM_ERROR;
914 sc->sense_buffer[12] = 0xff;
915 sc->sense_buffer[13] = 0xff;
916 printk(KERN_WARNING"Errata"
917 "on LSI53C1030 occurred."
918 "sc->req_bufflen=0x%02x,"
919 "xfer_cnt=0x%02x\n" ,
920 scsi_bufflen(sc),
921 xfer_cnt);
922 }
923 if (((sc->sense_buffer[3] & 0x80)
924 != 0x80) &&
925 (scsi_bufflen(sc) !=
926 xfer_cnt + difftransfer)) {
927 sc->sense_buffer[2] =
928 MEDIUM_ERROR;
929 sc->sense_buffer[12] = 0xff;
930 sc->sense_buffer[13] = 0xff;
931 printk(KERN_WARNING
932 "Errata on LSI53C1030 occurred"
933 "sc->req_bufflen=0x%02x,"
934 " xfer_cnt=0x%02x,"
935 "difftransfer=0x%02x\n",
936 scsi_bufflen(sc),
937 xfer_cnt,
938 difftransfer);
939 }
940 }
941
942 /*
943 * If running against circa 200003dd 909 MPT f/w,
944 * may get this (AUTOSENSE_VALID) for actual TASK_SET_FULL
945 * (QUEUE_FULL) returned from device! --> get 0x0000?128
946 * and with SenseBytes set to 0.
947 */
948 if (pScsiReply->SCSIStatus == MPI_SCSI_STATUS_TASK_SET_FULL)
949 mptscsih_report_queue_full(sc, pScsiReply, pScsiReq);
950
951 }
952 else if (scsi_state &
953 (MPI_SCSI_STATE_AUTOSENSE_FAILED | MPI_SCSI_STATE_NO_SCSI_STATUS)
954 ) {
955 /*
956 * What to do?
957 */
958 sc->result = DID_SOFT_ERROR << 16;
959 }
960 else if (scsi_state & MPI_SCSI_STATE_TERMINATED) {
961 /* Not real sure here either... */
962 sc->result = DID_RESET << 16;
963 }
964 else if (scsi_state & MPI_SCSI_STATE_QUEUE_TAG_REJECTED) {
965 /* Device Inq. data indicates that it supports
966 * QTags, but rejects QTag messages.
967 * This command completed OK.
968 *
969 * Not real sure here either so do nothing... */
970 }
971
972 if (sc->result == MPI_SCSI_STATUS_TASK_SET_FULL)
973 mptscsih_report_queue_full(sc, pScsiReply, pScsiReq);
974
975 /* Add handling of:
976 * Reservation Conflict, Busy,
977 * Command Terminated, CHECK
978 */
979 break;
980
981 case MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR: /* 0x0047 */
982 sc->result = DID_SOFT_ERROR << 16;
983 break;
984
985 case MPI_IOCSTATUS_INVALID_FUNCTION: /* 0x0001 */
986 case MPI_IOCSTATUS_INVALID_SGL: /* 0x0003 */
987 case MPI_IOCSTATUS_INTERNAL_ERROR: /* 0x0004 */
988 case MPI_IOCSTATUS_RESERVED: /* 0x0005 */
989 case MPI_IOCSTATUS_INVALID_FIELD: /* 0x0007 */
990 case MPI_IOCSTATUS_INVALID_STATE: /* 0x0008 */
991 case MPI_IOCSTATUS_SCSI_IO_DATA_ERROR: /* 0x0046 */
992 case MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED: /* 0x004A */
993 default:
994 /*
995 * What to do?
996 */
997 sc->result = DID_SOFT_ERROR << 16;
998 break;
999
1000 } /* switch(status) */
1001
1002#ifdef CONFIG_FUSION_LOGGING
1003 if (sc->result && (ioc->debug_level & MPT_DEBUG_REPLY))
1004 mptscsih_info_scsiio(ioc, sc, pScsiReply);
1005#endif
1006
1007 } /* end of address reply case */
1008out:
1009 /* Unmap the DMA buffers, if any. */
1010 scsi_dma_unmap(sc);
1011
1012 sc->scsi_done(sc); /* Issue the command callback */
1013
1014 /* Free Chain buffers */
1015 mptscsih_freeChainBuffers(ioc, req_idx);
1016 return 1;
1017}
1018
1019/*
1020 * mptscsih_flush_running_cmds - For each command found, search
1021 * Scsi_Host instance taskQ and reply to OS.
1022 * Called only if recovering from a FW reload.
1023 * @hd: Pointer to a SCSI HOST structure
1024 *
1025 * Returns: None.
1026 *
1027 * Must be called while new I/Os are being queued.
1028 */
1029void
1030mptscsih_flush_running_cmds(MPT_SCSI_HOST *hd)
1031{
1032 MPT_ADAPTER *ioc = hd->ioc;
1033 struct scsi_cmnd *sc;
1034 SCSIIORequest_t *mf = NULL;
1035 int ii;
1036 int channel, id;
1037
1038 for (ii= 0; ii < ioc->req_depth; ii++) {
1039 sc = mptscsih_getclear_scsi_lookup(ioc, ii);
1040 if (!sc)
1041 continue;
1042 mf = (SCSIIORequest_t *)MPT_INDEX_2_MFPTR(ioc, ii);
1043 if (!mf)
1044 continue;
1045 channel = mf->Bus;
1046 id = mf->TargetID;
1047 mptscsih_freeChainBuffers(ioc, ii);
1048 mpt_free_msg_frame(ioc, (MPT_FRAME_HDR *)mf);
1049 if ((unsigned char *)mf != sc->host_scribble)
1050 continue;
1051 scsi_dma_unmap(sc);
1052 sc->result = DID_RESET << 16;
1053 sc->host_scribble = NULL;
1054 dtmprintk(ioc, sdev_printk(KERN_INFO, sc->device, MYIOC_s_FMT
1055 "completing cmds: fw_channel %d, fw_id %d, sc=%p, mf = %p, "
1056 "idx=%x\n", ioc->name, channel, id, sc, mf, ii));
1057 sc->scsi_done(sc);
1058 }
1059}
1060EXPORT_SYMBOL(mptscsih_flush_running_cmds);
1061
1062/*
1063 * mptscsih_search_running_cmds - Delete any commands associated
1064 * with the specified target and lun. Function called only
1065 * when a lun is disable by mid-layer.
1066 * Do NOT access the referenced scsi_cmnd structure or
1067 * members. Will cause either a paging or NULL ptr error.
1068 * (BUT, BUT, BUT, the code does reference it! - mdr)
1069 * @hd: Pointer to a SCSI HOST structure
1070 * @vdevice: per device private data
1071 *
1072 * Returns: None.
1073 *
1074 * Called from slave_destroy.
1075 */
1076static void
1077mptscsih_search_running_cmds(MPT_SCSI_HOST *hd, VirtDevice *vdevice)
1078{
1079 SCSIIORequest_t *mf = NULL;
1080 int ii;
1081 struct scsi_cmnd *sc;
1082 struct scsi_lun lun;
1083 MPT_ADAPTER *ioc = hd->ioc;
1084 unsigned long flags;
1085
1086 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1087 for (ii = 0; ii < ioc->req_depth; ii++) {
1088 if ((sc = ioc->ScsiLookup[ii]) != NULL) {
1089
1090 mf = (SCSIIORequest_t *)MPT_INDEX_2_MFPTR(ioc, ii);
1091 if (mf == NULL)
1092 continue;
1093 /* If the device is a hidden raid component, then its
1094 * expected that the mf->function will be RAID_SCSI_IO
1095 */
1096 if (vdevice->vtarget->tflags &
1097 MPT_TARGET_FLAGS_RAID_COMPONENT && mf->Function !=
1098 MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH)
1099 continue;
1100
1101 int_to_scsilun(vdevice->lun, &lun);
1102 if ((mf->Bus != vdevice->vtarget->channel) ||
1103 (mf->TargetID != vdevice->vtarget->id) ||
1104 memcmp(lun.scsi_lun, mf->LUN, 8))
1105 continue;
1106
1107 if ((unsigned char *)mf != sc->host_scribble)
1108 continue;
1109 ioc->ScsiLookup[ii] = NULL;
1110 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1111 mptscsih_freeChainBuffers(ioc, ii);
1112 mpt_free_msg_frame(ioc, (MPT_FRAME_HDR *)mf);
1113 scsi_dma_unmap(sc);
1114 sc->host_scribble = NULL;
1115 sc->result = DID_NO_CONNECT << 16;
1116 dtmprintk(ioc, sdev_printk(KERN_INFO, sc->device,
1117 MYIOC_s_FMT "completing cmds: fw_channel %d, "
1118 "fw_id %d, sc=%p, mf = %p, idx=%x\n", ioc->name,
1119 vdevice->vtarget->channel, vdevice->vtarget->id,
1120 sc, mf, ii));
1121 sc->scsi_done(sc);
1122 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1123 }
1124 }
1125 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1126 return;
1127}
1128
1129/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1130
1131/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1132/*
1133 * mptscsih_report_queue_full - Report QUEUE_FULL status returned
1134 * from a SCSI target device.
1135 * @sc: Pointer to scsi_cmnd structure
1136 * @pScsiReply: Pointer to SCSIIOReply_t
1137 * @pScsiReq: Pointer to original SCSI request
1138 *
1139 * This routine periodically reports QUEUE_FULL status returned from a
1140 * SCSI target device. It reports this to the console via kernel
1141 * printk() API call, not more than once every 10 seconds.
1142 */
1143static void
1144mptscsih_report_queue_full(struct scsi_cmnd *sc, SCSIIOReply_t *pScsiReply, SCSIIORequest_t *pScsiReq)
1145{
1146 long time = jiffies;
1147 MPT_SCSI_HOST *hd;
1148 MPT_ADAPTER *ioc;
1149
1150 if (sc->device == NULL)
1151 return;
1152 if (sc->device->host == NULL)
1153 return;
1154 if ((hd = shost_priv(sc->device->host)) == NULL)
1155 return;
1156 ioc = hd->ioc;
1157 if (time - hd->last_queue_full > 10 * HZ) {
1158 dprintk(ioc, printk(MYIOC_s_WARN_FMT "Device (%d:%d:%llu) reported QUEUE_FULL!\n",
1159 ioc->name, 0, sc->device->id, sc->device->lun));
1160 hd->last_queue_full = time;
1161 }
1162}
1163
1164/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1165/*
1166 * mptscsih_remove - Removed scsi devices
1167 * @pdev: Pointer to pci_dev structure
1168 *
1169 *
1170 */
1171void
1172mptscsih_remove(struct pci_dev *pdev)
1173{
1174 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1175 struct Scsi_Host *host = ioc->sh;
1176 MPT_SCSI_HOST *hd;
1177 int sz1;
1178
Olivier Deprez0e641232021-09-23 10:07:05 +02001179 if (host == NULL)
1180 hd = NULL;
1181 else
1182 hd = shost_priv(host);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001183
1184 mptscsih_shutdown(pdev);
1185
1186 sz1=0;
1187
1188 if (ioc->ScsiLookup != NULL) {
1189 sz1 = ioc->req_depth * sizeof(void *);
1190 kfree(ioc->ScsiLookup);
1191 ioc->ScsiLookup = NULL;
1192 }
1193
1194 dprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1195 "Free'd ScsiLookup (%d) memory\n",
1196 ioc->name, sz1));
1197
Olivier Deprez0e641232021-09-23 10:07:05 +02001198 if (hd)
1199 kfree(hd->info_kbuf);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001200
1201 /* NULL the Scsi_Host pointer
1202 */
1203 ioc->sh = NULL;
1204
Olivier Deprez0e641232021-09-23 10:07:05 +02001205 if (host)
1206 scsi_host_put(host);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001207 mpt_detach(pdev);
1208
1209}
1210
1211/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1212/*
1213 * mptscsih_shutdown - reboot notifier
1214 *
1215 */
1216void
1217mptscsih_shutdown(struct pci_dev *pdev)
1218{
1219}
1220
1221#ifdef CONFIG_PM
1222/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1223/*
1224 * mptscsih_suspend - Fusion MPT scsi driver suspend routine.
1225 *
1226 *
1227 */
1228int
1229mptscsih_suspend(struct pci_dev *pdev, pm_message_t state)
1230{
1231 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1232
1233 scsi_block_requests(ioc->sh);
1234 flush_scheduled_work();
1235 mptscsih_shutdown(pdev);
1236 return mpt_suspend(pdev,state);
1237}
1238
1239/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1240/*
1241 * mptscsih_resume - Fusion MPT scsi driver resume routine.
1242 *
1243 *
1244 */
1245int
1246mptscsih_resume(struct pci_dev *pdev)
1247{
1248 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1249 int rc;
1250
1251 rc = mpt_resume(pdev);
1252 scsi_unblock_requests(ioc->sh);
1253 return rc;
1254}
1255
1256#endif
1257
1258/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1259/**
1260 * mptscsih_info - Return information about MPT adapter
1261 * @SChost: Pointer to Scsi_Host structure
1262 *
1263 * (linux scsi_host_template.info routine)
1264 *
1265 * Returns pointer to buffer where information was written.
1266 */
1267const char *
1268mptscsih_info(struct Scsi_Host *SChost)
1269{
1270 MPT_SCSI_HOST *h;
1271 int size = 0;
1272
1273 h = shost_priv(SChost);
1274
1275 if (h->info_kbuf == NULL)
1276 if ((h->info_kbuf = kmalloc(0x1000 /* 4Kb */, GFP_KERNEL)) == NULL)
1277 return h->info_kbuf;
1278 h->info_kbuf[0] = '\0';
1279
1280 mpt_print_ioc_summary(h->ioc, h->info_kbuf, &size, 0, 0);
1281 h->info_kbuf[size-1] = '\0';
1282
1283 return h->info_kbuf;
1284}
1285
1286int mptscsih_show_info(struct seq_file *m, struct Scsi_Host *host)
1287{
1288 MPT_SCSI_HOST *hd = shost_priv(host);
1289 MPT_ADAPTER *ioc = hd->ioc;
1290
1291 seq_printf(m, "%s: %s, ", ioc->name, ioc->prod_name);
1292 seq_printf(m, "%s%08xh, ", MPT_FW_REV_MAGIC_ID_STRING, ioc->facts.FWVersion.Word);
1293 seq_printf(m, "Ports=%d, ", ioc->facts.NumberOfPorts);
1294 seq_printf(m, "MaxQ=%d\n", ioc->req_depth);
1295
1296 return 0;
1297}
1298
1299/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1300#define ADD_INDEX_LOG(req_ent) do { } while(0)
1301
1302/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1303/**
1304 * mptscsih_qcmd - Primary Fusion MPT SCSI initiator IO start routine.
1305 * @SCpnt: Pointer to scsi_cmnd structure
1306 *
1307 * (linux scsi_host_template.queuecommand routine)
1308 * This is the primary SCSI IO start routine. Create a MPI SCSIIORequest
1309 * from a linux scsi_cmnd request and send it to the IOC.
1310 *
1311 * Returns 0. (rtn value discarded by linux scsi mid-layer)
1312 */
1313int
1314mptscsih_qcmd(struct scsi_cmnd *SCpnt)
1315{
1316 MPT_SCSI_HOST *hd;
1317 MPT_FRAME_HDR *mf;
1318 SCSIIORequest_t *pScsiReq;
1319 VirtDevice *vdevice = SCpnt->device->hostdata;
1320 u32 datalen;
1321 u32 scsictl;
1322 u32 scsidir;
1323 u32 cmd_len;
1324 int my_idx;
1325 int ii;
1326 MPT_ADAPTER *ioc;
1327
1328 hd = shost_priv(SCpnt->device->host);
1329 ioc = hd->ioc;
1330
1331 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT "qcmd: SCpnt=%p\n",
1332 ioc->name, SCpnt));
1333
1334 if (ioc->taskmgmt_quiesce_io)
1335 return SCSI_MLQUEUE_HOST_BUSY;
1336
1337 /*
1338 * Put together a MPT SCSI request...
1339 */
1340 if ((mf = mpt_get_msg_frame(ioc->DoneCtx, ioc)) == NULL) {
1341 dprintk(ioc, printk(MYIOC_s_WARN_FMT "QueueCmd, no msg frames!!\n",
1342 ioc->name));
1343 return SCSI_MLQUEUE_HOST_BUSY;
1344 }
1345
1346 pScsiReq = (SCSIIORequest_t *) mf;
1347
1348 my_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
1349
1350 ADD_INDEX_LOG(my_idx);
1351
1352 /* TUR's being issued with scsictl=0x02000000 (DATA_IN)!
1353 * Seems we may receive a buffer (datalen>0) even when there
1354 * will be no data transfer! GRRRRR...
1355 */
1356 if (SCpnt->sc_data_direction == DMA_FROM_DEVICE) {
1357 datalen = scsi_bufflen(SCpnt);
1358 scsidir = MPI_SCSIIO_CONTROL_READ; /* DATA IN (host<--ioc<--dev) */
1359 } else if (SCpnt->sc_data_direction == DMA_TO_DEVICE) {
1360 datalen = scsi_bufflen(SCpnt);
1361 scsidir = MPI_SCSIIO_CONTROL_WRITE; /* DATA OUT (host-->ioc-->dev) */
1362 } else {
1363 datalen = 0;
1364 scsidir = MPI_SCSIIO_CONTROL_NODATATRANSFER;
1365 }
1366
1367 /* Default to untagged. Once a target structure has been allocated,
1368 * use the Inquiry data to determine if device supports tagged.
1369 */
1370 if ((vdevice->vtarget->tflags & MPT_TARGET_FLAGS_Q_YES) &&
1371 SCpnt->device->tagged_supported)
1372 scsictl = scsidir | MPI_SCSIIO_CONTROL_SIMPLEQ;
1373 else
1374 scsictl = scsidir | MPI_SCSIIO_CONTROL_UNTAGGED;
1375
1376
1377 /* Use the above information to set up the message frame
1378 */
1379 pScsiReq->TargetID = (u8) vdevice->vtarget->id;
1380 pScsiReq->Bus = vdevice->vtarget->channel;
1381 pScsiReq->ChainOffset = 0;
1382 if (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT)
1383 pScsiReq->Function = MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH;
1384 else
1385 pScsiReq->Function = MPI_FUNCTION_SCSI_IO_REQUEST;
1386 pScsiReq->CDBLength = SCpnt->cmd_len;
1387 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
1388 pScsiReq->Reserved = 0;
1389 pScsiReq->MsgFlags = mpt_msg_flags(ioc);
1390 int_to_scsilun(SCpnt->device->lun, (struct scsi_lun *)pScsiReq->LUN);
1391 pScsiReq->Control = cpu_to_le32(scsictl);
1392
1393 /*
1394 * Write SCSI CDB into the message
1395 */
1396 cmd_len = SCpnt->cmd_len;
1397 for (ii=0; ii < cmd_len; ii++)
1398 pScsiReq->CDB[ii] = SCpnt->cmnd[ii];
1399
1400 for (ii=cmd_len; ii < 16; ii++)
1401 pScsiReq->CDB[ii] = 0;
1402
1403 /* DataLength */
1404 pScsiReq->DataLength = cpu_to_le32(datalen);
1405
1406 /* SenseBuffer low address */
1407 pScsiReq->SenseBufferLowAddr = cpu_to_le32(ioc->sense_buf_low_dma
1408 + (my_idx * MPT_SENSE_BUFFER_ALLOC));
1409
1410 /* Now add the SG list
1411 * Always have a SGE even if null length.
1412 */
1413 if (datalen == 0) {
1414 /* Add a NULL SGE */
1415 ioc->add_sge((char *)&pScsiReq->SGL,
1416 MPT_SGE_FLAGS_SSIMPLE_READ | 0,
1417 (dma_addr_t) -1);
1418 } else {
1419 /* Add a 32 or 64 bit SGE */
1420 if (mptscsih_AddSGE(ioc, SCpnt, pScsiReq, my_idx) != SUCCESS)
1421 goto fail;
1422 }
1423
1424 SCpnt->host_scribble = (unsigned char *)mf;
1425 mptscsih_set_scsi_lookup(ioc, my_idx, SCpnt);
1426
1427 mpt_put_msg_frame(ioc->DoneCtx, ioc, mf);
1428 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Issued SCSI cmd (%p) mf=%p idx=%d\n",
1429 ioc->name, SCpnt, mf, my_idx));
1430 DBG_DUMP_REQUEST_FRAME(ioc, (u32 *)mf);
1431 return 0;
1432
1433 fail:
1434 mptscsih_freeChainBuffers(ioc, my_idx);
1435 mpt_free_msg_frame(ioc, mf);
1436 return SCSI_MLQUEUE_HOST_BUSY;
1437}
1438
1439/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1440/*
1441 * mptscsih_freeChainBuffers - Function to free chain buffers associated
1442 * with a SCSI IO request
1443 * @hd: Pointer to the MPT_SCSI_HOST instance
1444 * @req_idx: Index of the SCSI IO request frame.
1445 *
1446 * Called if SG chain buffer allocation fails and mptscsih callbacks.
1447 * No return.
1448 */
1449static void
1450mptscsih_freeChainBuffers(MPT_ADAPTER *ioc, int req_idx)
1451{
1452 MPT_FRAME_HDR *chain;
1453 unsigned long flags;
1454 int chain_idx;
1455 int next;
1456
1457 /* Get the first chain index and reset
1458 * tracker state.
1459 */
1460 chain_idx = ioc->ReqToChain[req_idx];
1461 ioc->ReqToChain[req_idx] = MPT_HOST_NO_CHAIN;
1462
1463 while (chain_idx != MPT_HOST_NO_CHAIN) {
1464
1465 /* Save the next chain buffer index */
1466 next = ioc->ChainToChain[chain_idx];
1467
1468 /* Free this chain buffer and reset
1469 * tracker
1470 */
1471 ioc->ChainToChain[chain_idx] = MPT_HOST_NO_CHAIN;
1472
1473 chain = (MPT_FRAME_HDR *) (ioc->ChainBuffer
1474 + (chain_idx * ioc->req_sz));
1475
1476 spin_lock_irqsave(&ioc->FreeQlock, flags);
1477 list_add_tail(&chain->u.frame.linkage.list, &ioc->FreeChainQ);
1478 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
1479
1480 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT "FreeChainBuffers (index %d)\n",
1481 ioc->name, chain_idx));
1482
1483 /* handle next */
1484 chain_idx = next;
1485 }
1486 return;
1487}
1488
1489/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1490/*
1491 * Reset Handling
1492 */
1493
1494/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1495/**
1496 * mptscsih_IssueTaskMgmt - Generic send Task Management function.
1497 * @hd: Pointer to MPT_SCSI_HOST structure
1498 * @type: Task Management type
1499 * @channel: channel number for task management
1500 * @id: Logical Target ID for reset (if appropriate)
1501 * @lun: Logical Unit for reset (if appropriate)
1502 * @ctx2abort: Context for the task to be aborted (if appropriate)
1503 * @timeout: timeout for task management control
1504 *
1505 * Remark: _HardResetHandler can be invoked from an interrupt thread (timer)
1506 * or a non-interrupt thread. In the former, must not call schedule().
1507 *
1508 * Not all fields are meaningfull for all task types.
1509 *
1510 * Returns 0 for SUCCESS, or FAILED.
1511 *
1512 **/
1513int
1514mptscsih_IssueTaskMgmt(MPT_SCSI_HOST *hd, u8 type, u8 channel, u8 id, u64 lun,
1515 int ctx2abort, ulong timeout)
1516{
1517 MPT_FRAME_HDR *mf;
1518 SCSITaskMgmt_t *pScsiTm;
1519 int ii;
1520 int retval;
1521 MPT_ADAPTER *ioc = hd->ioc;
1522 unsigned long timeleft;
1523 u8 issue_hard_reset;
1524 u32 ioc_raw_state;
1525 unsigned long time_count;
1526
1527 issue_hard_reset = 0;
1528 ioc_raw_state = mpt_GetIocState(ioc, 0);
1529
1530 if ((ioc_raw_state & MPI_IOC_STATE_MASK) != MPI_IOC_STATE_OPERATIONAL) {
1531 printk(MYIOC_s_WARN_FMT
1532 "TaskMgmt type=%x: IOC Not operational (0x%x)!\n",
1533 ioc->name, type, ioc_raw_state);
1534 printk(MYIOC_s_WARN_FMT "Issuing HardReset from %s!!\n",
1535 ioc->name, __func__);
1536 if (mpt_HardResetHandler(ioc, CAN_SLEEP) < 0)
1537 printk(MYIOC_s_WARN_FMT "TaskMgmt HardReset "
1538 "FAILED!!\n", ioc->name);
1539 return 0;
1540 }
1541
1542 /* DOORBELL ACTIVE check is not required if
1543 * MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q is supported.
1544 */
1545
1546 if (!((ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q)
1547 && (ioc->facts.MsgVersion >= MPI_VERSION_01_05)) &&
1548 (ioc_raw_state & MPI_DOORBELL_ACTIVE)) {
1549 printk(MYIOC_s_WARN_FMT
1550 "TaskMgmt type=%x: ioc_state: "
1551 "DOORBELL_ACTIVE (0x%x)!\n",
1552 ioc->name, type, ioc_raw_state);
1553 return FAILED;
1554 }
1555
1556 mutex_lock(&ioc->taskmgmt_cmds.mutex);
1557 if (mpt_set_taskmgmt_in_progress_flag(ioc) != 0) {
1558 mf = NULL;
1559 retval = FAILED;
1560 goto out;
1561 }
1562
1563 /* Return Fail to calling function if no message frames available.
1564 */
1565 if ((mf = mpt_get_msg_frame(ioc->TaskCtx, ioc)) == NULL) {
1566 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT
1567 "TaskMgmt no msg frames!!\n", ioc->name));
1568 retval = FAILED;
1569 mpt_clear_taskmgmt_in_progress_flag(ioc);
1570 goto out;
1571 }
1572 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "TaskMgmt request (mf=%p)\n",
1573 ioc->name, mf));
1574
1575 /* Format the Request
1576 */
1577 pScsiTm = (SCSITaskMgmt_t *) mf;
1578 pScsiTm->TargetID = id;
1579 pScsiTm->Bus = channel;
1580 pScsiTm->ChainOffset = 0;
1581 pScsiTm->Function = MPI_FUNCTION_SCSI_TASK_MGMT;
1582
1583 pScsiTm->Reserved = 0;
1584 pScsiTm->TaskType = type;
1585 pScsiTm->Reserved1 = 0;
1586 pScsiTm->MsgFlags = (type == MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS)
1587 ? MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION : 0;
1588
1589 int_to_scsilun(lun, (struct scsi_lun *)pScsiTm->LUN);
1590
1591 for (ii=0; ii < 7; ii++)
1592 pScsiTm->Reserved2[ii] = 0;
1593
1594 pScsiTm->TaskMsgContext = ctx2abort;
1595
1596 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "TaskMgmt: ctx2abort (0x%08x) "
1597 "task_type = 0x%02X, timeout = %ld\n", ioc->name, ctx2abort,
1598 type, timeout));
1599
1600 DBG_DUMP_TM_REQUEST_FRAME(ioc, (u32 *)pScsiTm);
1601
1602 INITIALIZE_MGMT_STATUS(ioc->taskmgmt_cmds.status)
1603 time_count = jiffies;
1604 if ((ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q) &&
1605 (ioc->facts.MsgVersion >= MPI_VERSION_01_05))
1606 mpt_put_msg_frame_hi_pri(ioc->TaskCtx, ioc, mf);
1607 else {
1608 retval = mpt_send_handshake_request(ioc->TaskCtx, ioc,
1609 sizeof(SCSITaskMgmt_t), (u32*)pScsiTm, CAN_SLEEP);
1610 if (retval) {
1611 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT
1612 "TaskMgmt handshake FAILED!(mf=%p, rc=%d) \n",
1613 ioc->name, mf, retval));
1614 mpt_free_msg_frame(ioc, mf);
1615 mpt_clear_taskmgmt_in_progress_flag(ioc);
1616 goto out;
1617 }
1618 }
1619
1620 timeleft = wait_for_completion_timeout(&ioc->taskmgmt_cmds.done,
1621 timeout*HZ);
1622 if (!(ioc->taskmgmt_cmds.status & MPT_MGMT_STATUS_COMMAND_GOOD)) {
1623 retval = FAILED;
1624 dtmprintk(ioc, printk(MYIOC_s_ERR_FMT
1625 "TaskMgmt TIMED OUT!(mf=%p)\n", ioc->name, mf));
1626 mpt_clear_taskmgmt_in_progress_flag(ioc);
1627 if (ioc->taskmgmt_cmds.status & MPT_MGMT_STATUS_DID_IOCRESET)
1628 goto out;
1629 issue_hard_reset = 1;
1630 goto out;
1631 }
1632
1633 retval = mptscsih_taskmgmt_reply(ioc, type,
1634 (SCSITaskMgmtReply_t *) ioc->taskmgmt_cmds.reply);
1635
1636 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1637 "TaskMgmt completed (%d seconds)\n",
1638 ioc->name, jiffies_to_msecs(jiffies - time_count)/1000));
1639
1640 out:
1641
1642 CLEAR_MGMT_STATUS(ioc->taskmgmt_cmds.status)
1643 if (issue_hard_reset) {
1644 printk(MYIOC_s_WARN_FMT
1645 "Issuing Reset from %s!! doorbell=0x%08x\n",
1646 ioc->name, __func__, mpt_GetIocState(ioc, 0));
1647 retval = (ioc->bus_type == SAS) ?
1648 mpt_HardResetHandler(ioc, CAN_SLEEP) :
1649 mpt_Soft_Hard_ResetHandler(ioc, CAN_SLEEP);
1650 mpt_free_msg_frame(ioc, mf);
1651 }
1652
1653 retval = (retval == 0) ? 0 : FAILED;
1654 mutex_unlock(&ioc->taskmgmt_cmds.mutex);
1655 return retval;
1656}
1657EXPORT_SYMBOL(mptscsih_IssueTaskMgmt);
1658
1659static int
1660mptscsih_get_tm_timeout(MPT_ADAPTER *ioc)
1661{
1662 switch (ioc->bus_type) {
1663 case FC:
1664 return 40;
1665 case SAS:
1666 return 30;
1667 case SPI:
1668 default:
1669 return 10;
1670 }
1671}
1672
1673/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1674/**
1675 * mptscsih_abort - Abort linux scsi_cmnd routine, new_eh variant
1676 * @SCpnt: Pointer to scsi_cmnd structure, IO to be aborted
1677 *
1678 * (linux scsi_host_template.eh_abort_handler routine)
1679 *
1680 * Returns SUCCESS or FAILED.
1681 **/
1682int
1683mptscsih_abort(struct scsi_cmnd * SCpnt)
1684{
1685 MPT_SCSI_HOST *hd;
1686 MPT_FRAME_HDR *mf;
1687 u32 ctx2abort;
1688 int scpnt_idx;
1689 int retval;
1690 VirtDevice *vdevice;
1691 MPT_ADAPTER *ioc;
1692
1693 /* If we can't locate our host adapter structure, return FAILED status.
1694 */
1695 if ((hd = shost_priv(SCpnt->device->host)) == NULL) {
1696 SCpnt->result = DID_RESET << 16;
1697 SCpnt->scsi_done(SCpnt);
1698 printk(KERN_ERR MYNAM ": task abort: "
1699 "can't locate host! (sc=%p)\n", SCpnt);
1700 return FAILED;
1701 }
1702
1703 ioc = hd->ioc;
1704 printk(MYIOC_s_INFO_FMT "attempting task abort! (sc=%p)\n",
1705 ioc->name, SCpnt);
1706 scsi_print_command(SCpnt);
1707
1708 vdevice = SCpnt->device->hostdata;
1709 if (!vdevice || !vdevice->vtarget) {
1710 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1711 "task abort: device has been deleted (sc=%p)\n",
1712 ioc->name, SCpnt));
1713 SCpnt->result = DID_NO_CONNECT << 16;
1714 SCpnt->scsi_done(SCpnt);
1715 retval = SUCCESS;
1716 goto out;
1717 }
1718
1719 /* Task aborts are not supported for hidden raid components.
1720 */
1721 if (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT) {
1722 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1723 "task abort: hidden raid component (sc=%p)\n",
1724 ioc->name, SCpnt));
1725 SCpnt->result = DID_RESET << 16;
1726 retval = FAILED;
1727 goto out;
1728 }
1729
1730 /* Task aborts are not supported for volumes.
1731 */
1732 if (vdevice->vtarget->raidVolume) {
1733 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1734 "task abort: raid volume (sc=%p)\n",
1735 ioc->name, SCpnt));
1736 SCpnt->result = DID_RESET << 16;
1737 retval = FAILED;
1738 goto out;
1739 }
1740
1741 /* Find this command
1742 */
1743 if ((scpnt_idx = SCPNT_TO_LOOKUP_IDX(ioc, SCpnt)) < 0) {
1744 /* Cmd not found in ScsiLookup.
1745 * Do OS callback.
1746 */
1747 SCpnt->result = DID_RESET << 16;
1748 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "task abort: "
1749 "Command not in the active list! (sc=%p)\n", ioc->name,
1750 SCpnt));
1751 retval = SUCCESS;
1752 goto out;
1753 }
1754
1755 if (ioc->timeouts < -1)
1756 ioc->timeouts++;
1757
1758 if (mpt_fwfault_debug)
1759 mpt_halt_firmware(ioc);
1760
1761 /* Most important! Set TaskMsgContext to SCpnt's MsgContext!
1762 * (the IO to be ABORT'd)
1763 *
1764 * NOTE: Since we do not byteswap MsgContext, we do not
1765 * swap it here either. It is an opaque cookie to
1766 * the controller, so it does not matter. -DaveM
1767 */
1768 mf = MPT_INDEX_2_MFPTR(ioc, scpnt_idx);
1769 ctx2abort = mf->u.frame.hwhdr.msgctxu.MsgContext;
1770 retval = mptscsih_IssueTaskMgmt(hd,
1771 MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK,
1772 vdevice->vtarget->channel,
1773 vdevice->vtarget->id, vdevice->lun,
1774 ctx2abort, mptscsih_get_tm_timeout(ioc));
1775
1776 if (SCPNT_TO_LOOKUP_IDX(ioc, SCpnt) == scpnt_idx) {
1777 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1778 "task abort: command still in active list! (sc=%p)\n",
1779 ioc->name, SCpnt));
1780 retval = FAILED;
1781 } else {
1782 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1783 "task abort: command cleared from active list! (sc=%p)\n",
1784 ioc->name, SCpnt));
1785 retval = SUCCESS;
1786 }
1787
1788 out:
1789 printk(MYIOC_s_INFO_FMT "task abort: %s (rv=%04x) (sc=%p)\n",
1790 ioc->name, ((retval == SUCCESS) ? "SUCCESS" : "FAILED"), retval,
1791 SCpnt);
1792
1793 return retval;
1794}
1795
1796/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1797/**
1798 * mptscsih_dev_reset - Perform a SCSI TARGET_RESET! new_eh variant
1799 * @SCpnt: Pointer to scsi_cmnd structure, IO which reset is due to
1800 *
1801 * (linux scsi_host_template.eh_dev_reset_handler routine)
1802 *
1803 * Returns SUCCESS or FAILED.
1804 **/
1805int
1806mptscsih_dev_reset(struct scsi_cmnd * SCpnt)
1807{
1808 MPT_SCSI_HOST *hd;
1809 int retval;
1810 VirtDevice *vdevice;
1811 MPT_ADAPTER *ioc;
1812
1813 /* If we can't locate our host adapter structure, return FAILED status.
1814 */
1815 if ((hd = shost_priv(SCpnt->device->host)) == NULL){
1816 printk(KERN_ERR MYNAM ": target reset: "
1817 "Can't locate host! (sc=%p)\n", SCpnt);
1818 return FAILED;
1819 }
1820
1821 ioc = hd->ioc;
1822 printk(MYIOC_s_INFO_FMT "attempting target reset! (sc=%p)\n",
1823 ioc->name, SCpnt);
1824 scsi_print_command(SCpnt);
1825
1826 vdevice = SCpnt->device->hostdata;
1827 if (!vdevice || !vdevice->vtarget) {
1828 retval = 0;
1829 goto out;
1830 }
1831
1832 /* Target reset to hidden raid component is not supported
1833 */
1834 if (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT) {
1835 retval = FAILED;
1836 goto out;
1837 }
1838
1839 retval = mptscsih_IssueTaskMgmt(hd,
1840 MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET,
1841 vdevice->vtarget->channel,
1842 vdevice->vtarget->id, 0, 0,
1843 mptscsih_get_tm_timeout(ioc));
1844
1845 out:
1846 printk (MYIOC_s_INFO_FMT "target reset: %s (sc=%p)\n",
1847 ioc->name, ((retval == 0) ? "SUCCESS" : "FAILED" ), SCpnt);
1848
1849 if (retval == 0)
1850 return SUCCESS;
1851 else
1852 return FAILED;
1853}
1854
1855
1856/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1857/**
1858 * mptscsih_bus_reset - Perform a SCSI BUS_RESET! new_eh variant
1859 * @SCpnt: Pointer to scsi_cmnd structure, IO which reset is due to
1860 *
1861 * (linux scsi_host_template.eh_bus_reset_handler routine)
1862 *
1863 * Returns SUCCESS or FAILED.
1864 **/
1865int
1866mptscsih_bus_reset(struct scsi_cmnd * SCpnt)
1867{
1868 MPT_SCSI_HOST *hd;
1869 int retval;
1870 VirtDevice *vdevice;
1871 MPT_ADAPTER *ioc;
1872
1873 /* If we can't locate our host adapter structure, return FAILED status.
1874 */
1875 if ((hd = shost_priv(SCpnt->device->host)) == NULL){
1876 printk(KERN_ERR MYNAM ": bus reset: "
1877 "Can't locate host! (sc=%p)\n", SCpnt);
1878 return FAILED;
1879 }
1880
1881 ioc = hd->ioc;
1882 printk(MYIOC_s_INFO_FMT "attempting bus reset! (sc=%p)\n",
1883 ioc->name, SCpnt);
1884 scsi_print_command(SCpnt);
1885
1886 if (ioc->timeouts < -1)
1887 ioc->timeouts++;
1888
1889 vdevice = SCpnt->device->hostdata;
1890 if (!vdevice || !vdevice->vtarget)
1891 return SUCCESS;
1892 retval = mptscsih_IssueTaskMgmt(hd,
1893 MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS,
1894 vdevice->vtarget->channel, 0, 0, 0,
1895 mptscsih_get_tm_timeout(ioc));
1896
1897 printk(MYIOC_s_INFO_FMT "bus reset: %s (sc=%p)\n",
1898 ioc->name, ((retval == 0) ? "SUCCESS" : "FAILED" ), SCpnt);
1899
1900 if (retval == 0)
1901 return SUCCESS;
1902 else
1903 return FAILED;
1904}
1905
1906/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1907/**
1908 * mptscsih_host_reset - Perform a SCSI host adapter RESET (new_eh variant)
1909 * @SCpnt: Pointer to scsi_cmnd structure, IO which reset is due to
1910 *
1911 * (linux scsi_host_template.eh_host_reset_handler routine)
1912 *
1913 * Returns SUCCESS or FAILED.
1914 */
1915int
1916mptscsih_host_reset(struct scsi_cmnd *SCpnt)
1917{
1918 MPT_SCSI_HOST * hd;
1919 int status = SUCCESS;
1920 MPT_ADAPTER *ioc;
1921 int retval;
1922
1923 /* If we can't locate the host to reset, then we failed. */
1924 if ((hd = shost_priv(SCpnt->device->host)) == NULL){
1925 printk(KERN_ERR MYNAM ": host reset: "
1926 "Can't locate host! (sc=%p)\n", SCpnt);
1927 return FAILED;
1928 }
1929
1930 /* make sure we have no outstanding commands at this stage */
1931 mptscsih_flush_running_cmds(hd);
1932
1933 ioc = hd->ioc;
1934 printk(MYIOC_s_INFO_FMT "attempting host reset! (sc=%p)\n",
1935 ioc->name, SCpnt);
1936
1937 /* If our attempts to reset the host failed, then return a failed
1938 * status. The host will be taken off line by the SCSI mid-layer.
1939 */
David Brazdil0f672f62019-12-10 10:32:29 +00001940 retval = mpt_Soft_Hard_ResetHandler(ioc, CAN_SLEEP);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001941 if (retval < 0)
1942 status = FAILED;
1943 else
1944 status = SUCCESS;
1945
1946 printk(MYIOC_s_INFO_FMT "host reset: %s (sc=%p)\n",
1947 ioc->name, ((retval == 0) ? "SUCCESS" : "FAILED" ), SCpnt);
1948
1949 return status;
1950}
1951
1952static int
1953mptscsih_taskmgmt_reply(MPT_ADAPTER *ioc, u8 type,
1954 SCSITaskMgmtReply_t *pScsiTmReply)
1955{
1956 u16 iocstatus;
1957 u32 termination_count;
1958 int retval;
1959
1960 if (!(ioc->taskmgmt_cmds.status & MPT_MGMT_STATUS_RF_VALID)) {
1961 retval = FAILED;
1962 goto out;
1963 }
1964
1965 DBG_DUMP_TM_REPLY_FRAME(ioc, (u32 *)pScsiTmReply);
1966
1967 iocstatus = le16_to_cpu(pScsiTmReply->IOCStatus) & MPI_IOCSTATUS_MASK;
1968 termination_count = le32_to_cpu(pScsiTmReply->TerminationCount);
1969
1970 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1971 "TaskMgmt fw_channel = %d, fw_id = %d, task_type = 0x%02X,\n"
1972 "\tiocstatus = 0x%04X, loginfo = 0x%08X, response_code = 0x%02X,\n"
1973 "\tterm_cmnds = %d\n", ioc->name, pScsiTmReply->Bus,
1974 pScsiTmReply->TargetID, type, le16_to_cpu(pScsiTmReply->IOCStatus),
1975 le32_to_cpu(pScsiTmReply->IOCLogInfo), pScsiTmReply->ResponseCode,
1976 termination_count));
1977
1978 if (ioc->facts.MsgVersion >= MPI_VERSION_01_05 &&
1979 pScsiTmReply->ResponseCode)
1980 mptscsih_taskmgmt_response_code(ioc,
1981 pScsiTmReply->ResponseCode);
1982
1983 if (iocstatus == MPI_IOCSTATUS_SUCCESS) {
1984 retval = 0;
1985 goto out;
1986 }
1987
1988 retval = FAILED;
1989 if (type == MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK) {
1990 if (termination_count == 1)
1991 retval = 0;
1992 goto out;
1993 }
1994
1995 if (iocstatus == MPI_IOCSTATUS_SCSI_TASK_TERMINATED ||
1996 iocstatus == MPI_IOCSTATUS_SCSI_IOC_TERMINATED)
1997 retval = 0;
1998
1999 out:
2000 return retval;
2001}
2002
2003/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2004void
2005mptscsih_taskmgmt_response_code(MPT_ADAPTER *ioc, u8 response_code)
2006{
2007 char *desc;
2008
2009 switch (response_code) {
2010 case MPI_SCSITASKMGMT_RSP_TM_COMPLETE:
2011 desc = "The task completed.";
2012 break;
2013 case MPI_SCSITASKMGMT_RSP_INVALID_FRAME:
2014 desc = "The IOC received an invalid frame status.";
2015 break;
2016 case MPI_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED:
2017 desc = "The task type is not supported.";
2018 break;
2019 case MPI_SCSITASKMGMT_RSP_TM_FAILED:
2020 desc = "The requested task failed.";
2021 break;
2022 case MPI_SCSITASKMGMT_RSP_TM_SUCCEEDED:
2023 desc = "The task completed successfully.";
2024 break;
2025 case MPI_SCSITASKMGMT_RSP_TM_INVALID_LUN:
2026 desc = "The LUN request is invalid.";
2027 break;
2028 case MPI_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC:
2029 desc = "The task is in the IOC queue and has not been sent to target.";
2030 break;
2031 default:
2032 desc = "unknown";
2033 break;
2034 }
2035 printk(MYIOC_s_INFO_FMT "Response Code(0x%08x): F/W: %s\n",
2036 ioc->name, response_code, desc);
2037}
2038EXPORT_SYMBOL(mptscsih_taskmgmt_response_code);
2039
2040/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2041/**
2042 * mptscsih_taskmgmt_complete - Registered with Fusion MPT base driver
2043 * @ioc: Pointer to MPT_ADAPTER structure
2044 * @mf: Pointer to SCSI task mgmt request frame
2045 * @mr: Pointer to SCSI task mgmt reply frame
2046 *
2047 * This routine is called from mptbase.c::mpt_interrupt() at the completion
2048 * of any SCSI task management request.
2049 * This routine is registered with the MPT (base) driver at driver
2050 * load/init time via the mpt_register() API call.
2051 *
2052 * Returns 1 indicating alloc'd request frame ptr should be freed.
2053 **/
2054int
2055mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf,
2056 MPT_FRAME_HDR *mr)
2057{
2058 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2059 "TaskMgmt completed (mf=%p, mr=%p)\n", ioc->name, mf, mr));
2060
2061 ioc->taskmgmt_cmds.status |= MPT_MGMT_STATUS_COMMAND_GOOD;
2062
2063 if (!mr)
2064 goto out;
2065
2066 ioc->taskmgmt_cmds.status |= MPT_MGMT_STATUS_RF_VALID;
2067 memcpy(ioc->taskmgmt_cmds.reply, mr,
2068 min(MPT_DEFAULT_FRAME_SIZE, 4 * mr->u.reply.MsgLength));
2069 out:
2070 if (ioc->taskmgmt_cmds.status & MPT_MGMT_STATUS_PENDING) {
2071 mpt_clear_taskmgmt_in_progress_flag(ioc);
2072 ioc->taskmgmt_cmds.status &= ~MPT_MGMT_STATUS_PENDING;
2073 complete(&ioc->taskmgmt_cmds.done);
2074 if (ioc->bus_type == SAS)
2075 ioc->schedule_target_reset(ioc);
2076 return 1;
2077 }
2078 return 0;
2079}
2080
2081/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2082/*
2083 * This is anyones guess quite frankly.
2084 */
2085int
2086mptscsih_bios_param(struct scsi_device * sdev, struct block_device *bdev,
2087 sector_t capacity, int geom[])
2088{
2089 int heads;
2090 int sectors;
2091 sector_t cylinders;
2092 ulong dummy;
2093
2094 heads = 64;
2095 sectors = 32;
2096
2097 dummy = heads * sectors;
2098 cylinders = capacity;
2099 sector_div(cylinders,dummy);
2100
2101 /*
2102 * Handle extended translation size for logical drives
2103 * > 1Gb
2104 */
2105 if ((ulong)capacity >= 0x200000) {
2106 heads = 255;
2107 sectors = 63;
2108 dummy = heads * sectors;
2109 cylinders = capacity;
2110 sector_div(cylinders,dummy);
2111 }
2112
2113 /* return result */
2114 geom[0] = heads;
2115 geom[1] = sectors;
2116 geom[2] = cylinders;
2117
2118 return 0;
2119}
2120
2121/* Search IOC page 3 to determine if this is hidden physical disk
2122 *
2123 */
2124int
2125mptscsih_is_phys_disk(MPT_ADAPTER *ioc, u8 channel, u8 id)
2126{
2127 struct inactive_raid_component_info *component_info;
2128 int i, j;
2129 RaidPhysDiskPage1_t *phys_disk;
2130 int rc = 0;
2131 int num_paths;
2132
2133 if (!ioc->raid_data.pIocPg3)
2134 goto out;
2135 for (i = 0; i < ioc->raid_data.pIocPg3->NumPhysDisks; i++) {
2136 if ((id == ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskID) &&
2137 (channel == ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskBus)) {
2138 rc = 1;
2139 goto out;
2140 }
2141 }
2142
2143 if (ioc->bus_type != SAS)
2144 goto out;
2145
2146 /*
2147 * Check if dual path
2148 */
2149 for (i = 0; i < ioc->raid_data.pIocPg3->NumPhysDisks; i++) {
2150 num_paths = mpt_raid_phys_disk_get_num_paths(ioc,
2151 ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskNum);
2152 if (num_paths < 2)
2153 continue;
2154 phys_disk = kzalloc(offsetof(RaidPhysDiskPage1_t, Path) +
2155 (num_paths * sizeof(RAID_PHYS_DISK1_PATH)), GFP_KERNEL);
2156 if (!phys_disk)
2157 continue;
2158 if ((mpt_raid_phys_disk_pg1(ioc,
2159 ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskNum,
2160 phys_disk))) {
2161 kfree(phys_disk);
2162 continue;
2163 }
2164 for (j = 0; j < num_paths; j++) {
2165 if ((phys_disk->Path[j].Flags &
2166 MPI_RAID_PHYSDISK1_FLAG_INVALID))
2167 continue;
2168 if ((phys_disk->Path[j].Flags &
2169 MPI_RAID_PHYSDISK1_FLAG_BROKEN))
2170 continue;
2171 if ((id == phys_disk->Path[j].PhysDiskID) &&
2172 (channel == phys_disk->Path[j].PhysDiskBus)) {
2173 rc = 1;
2174 kfree(phys_disk);
2175 goto out;
2176 }
2177 }
2178 kfree(phys_disk);
2179 }
2180
2181
2182 /*
2183 * Check inactive list for matching phys disks
2184 */
2185 if (list_empty(&ioc->raid_data.inactive_list))
2186 goto out;
2187
2188 mutex_lock(&ioc->raid_data.inactive_list_mutex);
2189 list_for_each_entry(component_info, &ioc->raid_data.inactive_list,
2190 list) {
2191 if ((component_info->d.PhysDiskID == id) &&
2192 (component_info->d.PhysDiskBus == channel))
2193 rc = 1;
2194 }
2195 mutex_unlock(&ioc->raid_data.inactive_list_mutex);
2196
2197 out:
2198 return rc;
2199}
2200EXPORT_SYMBOL(mptscsih_is_phys_disk);
2201
2202u8
2203mptscsih_raid_id_to_num(MPT_ADAPTER *ioc, u8 channel, u8 id)
2204{
2205 struct inactive_raid_component_info *component_info;
2206 int i, j;
2207 RaidPhysDiskPage1_t *phys_disk;
2208 int rc = -ENXIO;
2209 int num_paths;
2210
2211 if (!ioc->raid_data.pIocPg3)
2212 goto out;
2213 for (i = 0; i < ioc->raid_data.pIocPg3->NumPhysDisks; i++) {
2214 if ((id == ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskID) &&
2215 (channel == ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskBus)) {
2216 rc = ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskNum;
2217 goto out;
2218 }
2219 }
2220
2221 if (ioc->bus_type != SAS)
2222 goto out;
2223
2224 /*
2225 * Check if dual path
2226 */
2227 for (i = 0; i < ioc->raid_data.pIocPg3->NumPhysDisks; i++) {
2228 num_paths = mpt_raid_phys_disk_get_num_paths(ioc,
2229 ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskNum);
2230 if (num_paths < 2)
2231 continue;
2232 phys_disk = kzalloc(offsetof(RaidPhysDiskPage1_t, Path) +
2233 (num_paths * sizeof(RAID_PHYS_DISK1_PATH)), GFP_KERNEL);
2234 if (!phys_disk)
2235 continue;
2236 if ((mpt_raid_phys_disk_pg1(ioc,
2237 ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskNum,
2238 phys_disk))) {
2239 kfree(phys_disk);
2240 continue;
2241 }
2242 for (j = 0; j < num_paths; j++) {
2243 if ((phys_disk->Path[j].Flags &
2244 MPI_RAID_PHYSDISK1_FLAG_INVALID))
2245 continue;
2246 if ((phys_disk->Path[j].Flags &
2247 MPI_RAID_PHYSDISK1_FLAG_BROKEN))
2248 continue;
2249 if ((id == phys_disk->Path[j].PhysDiskID) &&
2250 (channel == phys_disk->Path[j].PhysDiskBus)) {
2251 rc = phys_disk->PhysDiskNum;
2252 kfree(phys_disk);
2253 goto out;
2254 }
2255 }
2256 kfree(phys_disk);
2257 }
2258
2259 /*
2260 * Check inactive list for matching phys disks
2261 */
2262 if (list_empty(&ioc->raid_data.inactive_list))
2263 goto out;
2264
2265 mutex_lock(&ioc->raid_data.inactive_list_mutex);
2266 list_for_each_entry(component_info, &ioc->raid_data.inactive_list,
2267 list) {
2268 if ((component_info->d.PhysDiskID == id) &&
2269 (component_info->d.PhysDiskBus == channel))
2270 rc = component_info->d.PhysDiskNum;
2271 }
2272 mutex_unlock(&ioc->raid_data.inactive_list_mutex);
2273
2274 out:
2275 return rc;
2276}
2277EXPORT_SYMBOL(mptscsih_raid_id_to_num);
2278
2279/*
2280 * OS entry point to allow for host driver to free allocated memory
2281 * Called if no device present or device being unloaded
2282 */
2283void
2284mptscsih_slave_destroy(struct scsi_device *sdev)
2285{
2286 struct Scsi_Host *host = sdev->host;
2287 MPT_SCSI_HOST *hd = shost_priv(host);
2288 VirtTarget *vtarget;
2289 VirtDevice *vdevice;
2290 struct scsi_target *starget;
2291
2292 starget = scsi_target(sdev);
2293 vtarget = starget->hostdata;
2294 vdevice = sdev->hostdata;
2295 if (!vdevice)
2296 return;
2297
2298 mptscsih_search_running_cmds(hd, vdevice);
2299 vtarget->num_luns--;
2300 mptscsih_synchronize_cache(hd, vdevice);
2301 kfree(vdevice);
2302 sdev->hostdata = NULL;
2303}
2304
2305/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2306/*
2307 * mptscsih_change_queue_depth - This function will set a devices queue depth
2308 * @sdev: per scsi_device pointer
2309 * @qdepth: requested queue depth
2310 *
2311 * Adding support for new 'change_queue_depth' api.
2312*/
2313int
2314mptscsih_change_queue_depth(struct scsi_device *sdev, int qdepth)
2315{
2316 MPT_SCSI_HOST *hd = shost_priv(sdev->host);
2317 VirtTarget *vtarget;
2318 struct scsi_target *starget;
2319 int max_depth;
2320 MPT_ADAPTER *ioc = hd->ioc;
2321
2322 starget = scsi_target(sdev);
2323 vtarget = starget->hostdata;
2324
2325 if (ioc->bus_type == SPI) {
2326 if (!(vtarget->tflags & MPT_TARGET_FLAGS_Q_YES))
2327 max_depth = 1;
2328 else if (sdev->type == TYPE_DISK &&
2329 vtarget->minSyncFactor <= MPT_ULTRA160)
2330 max_depth = MPT_SCSI_CMD_PER_DEV_HIGH;
2331 else
2332 max_depth = MPT_SCSI_CMD_PER_DEV_LOW;
2333 } else
2334 max_depth = ioc->sh->can_queue;
2335
2336 if (!sdev->tagged_supported)
2337 max_depth = 1;
2338
2339 if (qdepth > max_depth)
2340 qdepth = max_depth;
2341
2342 return scsi_change_queue_depth(sdev, qdepth);
2343}
2344
2345/*
2346 * OS entry point to adjust the queue_depths on a per-device basis.
2347 * Called once per device the bus scan. Use it to force the queue_depth
2348 * member to 1 if a device does not support Q tags.
2349 * Return non-zero if fails.
2350 */
2351int
2352mptscsih_slave_configure(struct scsi_device *sdev)
2353{
2354 struct Scsi_Host *sh = sdev->host;
2355 VirtTarget *vtarget;
2356 VirtDevice *vdevice;
2357 struct scsi_target *starget;
2358 MPT_SCSI_HOST *hd = shost_priv(sh);
2359 MPT_ADAPTER *ioc = hd->ioc;
2360
2361 starget = scsi_target(sdev);
2362 vtarget = starget->hostdata;
2363 vdevice = sdev->hostdata;
2364
2365 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2366 "device @ %p, channel=%d, id=%d, lun=%llu\n",
2367 ioc->name, sdev, sdev->channel, sdev->id, sdev->lun));
2368 if (ioc->bus_type == SPI)
2369 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2370 "sdtr %d wdtr %d ppr %d inq length=%d\n",
2371 ioc->name, sdev->sdtr, sdev->wdtr,
2372 sdev->ppr, sdev->inquiry_len));
2373
2374 vdevice->configured_lun = 1;
2375
2376 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2377 "Queue depth=%d, tflags=%x\n",
2378 ioc->name, sdev->queue_depth, vtarget->tflags));
2379
2380 if (ioc->bus_type == SPI)
2381 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2382 "negoFlags=%x, maxOffset=%x, SyncFactor=%x\n",
2383 ioc->name, vtarget->negoFlags, vtarget->maxOffset,
2384 vtarget->minSyncFactor));
2385
2386 mptscsih_change_queue_depth(sdev, MPT_SCSI_CMD_PER_DEV_HIGH);
2387 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2388 "tagged %d, simple %d\n",
2389 ioc->name,sdev->tagged_supported, sdev->simple_tags));
2390
2391 blk_queue_dma_alignment (sdev->request_queue, 512 - 1);
2392
2393 return 0;
2394}
2395
2396/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2397/*
2398 * Private routines...
2399 */
2400
2401/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2402/* Utility function to copy sense data from the scsi_cmnd buffer
2403 * to the FC and SCSI target structures.
2404 *
2405 */
2406static void
2407mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SCSIIOReply_t *pScsiReply)
2408{
2409 VirtDevice *vdevice;
2410 SCSIIORequest_t *pReq;
2411 u32 sense_count = le32_to_cpu(pScsiReply->SenseCount);
2412 MPT_ADAPTER *ioc = hd->ioc;
2413
2414 /* Get target structure
2415 */
2416 pReq = (SCSIIORequest_t *) mf;
2417 vdevice = sc->device->hostdata;
2418
2419 if (sense_count) {
2420 u8 *sense_data;
2421 int req_index;
2422
2423 /* Copy the sense received into the scsi command block. */
2424 req_index = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
2425 sense_data = ((u8 *)ioc->sense_buf_pool + (req_index * MPT_SENSE_BUFFER_ALLOC));
Olivier Deprez0e641232021-09-23 10:07:05 +02002426 memcpy(sc->sense_buffer, sense_data, MPT_SENSE_BUFFER_ALLOC);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002427
2428 /* Log SMART data (asc = 0x5D, non-IM case only) if required.
2429 */
2430 if ((ioc->events) && (ioc->eventTypes & (1 << MPI_EVENT_SCSI_DEVICE_STATUS_CHANGE))) {
2431 if ((sense_data[12] == 0x5D) && (vdevice->vtarget->raidVolume == 0)) {
2432 int idx;
2433
2434 idx = ioc->eventContext % MPTCTL_EVENT_LOG_SIZE;
2435 ioc->events[idx].event = MPI_EVENT_SCSI_DEVICE_STATUS_CHANGE;
2436 ioc->events[idx].eventContext = ioc->eventContext;
2437
2438 ioc->events[idx].data[0] = (pReq->LUN[1] << 24) |
2439 (MPI_EVENT_SCSI_DEV_STAT_RC_SMART_DATA << 16) |
2440 (sc->device->channel << 8) | sc->device->id;
2441
2442 ioc->events[idx].data[1] = (sense_data[13] << 8) | sense_data[12];
2443
2444 ioc->eventContext++;
2445 if (ioc->pcidev->vendor ==
2446 PCI_VENDOR_ID_IBM) {
2447 mptscsih_issue_sep_command(ioc,
2448 vdevice->vtarget, MPI_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT);
2449 vdevice->vtarget->tflags |=
2450 MPT_TARGET_FLAGS_LED_ON;
2451 }
2452 }
2453 }
2454 } else {
2455 dprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Hmmm... SenseData len=0! (?)\n",
2456 ioc->name));
2457 }
2458}
2459
2460/**
2461 * mptscsih_get_scsi_lookup - retrieves scmd entry
2462 * @ioc: Pointer to MPT_ADAPTER structure
2463 * @i: index into the array
2464 *
2465 * Returns the scsi_cmd pointer
2466 */
2467struct scsi_cmnd *
2468mptscsih_get_scsi_lookup(MPT_ADAPTER *ioc, int i)
2469{
2470 unsigned long flags;
2471 struct scsi_cmnd *scmd;
2472
2473 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
2474 scmd = ioc->ScsiLookup[i];
2475 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
2476
2477 return scmd;
2478}
2479EXPORT_SYMBOL(mptscsih_get_scsi_lookup);
2480
2481/**
2482 * mptscsih_getclear_scsi_lookup - retrieves and clears scmd entry from ScsiLookup[] array list
2483 * @ioc: Pointer to MPT_ADAPTER structure
2484 * @i: index into the array
2485 *
2486 * Returns the scsi_cmd pointer
2487 *
2488 **/
2489static struct scsi_cmnd *
2490mptscsih_getclear_scsi_lookup(MPT_ADAPTER *ioc, int i)
2491{
2492 unsigned long flags;
2493 struct scsi_cmnd *scmd;
2494
2495 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
2496 scmd = ioc->ScsiLookup[i];
2497 ioc->ScsiLookup[i] = NULL;
2498 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
2499
2500 return scmd;
2501}
2502
2503/**
2504 * mptscsih_set_scsi_lookup - write a scmd entry into the ScsiLookup[] array list
2505 *
2506 * @ioc: Pointer to MPT_ADAPTER structure
2507 * @i: index into the array
2508 * @scmd: scsi_cmnd pointer
2509 *
2510 **/
2511static void
2512mptscsih_set_scsi_lookup(MPT_ADAPTER *ioc, int i, struct scsi_cmnd *scmd)
2513{
2514 unsigned long flags;
2515
2516 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
2517 ioc->ScsiLookup[i] = scmd;
2518 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
2519}
2520
2521/**
2522 * SCPNT_TO_LOOKUP_IDX - searches for a given scmd in the ScsiLookup[] array list
2523 * @ioc: Pointer to MPT_ADAPTER structure
2524 * @sc: scsi_cmnd pointer
2525 */
2526static int
2527SCPNT_TO_LOOKUP_IDX(MPT_ADAPTER *ioc, struct scsi_cmnd *sc)
2528{
2529 unsigned long flags;
2530 int i, index=-1;
2531
2532 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
2533 for (i = 0; i < ioc->req_depth; i++) {
2534 if (ioc->ScsiLookup[i] == sc) {
2535 index = i;
2536 goto out;
2537 }
2538 }
2539
2540 out:
2541 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
2542 return index;
2543}
2544
2545/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2546int
2547mptscsih_ioc_reset(MPT_ADAPTER *ioc, int reset_phase)
2548{
2549 MPT_SCSI_HOST *hd;
2550
2551 if (ioc->sh == NULL || shost_priv(ioc->sh) == NULL)
2552 return 0;
2553
2554 hd = shost_priv(ioc->sh);
2555 switch (reset_phase) {
2556 case MPT_IOC_SETUP_RESET:
2557 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2558 "%s: MPT_IOC_SETUP_RESET\n", ioc->name, __func__));
2559 break;
2560 case MPT_IOC_PRE_RESET:
2561 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2562 "%s: MPT_IOC_PRE_RESET\n", ioc->name, __func__));
2563 mptscsih_flush_running_cmds(hd);
2564 break;
2565 case MPT_IOC_POST_RESET:
2566 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2567 "%s: MPT_IOC_POST_RESET\n", ioc->name, __func__));
2568 if (ioc->internal_cmds.status & MPT_MGMT_STATUS_PENDING) {
2569 ioc->internal_cmds.status |=
2570 MPT_MGMT_STATUS_DID_IOCRESET;
2571 complete(&ioc->internal_cmds.done);
2572 }
2573 break;
2574 default:
2575 break;
2576 }
2577 return 1; /* currently means nothing really */
2578}
2579
2580/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2581int
2582mptscsih_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply)
2583{
2584 u8 event = le32_to_cpu(pEvReply->Event) & 0xFF;
2585
2586 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2587 "MPT event (=%02Xh) routed to SCSI host driver!\n",
2588 ioc->name, event));
2589
2590 if ((event == MPI_EVENT_IOC_BUS_RESET ||
2591 event == MPI_EVENT_EXT_BUS_RESET) &&
2592 (ioc->bus_type == SPI) && (ioc->soft_resets < -1))
2593 ioc->soft_resets++;
2594
2595 return 1; /* currently means nothing really */
2596}
2597
2598/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2599/*
2600 * Bus Scan and Domain Validation functionality ...
2601 */
2602
2603/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2604/*
2605 * mptscsih_scandv_complete - Scan and DV callback routine registered
2606 * to Fustion MPT (base) driver.
2607 *
2608 * @ioc: Pointer to MPT_ADAPTER structure
2609 * @mf: Pointer to original MPT request frame
2610 * @mr: Pointer to MPT reply frame (NULL if TurboReply)
2611 *
2612 * This routine is called from mpt.c::mpt_interrupt() at the completion
2613 * of any SCSI IO request.
2614 * This routine is registered with the Fusion MPT (base) driver at driver
2615 * load/init time via the mpt_register() API call.
2616 *
2617 * Returns 1 indicating alloc'd request frame ptr should be freed.
2618 *
2619 * Remark: Sets a completion code and (possibly) saves sense data
2620 * in the IOC member localReply structure.
2621 * Used ONLY for DV and other internal commands.
2622 */
2623int
2624mptscsih_scandv_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req,
2625 MPT_FRAME_HDR *reply)
2626{
2627 SCSIIORequest_t *pReq;
2628 SCSIIOReply_t *pReply;
2629 u8 cmd;
2630 u16 req_idx;
2631 u8 *sense_data;
2632 int sz;
2633
2634 ioc->internal_cmds.status |= MPT_MGMT_STATUS_COMMAND_GOOD;
2635 ioc->internal_cmds.completion_code = MPT_SCANDV_GOOD;
2636 if (!reply)
2637 goto out;
2638
2639 pReply = (SCSIIOReply_t *) reply;
2640 pReq = (SCSIIORequest_t *) req;
2641 ioc->internal_cmds.completion_code =
2642 mptscsih_get_completion_code(ioc, req, reply);
2643 ioc->internal_cmds.status |= MPT_MGMT_STATUS_RF_VALID;
2644 memcpy(ioc->internal_cmds.reply, reply,
2645 min(MPT_DEFAULT_FRAME_SIZE, 4 * reply->u.reply.MsgLength));
2646 cmd = reply->u.hdr.Function;
2647 if (((cmd == MPI_FUNCTION_SCSI_IO_REQUEST) ||
2648 (cmd == MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH)) &&
2649 (pReply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_VALID)) {
2650 req_idx = le16_to_cpu(req->u.frame.hwhdr.msgctxu.fld.req_idx);
2651 sense_data = ((u8 *)ioc->sense_buf_pool +
2652 (req_idx * MPT_SENSE_BUFFER_ALLOC));
2653 sz = min_t(int, pReq->SenseBufferLength,
2654 MPT_SENSE_BUFFER_ALLOC);
2655 memcpy(ioc->internal_cmds.sense, sense_data, sz);
2656 }
2657 out:
2658 if (!(ioc->internal_cmds.status & MPT_MGMT_STATUS_PENDING))
2659 return 0;
2660 ioc->internal_cmds.status &= ~MPT_MGMT_STATUS_PENDING;
2661 complete(&ioc->internal_cmds.done);
2662 return 1;
2663}
2664
2665
2666/**
2667 * mptscsih_get_completion_code - get completion code from MPT request
2668 * @ioc: Pointer to MPT_ADAPTER structure
2669 * @req: Pointer to original MPT request frame
2670 * @reply: Pointer to MPT reply frame (NULL if TurboReply)
2671 *
2672 **/
2673static int
2674mptscsih_get_completion_code(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req,
2675 MPT_FRAME_HDR *reply)
2676{
2677 SCSIIOReply_t *pReply;
2678 MpiRaidActionReply_t *pr;
2679 u8 scsi_status;
2680 u16 status;
2681 int completion_code;
2682
2683 pReply = (SCSIIOReply_t *)reply;
2684 status = le16_to_cpu(pReply->IOCStatus) & MPI_IOCSTATUS_MASK;
2685 scsi_status = pReply->SCSIStatus;
2686
2687 devtprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2688 "IOCStatus=%04xh, SCSIState=%02xh, SCSIStatus=%02xh,"
2689 "IOCLogInfo=%08xh\n", ioc->name, status, pReply->SCSIState,
2690 scsi_status, le32_to_cpu(pReply->IOCLogInfo)));
2691
2692 switch (status) {
2693
2694 case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE: /* 0x0043 */
2695 completion_code = MPT_SCANDV_SELECTION_TIMEOUT;
2696 break;
2697
2698 case MPI_IOCSTATUS_SCSI_IO_DATA_ERROR: /* 0x0046 */
2699 case MPI_IOCSTATUS_SCSI_TASK_TERMINATED: /* 0x0048 */
2700 case MPI_IOCSTATUS_SCSI_IOC_TERMINATED: /* 0x004B */
2701 case MPI_IOCSTATUS_SCSI_EXT_TERMINATED: /* 0x004C */
2702 completion_code = MPT_SCANDV_DID_RESET;
2703 break;
2704
2705 case MPI_IOCSTATUS_BUSY:
2706 case MPI_IOCSTATUS_INSUFFICIENT_RESOURCES:
2707 completion_code = MPT_SCANDV_BUSY;
2708 break;
2709
2710 case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN: /* 0x0045 */
2711 case MPI_IOCSTATUS_SCSI_RECOVERED_ERROR: /* 0x0040 */
2712 case MPI_IOCSTATUS_SUCCESS: /* 0x0000 */
2713 if (pReply->Function == MPI_FUNCTION_CONFIG) {
2714 completion_code = MPT_SCANDV_GOOD;
2715 } else if (pReply->Function == MPI_FUNCTION_RAID_ACTION) {
2716 pr = (MpiRaidActionReply_t *)reply;
2717 if (le16_to_cpu(pr->ActionStatus) ==
2718 MPI_RAID_ACTION_ASTATUS_SUCCESS)
2719 completion_code = MPT_SCANDV_GOOD;
2720 else
2721 completion_code = MPT_SCANDV_SOME_ERROR;
2722 } else if (pReply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_VALID)
2723 completion_code = MPT_SCANDV_SENSE;
2724 else if (pReply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_FAILED) {
2725 if (req->u.scsireq.CDB[0] == INQUIRY)
2726 completion_code = MPT_SCANDV_ISSUE_SENSE;
2727 else
2728 completion_code = MPT_SCANDV_DID_RESET;
2729 } else if (pReply->SCSIState & MPI_SCSI_STATE_NO_SCSI_STATUS)
2730 completion_code = MPT_SCANDV_DID_RESET;
2731 else if (pReply->SCSIState & MPI_SCSI_STATE_TERMINATED)
2732 completion_code = MPT_SCANDV_DID_RESET;
2733 else if (scsi_status == MPI_SCSI_STATUS_BUSY)
2734 completion_code = MPT_SCANDV_BUSY;
2735 else
2736 completion_code = MPT_SCANDV_GOOD;
2737 break;
2738
2739 case MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR: /* 0x0047 */
2740 if (pReply->SCSIState & MPI_SCSI_STATE_TERMINATED)
2741 completion_code = MPT_SCANDV_DID_RESET;
2742 else
2743 completion_code = MPT_SCANDV_SOME_ERROR;
2744 break;
2745 default:
2746 completion_code = MPT_SCANDV_SOME_ERROR;
2747 break;
2748
2749 } /* switch(status) */
2750
2751 devtprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2752 " completionCode set to %08xh\n", ioc->name, completion_code));
2753 return completion_code;
2754}
2755
2756/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2757/**
2758 * mptscsih_do_cmd - Do internal command.
2759 * @hd: MPT_SCSI_HOST pointer
2760 * @io: INTERNAL_CMD pointer.
2761 *
2762 * Issue the specified internally generated command and do command
2763 * specific cleanup. For bus scan / DV only.
2764 * NOTES: If command is Inquiry and status is good,
2765 * initialize a target structure, save the data
2766 *
2767 * Remark: Single threaded access only.
2768 *
2769 * Return:
2770 * < 0 if an illegal command or no resources
2771 *
2772 * 0 if good
2773 *
2774 * > 0 if command complete but some type of completion error.
2775 */
2776static int
2777mptscsih_do_cmd(MPT_SCSI_HOST *hd, INTERNAL_CMD *io)
2778{
2779 MPT_FRAME_HDR *mf;
2780 SCSIIORequest_t *pScsiReq;
2781 int my_idx, ii, dir;
2782 int timeout;
2783 char cmdLen;
2784 char CDB[]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
2785 u8 cmd = io->cmd;
2786 MPT_ADAPTER *ioc = hd->ioc;
2787 int ret = 0;
2788 unsigned long timeleft;
2789 unsigned long flags;
2790
2791 /* don't send internal command during diag reset */
2792 spin_lock_irqsave(&ioc->taskmgmt_lock, flags);
2793 if (ioc->ioc_reset_in_progress) {
2794 spin_unlock_irqrestore(&ioc->taskmgmt_lock, flags);
2795 dfailprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2796 "%s: busy with host reset\n", ioc->name, __func__));
2797 return MPT_SCANDV_BUSY;
2798 }
2799 spin_unlock_irqrestore(&ioc->taskmgmt_lock, flags);
2800
2801 mutex_lock(&ioc->internal_cmds.mutex);
2802
2803 /* Set command specific information
2804 */
2805 switch (cmd) {
2806 case INQUIRY:
2807 cmdLen = 6;
2808 dir = MPI_SCSIIO_CONTROL_READ;
2809 CDB[0] = cmd;
2810 CDB[4] = io->size;
2811 timeout = 10;
2812 break;
2813
2814 case TEST_UNIT_READY:
2815 cmdLen = 6;
2816 dir = MPI_SCSIIO_CONTROL_READ;
2817 timeout = 10;
2818 break;
2819
2820 case START_STOP:
2821 cmdLen = 6;
2822 dir = MPI_SCSIIO_CONTROL_READ;
2823 CDB[0] = cmd;
2824 CDB[4] = 1; /*Spin up the disk */
2825 timeout = 15;
2826 break;
2827
2828 case REQUEST_SENSE:
2829 cmdLen = 6;
2830 CDB[0] = cmd;
2831 CDB[4] = io->size;
2832 dir = MPI_SCSIIO_CONTROL_READ;
2833 timeout = 10;
2834 break;
2835
2836 case READ_BUFFER:
2837 cmdLen = 10;
2838 dir = MPI_SCSIIO_CONTROL_READ;
2839 CDB[0] = cmd;
2840 if (io->flags & MPT_ICFLAG_ECHO) {
2841 CDB[1] = 0x0A;
2842 } else {
2843 CDB[1] = 0x02;
2844 }
2845
2846 if (io->flags & MPT_ICFLAG_BUF_CAP) {
2847 CDB[1] |= 0x01;
2848 }
2849 CDB[6] = (io->size >> 16) & 0xFF;
2850 CDB[7] = (io->size >> 8) & 0xFF;
2851 CDB[8] = io->size & 0xFF;
2852 timeout = 10;
2853 break;
2854
2855 case WRITE_BUFFER:
2856 cmdLen = 10;
2857 dir = MPI_SCSIIO_CONTROL_WRITE;
2858 CDB[0] = cmd;
2859 if (io->flags & MPT_ICFLAG_ECHO) {
2860 CDB[1] = 0x0A;
2861 } else {
2862 CDB[1] = 0x02;
2863 }
2864 CDB[6] = (io->size >> 16) & 0xFF;
2865 CDB[7] = (io->size >> 8) & 0xFF;
2866 CDB[8] = io->size & 0xFF;
2867 timeout = 10;
2868 break;
2869
2870 case RESERVE:
2871 cmdLen = 6;
2872 dir = MPI_SCSIIO_CONTROL_READ;
2873 CDB[0] = cmd;
2874 timeout = 10;
2875 break;
2876
2877 case RELEASE:
2878 cmdLen = 6;
2879 dir = MPI_SCSIIO_CONTROL_READ;
2880 CDB[0] = cmd;
2881 timeout = 10;
2882 break;
2883
2884 case SYNCHRONIZE_CACHE:
2885 cmdLen = 10;
2886 dir = MPI_SCSIIO_CONTROL_READ;
2887 CDB[0] = cmd;
2888// CDB[1] = 0x02; /* set immediate bit */
2889 timeout = 10;
2890 break;
2891
2892 default:
2893 /* Error Case */
2894 ret = -EFAULT;
2895 goto out;
2896 }
2897
2898 /* Get and Populate a free Frame
2899 * MsgContext set in mpt_get_msg_frame call
2900 */
2901 if ((mf = mpt_get_msg_frame(ioc->InternalCtx, ioc)) == NULL) {
2902 dfailprintk(ioc, printk(MYIOC_s_WARN_FMT "%s: No msg frames!\n",
2903 ioc->name, __func__));
2904 ret = MPT_SCANDV_BUSY;
2905 goto out;
2906 }
2907
2908 pScsiReq = (SCSIIORequest_t *) mf;
2909
2910 /* Get the request index */
2911 my_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
2912 ADD_INDEX_LOG(my_idx); /* for debug */
2913
2914 if (io->flags & MPT_ICFLAG_PHYS_DISK) {
2915 pScsiReq->TargetID = io->physDiskNum;
2916 pScsiReq->Bus = 0;
2917 pScsiReq->ChainOffset = 0;
2918 pScsiReq->Function = MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH;
2919 } else {
2920 pScsiReq->TargetID = io->id;
2921 pScsiReq->Bus = io->channel;
2922 pScsiReq->ChainOffset = 0;
2923 pScsiReq->Function = MPI_FUNCTION_SCSI_IO_REQUEST;
2924 }
2925
2926 pScsiReq->CDBLength = cmdLen;
2927 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
2928
2929 pScsiReq->Reserved = 0;
2930
2931 pScsiReq->MsgFlags = mpt_msg_flags(ioc);
2932 /* MsgContext set in mpt_get_msg_fram call */
2933
2934 int_to_scsilun(io->lun, (struct scsi_lun *)pScsiReq->LUN);
2935
2936 if (io->flags & MPT_ICFLAG_TAGGED_CMD)
2937 pScsiReq->Control = cpu_to_le32(dir | MPI_SCSIIO_CONTROL_SIMPLEQ);
2938 else
2939 pScsiReq->Control = cpu_to_le32(dir | MPI_SCSIIO_CONTROL_UNTAGGED);
2940
2941 if (cmd == REQUEST_SENSE) {
2942 pScsiReq->Control = cpu_to_le32(dir | MPI_SCSIIO_CONTROL_UNTAGGED);
2943 devtprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2944 "%s: Untagged! 0x%02x\n", ioc->name, __func__, cmd));
2945 }
2946
2947 for (ii = 0; ii < 16; ii++)
2948 pScsiReq->CDB[ii] = CDB[ii];
2949
2950 pScsiReq->DataLength = cpu_to_le32(io->size);
2951 pScsiReq->SenseBufferLowAddr = cpu_to_le32(ioc->sense_buf_low_dma
2952 + (my_idx * MPT_SENSE_BUFFER_ALLOC));
2953
2954 devtprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2955 "%s: Sending Command 0x%02x for fw_channel=%d fw_id=%d lun=%llu\n",
2956 ioc->name, __func__, cmd, io->channel, io->id, io->lun));
2957
2958 if (dir == MPI_SCSIIO_CONTROL_READ)
2959 ioc->add_sge((char *) &pScsiReq->SGL,
2960 MPT_SGE_FLAGS_SSIMPLE_READ | io->size, io->data_dma);
2961 else
2962 ioc->add_sge((char *) &pScsiReq->SGL,
2963 MPT_SGE_FLAGS_SSIMPLE_WRITE | io->size, io->data_dma);
2964
2965 INITIALIZE_MGMT_STATUS(ioc->internal_cmds.status)
2966 mpt_put_msg_frame(ioc->InternalCtx, ioc, mf);
2967 timeleft = wait_for_completion_timeout(&ioc->internal_cmds.done,
2968 timeout*HZ);
2969 if (!(ioc->internal_cmds.status & MPT_MGMT_STATUS_COMMAND_GOOD)) {
2970 ret = MPT_SCANDV_DID_RESET;
2971 dfailprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2972 "%s: TIMED OUT for cmd=0x%02x\n", ioc->name, __func__,
2973 cmd));
2974 if (ioc->internal_cmds.status & MPT_MGMT_STATUS_DID_IOCRESET) {
2975 mpt_free_msg_frame(ioc, mf);
2976 goto out;
2977 }
2978 if (!timeleft) {
2979 printk(MYIOC_s_WARN_FMT
2980 "Issuing Reset from %s!! doorbell=0x%08xh"
2981 " cmd=0x%02x\n",
2982 ioc->name, __func__, mpt_GetIocState(ioc, 0),
2983 cmd);
2984 mpt_Soft_Hard_ResetHandler(ioc, CAN_SLEEP);
2985 mpt_free_msg_frame(ioc, mf);
2986 }
2987 goto out;
2988 }
2989
2990 ret = ioc->internal_cmds.completion_code;
2991 devtprintk(ioc, printk(MYIOC_s_DEBUG_FMT "%s: success, rc=0x%02x\n",
2992 ioc->name, __func__, ret));
2993
2994 out:
2995 CLEAR_MGMT_STATUS(ioc->internal_cmds.status)
2996 mutex_unlock(&ioc->internal_cmds.mutex);
2997 return ret;
2998}
2999
3000/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
3001/**
3002 * mptscsih_synchronize_cache - Send SYNCHRONIZE_CACHE to all disks.
3003 * @hd: Pointer to a SCSI HOST structure
3004 * @vdevice: virtual target device
3005 *
3006 * Uses the ISR, but with special processing.
3007 * MUST be single-threaded.
3008 *
3009 */
3010static void
3011mptscsih_synchronize_cache(MPT_SCSI_HOST *hd, VirtDevice *vdevice)
3012{
3013 INTERNAL_CMD iocmd;
3014
3015 /* Ignore hidden raid components, this is handled when the command
3016 * is sent to the volume
3017 */
3018 if (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT)
3019 return;
3020
3021 if (vdevice->vtarget->type != TYPE_DISK || vdevice->vtarget->deleted ||
3022 !vdevice->configured_lun)
3023 return;
3024
3025 /* Following parameters will not change
3026 * in this routine.
3027 */
3028 iocmd.cmd = SYNCHRONIZE_CACHE;
3029 iocmd.flags = 0;
3030 iocmd.physDiskNum = -1;
3031 iocmd.data = NULL;
3032 iocmd.data_dma = -1;
3033 iocmd.size = 0;
3034 iocmd.rsvd = iocmd.rsvd2 = 0;
3035 iocmd.channel = vdevice->vtarget->channel;
3036 iocmd.id = vdevice->vtarget->id;
3037 iocmd.lun = vdevice->lun;
3038
3039 mptscsih_do_cmd(hd, &iocmd);
3040}
3041
3042static ssize_t
3043mptscsih_version_fw_show(struct device *dev, struct device_attribute *attr,
3044 char *buf)
3045{
3046 struct Scsi_Host *host = class_to_shost(dev);
3047 MPT_SCSI_HOST *hd = shost_priv(host);
3048 MPT_ADAPTER *ioc = hd->ioc;
3049
3050 return snprintf(buf, PAGE_SIZE, "%02d.%02d.%02d.%02d\n",
3051 (ioc->facts.FWVersion.Word & 0xFF000000) >> 24,
3052 (ioc->facts.FWVersion.Word & 0x00FF0000) >> 16,
3053 (ioc->facts.FWVersion.Word & 0x0000FF00) >> 8,
3054 ioc->facts.FWVersion.Word & 0x000000FF);
3055}
3056static DEVICE_ATTR(version_fw, S_IRUGO, mptscsih_version_fw_show, NULL);
3057
3058static ssize_t
3059mptscsih_version_bios_show(struct device *dev, struct device_attribute *attr,
3060 char *buf)
3061{
3062 struct Scsi_Host *host = class_to_shost(dev);
3063 MPT_SCSI_HOST *hd = shost_priv(host);
3064 MPT_ADAPTER *ioc = hd->ioc;
3065
3066 return snprintf(buf, PAGE_SIZE, "%02x.%02x.%02x.%02x\n",
3067 (ioc->biosVersion & 0xFF000000) >> 24,
3068 (ioc->biosVersion & 0x00FF0000) >> 16,
3069 (ioc->biosVersion & 0x0000FF00) >> 8,
3070 ioc->biosVersion & 0x000000FF);
3071}
3072static DEVICE_ATTR(version_bios, S_IRUGO, mptscsih_version_bios_show, NULL);
3073
3074static ssize_t
3075mptscsih_version_mpi_show(struct device *dev, struct device_attribute *attr,
3076 char *buf)
3077{
3078 struct Scsi_Host *host = class_to_shost(dev);
3079 MPT_SCSI_HOST *hd = shost_priv(host);
3080 MPT_ADAPTER *ioc = hd->ioc;
3081
3082 return snprintf(buf, PAGE_SIZE, "%03x\n", ioc->facts.MsgVersion);
3083}
3084static DEVICE_ATTR(version_mpi, S_IRUGO, mptscsih_version_mpi_show, NULL);
3085
3086static ssize_t
3087mptscsih_version_product_show(struct device *dev,
3088 struct device_attribute *attr,
3089char *buf)
3090{
3091 struct Scsi_Host *host = class_to_shost(dev);
3092 MPT_SCSI_HOST *hd = shost_priv(host);
3093 MPT_ADAPTER *ioc = hd->ioc;
3094
3095 return snprintf(buf, PAGE_SIZE, "%s\n", ioc->prod_name);
3096}
3097static DEVICE_ATTR(version_product, S_IRUGO,
3098 mptscsih_version_product_show, NULL);
3099
3100static ssize_t
3101mptscsih_version_nvdata_persistent_show(struct device *dev,
3102 struct device_attribute *attr,
3103 char *buf)
3104{
3105 struct Scsi_Host *host = class_to_shost(dev);
3106 MPT_SCSI_HOST *hd = shost_priv(host);
3107 MPT_ADAPTER *ioc = hd->ioc;
3108
3109 return snprintf(buf, PAGE_SIZE, "%02xh\n",
3110 ioc->nvdata_version_persistent);
3111}
3112static DEVICE_ATTR(version_nvdata_persistent, S_IRUGO,
3113 mptscsih_version_nvdata_persistent_show, NULL);
3114
3115static ssize_t
3116mptscsih_version_nvdata_default_show(struct device *dev,
3117 struct device_attribute *attr, char *buf)
3118{
3119 struct Scsi_Host *host = class_to_shost(dev);
3120 MPT_SCSI_HOST *hd = shost_priv(host);
3121 MPT_ADAPTER *ioc = hd->ioc;
3122
3123 return snprintf(buf, PAGE_SIZE, "%02xh\n",ioc->nvdata_version_default);
3124}
3125static DEVICE_ATTR(version_nvdata_default, S_IRUGO,
3126 mptscsih_version_nvdata_default_show, NULL);
3127
3128static ssize_t
3129mptscsih_board_name_show(struct device *dev, struct device_attribute *attr,
3130 char *buf)
3131{
3132 struct Scsi_Host *host = class_to_shost(dev);
3133 MPT_SCSI_HOST *hd = shost_priv(host);
3134 MPT_ADAPTER *ioc = hd->ioc;
3135
3136 return snprintf(buf, PAGE_SIZE, "%s\n", ioc->board_name);
3137}
3138static DEVICE_ATTR(board_name, S_IRUGO, mptscsih_board_name_show, NULL);
3139
3140static ssize_t
3141mptscsih_board_assembly_show(struct device *dev,
3142 struct device_attribute *attr, char *buf)
3143{
3144 struct Scsi_Host *host = class_to_shost(dev);
3145 MPT_SCSI_HOST *hd = shost_priv(host);
3146 MPT_ADAPTER *ioc = hd->ioc;
3147
3148 return snprintf(buf, PAGE_SIZE, "%s\n", ioc->board_assembly);
3149}
3150static DEVICE_ATTR(board_assembly, S_IRUGO,
3151 mptscsih_board_assembly_show, NULL);
3152
3153static ssize_t
3154mptscsih_board_tracer_show(struct device *dev, struct device_attribute *attr,
3155 char *buf)
3156{
3157 struct Scsi_Host *host = class_to_shost(dev);
3158 MPT_SCSI_HOST *hd = shost_priv(host);
3159 MPT_ADAPTER *ioc = hd->ioc;
3160
3161 return snprintf(buf, PAGE_SIZE, "%s\n", ioc->board_tracer);
3162}
3163static DEVICE_ATTR(board_tracer, S_IRUGO,
3164 mptscsih_board_tracer_show, NULL);
3165
3166static ssize_t
3167mptscsih_io_delay_show(struct device *dev, struct device_attribute *attr,
3168 char *buf)
3169{
3170 struct Scsi_Host *host = class_to_shost(dev);
3171 MPT_SCSI_HOST *hd = shost_priv(host);
3172 MPT_ADAPTER *ioc = hd->ioc;
3173
3174 return snprintf(buf, PAGE_SIZE, "%02d\n", ioc->io_missing_delay);
3175}
3176static DEVICE_ATTR(io_delay, S_IRUGO,
3177 mptscsih_io_delay_show, NULL);
3178
3179static ssize_t
3180mptscsih_device_delay_show(struct device *dev, struct device_attribute *attr,
3181 char *buf)
3182{
3183 struct Scsi_Host *host = class_to_shost(dev);
3184 MPT_SCSI_HOST *hd = shost_priv(host);
3185 MPT_ADAPTER *ioc = hd->ioc;
3186
3187 return snprintf(buf, PAGE_SIZE, "%02d\n", ioc->device_missing_delay);
3188}
3189static DEVICE_ATTR(device_delay, S_IRUGO,
3190 mptscsih_device_delay_show, NULL);
3191
3192static ssize_t
3193mptscsih_debug_level_show(struct device *dev, struct device_attribute *attr,
3194 char *buf)
3195{
3196 struct Scsi_Host *host = class_to_shost(dev);
3197 MPT_SCSI_HOST *hd = shost_priv(host);
3198 MPT_ADAPTER *ioc = hd->ioc;
3199
3200 return snprintf(buf, PAGE_SIZE, "%08xh\n", ioc->debug_level);
3201}
3202static ssize_t
3203mptscsih_debug_level_store(struct device *dev, struct device_attribute *attr,
3204 const char *buf, size_t count)
3205{
3206 struct Scsi_Host *host = class_to_shost(dev);
3207 MPT_SCSI_HOST *hd = shost_priv(host);
3208 MPT_ADAPTER *ioc = hd->ioc;
3209 int val = 0;
3210
3211 if (sscanf(buf, "%x", &val) != 1)
3212 return -EINVAL;
3213
3214 ioc->debug_level = val;
3215 printk(MYIOC_s_INFO_FMT "debug_level=%08xh\n",
3216 ioc->name, ioc->debug_level);
3217 return strlen(buf);
3218}
3219static DEVICE_ATTR(debug_level, S_IRUGO | S_IWUSR,
3220 mptscsih_debug_level_show, mptscsih_debug_level_store);
3221
3222struct device_attribute *mptscsih_host_attrs[] = {
3223 &dev_attr_version_fw,
3224 &dev_attr_version_bios,
3225 &dev_attr_version_mpi,
3226 &dev_attr_version_product,
3227 &dev_attr_version_nvdata_persistent,
3228 &dev_attr_version_nvdata_default,
3229 &dev_attr_board_name,
3230 &dev_attr_board_assembly,
3231 &dev_attr_board_tracer,
3232 &dev_attr_io_delay,
3233 &dev_attr_device_delay,
3234 &dev_attr_debug_level,
3235 NULL,
3236};
3237
3238EXPORT_SYMBOL(mptscsih_host_attrs);
3239
3240EXPORT_SYMBOL(mptscsih_remove);
3241EXPORT_SYMBOL(mptscsih_shutdown);
3242#ifdef CONFIG_PM
3243EXPORT_SYMBOL(mptscsih_suspend);
3244EXPORT_SYMBOL(mptscsih_resume);
3245#endif
3246EXPORT_SYMBOL(mptscsih_show_info);
3247EXPORT_SYMBOL(mptscsih_info);
3248EXPORT_SYMBOL(mptscsih_qcmd);
3249EXPORT_SYMBOL(mptscsih_slave_destroy);
3250EXPORT_SYMBOL(mptscsih_slave_configure);
3251EXPORT_SYMBOL(mptscsih_abort);
3252EXPORT_SYMBOL(mptscsih_dev_reset);
3253EXPORT_SYMBOL(mptscsih_bus_reset);
3254EXPORT_SYMBOL(mptscsih_host_reset);
3255EXPORT_SYMBOL(mptscsih_bios_param);
3256EXPORT_SYMBOL(mptscsih_io_done);
3257EXPORT_SYMBOL(mptscsih_taskmgmt_complete);
3258EXPORT_SYMBOL(mptscsih_scandv_complete);
3259EXPORT_SYMBOL(mptscsih_event_process);
3260EXPORT_SYMBOL(mptscsih_ioc_reset);
3261EXPORT_SYMBOL(mptscsih_change_queue_depth);
3262
3263/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/