2 * linux/drivers/message/fusion/mptctl.c
4 * For use with LSI PCI chip/adapters
5 * running LSI Fusion MPT (Message Passing Technology) firmware.
7 * Copyright (c) 1999-2008 LSI Corporation
8 * (mailto:DL-MPTFusionLinux@lsi.com)
11 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; version 2 of the License.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
23 THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
24 CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
25 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
26 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
27 solely responsible for determining the appropriateness of using and
28 distributing the Program and assumes all risks associated with its
29 exercise of rights under this Agreement, including but not limited to
30 the risks and costs of program errors, damage to or loss of data,
31 programs or equipment, and unavailability or interruption of operations.
33 DISCLAIMER OF LIABILITY
34 NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
35 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
37 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
38 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
39 USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
40 HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
42 You should have received a copy of the GNU General Public License
43 along with this program; if not, write to the Free Software
44 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
46 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
48 #include <linux/kernel.h>
49 #include <linux/module.h>
50 #include <linux/errno.h>
51 #include <linux/init.h>
52 #include <linux/slab.h>
53 #include <linux/types.h>
54 #include <linux/pci.h>
55 #include <linux/delay.h> /* for mdelay */
56 #include <linux/miscdevice.h>
57 #include <linux/mutex.h>
58 #include <linux/compat.h>
61 #include <linux/uaccess.h>
63 #include <scsi/scsi.h>
64 #include <scsi/scsi_cmnd.h>
65 #include <scsi/scsi_device.h>
66 #include <scsi/scsi_host.h>
67 #include <scsi/scsi_tcq.h>
69 #define COPYRIGHT "Copyright (c) 1999-2008 LSI Corporation"
70 #define MODULEAUTHOR "LSI Corporation"
74 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
75 #define my_NAME "Fusion MPT misc device (ioctl) driver"
76 #define my_VERSION MPT_LINUX_VERSION_COMMON
77 #define MYNAM "mptctl"
79 MODULE_AUTHOR(MODULEAUTHOR);
80 MODULE_DESCRIPTION(my_NAME);
81 MODULE_LICENSE("GPL");
82 MODULE_VERSION(my_VERSION);
84 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
86 static DEFINE_MUTEX(mpctl_mutex);
87 static u8 mptctl_id = MPT_MAX_PROTOCOL_DRIVERS;
88 static u8 mptctl_taskmgmt_id = MPT_MAX_PROTOCOL_DRIVERS;
90 static DECLARE_WAIT_QUEUE_HEAD ( mptctl_wait );
92 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
100 * Function prototypes. Called from OS entry point mptctl_ioctl.
101 * arg contents specific to function.
103 static int mptctl_fw_download(MPT_ADAPTER *iocp, unsigned long arg);
104 static int mptctl_getiocinfo(MPT_ADAPTER *iocp, unsigned long arg, unsigned int cmd);
105 static int mptctl_gettargetinfo(MPT_ADAPTER *iocp, unsigned long arg);
106 static int mptctl_readtest(MPT_ADAPTER *iocp, unsigned long arg);
107 static int mptctl_mpt_command(MPT_ADAPTER *iocp, unsigned long arg);
108 static int mptctl_eventquery(MPT_ADAPTER *iocp, unsigned long arg);
109 static int mptctl_eventenable(MPT_ADAPTER *iocp, unsigned long arg);
110 static int mptctl_eventreport(MPT_ADAPTER *iocp, unsigned long arg);
111 static int mptctl_replace_fw(MPT_ADAPTER *iocp, unsigned long arg);
113 static int mptctl_do_reset(MPT_ADAPTER *iocp, unsigned long arg);
114 static int mptctl_hp_hostinfo(MPT_ADAPTER *iocp, unsigned long arg, unsigned int cmd);
115 static int mptctl_hp_targetinfo(MPT_ADAPTER *iocp, unsigned long arg);
117 static int mptctl_probe(struct pci_dev *);
118 static void mptctl_remove(struct pci_dev *);
121 static long compat_mpctl_ioctl(struct file *f, unsigned cmd, unsigned long arg);
124 * Private function calls.
126 static int mptctl_do_mpt_command(MPT_ADAPTER *iocp, struct mpt_ioctl_command karg, void __user *mfPtr);
127 static int mptctl_do_fw_download(MPT_ADAPTER *iocp, char __user *ufwbuf, size_t fwlen);
128 static MptSge_t *kbuf_alloc_2_sgl(int bytes, u32 dir, int sge_offset, int *frags,
129 struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc);
130 static void kfree_sgl(MptSge_t *sgl, dma_addr_t sgl_dma,
131 struct buflist *buflist, MPT_ADAPTER *ioc);
134 * Reset Handler cleanup function
136 static int mptctl_ioc_reset(MPT_ADAPTER *ioc, int reset_phase);
139 * Event Handler function
141 static int mptctl_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply);
142 static struct fasync_struct *async_queue=NULL;
144 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
146 * Scatter gather list (SGL) sizes and limits...
148 //#define MAX_SCSI_FRAGS 9
149 #define MAX_FRAGS_SPILL1 9
150 #define MAX_FRAGS_SPILL2 15
151 #define FRAGS_PER_BUCKET (MAX_FRAGS_SPILL2 + 1)
153 //#define MAX_CHAIN_FRAGS 64
154 //#define MAX_CHAIN_FRAGS (15+15+15+16)
155 #define MAX_CHAIN_FRAGS (4 * MAX_FRAGS_SPILL2 + 1)
157 // Define max sg LIST bytes ( == (#frags + #chains) * 8 bytes each)
158 // Works out to: 592d bytes! (9+1)*8 + 4*(15+1)*8
159 // ^----------------- 80 + 512
160 #define MAX_SGL_BYTES ((MAX_FRAGS_SPILL1 + 1 + (4 * FRAGS_PER_BUCKET)) * 8)
162 /* linux only seems to ever give 128kB MAX contiguous (GFP_USER) mem bytes */
163 #define MAX_KMALLOC_SZ (128*1024)
165 #define MPT_IOCTL_DEFAULT_TIMEOUT 10 /* Default timeout value (seconds) */
167 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
169 * mptctl_syscall_down - Down the MPT adapter syscall semaphore.
170 * @ioc: Pointer to MPT adapter
171 * @nonblock: boolean, non-zero if O_NONBLOCK is set
173 * All of the ioctl commands can potentially sleep, which is illegal
174 * with a spinlock held, thus we perform mutual exclusion here.
176 * Returns negative errno on error, or zero for success.
179 mptctl_syscall_down(MPT_ADAPTER *ioc, int nonblock)
184 if (!mutex_trylock(&ioc->ioctl_cmds.mutex))
187 if (mutex_lock_interruptible(&ioc->ioctl_cmds.mutex))
193 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
195 * This is the callback for any message we have posted. The message itself
196 * will be returned to the message pool when we return from the IRQ
198 * This runs in irq context so be short and sweet.
201 mptctl_reply(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req, MPT_FRAME_HDR *reply)
210 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "completing mpi function "
211 "(0x%02X), req=%p, reply=%p\n", ioc->name, req->u.hdr.Function,
215 * Handling continuation of the same reply. Processing the first
216 * reply, and eating the other replys that come later.
218 if (ioc->ioctl_cmds.msg_context != req->u.hdr.MsgContext)
219 goto out_continuation;
221 ioc->ioctl_cmds.status |= MPT_MGMT_STATUS_COMMAND_GOOD;
226 ioc->ioctl_cmds.status |= MPT_MGMT_STATUS_RF_VALID;
227 sz = min(ioc->reply_sz, 4*reply->u.reply.MsgLength);
228 memcpy(ioc->ioctl_cmds.reply, reply, sz);
230 if (reply->u.reply.IOCStatus || reply->u.reply.IOCLogInfo)
231 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT
232 "iocstatus (0x%04X), loginfo (0x%08X)\n", ioc->name,
233 le16_to_cpu(reply->u.reply.IOCStatus),
234 le32_to_cpu(reply->u.reply.IOCLogInfo)));
236 if ((req->u.hdr.Function == MPI_FUNCTION_SCSI_IO_REQUEST) ||
237 (req->u.hdr.Function ==
238 MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH)) {
240 if (reply->u.sreply.SCSIStatus || reply->u.sreply.SCSIState)
241 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT
242 "scsi_status (0x%02x), scsi_state (0x%02x), "
243 "tag = (0x%04x), transfer_count (0x%08x)\n", ioc->name,
244 reply->u.sreply.SCSIStatus,
245 reply->u.sreply.SCSIState,
246 le16_to_cpu(reply->u.sreply.TaskTag),
247 le32_to_cpu(reply->u.sreply.TransferCount)));
249 if (reply->u.sreply.SCSIState &
250 MPI_SCSI_STATE_AUTOSENSE_VALID) {
251 sz = req->u.scsireq.SenseBufferLength;
253 le16_to_cpu(req->u.frame.hwhdr.msgctxu.fld.req_idx);
254 sense_data = ((u8 *)ioc->sense_buf_pool +
255 (req_index * MPT_SENSE_BUFFER_ALLOC));
256 memcpy(ioc->ioctl_cmds.sense, sense_data, sz);
257 ioc->ioctl_cmds.status |= MPT_MGMT_STATUS_SENSE_VALID;
262 /* We are done, issue wake up
264 if (ioc->ioctl_cmds.status & MPT_MGMT_STATUS_PENDING) {
265 if (req->u.hdr.Function == MPI_FUNCTION_SCSI_TASK_MGMT) {
266 mpt_clear_taskmgmt_in_progress_flag(ioc);
267 ioc->ioctl_cmds.status &= ~MPT_MGMT_STATUS_PENDING;
268 complete(&ioc->ioctl_cmds.done);
269 if (ioc->bus_type == SAS)
270 ioc->schedule_target_reset(ioc);
272 ioc->ioctl_cmds.status &= ~MPT_MGMT_STATUS_PENDING;
273 complete(&ioc->ioctl_cmds.done);
278 if (reply && (reply->u.reply.MsgFlags &
279 MPI_MSGFLAGS_CONTINUATION_REPLY))
286 mptctl_taskmgmt_reply(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr)
291 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
292 "TaskMgmt completed (mf=%p, mr=%p)\n",
295 ioc->taskmgmt_cmds.status |= MPT_MGMT_STATUS_COMMAND_GOOD;
300 ioc->taskmgmt_cmds.status |= MPT_MGMT_STATUS_RF_VALID;
301 memcpy(ioc->taskmgmt_cmds.reply, mr,
302 min(MPT_DEFAULT_FRAME_SIZE, 4 * mr->u.reply.MsgLength));
304 if (ioc->taskmgmt_cmds.status & MPT_MGMT_STATUS_PENDING) {
305 mpt_clear_taskmgmt_in_progress_flag(ioc);
306 ioc->taskmgmt_cmds.status &= ~MPT_MGMT_STATUS_PENDING;
307 complete(&ioc->taskmgmt_cmds.done);
308 if (ioc->bus_type == SAS)
309 ioc->schedule_target_reset(ioc);
316 mptctl_do_taskmgmt(MPT_ADAPTER *ioc, u8 tm_type, u8 bus_id, u8 target_id)
319 SCSITaskMgmt_t *pScsiTm;
320 SCSITaskMgmtReply_t *pScsiTmReply;
323 unsigned long timeout;
327 mutex_lock(&ioc->taskmgmt_cmds.mutex);
328 if (mpt_set_taskmgmt_in_progress_flag(ioc) != 0) {
329 mutex_unlock(&ioc->taskmgmt_cmds.mutex);
335 mf = mpt_get_msg_frame(mptctl_taskmgmt_id, ioc);
338 printk(MYIOC_s_WARN_FMT "TaskMgmt, no msg frames!!\n",
340 mpt_clear_taskmgmt_in_progress_flag(ioc);
345 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "TaskMgmt request (mf=%p)\n",
348 pScsiTm = (SCSITaskMgmt_t *) mf;
349 memset(pScsiTm, 0, sizeof(SCSITaskMgmt_t));
350 pScsiTm->Function = MPI_FUNCTION_SCSI_TASK_MGMT;
351 pScsiTm->TaskType = tm_type;
352 if ((tm_type == MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS) &&
353 (ioc->bus_type == FC))
355 MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION;
356 pScsiTm->TargetID = target_id;
357 pScsiTm->Bus = bus_id;
358 pScsiTm->ChainOffset = 0;
359 pScsiTm->Reserved = 0;
360 pScsiTm->Reserved1 = 0;
361 pScsiTm->TaskMsgContext = 0;
362 for (ii= 0; ii < 8; ii++)
363 pScsiTm->LUN[ii] = 0;
364 for (ii=0; ii < 7; ii++)
365 pScsiTm->Reserved2[ii] = 0;
367 switch (ioc->bus_type) {
381 printk(MYIOC_s_DEBUG_FMT "TaskMgmt type=%d timeout=%ld\n",
382 ioc->name, tm_type, timeout));
384 INITIALIZE_MGMT_STATUS(ioc->taskmgmt_cmds.status)
385 if ((ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q) &&
386 (ioc->facts.MsgVersion >= MPI_VERSION_01_05))
387 mpt_put_msg_frame_hi_pri(mptctl_taskmgmt_id, ioc, mf);
389 retval = mpt_send_handshake_request(mptctl_taskmgmt_id, ioc,
390 sizeof(SCSITaskMgmt_t), (u32 *)pScsiTm, CAN_SLEEP);
393 printk(MYIOC_s_ERR_FMT
394 "TaskMgmt send_handshake FAILED!"
395 " (ioc %p, mf %p, rc=%d) \n", ioc->name,
397 mpt_free_msg_frame(ioc, mf);
398 mpt_clear_taskmgmt_in_progress_flag(ioc);
403 /* Now wait for the command to complete */
404 ii = wait_for_completion_timeout(&ioc->taskmgmt_cmds.done, timeout*HZ);
406 if (!(ioc->taskmgmt_cmds.status & MPT_MGMT_STATUS_COMMAND_GOOD)) {
407 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
408 "TaskMgmt failed\n", ioc->name));
409 mpt_free_msg_frame(ioc, mf);
410 mpt_clear_taskmgmt_in_progress_flag(ioc);
411 if (ioc->taskmgmt_cmds.status & MPT_MGMT_STATUS_DID_IOCRESET)
414 retval = -1; /* return failure */
418 if (!(ioc->taskmgmt_cmds.status & MPT_MGMT_STATUS_RF_VALID)) {
419 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
420 "TaskMgmt failed\n", ioc->name));
421 retval = -1; /* return failure */
425 pScsiTmReply = (SCSITaskMgmtReply_t *) ioc->taskmgmt_cmds.reply;
426 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
427 "TaskMgmt fw_channel = %d, fw_id = %d, task_type=0x%02X, "
428 "iocstatus=0x%04X\n\tloginfo=0x%08X, response_code=0x%02X, "
429 "term_cmnds=%d\n", ioc->name, pScsiTmReply->Bus,
430 pScsiTmReply->TargetID, tm_type,
431 le16_to_cpu(pScsiTmReply->IOCStatus),
432 le32_to_cpu(pScsiTmReply->IOCLogInfo),
433 pScsiTmReply->ResponseCode,
434 le32_to_cpu(pScsiTmReply->TerminationCount)));
436 iocstatus = le16_to_cpu(pScsiTmReply->IOCStatus) & MPI_IOCSTATUS_MASK;
438 if (iocstatus == MPI_IOCSTATUS_SCSI_TASK_TERMINATED ||
439 iocstatus == MPI_IOCSTATUS_SCSI_IOC_TERMINATED ||
440 iocstatus == MPI_IOCSTATUS_SUCCESS)
443 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
444 "TaskMgmt failed\n", ioc->name));
445 retval = -1; /* return failure */
449 mutex_unlock(&ioc->taskmgmt_cmds.mutex);
450 CLEAR_MGMT_STATUS(ioc->taskmgmt_cmds.status)
454 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
455 /* mptctl_timeout_expired
457 * Expecting an interrupt, however timed out.
461 mptctl_timeout_expired(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf)
465 SCSIIORequest_t *scsi_req = (SCSIIORequest_t *) mf;
466 u8 function = mf->u.hdr.Function;
468 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT ": %s\n",
469 ioc->name, __func__));
471 if (mpt_fwfault_debug)
472 mpt_halt_firmware(ioc);
474 spin_lock_irqsave(&ioc->taskmgmt_lock, flags);
475 if (ioc->ioc_reset_in_progress) {
476 spin_unlock_irqrestore(&ioc->taskmgmt_lock, flags);
477 CLEAR_MGMT_PENDING_STATUS(ioc->ioctl_cmds.status)
478 mpt_free_msg_frame(ioc, mf);
481 spin_unlock_irqrestore(&ioc->taskmgmt_lock, flags);
484 CLEAR_MGMT_PENDING_STATUS(ioc->ioctl_cmds.status)
486 if (ioc->bus_type == SAS) {
487 if (function == MPI_FUNCTION_SCSI_IO_REQUEST)
488 ret_val = mptctl_do_taskmgmt(ioc,
489 MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET,
490 scsi_req->Bus, scsi_req->TargetID);
491 else if (function == MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH)
492 ret_val = mptctl_do_taskmgmt(ioc,
493 MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS,
498 if ((function == MPI_FUNCTION_SCSI_IO_REQUEST) ||
499 (function == MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH))
500 ret_val = mptctl_do_taskmgmt(ioc,
501 MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS,
507 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Calling Reset! \n",
509 mpt_Soft_Hard_ResetHandler(ioc, CAN_SLEEP);
510 mpt_free_msg_frame(ioc, mf);
514 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
517 * Clean-up functionality. Used only if there has been a
518 * reload of the FW due.
522 mptctl_ioc_reset(MPT_ADAPTER *ioc, int reset_phase)
524 switch(reset_phase) {
525 case MPT_IOC_SETUP_RESET:
526 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
527 "%s: MPT_IOC_SETUP_RESET\n", ioc->name, __func__));
529 case MPT_IOC_PRE_RESET:
530 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
531 "%s: MPT_IOC_PRE_RESET\n", ioc->name, __func__));
533 case MPT_IOC_POST_RESET:
534 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT
535 "%s: MPT_IOC_POST_RESET\n", ioc->name, __func__));
536 if (ioc->ioctl_cmds.status & MPT_MGMT_STATUS_PENDING) {
537 ioc->ioctl_cmds.status |= MPT_MGMT_STATUS_DID_IOCRESET;
538 complete(&ioc->ioctl_cmds.done);
548 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
549 /* ASYNC Event Notification Support */
551 mptctl_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply)
555 event = le32_to_cpu(pEvReply->Event) & 0xFF;
557 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "%s() called\n",
558 ioc->name, __func__));
559 if(async_queue == NULL)
562 /* Raise SIGIO for persistent events.
563 * TODO - this define is not in MPI spec yet,
564 * but they plan to set it to 0x21
567 ioc->aen_event_read_flag=1;
568 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Raised SIGIO to application\n",
570 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
571 "Raised SIGIO to application\n", ioc->name));
572 kill_fasync(&async_queue, SIGIO, POLL_IN);
576 /* This flag is set after SIGIO was raised, and
577 * remains set until the application has read
578 * the event log via ioctl=MPTEVENTREPORT
580 if(ioc->aen_event_read_flag)
583 /* Signal only for the events that are
584 * requested for by the application
586 if (ioc->events && (ioc->eventTypes & ( 1 << event))) {
587 ioc->aen_event_read_flag=1;
588 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT
589 "Raised SIGIO to application\n", ioc->name));
590 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
591 "Raised SIGIO to application\n", ioc->name));
592 kill_fasync(&async_queue, SIGIO, POLL_IN);
598 mptctl_fasync(int fd, struct file *filep, int mode)
603 mutex_lock(&mpctl_mutex);
604 list_for_each_entry(ioc, &ioc_list, list)
605 ioc->aen_event_read_flag=0;
607 ret = fasync_helper(fd, filep, mode, &async_queue);
608 mutex_unlock(&mpctl_mutex);
612 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
615 * cmd - specify the particular IOCTL command to be issued
616 * arg - data specific to the command. Must not be null.
619 __mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
621 mpt_ioctl_header __user *uhdr = (void __user *) arg;
622 mpt_ioctl_header khdr;
624 int nonblock = (file->f_flags & O_NONBLOCK);
626 MPT_ADAPTER *iocp = NULL;
628 if (copy_from_user(&khdr, uhdr, sizeof(khdr))) {
629 printk(KERN_ERR MYNAM "%s::mptctl_ioctl() @%d - "
630 "Unable to copy mpt_ioctl_header data @ %p\n",
631 __FILE__, __LINE__, uhdr);
634 ret = -ENXIO; /* (-6) No such device or address */
636 /* Verify intended MPT adapter - set iocnumX and the adapter
639 iocnumX = khdr.iocnum & 0xFF;
640 if ((mpt_verify_adapter(iocnumX, &iocp) < 0) || (iocp == NULL))
644 printk(KERN_DEBUG MYNAM "%s::mptctl_ioctl() @%d - Controller disabled.\n",
649 /* Handle those commands that are just returning
650 * information stored in the driver.
651 * These commands should never time out and are unaffected
652 * by TM and FW reloads.
654 if ((cmd & ~IOCSIZE_MASK) == (MPTIOCINFO & ~IOCSIZE_MASK)) {
655 return mptctl_getiocinfo(iocp, arg, _IOC_SIZE(cmd));
656 } else if (cmd == MPTTARGETINFO) {
657 return mptctl_gettargetinfo(iocp, arg);
658 } else if (cmd == MPTTEST) {
659 return mptctl_readtest(iocp, arg);
660 } else if (cmd == MPTEVENTQUERY) {
661 return mptctl_eventquery(iocp, arg);
662 } else if (cmd == MPTEVENTENABLE) {
663 return mptctl_eventenable(iocp, arg);
664 } else if (cmd == MPTEVENTREPORT) {
665 return mptctl_eventreport(iocp, arg);
666 } else if (cmd == MPTFWREPLACE) {
667 return mptctl_replace_fw(iocp, arg);
670 /* All of these commands require an interrupt or
671 * are unknown/illegal.
673 if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
676 if (cmd == MPTFWDOWNLOAD)
677 ret = mptctl_fw_download(iocp, arg);
678 else if (cmd == MPTCOMMAND)
679 ret = mptctl_mpt_command(iocp, arg);
680 else if (cmd == MPTHARDRESET)
681 ret = mptctl_do_reset(iocp, arg);
682 else if ((cmd & ~IOCSIZE_MASK) == (HP_GETHOSTINFO & ~IOCSIZE_MASK))
683 ret = mptctl_hp_hostinfo(iocp, arg, _IOC_SIZE(cmd));
684 else if (cmd == HP_GETTARGETINFO)
685 ret = mptctl_hp_targetinfo(iocp, arg);
689 mutex_unlock(&iocp->ioctl_cmds.mutex);
695 mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
698 mutex_lock(&mpctl_mutex);
699 ret = __mptctl_ioctl(file, cmd, arg);
700 mutex_unlock(&mpctl_mutex);
704 static int mptctl_do_reset(MPT_ADAPTER *iocp, unsigned long arg)
706 struct mpt_ioctl_diag_reset __user *urinfo = (void __user *) arg;
707 struct mpt_ioctl_diag_reset krinfo;
709 if (copy_from_user(&krinfo, urinfo, sizeof(struct mpt_ioctl_diag_reset))) {
710 printk(KERN_ERR MYNAM "%s@%d::mptctl_do_reset - "
711 "Unable to copy mpt_ioctl_diag_reset struct @ %p\n",
712 __FILE__, __LINE__, urinfo);
716 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "mptctl_do_reset called.\n",
719 if (mpt_HardResetHandler(iocp, CAN_SLEEP) != 0) {
720 printk (MYIOC_s_ERR_FMT "%s@%d::mptctl_do_reset - reset failed.\n",
721 iocp->name, __FILE__, __LINE__);
728 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
730 * MPT FW download function. Cast the arg into the mpt_fw_xfer structure.
731 * This structure contains: iocnum, firmware length (bytes),
732 * pointer to user space memory where the fw image is stored.
735 * Return: 0 if successful
736 * -EFAULT if data unavailable
737 * -ENXIO if no such device
738 * -EAGAIN if resource problem
739 * -ENOMEM if no memory for SGE
740 * -EMLINK if too many chain buffers required
741 * -EBADRQC if adapter does not support FW download
742 * -EBUSY if adapter is busy
743 * -ENOMSG if FW upload returned bad status
746 mptctl_fw_download(MPT_ADAPTER *iocp, unsigned long arg)
748 struct mpt_fw_xfer __user *ufwdl = (void __user *) arg;
749 struct mpt_fw_xfer kfwdl;
751 if (copy_from_user(&kfwdl, ufwdl, sizeof(struct mpt_fw_xfer))) {
752 printk(KERN_ERR MYNAM "%s@%d::_ioctl_fwdl - "
753 "Unable to copy mpt_fw_xfer struct @ %p\n",
754 __FILE__, __LINE__, ufwdl);
758 return mptctl_do_fw_download(iocp, kfwdl.bufp, kfwdl.fwlen);
761 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
763 * FW Download engine.
765 * Return: 0 if successful
766 * -EFAULT if data unavailable
767 * -ENXIO if no such device
768 * -EAGAIN if resource problem
769 * -ENOMEM if no memory for SGE
770 * -EMLINK if too many chain buffers required
771 * -EBADRQC if adapter does not support FW download
772 * -EBUSY if adapter is busy
773 * -ENOMSG if FW upload returned bad status
776 mptctl_do_fw_download(MPT_ADAPTER *iocp, char __user *ufwbuf, size_t fwlen)
780 FWDownloadTCSGE_t *ptsge;
781 MptSge_t *sgl, *sgIn;
783 struct buflist *buflist;
792 int fw_bytes_copied = 0;
796 pFWDownloadReply_t ReplyMsg = NULL;
797 unsigned long timeleft;
799 /* Valid device. Get a message frame and construct the FW download message.
801 if ((mf = mpt_get_msg_frame(mptctl_id, iocp)) == NULL)
804 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT
805 "mptctl_do_fwdl called. mptctl_id = %xh.\n", iocp->name, mptctl_id));
806 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "DbG: kfwdl.bufp = %p\n",
807 iocp->name, ufwbuf));
808 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "DbG: kfwdl.fwlen = %d\n",
809 iocp->name, (int)fwlen));
811 dlmsg = (FWDownload_t*) mf;
812 ptsge = (FWDownloadTCSGE_t *) &dlmsg->SGL;
813 sgOut = (char *) (ptsge + 1);
816 * Construct f/w download request
818 dlmsg->ImageType = MPI_FW_DOWNLOAD_ITYPE_FW;
820 dlmsg->ChainOffset = 0;
821 dlmsg->Function = MPI_FUNCTION_FW_DOWNLOAD;
822 dlmsg->Reserved1[0] = dlmsg->Reserved1[1] = dlmsg->Reserved1[2] = 0;
823 if (iocp->facts.MsgVersion >= MPI_VERSION_01_05)
824 dlmsg->MsgFlags = MPI_FW_DOWNLOAD_MSGFLGS_LAST_SEGMENT;
829 /* Set up the Transaction SGE.
832 ptsge->ContextSize = 0;
833 ptsge->DetailsLength = 12;
834 ptsge->Flags = MPI_SGE_FLAGS_TRANSACTION_ELEMENT;
835 ptsge->Reserved_0100_Checksum = 0;
836 ptsge->ImageOffset = 0;
837 ptsge->ImageSize = cpu_to_le32(fwlen);
843 * Need to kmalloc area(s) for holding firmware image bytes.
844 * But we need to do it piece meal, using a proper
845 * scatter gather list (with 128kB MAX hunks).
847 * A practical limit here might be # of sg hunks that fit into
848 * a single IOC request frame; 12 or 8 (see below), so:
849 * For FC9xx: 12 x 128kB == 1.5 mB (max)
850 * For C1030: 8 x 128kB == 1 mB (max)
851 * We could support chaining, but things get ugly(ier:)
853 * Set the sge_offset to the start of the sgl (bytes).
855 sgdir = 0x04000000; /* IOC will READ from sys mem */
856 sge_offset = sizeof(MPIHeader_t) + sizeof(FWDownloadTCSGE_t);
857 if ((sgl = kbuf_alloc_2_sgl(fwlen, sgdir, sge_offset,
858 &numfrags, &buflist, &sgl_dma, iocp)) == NULL)
862 * We should only need SGL with 2 simple_32bit entries (up to 256 kB)
863 * for FC9xx f/w image, but calculate max number of sge hunks
864 * we can fit into a request frame, and limit ourselves to that.
865 * (currently no chain support)
866 * maxfrags = (Request Size - FWdownload Size ) / Size of 32 bit SGE
872 maxfrags = (iocp->req_sz - sizeof(MPIHeader_t) -
873 sizeof(FWDownloadTCSGE_t))
875 if (numfrags > maxfrags) {
880 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "DbG: sgl buffer = %p, sgfrags = %d\n",
881 iocp->name, sgl, numfrags));
884 * Parse SG list, copying sgl itself,
885 * plus f/w image hunks from user space as we go...
890 for (i=0; i < numfrags; i++) {
892 /* Get the SGE type: 0 - TCSGE, 3 - Chain, 1 - Simple SGE
893 * Skip everything but Simple. If simple, copy from
894 * user space into kernel space.
895 * Note: we should not have anything but Simple as
896 * Chain SGE are illegal.
898 nib = (sgIn->FlagsLength & 0x30000000) >> 28;
899 if (nib == 0 || nib == 3) {
901 } else if (sgIn->Address) {
902 iocp->add_sge(sgOut, sgIn->FlagsLength, sgIn->Address);
904 if (copy_from_user(bl->kptr, ufwbuf+fw_bytes_copied, bl->len)) {
905 printk(MYIOC_s_ERR_FMT "%s@%d::_ioctl_fwdl - "
906 "Unable to copy f/w buffer hunk#%d @ %p\n",
907 iocp->name, __FILE__, __LINE__, n, ufwbuf);
910 fw_bytes_copied += bl->len;
914 sgOut += iocp->SGE_size;
917 DBG_DUMP_FW_DOWNLOAD(iocp, (u32 *)mf, numfrags);
920 * Finally, perform firmware download.
923 SET_MGMT_MSG_CONTEXT(iocp->ioctl_cmds.msg_context, dlmsg->MsgContext);
924 INITIALIZE_MGMT_STATUS(iocp->ioctl_cmds.status)
925 mpt_put_msg_frame(mptctl_id, iocp, mf);
927 /* Now wait for the command to complete */
929 timeleft = wait_for_completion_timeout(&iocp->ioctl_cmds.done, HZ*60);
930 if (!(iocp->ioctl_cmds.status & MPT_MGMT_STATUS_COMMAND_GOOD)) {
932 printk(MYIOC_s_WARN_FMT "%s: failed\n", iocp->name, __func__);
933 if (iocp->ioctl_cmds.status & MPT_MGMT_STATUS_DID_IOCRESET) {
934 mpt_free_msg_frame(iocp, mf);
938 printk(MYIOC_s_WARN_FMT
939 "FW download timeout, doorbell=0x%08x\n",
940 iocp->name, mpt_GetIocState(iocp, 0));
941 mptctl_timeout_expired(iocp, mf);
947 if (!(iocp->ioctl_cmds.status & MPT_MGMT_STATUS_RF_VALID)) {
948 printk(MYIOC_s_WARN_FMT "%s: failed\n", iocp->name, __func__);
949 mpt_free_msg_frame(iocp, mf);
955 kfree_sgl(sgl, sgl_dma, buflist, iocp);
957 ReplyMsg = (pFWDownloadReply_t)iocp->ioctl_cmds.reply;
958 iocstat = le16_to_cpu(ReplyMsg->IOCStatus) & MPI_IOCSTATUS_MASK;
959 if (iocstat == MPI_IOCSTATUS_SUCCESS) {
960 printk(MYIOC_s_INFO_FMT "F/W update successful!\n", iocp->name);
962 } else if (iocstat == MPI_IOCSTATUS_INVALID_FUNCTION) {
963 printk(MYIOC_s_WARN_FMT "Hmmm... F/W download not supported!?!\n",
965 printk(MYIOC_s_WARN_FMT "(time to go bang on somebodies door)\n",
968 } else if (iocstat == MPI_IOCSTATUS_BUSY) {
969 printk(MYIOC_s_WARN_FMT "IOC_BUSY!\n", iocp->name);
970 printk(MYIOC_s_WARN_FMT "(try again later?)\n", iocp->name);
973 printk(MYIOC_s_WARN_FMT "ioctl_fwdl() returned [bad] status = %04xh\n",
974 iocp->name, iocstat);
975 printk(MYIOC_s_WARN_FMT "(bad VooDoo)\n", iocp->name);
982 CLEAR_MGMT_STATUS(iocp->ioctl_cmds.status);
983 SET_MGMT_MSG_CONTEXT(iocp->ioctl_cmds.msg_context, 0);
984 kfree_sgl(sgl, sgl_dma, buflist, iocp);
988 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
990 * SGE Allocation routine
992 * Inputs: bytes - number of bytes to be transferred
993 * sgdir - data direction
994 * sge_offset - offset (in bytes) from the start of the request
995 * frame to the first SGE
996 * ioc - pointer to the mptadapter
997 * Outputs: frags - number of scatter gather elements
998 * blp - point to the buflist pointer
999 * sglbuf_dma - pointer to the (dma) sgl
1000 * Returns: Null if failes
1001 * pointer to the (virtual) sgl if successful.
1004 kbuf_alloc_2_sgl(int bytes, u32 sgdir, int sge_offset, int *frags,
1005 struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc)
1007 MptSge_t *sglbuf = NULL; /* pointer to array of SGE */
1008 /* and chain buffers */
1009 struct buflist *buflist = NULL; /* kernel routine */
1013 int alloc_sz = min(bytes,MAX_KMALLOC_SZ); // avoid kernel warning msg!
1014 int bytes_allocd = 0;
1016 dma_addr_t pa; // phys addr
1018 int sg_spill = MAX_FRAGS_SPILL1;
1024 /* initialization */
1028 /* Allocate and initialize an array of kernel
1029 * structures for the SG elements.
1031 i = MAX_SGL_BYTES / 8;
1032 buflist = kzalloc(i, GFP_USER);
1037 /* Allocate a single block of memory to store the sg elements and
1038 * the chain buffers. The calling routine is responsible for
1039 * copying the data in this array into the correct place in the
1040 * request and chain buffers.
1042 sglbuf = dma_alloc_coherent(&ioc->pcidev->dev, MAX_SGL_BYTES,
1043 sglbuf_dma, GFP_KERNEL);
1047 if (sgdir & 0x04000000)
1048 dir = DMA_TO_DEVICE;
1050 dir = DMA_FROM_DEVICE;
1053 * sgl = sglbuf = point to beginning of sg buffer
1054 * buflist_ent = 0 = first kernel structure
1055 * sg_spill = number of SGE that can be written before the first
1060 sg_spill = ((ioc->req_sz - sge_offset)/ioc->SGE_size) - 1;
1061 while (bytes_allocd < bytes) {
1062 this_alloc = min(alloc_sz, bytes-bytes_allocd);
1063 buflist[buflist_ent].len = this_alloc;
1064 buflist[buflist_ent].kptr = dma_alloc_coherent(&ioc->pcidev->dev,
1067 if (buflist[buflist_ent].kptr == NULL) {
1068 alloc_sz = alloc_sz / 2;
1069 if (alloc_sz == 0) {
1070 printk(MYIOC_s_WARN_FMT "-SG: No can do - "
1071 "not enough memory! :-(\n", ioc->name);
1072 printk(MYIOC_s_WARN_FMT "-SG: (freeing %d frags)\n",
1073 ioc->name, numfrags);
1078 dma_addr_t dma_addr;
1080 bytes_allocd += this_alloc;
1081 sgl->FlagsLength = (0x10000000|sgdir|this_alloc);
1082 dma_addr = dma_map_single(&ioc->pcidev->dev,
1083 buflist[buflist_ent].kptr,
1085 sgl->Address = dma_addr;
1093 if (bytes_allocd >= bytes)
1096 /* Need to chain? */
1097 if (fragcnt == sg_spill) {
1098 printk(MYIOC_s_WARN_FMT
1099 "-SG: No can do - " "Chain required! :-(\n", ioc->name);
1100 printk(MYIOC_s_WARN_FMT "(freeing %d frags)\n", ioc->name, numfrags);
1104 /* overflow check... */
1105 if (numfrags*8 > MAX_SGL_BYTES){
1107 printk(MYIOC_s_WARN_FMT "-SG: No can do - "
1108 "too many SG frags! :-(\n", ioc->name);
1109 printk(MYIOC_s_WARN_FMT "-SG: (freeing %d frags)\n",
1110 ioc->name, numfrags);
1115 /* Last sge fixup: set LE+eol+eob bits */
1116 sgl[-1].FlagsLength |= 0xC1000000;
1121 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: kbuf_alloc_2_sgl() - "
1122 "%d SG frags generated!\n", ioc->name, numfrags));
1124 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: kbuf_alloc_2_sgl() - "
1125 "last (big) alloc_sz=%d\n", ioc->name, alloc_sz));
1130 if (sglbuf != NULL) {
1131 for (i = 0; i < numfrags; i++) {
1132 dma_addr_t dma_addr;
1136 if ((sglbuf[i].FlagsLength >> 24) == 0x30)
1139 dma_addr = sglbuf[i].Address;
1140 kptr = buflist[i].kptr;
1141 len = buflist[i].len;
1143 dma_free_coherent(&ioc->pcidev->dev, len, kptr,
1146 dma_free_coherent(&ioc->pcidev->dev, MAX_SGL_BYTES, sglbuf,
1153 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1155 * Routine to free the SGL elements.
1158 kfree_sgl(MptSge_t *sgl, dma_addr_t sgl_dma, struct buflist *buflist, MPT_ADAPTER *ioc)
1161 struct buflist *bl = buflist;
1166 if (sg->FlagsLength & 0x04000000)
1167 dir = DMA_TO_DEVICE;
1169 dir = DMA_FROM_DEVICE;
1171 nib = (sg->FlagsLength & 0xF0000000) >> 28;
1172 while (! (nib & 0x4)) { /* eob */
1173 /* skip ignore/chain. */
1174 if (nib == 0 || nib == 3) {
1176 } else if (sg->Address) {
1177 dma_addr_t dma_addr;
1181 dma_addr = sg->Address;
1184 dma_unmap_single(&ioc->pcidev->dev, dma_addr, len,
1186 dma_free_coherent(&ioc->pcidev->dev, len, kptr,
1192 nib = (le32_to_cpu(sg->FlagsLength) & 0xF0000000) >> 28;
1197 dma_addr_t dma_addr;
1201 dma_addr = sg->Address;
1204 dma_unmap_single(&ioc->pcidev->dev, dma_addr, len, dir);
1205 dma_free_coherent(&ioc->pcidev->dev, len, kptr, dma_addr);
1209 dma_free_coherent(&ioc->pcidev->dev, MAX_SGL_BYTES, sgl, sgl_dma);
1211 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: Free'd 1 SGL buf + %d kbufs!\n",
1215 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1217 * mptctl_getiocinfo - Query the host adapter for IOC information.
1218 * @arg: User space argument
1221 * Return: 0 if successful
1222 * -EFAULT if data unavailable
1223 * -ENODEV if no such device/adapter
1226 mptctl_getiocinfo (MPT_ADAPTER *ioc, unsigned long arg, unsigned int data_size)
1228 struct mpt_ioctl_iocinfo __user *uarg = (void __user *) arg;
1229 struct mpt_ioctl_iocinfo *karg;
1230 struct pci_dev *pdev;
1233 struct scsi_device *sdev;
1234 VirtDevice *vdevice;
1236 /* Add of PCI INFO results in unaligned access for
1237 * IA64 and Sparc. Reset long to int. Return no PCI
1238 * data for obsolete format.
1240 if (data_size == sizeof(struct mpt_ioctl_iocinfo_rev0))
1242 else if (data_size == sizeof(struct mpt_ioctl_iocinfo_rev1))
1244 else if (data_size == sizeof(struct mpt_ioctl_iocinfo))
1246 else if (data_size == (sizeof(struct mpt_ioctl_iocinfo_rev0)+12))
1247 cim_rev = 0; /* obsolete */
1251 karg = memdup_user(uarg, data_size);
1253 printk(KERN_ERR MYNAM "%s@%d::mpt_ioctl_iocinfo() - memdup_user returned error [%ld]\n",
1254 __FILE__, __LINE__, PTR_ERR(karg));
1255 return PTR_ERR(karg);
1258 /* Verify the data transfer size is correct. */
1259 if (karg->hdr.maxDataSize != data_size) {
1260 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_getiocinfo - "
1261 "Structure size mismatch. Command not completed.\n",
1262 ioc->name, __FILE__, __LINE__);
1267 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_getiocinfo called.\n",
1270 /* Fill in the data and return the structure to the calling
1273 if (ioc->bus_type == SAS)
1274 karg->adapterType = MPT_IOCTL_INTERFACE_SAS;
1275 else if (ioc->bus_type == FC)
1276 karg->adapterType = MPT_IOCTL_INTERFACE_FC;
1278 karg->adapterType = MPT_IOCTL_INTERFACE_SCSI;
1280 if (karg->hdr.port > 1) {
1284 port = karg->hdr.port;
1287 pdev = (struct pci_dev *) ioc->pcidev;
1289 karg->pciId = pdev->device;
1290 karg->hwRev = pdev->revision;
1291 karg->subSystemDevice = pdev->subsystem_device;
1292 karg->subSystemVendor = pdev->subsystem_vendor;
1295 /* Get the PCI bus, device, and function numbers for the IOC
1297 karg->pciInfo.u.bits.busNumber = pdev->bus->number;
1298 karg->pciInfo.u.bits.deviceNumber = PCI_SLOT( pdev->devfn );
1299 karg->pciInfo.u.bits.functionNumber = PCI_FUNC( pdev->devfn );
1300 } else if (cim_rev == 2) {
1301 /* Get the PCI bus, device, function and segment ID numbers
1303 karg->pciInfo.u.bits.busNumber = pdev->bus->number;
1304 karg->pciInfo.u.bits.deviceNumber = PCI_SLOT( pdev->devfn );
1305 karg->pciInfo.u.bits.functionNumber = PCI_FUNC( pdev->devfn );
1306 karg->pciInfo.segmentID = pci_domain_nr(pdev->bus);
1309 /* Get number of devices
1311 karg->numDevices = 0;
1313 shost_for_each_device(sdev, ioc->sh) {
1314 vdevice = sdev->hostdata;
1315 if (vdevice == NULL || vdevice->vtarget == NULL)
1317 if (vdevice->vtarget->tflags &
1318 MPT_TARGET_FLAGS_RAID_COMPONENT)
1324 /* Set the BIOS and FW Version
1326 karg->FWVersion = ioc->facts.FWVersion.Word;
1327 karg->BIOSVersion = ioc->biosVersion;
1329 /* Set the Version Strings.
1331 strncpy (karg->driverVersion, MPT_LINUX_PACKAGE_NAME, MPT_IOCTL_VERSION_LENGTH);
1332 karg->driverVersion[MPT_IOCTL_VERSION_LENGTH-1]='\0';
1334 karg->busChangeEvent = 0;
1335 karg->hostId = ioc->pfacts[port].PortSCSIID;
1336 karg->rsvd[0] = karg->rsvd[1] = 0;
1338 /* Copy the data from kernel memory to user memory
1340 if (copy_to_user((char __user *)arg, karg, data_size)) {
1341 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_getiocinfo - "
1342 "Unable to write out mpt_ioctl_iocinfo struct @ %p\n",
1343 ioc->name, __FILE__, __LINE__, uarg);
1352 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1354 * mptctl_gettargetinfo - Query the host adapter for target information.
1355 * @arg: User space argument
1358 * Return: 0 if successful
1359 * -EFAULT if data unavailable
1360 * -ENODEV if no such device/adapter
1363 mptctl_gettargetinfo (MPT_ADAPTER *ioc, unsigned long arg)
1365 struct mpt_ioctl_targetinfo __user *uarg = (void __user *) arg;
1366 struct mpt_ioctl_targetinfo karg;
1367 VirtDevice *vdevice;
1374 struct scsi_device *sdev;
1376 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_targetinfo))) {
1377 printk(KERN_ERR MYNAM "%s@%d::mptctl_gettargetinfo - "
1378 "Unable to read in mpt_ioctl_targetinfo struct @ %p\n",
1379 __FILE__, __LINE__, uarg);
1383 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_gettargetinfo called.\n",
1385 numBytes = karg.hdr.maxDataSize - sizeof(mpt_ioctl_header);
1386 maxWordsLeft = numBytes/sizeof(int);
1388 if (maxWordsLeft <= 0) {
1389 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo() - no memory available!\n",
1390 ioc->name, __FILE__, __LINE__);
1394 /* Fill in the data and return the structure to the calling
1398 /* struct mpt_ioctl_targetinfo does not contain sufficient space
1399 * for the target structures so when the IOCTL is called, there is
1400 * not sufficient stack space for the structure. Allocate memory,
1401 * populate the memory, copy back to the user, then free memory.
1402 * targetInfo format:
1403 * bits 31-24: reserved
1408 pmem = kzalloc(numBytes, GFP_KERNEL);
1410 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo() - no memory available!\n",
1411 ioc->name, __FILE__, __LINE__);
1414 pdata = (int *) pmem;
1416 /* Get number of devices
1419 shost_for_each_device(sdev, ioc->sh) {
1422 vdevice = sdev->hostdata;
1423 if (vdevice == NULL || vdevice->vtarget == NULL)
1425 if (vdevice->vtarget->tflags &
1426 MPT_TARGET_FLAGS_RAID_COMPONENT)
1428 lun = (vdevice->vtarget->raidVolume) ? 0x80 : vdevice->lun;
1429 *pdata = (((u8)lun << 16) + (vdevice->vtarget->channel << 8) +
1430 (vdevice->vtarget->id ));
1436 karg.numDevices = numDevices;
1438 /* Copy part of the data from kernel memory to user memory
1440 if (copy_to_user((char __user *)arg, &karg,
1441 sizeof(struct mpt_ioctl_targetinfo))) {
1442 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo - "
1443 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
1444 ioc->name, __FILE__, __LINE__, uarg);
1449 /* Copy the remaining data from kernel memory to user memory
1451 if (copy_to_user(uarg->targetInfo, pmem, numBytes)) {
1452 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo - "
1453 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
1454 ioc->name, __FILE__, __LINE__, pdata);
1464 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1465 /* MPT IOCTL Test function.
1468 * Return: 0 if successful
1469 * -EFAULT if data unavailable
1470 * -ENODEV if no such device/adapter
1473 mptctl_readtest (MPT_ADAPTER *ioc, unsigned long arg)
1475 struct mpt_ioctl_test __user *uarg = (void __user *) arg;
1476 struct mpt_ioctl_test karg;
1478 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_test))) {
1479 printk(KERN_ERR MYNAM "%s@%d::mptctl_readtest - "
1480 "Unable to read in mpt_ioctl_test struct @ %p\n",
1481 __FILE__, __LINE__, uarg);
1485 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_readtest called.\n",
1487 /* Fill in the data and return the structure to the calling
1492 karg.chip_type = ioc->mfcnt;
1494 karg.chip_type = ioc->pcidev->device;
1496 strncpy (karg.name, ioc->name, MPT_MAX_NAME);
1497 karg.name[MPT_MAX_NAME-1]='\0';
1498 strncpy (karg.product, ioc->prod_name, MPT_PRODUCT_LENGTH);
1499 karg.product[MPT_PRODUCT_LENGTH-1]='\0';
1501 /* Copy the data from kernel memory to user memory
1503 if (copy_to_user((char __user *)arg, &karg, sizeof(struct mpt_ioctl_test))) {
1504 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_readtest - "
1505 "Unable to write out mpt_ioctl_test struct @ %p\n",
1506 ioc->name, __FILE__, __LINE__, uarg);
1513 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1515 * mptctl_eventquery - Query the host adapter for the event types
1516 * that are being logged.
1517 * @arg: User space argument
1520 * Return: 0 if successful
1521 * -EFAULT if data unavailable
1522 * -ENODEV if no such device/adapter
1525 mptctl_eventquery (MPT_ADAPTER *ioc, unsigned long arg)
1527 struct mpt_ioctl_eventquery __user *uarg = (void __user *) arg;
1528 struct mpt_ioctl_eventquery karg;
1530 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventquery))) {
1531 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventquery - "
1532 "Unable to read in mpt_ioctl_eventquery struct @ %p\n",
1533 __FILE__, __LINE__, uarg);
1537 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventquery called.\n",
1539 karg.eventEntries = MPTCTL_EVENT_LOG_SIZE;
1540 karg.eventTypes = ioc->eventTypes;
1542 /* Copy the data from kernel memory to user memory
1544 if (copy_to_user((char __user *)arg, &karg, sizeof(struct mpt_ioctl_eventquery))) {
1545 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_eventquery - "
1546 "Unable to write out mpt_ioctl_eventquery struct @ %p\n",
1547 ioc->name, __FILE__, __LINE__, uarg);
1553 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1555 mptctl_eventenable (MPT_ADAPTER *ioc, unsigned long arg)
1557 struct mpt_ioctl_eventenable __user *uarg = (void __user *) arg;
1558 struct mpt_ioctl_eventenable karg;
1560 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventenable))) {
1561 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventenable - "
1562 "Unable to read in mpt_ioctl_eventenable struct @ %p\n",
1563 __FILE__, __LINE__, uarg);
1567 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventenable called.\n",
1569 if (ioc->events == NULL) {
1570 /* Have not yet allocated memory - do so now.
1572 int sz = MPTCTL_EVENT_LOG_SIZE * sizeof(MPT_IOCTL_EVENTS);
1573 ioc->events = kzalloc(sz, GFP_KERNEL);
1575 printk(MYIOC_s_ERR_FMT
1576 ": ERROR - Insufficient memory to add adapter!\n",
1580 ioc->alloc_total += sz;
1582 ioc->eventContext = 0;
1585 /* Update the IOC event logging flag.
1587 ioc->eventTypes = karg.eventTypes;
1592 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1594 mptctl_eventreport (MPT_ADAPTER *ioc, unsigned long arg)
1596 struct mpt_ioctl_eventreport __user *uarg = (void __user *) arg;
1597 struct mpt_ioctl_eventreport karg;
1598 int numBytes, maxEvents, max;
1600 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventreport))) {
1601 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventreport - "
1602 "Unable to read in mpt_ioctl_eventreport struct @ %p\n",
1603 __FILE__, __LINE__, uarg);
1607 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventreport called.\n",
1610 numBytes = karg.hdr.maxDataSize - sizeof(mpt_ioctl_header);
1611 maxEvents = numBytes/sizeof(MPT_IOCTL_EVENTS);
1614 max = MPTCTL_EVENT_LOG_SIZE < maxEvents ? MPTCTL_EVENT_LOG_SIZE : maxEvents;
1616 /* If fewer than 1 event is requested, there must have
1617 * been some type of error.
1619 if ((max < 1) || !ioc->events)
1622 /* reset this flag so SIGIO can restart */
1623 ioc->aen_event_read_flag=0;
1625 /* Copy the data from kernel memory to user memory
1627 numBytes = max * sizeof(MPT_IOCTL_EVENTS);
1628 if (copy_to_user(uarg->eventData, ioc->events, numBytes)) {
1629 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_eventreport - "
1630 "Unable to write out mpt_ioctl_eventreport struct @ %p\n",
1631 ioc->name, __FILE__, __LINE__, ioc->events);
1638 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1640 mptctl_replace_fw (MPT_ADAPTER *ioc, unsigned long arg)
1642 struct mpt_ioctl_replace_fw __user *uarg = (void __user *) arg;
1643 struct mpt_ioctl_replace_fw karg;
1646 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_replace_fw))) {
1647 printk(KERN_ERR MYNAM "%s@%d::mptctl_replace_fw - "
1648 "Unable to read in mpt_ioctl_replace_fw struct @ %p\n",
1649 __FILE__, __LINE__, uarg);
1653 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_replace_fw called.\n",
1655 /* If caching FW, Free the old FW image
1657 if (ioc->cached_fw == NULL)
1660 mpt_free_fw_memory(ioc);
1662 /* Allocate memory for the new FW image
1664 newFwSize = ALIGN(karg.newImageSize, 4);
1666 mpt_alloc_fw_memory(ioc, newFwSize);
1667 if (ioc->cached_fw == NULL)
1670 /* Copy the data from user memory to kernel space
1672 if (copy_from_user(ioc->cached_fw, uarg->newImage, newFwSize)) {
1673 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_replace_fw - "
1674 "Unable to read in mpt_ioctl_replace_fw image "
1675 "@ %p\n", ioc->name, __FILE__, __LINE__, uarg);
1676 mpt_free_fw_memory(ioc);
1680 /* Update IOCFactsReply
1682 ioc->facts.FWImageSize = newFwSize;
1686 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1687 /* MPT IOCTL MPTCOMMAND function.
1688 * Cast the arg into the mpt_ioctl_mpt_command structure.
1691 * Return: 0 if successful
1692 * -EBUSY if previous command timeout and IOC reset is not complete.
1693 * -EFAULT if data unavailable
1694 * -ENODEV if no such device/adapter
1695 * -ETIME if timer expires
1696 * -ENOMEM if memory allocation error
1699 mptctl_mpt_command (MPT_ADAPTER *ioc, unsigned long arg)
1701 struct mpt_ioctl_command __user *uarg = (void __user *) arg;
1702 struct mpt_ioctl_command karg;
1706 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_command))) {
1707 printk(KERN_ERR MYNAM "%s@%d::mptctl_mpt_command - "
1708 "Unable to read in mpt_ioctl_command struct @ %p\n",
1709 __FILE__, __LINE__, uarg);
1713 rc = mptctl_do_mpt_command (ioc, karg, &uarg->MF);
1718 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1719 /* Worker routine for the IOCTL MPTCOMMAND and MPTCOMMAND32 (sparc) commands.
1722 * Return: 0 if successful
1723 * -EBUSY if previous command timeout and IOC reset is not complete.
1724 * -EFAULT if data unavailable
1725 * -ENODEV if no such device/adapter
1726 * -ETIME if timer expires
1727 * -ENOMEM if memory allocation error
1728 * -EPERM if SCSI I/O and target is untagged
1731 mptctl_do_mpt_command (MPT_ADAPTER *ioc, struct mpt_ioctl_command karg, void __user *mfPtr)
1733 MPT_FRAME_HDR *mf = NULL;
1736 struct buflist bufIn; /* data In buffer */
1737 struct buflist bufOut; /* data Out buffer */
1738 dma_addr_t dma_addr_in;
1739 dma_addr_t dma_addr_out;
1740 int sgSize = 0; /* Num SG elements */
1746 unsigned long timeleft;
1747 struct scsi_device *sdev;
1748 unsigned long flags;
1751 /* bufIn and bufOut are used for user to kernel space transfers
1753 bufIn.kptr = bufOut.kptr = NULL;
1754 bufIn.len = bufOut.len = 0;
1756 spin_lock_irqsave(&ioc->taskmgmt_lock, flags);
1757 if (ioc->ioc_reset_in_progress) {
1758 spin_unlock_irqrestore(&ioc->taskmgmt_lock, flags);
1759 printk(KERN_ERR MYNAM "%s@%d::mptctl_do_mpt_command - "
1760 "Busy with diagnostic reset\n", __FILE__, __LINE__);
1763 spin_unlock_irqrestore(&ioc->taskmgmt_lock, flags);
1765 /* Basic sanity checks to prevent underflows or integer overflows */
1766 if (karg.maxReplyBytes < 0 ||
1767 karg.dataInSize < 0 ||
1768 karg.dataOutSize < 0 ||
1769 karg.dataSgeOffset < 0 ||
1770 karg.maxSenseBytes < 0 ||
1771 karg.dataSgeOffset > ioc->req_sz / 4)
1774 /* Verify that the final request frame will not be too large.
1776 sz = karg.dataSgeOffset * 4;
1777 if (karg.dataInSize > 0)
1778 sz += ioc->SGE_size;
1779 if (karg.dataOutSize > 0)
1780 sz += ioc->SGE_size;
1782 if (sz > ioc->req_sz) {
1783 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1784 "Request frame too large (%d) maximum (%d)\n",
1785 ioc->name, __FILE__, __LINE__, sz, ioc->req_sz);
1789 /* Get a free request frame and save the message context.
1791 if ((mf = mpt_get_msg_frame(mptctl_id, ioc)) == NULL)
1794 hdr = (MPIHeader_t *) mf;
1795 msgContext = le32_to_cpu(hdr->MsgContext);
1796 req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
1798 /* Copy the request frame
1799 * Reset the saved message context.
1800 * Request frame in user space
1802 if (copy_from_user(mf, mfPtr, karg.dataSgeOffset * 4)) {
1803 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1804 "Unable to read MF from mpt_ioctl_command struct @ %p\n",
1805 ioc->name, __FILE__, __LINE__, mfPtr);
1810 hdr->MsgContext = cpu_to_le32(msgContext);
1811 function = hdr->Function;
1814 /* Verify that this request is allowed.
1816 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "sending mpi function (0x%02X), req=%p\n",
1817 ioc->name, hdr->Function, mf));
1820 case MPI_FUNCTION_IOC_FACTS:
1821 case MPI_FUNCTION_PORT_FACTS:
1822 karg.dataOutSize = karg.dataInSize = 0;
1825 case MPI_FUNCTION_CONFIG:
1827 Config_t *config_frame;
1828 config_frame = (Config_t *)mf;
1829 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "\ttype=0x%02x ext_type=0x%02x "
1830 "number=0x%02x action=0x%02x\n", ioc->name,
1831 config_frame->Header.PageType,
1832 config_frame->ExtPageType,
1833 config_frame->Header.PageNumber,
1834 config_frame->Action));
1838 case MPI_FUNCTION_FC_COMMON_TRANSPORT_SEND:
1839 case MPI_FUNCTION_FC_EX_LINK_SRVC_SEND:
1840 case MPI_FUNCTION_FW_UPLOAD:
1841 case MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR:
1842 case MPI_FUNCTION_FW_DOWNLOAD:
1843 case MPI_FUNCTION_FC_PRIMITIVE_SEND:
1844 case MPI_FUNCTION_TOOLBOX:
1845 case MPI_FUNCTION_SAS_IO_UNIT_CONTROL:
1848 case MPI_FUNCTION_SCSI_IO_REQUEST:
1850 SCSIIORequest_t *pScsiReq = (SCSIIORequest_t *) mf;
1851 int qtag = MPI_SCSIIO_CONTROL_UNTAGGED;
1856 id = (ioc->devices_per_bus == 0) ? 256 : ioc->devices_per_bus;
1857 if (pScsiReq->TargetID > id) {
1858 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1859 "Target ID out of bounds. \n",
1860 ioc->name, __FILE__, __LINE__);
1865 if (pScsiReq->Bus >= ioc->number_of_buses) {
1866 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1867 "Target Bus out of bounds. \n",
1868 ioc->name, __FILE__, __LINE__);
1873 pScsiReq->MsgFlags &= ~MPI_SCSIIO_MSGFLGS_SENSE_WIDTH;
1874 pScsiReq->MsgFlags |= mpt_msg_flags(ioc);
1877 /* verify that app has not requested
1878 * more sense data than driver
1879 * can provide, if so, reset this parameter
1880 * set the sense buffer pointer low address
1881 * update the control field to specify Q type
1883 if (karg.maxSenseBytes > MPT_SENSE_BUFFER_SIZE)
1884 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
1886 pScsiReq->SenseBufferLength = karg.maxSenseBytes;
1888 pScsiReq->SenseBufferLowAddr =
1889 cpu_to_le32(ioc->sense_buf_low_dma
1890 + (req_idx * MPT_SENSE_BUFFER_ALLOC));
1892 shost_for_each_device(sdev, ioc->sh) {
1893 struct scsi_target *starget = scsi_target(sdev);
1894 VirtTarget *vtarget = starget->hostdata;
1896 if (vtarget == NULL)
1899 if ((pScsiReq->TargetID == vtarget->id) &&
1900 (pScsiReq->Bus == vtarget->channel) &&
1901 (vtarget->tflags & MPT_TARGET_FLAGS_Q_YES))
1902 qtag = MPI_SCSIIO_CONTROL_SIMPLEQ;
1905 /* Have the IOCTL driver set the direction based
1906 * on the dataOutSize (ordering issue with Sparc).
1908 if (karg.dataOutSize > 0) {
1909 scsidir = MPI_SCSIIO_CONTROL_WRITE;
1910 dataSize = karg.dataOutSize;
1912 scsidir = MPI_SCSIIO_CONTROL_READ;
1913 dataSize = karg.dataInSize;
1916 pScsiReq->Control = cpu_to_le32(scsidir | qtag);
1917 pScsiReq->DataLength = cpu_to_le32(dataSize);
1921 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1922 "SCSI driver is not loaded. \n",
1923 ioc->name, __FILE__, __LINE__);
1929 case MPI_FUNCTION_SMP_PASSTHROUGH:
1930 /* Check mf->PassthruFlags to determine if
1931 * transfer is ImmediateMode or not.
1932 * Immediate mode returns data in the ReplyFrame.
1933 * Else, we are sending request and response data
1934 * in two SGLs at the end of the mf.
1938 case MPI_FUNCTION_SATA_PASSTHROUGH:
1940 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1941 "SCSI driver is not loaded. \n",
1942 ioc->name, __FILE__, __LINE__);
1948 case MPI_FUNCTION_RAID_ACTION:
1953 case MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH:
1955 SCSIIORequest_t *pScsiReq = (SCSIIORequest_t *) mf;
1956 int qtag = MPI_SCSIIO_CONTROL_SIMPLEQ;
1957 int scsidir = MPI_SCSIIO_CONTROL_READ;
1960 pScsiReq->MsgFlags &= ~MPI_SCSIIO_MSGFLGS_SENSE_WIDTH;
1961 pScsiReq->MsgFlags |= mpt_msg_flags(ioc);
1964 /* verify that app has not requested
1965 * more sense data than driver
1966 * can provide, if so, reset this parameter
1967 * set the sense buffer pointer low address
1968 * update the control field to specify Q type
1970 if (karg.maxSenseBytes > MPT_SENSE_BUFFER_SIZE)
1971 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
1973 pScsiReq->SenseBufferLength = karg.maxSenseBytes;
1975 pScsiReq->SenseBufferLowAddr =
1976 cpu_to_le32(ioc->sense_buf_low_dma
1977 + (req_idx * MPT_SENSE_BUFFER_ALLOC));
1979 /* All commands to physical devices are tagged
1982 /* Have the IOCTL driver set the direction based
1983 * on the dataOutSize (ordering issue with Sparc).
1985 if (karg.dataOutSize > 0) {
1986 scsidir = MPI_SCSIIO_CONTROL_WRITE;
1987 dataSize = karg.dataOutSize;
1989 scsidir = MPI_SCSIIO_CONTROL_READ;
1990 dataSize = karg.dataInSize;
1993 pScsiReq->Control = cpu_to_le32(scsidir | qtag);
1994 pScsiReq->DataLength = cpu_to_le32(dataSize);
1997 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1998 "SCSI driver is not loaded. \n",
1999 ioc->name, __FILE__, __LINE__);
2005 case MPI_FUNCTION_SCSI_TASK_MGMT:
2007 SCSITaskMgmt_t *pScsiTm;
2008 pScsiTm = (SCSITaskMgmt_t *)mf;
2009 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT
2010 "\tTaskType=0x%x MsgFlags=0x%x "
2011 "TaskMsgContext=0x%x id=%d channel=%d\n",
2012 ioc->name, pScsiTm->TaskType, le32_to_cpu
2013 (pScsiTm->TaskMsgContext), pScsiTm->MsgFlags,
2014 pScsiTm->TargetID, pScsiTm->Bus));
2018 case MPI_FUNCTION_IOC_INIT:
2020 IOCInit_t *pInit = (IOCInit_t *) mf;
2021 u32 high_addr, sense_high;
2023 /* Verify that all entries in the IOC INIT match
2024 * existing setup (and in LE format).
2026 if (sizeof(dma_addr_t) == sizeof(u64)) {
2027 high_addr = cpu_to_le32((u32)((u64)ioc->req_frames_dma >> 32));
2028 sense_high= cpu_to_le32((u32)((u64)ioc->sense_buf_pool_dma >> 32));
2034 if ((pInit->Flags != 0) || (pInit->MaxDevices != ioc->facts.MaxDevices) ||
2035 (pInit->MaxBuses != ioc->facts.MaxBuses) ||
2036 (pInit->ReplyFrameSize != cpu_to_le16(ioc->reply_sz)) ||
2037 (pInit->HostMfaHighAddr != high_addr) ||
2038 (pInit->SenseBufferHighAddr != sense_high)) {
2039 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2040 "IOC_INIT issued with 1 or more incorrect parameters. Rejected.\n",
2041 ioc->name, __FILE__, __LINE__);
2049 * MPI_FUNCTION_PORT_ENABLE
2050 * MPI_FUNCTION_TARGET_CMD_BUFFER_POST
2051 * MPI_FUNCTION_TARGET_ASSIST
2052 * MPI_FUNCTION_TARGET_STATUS_SEND
2053 * MPI_FUNCTION_TARGET_MODE_ABORT
2054 * MPI_FUNCTION_IOC_MESSAGE_UNIT_RESET
2055 * MPI_FUNCTION_IO_UNIT_RESET
2056 * MPI_FUNCTION_HANDSHAKE
2057 * MPI_FUNCTION_REPLY_FRAME_REMOVAL
2058 * MPI_FUNCTION_EVENT_NOTIFICATION
2059 * (driver handles event notification)
2060 * MPI_FUNCTION_EVENT_ACK
2063 /* What to do with these??? CHECK ME!!!
2064 MPI_FUNCTION_FC_LINK_SRVC_BUF_POST
2065 MPI_FUNCTION_FC_LINK_SRVC_RSP
2066 MPI_FUNCTION_FC_ABORT
2067 MPI_FUNCTION_LAN_SEND
2068 MPI_FUNCTION_LAN_RECEIVE
2069 MPI_FUNCTION_LAN_RESET
2072 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2073 "Illegal request (function 0x%x) \n",
2074 ioc->name, __FILE__, __LINE__, hdr->Function);
2079 /* Add the SGL ( at most one data in SGE and one data out SGE )
2080 * In the case of two SGE's - the data out (write) will always
2081 * preceede the data in (read) SGE. psgList is used to free the
2084 psge = (char *) (((int *) mf) + karg.dataSgeOffset);
2087 if (karg.dataOutSize > 0)
2090 if (karg.dataInSize > 0)
2095 /* Set up the dataOut memory allocation */
2096 if (karg.dataOutSize > 0) {
2097 if (karg.dataInSize > 0) {
2098 flagsLength = ( MPI_SGE_FLAGS_SIMPLE_ELEMENT |
2099 MPI_SGE_FLAGS_END_OF_BUFFER |
2100 MPI_SGE_FLAGS_DIRECTION)
2101 << MPI_SGE_FLAGS_SHIFT;
2103 flagsLength = MPT_SGE_FLAGS_SSIMPLE_WRITE;
2105 flagsLength |= karg.dataOutSize;
2106 bufOut.len = karg.dataOutSize;
2107 bufOut.kptr = dma_alloc_coherent(&ioc->pcidev->dev,
2109 &dma_addr_out, GFP_KERNEL);
2111 if (bufOut.kptr == NULL) {
2116 * Copy to MF and to sglbuf
2118 ioc->add_sge(psge, flagsLength, dma_addr_out);
2119 psge += ioc->SGE_size;
2121 /* Copy user data to kernel space.
2123 if (copy_from_user(bufOut.kptr,
2126 printk(MYIOC_s_ERR_FMT
2127 "%s@%d::mptctl_do_mpt_command - Unable "
2128 "to read user data "
2130 ioc->name, __FILE__, __LINE__,karg.dataOutBufPtr);
2137 if (karg.dataInSize > 0) {
2138 flagsLength = MPT_SGE_FLAGS_SSIMPLE_READ;
2139 flagsLength |= karg.dataInSize;
2141 bufIn.len = karg.dataInSize;
2142 bufIn.kptr = dma_alloc_coherent(&ioc->pcidev->dev,
2144 &dma_addr_in, GFP_KERNEL);
2146 if (bufIn.kptr == NULL) {
2151 * Copy to MF and to sglbuf
2153 ioc->add_sge(psge, flagsLength, dma_addr_in);
2159 ioc->add_sge(psge, flagsLength, (dma_addr_t) -1);
2162 SET_MGMT_MSG_CONTEXT(ioc->ioctl_cmds.msg_context, hdr->MsgContext);
2163 INITIALIZE_MGMT_STATUS(ioc->ioctl_cmds.status)
2164 if (hdr->Function == MPI_FUNCTION_SCSI_TASK_MGMT) {
2166 mutex_lock(&ioc->taskmgmt_cmds.mutex);
2167 if (mpt_set_taskmgmt_in_progress_flag(ioc) != 0) {
2168 mutex_unlock(&ioc->taskmgmt_cmds.mutex);
2172 DBG_DUMP_TM_REQUEST_FRAME(ioc, (u32 *)mf);
2174 if ((ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q) &&
2175 (ioc->facts.MsgVersion >= MPI_VERSION_01_05))
2176 mpt_put_msg_frame_hi_pri(mptctl_id, ioc, mf);
2178 rc =mpt_send_handshake_request(mptctl_id, ioc,
2179 sizeof(SCSITaskMgmt_t), (u32*)mf, CAN_SLEEP);
2181 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT
2182 "send_handshake FAILED! (ioc %p, mf %p)\n",
2183 ioc->name, ioc, mf));
2184 mpt_clear_taskmgmt_in_progress_flag(ioc);
2186 mutex_unlock(&ioc->taskmgmt_cmds.mutex);
2192 mpt_put_msg_frame(mptctl_id, ioc, mf);
2194 /* Now wait for the command to complete */
2195 timeout = (karg.timeout > 0) ? karg.timeout : MPT_IOCTL_DEFAULT_TIMEOUT;
2197 timeleft = wait_for_completion_timeout(&ioc->ioctl_cmds.done,
2199 if (!(ioc->ioctl_cmds.status & MPT_MGMT_STATUS_COMMAND_GOOD)) {
2201 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT "%s: TIMED OUT!\n",
2202 ioc->name, __func__));
2203 if (ioc->ioctl_cmds.status & MPT_MGMT_STATUS_DID_IOCRESET) {
2204 if (function == MPI_FUNCTION_SCSI_TASK_MGMT)
2205 mutex_unlock(&ioc->taskmgmt_cmds.mutex);
2209 printk(MYIOC_s_WARN_FMT
2210 "mpt cmd timeout, doorbell=0x%08x"
2212 ioc->name, mpt_GetIocState(ioc, 0), function);
2213 if (function == MPI_FUNCTION_SCSI_TASK_MGMT)
2214 mutex_unlock(&ioc->taskmgmt_cmds.mutex);
2215 mptctl_timeout_expired(ioc, mf);
2222 if (function == MPI_FUNCTION_SCSI_TASK_MGMT)
2223 mutex_unlock(&ioc->taskmgmt_cmds.mutex);
2228 /* If a valid reply frame, copy to the user.
2229 * Offset 2: reply length in U32's
2231 if (ioc->ioctl_cmds.status & MPT_MGMT_STATUS_RF_VALID) {
2232 if (karg.maxReplyBytes < ioc->reply_sz) {
2233 sz = min(karg.maxReplyBytes,
2234 4*ioc->ioctl_cmds.reply[2]);
2236 sz = min(ioc->reply_sz, 4*ioc->ioctl_cmds.reply[2]);
2239 if (copy_to_user(karg.replyFrameBufPtr,
2240 ioc->ioctl_cmds.reply, sz)){
2241 printk(MYIOC_s_ERR_FMT
2242 "%s@%d::mptctl_do_mpt_command - "
2243 "Unable to write out reply frame %p\n",
2244 ioc->name, __FILE__, __LINE__, karg.replyFrameBufPtr);
2251 /* If valid sense data, copy to user.
2253 if (ioc->ioctl_cmds.status & MPT_MGMT_STATUS_SENSE_VALID) {
2254 sz = min(karg.maxSenseBytes, MPT_SENSE_BUFFER_SIZE);
2256 if (copy_to_user(karg.senseDataPtr,
2257 ioc->ioctl_cmds.sense, sz)) {
2258 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2259 "Unable to write sense data to user %p\n",
2260 ioc->name, __FILE__, __LINE__,
2268 /* If the overall status is _GOOD and data in, copy data
2271 if ((ioc->ioctl_cmds.status & MPT_MGMT_STATUS_COMMAND_GOOD) &&
2272 (karg.dataInSize > 0) && (bufIn.kptr)) {
2274 if (copy_to_user(karg.dataInBufPtr,
2275 bufIn.kptr, karg.dataInSize)) {
2276 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2277 "Unable to write data to user %p\n",
2278 ioc->name, __FILE__, __LINE__,
2286 CLEAR_MGMT_STATUS(ioc->ioctl_cmds.status)
2287 SET_MGMT_MSG_CONTEXT(ioc->ioctl_cmds.msg_context, 0);
2289 /* Free the allocated memory.
2291 if (bufOut.kptr != NULL) {
2292 dma_free_coherent(&ioc->pcidev->dev, bufOut.len,
2293 (void *)bufOut.kptr, dma_addr_out);
2296 if (bufIn.kptr != NULL) {
2297 dma_free_coherent(&ioc->pcidev->dev, bufIn.len,
2298 (void *)bufIn.kptr, dma_addr_in);
2301 /* mf is null if command issued successfully
2302 * otherwise, failure occurred after mf acquired.
2305 mpt_free_msg_frame(ioc, mf);
2310 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2311 /* Prototype Routine for the HOST INFO command.
2314 * Return: 0 if successful
2315 * -EFAULT if data unavailable
2316 * -EBUSY if previous command timeout and IOC reset is not complete.
2317 * -ENODEV if no such device/adapter
2318 * -ETIME if timer expires
2319 * -ENOMEM if memory allocation error
2322 mptctl_hp_hostinfo(MPT_ADAPTER *ioc, unsigned long arg, unsigned int data_size)
2324 hp_host_info_t __user *uarg = (void __user *) arg;
2325 struct pci_dev *pdev;
2328 hp_host_info_t karg;
2330 ConfigPageHeader_t hdr;
2332 ToolboxIstwiReadWriteRequest_t *IstwiRWRequest;
2333 MPT_FRAME_HDR *mf = NULL;
2334 unsigned long timeleft;
2337 /* Reset long to int. Should affect IA64 and SPARC only
2339 if (data_size == sizeof(hp_host_info_t))
2341 else if (data_size == sizeof(hp_host_info_rev0_t))
2342 cim_rev = 0; /* obsolete */
2346 if (copy_from_user(&karg, uarg, sizeof(hp_host_info_t))) {
2347 printk(KERN_ERR MYNAM "%s@%d::mptctl_hp_host_info - "
2348 "Unable to read in hp_host_info struct @ %p\n",
2349 __FILE__, __LINE__, uarg);
2353 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT ": mptctl_hp_hostinfo called.\n",
2356 /* Fill in the data and return the structure to the calling
2359 pdev = (struct pci_dev *) ioc->pcidev;
2361 karg.vendor = pdev->vendor;
2362 karg.device = pdev->device;
2363 karg.subsystem_id = pdev->subsystem_device;
2364 karg.subsystem_vendor = pdev->subsystem_vendor;
2365 karg.devfn = pdev->devfn;
2366 karg.bus = pdev->bus->number;
2368 /* Save the SCSI host no. if
2369 * SCSI driver loaded
2371 if (ioc->sh != NULL)
2372 karg.host_no = ioc->sh->host_no;
2376 /* Reformat the fw_version into a string */
2377 snprintf(karg.fw_version, sizeof(karg.fw_version),
2378 "%.2hhu.%.2hhu.%.2hhu.%.2hhu",
2379 ioc->facts.FWVersion.Struct.Major,
2380 ioc->facts.FWVersion.Struct.Minor,
2381 ioc->facts.FWVersion.Struct.Unit,
2382 ioc->facts.FWVersion.Struct.Dev);
2384 /* Issue a config request to get the device serial number
2386 hdr.PageVersion = 0;
2389 hdr.PageType = MPI_CONFIG_PAGETYPE_MANUFACTURING;
2390 cfg.cfghdr.hdr = &hdr;
2393 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
2394 cfg.dir = 0; /* read */
2397 strncpy(karg.serial_number, " ", 24);
2398 if (mpt_config(ioc, &cfg) == 0) {
2399 if (cfg.cfghdr.hdr->PageLength > 0) {
2400 /* Issue the second config page request */
2401 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2403 pbuf = dma_alloc_coherent(&ioc->pcidev->dev,
2405 &buf_dma, GFP_KERNEL);
2407 cfg.physAddr = buf_dma;
2408 if (mpt_config(ioc, &cfg) == 0) {
2409 ManufacturingPage0_t *pdata = (ManufacturingPage0_t *) pbuf;
2410 if (strlen(pdata->BoardTracerNumber) > 1) {
2411 strscpy(karg.serial_number,
2412 pdata->BoardTracerNumber, 24);
2415 dma_free_coherent(&ioc->pcidev->dev,
2416 hdr.PageLength * 4, pbuf,
2422 rc = mpt_GetIocState(ioc, 1);
2424 case MPI_IOC_STATE_OPERATIONAL:
2425 karg.ioc_status = HP_STATUS_OK;
2428 case MPI_IOC_STATE_FAULT:
2429 karg.ioc_status = HP_STATUS_FAILED;
2432 case MPI_IOC_STATE_RESET:
2433 case MPI_IOC_STATE_READY:
2435 karg.ioc_status = HP_STATUS_OTHER;
2439 karg.base_io_addr = pci_resource_start(pdev, 0);
2441 if ((ioc->bus_type == SAS) || (ioc->bus_type == FC))
2442 karg.bus_phys_width = HP_BUS_WIDTH_UNK;
2444 karg.bus_phys_width = HP_BUS_WIDTH_16;
2446 karg.hard_resets = 0;
2447 karg.soft_resets = 0;
2449 if (ioc->sh != NULL) {
2450 MPT_SCSI_HOST *hd = shost_priv(ioc->sh);
2452 if (hd && (cim_rev == 1)) {
2453 karg.hard_resets = ioc->hard_resets;
2454 karg.soft_resets = ioc->soft_resets;
2455 karg.timeouts = ioc->timeouts;
2460 * Gather ISTWI(Industry Standard Two Wire Interface) Data
2462 if ((mf = mpt_get_msg_frame(mptctl_id, ioc)) == NULL) {
2463 dfailprintk(ioc, printk(MYIOC_s_WARN_FMT
2464 "%s, no msg frames!!\n", ioc->name, __func__));
2468 IstwiRWRequest = (ToolboxIstwiReadWriteRequest_t *)mf;
2469 msgcontext = IstwiRWRequest->MsgContext;
2470 memset(IstwiRWRequest,0,sizeof(ToolboxIstwiReadWriteRequest_t));
2471 IstwiRWRequest->MsgContext = msgcontext;
2472 IstwiRWRequest->Function = MPI_FUNCTION_TOOLBOX;
2473 IstwiRWRequest->Tool = MPI_TOOLBOX_ISTWI_READ_WRITE_TOOL;
2474 IstwiRWRequest->Flags = MPI_TB_ISTWI_FLAGS_READ;
2475 IstwiRWRequest->NumAddressBytes = 0x01;
2476 IstwiRWRequest->DataLength = cpu_to_le16(0x04);
2477 if (pdev->devfn & 1)
2478 IstwiRWRequest->DeviceAddr = 0xB2;
2480 IstwiRWRequest->DeviceAddr = 0xB0;
2482 pbuf = dma_alloc_coherent(&ioc->pcidev->dev, 4, &buf_dma, GFP_KERNEL);
2485 ioc->add_sge((char *)&IstwiRWRequest->SGL,
2486 (MPT_SGE_FLAGS_SSIMPLE_READ|4), buf_dma);
2488 SET_MGMT_MSG_CONTEXT(ioc->ioctl_cmds.msg_context,
2489 IstwiRWRequest->MsgContext);
2490 INITIALIZE_MGMT_STATUS(ioc->ioctl_cmds.status)
2491 mpt_put_msg_frame(mptctl_id, ioc, mf);
2494 timeleft = wait_for_completion_timeout(&ioc->ioctl_cmds.done,
2495 HZ*MPT_IOCTL_DEFAULT_TIMEOUT);
2496 if (!(ioc->ioctl_cmds.status & MPT_MGMT_STATUS_COMMAND_GOOD)) {
2497 printk(MYIOC_s_WARN_FMT "%s: failed\n", ioc->name, __func__);
2498 if (ioc->ioctl_cmds.status & MPT_MGMT_STATUS_DID_IOCRESET) {
2499 mpt_free_msg_frame(ioc, mf);
2503 printk(MYIOC_s_WARN_FMT
2504 "HOST INFO command timeout, doorbell=0x%08x\n",
2505 ioc->name, mpt_GetIocState(ioc, 0));
2506 mptctl_timeout_expired(ioc, mf);
2513 *ISTWI Data Definition
2514 * pbuf[0] = FW_VERSION = 0x4
2515 * pbuf[1] = Bay Count = 6 or 4 or 2, depending on
2516 * the config, you should be seeing one out of these three values
2517 * pbuf[2] = Drive Installed Map = bit pattern depend on which
2518 * bays have drives in them
2519 * pbuf[3] = Checksum (0x100 = (byte0 + byte2 + byte3)
2521 if (ioc->ioctl_cmds.status & MPT_MGMT_STATUS_RF_VALID)
2522 karg.rsvd = *(u32 *)pbuf;
2525 CLEAR_MGMT_STATUS(ioc->ioctl_cmds.status)
2526 SET_MGMT_MSG_CONTEXT(ioc->ioctl_cmds.msg_context, 0);
2529 dma_free_coherent(&ioc->pcidev->dev, 4, pbuf, buf_dma);
2531 /* Copy the data from kernel memory to user memory
2533 if (copy_to_user((char __user *)arg, &karg, sizeof(hp_host_info_t))) {
2534 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_hpgethostinfo - "
2535 "Unable to write out hp_host_info @ %p\n",
2536 ioc->name, __FILE__, __LINE__, uarg);
2544 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2545 /* Prototype Routine for the TARGET INFO command.
2548 * Return: 0 if successful
2549 * -EFAULT if data unavailable
2550 * -EBUSY if previous command timeout and IOC reset is not complete.
2551 * -ENODEV if no such device/adapter
2552 * -ETIME if timer expires
2553 * -ENOMEM if memory allocation error
2556 mptctl_hp_targetinfo(MPT_ADAPTER *ioc, unsigned long arg)
2558 hp_target_info_t __user *uarg = (void __user *) arg;
2559 SCSIDevicePage0_t *pg0_alloc;
2560 SCSIDevicePage3_t *pg3_alloc;
2561 MPT_SCSI_HOST *hd = NULL;
2562 hp_target_info_t karg;
2564 dma_addr_t page_dma;
2566 ConfigPageHeader_t hdr;
2567 int tmp, np, rc = 0;
2569 if (copy_from_user(&karg, uarg, sizeof(hp_target_info_t))) {
2570 printk(KERN_ERR MYNAM "%s@%d::mptctl_hp_targetinfo - "
2571 "Unable to read in hp_host_targetinfo struct @ %p\n",
2572 __FILE__, __LINE__, uarg);
2576 if (karg.hdr.id >= MPT_MAX_FC_DEVICES)
2578 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_hp_targetinfo called.\n",
2581 /* There is nothing to do for FCP parts.
2583 if ((ioc->bus_type == SAS) || (ioc->bus_type == FC))
2586 if ((ioc->spi_data.sdp0length == 0) || (ioc->sh == NULL))
2589 if (ioc->sh->host_no != karg.hdr.host)
2592 /* Get the data transfer speeds
2594 data_sz = ioc->spi_data.sdp0length * 4;
2595 pg0_alloc = dma_alloc_coherent(&ioc->pcidev->dev, data_sz, &page_dma,
2598 hdr.PageVersion = ioc->spi_data.sdp0version;
2599 hdr.PageLength = data_sz;
2601 hdr.PageType = MPI_CONFIG_PAGETYPE_SCSI_DEVICE;
2603 cfg.cfghdr.hdr = &hdr;
2604 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2607 cfg.physAddr = page_dma;
2609 cfg.pageAddr = (karg.hdr.channel << 8) | karg.hdr.id;
2611 if ((rc = mpt_config(ioc, &cfg)) == 0) {
2612 np = le32_to_cpu(pg0_alloc->NegotiatedParameters);
2613 karg.negotiated_width = np & MPI_SCSIDEVPAGE0_NP_WIDE ?
2614 HP_BUS_WIDTH_16 : HP_BUS_WIDTH_8;
2616 if (np & MPI_SCSIDEVPAGE0_NP_NEG_SYNC_OFFSET_MASK) {
2617 tmp = (np & MPI_SCSIDEVPAGE0_NP_NEG_SYNC_PERIOD_MASK) >> 8;
2619 karg.negotiated_speed = HP_DEV_SPEED_ULTRA320;
2620 else if (tmp <= 0x09)
2621 karg.negotiated_speed = HP_DEV_SPEED_ULTRA160;
2622 else if (tmp <= 0x0A)
2623 karg.negotiated_speed = HP_DEV_SPEED_ULTRA2;
2624 else if (tmp <= 0x0C)
2625 karg.negotiated_speed = HP_DEV_SPEED_ULTRA;
2626 else if (tmp <= 0x25)
2627 karg.negotiated_speed = HP_DEV_SPEED_FAST;
2629 karg.negotiated_speed = HP_DEV_SPEED_ASYNC;
2631 karg.negotiated_speed = HP_DEV_SPEED_ASYNC;
2634 dma_free_coherent(&ioc->pcidev->dev, data_sz, (u8 *)pg0_alloc,
2640 karg.message_rejects = -1;
2641 karg.phase_errors = -1;
2642 karg.parity_errors = -1;
2643 karg.select_timeouts = -1;
2645 /* Get the target error parameters
2647 hdr.PageVersion = 0;
2650 hdr.PageType = MPI_CONFIG_PAGETYPE_SCSI_DEVICE;
2652 cfg.cfghdr.hdr = &hdr;
2653 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
2657 if ((mpt_config(ioc, &cfg) == 0) && (cfg.cfghdr.hdr->PageLength > 0)) {
2658 /* Issue the second config page request */
2659 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2660 data_sz = (int) cfg.cfghdr.hdr->PageLength * 4;
2661 pg3_alloc = dma_alloc_coherent(&ioc->pcidev->dev, data_sz,
2662 &page_dma, GFP_KERNEL);
2664 cfg.physAddr = page_dma;
2665 cfg.pageAddr = (karg.hdr.channel << 8) | karg.hdr.id;
2666 if ((rc = mpt_config(ioc, &cfg)) == 0) {
2667 karg.message_rejects = (u32) le16_to_cpu(pg3_alloc->MsgRejectCount);
2668 karg.phase_errors = (u32) le16_to_cpu(pg3_alloc->PhaseErrorCount);
2669 karg.parity_errors = (u32) le16_to_cpu(pg3_alloc->ParityErrorCount);
2671 dma_free_coherent(&ioc->pcidev->dev, data_sz,
2672 (u8 *)pg3_alloc, page_dma);
2675 hd = shost_priv(ioc->sh);
2677 karg.select_timeouts = hd->sel_timeout[karg.hdr.id];
2679 /* Copy the data from kernel memory to user memory
2681 if (copy_to_user((char __user *)arg, &karg, sizeof(hp_target_info_t))) {
2682 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_hp_target_info - "
2683 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
2684 ioc->name, __FILE__, __LINE__, uarg);
2691 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2693 static const struct file_operations mptctl_fops = {
2694 .owner = THIS_MODULE,
2695 .llseek = no_llseek,
2696 .fasync = mptctl_fasync,
2697 .unlocked_ioctl = mptctl_ioctl,
2698 #ifdef CONFIG_COMPAT
2699 .compat_ioctl = compat_mpctl_ioctl,
2703 static struct miscdevice mptctl_miscdev = {
2709 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2711 #ifdef CONFIG_COMPAT
2714 compat_mptfwxfer_ioctl(struct file *filp, unsigned int cmd,
2717 struct mpt_fw_xfer32 kfw32;
2718 struct mpt_fw_xfer kfw;
2719 MPT_ADAPTER *iocp = NULL;
2720 int iocnum, iocnumX;
2721 int nonblock = (filp->f_flags & O_NONBLOCK);
2725 if (copy_from_user(&kfw32, (char __user *)arg, sizeof(kfw32)))
2728 /* Verify intended MPT adapter */
2729 iocnumX = kfw32.iocnum & 0xFF;
2730 if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
2732 printk(KERN_DEBUG MYNAM "::compat_mptfwxfer_ioctl @%d - ioc%d not found!\n",
2737 if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
2740 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "compat_mptfwxfer_ioctl() called\n",
2742 kfw.iocnum = iocnum;
2743 kfw.fwlen = kfw32.fwlen;
2744 kfw.bufp = compat_ptr(kfw32.bufp);
2746 ret = mptctl_do_fw_download(iocp, kfw.bufp, kfw.fwlen);
2748 mutex_unlock(&iocp->ioctl_cmds.mutex);
2754 compat_mpt_command(struct file *filp, unsigned int cmd,
2757 struct mpt_ioctl_command32 karg32;
2758 struct mpt_ioctl_command32 __user *uarg = (struct mpt_ioctl_command32 __user *) arg;
2759 struct mpt_ioctl_command karg;
2760 MPT_ADAPTER *iocp = NULL;
2761 int iocnum, iocnumX;
2762 int nonblock = (filp->f_flags & O_NONBLOCK);
2765 if (copy_from_user(&karg32, (char __user *)arg, sizeof(karg32)))
2768 /* Verify intended MPT adapter */
2769 iocnumX = karg32.hdr.iocnum & 0xFF;
2770 if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
2772 printk(KERN_DEBUG MYNAM "::compat_mpt_command @%d - ioc%d not found!\n",
2777 if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
2780 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "compat_mpt_command() called\n",
2782 /* Copy data to karg */
2783 karg.hdr.iocnum = karg32.hdr.iocnum;
2784 karg.hdr.port = karg32.hdr.port;
2785 karg.timeout = karg32.timeout;
2786 karg.maxReplyBytes = karg32.maxReplyBytes;
2788 karg.dataInSize = karg32.dataInSize;
2789 karg.dataOutSize = karg32.dataOutSize;
2790 karg.maxSenseBytes = karg32.maxSenseBytes;
2791 karg.dataSgeOffset = karg32.dataSgeOffset;
2793 karg.replyFrameBufPtr = (char __user *)(unsigned long)karg32.replyFrameBufPtr;
2794 karg.dataInBufPtr = (char __user *)(unsigned long)karg32.dataInBufPtr;
2795 karg.dataOutBufPtr = (char __user *)(unsigned long)karg32.dataOutBufPtr;
2796 karg.senseDataPtr = (char __user *)(unsigned long)karg32.senseDataPtr;
2798 /* Pass new structure to do_mpt_command
2800 ret = mptctl_do_mpt_command (iocp, karg, &uarg->MF);
2802 mutex_unlock(&iocp->ioctl_cmds.mutex);
2807 static long compat_mpctl_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2810 mutex_lock(&mpctl_mutex);
2817 case MPTEVENTENABLE:
2818 case MPTEVENTREPORT:
2820 case HP_GETHOSTINFO:
2821 case HP_GETTARGETINFO:
2823 ret = __mptctl_ioctl(f, cmd, arg);
2826 ret = compat_mpt_command(f, cmd, arg);
2828 case MPTFWDOWNLOAD32:
2829 ret = compat_mptfwxfer_ioctl(f, cmd, arg);
2835 mutex_unlock(&mpctl_mutex);
2842 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2844 * mptctl_probe - Installs ioctl devices per bus.
2845 * @pdev: Pointer to pci_dev structure
2847 * Returns 0 for success, non-zero for failure.
2852 mptctl_probe(struct pci_dev *pdev)
2854 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
2856 mutex_init(&ioc->ioctl_cmds.mutex);
2857 init_completion(&ioc->ioctl_cmds.done);
2861 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2863 * mptctl_remove - Removed ioctl devices
2864 * @pdev: Pointer to pci_dev structure
2869 mptctl_remove(struct pci_dev *pdev)
2873 static struct mpt_pci_driver mptctl_driver = {
2874 .probe = mptctl_probe,
2875 .remove = mptctl_remove,
2878 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2879 static int __init mptctl_init(void)
2883 show_mptmod_ver(my_NAME, my_VERSION);
2885 mpt_device_driver_register(&mptctl_driver, MPTCTL_DRIVER);
2887 /* Register this device */
2888 err = misc_register(&mptctl_miscdev);
2890 printk(KERN_ERR MYNAM ": Can't register misc device [minor=%d].\n", MPT_MINOR);
2893 printk(KERN_INFO MYNAM ": Registered with Fusion MPT base driver\n");
2894 printk(KERN_INFO MYNAM ": /dev/%s @ (major,minor=%d,%d)\n",
2895 mptctl_miscdev.name, MISC_MAJOR, mptctl_miscdev.minor);
2898 * Install our handler
2900 mptctl_id = mpt_register(mptctl_reply, MPTCTL_DRIVER,
2902 if (!mptctl_id || mptctl_id >= MPT_MAX_PROTOCOL_DRIVERS) {
2903 printk(KERN_ERR MYNAM ": ERROR: Failed to register with Fusion MPT base driver\n");
2904 misc_deregister(&mptctl_miscdev);
2909 mptctl_taskmgmt_id = mpt_register(mptctl_taskmgmt_reply, MPTCTL_DRIVER,
2910 "mptctl_taskmgmt_reply");
2911 if (!mptctl_taskmgmt_id || mptctl_taskmgmt_id >= MPT_MAX_PROTOCOL_DRIVERS) {
2912 printk(KERN_ERR MYNAM ": ERROR: Failed to register with Fusion MPT base driver\n");
2913 mpt_deregister(mptctl_id);
2914 misc_deregister(&mptctl_miscdev);
2919 mpt_reset_register(mptctl_id, mptctl_ioc_reset);
2920 mpt_event_register(mptctl_id, mptctl_event_process);
2926 mpt_device_driver_deregister(MPTCTL_DRIVER);
2931 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2932 static void mptctl_exit(void)
2934 misc_deregister(&mptctl_miscdev);
2935 printk(KERN_INFO MYNAM ": Deregistered /dev/%s @ (major,minor=%d,%d)\n",
2936 mptctl_miscdev.name, MISC_MAJOR, mptctl_miscdev.minor);
2938 /* De-register event handler from base module */
2939 mpt_event_deregister(mptctl_id);
2941 /* De-register reset handler from base module */
2942 mpt_reset_deregister(mptctl_id);
2944 /* De-register callback handler from base module */
2945 mpt_deregister(mptctl_taskmgmt_id);
2946 mpt_deregister(mptctl_id);
2948 mpt_device_driver_deregister(MPTCTL_DRIVER);
2952 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2954 module_init(mptctl_init);
2955 module_exit(mptctl_exit);