blob: d142b6b4b9766d0591fb1d351ec7e924df2964c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/message/fusion/mptscsih.c
Prakash, Sathyaf36789e2007-08-14 16:22:54 +05303 * For use with LSI PCI chip/adapter(s)
4 * running LSI Fusion MPT (Message Passing Technology) firmware.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Prakash, Sathyacddc0ab2008-05-21 00:56:41 +05306 * Copyright (c) 1999-2008 LSI Corporation
Eric Moore16d20102007-06-13 16:31:07 -06007 * (mailto:DL-MPTFusionLinux@lsi.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/module.h>
48#include <linux/kernel.h>
49#include <linux/init.h>
50#include <linux/errno.h>
51#include <linux/kdev_t.h>
52#include <linux/blkdev.h>
53#include <linux/delay.h> /* for mdelay */
54#include <linux/interrupt.h> /* needed for in_interrupt() proto */
55#include <linux/reboot.h> /* notifier code */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/workqueue.h>
57
58#include <scsi/scsi.h>
59#include <scsi/scsi_cmnd.h>
60#include <scsi/scsi_device.h>
61#include <scsi/scsi_host.h>
62#include <scsi/scsi_tcq.h>
Moore, Eric Deane0fc15b2005-09-15 13:17:14 -060063#include <scsi/scsi_dbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#include "mptbase.h"
66#include "mptscsih.h"
Eric Moorebf451522006-07-11 17:25:35 -060067#include "lsi/mpi_log_sas.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
70#define my_NAME "Fusion MPT SCSI Host driver"
71#define my_VERSION MPT_LINUX_VERSION_COMMON
72#define MYNAM "mptscsih"
73
74MODULE_AUTHOR(MODULEAUTHOR);
75MODULE_DESCRIPTION(my_NAME);
76MODULE_LICENSE("GPL");
Eric Moore9f4203b2007-01-04 20:47:47 -070077MODULE_VERSION(my_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*
81 * Other private/forward protos...
82 */
Eric Mooree8206382007-09-29 10:16:53 -060083static struct scsi_cmnd * mptscsih_get_scsi_lookup(MPT_ADAPTER *ioc, int i);
84static struct scsi_cmnd * mptscsih_getclear_scsi_lookup(MPT_ADAPTER *ioc, int i);
85static void mptscsih_set_scsi_lookup(MPT_ADAPTER *ioc, int i, struct scsi_cmnd *scmd);
86static int SCPNT_TO_LOOKUP_IDX(MPT_ADAPTER *ioc, struct scsi_cmnd *scmd);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -040087int mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static void mptscsih_report_queue_full(struct scsi_cmnd *sc, SCSIIOReply_t *pScsiReply, SCSIIORequest_t *pScsiReq);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -040089int mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91static int mptscsih_AddSGE(MPT_ADAPTER *ioc, struct scsi_cmnd *SCpnt,
92 SCSIIORequest_t *pReq, int req_idx);
93static void mptscsih_freeChainBuffers(MPT_ADAPTER *ioc, int req_idx);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -040094static void mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SCSIIOReply_t *pScsiReply);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static int mptscsih_tm_pending_wait(MPT_SCSI_HOST * hd);
96static int mptscsih_tm_wait_for_completion(MPT_SCSI_HOST * hd, ulong timeout );
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Eric Moore793955f2007-01-29 09:42:20 -070098static int mptscsih_IssueTaskMgmt(MPT_SCSI_HOST *hd, u8 type, u8 channel, u8 id, int lun, int ctx2abort, ulong timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -0400100int mptscsih_ioc_reset(MPT_ADAPTER *ioc, int post_reset);
101int mptscsih_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -0400103int mptscsih_scandv_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int mptscsih_do_cmd(MPT_SCSI_HOST *hd, INTERNAL_CMD *iocmd);
Moore, Eric Deanc7c82982005-11-16 18:54:25 -0700105static void mptscsih_synchronize_cache(MPT_SCSI_HOST *hd, VirtDevice *vdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -0400107void mptscsih_remove(struct pci_dev *);
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -0700108void mptscsih_shutdown(struct pci_dev *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_PM
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -0400110int mptscsih_suspend(struct pci_dev *pdev, pm_message_t state);
111int mptscsih_resume(struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#endif
113
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +0900114#define SNS_LEN(scp) SCSI_SENSE_BUFFERSIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
117/**
118 * mptscsih_add_sge - Place a simple SGE at address pAddr.
119 * @pAddr: virtual address for SGE
120 * @flagslength: SGE flags and data transfer length
121 * @dma_addr: Physical address
122 *
123 * This routine places a MPT request frame back on the MPT adapter's
124 * FreeQ.
125 */
126static inline void
127mptscsih_add_sge(char *pAddr, u32 flagslength, dma_addr_t dma_addr)
128{
129 if (sizeof(dma_addr_t) == sizeof(u64)) {
130 SGESimple64_t *pSge = (SGESimple64_t *) pAddr;
131 u32 tmp = dma_addr & 0xFFFFFFFF;
132
133 pSge->FlagsLength = cpu_to_le32(flagslength);
134 pSge->Address.Low = cpu_to_le32(tmp);
135 tmp = (u32) ((u64)dma_addr >> 32);
136 pSge->Address.High = cpu_to_le32(tmp);
137
138 } else {
139 SGESimple32_t *pSge = (SGESimple32_t *) pAddr;
140 pSge->FlagsLength = cpu_to_le32(flagslength);
141 pSge->Address = cpu_to_le32(dma_addr);
142 }
143} /* mptscsih_add_sge() */
144
145/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
146/**
147 * mptscsih_add_chain - Place a chain SGE at address pAddr.
148 * @pAddr: virtual address for SGE
149 * @next: nextChainOffset value (u32's)
150 * @length: length of next SGL segment
151 * @dma_addr: Physical address
152 *
153 * This routine places a MPT request frame back on the MPT adapter's
154 * FreeQ.
155 */
156static inline void
157mptscsih_add_chain(char *pAddr, u8 next, u16 length, dma_addr_t dma_addr)
158{
159 if (sizeof(dma_addr_t) == sizeof(u64)) {
160 SGEChain64_t *pChain = (SGEChain64_t *) pAddr;
161 u32 tmp = dma_addr & 0xFFFFFFFF;
162
163 pChain->Length = cpu_to_le16(length);
164 pChain->Flags = MPI_SGE_FLAGS_CHAIN_ELEMENT | mpt_addr_size();
165
166 pChain->NextChainOffset = next;
167
168 pChain->Address.Low = cpu_to_le32(tmp);
169 tmp = (u32) ((u64)dma_addr >> 32);
170 pChain->Address.High = cpu_to_le32(tmp);
171 } else {
172 SGEChain32_t *pChain = (SGEChain32_t *) pAddr;
173 pChain->Length = cpu_to_le16(length);
174 pChain->Flags = MPI_SGE_FLAGS_CHAIN_ELEMENT | mpt_addr_size();
175 pChain->NextChainOffset = next;
176 pChain->Address = cpu_to_le32(dma_addr);
177 }
178} /* mptscsih_add_chain() */
179
180/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
181/*
182 * mptscsih_getFreeChainBuffer - Function to get a free chain
183 * from the MPT_SCSI_HOST FreeChainQ.
184 * @ioc: Pointer to MPT_ADAPTER structure
185 * @req_idx: Index of the SCSI IO request frame. (output)
186 *
187 * return SUCCESS or FAILED
188 */
189static inline int
190mptscsih_getFreeChainBuffer(MPT_ADAPTER *ioc, int *retIndex)
191{
192 MPT_FRAME_HDR *chainBuf;
193 unsigned long flags;
194 int rc;
195 int chain_idx;
196
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530197 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT "getFreeChainBuffer called\n",
Eric Moore29dd3602007-09-14 18:46:51 -0600198 ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 spin_lock_irqsave(&ioc->FreeQlock, flags);
200 if (!list_empty(&ioc->FreeChainQ)) {
201 int offset;
202
203 chainBuf = list_entry(ioc->FreeChainQ.next, MPT_FRAME_HDR,
204 u.frame.linkage.list);
205 list_del(&chainBuf->u.frame.linkage.list);
206 offset = (u8 *)chainBuf - (u8 *)ioc->ChainBuffer;
207 chain_idx = offset / ioc->req_sz;
208 rc = SUCCESS;
Eric Moore29dd3602007-09-14 18:46:51 -0600209 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT
210 "getFreeChainBuffer chainBuf=%p ChainBuffer=%p offset=%d chain_idx=%d\n",
211 ioc->name, chainBuf, ioc->ChainBuffer, offset, chain_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 } else {
213 rc = FAILED;
214 chain_idx = MPT_HOST_NO_CHAIN;
Eric Moore29dd3602007-09-14 18:46:51 -0600215 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT "getFreeChainBuffer failed\n",
216 ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
219
220 *retIndex = chain_idx;
221 return rc;
222} /* mptscsih_getFreeChainBuffer() */
223
224/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
225/*
226 * mptscsih_AddSGE - Add a SGE (plus chain buffers) to the
227 * SCSIIORequest_t Message Frame.
228 * @ioc: Pointer to MPT_ADAPTER structure
229 * @SCpnt: Pointer to scsi_cmnd structure
230 * @pReq: Pointer to SCSIIORequest_t structure
231 *
232 * Returns ...
233 */
234static int
235mptscsih_AddSGE(MPT_ADAPTER *ioc, struct scsi_cmnd *SCpnt,
236 SCSIIORequest_t *pReq, int req_idx)
237{
238 char *psge;
239 char *chainSge;
240 struct scatterlist *sg;
241 int frm_sz;
242 int sges_left, sg_done;
243 int chain_idx = MPT_HOST_NO_CHAIN;
244 int sgeOffset;
245 int numSgeSlots, numSgeThisFrame;
246 u32 sgflags, sgdir, thisxfer = 0;
247 int chain_dma_off = 0;
248 int newIndex;
249 int ii;
250 dma_addr_t v2;
251 u32 RequestNB;
252
253 sgdir = le32_to_cpu(pReq->Control) & MPI_SCSIIO_CONTROL_DATADIRECTION_MASK;
254 if (sgdir == MPI_SCSIIO_CONTROL_WRITE) {
255 sgdir = MPT_TRANSFER_HOST_TO_IOC;
256 } else {
257 sgdir = MPT_TRANSFER_IOC_TO_HOST;
258 }
259
260 psge = (char *) &pReq->SGL;
261 frm_sz = ioc->req_sz;
262
263 /* Map the data portion, if any.
264 * sges_left = 0 if no data transfer.
265 */
FUJITA Tomonori1928d732007-05-26 00:37:15 +0900266 sges_left = scsi_dma_map(SCpnt);
267 if (sges_left < 0)
268 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /* Handle the SG case.
271 */
FUJITA Tomonori1928d732007-05-26 00:37:15 +0900272 sg = scsi_sglist(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 sg_done = 0;
274 sgeOffset = sizeof(SCSIIORequest_t) - sizeof(SGE_IO_UNION);
275 chainSge = NULL;
276
277 /* Prior to entering this loop - the following must be set
278 * current MF: sgeOffset (bytes)
279 * chainSge (Null if original MF is not a chain buffer)
280 * sg_done (num SGE done for this MF)
281 */
282
283nextSGEset:
284 numSgeSlots = ((frm_sz - sgeOffset) / (sizeof(u32) + sizeof(dma_addr_t)) );
285 numSgeThisFrame = (sges_left < numSgeSlots) ? sges_left : numSgeSlots;
286
287 sgflags = MPT_SGE_FLAGS_SIMPLE_ELEMENT | MPT_SGE_FLAGS_ADDRESSING | sgdir;
288
289 /* Get first (num - 1) SG elements
290 * Skip any SG entries with a length of 0
291 * NOTE: at finish, sg and psge pointed to NEXT data/location positions
292 */
293 for (ii=0; ii < (numSgeThisFrame-1); ii++) {
294 thisxfer = sg_dma_len(sg);
295 if (thisxfer == 0) {
Jens Axboeed17b032007-07-16 15:30:33 +0200296 sg = sg_next(sg); /* Get next SG element from the OS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 sg_done++;
298 continue;
299 }
300
301 v2 = sg_dma_address(sg);
302 mptscsih_add_sge(psge, sgflags | thisxfer, v2);
303
Jens Axboeed17b032007-07-16 15:30:33 +0200304 sg = sg_next(sg); /* Get next SG element from the OS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 psge += (sizeof(u32) + sizeof(dma_addr_t));
306 sgeOffset += (sizeof(u32) + sizeof(dma_addr_t));
307 sg_done++;
308 }
309
310 if (numSgeThisFrame == sges_left) {
311 /* Add last element, end of buffer and end of list flags.
312 */
313 sgflags |= MPT_SGE_FLAGS_LAST_ELEMENT |
314 MPT_SGE_FLAGS_END_OF_BUFFER |
315 MPT_SGE_FLAGS_END_OF_LIST;
316
317 /* Add last SGE and set termination flags.
318 * Note: Last SGE may have a length of 0 - which should be ok.
319 */
320 thisxfer = sg_dma_len(sg);
321
322 v2 = sg_dma_address(sg);
323 mptscsih_add_sge(psge, sgflags | thisxfer, v2);
324 /*
Jens Axboeed17b032007-07-16 15:30:33 +0200325 sg = sg_next(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 psge += (sizeof(u32) + sizeof(dma_addr_t));
327 */
328 sgeOffset += (sizeof(u32) + sizeof(dma_addr_t));
329 sg_done++;
330
331 if (chainSge) {
332 /* The current buffer is a chain buffer,
333 * but there is not another one.
334 * Update the chain element
335 * Offset and Length fields.
336 */
337 mptscsih_add_chain((char *)chainSge, 0, sgeOffset, ioc->ChainBufferDMA + chain_dma_off);
338 } else {
339 /* The current buffer is the original MF
340 * and there is no Chain buffer.
341 */
342 pReq->ChainOffset = 0;
343 RequestNB = (((sgeOffset - 1) >> ioc->NBShiftFactor) + 1) & 0x03;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530344 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 "Single Buffer RequestNB=%x, sgeOffset=%d\n", ioc->name, RequestNB, sgeOffset));
346 ioc->RequestNB[req_idx] = RequestNB;
347 }
348 } else {
349 /* At least one chain buffer is needed.
350 * Complete the first MF
351 * - last SGE element, set the LastElement bit
352 * - set ChainOffset (words) for orig MF
353 * (OR finish previous MF chain buffer)
354 * - update MFStructPtr ChainIndex
355 * - Populate chain element
356 * Also
357 * Loop until done.
358 */
359
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530360 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT "SG: Chain Required! sg done %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 ioc->name, sg_done));
362
363 /* Set LAST_ELEMENT flag for last non-chain element
364 * in the buffer. Since psge points at the NEXT
365 * SGE element, go back one SGE element, update the flags
366 * and reset the pointer. (Note: sgflags & thisxfer are already
367 * set properly).
368 */
369 if (sg_done) {
370 u32 *ptmp = (u32 *) (psge - (sizeof(u32) + sizeof(dma_addr_t)));
371 sgflags = le32_to_cpu(*ptmp);
372 sgflags |= MPT_SGE_FLAGS_LAST_ELEMENT;
373 *ptmp = cpu_to_le32(sgflags);
374 }
375
376 if (chainSge) {
377 /* The current buffer is a chain buffer.
378 * chainSge points to the previous Chain Element.
379 * Update its chain element Offset and Length (must
380 * include chain element size) fields.
381 * Old chain element is now complete.
382 */
383 u8 nextChain = (u8) (sgeOffset >> 2);
384 sgeOffset += (sizeof(u32) + sizeof(dma_addr_t));
385 mptscsih_add_chain((char *)chainSge, nextChain, sgeOffset, ioc->ChainBufferDMA + chain_dma_off);
386 } else {
387 /* The original MF buffer requires a chain buffer -
388 * set the offset.
389 * Last element in this MF is a chain element.
390 */
391 pReq->ChainOffset = (u8) (sgeOffset >> 2);
392 RequestNB = (((sgeOffset - 1) >> ioc->NBShiftFactor) + 1) & 0x03;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530393 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Chain Buffer Needed, RequestNB=%x sgeOffset=%d\n", ioc->name, RequestNB, sgeOffset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 ioc->RequestNB[req_idx] = RequestNB;
395 }
396
397 sges_left -= sg_done;
398
399
400 /* NOTE: psge points to the beginning of the chain element
401 * in current buffer. Get a chain buffer.
402 */
Christoph Hellwigc6678e02005-08-18 16:24:53 +0200403 if ((mptscsih_getFreeChainBuffer(ioc, &newIndex)) == FAILED) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530404 dfailprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Christoph Hellwigc6678e02005-08-18 16:24:53 +0200405 "getFreeChainBuffer FAILED SCSI cmd=%02x (%p)\n",
406 ioc->name, pReq->CDB[0], SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return FAILED;
Christoph Hellwigc6678e02005-08-18 16:24:53 +0200408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 /* Update the tracking arrays.
411 * If chainSge == NULL, update ReqToChain, else ChainToChain
412 */
413 if (chainSge) {
414 ioc->ChainToChain[chain_idx] = newIndex;
415 } else {
416 ioc->ReqToChain[req_idx] = newIndex;
417 }
418 chain_idx = newIndex;
419 chain_dma_off = ioc->req_sz * chain_idx;
420
421 /* Populate the chainSGE for the current buffer.
422 * - Set chain buffer pointer to psge and fill
423 * out the Address and Flags fields.
424 */
425 chainSge = (char *) psge;
Eric Moore29dd3602007-09-14 18:46:51 -0600426 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT " Current buff @ %p (index 0x%x)",
427 ioc->name, psge, req_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /* Start the SGE for the next buffer
430 */
431 psge = (char *) (ioc->ChainBuffer + chain_dma_off);
432 sgeOffset = 0;
433 sg_done = 0;
434
Eric Moore29dd3602007-09-14 18:46:51 -0600435 dsgprintk(ioc, printk(MYIOC_s_DEBUG_FMT " Chain buff @ %p (index 0x%x)\n",
436 ioc->name, psge, chain_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /* Start the SGE for the next buffer
439 */
440
441 goto nextSGEset;
442 }
443
444 return SUCCESS;
445} /* mptscsih_AddSGE() */
446
Eric Moore786899b2006-07-11 17:22:22 -0600447static void
448mptscsih_issue_sep_command(MPT_ADAPTER *ioc, VirtTarget *vtarget,
449 U32 SlotStatus)
450{
451 MPT_FRAME_HDR *mf;
452 SEPRequest_t *SEPMsg;
453
Eric Moorecc78d302007-06-15 17:27:21 -0600454 if (ioc->bus_type != SAS)
455 return;
456
457 /* Not supported for hidden raid components
458 */
459 if (vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT)
Eric Moore786899b2006-07-11 17:22:22 -0600460 return;
461
462 if ((mf = mpt_get_msg_frame(ioc->InternalCtx, ioc)) == NULL) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530463 dfailprintk(ioc, printk(MYIOC_s_WARN_FMT "%s: no msg frames!!\n",
Eric Moore786899b2006-07-11 17:22:22 -0600464 ioc->name,__FUNCTION__));
465 return;
466 }
467
468 SEPMsg = (SEPRequest_t *)mf;
469 SEPMsg->Function = MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR;
Eric Moore793955f2007-01-29 09:42:20 -0700470 SEPMsg->Bus = vtarget->channel;
471 SEPMsg->TargetID = vtarget->id;
Eric Moore786899b2006-07-11 17:22:22 -0600472 SEPMsg->Action = MPI_SEP_REQ_ACTION_WRITE_STATUS;
473 SEPMsg->SlotStatus = SlotStatus;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530474 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Eric Moore793955f2007-01-29 09:42:20 -0700475 "Sending SEP cmd=%x channel=%d id=%d\n",
476 ioc->name, SlotStatus, SEPMsg->Bus, SEPMsg->TargetID));
Eric Moore786899b2006-07-11 17:22:22 -0600477 mpt_put_msg_frame(ioc->DoneCtx, ioc, mf);
478}
479
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530480#ifdef CONFIG_FUSION_LOGGING
Eric Moorec6c727a2007-01-29 09:44:54 -0700481/**
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530482 * mptscsih_info_scsiio - debug print info on reply frame
Eric Moorec6c727a2007-01-29 09:44:54 -0700483 * @ioc: Pointer to MPT_ADAPTER structure
Eric Moorec6c727a2007-01-29 09:44:54 -0700484 * @sc: original scsi cmnd pointer
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530485 * @pScsiReply: Pointer to MPT reply frame
486 *
487 * MPT_DEBUG_REPLY needs to be enabled to obtain this info
Eric Moorec6c727a2007-01-29 09:44:54 -0700488 *
489 * Refer to lsi/mpi.h.
490 **/
491static void
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530492mptscsih_info_scsiio(MPT_ADAPTER *ioc, struct scsi_cmnd *sc, SCSIIOReply_t * pScsiReply)
Eric Moorec6c727a2007-01-29 09:44:54 -0700493{
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530494 char *desc = NULL;
495 char *desc1 = NULL;
496 u16 ioc_status;
497 u8 skey, asc, ascq;
498
499 ioc_status = le16_to_cpu(pScsiReply->IOCStatus) & MPI_IOCSTATUS_MASK;
Eric Moorec6c727a2007-01-29 09:44:54 -0700500
501 switch (ioc_status) {
502
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530503 case MPI_IOCSTATUS_SUCCESS:
504 desc = "success";
Eric Moorec6c727a2007-01-29 09:44:54 -0700505 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530506 case MPI_IOCSTATUS_SCSI_INVALID_BUS:
507 desc = "invalid bus";
Eric Moorec6c727a2007-01-29 09:44:54 -0700508 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530509 case MPI_IOCSTATUS_SCSI_INVALID_TARGETID:
510 desc = "invalid target_id";
Eric Moorec6c727a2007-01-29 09:44:54 -0700511 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530512 case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
513 desc = "device not there";
Eric Moorec6c727a2007-01-29 09:44:54 -0700514 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530515 case MPI_IOCSTATUS_SCSI_DATA_OVERRUN:
516 desc = "data overrun";
Eric Moorec6c727a2007-01-29 09:44:54 -0700517 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530518 case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN:
519 desc = "data underrun";
Eric Moorec6c727a2007-01-29 09:44:54 -0700520 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530521 case MPI_IOCSTATUS_SCSI_IO_DATA_ERROR:
522 desc = "I/O data error";
Eric Moorec6c727a2007-01-29 09:44:54 -0700523 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530524 case MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR:
525 desc = "protocol error";
Eric Moorec6c727a2007-01-29 09:44:54 -0700526 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530527 case MPI_IOCSTATUS_SCSI_TASK_TERMINATED:
528 desc = "task terminated";
Eric Moorec6c727a2007-01-29 09:44:54 -0700529 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530530 case MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
531 desc = "residual mismatch";
Eric Moorec6c727a2007-01-29 09:44:54 -0700532 break;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530533 case MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
534 desc = "task management failed";
535 break;
536 case MPI_IOCSTATUS_SCSI_IOC_TERMINATED:
537 desc = "IOC terminated";
538 break;
539 case MPI_IOCSTATUS_SCSI_EXT_TERMINATED:
540 desc = "ext terminated";
541 break;
542 default:
543 desc = "";
Eric Moorec6c727a2007-01-29 09:44:54 -0700544 break;
545 }
546
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530547 switch (pScsiReply->SCSIStatus)
548 {
Eric Moorec6c727a2007-01-29 09:44:54 -0700549
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530550 case MPI_SCSI_STATUS_SUCCESS:
551 desc1 = "success";
552 break;
553 case MPI_SCSI_STATUS_CHECK_CONDITION:
554 desc1 = "check condition";
555 break;
556 case MPI_SCSI_STATUS_CONDITION_MET:
557 desc1 = "condition met";
558 break;
559 case MPI_SCSI_STATUS_BUSY:
560 desc1 = "busy";
561 break;
562 case MPI_SCSI_STATUS_INTERMEDIATE:
563 desc1 = "intermediate";
564 break;
565 case MPI_SCSI_STATUS_INTERMEDIATE_CONDMET:
566 desc1 = "intermediate condmet";
567 break;
568 case MPI_SCSI_STATUS_RESERVATION_CONFLICT:
569 desc1 = "reservation conflict";
570 break;
571 case MPI_SCSI_STATUS_COMMAND_TERMINATED:
572 desc1 = "command terminated";
573 break;
574 case MPI_SCSI_STATUS_TASK_SET_FULL:
575 desc1 = "task set full";
576 break;
577 case MPI_SCSI_STATUS_ACA_ACTIVE:
578 desc1 = "aca active";
579 break;
580 case MPI_SCSI_STATUS_FCPEXT_DEVICE_LOGGED_OUT:
581 desc1 = "fcpext device logged out";
582 break;
583 case MPI_SCSI_STATUS_FCPEXT_NO_LINK:
584 desc1 = "fcpext no link";
585 break;
586 case MPI_SCSI_STATUS_FCPEXT_UNASSIGNED:
587 desc1 = "fcpext unassigned";
588 break;
589 default:
590 desc1 = "";
591 break;
592 }
Eric Moorec6c727a2007-01-29 09:44:54 -0700593
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530594 scsi_print_command(sc);
Eric Moore29dd3602007-09-14 18:46:51 -0600595 printk(MYIOC_s_DEBUG_FMT "\tfw_channel = %d, fw_id = %d\n",
596 ioc->name, pScsiReply->Bus, pScsiReply->TargetID);
597 printk(MYIOC_s_DEBUG_FMT "\trequest_len = %d, underflow = %d, "
598 "resid = %d\n", ioc->name, scsi_bufflen(sc), sc->underflow,
599 scsi_get_resid(sc));
600 printk(MYIOC_s_DEBUG_FMT "\ttag = %d, transfer_count = %d, "
601 "sc->result = %08X\n", ioc->name, le16_to_cpu(pScsiReply->TaskTag),
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530602 le32_to_cpu(pScsiReply->TransferCount), sc->result);
Eric Moore29dd3602007-09-14 18:46:51 -0600603 printk(MYIOC_s_DEBUG_FMT "\tiocstatus = %s (0x%04x), "
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530604 "scsi_status = %s (0x%02x), scsi_state = (0x%02x)\n",
Eric Moore29dd3602007-09-14 18:46:51 -0600605 ioc->name, desc, ioc_status, desc1, pScsiReply->SCSIStatus,
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530606 pScsiReply->SCSIState);
607
608 if (pScsiReply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_VALID) {
609 skey = sc->sense_buffer[2] & 0x0F;
610 asc = sc->sense_buffer[12];
611 ascq = sc->sense_buffer[13];
612
Eric Moore29dd3602007-09-14 18:46:51 -0600613 printk(MYIOC_s_DEBUG_FMT "\t[sense_key,asc,ascq]: "
614 "[0x%02x,0x%02x,0x%02x]\n", ioc->name, skey, asc, ascq);
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530615 }
616
617 /*
618 * Look for + dump FCP ResponseInfo[]!
619 */
620 if (pScsiReply->SCSIState & MPI_SCSI_STATE_RESPONSE_INFO_VALID &&
621 pScsiReply->ResponseInfo)
Eric Moore29dd3602007-09-14 18:46:51 -0600622 printk(MYIOC_s_DEBUG_FMT "response_info = %08xh\n",
623 ioc->name, le32_to_cpu(pScsiReply->ResponseInfo));
Eric Moorec6c727a2007-01-29 09:44:54 -0700624}
625#endif
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
628/*
629 * mptscsih_io_done - Main SCSI IO callback routine registered to
630 * Fusion MPT (base) driver
631 * @ioc: Pointer to MPT_ADAPTER structure
632 * @mf: Pointer to original MPT request frame
633 * @r: Pointer to MPT reply frame (NULL if TurboReply)
634 *
635 * This routine is called from mpt.c::mpt_interrupt() at the completion
636 * of any SCSI IO request.
637 * This routine is registered with the Fusion MPT (base) driver at driver
638 * load/init time via the mpt_register() API call.
639 *
640 * Returns 1 indicating alloc'd request frame ptr should be freed.
641 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -0400642int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr)
644{
645 struct scsi_cmnd *sc;
646 MPT_SCSI_HOST *hd;
647 SCSIIORequest_t *pScsiReq;
648 SCSIIOReply_t *pScsiReply;
Moore, Eric2254c862006-01-17 17:06:29 -0700649 u16 req_idx, req_idx_MR;
Eric Moorea69de502007-09-14 18:48:19 -0600650 VirtDevice *vdevice;
Eric Moore786899b2006-07-11 17:22:22 -0600651 VirtTarget *vtarget;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Eric Mooree7eae9f2007-09-29 10:15:59 -0600653 hd = shost_priv(ioc->sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
Moore, Eric2254c862006-01-17 17:06:29 -0700655 req_idx_MR = (mr != NULL) ?
656 le16_to_cpu(mr->u.frame.hwhdr.msgctxu.fld.req_idx) : req_idx;
657 if ((req_idx != req_idx_MR) ||
658 (mf->u.frame.linkage.arg1 == 0xdeadbeaf)) {
659 printk(MYIOC_s_ERR_FMT "Received a mf that was already freed\n",
660 ioc->name);
661 printk (MYIOC_s_ERR_FMT
662 "req_idx=%x req_idx_MR=%x mf=%p mr=%p sc=%p\n",
663 ioc->name, req_idx, req_idx_MR, mf, mr,
Eric Mooree8206382007-09-29 10:16:53 -0600664 mptscsih_get_scsi_lookup(ioc, req_idx_MR));
Moore, Eric2254c862006-01-17 17:06:29 -0700665 return 0;
666 }
667
Eric Mooree8206382007-09-29 10:16:53 -0600668 sc = mptscsih_getclear_scsi_lookup(ioc, req_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (sc == NULL) {
670 MPIHeader_t *hdr = (MPIHeader_t *)mf;
671
672 /* Remark: writeSDP1 will use the ScsiDoneCtx
673 * If a SCSI I/O cmd, device disabled by OS and
674 * completion done. Cannot touch sc struct. Just free mem.
675 */
676 if (hdr->Function == MPI_FUNCTION_SCSI_IO_REQUEST)
677 printk(MYIOC_s_ERR_FMT "NULL ScsiCmd ptr!\n",
678 ioc->name);
679
680 mptscsih_freeChainBuffers(ioc, req_idx);
681 return 1;
682 }
683
Eric Moore3dc0b032006-07-11 17:32:33 -0600684 if ((unsigned char *)mf != sc->host_scribble) {
685 mptscsih_freeChainBuffers(ioc, req_idx);
686 return 1;
687 }
688
689 sc->host_scribble = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 sc->result = DID_OK << 16; /* Set default reply as OK */
691 pScsiReq = (SCSIIORequest_t *) mf;
692 pScsiReply = (SCSIIOReply_t *) mr;
693
Christoph Hellwigc6678e02005-08-18 16:24:53 +0200694 if((ioc->facts.MsgVersion >= MPI_VERSION_01_05) && pScsiReply){
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530695 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Christoph Hellwigc6678e02005-08-18 16:24:53 +0200696 "ScsiDone (mf=%p,mr=%p,sc=%p,idx=%d,task-tag=%d)\n",
697 ioc->name, mf, mr, sc, req_idx, pScsiReply->TaskTag));
698 }else{
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530699 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Christoph Hellwigc6678e02005-08-18 16:24:53 +0200700 "ScsiDone (mf=%p,mr=%p,sc=%p,idx=%d)\n",
701 ioc->name, mf, mr, sc, req_idx));
702 }
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (pScsiReply == NULL) {
705 /* special context reply handling */
706 ;
707 } else {
708 u32 xfer_cnt;
709 u16 status;
710 u8 scsi_state, scsi_status;
Eric Moorec6c727a2007-01-29 09:44:54 -0700711 u32 log_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 status = le16_to_cpu(pScsiReply->IOCStatus) & MPI_IOCSTATUS_MASK;
714 scsi_state = pScsiReply->SCSIState;
715 scsi_status = pScsiReply->SCSIStatus;
716 xfer_cnt = le32_to_cpu(pScsiReply->TransferCount);
FUJITA Tomonori1928d732007-05-26 00:37:15 +0900717 scsi_set_resid(sc, scsi_bufflen(sc) - xfer_cnt);
Eric Moorec6c727a2007-01-29 09:44:54 -0700718 log_info = le32_to_cpu(pScsiReply->IOCLogInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600720 /*
721 * if we get a data underrun indication, yet no data was
722 * transferred and the SCSI status indicates that the
723 * command was never started, change the data underrun
724 * to success
725 */
726 if (status == MPI_IOCSTATUS_SCSI_DATA_UNDERRUN && xfer_cnt == 0 &&
727 (scsi_status == MPI_SCSI_STATUS_BUSY ||
728 scsi_status == MPI_SCSI_STATUS_RESERVATION_CONFLICT ||
729 scsi_status == MPI_SCSI_STATUS_TASK_SET_FULL)) {
730 status = MPI_IOCSTATUS_SUCCESS;
731 }
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (scsi_state & MPI_SCSI_STATE_AUTOSENSE_VALID)
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -0400734 mptscsih_copy_sense_data(sc, hd, mf, pScsiReply);
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 /*
737 * Look for + dump FCP ResponseInfo[]!
738 */
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600739 if (scsi_state & MPI_SCSI_STATE_RESPONSE_INFO_VALID &&
740 pScsiReply->ResponseInfo) {
Eric Moore29dd3602007-09-14 18:46:51 -0600741 printk(MYIOC_s_NOTE_FMT "[%d:%d:%d:%d] "
742 "FCP_ResponseInfo=%08xh\n", ioc->name,
Eric Moorec6c727a2007-01-29 09:44:54 -0700743 sc->device->host->host_no, sc->device->channel,
744 sc->device->id, sc->device->lun,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 le32_to_cpu(pScsiReply->ResponseInfo));
746 }
747
748 switch(status) {
749 case MPI_IOCSTATUS_BUSY: /* 0x0002 */
750 /* CHECKME!
751 * Maybe: DRIVER_BUSY | SUGGEST_RETRY | DID_SOFT_ERROR (retry)
752 * But not: DID_BUS_BUSY lest one risk
753 * killing interrupt handler:-(
754 */
755 sc->result = SAM_STAT_BUSY;
756 break;
757
758 case MPI_IOCSTATUS_SCSI_INVALID_BUS: /* 0x0041 */
759 case MPI_IOCSTATUS_SCSI_INVALID_TARGETID: /* 0x0042 */
760 sc->result = DID_BAD_TARGET << 16;
761 break;
762
763 case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE: /* 0x0043 */
764 /* Spoof to SCSI Selection Timeout! */
Moore, Eric65207fe2006-04-21 16:14:35 -0600765 if (ioc->bus_type != FC)
766 sc->result = DID_NO_CONNECT << 16;
767 /* else fibre, just stall until rescan event */
768 else
769 sc->result = DID_REQUEUE << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 if (hd->sel_timeout[pScsiReq->TargetID] < 0xFFFF)
772 hd->sel_timeout[pScsiReq->TargetID]++;
Eric Moore786899b2006-07-11 17:22:22 -0600773
Eric Moorea69de502007-09-14 18:48:19 -0600774 vdevice = sc->device->hostdata;
775 if (!vdevice)
Eric Moore786899b2006-07-11 17:22:22 -0600776 break;
Eric Moorea69de502007-09-14 18:48:19 -0600777 vtarget = vdevice->vtarget;
Eric Moore786899b2006-07-11 17:22:22 -0600778 if (vtarget->tflags & MPT_TARGET_FLAGS_LED_ON) {
779 mptscsih_issue_sep_command(ioc, vtarget,
780 MPI_SEP_REQ_SLOTSTATUS_UNCONFIGURED);
781 vtarget->tflags &= ~MPT_TARGET_FLAGS_LED_ON;
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 break;
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 case MPI_IOCSTATUS_SCSI_IOC_TERMINATED: /* 0x004B */
Eric Moorebf451522006-07-11 17:25:35 -0600786 if ( ioc->bus_type == SAS ) {
787 u16 ioc_status = le16_to_cpu(pScsiReply->IOCStatus);
788 if (ioc_status & MPI_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE) {
Eric Moorec6c727a2007-01-29 09:44:54 -0700789 if ((log_info & SAS_LOGINFO_MASK)
790 == SAS_LOGINFO_NEXUS_LOSS) {
Eric Moorebf451522006-07-11 17:25:35 -0600791 sc->result = (DID_BUS_BUSY << 16);
792 break;
793 }
794 }
Eric Moore86dd4242007-01-04 20:44:01 -0700795 } else if (ioc->bus_type == FC) {
796 /*
797 * The FC IOC may kill a request for variety of
798 * reasons, some of which may be recovered by a
799 * retry, some which are unlikely to be
800 * recovered. Return DID_ERROR instead of
801 * DID_RESET to permit retry of the command,
802 * just not an infinite number of them
803 */
804 sc->result = DID_ERROR << 16;
805 break;
Eric Moorebf451522006-07-11 17:25:35 -0600806 }
807
808 /*
809 * Allow non-SAS & non-NEXUS_LOSS to drop into below code
810 */
811
812 case MPI_IOCSTATUS_SCSI_TASK_TERMINATED: /* 0x0048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 case MPI_IOCSTATUS_SCSI_EXT_TERMINATED: /* 0x004C */
814 /* Linux handles an unsolicited DID_RESET better
815 * than an unsolicited DID_ABORT.
816 */
817 sc->result = DID_RESET << 16;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 break;
820
821 case MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH: /* 0x0049 */
FUJITA Tomonori1928d732007-05-26 00:37:15 +0900822 scsi_set_resid(sc, scsi_bufflen(sc) - xfer_cnt);
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600823 if((xfer_cnt==0)||(sc->underflow > xfer_cnt))
824 sc->result=DID_SOFT_ERROR << 16;
825 else /* Sufficient data transfer occurred */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 sc->result = (DID_OK << 16) | scsi_status;
Eric Moore29dd3602007-09-14 18:46:51 -0600827 dreplyprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Eric Moorec6c727a2007-01-29 09:44:54 -0700828 "RESIDUAL_MISMATCH: result=%x on channel=%d id=%d\n",
Eric Moore29dd3602007-09-14 18:46:51 -0600829 ioc->name, sc->result, sc->device->channel, sc->device->id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 break;
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -0400831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN: /* 0x0045 */
833 /*
834 * Do upfront check for valid SenseData and give it
835 * precedence!
836 */
837 sc->result = (DID_OK << 16) | scsi_status;
838 if (scsi_state & MPI_SCSI_STATE_AUTOSENSE_VALID) {
839 /* Have already saved the status and sense data
840 */
841 ;
842 } else {
843 if (xfer_cnt < sc->underflow) {
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600844 if (scsi_status == SAM_STAT_BUSY)
845 sc->result = SAM_STAT_BUSY;
846 else
847 sc->result = DID_SOFT_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849 if (scsi_state & (MPI_SCSI_STATE_AUTOSENSE_FAILED | MPI_SCSI_STATE_NO_SCSI_STATUS)) {
850 /* What to do?
851 */
852 sc->result = DID_SOFT_ERROR << 16;
853 }
854 else if (scsi_state & MPI_SCSI_STATE_TERMINATED) {
855 /* Not real sure here either... */
856 sc->result = DID_RESET << 16;
857 }
858 }
859
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530860
Eric Moore29dd3602007-09-14 18:46:51 -0600861 dreplyprintk(ioc, printk(MYIOC_s_DEBUG_FMT
862 " sc->underflow={report ERR if < %02xh bytes xfer'd}\n",
863 ioc->name, sc->underflow));
864 dreplyprintk(ioc, printk(MYIOC_s_DEBUG_FMT
865 " ActBytesXferd=%02xh\n", ioc->name, xfer_cnt));
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* Report Queue Full
868 */
869 if (scsi_status == MPI_SCSI_STATUS_TASK_SET_FULL)
870 mptscsih_report_queue_full(sc, pScsiReply, pScsiReq);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -0400871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 break;
873
Moore, Eric7e551472006-01-16 18:53:21 -0700874 case MPI_IOCSTATUS_SCSI_DATA_OVERRUN: /* 0x0044 */
FUJITA Tomonori1928d732007-05-26 00:37:15 +0900875 scsi_set_resid(sc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 case MPI_IOCSTATUS_SCSI_RECOVERED_ERROR: /* 0x0040 */
877 case MPI_IOCSTATUS_SUCCESS: /* 0x0000 */
Eric Mooread8c31b2007-03-19 10:31:51 -0600878 sc->result = (DID_OK << 16) | scsi_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (scsi_state == 0) {
880 ;
881 } else if (scsi_state & MPI_SCSI_STATE_AUTOSENSE_VALID) {
882 /*
883 * If running against circa 200003dd 909 MPT f/w,
884 * may get this (AUTOSENSE_VALID) for actual TASK_SET_FULL
885 * (QUEUE_FULL) returned from device! --> get 0x0000?128
886 * and with SenseBytes set to 0.
887 */
888 if (pScsiReply->SCSIStatus == MPI_SCSI_STATUS_TASK_SET_FULL)
889 mptscsih_report_queue_full(sc, pScsiReply, pScsiReq);
890
891 }
892 else if (scsi_state &
893 (MPI_SCSI_STATE_AUTOSENSE_FAILED | MPI_SCSI_STATE_NO_SCSI_STATUS)
894 ) {
895 /*
896 * What to do?
897 */
898 sc->result = DID_SOFT_ERROR << 16;
899 }
900 else if (scsi_state & MPI_SCSI_STATE_TERMINATED) {
901 /* Not real sure here either... */
902 sc->result = DID_RESET << 16;
903 }
904 else if (scsi_state & MPI_SCSI_STATE_QUEUE_TAG_REJECTED) {
905 /* Device Inq. data indicates that it supports
906 * QTags, but rejects QTag messages.
907 * This command completed OK.
908 *
909 * Not real sure here either so do nothing... */
910 }
911
912 if (sc->result == MPI_SCSI_STATUS_TASK_SET_FULL)
913 mptscsih_report_queue_full(sc, pScsiReply, pScsiReq);
914
915 /* Add handling of:
916 * Reservation Conflict, Busy,
917 * Command Terminated, CHECK
918 */
919 break;
920
921 case MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR: /* 0x0047 */
922 sc->result = DID_SOFT_ERROR << 16;
923 break;
924
925 case MPI_IOCSTATUS_INVALID_FUNCTION: /* 0x0001 */
926 case MPI_IOCSTATUS_INVALID_SGL: /* 0x0003 */
927 case MPI_IOCSTATUS_INTERNAL_ERROR: /* 0x0004 */
928 case MPI_IOCSTATUS_RESERVED: /* 0x0005 */
929 case MPI_IOCSTATUS_INSUFFICIENT_RESOURCES: /* 0x0006 */
930 case MPI_IOCSTATUS_INVALID_FIELD: /* 0x0007 */
931 case MPI_IOCSTATUS_INVALID_STATE: /* 0x0008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 case MPI_IOCSTATUS_SCSI_IO_DATA_ERROR: /* 0x0046 */
933 case MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED: /* 0x004A */
934 default:
935 /*
936 * What to do?
937 */
938 sc->result = DID_SOFT_ERROR << 16;
939 break;
940
941 } /* switch(status) */
942
Prakash, Sathya6757d6b2007-07-25 11:14:01 +0530943#ifdef CONFIG_FUSION_LOGGING
944 if (sc->result && (ioc->debug_level & MPT_DEBUG_REPLY))
945 mptscsih_info_scsiio(ioc, sc, pScsiReply);
Eric Moorec6c727a2007-01-29 09:44:54 -0700946#endif
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 } /* end of address reply case */
949
950 /* Unmap the DMA buffers, if any. */
FUJITA Tomonori1928d732007-05-26 00:37:15 +0900951 scsi_dma_unmap(sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 sc->scsi_done(sc); /* Issue the command callback */
954
955 /* Free Chain buffers */
956 mptscsih_freeChainBuffers(ioc, req_idx);
957 return 1;
958}
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/*
961 * mptscsih_flush_running_cmds - For each command found, search
962 * Scsi_Host instance taskQ and reply to OS.
963 * Called only if recovering from a FW reload.
964 * @hd: Pointer to a SCSI HOST structure
965 *
966 * Returns: None.
967 *
968 * Must be called while new I/Os are being queued.
969 */
970static void
971mptscsih_flush_running_cmds(MPT_SCSI_HOST *hd)
972{
973 MPT_ADAPTER *ioc = hd->ioc;
Eric Mooree8206382007-09-29 10:16:53 -0600974 struct scsi_cmnd *sc;
975 SCSIIORequest_t *mf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 int ii;
Eric Mooree8206382007-09-29 10:16:53 -0600977 int channel, id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Eric Mooree8206382007-09-29 10:16:53 -0600979 for (ii= 0; ii < ioc->req_depth; ii++) {
980 sc = mptscsih_getclear_scsi_lookup(ioc, ii);
981 if (!sc)
982 continue;
983 mf = (SCSIIORequest_t *)MPT_INDEX_2_MFPTR(ioc, ii);
984 if (!mf)
985 continue;
986 channel = mf->Bus;
987 id = mf->TargetID;
988 mptscsih_freeChainBuffers(ioc, ii);
989 mpt_free_msg_frame(ioc, (MPT_FRAME_HDR *)mf);
990 if ((unsigned char *)mf != sc->host_scribble)
991 continue;
992 scsi_dma_unmap(sc);
993 sc->result = DID_RESET << 16;
994 sc->host_scribble = NULL;
Eric Moorec51d0be2007-09-29 10:17:21 -0600995 sdev_printk(KERN_INFO, sc->device, MYIOC_s_FMT
Eric Mooree8206382007-09-29 10:16:53 -0600996 "completing cmds: fw_channel %d, fw_id %d, sc=%p,"
997 " mf = %p, idx=%x\n", ioc->name, channel, id, sc, mf, ii);
998 sc->scsi_done(sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002/*
1003 * mptscsih_search_running_cmds - Delete any commands associated
1004 * with the specified target and lun. Function called only
1005 * when a lun is disable by mid-layer.
1006 * Do NOT access the referenced scsi_cmnd structure or
1007 * members. Will cause either a paging or NULL ptr error.
Michael Reed05e8ec12006-01-13 14:31:54 -06001008 * (BUT, BUT, BUT, the code does reference it! - mdr)
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07001009 * @hd: Pointer to a SCSI HOST structure
1010 * @vdevice: per device private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 *
1012 * Returns: None.
1013 *
1014 * Called from slave_destroy.
1015 */
1016static void
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07001017mptscsih_search_running_cmds(MPT_SCSI_HOST *hd, VirtDevice *vdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 SCSIIORequest_t *mf = NULL;
1020 int ii;
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001021 struct scsi_cmnd *sc;
Eric Moore793955f2007-01-29 09:42:20 -07001022 struct scsi_lun lun;
Eric Mooree80b0022007-09-14 18:49:03 -06001023 MPT_ADAPTER *ioc = hd->ioc;
Eric Mooree8206382007-09-29 10:16:53 -06001024 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Eric Mooree8206382007-09-29 10:16:53 -06001026 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1027 for (ii = 0; ii < ioc->req_depth; ii++) {
1028 if ((sc = ioc->ScsiLookup[ii]) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Eric Mooree80b0022007-09-14 18:49:03 -06001030 mf = (SCSIIORequest_t *)MPT_INDEX_2_MFPTR(ioc, ii);
Eric Moore3dc0b032006-07-11 17:32:33 -06001031 if (mf == NULL)
1032 continue;
Eric Moorecc78d302007-06-15 17:27:21 -06001033 /* If the device is a hidden raid component, then its
1034 * expected that the mf->function will be RAID_SCSI_IO
1035 */
1036 if (vdevice->vtarget->tflags &
1037 MPT_TARGET_FLAGS_RAID_COMPONENT && mf->Function !=
1038 MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH)
1039 continue;
1040
Eric Moore793955f2007-01-29 09:42:20 -07001041 int_to_scsilun(vdevice->lun, &lun);
1042 if ((mf->Bus != vdevice->vtarget->channel) ||
1043 (mf->TargetID != vdevice->vtarget->id) ||
1044 memcmp(lun.scsi_lun, mf->LUN, 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 continue;
1046
Eric Moore3dc0b032006-07-11 17:32:33 -06001047 if ((unsigned char *)mf != sc->host_scribble)
1048 continue;
Eric Mooree8206382007-09-29 10:16:53 -06001049 ioc->ScsiLookup[ii] = NULL;
1050 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1051 mptscsih_freeChainBuffers(ioc, ii);
1052 mpt_free_msg_frame(ioc, (MPT_FRAME_HDR *)mf);
FUJITA Tomonori1928d732007-05-26 00:37:15 +09001053 scsi_dma_unmap(sc);
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001054 sc->host_scribble = NULL;
1055 sc->result = DID_NO_CONNECT << 16;
Eric Moorec51d0be2007-09-29 10:17:21 -06001056 sdev_printk(KERN_INFO, sc->device, MYIOC_s_FMT "completing cmds: fw_channel %d,"
Eric Mooree80b0022007-09-14 18:49:03 -06001057 "fw_id %d, sc=%p, mf = %p, idx=%x\n", ioc->name, vdevice->vtarget->channel,
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301058 vdevice->vtarget->id, sc, mf, ii);
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001059 sc->scsi_done(sc);
Eric Mooree8206382007-09-29 10:16:53 -06001060 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062 }
Eric Mooree8206382007-09-29 10:16:53 -06001063 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return;
1065}
1066
1067/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1070/*
1071 * mptscsih_report_queue_full - Report QUEUE_FULL status returned
1072 * from a SCSI target device.
1073 * @sc: Pointer to scsi_cmnd structure
1074 * @pScsiReply: Pointer to SCSIIOReply_t
1075 * @pScsiReq: Pointer to original SCSI request
1076 *
1077 * This routine periodically reports QUEUE_FULL status returned from a
1078 * SCSI target device. It reports this to the console via kernel
1079 * printk() API call, not more than once every 10 seconds.
1080 */
1081static void
1082mptscsih_report_queue_full(struct scsi_cmnd *sc, SCSIIOReply_t *pScsiReply, SCSIIORequest_t *pScsiReq)
1083{
1084 long time = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 MPT_SCSI_HOST *hd;
Eric Mooree80b0022007-09-14 18:49:03 -06001086 MPT_ADAPTER *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001088 if (sc->device == NULL)
1089 return;
1090 if (sc->device->host == NULL)
1091 return;
Eric Mooree7eae9f2007-09-29 10:15:59 -06001092 if ((hd = shost_priv(sc->device->host)) == NULL)
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001093 return;
Eric Mooree80b0022007-09-14 18:49:03 -06001094 ioc = hd->ioc;
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001095 if (time - hd->last_queue_full > 10 * HZ) {
Eric Mooree80b0022007-09-14 18:49:03 -06001096 dprintk(ioc, printk(MYIOC_s_WARN_FMT "Device (%d:%d:%d) reported QUEUE_FULL!\n",
1097 ioc->name, 0, sc->device->id, sc->device->lun));
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001098 hd->last_queue_full = time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
1102/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1103/*
1104 * mptscsih_remove - Removed scsi devices
1105 * @pdev: Pointer to pci_dev structure
1106 *
1107 *
1108 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001109void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110mptscsih_remove(struct pci_dev *pdev)
1111{
1112 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1113 struct Scsi_Host *host = ioc->sh;
1114 MPT_SCSI_HOST *hd;
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001115 int sz1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001117 if(!host) {
1118 mpt_detach(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return;
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 scsi_remove_host(host);
1123
Eric Mooree7eae9f2007-09-29 10:15:59 -06001124 if((hd = shost_priv(host)) == NULL)
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001125 return;
1126
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07001127 mptscsih_shutdown(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001129 sz1=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Eric Mooree8206382007-09-29 10:16:53 -06001131 if (ioc->ScsiLookup != NULL) {
Eric Mooree80b0022007-09-14 18:49:03 -06001132 sz1 = ioc->req_depth * sizeof(void *);
Eric Mooree8206382007-09-29 10:16:53 -06001133 kfree(ioc->ScsiLookup);
1134 ioc->ScsiLookup = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136
Eric Mooree80b0022007-09-14 18:49:03 -06001137 dprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001138 "Free'd ScsiLookup (%d) memory\n",
Eric Mooree80b0022007-09-14 18:49:03 -06001139 ioc->name, sz1));
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001140
Moore, Eric Dean d485eb82005-05-11 17:37:26 -06001141 kfree(hd->info_kbuf);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001142
1143 /* NULL the Scsi_Host pointer
1144 */
Eric Mooree80b0022007-09-14 18:49:03 -06001145 ioc->sh = NULL;
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001146
1147 scsi_host_put(host);
1148
1149 mpt_detach(pdev);
Christoph Hellwigc6678e02005-08-18 16:24:53 +02001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
1153/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1154/*
1155 * mptscsih_shutdown - reboot notifier
1156 *
1157 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001158void
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07001159mptscsih_shutdown(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
1163#ifdef CONFIG_PM
1164/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1165/*
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001166 * mptscsih_suspend - Fusion MPT scsi driver suspend routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 *
1168 *
1169 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001170int
Pavel Machek8d189f72005-04-16 15:25:28 -07001171mptscsih_suspend(struct pci_dev *pdev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Prakash, Sathya4d4109d2008-03-07 16:19:50 +05301173 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1174
1175 scsi_block_requests(ioc->sh);
1176 flush_scheduled_work();
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07001177 mptscsih_shutdown(pdev);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001178 return mpt_suspend(pdev,state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1182/*
1183 * mptscsih_resume - Fusion MPT scsi driver resume routine.
1184 *
1185 *
1186 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001187int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188mptscsih_resume(struct pci_dev *pdev)
1189{
Prakash, Sathya4d4109d2008-03-07 16:19:50 +05301190 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1191 int rc;
1192
1193 rc = mpt_resume(pdev);
1194 scsi_unblock_requests(ioc->sh);
1195 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
1198#endif
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1201/**
1202 * mptscsih_info - Return information about MPT adapter
1203 * @SChost: Pointer to Scsi_Host structure
1204 *
1205 * (linux scsi_host_template.info routine)
1206 *
1207 * Returns pointer to buffer where information was written.
1208 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001209const char *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210mptscsih_info(struct Scsi_Host *SChost)
1211{
1212 MPT_SCSI_HOST *h;
1213 int size = 0;
1214
Eric Mooree7eae9f2007-09-29 10:15:59 -06001215 h = shost_priv(SChost);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (h) {
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001218 if (h->info_kbuf == NULL)
1219 if ((h->info_kbuf = kmalloc(0x1000 /* 4Kb */, GFP_KERNEL)) == NULL)
1220 return h->info_kbuf;
1221 h->info_kbuf[0] = '\0';
1222
1223 mpt_print_ioc_summary(h->ioc, h->info_kbuf, &size, 0, 0);
1224 h->info_kbuf[size-1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001227 return h->info_kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
1230struct info_str {
1231 char *buffer;
1232 int length;
1233 int offset;
1234 int pos;
1235};
1236
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001237static void
1238mptscsih_copy_mem_info(struct info_str *info, char *data, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
1240 if (info->pos + len > info->length)
1241 len = info->length - info->pos;
1242
1243 if (info->pos + len < info->offset) {
1244 info->pos += len;
1245 return;
1246 }
1247
1248 if (info->pos < info->offset) {
1249 data += (info->offset - info->pos);
1250 len -= (info->offset - info->pos);
1251 }
1252
1253 if (len > 0) {
1254 memcpy(info->buffer + info->pos, data, len);
1255 info->pos += len;
1256 }
1257}
1258
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001259static int
1260mptscsih_copy_info(struct info_str *info, char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 va_list args;
1263 char buf[81];
1264 int len;
1265
1266 va_start(args, fmt);
1267 len = vsprintf(buf, fmt, args);
1268 va_end(args);
1269
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001270 mptscsih_copy_mem_info(info, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return len;
1272}
1273
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001274static int
1275mptscsih_host_info(MPT_ADAPTER *ioc, char *pbuf, off_t offset, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
1277 struct info_str info;
1278
1279 info.buffer = pbuf;
1280 info.length = len;
1281 info.offset = offset;
1282 info.pos = 0;
1283
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001284 mptscsih_copy_info(&info, "%s: %s, ", ioc->name, ioc->prod_name);
1285 mptscsih_copy_info(&info, "%s%08xh, ", MPT_FW_REV_MAGIC_ID_STRING, ioc->facts.FWVersion.Word);
1286 mptscsih_copy_info(&info, "Ports=%d, ", ioc->facts.NumberOfPorts);
1287 mptscsih_copy_info(&info, "MaxQ=%d\n", ioc->req_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 return ((info.pos > info.offset) ? info.pos - info.offset : 0);
1290}
1291
1292/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1293/**
1294 * mptscsih_proc_info - Return information about MPT adapter
Randy Dunlapd9489fb2006-12-06 20:38:43 -08001295 * @host: scsi host struct
1296 * @buffer: if write, user data; if read, buffer for user
1297 * @start: returns the buffer address
1298 * @offset: if write, 0; if read, the current offset into the buffer from
1299 * the previous read.
1300 * @length: if write, return length;
1301 * @func: write = 1; read = 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 *
1303 * (linux scsi_host_template.info routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001305int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306mptscsih_proc_info(struct Scsi_Host *host, char *buffer, char **start, off_t offset,
1307 int length, int func)
1308{
Eric Mooree7eae9f2007-09-29 10:15:59 -06001309 MPT_SCSI_HOST *hd = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 MPT_ADAPTER *ioc = hd->ioc;
1311 int size = 0;
1312
1313 if (func) {
Christoph Hellwigc6678e02005-08-18 16:24:53 +02001314 /*
1315 * write is not supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 */
1317 } else {
1318 if (start)
1319 *start = buffer;
1320
1321 size = mptscsih_host_info(ioc, buffer, offset, length);
1322 }
1323
1324 return size;
1325}
1326
1327/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1328#define ADD_INDEX_LOG(req_ent) do { } while(0)
1329
1330/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1331/**
1332 * mptscsih_qcmd - Primary Fusion MPT SCSI initiator IO start routine.
1333 * @SCpnt: Pointer to scsi_cmnd structure
1334 * @done: Pointer SCSI mid-layer IO completion function
1335 *
1336 * (linux scsi_host_template.queuecommand routine)
1337 * This is the primary SCSI IO start routine. Create a MPI SCSIIORequest
1338 * from a linux scsi_cmnd request and send it to the IOC.
1339 *
1340 * Returns 0. (rtn value discarded by linux scsi mid-layer)
1341 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001342int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343mptscsih_qcmd(struct scsi_cmnd *SCpnt, void (*done)(struct scsi_cmnd *))
1344{
1345 MPT_SCSI_HOST *hd;
1346 MPT_FRAME_HDR *mf;
1347 SCSIIORequest_t *pScsiReq;
Eric Moorea69de502007-09-14 18:48:19 -06001348 VirtDevice *vdevice = SCpnt->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 int lun;
1350 u32 datalen;
1351 u32 scsictl;
1352 u32 scsidir;
1353 u32 cmd_len;
1354 int my_idx;
1355 int ii;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301356 MPT_ADAPTER *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Eric Mooree7eae9f2007-09-29 10:15:59 -06001358 hd = shost_priv(SCpnt->device->host);
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301359 ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 lun = SCpnt->device->lun;
1361 SCpnt->scsi_done = done;
1362
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301363 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT "qcmd: SCpnt=%p, done()=%p\n",
1364 ioc->name, SCpnt, done));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 if (hd->resetPending) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301367 dtmprintk(ioc, printk(MYIOC_s_WARN_FMT "qcmd: SCpnt=%p timeout + 60HZ\n",
1368 ioc->name, SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return SCSI_MLQUEUE_HOST_BUSY;
1370 }
1371
1372 /*
1373 * Put together a MPT SCSI request...
1374 */
Eric Mooree80b0022007-09-14 18:49:03 -06001375 if ((mf = mpt_get_msg_frame(ioc->DoneCtx, ioc)) == NULL) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301376 dprintk(ioc, printk(MYIOC_s_WARN_FMT "QueueCmd, no msg frames!!\n",
1377 ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return SCSI_MLQUEUE_HOST_BUSY;
1379 }
1380
1381 pScsiReq = (SCSIIORequest_t *) mf;
1382
1383 my_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
1384
1385 ADD_INDEX_LOG(my_idx);
1386
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001387 /* TUR's being issued with scsictl=0x02000000 (DATA_IN)!
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 * Seems we may receive a buffer (datalen>0) even when there
1389 * will be no data transfer! GRRRRR...
1390 */
1391 if (SCpnt->sc_data_direction == DMA_FROM_DEVICE) {
FUJITA Tomonori1928d732007-05-26 00:37:15 +09001392 datalen = scsi_bufflen(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 scsidir = MPI_SCSIIO_CONTROL_READ; /* DATA IN (host<--ioc<--dev) */
1394 } else if (SCpnt->sc_data_direction == DMA_TO_DEVICE) {
FUJITA Tomonori1928d732007-05-26 00:37:15 +09001395 datalen = scsi_bufflen(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 scsidir = MPI_SCSIIO_CONTROL_WRITE; /* DATA OUT (host-->ioc-->dev) */
1397 } else {
1398 datalen = 0;
1399 scsidir = MPI_SCSIIO_CONTROL_NODATATRANSFER;
1400 }
1401
1402 /* Default to untagged. Once a target structure has been allocated,
1403 * use the Inquiry data to determine if device supports tagged.
1404 */
Eric Moorea69de502007-09-14 18:48:19 -06001405 if (vdevice
1406 && (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_Q_YES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 && (SCpnt->device->tagged_supported)) {
1408 scsictl = scsidir | MPI_SCSIIO_CONTROL_SIMPLEQ;
1409 } else {
1410 scsictl = scsidir | MPI_SCSIIO_CONTROL_UNTAGGED;
1411 }
1412
1413 /* Use the above information to set up the message frame
1414 */
Eric Moorea69de502007-09-14 18:48:19 -06001415 pScsiReq->TargetID = (u8) vdevice->vtarget->id;
1416 pScsiReq->Bus = vdevice->vtarget->channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 pScsiReq->ChainOffset = 0;
Eric Moorea69de502007-09-14 18:48:19 -06001418 if (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT)
James Bottomleyc92f2222006-03-01 09:02:49 -06001419 pScsiReq->Function = MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH;
1420 else
1421 pScsiReq->Function = MPI_FUNCTION_SCSI_IO_REQUEST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 pScsiReq->CDBLength = SCpnt->cmd_len;
1423 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
1424 pScsiReq->Reserved = 0;
1425 pScsiReq->MsgFlags = mpt_msg_flags();
Eric Moore793955f2007-01-29 09:42:20 -07001426 int_to_scsilun(SCpnt->device->lun, (struct scsi_lun *)pScsiReq->LUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 pScsiReq->Control = cpu_to_le32(scsictl);
1428
1429 /*
1430 * Write SCSI CDB into the message
1431 */
1432 cmd_len = SCpnt->cmd_len;
1433 for (ii=0; ii < cmd_len; ii++)
1434 pScsiReq->CDB[ii] = SCpnt->cmnd[ii];
1435
1436 for (ii=cmd_len; ii < 16; ii++)
1437 pScsiReq->CDB[ii] = 0;
1438
1439 /* DataLength */
1440 pScsiReq->DataLength = cpu_to_le32(datalen);
1441
1442 /* SenseBuffer low address */
Eric Mooree80b0022007-09-14 18:49:03 -06001443 pScsiReq->SenseBufferLowAddr = cpu_to_le32(ioc->sense_buf_low_dma
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 + (my_idx * MPT_SENSE_BUFFER_ALLOC));
1445
1446 /* Now add the SG list
1447 * Always have a SGE even if null length.
1448 */
1449 if (datalen == 0) {
1450 /* Add a NULL SGE */
1451 mptscsih_add_sge((char *)&pScsiReq->SGL, MPT_SGE_FLAGS_SSIMPLE_READ | 0,
1452 (dma_addr_t) -1);
1453 } else {
1454 /* Add a 32 or 64 bit SGE */
Eric Mooree80b0022007-09-14 18:49:03 -06001455 if (mptscsih_AddSGE(ioc, SCpnt, pScsiReq, my_idx) != SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 goto fail;
1457 }
1458
Eric Moore3dc0b032006-07-11 17:32:33 -06001459 SCpnt->host_scribble = (unsigned char *)mf;
Eric Mooree8206382007-09-29 10:16:53 -06001460 mptscsih_set_scsi_lookup(ioc, my_idx, SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Eric Mooree80b0022007-09-14 18:49:03 -06001462 mpt_put_msg_frame(ioc->DoneCtx, ioc, mf);
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301463 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Issued SCSI cmd (%p) mf=%p idx=%d\n",
1464 ioc->name, SCpnt, mf, my_idx));
Eric Moore29dd3602007-09-14 18:46:51 -06001465 DBG_DUMP_REQUEST_FRAME(ioc, (u32 *)mf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return 0;
1467
1468 fail:
Eric Mooree80b0022007-09-14 18:49:03 -06001469 mptscsih_freeChainBuffers(ioc, my_idx);
1470 mpt_free_msg_frame(ioc, mf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return SCSI_MLQUEUE_HOST_BUSY;
1472}
1473
1474/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1475/*
1476 * mptscsih_freeChainBuffers - Function to free chain buffers associated
1477 * with a SCSI IO request
1478 * @hd: Pointer to the MPT_SCSI_HOST instance
1479 * @req_idx: Index of the SCSI IO request frame.
1480 *
1481 * Called if SG chain buffer allocation fails and mptscsih callbacks.
1482 * No return.
1483 */
1484static void
1485mptscsih_freeChainBuffers(MPT_ADAPTER *ioc, int req_idx)
1486{
1487 MPT_FRAME_HDR *chain;
1488 unsigned long flags;
1489 int chain_idx;
1490 int next;
1491
1492 /* Get the first chain index and reset
1493 * tracker state.
1494 */
1495 chain_idx = ioc->ReqToChain[req_idx];
1496 ioc->ReqToChain[req_idx] = MPT_HOST_NO_CHAIN;
1497
1498 while (chain_idx != MPT_HOST_NO_CHAIN) {
1499
1500 /* Save the next chain buffer index */
1501 next = ioc->ChainToChain[chain_idx];
1502
1503 /* Free this chain buffer and reset
1504 * tracker
1505 */
1506 ioc->ChainToChain[chain_idx] = MPT_HOST_NO_CHAIN;
1507
1508 chain = (MPT_FRAME_HDR *) (ioc->ChainBuffer
1509 + (chain_idx * ioc->req_sz));
1510
1511 spin_lock_irqsave(&ioc->FreeQlock, flags);
1512 list_add_tail(&chain->u.frame.linkage.list, &ioc->FreeChainQ);
1513 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
1514
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301515 dmfprintk(ioc, printk(MYIOC_s_DEBUG_FMT "FreeChainBuffers (index %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 ioc->name, chain_idx));
1517
1518 /* handle next */
1519 chain_idx = next;
1520 }
1521 return;
1522}
1523
1524/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1525/*
1526 * Reset Handling
1527 */
1528
1529/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
Eric Moorecd2c6192007-01-29 09:47:47 -07001530/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 * mptscsih_TMHandler - Generic handler for SCSI Task Management.
Randy Dunlap1544d672007-02-20 11:17:03 -08001532 * @hd: Pointer to MPT SCSI HOST structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 * @type: Task Management type
Randy Dunlap1544d672007-02-20 11:17:03 -08001534 * @channel: channel number for task management
Eric Moore793955f2007-01-29 09:42:20 -07001535 * @id: Logical Target ID for reset (if appropriate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 * @lun: Logical Unit for reset (if appropriate)
1537 * @ctx2abort: Context for the task to be aborted (if appropriate)
Randy Dunlap1544d672007-02-20 11:17:03 -08001538 * @timeout: timeout for task management control
1539 *
1540 * Fall through to mpt_HardResetHandler if: not operational, too many
1541 * failed TM requests or handshake failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 *
1543 * Remark: Currently invoked from a non-interrupt thread (_bh).
1544 *
Randy Dunlap7105a382008-02-29 22:03:27 -08001545 * Note: With old EH code, at most 1 SCSI TaskMgmt function per IOC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 * will be active.
1547 *
Randy Dunlap1544d672007-02-20 11:17:03 -08001548 * Returns 0 for SUCCESS, or %FAILED.
Eric Moorecd2c6192007-01-29 09:47:47 -07001549 **/
James Bottomley663e1aa2006-01-29 12:10:24 -06001550int
Eric Moore793955f2007-01-29 09:42:20 -07001551mptscsih_TMHandler(MPT_SCSI_HOST *hd, u8 type, u8 channel, u8 id, int lun, int ctx2abort, ulong timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
1553 MPT_ADAPTER *ioc;
1554 int rc = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 u32 ioc_raw_state;
1556 unsigned long flags;
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 ioc = hd->ioc;
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301559 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "TMHandler Entered!\n", ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 // SJR - CHECKME - Can we avoid this here?
1562 // (mpt_HardResetHandler has this check...)
1563 spin_lock_irqsave(&ioc->diagLock, flags);
1564 if ((ioc->diagPending) || (ioc->alt_ioc && ioc->alt_ioc->diagPending)) {
1565 spin_unlock_irqrestore(&ioc->diagLock, flags);
1566 return FAILED;
1567 }
1568 spin_unlock_irqrestore(&ioc->diagLock, flags);
1569
1570 /* Wait a fixed amount of time for the TM pending flag to be cleared.
Eric Moorecd2c6192007-01-29 09:47:47 -07001571 * If we time out and not bus reset, then we return a FAILED status
1572 * to the caller.
1573 * The call to mptscsih_tm_pending_wait() will set the pending flag
1574 * if we are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 * successful. Otherwise, reload the FW.
1576 */
1577 if (mptscsih_tm_pending_wait(hd) == FAILED) {
1578 if (type == MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK) {
Eric Moore29dd3602007-09-14 18:46:51 -06001579 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "TMHandler abort: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 "Timed out waiting for last TM (%d) to complete! \n",
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301581 ioc->name, hd->tmPending));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 return FAILED;
1583 } else if (type == MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET) {
Eric Moore29dd3602007-09-14 18:46:51 -06001584 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "TMHandler target "
Eric Moorecd2c6192007-01-29 09:47:47 -07001585 "reset: Timed out waiting for last TM (%d) "
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301586 "to complete! \n", ioc->name,
Eric Moorecd2c6192007-01-29 09:47:47 -07001587 hd->tmPending));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return FAILED;
1589 } else if (type == MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS) {
Eric Moore29dd3602007-09-14 18:46:51 -06001590 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "TMHandler bus reset: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 "Timed out waiting for last TM (%d) to complete! \n",
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301592 ioc->name, hd->tmPending));
Eric Moorecd2c6192007-01-29 09:47:47 -07001593 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595 } else {
Eric Mooree80b0022007-09-14 18:49:03 -06001596 spin_lock_irqsave(&ioc->FreeQlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 hd->tmPending |= (1 << type);
Eric Mooree80b0022007-09-14 18:49:03 -06001598 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600
Eric Mooree80b0022007-09-14 18:49:03 -06001601 ioc_raw_state = mpt_GetIocState(ioc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if ((ioc_raw_state & MPI_IOC_STATE_MASK) != MPI_IOC_STATE_OPERATIONAL) {
1604 printk(MYIOC_s_WARN_FMT
Eric Moorecd2c6192007-01-29 09:47:47 -07001605 "TM Handler for type=%x: IOC Not operational (0x%x)!\n",
1606 ioc->name, type, ioc_raw_state);
Eric Moore29dd3602007-09-14 18:46:51 -06001607 printk(MYIOC_s_WARN_FMT " Issuing HardReset!!\n", ioc->name);
Eric Moorecd2c6192007-01-29 09:47:47 -07001608 if (mpt_HardResetHandler(ioc, CAN_SLEEP) < 0)
Eric Moore29dd3602007-09-14 18:46:51 -06001609 printk(MYIOC_s_WARN_FMT "TMHandler: HardReset "
1610 "FAILED!!\n", ioc->name);
Eric Moorecd2c6192007-01-29 09:47:47 -07001611 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
1613
Eric Moorecd2c6192007-01-29 09:47:47 -07001614 if (ioc_raw_state & MPI_DOORBELL_ACTIVE) {
1615 printk(MYIOC_s_WARN_FMT
1616 "TM Handler for type=%x: ioc_state: "
1617 "DOORBELL_ACTIVE (0x%x)!\n",
1618 ioc->name, type, ioc_raw_state);
1619 return FAILED;
1620 }
1621
1622 /* Isse the Task Mgmt request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 */
Eric Moorecd2c6192007-01-29 09:47:47 -07001624 if (hd->hard_resets < -1)
1625 hd->hard_resets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Eric Moorecd2c6192007-01-29 09:47:47 -07001627 rc = mptscsih_IssueTaskMgmt(hd, type, channel, id, lun,
1628 ctx2abort, timeout);
1629 if (rc)
1630 printk(MYIOC_s_INFO_FMT "Issue of TaskMgmt failed!\n",
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301631 ioc->name);
Eric Moorecd2c6192007-01-29 09:47:47 -07001632 else
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301633 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Issue of TaskMgmt Successful!\n",
1634 ioc->name));
Eric Moore3dc0b032006-07-11 17:32:33 -06001635
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301636 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1637 "TMHandler rc = %d!\n", ioc->name, rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 return rc;
1640}
1641
1642
1643/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
Eric Moorecd2c6192007-01-29 09:47:47 -07001644/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 * mptscsih_IssueTaskMgmt - Generic send Task Management function.
1646 * @hd: Pointer to MPT_SCSI_HOST structure
1647 * @type: Task Management type
Randy Dunlap1544d672007-02-20 11:17:03 -08001648 * @channel: channel number for task management
Eric Moore793955f2007-01-29 09:42:20 -07001649 * @id: Logical Target ID for reset (if appropriate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 * @lun: Logical Unit for reset (if appropriate)
1651 * @ctx2abort: Context for the task to be aborted (if appropriate)
Randy Dunlap1544d672007-02-20 11:17:03 -08001652 * @timeout: timeout for task management control
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 *
1654 * Remark: _HardResetHandler can be invoked from an interrupt thread (timer)
1655 * or a non-interrupt thread. In the former, must not call schedule().
1656 *
1657 * Not all fields are meaningfull for all task types.
1658 *
Eric Moorecd2c6192007-01-29 09:47:47 -07001659 * Returns 0 for SUCCESS, or FAILED.
1660 *
1661 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662static int
Eric Moore793955f2007-01-29 09:42:20 -07001663mptscsih_IssueTaskMgmt(MPT_SCSI_HOST *hd, u8 type, u8 channel, u8 id, int lun, int ctx2abort, ulong timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
1665 MPT_FRAME_HDR *mf;
1666 SCSITaskMgmt_t *pScsiTm;
1667 int ii;
1668 int retval;
Eric Mooree80b0022007-09-14 18:49:03 -06001669 MPT_ADAPTER *ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671 /* Return Fail to calling function if no message frames available.
1672 */
Eric Mooree80b0022007-09-14 18:49:03 -06001673 if ((mf = mpt_get_msg_frame(ioc->TaskCtx, ioc)) == NULL) {
1674 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT "IssueTaskMgmt, no msg frames!!\n",
1675 ioc->name));
Christoph Hellwigc6678e02005-08-18 16:24:53 +02001676 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Eric Mooree80b0022007-09-14 18:49:03 -06001678 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "IssueTaskMgmt request @ %p\n",
1679 ioc->name, mf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 /* Format the Request
1682 */
1683 pScsiTm = (SCSITaskMgmt_t *) mf;
Eric Moore793955f2007-01-29 09:42:20 -07001684 pScsiTm->TargetID = id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 pScsiTm->Bus = channel;
1686 pScsiTm->ChainOffset = 0;
1687 pScsiTm->Function = MPI_FUNCTION_SCSI_TASK_MGMT;
1688
1689 pScsiTm->Reserved = 0;
1690 pScsiTm->TaskType = type;
1691 pScsiTm->Reserved1 = 0;
1692 pScsiTm->MsgFlags = (type == MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS)
1693 ? MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION : 0;
1694
Eric Moore793955f2007-01-29 09:42:20 -07001695 int_to_scsilun(lun, (struct scsi_lun *)pScsiTm->LUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 for (ii=0; ii < 7; ii++)
1698 pScsiTm->Reserved2[ii] = 0;
1699
1700 pScsiTm->TaskMsgContext = ctx2abort;
1701
Eric Mooree80b0022007-09-14 18:49:03 -06001702 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "IssueTaskMgmt: ctx2abort (0x%08x) "
1703 "type=%d\n", ioc->name, ctx2abort, type));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05301705 DBG_DUMP_TM_REQUEST_FRAME(ioc, (u32 *)pScsiTm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Eric Mooree80b0022007-09-14 18:49:03 -06001707 if ((ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q) &&
1708 (ioc->facts.MsgVersion >= MPI_VERSION_01_05))
1709 mpt_put_msg_frame_hi_pri(ioc->TaskCtx, ioc, mf);
Prakash, Sathya7a195f42007-08-14 16:08:40 +05301710 else {
Eric Mooree80b0022007-09-14 18:49:03 -06001711 retval = mpt_send_handshake_request(ioc->TaskCtx, ioc,
Prakash, Sathya7a195f42007-08-14 16:08:40 +05301712 sizeof(SCSITaskMgmt_t), (u32*)pScsiTm, CAN_SLEEP);
1713 if (retval) {
Eric Mooree80b0022007-09-14 18:49:03 -06001714 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT "send_handshake FAILED!"
1715 " (hd %p, ioc %p, mf %p, rc=%d) \n", ioc->name, hd,
1716 ioc, mf, retval));
Prakash, Sathya7a195f42007-08-14 16:08:40 +05301717 goto fail_out;
1718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
1720
1721 if(mptscsih_tm_wait_for_completion(hd, timeout) == FAILED) {
Eric Mooree80b0022007-09-14 18:49:03 -06001722 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT "task management request TIMED OUT!"
1723 " (hd %p, ioc %p, mf %p) \n", ioc->name, hd,
1724 ioc, mf));
1725 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Calling HardReset! \n",
1726 ioc->name));
1727 retval = mpt_HardResetHandler(ioc, CAN_SLEEP);
1728 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "rc=%d \n",
1729 ioc->name, retval));
Eric Moorecd2c6192007-01-29 09:47:47 -07001730 goto fail_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
1732
Eric Moorecd2c6192007-01-29 09:47:47 -07001733 /*
1734 * Handle success case, see if theres a non-zero ioc_status.
1735 */
1736 if (hd->tm_iocstatus == MPI_IOCSTATUS_SUCCESS ||
1737 hd->tm_iocstatus == MPI_IOCSTATUS_SCSI_TASK_TERMINATED ||
1738 hd->tm_iocstatus == MPI_IOCSTATUS_SCSI_IOC_TERMINATED)
1739 retval = 0;
1740 else
1741 retval = FAILED;
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return retval;
Eric Moorecd2c6192007-01-29 09:47:47 -07001744
1745 fail_out:
1746
1747 /*
Joe Perchesfc1323b2008-02-03 17:21:01 +02001748 * Free task management mf, and corresponding tm flags
Eric Moorecd2c6192007-01-29 09:47:47 -07001749 */
Eric Mooree80b0022007-09-14 18:49:03 -06001750 mpt_free_msg_frame(ioc, mf);
Eric Moorecd2c6192007-01-29 09:47:47 -07001751 hd->tmPending = 0;
1752 hd->tmState = TM_STATE_NONE;
1753 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754}
1755
Christoph Hellwigd66c7a02006-01-17 13:43:14 +00001756static int
1757mptscsih_get_tm_timeout(MPT_ADAPTER *ioc)
1758{
1759 switch (ioc->bus_type) {
1760 case FC:
1761 return 40;
1762 case SAS:
1763 return 10;
1764 case SPI:
1765 default:
1766 return 2;
1767 }
1768}
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1771/**
1772 * mptscsih_abort - Abort linux scsi_cmnd routine, new_eh variant
1773 * @SCpnt: Pointer to scsi_cmnd structure, IO to be aborted
1774 *
1775 * (linux scsi_host_template.eh_abort_handler routine)
1776 *
1777 * Returns SUCCESS or FAILED.
Eric Moorecd2c6192007-01-29 09:47:47 -07001778 **/
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001779int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780mptscsih_abort(struct scsi_cmnd * SCpnt)
1781{
1782 MPT_SCSI_HOST *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 MPT_FRAME_HDR *mf;
1784 u32 ctx2abort;
1785 int scpnt_idx;
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001786 int retval;
Eric Moore958d4a32007-06-15 17:24:14 -06001787 VirtDevice *vdevice;
Eric Moore3dc0b032006-07-11 17:32:33 -06001788 ulong sn = SCpnt->serial_number;
Eric Moore958d4a32007-06-15 17:24:14 -06001789 MPT_ADAPTER *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791 /* If we can't locate our host adapter structure, return FAILED status.
1792 */
Eric Mooree7eae9f2007-09-29 10:15:59 -06001793 if ((hd = shost_priv(SCpnt->device->host)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 SCpnt->result = DID_RESET << 16;
1795 SCpnt->scsi_done(SCpnt);
Eric Moore29dd3602007-09-14 18:46:51 -06001796 printk(KERN_ERR MYNAM ": task abort: "
1797 "can't locate host! (sc=%p)\n", SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return FAILED;
1799 }
1800
Eric Moore958d4a32007-06-15 17:24:14 -06001801 ioc = hd->ioc;
1802 printk(MYIOC_s_INFO_FMT "attempting task abort! (sc=%p)\n",
1803 ioc->name, SCpnt);
1804 scsi_print_command(SCpnt);
1805
1806 vdevice = SCpnt->device->hostdata;
1807 if (!vdevice || !vdevice->vtarget) {
Eric Moore29dd3602007-09-14 18:46:51 -06001808 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1809 "task abort: device has been deleted (sc=%p)\n",
1810 ioc->name, SCpnt));
Eric Moore958d4a32007-06-15 17:24:14 -06001811 SCpnt->result = DID_NO_CONNECT << 16;
1812 SCpnt->scsi_done(SCpnt);
1813 retval = 0;
1814 goto out;
1815 }
1816
Eric Moorecc78d302007-06-15 17:27:21 -06001817 /* Task aborts are not supported for hidden raid components.
1818 */
1819 if (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT) {
Eric Moore29dd3602007-09-14 18:46:51 -06001820 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
1821 "task abort: hidden raid component (sc=%p)\n",
1822 ioc->name, SCpnt));
Eric Moorecc78d302007-06-15 17:27:21 -06001823 SCpnt->result = DID_RESET << 16;
1824 retval = FAILED;
1825 goto out;
1826 }
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 /* Find this command
1829 */
Eric Mooree8206382007-09-29 10:16:53 -06001830 if ((scpnt_idx = SCPNT_TO_LOOKUP_IDX(ioc, SCpnt)) < 0) {
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001831 /* Cmd not found in ScsiLookup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 * Do OS callback.
1833 */
1834 SCpnt->result = DID_RESET << 16;
Eric Moore29dd3602007-09-14 18:46:51 -06001835 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "task abort: "
Eric Moore958d4a32007-06-15 17:24:14 -06001836 "Command not in the active list! (sc=%p)\n", ioc->name,
1837 SCpnt));
1838 retval = 0;
1839 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 }
1841
Eric Moore958d4a32007-06-15 17:24:14 -06001842 if (hd->resetPending) {
1843 retval = FAILED;
1844 goto out;
1845 }
Moore, Eric65207fe2006-04-21 16:14:35 -06001846
1847 if (hd->timeouts < -1)
1848 hd->timeouts++;
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 /* Most important! Set TaskMsgContext to SCpnt's MsgContext!
1851 * (the IO to be ABORT'd)
1852 *
1853 * NOTE: Since we do not byteswap MsgContext, we do not
1854 * swap it here either. It is an opaque cookie to
1855 * the controller, so it does not matter. -DaveM
1856 */
Eric Mooree80b0022007-09-14 18:49:03 -06001857 mf = MPT_INDEX_2_MFPTR(ioc, scpnt_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 ctx2abort = mf->u.frame.hwhdr.msgctxu.MsgContext;
1859
1860 hd->abortSCpnt = SCpnt;
1861
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001862 retval = mptscsih_TMHandler(hd, MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK,
Eric Moore958d4a32007-06-15 17:24:14 -06001863 vdevice->vtarget->channel, vdevice->vtarget->id, vdevice->lun,
1864 ctx2abort, mptscsih_get_tm_timeout(ioc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Eric Mooree8206382007-09-29 10:16:53 -06001866 if (SCPNT_TO_LOOKUP_IDX(ioc, SCpnt) == scpnt_idx &&
Eric Moorecd2c6192007-01-29 09:47:47 -07001867 SCpnt->serial_number == sn)
Eric Moore3dc0b032006-07-11 17:32:33 -06001868 retval = FAILED;
Eric Moore3dc0b032006-07-11 17:32:33 -06001869
Eric Moore958d4a32007-06-15 17:24:14 -06001870 out:
1871 printk(MYIOC_s_INFO_FMT "task abort: %s (sc=%p)\n",
1872 ioc->name, ((retval == 0) ? "SUCCESS" : "FAILED" ), SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001874 if (retval == 0)
1875 return SUCCESS;
Eric Moorecd2c6192007-01-29 09:47:47 -07001876 else
1877 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878}
1879
1880/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1881/**
1882 * mptscsih_dev_reset - Perform a SCSI TARGET_RESET! new_eh variant
1883 * @SCpnt: Pointer to scsi_cmnd structure, IO which reset is due to
1884 *
1885 * (linux scsi_host_template.eh_dev_reset_handler routine)
1886 *
1887 * Returns SUCCESS or FAILED.
Eric Moorecd2c6192007-01-29 09:47:47 -07001888 **/
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001889int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890mptscsih_dev_reset(struct scsi_cmnd * SCpnt)
1891{
1892 MPT_SCSI_HOST *hd;
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001893 int retval;
Eric Moore958d4a32007-06-15 17:24:14 -06001894 VirtDevice *vdevice;
1895 MPT_ADAPTER *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 /* If we can't locate our host adapter structure, return FAILED status.
1898 */
Eric Mooree7eae9f2007-09-29 10:15:59 -06001899 if ((hd = shost_priv(SCpnt->device->host)) == NULL){
Eric Moore29dd3602007-09-14 18:46:51 -06001900 printk(KERN_ERR MYNAM ": target reset: "
1901 "Can't locate host! (sc=%p)\n", SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return FAILED;
1903 }
1904
Eric Moore958d4a32007-06-15 17:24:14 -06001905 ioc = hd->ioc;
1906 printk(MYIOC_s_INFO_FMT "attempting target reset! (sc=%p)\n",
1907 ioc->name, SCpnt);
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001908 scsi_print_command(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Eric Moore958d4a32007-06-15 17:24:14 -06001910 if (hd->resetPending) {
1911 retval = FAILED;
1912 goto out;
1913 }
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001914
Eric Moore958d4a32007-06-15 17:24:14 -06001915 vdevice = SCpnt->device->hostdata;
1916 if (!vdevice || !vdevice->vtarget) {
1917 retval = 0;
1918 goto out;
1919 }
1920
Eric Moorecc78d302007-06-15 17:27:21 -06001921 /* Target reset to hidden raid component is not supported
1922 */
1923 if (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT) {
1924 retval = FAILED;
1925 goto out;
1926 }
1927
Eric Moore958d4a32007-06-15 17:24:14 -06001928 retval = mptscsih_TMHandler(hd, MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET,
1929 vdevice->vtarget->channel, vdevice->vtarget->id, 0, 0,
1930 mptscsih_get_tm_timeout(ioc));
1931
1932 out:
1933 printk (MYIOC_s_INFO_FMT "target reset: %s (sc=%p)\n",
1934 ioc->name, ((retval == 0) ? "SUCCESS" : "FAILED" ), SCpnt);
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001935
1936 if (retval == 0)
1937 return SUCCESS;
Eric Moorecd2c6192007-01-29 09:47:47 -07001938 else
1939 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
Eric Moorecd2c6192007-01-29 09:47:47 -07001942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1944/**
1945 * mptscsih_bus_reset - Perform a SCSI BUS_RESET! new_eh variant
1946 * @SCpnt: Pointer to scsi_cmnd structure, IO which reset is due to
1947 *
1948 * (linux scsi_host_template.eh_bus_reset_handler routine)
1949 *
1950 * Returns SUCCESS or FAILED.
Eric Moorecd2c6192007-01-29 09:47:47 -07001951 **/
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001952int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953mptscsih_bus_reset(struct scsi_cmnd * SCpnt)
1954{
1955 MPT_SCSI_HOST *hd;
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001956 int retval;
Eric Moorea69de502007-09-14 18:48:19 -06001957 VirtDevice *vdevice;
Eric Moore958d4a32007-06-15 17:24:14 -06001958 MPT_ADAPTER *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 /* If we can't locate our host adapter structure, return FAILED status.
1961 */
Eric Mooree7eae9f2007-09-29 10:15:59 -06001962 if ((hd = shost_priv(SCpnt->device->host)) == NULL){
Eric Moore29dd3602007-09-14 18:46:51 -06001963 printk(KERN_ERR MYNAM ": bus reset: "
1964 "Can't locate host! (sc=%p)\n", SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 return FAILED;
1966 }
1967
Eric Moore958d4a32007-06-15 17:24:14 -06001968 ioc = hd->ioc;
1969 printk(MYIOC_s_INFO_FMT "attempting bus reset! (sc=%p)\n",
1970 ioc->name, SCpnt);
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001971 scsi_print_command(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 if (hd->timeouts < -1)
1974 hd->timeouts++;
1975
Eric Moorea69de502007-09-14 18:48:19 -06001976 vdevice = SCpnt->device->hostdata;
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001977 retval = mptscsih_TMHandler(hd, MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS,
Eric Moorea69de502007-09-14 18:48:19 -06001978 vdevice->vtarget->channel, 0, 0, 0, mptscsih_get_tm_timeout(ioc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Eric Moore958d4a32007-06-15 17:24:14 -06001980 printk(MYIOC_s_INFO_FMT "bus reset: %s (sc=%p)\n",
1981 ioc->name, ((retval == 0) ? "SUCCESS" : "FAILED" ), SCpnt);
Moore, Eric Dean466544d2005-09-14 18:09:10 -06001982
1983 if (retval == 0)
1984 return SUCCESS;
Eric Moorecd2c6192007-01-29 09:47:47 -07001985 else
1986 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987}
1988
1989/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1990/**
Randy Dunlapd9489fb2006-12-06 20:38:43 -08001991 * mptscsih_host_reset - Perform a SCSI host adapter RESET (new_eh variant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 * @SCpnt: Pointer to scsi_cmnd structure, IO which reset is due to
1993 *
1994 * (linux scsi_host_template.eh_host_reset_handler routine)
1995 *
1996 * Returns SUCCESS or FAILED.
1997 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04001998int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999mptscsih_host_reset(struct scsi_cmnd *SCpnt)
2000{
2001 MPT_SCSI_HOST * hd;
Eric Moore958d4a32007-06-15 17:24:14 -06002002 int retval;
2003 MPT_ADAPTER *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 /* If we can't locate the host to reset, then we failed. */
Eric Mooree7eae9f2007-09-29 10:15:59 -06002006 if ((hd = shost_priv(SCpnt->device->host)) == NULL){
Eric Moore29dd3602007-09-14 18:46:51 -06002007 printk(KERN_ERR MYNAM ": host reset: "
2008 "Can't locate host! (sc=%p)\n", SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return FAILED;
2010 }
2011
Eric Moore958d4a32007-06-15 17:24:14 -06002012 ioc = hd->ioc;
2013 printk(MYIOC_s_INFO_FMT "attempting host reset! (sc=%p)\n",
2014 ioc->name, SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 /* If our attempts to reset the host failed, then return a failed
2017 * status. The host will be taken off line by the SCSI mid-layer.
2018 */
Eric Mooree80b0022007-09-14 18:49:03 -06002019 if (mpt_HardResetHandler(ioc, CAN_SLEEP) < 0) {
Eric Moore958d4a32007-06-15 17:24:14 -06002020 retval = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 } else {
2022 /* Make sure TM pending is cleared and TM state is set to
2023 * NONE.
2024 */
Eric Moore958d4a32007-06-15 17:24:14 -06002025 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 hd->tmPending = 0;
2027 hd->tmState = TM_STATE_NONE;
2028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Eric Moore958d4a32007-06-15 17:24:14 -06002030 printk(MYIOC_s_INFO_FMT "host reset: %s (sc=%p)\n",
2031 ioc->name, ((retval == 0) ? "SUCCESS" : "FAILED" ), SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Eric Moore958d4a32007-06-15 17:24:14 -06002033 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
2036/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2037/**
Randy Dunlapd9489fb2006-12-06 20:38:43 -08002038 * mptscsih_tm_pending_wait - wait for pending task management request to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 * @hd: Pointer to MPT host structure.
2040 *
2041 * Returns {SUCCESS,FAILED}.
2042 */
2043static int
2044mptscsih_tm_pending_wait(MPT_SCSI_HOST * hd)
2045{
2046 unsigned long flags;
2047 int loop_count = 4 * 10; /* Wait 10 seconds */
2048 int status = FAILED;
Eric Mooree80b0022007-09-14 18:49:03 -06002049 MPT_ADAPTER *ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 do {
Eric Mooree80b0022007-09-14 18:49:03 -06002052 spin_lock_irqsave(&ioc->FreeQlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 if (hd->tmState == TM_STATE_NONE) {
2054 hd->tmState = TM_STATE_IN_PROGRESS;
2055 hd->tmPending = 1;
Eric Mooree80b0022007-09-14 18:49:03 -06002056 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
Christoph Hellwigc6678e02005-08-18 16:24:53 +02002057 status = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 break;
2059 }
Eric Mooree80b0022007-09-14 18:49:03 -06002060 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 msleep(250);
2062 } while (--loop_count);
2063
2064 return status;
2065}
2066
2067/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2068/**
2069 * mptscsih_tm_wait_for_completion - wait for completion of TM task
2070 * @hd: Pointer to MPT host structure.
Randy Dunlap1544d672007-02-20 11:17:03 -08002071 * @timeout: timeout value
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 *
2073 * Returns {SUCCESS,FAILED}.
2074 */
2075static int
2076mptscsih_tm_wait_for_completion(MPT_SCSI_HOST * hd, ulong timeout )
2077{
2078 unsigned long flags;
2079 int loop_count = 4 * timeout;
2080 int status = FAILED;
Eric Mooree80b0022007-09-14 18:49:03 -06002081 MPT_ADAPTER *ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 do {
Eric Mooree80b0022007-09-14 18:49:03 -06002084 spin_lock_irqsave(&ioc->FreeQlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if(hd->tmPending == 0) {
2086 status = SUCCESS;
Eric Mooree80b0022007-09-14 18:49:03 -06002087 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 break;
2089 }
Eric Mooree80b0022007-09-14 18:49:03 -06002090 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
Michael Reedd6be06c2006-05-24 15:07:57 -05002091 msleep(250);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 } while (--loop_count);
2093
2094 return status;
2095}
2096
2097/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
Moore, Eric9f63bb72006-01-16 18:53:26 -07002098static void
2099mptscsih_taskmgmt_response_code(MPT_ADAPTER *ioc, u8 response_code)
2100{
2101 char *desc;
2102
2103 switch (response_code) {
2104 case MPI_SCSITASKMGMT_RSP_TM_COMPLETE:
2105 desc = "The task completed.";
2106 break;
2107 case MPI_SCSITASKMGMT_RSP_INVALID_FRAME:
2108 desc = "The IOC received an invalid frame status.";
2109 break;
2110 case MPI_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED:
2111 desc = "The task type is not supported.";
2112 break;
2113 case MPI_SCSITASKMGMT_RSP_TM_FAILED:
2114 desc = "The requested task failed.";
2115 break;
2116 case MPI_SCSITASKMGMT_RSP_TM_SUCCEEDED:
2117 desc = "The task completed successfully.";
2118 break;
2119 case MPI_SCSITASKMGMT_RSP_TM_INVALID_LUN:
2120 desc = "The LUN request is invalid.";
2121 break;
2122 case MPI_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC:
2123 desc = "The task is in the IOC queue and has not been sent to target.";
2124 break;
2125 default:
2126 desc = "unknown";
2127 break;
2128 }
2129 printk(MYIOC_s_INFO_FMT "Response Code(0x%08x): F/W: %s\n",
2130 ioc->name, response_code, desc);
2131}
2132
2133/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134/**
2135 * mptscsih_taskmgmt_complete - Registered with Fusion MPT base driver
2136 * @ioc: Pointer to MPT_ADAPTER structure
2137 * @mf: Pointer to SCSI task mgmt request frame
2138 * @mr: Pointer to SCSI task mgmt reply frame
2139 *
2140 * This routine is called from mptbase.c::mpt_interrupt() at the completion
2141 * of any SCSI task management request.
2142 * This routine is registered with the MPT (base) driver at driver
2143 * load/init time via the mpt_register() API call.
2144 *
2145 * Returns 1 indicating alloc'd request frame ptr should be freed.
Eric Moorecd2c6192007-01-29 09:47:47 -07002146 **/
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002147int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr)
2149{
2150 SCSITaskMgmtReply_t *pScsiTmReply;
2151 SCSITaskMgmt_t *pScsiTmReq;
2152 MPT_SCSI_HOST *hd;
2153 unsigned long flags;
2154 u16 iocstatus;
2155 u8 tmType;
Eric Moorecd2c6192007-01-29 09:47:47 -07002156 u32 termination_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302158 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "TaskMgmt completed (mf=%p,mr=%p)\n",
Eric Moorecd2c6192007-01-29 09:47:47 -07002159 ioc->name, mf, mr));
2160 if (!ioc->sh) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302161 dtmprintk(ioc, printk(MYIOC_s_WARN_FMT
Eric Moorecd2c6192007-01-29 09:47:47 -07002162 "TaskMgmt Complete: NULL Scsi Host Ptr\n", ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 return 1;
2164 }
2165
2166 if (mr == NULL) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302167 dtmprintk(ioc, printk(MYIOC_s_WARN_FMT
Eric Moorecd2c6192007-01-29 09:47:47 -07002168 "ERROR! TaskMgmt Reply: NULL Request %p\n", ioc->name, mf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
2171
Eric Mooree7eae9f2007-09-29 10:15:59 -06002172 hd = shost_priv(ioc->sh);
Eric Moorecd2c6192007-01-29 09:47:47 -07002173 pScsiTmReply = (SCSITaskMgmtReply_t*)mr;
2174 pScsiTmReq = (SCSITaskMgmt_t*)mf;
2175 tmType = pScsiTmReq->TaskType;
2176 iocstatus = le16_to_cpu(pScsiTmReply->IOCStatus) & MPI_IOCSTATUS_MASK;
2177 termination_count = le32_to_cpu(pScsiTmReply->TerminationCount);
2178
2179 if (ioc->facts.MsgVersion >= MPI_VERSION_01_05 &&
2180 pScsiTmReply->ResponseCode)
2181 mptscsih_taskmgmt_response_code(ioc,
2182 pScsiTmReply->ResponseCode);
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302183 DBG_DUMP_TM_REPLY_FRAME(ioc, (u32 *)pScsiTmReply);
Eric Moorecd2c6192007-01-29 09:47:47 -07002184
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302185#ifdef CONFIG_FUSION_LOGGING
2186 if ((ioc->debug_level & MPT_DEBUG_REPLY) ||
2187 (ioc->debug_level & MPT_DEBUG_TM ))
2188 printk("%s: ha=%d [%d:%d:0] task_type=0x%02X "
2189 "iocstatus=0x%04X\n\tloginfo=0x%08X response_code=0x%02X "
2190 "term_cmnds=%d\n", __FUNCTION__, ioc->id, pScsiTmReply->Bus,
2191 pScsiTmReply->TargetID, pScsiTmReq->TaskType,
2192 le16_to_cpu(pScsiTmReply->IOCStatus),
2193 le32_to_cpu(pScsiTmReply->IOCLogInfo),pScsiTmReply->ResponseCode,
2194 le32_to_cpu(pScsiTmReply->TerminationCount));
Eric Moorecd2c6192007-01-29 09:47:47 -07002195#endif
2196 if (!iocstatus) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302197 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT " TaskMgmt SUCCESS\n", ioc->name));
Eric Moorecd2c6192007-01-29 09:47:47 -07002198 hd->abortSCpnt = NULL;
2199 goto out;
2200 }
2201
2202 /* Error? (anything non-zero?) */
2203
2204 /* clear flags and continue.
2205 */
2206 switch (tmType) {
2207
2208 case MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK:
2209 if (termination_count == 1)
2210 iocstatus = MPI_IOCSTATUS_SCSI_TASK_TERMINATED;
2211 hd->abortSCpnt = NULL;
2212 break;
2213
2214 case MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS:
2215
2216 /* If an internal command is present
2217 * or the TM failed - reload the FW.
2218 * FC FW may respond FAILED to an ABORT
2219 */
2220 if (iocstatus == MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED ||
2221 hd->cmdPtr)
2222 if (mpt_HardResetHandler(ioc, NO_SLEEP) < 0)
Eric Moore29dd3602007-09-14 18:46:51 -06002223 printk(MYIOC_s_WARN_FMT " Firmware Reload FAILED!!\n", ioc->name);
Eric Moorecd2c6192007-01-29 09:47:47 -07002224 break;
2225
2226 case MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET:
2227 default:
2228 break;
2229 }
2230
2231 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 spin_lock_irqsave(&ioc->FreeQlock, flags);
2233 hd->tmPending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 hd->tmState = TM_STATE_NONE;
Eric Moorecd2c6192007-01-29 09:47:47 -07002235 hd->tm_iocstatus = iocstatus;
2236 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 return 1;
2239}
2240
2241/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2242/*
2243 * This is anyones guess quite frankly.
2244 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002245int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246mptscsih_bios_param(struct scsi_device * sdev, struct block_device *bdev,
2247 sector_t capacity, int geom[])
2248{
2249 int heads;
2250 int sectors;
2251 sector_t cylinders;
2252 ulong dummy;
2253
2254 heads = 64;
2255 sectors = 32;
2256
2257 dummy = heads * sectors;
2258 cylinders = capacity;
2259 sector_div(cylinders,dummy);
2260
2261 /*
2262 * Handle extended translation size for logical drives
2263 * > 1Gb
2264 */
2265 if ((ulong)capacity >= 0x200000) {
2266 heads = 255;
2267 sectors = 63;
2268 dummy = heads * sectors;
2269 cylinders = capacity;
2270 sector_div(cylinders,dummy);
2271 }
2272
2273 /* return result */
2274 geom[0] = heads;
2275 geom[1] = sectors;
2276 geom[2] = cylinders;
2277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 return 0;
2279}
2280
Moore, Ericf44e5462006-03-14 09:14:21 -07002281/* Search IOC page 3 to determine if this is hidden physical disk
2282 *
2283 */
2284int
Eric Moore793955f2007-01-29 09:42:20 -07002285mptscsih_is_phys_disk(MPT_ADAPTER *ioc, u8 channel, u8 id)
Moore, Ericf44e5462006-03-14 09:14:21 -07002286{
Eric Mooreb506ade2007-01-29 09:45:37 -07002287 struct inactive_raid_component_info *component_info;
Moore, Ericf44e5462006-03-14 09:14:21 -07002288 int i;
Eric Moore793955f2007-01-29 09:42:20 -07002289 int rc = 0;
Moore, Ericf44e5462006-03-14 09:14:21 -07002290
Eric Moore793955f2007-01-29 09:42:20 -07002291 if (!ioc->raid_data.pIocPg3)
2292 goto out;
Moore, Ericf44e5462006-03-14 09:14:21 -07002293 for (i = 0; i < ioc->raid_data.pIocPg3->NumPhysDisks; i++) {
Eric Moore793955f2007-01-29 09:42:20 -07002294 if ((id == ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskID) &&
2295 (channel == ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskBus)) {
2296 rc = 1;
2297 goto out;
2298 }
2299 }
2300
Eric Mooreb506ade2007-01-29 09:45:37 -07002301 /*
2302 * Check inactive list for matching phys disks
2303 */
2304 if (list_empty(&ioc->raid_data.inactive_list))
2305 goto out;
2306
Matthias Kaehlckeed5f6062008-03-09 12:16:27 +01002307 mutex_lock(&ioc->raid_data.inactive_list_mutex);
Eric Mooreb506ade2007-01-29 09:45:37 -07002308 list_for_each_entry(component_info, &ioc->raid_data.inactive_list,
2309 list) {
2310 if ((component_info->d.PhysDiskID == id) &&
2311 (component_info->d.PhysDiskBus == channel))
2312 rc = 1;
2313 }
Matthias Kaehlckeed5f6062008-03-09 12:16:27 +01002314 mutex_unlock(&ioc->raid_data.inactive_list_mutex);
Eric Mooreb506ade2007-01-29 09:45:37 -07002315
Eric Moore793955f2007-01-29 09:42:20 -07002316 out:
2317 return rc;
Moore, Ericf44e5462006-03-14 09:14:21 -07002318}
2319EXPORT_SYMBOL(mptscsih_is_phys_disk);
2320
Eric Moore793955f2007-01-29 09:42:20 -07002321u8
2322mptscsih_raid_id_to_num(MPT_ADAPTER *ioc, u8 channel, u8 id)
James Bottomleyc92f2222006-03-01 09:02:49 -06002323{
Eric Mooreb506ade2007-01-29 09:45:37 -07002324 struct inactive_raid_component_info *component_info;
James Bottomleyc92f2222006-03-01 09:02:49 -06002325 int i;
Eric Moore793955f2007-01-29 09:42:20 -07002326 int rc = -ENXIO;
James Bottomleyc92f2222006-03-01 09:02:49 -06002327
Eric Moore793955f2007-01-29 09:42:20 -07002328 if (!ioc->raid_data.pIocPg3)
2329 goto out;
2330 for (i = 0; i < ioc->raid_data.pIocPg3->NumPhysDisks; i++) {
2331 if ((id == ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskID) &&
2332 (channel == ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskBus)) {
2333 rc = ioc->raid_data.pIocPg3->PhysDisk[i].PhysDiskNum;
2334 goto out;
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002335 }
2336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Eric Mooreb506ade2007-01-29 09:45:37 -07002338 /*
2339 * Check inactive list for matching phys disks
2340 */
2341 if (list_empty(&ioc->raid_data.inactive_list))
2342 goto out;
2343
Matthias Kaehlckeed5f6062008-03-09 12:16:27 +01002344 mutex_lock(&ioc->raid_data.inactive_list_mutex);
Eric Mooreb506ade2007-01-29 09:45:37 -07002345 list_for_each_entry(component_info, &ioc->raid_data.inactive_list,
2346 list) {
2347 if ((component_info->d.PhysDiskID == id) &&
2348 (component_info->d.PhysDiskBus == channel))
2349 rc = component_info->d.PhysDiskNum;
2350 }
Matthias Kaehlckeed5f6062008-03-09 12:16:27 +01002351 mutex_unlock(&ioc->raid_data.inactive_list_mutex);
Eric Mooreb506ade2007-01-29 09:45:37 -07002352
Eric Moore793955f2007-01-29 09:42:20 -07002353 out:
2354 return rc;
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002355}
Eric Moore793955f2007-01-29 09:42:20 -07002356EXPORT_SYMBOL(mptscsih_raid_id_to_num);
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002357
2358/*
2359 * OS entry point to allow for host driver to free allocated memory
2360 * Called if no device present or device being unloaded
2361 */
2362void
2363mptscsih_slave_destroy(struct scsi_device *sdev)
2364{
2365 struct Scsi_Host *host = sdev->host;
Eric Mooree7eae9f2007-09-29 10:15:59 -06002366 MPT_SCSI_HOST *hd = shost_priv(host);
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002367 VirtTarget *vtarget;
2368 VirtDevice *vdevice;
2369 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002371 starget = scsi_target(sdev);
2372 vtarget = starget->hostdata;
2373 vdevice = sdev->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002375 mptscsih_search_running_cmds(hd, vdevice);
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002376 vtarget->num_luns--;
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002377 mptscsih_synchronize_cache(hd, vdevice);
2378 kfree(vdevice);
2379 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
2381
Moore, Eric Dean6e3815b2005-06-24 12:18:57 -06002382/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2383/*
2384 * mptscsih_change_queue_depth - This function will set a devices queue depth
2385 * @sdev: per scsi_device pointer
2386 * @qdepth: requested queue depth
2387 *
2388 * Adding support for new 'change_queue_depth' api.
2389*/
2390int
2391mptscsih_change_queue_depth(struct scsi_device *sdev, int qdepth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
Eric Mooree7eae9f2007-09-29 10:15:59 -06002393 MPT_SCSI_HOST *hd = shost_priv(sdev->host);
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002394 VirtTarget *vtarget;
2395 struct scsi_target *starget;
2396 int max_depth;
2397 int tagged;
Eric Mooree80b0022007-09-14 18:49:03 -06002398 MPT_ADAPTER *ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002400 starget = scsi_target(sdev);
2401 vtarget = starget->hostdata;
Moore, Eric Dean6e3815b2005-06-24 12:18:57 -06002402
Eric Mooree80b0022007-09-14 18:49:03 -06002403 if (ioc->bus_type == SPI) {
James Bottomleyc92f2222006-03-01 09:02:49 -06002404 if (!(vtarget->tflags & MPT_TARGET_FLAGS_Q_YES))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 max_depth = 1;
James Bottomleyc92f2222006-03-01 09:02:49 -06002406 else if (sdev->type == TYPE_DISK &&
2407 vtarget->minSyncFactor <= MPT_ULTRA160)
2408 max_depth = MPT_SCSI_CMD_PER_DEV_HIGH;
2409 else
2410 max_depth = MPT_SCSI_CMD_PER_DEV_LOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 } else
2412 max_depth = MPT_SCSI_CMD_PER_DEV_HIGH;
2413
2414 if (qdepth > max_depth)
2415 qdepth = max_depth;
2416 if (qdepth == 1)
2417 tagged = 0;
2418 else
2419 tagged = MSG_SIMPLE_TAG;
2420
Moore, Eric Dean6e3815b2005-06-24 12:18:57 -06002421 scsi_adjust_queue_depth(sdev, tagged, qdepth);
2422 return sdev->queue_depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423}
2424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425/*
2426 * OS entry point to adjust the queue_depths on a per-device basis.
2427 * Called once per device the bus scan. Use it to force the queue_depth
2428 * member to 1 if a device does not support Q tags.
2429 * Return non-zero if fails.
2430 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002431int
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002432mptscsih_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433{
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002434 struct Scsi_Host *sh = sdev->host;
2435 VirtTarget *vtarget;
2436 VirtDevice *vdevice;
2437 struct scsi_target *starget;
Eric Mooree7eae9f2007-09-29 10:15:59 -06002438 MPT_SCSI_HOST *hd = shost_priv(sh);
Eric Mooree80b0022007-09-14 18:49:03 -06002439 MPT_ADAPTER *ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002441 starget = scsi_target(sdev);
2442 vtarget = starget->hostdata;
2443 vdevice = sdev->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Eric Mooree80b0022007-09-14 18:49:03 -06002445 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Eric Moore793955f2007-01-29 09:42:20 -07002446 "device @ %p, channel=%d, id=%d, lun=%d\n",
Eric Mooree80b0022007-09-14 18:49:03 -06002447 ioc->name, sdev, sdev->channel, sdev->id, sdev->lun));
2448 if (ioc->bus_type == SPI)
2449 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002450 "sdtr %d wdtr %d ppr %d inq length=%d\n",
Eric Mooree80b0022007-09-14 18:49:03 -06002451 ioc->name, sdev->sdtr, sdev->wdtr,
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002452 sdev->ppr, sdev->inquiry_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Eric Moore793955f2007-01-29 09:42:20 -07002454 vdevice->configured_lun = 1;
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002455 mptscsih_change_queue_depth(sdev, MPT_SCSI_CMD_PER_DEV_HIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Eric Mooree80b0022007-09-14 18:49:03 -06002457 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 "Queue depth=%d, tflags=%x\n",
Eric Mooree80b0022007-09-14 18:49:03 -06002459 ioc->name, sdev->queue_depth, vtarget->tflags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Eric Mooree80b0022007-09-14 18:49:03 -06002461 if (ioc->bus_type == SPI)
2462 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002463 "negoFlags=%x, maxOffset=%x, SyncFactor=%x\n",
Eric Mooree80b0022007-09-14 18:49:03 -06002464 ioc->name, vtarget->negoFlags, vtarget->maxOffset,
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002465 vtarget->minSyncFactor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Eric Mooree80b0022007-09-14 18:49:03 -06002467 dsprintk(ioc, printk(MYIOC_s_DEBUG_FMT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 "tagged %d, simple %d, ordered %d\n",
Eric Mooree80b0022007-09-14 18:49:03 -06002469 ioc->name,sdev->tagged_supported, sdev->simple_tags,
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07002470 sdev->ordered_tags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472 return 0;
2473}
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2476/*
2477 * Private routines...
2478 */
2479
2480/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2481/* Utility function to copy sense data from the scsi_cmnd buffer
2482 * to the FC and SCSI target structures.
2483 *
2484 */
2485static void
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002486mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SCSIIOReply_t *pScsiReply)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
Eric Moorea69de502007-09-14 18:48:19 -06002488 VirtDevice *vdevice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 SCSIIORequest_t *pReq;
2490 u32 sense_count = le32_to_cpu(pScsiReply->SenseCount);
Eric Mooree80b0022007-09-14 18:49:03 -06002491 MPT_ADAPTER *ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493 /* Get target structure
2494 */
2495 pReq = (SCSIIORequest_t *) mf;
Eric Moorea69de502007-09-14 18:48:19 -06002496 vdevice = sc->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498 if (sense_count) {
2499 u8 *sense_data;
2500 int req_index;
2501
2502 /* Copy the sense received into the scsi command block. */
2503 req_index = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
Eric Mooree80b0022007-09-14 18:49:03 -06002504 sense_data = ((u8 *)ioc->sense_buf_pool + (req_index * MPT_SENSE_BUFFER_ALLOC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 memcpy(sc->sense_buffer, sense_data, SNS_LEN(sc));
2506
2507 /* Log SMART data (asc = 0x5D, non-IM case only) if required.
2508 */
Eric Mooree80b0022007-09-14 18:49:03 -06002509 if ((ioc->events) && (ioc->eventTypes & (1 << MPI_EVENT_SCSI_DEVICE_STATUS_CHANGE))) {
Eric Moorea69de502007-09-14 18:48:19 -06002510 if ((sense_data[12] == 0x5D) && (vdevice->vtarget->raidVolume == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Moore, Eric5b5ef4f2006-02-02 17:19:40 -07002513 idx = ioc->eventContext % MPTCTL_EVENT_LOG_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 ioc->events[idx].event = MPI_EVENT_SCSI_DEVICE_STATUS_CHANGE;
2515 ioc->events[idx].eventContext = ioc->eventContext;
2516
Dave Jones3d9780b2007-05-21 20:59:47 -04002517 ioc->events[idx].data[0] = (pReq->LUN[1] << 24) |
2518 (MPI_EVENT_SCSI_DEV_STAT_RC_SMART_DATA << 16) |
2519 (sc->device->channel << 8) | sc->device->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Dave Jones3d9780b2007-05-21 20:59:47 -04002521 ioc->events[idx].data[1] = (sense_data[13] << 8) | sense_data[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523 ioc->eventContext++;
Eric Mooree80b0022007-09-14 18:49:03 -06002524 if (ioc->pcidev->vendor ==
Eric Moore786899b2006-07-11 17:22:22 -06002525 PCI_VENDOR_ID_IBM) {
Eric Mooree80b0022007-09-14 18:49:03 -06002526 mptscsih_issue_sep_command(ioc,
Eric Moorea69de502007-09-14 18:48:19 -06002527 vdevice->vtarget, MPI_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT);
2528 vdevice->vtarget->tflags |=
Eric Moore786899b2006-07-11 17:22:22 -06002529 MPT_TARGET_FLAGS_LED_ON;
2530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 }
2532 }
2533 } else {
Eric Mooree80b0022007-09-14 18:49:03 -06002534 dprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Hmmm... SenseData len=0! (?)\n",
2535 ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 }
2537}
2538
Eric Mooree8206382007-09-29 10:16:53 -06002539/**
2540 * mptscsih_get_scsi_lookup
Eric Mooree8206382007-09-29 10:16:53 -06002541 * @ioc: Pointer to MPT_ADAPTER structure
2542 * @i: index into the array
2543 *
Randy Dunlap7105a382008-02-29 22:03:27 -08002544 * retrieves scmd entry from ScsiLookup[] array list
Eric Mooree8206382007-09-29 10:16:53 -06002545 *
Randy Dunlap7105a382008-02-29 22:03:27 -08002546 * Returns the scsi_cmd pointer
Eric Mooree8206382007-09-29 10:16:53 -06002547 **/
2548static struct scsi_cmnd *
2549mptscsih_get_scsi_lookup(MPT_ADAPTER *ioc, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
Eric Mooree8206382007-09-29 10:16:53 -06002551 unsigned long flags;
2552 struct scsi_cmnd *scmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Eric Mooree8206382007-09-29 10:16:53 -06002554 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
2555 scmd = ioc->ScsiLookup[i];
2556 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Eric Mooree8206382007-09-29 10:16:53 -06002558 return scmd;
2559}
2560
2561/**
2562 * mptscsih_getclear_scsi_lookup
Eric Mooree8206382007-09-29 10:16:53 -06002563 * @ioc: Pointer to MPT_ADAPTER structure
2564 * @i: index into the array
2565 *
Randy Dunlap7105a382008-02-29 22:03:27 -08002566 * retrieves and clears scmd entry from ScsiLookup[] array list
Eric Mooree8206382007-09-29 10:16:53 -06002567 *
Randy Dunlap7105a382008-02-29 22:03:27 -08002568 * Returns the scsi_cmd pointer
Eric Mooree8206382007-09-29 10:16:53 -06002569 **/
2570static struct scsi_cmnd *
2571mptscsih_getclear_scsi_lookup(MPT_ADAPTER *ioc, int i)
2572{
2573 unsigned long flags;
2574 struct scsi_cmnd *scmd;
2575
2576 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
2577 scmd = ioc->ScsiLookup[i];
2578 ioc->ScsiLookup[i] = NULL;
2579 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
2580
2581 return scmd;
2582}
2583
2584/**
2585 * mptscsih_set_scsi_lookup
2586 *
2587 * writes a scmd entry into the ScsiLookup[] array list
2588 *
2589 * @ioc: Pointer to MPT_ADAPTER structure
2590 * @i: index into the array
2591 * @scmd: scsi_cmnd pointer
2592 *
2593 **/
2594static void
2595mptscsih_set_scsi_lookup(MPT_ADAPTER *ioc, int i, struct scsi_cmnd *scmd)
2596{
2597 unsigned long flags;
2598
2599 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
2600 ioc->ScsiLookup[i] = scmd;
2601 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
2602}
2603
2604/**
Randy Dunlap23f9b752007-10-15 17:29:33 -07002605 * SCPNT_TO_LOOKUP_IDX - searches for a given scmd in the ScsiLookup[] array list
Eric Mooree8206382007-09-29 10:16:53 -06002606 * @ioc: Pointer to MPT_ADAPTER structure
Randy Dunlap23f9b752007-10-15 17:29:33 -07002607 * @sc: scsi_cmnd pointer
2608 */
Eric Mooree8206382007-09-29 10:16:53 -06002609static int
2610SCPNT_TO_LOOKUP_IDX(MPT_ADAPTER *ioc, struct scsi_cmnd *sc)
2611{
2612 unsigned long flags;
2613 int i, index=-1;
2614
2615 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
2616 for (i = 0; i < ioc->req_depth; i++) {
2617 if (ioc->ScsiLookup[i] == sc) {
2618 index = i;
2619 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 }
2621 }
2622
Eric Mooree8206382007-09-29 10:16:53 -06002623 out:
2624 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
2625 return index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626}
2627
2628/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002629int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630mptscsih_ioc_reset(MPT_ADAPTER *ioc, int reset_phase)
2631{
2632 MPT_SCSI_HOST *hd;
2633 unsigned long flags;
2634
Eric Moore29dd3602007-09-14 18:46:51 -06002635 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2636 ": IOC %s_reset routed to SCSI host driver!\n",
2637 ioc->name, reset_phase==MPT_IOC_SETUP_RESET ? "setup" : (
2638 reset_phase==MPT_IOC_PRE_RESET ? "pre" : "post")));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
2640 /* If a FW reload request arrives after base installed but
2641 * before all scsi hosts have been attached, then an alt_ioc
2642 * may have a NULL sh pointer.
2643 */
Eric Mooree7eae9f2007-09-29 10:15:59 -06002644 if (ioc->sh == NULL || shost_priv(ioc->sh) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 return 0;
2646 else
Eric Mooree7eae9f2007-09-29 10:15:59 -06002647 hd = shost_priv(ioc->sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649 if (reset_phase == MPT_IOC_SETUP_RESET) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302650 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Setup-Diag Reset\n", ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
2652 /* Clean Up:
2653 * 1. Set Hard Reset Pending Flag
2654 * All new commands go to doneQ
2655 */
2656 hd->resetPending = 1;
2657
2658 } else if (reset_phase == MPT_IOC_PRE_RESET) {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302659 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Pre-Diag Reset\n", ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 /* 2. Flush running commands
2662 * Clean ScsiLookup (and associated memory)
2663 * AND clean mytaskQ
2664 */
2665
2666 /* 2b. Reply to OS all known outstanding I/O commands.
2667 */
2668 mptscsih_flush_running_cmds(hd);
2669
2670 /* 2c. If there was an internal command that
2671 * has not completed, configuration or io request,
2672 * free these resources.
2673 */
2674 if (hd->cmdPtr) {
2675 del_timer(&hd->timer);
2676 mpt_free_msg_frame(ioc, hd->cmdPtr);
2677 }
2678
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302679 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Pre-Reset complete.\n", ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 } else {
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302682 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Post-Diag Reset\n", ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 /* Once a FW reload begins, all new OS commands are
2685 * redirected to the doneQ w/ a reset status.
2686 * Init all control structures.
2687 */
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 /* 2. Chain Buffer initialization
2690 */
2691
Moore, Eric Deana9b29372005-11-16 18:54:20 -07002692 /* 4. Renegotiate to all devices, if SPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
2695 /* 5. Enable new commands to be posted
2696 */
2697 spin_lock_irqsave(&ioc->FreeQlock, flags);
2698 hd->tmPending = 0;
2699 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
2700 hd->resetPending = 0;
2701 hd->tmState = TM_STATE_NONE;
2702
2703 /* 6. If there was an internal command,
2704 * wake this process up.
2705 */
2706 if (hd->cmdPtr) {
2707 /*
2708 * Wake up the original calling thread
2709 */
2710 hd->pLocal = &hd->localReply;
2711 hd->pLocal->completion = MPT_SCANDV_DID_RESET;
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002712 hd->scandv_wait_done = 1;
2713 wake_up(&hd->scandv_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 hd->cmdPtr = NULL;
2715 }
2716
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302717 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Post-Reset complete.\n", ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
2719 }
2720
2721 return 1; /* currently means nothing really */
2722}
2723
2724/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002725int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726mptscsih_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply)
2727{
2728 MPT_SCSI_HOST *hd;
2729 u8 event = le32_to_cpu(pEvReply->Event) & 0xFF;
2730
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302731 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT "MPT event (=%02Xh) routed to SCSI host driver!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 ioc->name, event));
2733
Moore, Eric Dean466544d2005-09-14 18:09:10 -06002734 if (ioc->sh == NULL ||
Eric Mooree7eae9f2007-09-29 10:15:59 -06002735 ((hd = shost_priv(ioc->sh)) == NULL))
Moore, Eric Dean466544d2005-09-14 18:09:10 -06002736 return 1;
2737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 switch (event) {
2739 case MPI_EVENT_UNIT_ATTENTION: /* 03 */
2740 /* FIXME! */
2741 break;
2742 case MPI_EVENT_IOC_BUS_RESET: /* 04 */
2743 case MPI_EVENT_EXT_BUS_RESET: /* 05 */
Moore, Eric Deana9b29372005-11-16 18:54:20 -07002744 if (hd && (ioc->bus_type == SPI) && (hd->soft_resets < -1))
Moore, Eric Dean466544d2005-09-14 18:09:10 -06002745 hd->soft_resets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 break;
2747 case MPI_EVENT_LOGOUT: /* 09 */
2748 /* FIXME! */
2749 break;
2750
Michael Reed05e8ec12006-01-13 14:31:54 -06002751 case MPI_EVENT_RESCAN: /* 06 */
Michael Reed05e8ec12006-01-13 14:31:54 -06002752 break;
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 /*
2755 * CHECKME! Don't think we need to do
2756 * anything for these, but...
2757 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 case MPI_EVENT_LINK_STATUS_CHANGE: /* 07 */
2759 case MPI_EVENT_LOOP_STATE_CHANGE: /* 08 */
2760 /*
2761 * CHECKME! Falling thru...
2762 */
2763 break;
2764
2765 case MPI_EVENT_INTEGRATED_RAID: /* 0B */
Moore, Eric Dean466544d2005-09-14 18:09:10 -06002766 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 case MPI_EVENT_NONE: /* 00 */
2769 case MPI_EVENT_LOG_DATA: /* 01 */
2770 case MPI_EVENT_STATE_CHANGE: /* 02 */
2771 case MPI_EVENT_EVENT_CHANGE: /* 0A */
2772 default:
Eric Moore29dd3602007-09-14 18:46:51 -06002773 dprintk(ioc, printk(MYIOC_s_DEBUG_FMT ": Ignoring event (=%02Xh)\n",
2774 ioc->name, event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 break;
2776 }
2777
2778 return 1; /* currently means nothing really */
2779}
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2782/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 * Bus Scan and Domain Validation functionality ...
2784 */
2785
2786/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2787/*
2788 * mptscsih_scandv_complete - Scan and DV callback routine registered
2789 * to Fustion MPT (base) driver.
2790 *
2791 * @ioc: Pointer to MPT_ADAPTER structure
2792 * @mf: Pointer to original MPT request frame
2793 * @mr: Pointer to MPT reply frame (NULL if TurboReply)
2794 *
2795 * This routine is called from mpt.c::mpt_interrupt() at the completion
2796 * of any SCSI IO request.
2797 * This routine is registered with the Fusion MPT (base) driver at driver
2798 * load/init time via the mpt_register() API call.
2799 *
2800 * Returns 1 indicating alloc'd request frame ptr should be freed.
2801 *
2802 * Remark: Sets a completion code and (possibly) saves sense data
2803 * in the IOC member localReply structure.
2804 * Used ONLY for DV and other internal commands.
2805 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002806int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807mptscsih_scandv_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr)
2808{
2809 MPT_SCSI_HOST *hd;
2810 SCSIIORequest_t *pReq;
2811 int completionCode;
2812 u16 req_idx;
2813
Eric Mooree7eae9f2007-09-29 10:15:59 -06002814 hd = shost_priv(ioc->sh);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 if ((mf == NULL) ||
2817 (mf >= MPT_INDEX_2_MFPTR(ioc, ioc->req_depth))) {
2818 printk(MYIOC_s_ERR_FMT
2819 "ScanDvComplete, %s req frame ptr! (=%p)\n",
2820 ioc->name, mf?"BAD":"NULL", (void *) mf);
2821 goto wakeup;
2822 }
2823
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 del_timer(&hd->timer);
2825 req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
Eric Mooree8206382007-09-29 10:16:53 -06002826 mptscsih_set_scsi_lookup(ioc, req_idx, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 pReq = (SCSIIORequest_t *) mf;
2828
2829 if (mf != hd->cmdPtr) {
2830 printk(MYIOC_s_WARN_FMT "ScanDvComplete (mf=%p, cmdPtr=%p, idx=%d)\n",
Eric Mooree80b0022007-09-14 18:49:03 -06002831 ioc->name, (void *)mf, (void *) hd->cmdPtr, req_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
2833 hd->cmdPtr = NULL;
2834
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05302835 ddvprintk(ioc, printk(MYIOC_s_DEBUG_FMT "ScanDvComplete (mf=%p,mr=%p,idx=%d)\n",
Eric Mooree80b0022007-09-14 18:49:03 -06002836 ioc->name, mf, mr, req_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838 hd->pLocal = &hd->localReply;
2839 hd->pLocal->scsiStatus = 0;
2840
2841 /* If target struct exists, clear sense valid flag.
2842 */
2843 if (mr == NULL) {
2844 completionCode = MPT_SCANDV_GOOD;
2845 } else {
2846 SCSIIOReply_t *pReply;
2847 u16 status;
2848 u8 scsi_status;
2849
2850 pReply = (SCSIIOReply_t *) mr;
2851
2852 status = le16_to_cpu(pReply->IOCStatus) & MPI_IOCSTATUS_MASK;
2853 scsi_status = pReply->SCSIStatus;
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
2856 switch(status) {
2857
2858 case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE: /* 0x0043 */
2859 completionCode = MPT_SCANDV_SELECTION_TIMEOUT;
2860 break;
2861
2862 case MPI_IOCSTATUS_SCSI_IO_DATA_ERROR: /* 0x0046 */
2863 case MPI_IOCSTATUS_SCSI_TASK_TERMINATED: /* 0x0048 */
2864 case MPI_IOCSTATUS_SCSI_IOC_TERMINATED: /* 0x004B */
2865 case MPI_IOCSTATUS_SCSI_EXT_TERMINATED: /* 0x004C */
2866 completionCode = MPT_SCANDV_DID_RESET;
2867 break;
2868
2869 case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN: /* 0x0045 */
2870 case MPI_IOCSTATUS_SCSI_RECOVERED_ERROR: /* 0x0040 */
2871 case MPI_IOCSTATUS_SUCCESS: /* 0x0000 */
2872 if (pReply->Function == MPI_FUNCTION_CONFIG) {
2873 ConfigReply_t *pr = (ConfigReply_t *)mr;
2874 completionCode = MPT_SCANDV_GOOD;
2875 hd->pLocal->header.PageVersion = pr->Header.PageVersion;
2876 hd->pLocal->header.PageLength = pr->Header.PageLength;
2877 hd->pLocal->header.PageNumber = pr->Header.PageNumber;
2878 hd->pLocal->header.PageType = pr->Header.PageType;
2879
2880 } else if (pReply->Function == MPI_FUNCTION_RAID_ACTION) {
2881 /* If the RAID Volume request is successful,
2882 * return GOOD, else indicate that
2883 * some type of error occurred.
2884 */
2885 MpiRaidActionReply_t *pr = (MpiRaidActionReply_t *)mr;
Christoph Hellwig637fa992005-08-18 16:25:44 +02002886 if (le16_to_cpu(pr->ActionStatus) == MPI_RAID_ACTION_ASTATUS_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 completionCode = MPT_SCANDV_GOOD;
2888 else
2889 completionCode = MPT_SCANDV_SOME_ERROR;
James Bottomleyc92f2222006-03-01 09:02:49 -06002890 memcpy(hd->pLocal->sense, pr, sizeof(hd->pLocal->sense));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892 } else if (pReply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_VALID) {
2893 u8 *sense_data;
2894 int sz;
2895
2896 /* save sense data in global structure
2897 */
2898 completionCode = MPT_SCANDV_SENSE;
2899 hd->pLocal->scsiStatus = scsi_status;
Eric Mooree80b0022007-09-14 18:49:03 -06002900 sense_data = ((u8 *)ioc->sense_buf_pool +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 (req_idx * MPT_SENSE_BUFFER_ALLOC));
2902
2903 sz = min_t(int, pReq->SenseBufferLength,
2904 SCSI_STD_SENSE_BYTES);
2905 memcpy(hd->pLocal->sense, sense_data, sz);
2906
Eric Moore29dd3602007-09-14 18:46:51 -06002907 ddvprintk(ioc, printk(MYIOC_s_DEBUG_FMT " Check Condition, sense ptr %p\n",
2908 ioc->name, sense_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 } else if (pReply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_FAILED) {
2910 if (pReq->CDB[0] == INQUIRY)
2911 completionCode = MPT_SCANDV_ISSUE_SENSE;
2912 else
2913 completionCode = MPT_SCANDV_DID_RESET;
2914 }
2915 else if (pReply->SCSIState & MPI_SCSI_STATE_NO_SCSI_STATUS)
2916 completionCode = MPT_SCANDV_DID_RESET;
2917 else if (pReply->SCSIState & MPI_SCSI_STATE_TERMINATED)
2918 completionCode = MPT_SCANDV_DID_RESET;
2919 else {
2920 completionCode = MPT_SCANDV_GOOD;
2921 hd->pLocal->scsiStatus = scsi_status;
2922 }
2923 break;
2924
2925 case MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR: /* 0x0047 */
2926 if (pReply->SCSIState & MPI_SCSI_STATE_TERMINATED)
2927 completionCode = MPT_SCANDV_DID_RESET;
2928 else
2929 completionCode = MPT_SCANDV_SOME_ERROR;
2930 break;
2931
2932 default:
2933 completionCode = MPT_SCANDV_SOME_ERROR;
2934 break;
2935
2936 } /* switch(status) */
2937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 } /* end of address reply case */
2939
2940 hd->pLocal->completion = completionCode;
2941
2942 /* MF and RF are freed in mpt_interrupt
2943 */
2944wakeup:
2945 /* Free Chain buffers (will never chain) in scan or dv */
2946 //mptscsih_freeChainBuffers(ioc, req_idx);
2947
2948 /*
2949 * Wake up the original calling thread
2950 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002951 hd->scandv_wait_done = 1;
2952 wake_up(&hd->scandv_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954 return 1;
2955}
2956
2957/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2958/* mptscsih_timer_expired - Call back for timer process.
2959 * Used only for dv functionality.
2960 * @data: Pointer to MPT_SCSI_HOST recast as an unsigned long
2961 *
2962 */
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04002963void
2964mptscsih_timer_expired(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965{
2966 MPT_SCSI_HOST *hd = (MPT_SCSI_HOST *) data;
Eric Mooree80b0022007-09-14 18:49:03 -06002967 MPT_ADAPTER *ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Eric Mooree80b0022007-09-14 18:49:03 -06002969 ddvprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Timer Expired! Cmd %p\n", ioc->name, hd->cmdPtr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
2971 if (hd->cmdPtr) {
2972 MPIHeader_t *cmd = (MPIHeader_t *)hd->cmdPtr;
2973
2974 if (cmd->Function == MPI_FUNCTION_SCSI_IO_REQUEST) {
2975 /* Desire to issue a task management request here.
2976 * TM requests MUST be single threaded.
2977 * If old eh code and no TM current, issue request.
2978 * If new eh code, do nothing. Wait for OS cmd timeout
2979 * for bus reset.
2980 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 } else {
2982 /* Perform a FW reload */
Eric Mooree80b0022007-09-14 18:49:03 -06002983 if (mpt_HardResetHandler(ioc, NO_SLEEP) < 0) {
2984 printk(MYIOC_s_WARN_FMT "Firmware Reload FAILED!\n", ioc->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
2986 }
2987 } else {
2988 /* This should NEVER happen */
Eric Mooree80b0022007-09-14 18:49:03 -06002989 printk(MYIOC_s_WARN_FMT "Null cmdPtr!!!!\n", ioc->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 }
2991
2992 /* No more processing.
2993 * TM call will generate an interrupt for SCSI TM Management.
2994 * The FW will reply to all outstanding commands, callback will finish cleanup.
2995 * Hard reset clean-up will free all resources.
2996 */
Eric Mooree80b0022007-09-14 18:49:03 -06002997 ddvprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Timer Expired Complete!\n", ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
2999 return;
3000}
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
3003/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
3004/**
3005 * mptscsih_do_cmd - Do internal command.
3006 * @hd: MPT_SCSI_HOST pointer
3007 * @io: INTERNAL_CMD pointer.
3008 *
3009 * Issue the specified internally generated command and do command
3010 * specific cleanup. For bus scan / DV only.
3011 * NOTES: If command is Inquiry and status is good,
3012 * initialize a target structure, save the data
3013 *
3014 * Remark: Single threaded access only.
3015 *
3016 * Return:
3017 * < 0 if an illegal command or no resources
3018 *
3019 * 0 if good
3020 *
3021 * > 0 if command complete but some type of completion error.
3022 */
3023static int
3024mptscsih_do_cmd(MPT_SCSI_HOST *hd, INTERNAL_CMD *io)
3025{
3026 MPT_FRAME_HDR *mf;
3027 SCSIIORequest_t *pScsiReq;
3028 SCSIIORequest_t ReqCopy;
3029 int my_idx, ii, dir;
3030 int rc, cmdTimeout;
3031 int in_isr;
3032 char cmdLen;
3033 char CDB[]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
3034 char cmd = io->cmd;
Eric Mooree80b0022007-09-14 18:49:03 -06003035 MPT_ADAPTER *ioc = hd->ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037 in_isr = in_interrupt();
3038 if (in_isr) {
Eric Mooree80b0022007-09-14 18:49:03 -06003039 dprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Internal SCSI IO request not allowed in ISR context!\n",
3040 ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return -EPERM;
3042 }
3043
3044
3045 /* Set command specific information
3046 */
3047 switch (cmd) {
3048 case INQUIRY:
3049 cmdLen = 6;
3050 dir = MPI_SCSIIO_CONTROL_READ;
3051 CDB[0] = cmd;
3052 CDB[4] = io->size;
3053 cmdTimeout = 10;
3054 break;
3055
3056 case TEST_UNIT_READY:
3057 cmdLen = 6;
3058 dir = MPI_SCSIIO_CONTROL_READ;
3059 cmdTimeout = 10;
3060 break;
3061
3062 case START_STOP:
3063 cmdLen = 6;
3064 dir = MPI_SCSIIO_CONTROL_READ;
3065 CDB[0] = cmd;
3066 CDB[4] = 1; /*Spin up the disk */
3067 cmdTimeout = 15;
3068 break;
3069
3070 case REQUEST_SENSE:
3071 cmdLen = 6;
3072 CDB[0] = cmd;
3073 CDB[4] = io->size;
3074 dir = MPI_SCSIIO_CONTROL_READ;
3075 cmdTimeout = 10;
3076 break;
3077
3078 case READ_BUFFER:
3079 cmdLen = 10;
3080 dir = MPI_SCSIIO_CONTROL_READ;
3081 CDB[0] = cmd;
3082 if (io->flags & MPT_ICFLAG_ECHO) {
3083 CDB[1] = 0x0A;
3084 } else {
3085 CDB[1] = 0x02;
3086 }
3087
3088 if (io->flags & MPT_ICFLAG_BUF_CAP) {
3089 CDB[1] |= 0x01;
3090 }
3091 CDB[6] = (io->size >> 16) & 0xFF;
3092 CDB[7] = (io->size >> 8) & 0xFF;
3093 CDB[8] = io->size & 0xFF;
3094 cmdTimeout = 10;
3095 break;
3096
3097 case WRITE_BUFFER:
3098 cmdLen = 10;
3099 dir = MPI_SCSIIO_CONTROL_WRITE;
3100 CDB[0] = cmd;
3101 if (io->flags & MPT_ICFLAG_ECHO) {
3102 CDB[1] = 0x0A;
3103 } else {
3104 CDB[1] = 0x02;
3105 }
3106 CDB[6] = (io->size >> 16) & 0xFF;
3107 CDB[7] = (io->size >> 8) & 0xFF;
3108 CDB[8] = io->size & 0xFF;
3109 cmdTimeout = 10;
3110 break;
3111
3112 case RESERVE:
3113 cmdLen = 6;
3114 dir = MPI_SCSIIO_CONTROL_READ;
3115 CDB[0] = cmd;
3116 cmdTimeout = 10;
3117 break;
3118
3119 case RELEASE:
3120 cmdLen = 6;
3121 dir = MPI_SCSIIO_CONTROL_READ;
3122 CDB[0] = cmd;
3123 cmdTimeout = 10;
3124 break;
3125
3126 case SYNCHRONIZE_CACHE:
3127 cmdLen = 10;
3128 dir = MPI_SCSIIO_CONTROL_READ;
3129 CDB[0] = cmd;
3130// CDB[1] = 0x02; /* set immediate bit */
3131 cmdTimeout = 10;
3132 break;
3133
3134 default:
3135 /* Error Case */
3136 return -EFAULT;
3137 }
3138
3139 /* Get and Populate a free Frame
3140 */
Eric Mooree80b0022007-09-14 18:49:03 -06003141 if ((mf = mpt_get_msg_frame(ioc->InternalCtx, ioc)) == NULL) {
3142 dfailprintk(ioc, printk(MYIOC_s_WARN_FMT "No msg frames!\n",
3143 ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 return -EBUSY;
3145 }
3146
3147 pScsiReq = (SCSIIORequest_t *) mf;
3148
3149 /* Get the request index */
3150 my_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
3151 ADD_INDEX_LOG(my_idx); /* for debug */
3152
3153 if (io->flags & MPT_ICFLAG_PHYS_DISK) {
3154 pScsiReq->TargetID = io->physDiskNum;
3155 pScsiReq->Bus = 0;
3156 pScsiReq->ChainOffset = 0;
3157 pScsiReq->Function = MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH;
3158 } else {
3159 pScsiReq->TargetID = io->id;
Eric Moore793955f2007-01-29 09:42:20 -07003160 pScsiReq->Bus = io->channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 pScsiReq->ChainOffset = 0;
3162 pScsiReq->Function = MPI_FUNCTION_SCSI_IO_REQUEST;
3163 }
3164
3165 pScsiReq->CDBLength = cmdLen;
3166 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
3167
3168 pScsiReq->Reserved = 0;
3169
3170 pScsiReq->MsgFlags = mpt_msg_flags();
3171 /* MsgContext set in mpt_get_msg_fram call */
3172
Eric Moore793955f2007-01-29 09:42:20 -07003173 int_to_scsilun(io->lun, (struct scsi_lun *)pScsiReq->LUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 if (io->flags & MPT_ICFLAG_TAGGED_CMD)
3176 pScsiReq->Control = cpu_to_le32(dir | MPI_SCSIIO_CONTROL_SIMPLEQ);
3177 else
3178 pScsiReq->Control = cpu_to_le32(dir | MPI_SCSIIO_CONTROL_UNTAGGED);
3179
3180 if (cmd == REQUEST_SENSE) {
3181 pScsiReq->Control = cpu_to_le32(dir | MPI_SCSIIO_CONTROL_UNTAGGED);
Eric Mooree80b0022007-09-14 18:49:03 -06003182 ddvprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Untagged! 0x%2x\n",
3183 ioc->name, cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185
3186 for (ii=0; ii < 16; ii++)
3187 pScsiReq->CDB[ii] = CDB[ii];
3188
3189 pScsiReq->DataLength = cpu_to_le32(io->size);
Eric Mooree80b0022007-09-14 18:49:03 -06003190 pScsiReq->SenseBufferLowAddr = cpu_to_le32(ioc->sense_buf_low_dma
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 + (my_idx * MPT_SENSE_BUFFER_ALLOC));
3192
Eric Mooree80b0022007-09-14 18:49:03 -06003193 ddvprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Sending Command 0x%x for (%d:%d:%d)\n",
3194 ioc->name, cmd, io->channel, io->id, io->lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
3196 if (dir == MPI_SCSIIO_CONTROL_READ) {
3197 mpt_add_sge((char *) &pScsiReq->SGL,
3198 MPT_SGE_FLAGS_SSIMPLE_READ | io->size,
3199 io->data_dma);
3200 } else {
3201 mpt_add_sge((char *) &pScsiReq->SGL,
3202 MPT_SGE_FLAGS_SSIMPLE_WRITE | io->size,
3203 io->data_dma);
3204 }
3205
3206 /* The ISR will free the request frame, but we need
3207 * the information to initialize the target. Duplicate.
3208 */
3209 memcpy(&ReqCopy, pScsiReq, sizeof(SCSIIORequest_t));
3210
3211 /* Issue this command after:
3212 * finish init
3213 * add timer
3214 * Wait until the reply has been received
3215 * ScsiScanDvCtx callback function will
3216 * set hd->pLocal;
3217 * set scandv_wait_done and call wake_up
3218 */
3219 hd->pLocal = NULL;
3220 hd->timer.expires = jiffies + HZ*cmdTimeout;
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04003221 hd->scandv_wait_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
3223 /* Save cmd pointer, for resource free if timeout or
3224 * FW reload occurs
3225 */
3226 hd->cmdPtr = mf;
3227
3228 add_timer(&hd->timer);
Eric Mooree80b0022007-09-14 18:49:03 -06003229 mpt_put_msg_frame(ioc->InternalCtx, ioc, mf);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04003230 wait_event(hd->scandv_waitq, hd->scandv_wait_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 if (hd->pLocal) {
3233 rc = hd->pLocal->completion;
3234 hd->pLocal->skip = 0;
3235
3236 /* Always set fatal error codes in some cases.
3237 */
3238 if (rc == MPT_SCANDV_SELECTION_TIMEOUT)
3239 rc = -ENXIO;
3240 else if (rc == MPT_SCANDV_SOME_ERROR)
3241 rc = -rc;
3242 } else {
3243 rc = -EFAULT;
3244 /* This should never happen. */
Eric Mooree80b0022007-09-14 18:49:03 -06003245 ddvprintk(ioc, printk(MYIOC_s_DEBUG_FMT "_do_cmd: Null pLocal!!!\n",
3246 ioc->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 }
3248
3249 return rc;
3250}
3251
3252/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
3253/**
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07003254 * mptscsih_synchronize_cache - Send SYNCHRONIZE_CACHE to all disks.
3255 * @hd: Pointer to a SCSI HOST structure
Randy Dunlapd9489fb2006-12-06 20:38:43 -08003256 * @vdevice: virtual target device
Moore, Eric Deanc7c82982005-11-16 18:54:25 -07003257 *
3258 * Uses the ISR, but with special processing.
3259 * MUST be single-threaded.
3260 *
3261 */
3262static void
3263mptscsih_synchronize_cache(MPT_SCSI_HOST *hd, VirtDevice *vdevice)
3264{
3265 INTERNAL_CMD iocmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Eric Moorecc78d302007-06-15 17:27:21 -06003267 /* Ignore hidden raid components, this is handled when the command
3268 * is sent to the volume
3269 */
3270 if (vdevice->vtarget->tflags & MPT_TARGET_FLAGS_RAID_COMPONENT)
3271 return;
3272
3273 if (vdevice->vtarget->type != TYPE_DISK || vdevice->vtarget->deleted ||
3274 !vdevice->configured_lun)
3275 return;
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 /* Following parameters will not change
3278 * in this routine.
3279 */
3280 iocmd.cmd = SYNCHRONIZE_CACHE;
3281 iocmd.flags = 0;
3282 iocmd.physDiskNum = -1;
3283 iocmd.data = NULL;
3284 iocmd.data_dma = -1;
3285 iocmd.size = 0;
3286 iocmd.rsvd = iocmd.rsvd2 = 0;
Eric Moore793955f2007-01-29 09:42:20 -07003287 iocmd.channel = vdevice->vtarget->channel;
3288 iocmd.id = vdevice->vtarget->id;
3289 iocmd.lun = vdevice->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Eric Moorecc78d302007-06-15 17:27:21 -06003291 mptscsih_do_cmd(hd, &iocmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292}
3293
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303294static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003295mptscsih_version_fw_show(struct device *dev, struct device_attribute *attr,
3296 char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303297{
Tony Jonesee959b02008-02-22 00:13:36 +01003298 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003299 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303300 MPT_ADAPTER *ioc = hd->ioc;
3301
3302 return snprintf(buf, PAGE_SIZE, "%02d.%02d.%02d.%02d\n",
3303 (ioc->facts.FWVersion.Word & 0xFF000000) >> 24,
3304 (ioc->facts.FWVersion.Word & 0x00FF0000) >> 16,
3305 (ioc->facts.FWVersion.Word & 0x0000FF00) >> 8,
3306 ioc->facts.FWVersion.Word & 0x000000FF);
3307}
Tony Jonesee959b02008-02-22 00:13:36 +01003308static DEVICE_ATTR(version_fw, S_IRUGO, mptscsih_version_fw_show, NULL);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303309
3310static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003311mptscsih_version_bios_show(struct device *dev, struct device_attribute *attr,
3312 char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303313{
Tony Jonesee959b02008-02-22 00:13:36 +01003314 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003315 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303316 MPT_ADAPTER *ioc = hd->ioc;
3317
3318 return snprintf(buf, PAGE_SIZE, "%02x.%02x.%02x.%02x\n",
3319 (ioc->biosVersion & 0xFF000000) >> 24,
3320 (ioc->biosVersion & 0x00FF0000) >> 16,
3321 (ioc->biosVersion & 0x0000FF00) >> 8,
3322 ioc->biosVersion & 0x000000FF);
3323}
Tony Jonesee959b02008-02-22 00:13:36 +01003324static DEVICE_ATTR(version_bios, S_IRUGO, mptscsih_version_bios_show, NULL);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303325
3326static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003327mptscsih_version_mpi_show(struct device *dev, struct device_attribute *attr,
3328 char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303329{
Tony Jonesee959b02008-02-22 00:13:36 +01003330 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003331 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303332 MPT_ADAPTER *ioc = hd->ioc;
3333
3334 return snprintf(buf, PAGE_SIZE, "%03x\n", ioc->facts.MsgVersion);
3335}
Tony Jonesee959b02008-02-22 00:13:36 +01003336static DEVICE_ATTR(version_mpi, S_IRUGO, mptscsih_version_mpi_show, NULL);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303337
3338static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003339mptscsih_version_product_show(struct device *dev,
3340 struct device_attribute *attr,
3341char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303342{
Tony Jonesee959b02008-02-22 00:13:36 +01003343 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003344 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303345 MPT_ADAPTER *ioc = hd->ioc;
3346
3347 return snprintf(buf, PAGE_SIZE, "%s\n", ioc->prod_name);
3348}
Tony Jonesee959b02008-02-22 00:13:36 +01003349static DEVICE_ATTR(version_product, S_IRUGO,
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303350 mptscsih_version_product_show, NULL);
3351
3352static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003353mptscsih_version_nvdata_persistent_show(struct device *dev,
3354 struct device_attribute *attr,
3355 char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303356{
Tony Jonesee959b02008-02-22 00:13:36 +01003357 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003358 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303359 MPT_ADAPTER *ioc = hd->ioc;
3360
3361 return snprintf(buf, PAGE_SIZE, "%02xh\n",
3362 ioc->nvdata_version_persistent);
3363}
Tony Jonesee959b02008-02-22 00:13:36 +01003364static DEVICE_ATTR(version_nvdata_persistent, S_IRUGO,
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303365 mptscsih_version_nvdata_persistent_show, NULL);
3366
3367static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003368mptscsih_version_nvdata_default_show(struct device *dev,
3369 struct device_attribute *attr, char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303370{
Tony Jonesee959b02008-02-22 00:13:36 +01003371 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003372 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303373 MPT_ADAPTER *ioc = hd->ioc;
3374
3375 return snprintf(buf, PAGE_SIZE, "%02xh\n",ioc->nvdata_version_default);
3376}
Tony Jonesee959b02008-02-22 00:13:36 +01003377static DEVICE_ATTR(version_nvdata_default, S_IRUGO,
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303378 mptscsih_version_nvdata_default_show, NULL);
3379
3380static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003381mptscsih_board_name_show(struct device *dev, struct device_attribute *attr,
3382 char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303383{
Tony Jonesee959b02008-02-22 00:13:36 +01003384 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003385 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303386 MPT_ADAPTER *ioc = hd->ioc;
3387
3388 return snprintf(buf, PAGE_SIZE, "%s\n", ioc->board_name);
3389}
Tony Jonesee959b02008-02-22 00:13:36 +01003390static DEVICE_ATTR(board_name, S_IRUGO, mptscsih_board_name_show, NULL);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303391
3392static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003393mptscsih_board_assembly_show(struct device *dev,
3394 struct device_attribute *attr, char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303395{
Tony Jonesee959b02008-02-22 00:13:36 +01003396 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003397 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303398 MPT_ADAPTER *ioc = hd->ioc;
3399
3400 return snprintf(buf, PAGE_SIZE, "%s\n", ioc->board_assembly);
3401}
Tony Jonesee959b02008-02-22 00:13:36 +01003402static DEVICE_ATTR(board_assembly, S_IRUGO,
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303403 mptscsih_board_assembly_show, NULL);
3404
3405static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003406mptscsih_board_tracer_show(struct device *dev, struct device_attribute *attr,
3407 char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303408{
Tony Jonesee959b02008-02-22 00:13:36 +01003409 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003410 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303411 MPT_ADAPTER *ioc = hd->ioc;
3412
3413 return snprintf(buf, PAGE_SIZE, "%s\n", ioc->board_tracer);
3414}
Tony Jonesee959b02008-02-22 00:13:36 +01003415static DEVICE_ATTR(board_tracer, S_IRUGO,
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303416 mptscsih_board_tracer_show, NULL);
3417
3418static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003419mptscsih_io_delay_show(struct device *dev, struct device_attribute *attr,
3420 char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303421{
Tony Jonesee959b02008-02-22 00:13:36 +01003422 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003423 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303424 MPT_ADAPTER *ioc = hd->ioc;
3425
3426 return snprintf(buf, PAGE_SIZE, "%02d\n", ioc->io_missing_delay);
3427}
Tony Jonesee959b02008-02-22 00:13:36 +01003428static DEVICE_ATTR(io_delay, S_IRUGO,
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303429 mptscsih_io_delay_show, NULL);
3430
3431static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003432mptscsih_device_delay_show(struct device *dev, struct device_attribute *attr,
3433 char *buf)
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303434{
Tony Jonesee959b02008-02-22 00:13:36 +01003435 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003436 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303437 MPT_ADAPTER *ioc = hd->ioc;
3438
3439 return snprintf(buf, PAGE_SIZE, "%02d\n", ioc->device_missing_delay);
3440}
Tony Jonesee959b02008-02-22 00:13:36 +01003441static DEVICE_ATTR(device_delay, S_IRUGO,
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303442 mptscsih_device_delay_show, NULL);
3443
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05303444static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003445mptscsih_debug_level_show(struct device *dev, struct device_attribute *attr,
3446 char *buf)
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05303447{
Tony Jonesee959b02008-02-22 00:13:36 +01003448 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003449 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05303450 MPT_ADAPTER *ioc = hd->ioc;
3451
3452 return snprintf(buf, PAGE_SIZE, "%08xh\n", ioc->debug_level);
3453}
3454static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01003455mptscsih_debug_level_store(struct device *dev, struct device_attribute *attr,
3456 const char *buf, size_t count)
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05303457{
Tony Jonesee959b02008-02-22 00:13:36 +01003458 struct Scsi_Host *host = class_to_shost(dev);
Eric Mooree7eae9f2007-09-29 10:15:59 -06003459 MPT_SCSI_HOST *hd = shost_priv(host);
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05303460 MPT_ADAPTER *ioc = hd->ioc;
3461 int val = 0;
3462
3463 if (sscanf(buf, "%x", &val) != 1)
3464 return -EINVAL;
3465
3466 ioc->debug_level = val;
3467 printk(MYIOC_s_INFO_FMT "debug_level=%08xh\n",
3468 ioc->name, ioc->debug_level);
3469 return strlen(buf);
3470}
Tony Jonesee959b02008-02-22 00:13:36 +01003471static DEVICE_ATTR(debug_level, S_IRUGO | S_IWUSR,
3472 mptscsih_debug_level_show, mptscsih_debug_level_store);
Prakash, Sathya6757d6b2007-07-25 11:14:01 +05303473
Tony Jonesee959b02008-02-22 00:13:36 +01003474struct device_attribute *mptscsih_host_attrs[] = {
3475 &dev_attr_version_fw,
3476 &dev_attr_version_bios,
3477 &dev_attr_version_mpi,
3478 &dev_attr_version_product,
3479 &dev_attr_version_nvdata_persistent,
3480 &dev_attr_version_nvdata_default,
3481 &dev_attr_board_name,
3482 &dev_attr_board_assembly,
3483 &dev_attr_board_tracer,
3484 &dev_attr_io_delay,
3485 &dev_attr_device_delay,
3486 &dev_attr_debug_level,
Prakash, Sathyaedb90682007-07-17 14:39:14 +05303487 NULL,
3488};
3489EXPORT_SYMBOL(mptscsih_host_attrs);
3490
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04003491EXPORT_SYMBOL(mptscsih_remove);
3492EXPORT_SYMBOL(mptscsih_shutdown);
3493#ifdef CONFIG_PM
3494EXPORT_SYMBOL(mptscsih_suspend);
3495EXPORT_SYMBOL(mptscsih_resume);
3496#endif
3497EXPORT_SYMBOL(mptscsih_proc_info);
3498EXPORT_SYMBOL(mptscsih_info);
3499EXPORT_SYMBOL(mptscsih_qcmd);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04003500EXPORT_SYMBOL(mptscsih_slave_destroy);
3501EXPORT_SYMBOL(mptscsih_slave_configure);
3502EXPORT_SYMBOL(mptscsih_abort);
3503EXPORT_SYMBOL(mptscsih_dev_reset);
3504EXPORT_SYMBOL(mptscsih_bus_reset);
3505EXPORT_SYMBOL(mptscsih_host_reset);
3506EXPORT_SYMBOL(mptscsih_bios_param);
3507EXPORT_SYMBOL(mptscsih_io_done);
3508EXPORT_SYMBOL(mptscsih_taskmgmt_complete);
3509EXPORT_SYMBOL(mptscsih_scandv_complete);
3510EXPORT_SYMBOL(mptscsih_event_process);
3511EXPORT_SYMBOL(mptscsih_ioc_reset);
Moore, Eric Dean6e3815b2005-06-24 12:18:57 -06003512EXPORT_SYMBOL(mptscsih_change_queue_depth);
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04003513EXPORT_SYMBOL(mptscsih_timer_expired);
James Bottomley663e1aa2006-01-29 12:10:24 -06003514EXPORT_SYMBOL(mptscsih_TMHandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
Moore, Eric Dean 0d0c7972005-04-22 18:02:09 -04003516/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/