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/smp_lock.h>
58 #include <linux/compat.h>
61 #include <asm/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 u8 mptctl_id = MPT_MAX_PROTOCOL_DRIVERS;
88 static DECLARE_WAIT_QUEUE_HEAD ( mptctl_wait );
90 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
98 * Function prototypes. Called from OS entry point mptctl_ioctl.
99 * arg contents specific to function.
101 static int mptctl_fw_download(unsigned long arg);
102 static int mptctl_getiocinfo(unsigned long arg, unsigned int cmd);
103 static int mptctl_gettargetinfo(unsigned long arg);
104 static int mptctl_readtest(unsigned long arg);
105 static int mptctl_mpt_command(unsigned long arg);
106 static int mptctl_eventquery(unsigned long arg);
107 static int mptctl_eventenable(unsigned long arg);
108 static int mptctl_eventreport(unsigned long arg);
109 static int mptctl_replace_fw(unsigned long arg);
111 static int mptctl_do_reset(unsigned long arg);
112 static int mptctl_hp_hostinfo(unsigned long arg, unsigned int cmd);
113 static int mptctl_hp_targetinfo(unsigned long arg);
115 static int mptctl_probe(struct pci_dev *, const struct pci_device_id *);
116 static void mptctl_remove(struct pci_dev *);
119 static long compat_mpctl_ioctl(struct file *f, unsigned cmd, unsigned long arg);
122 * Private function calls.
124 static int mptctl_do_mpt_command(struct mpt_ioctl_command karg, void __user *mfPtr);
125 static int mptctl_do_fw_download(int ioc, char __user *ufwbuf, size_t fwlen);
126 static MptSge_t *kbuf_alloc_2_sgl(int bytes, u32 dir, int sge_offset, int *frags,
127 struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc);
128 static void kfree_sgl(MptSge_t *sgl, dma_addr_t sgl_dma,
129 struct buflist *buflist, MPT_ADAPTER *ioc);
130 static void mptctl_timeout_expired (MPT_IOCTL *ioctl);
131 static int mptctl_bus_reset(MPT_IOCTL *ioctl);
132 static int mptctl_set_tm_flags(MPT_SCSI_HOST *hd);
133 static void mptctl_free_tm_flags(MPT_ADAPTER *ioc);
136 * Reset Handler cleanup function
138 static int mptctl_ioc_reset(MPT_ADAPTER *ioc, int reset_phase);
141 * Event Handler function
143 static int mptctl_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply);
144 static struct fasync_struct *async_queue=NULL;
146 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
148 * Scatter gather list (SGL) sizes and limits...
150 //#define MAX_SCSI_FRAGS 9
151 #define MAX_FRAGS_SPILL1 9
152 #define MAX_FRAGS_SPILL2 15
153 #define FRAGS_PER_BUCKET (MAX_FRAGS_SPILL2 + 1)
155 //#define MAX_CHAIN_FRAGS 64
156 //#define MAX_CHAIN_FRAGS (15+15+15+16)
157 #define MAX_CHAIN_FRAGS (4 * MAX_FRAGS_SPILL2 + 1)
159 // Define max sg LIST bytes ( == (#frags + #chains) * 8 bytes each)
160 // Works out to: 592d bytes! (9+1)*8 + 4*(15+1)*8
161 // ^----------------- 80 + 512
162 #define MAX_SGL_BYTES ((MAX_FRAGS_SPILL1 + 1 + (4 * FRAGS_PER_BUCKET)) * 8)
164 /* linux only seems to ever give 128kB MAX contiguous (GFP_USER) mem bytes */
165 #define MAX_KMALLOC_SZ (128*1024)
167 #define MPT_IOCTL_DEFAULT_TIMEOUT 10 /* Default timeout value (seconds) */
169 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
171 * mptctl_syscall_down - Down the MPT adapter syscall semaphore.
172 * @ioc: Pointer to MPT adapter
173 * @nonblock: boolean, non-zero if O_NONBLOCK is set
175 * All of the ioctl commands can potentially sleep, which is illegal
176 * with a spinlock held, thus we perform mutual exclusion here.
178 * Returns negative errno on error, or zero for success.
181 mptctl_syscall_down(MPT_ADAPTER *ioc, int nonblock)
186 if (!mutex_trylock(&ioc->ioctl->ioctl_mutex))
189 if (mutex_lock_interruptible(&ioc->ioctl->ioctl_mutex))
195 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
197 * This is the callback for any message we have posted. The message itself
198 * will be returned to the message pool when we return from the IRQ
200 * This runs in irq context so be short and sweet.
203 mptctl_reply(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req, MPT_FRAME_HDR *reply)
211 cmd = req->u.hdr.Function;
214 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "\tcompleting mpi function (0x%02X), req=%p, "
215 "reply=%p\n", ioc->name, req->u.hdr.Function, req, reply));
221 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_reply() NULL Reply "
222 "Function=%x!\n", ioc->name, cmd));
224 ioc->ioctl->status |= MPT_MGMT_STATUS_COMMAND_GOOD;
225 ioc->ioctl->reset &= ~MPTCTL_RESET_OK;
227 /* We are done, issue wake up
229 ioc->ioctl->wait_done = 1;
230 wake_up (&mptctl_wait);
235 /* Copy the reply frame (which much exist
236 * for non-SCSI I/O) to the IOC structure.
238 memcpy(ioc->ioctl->ReplyFrame, reply,
239 min(ioc->reply_sz, 4*reply->u.reply.MsgLength));
240 ioc->ioctl->status |= MPT_MGMT_STATUS_RF_VALID;
242 /* Set the command status to GOOD if IOC Status is GOOD
243 * OR if SCSI I/O cmd and data underrun or recovered error.
245 iocStatus = le16_to_cpu(reply->u.reply.IOCStatus) & MPI_IOCSTATUS_MASK;
246 if (iocStatus == MPI_IOCSTATUS_SUCCESS)
247 ioc->ioctl->status |= MPT_MGMT_STATUS_COMMAND_GOOD;
249 if (iocStatus || reply->u.reply.IOCLogInfo)
250 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "\tiocstatus (0x%04X), "
251 "loginfo (0x%08X)\n", ioc->name,
253 le32_to_cpu(reply->u.reply.IOCLogInfo)));
255 if ((cmd == MPI_FUNCTION_SCSI_IO_REQUEST) ||
256 (cmd == MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH)) {
258 if (reply->u.sreply.SCSIStatus || reply->u.sreply.SCSIState)
259 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT
260 "\tscsi_status (0x%02x), scsi_state (0x%02x), "
261 "tag = (0x%04x), transfer_count (0x%08x)\n", ioc->name,
262 reply->u.sreply.SCSIStatus,
263 reply->u.sreply.SCSIState,
264 le16_to_cpu(reply->u.sreply.TaskTag),
265 le32_to_cpu(reply->u.sreply.TransferCount)));
267 ioc->ioctl->reset &= ~MPTCTL_RESET_OK;
269 if ((iocStatus == MPI_IOCSTATUS_SCSI_DATA_UNDERRUN) ||
270 (iocStatus == MPI_IOCSTATUS_SCSI_RECOVERED_ERROR)) {
271 ioc->ioctl->status |=
272 MPT_MGMT_STATUS_COMMAND_GOOD;
276 /* Copy the sense data - if present
278 if ((cmd == MPI_FUNCTION_SCSI_IO_REQUEST) &&
279 (reply->u.sreply.SCSIState &
280 MPI_SCSI_STATE_AUTOSENSE_VALID)){
281 sz = req->u.scsireq.SenseBufferLength;
283 le16_to_cpu(req->u.frame.hwhdr.msgctxu.fld.req_idx);
285 ((u8 *)ioc->sense_buf_pool +
286 (req_index * MPT_SENSE_BUFFER_ALLOC));
287 memcpy(ioc->ioctl->sense, sense_data, sz);
288 ioc->ioctl->status |= MPT_MGMT_STATUS_SENSE_VALID;
291 if (cmd == MPI_FUNCTION_SCSI_TASK_MGMT)
292 mptctl_free_tm_flags(ioc);
294 /* We are done, issue wake up
296 ioc->ioctl->wait_done = 1;
297 wake_up (&mptctl_wait);
302 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
303 /* mptctl_timeout_expired
305 * Expecting an interrupt, however timed out.
308 static void mptctl_timeout_expired (MPT_IOCTL *ioctl)
314 dctlprintk(ioctl->ioc,
315 printk(MYIOC_s_DEBUG_FMT ": Timeout Expired! Host %d\n",
316 ioctl->ioc->name, ioctl->ioc->id));
318 ioctl->wait_done = 0;
319 if (ioctl->reset & MPTCTL_RESET_OK)
320 rc = mptctl_bus_reset(ioctl);
323 /* Issue a reset for this device.
324 * The IOC is not responding.
326 dctlprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT "Calling HardReset! \n",
328 mpt_HardResetHandler(ioctl->ioc, CAN_SLEEP);
339 static int mptctl_bus_reset(MPT_IOCTL *ioctl)
342 SCSITaskMgmt_t *pScsiTm;
348 ioctl->reset &= ~MPTCTL_RESET_OK;
350 if (ioctl->ioc->sh == NULL)
353 hd = shost_priv(ioctl->ioc->sh);
357 /* Single threading ....
359 if (mptctl_set_tm_flags(hd) != 0)
364 if ((mf = mpt_get_msg_frame(mptctl_id, ioctl->ioc)) == NULL) {
365 dtmprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT "IssueTaskMgmt, no msg frames!!\n",
368 mptctl_free_tm_flags(ioctl->ioc);
372 dtmprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT "IssueTaskMgmt request @ %p\n",
373 ioctl->ioc->name, mf));
375 pScsiTm = (SCSITaskMgmt_t *) mf;
376 pScsiTm->TargetID = ioctl->id;
377 pScsiTm->Bus = hd->port; /* 0 */
378 pScsiTm->ChainOffset = 0;
379 pScsiTm->Function = MPI_FUNCTION_SCSI_TASK_MGMT;
380 pScsiTm->Reserved = 0;
381 pScsiTm->TaskType = MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS;
382 pScsiTm->Reserved1 = 0;
383 pScsiTm->MsgFlags = MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION;
385 for (ii= 0; ii < 8; ii++)
386 pScsiTm->LUN[ii] = 0;
388 for (ii=0; ii < 7; ii++)
389 pScsiTm->Reserved2[ii] = 0;
391 pScsiTm->TaskMsgContext = 0;
392 dtmprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT
393 "mptctl_bus_reset: issued.\n", ioctl->ioc->name));
395 DBG_DUMP_TM_REQUEST_FRAME(ioctl->ioc, (u32 *)mf);
399 if ((ioctl->ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q) &&
400 (ioctl->ioc->facts.MsgVersion >= MPI_VERSION_01_05))
401 mpt_put_msg_frame_hi_pri(mptctl_id, ioctl->ioc, mf);
403 retval = mpt_send_handshake_request(mptctl_id, ioctl->ioc,
404 sizeof(SCSITaskMgmt_t), (u32*)pScsiTm, CAN_SLEEP);
406 dfailprintk(ioctl->ioc, printk(MYIOC_s_ERR_FMT "_send_handshake FAILED!"
407 " (hd %p, ioc %p, mf %p) \n", hd->ioc->name, hd,
409 goto mptctl_bus_reset_done;
413 /* Now wait for the command to complete */
414 ii = wait_event_timeout(mptctl_wait,
415 ioctl->wait_done == 1,
416 HZ*5 /* 5 second timeout */);
418 if(ii <=0 && (ioctl->wait_done != 1 )) {
419 mpt_free_msg_frame(hd->ioc, mf);
420 ioctl->wait_done = 0;
421 retval = -1; /* return failure */
424 mptctl_bus_reset_done:
426 mptctl_free_tm_flags(ioctl->ioc);
431 mptctl_set_tm_flags(MPT_SCSI_HOST *hd) {
434 spin_lock_irqsave(&hd->ioc->FreeQlock, flags);
436 if (hd->tmState == TM_STATE_NONE) {
437 hd->tmState = TM_STATE_IN_PROGRESS;
439 spin_unlock_irqrestore(&hd->ioc->FreeQlock, flags);
441 spin_unlock_irqrestore(&hd->ioc->FreeQlock, flags);
449 mptctl_free_tm_flags(MPT_ADAPTER *ioc)
454 hd = shost_priv(ioc->sh);
458 spin_lock_irqsave(&ioc->FreeQlock, flags);
460 hd->tmState = TM_STATE_NONE;
462 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
467 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
470 * Clean-up functionality. Used only if there has been a
471 * reload of the FW due.
475 mptctl_ioc_reset(MPT_ADAPTER *ioc, int reset_phase)
477 MPT_IOCTL *ioctl = ioc->ioctl;
478 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "IOC %s_reset routed to IOCTL driver!\n", ioc->name,
479 reset_phase==MPT_IOC_SETUP_RESET ? "setup" : (
480 reset_phase==MPT_IOC_PRE_RESET ? "pre" : "post")));
485 switch(reset_phase) {
486 case MPT_IOC_SETUP_RESET:
487 ioctl->status |= MPT_MGMT_STATUS_DID_IOCRESET;
489 case MPT_IOC_POST_RESET:
490 ioctl->status &= ~MPT_MGMT_STATUS_DID_IOCRESET;
492 case MPT_IOC_PRE_RESET:
500 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
501 /* ASYNC Event Notification Support */
503 mptctl_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply)
507 event = le32_to_cpu(pEvReply->Event) & 0xFF;
509 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "%s() called\n",
510 ioc->name, __func__));
511 if(async_queue == NULL)
514 /* Raise SIGIO for persistent events.
515 * TODO - this define is not in MPI spec yet,
516 * but they plan to set it to 0x21
518 if (event == 0x21 ) {
519 ioc->aen_event_read_flag=1;
520 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Raised SIGIO to application\n",
522 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
523 "Raised SIGIO to application\n", ioc->name));
524 kill_fasync(&async_queue, SIGIO, POLL_IN);
528 /* This flag is set after SIGIO was raised, and
529 * remains set until the application has read
530 * the event log via ioctl=MPTEVENTREPORT
532 if(ioc->aen_event_read_flag)
535 /* Signal only for the events that are
536 * requested for by the application
538 if (ioc->events && (ioc->eventTypes & ( 1 << event))) {
539 ioc->aen_event_read_flag=1;
540 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT
541 "Raised SIGIO to application\n", ioc->name));
542 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
543 "Raised SIGIO to application\n", ioc->name));
544 kill_fasync(&async_queue, SIGIO, POLL_IN);
550 mptctl_fasync(int fd, struct file *filep, int mode)
556 list_for_each_entry(ioc, &ioc_list, list)
557 ioc->aen_event_read_flag=0;
559 ret = fasync_helper(fd, filep, mode, &async_queue);
564 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
567 * cmd - specify the particular IOCTL command to be issued
568 * arg - data specific to the command. Must not be null.
571 __mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
573 mpt_ioctl_header __user *uhdr = (void __user *) arg;
574 mpt_ioctl_header khdr;
577 int nonblock = (file->f_flags & O_NONBLOCK);
579 MPT_ADAPTER *iocp = NULL;
581 if (copy_from_user(&khdr, uhdr, sizeof(khdr))) {
582 printk(KERN_ERR MYNAM "%s::mptctl_ioctl() @%d - "
583 "Unable to copy mpt_ioctl_header data @ %p\n",
584 __FILE__, __LINE__, uhdr);
587 ret = -ENXIO; /* (-6) No such device or address */
589 /* Verify intended MPT adapter - set iocnum and the adapter
592 iocnumX = khdr.iocnum & 0xFF;
593 if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
595 printk(KERN_DEBUG MYNAM "%s::mptctl_ioctl() @%d - ioc%d not found!\n",
596 __FILE__, __LINE__, iocnumX);
601 printk(KERN_DEBUG MYNAM "%s::mptctl_ioctl() @%d - Controller disabled.\n",
606 /* Handle those commands that are just returning
607 * information stored in the driver.
608 * These commands should never time out and are unaffected
609 * by TM and FW reloads.
611 if ((cmd & ~IOCSIZE_MASK) == (MPTIOCINFO & ~IOCSIZE_MASK)) {
612 return mptctl_getiocinfo(arg, _IOC_SIZE(cmd));
613 } else if (cmd == MPTTARGETINFO) {
614 return mptctl_gettargetinfo(arg);
615 } else if (cmd == MPTTEST) {
616 return mptctl_readtest(arg);
617 } else if (cmd == MPTEVENTQUERY) {
618 return mptctl_eventquery(arg);
619 } else if (cmd == MPTEVENTENABLE) {
620 return mptctl_eventenable(arg);
621 } else if (cmd == MPTEVENTREPORT) {
622 return mptctl_eventreport(arg);
623 } else if (cmd == MPTFWREPLACE) {
624 return mptctl_replace_fw(arg);
627 /* All of these commands require an interrupt or
628 * are unknown/illegal.
630 if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
633 if (cmd == MPTFWDOWNLOAD)
634 ret = mptctl_fw_download(arg);
635 else if (cmd == MPTCOMMAND)
636 ret = mptctl_mpt_command(arg);
637 else if (cmd == MPTHARDRESET)
638 ret = mptctl_do_reset(arg);
639 else if ((cmd & ~IOCSIZE_MASK) == (HP_GETHOSTINFO & ~IOCSIZE_MASK))
640 ret = mptctl_hp_hostinfo(arg, _IOC_SIZE(cmd));
641 else if (cmd == HP_GETTARGETINFO)
642 ret = mptctl_hp_targetinfo(arg);
646 mutex_unlock(&iocp->ioctl->ioctl_mutex);
652 mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
656 ret = __mptctl_ioctl(file, cmd, arg);
661 static int mptctl_do_reset(unsigned long arg)
663 struct mpt_ioctl_diag_reset __user *urinfo = (void __user *) arg;
664 struct mpt_ioctl_diag_reset krinfo;
667 if (copy_from_user(&krinfo, urinfo, sizeof(struct mpt_ioctl_diag_reset))) {
668 printk(KERN_ERR MYNAM "%s@%d::mptctl_do_reset - "
669 "Unable to copy mpt_ioctl_diag_reset struct @ %p\n",
670 __FILE__, __LINE__, urinfo);
674 if (mpt_verify_adapter(krinfo.hdr.iocnum, &iocp) < 0) {
675 printk(KERN_DEBUG MYNAM "%s@%d::mptctl_do_reset - ioc%d not found!\n",
676 __FILE__, __LINE__, krinfo.hdr.iocnum);
677 return -ENODEV; /* (-6) No such device or address */
680 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "mptctl_do_reset called.\n",
683 if (mpt_HardResetHandler(iocp, CAN_SLEEP) != 0) {
684 printk (MYIOC_s_ERR_FMT "%s@%d::mptctl_do_reset - reset failed.\n",
685 iocp->name, __FILE__, __LINE__);
692 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
694 * MPT FW download function. Cast the arg into the mpt_fw_xfer structure.
695 * This structure contains: iocnum, firmware length (bytes),
696 * pointer to user space memory where the fw image is stored.
699 * Return: 0 if successful
700 * -EFAULT if data unavailable
701 * -ENXIO if no such device
702 * -EAGAIN if resource problem
703 * -ENOMEM if no memory for SGE
704 * -EMLINK if too many chain buffers required
705 * -EBADRQC if adapter does not support FW download
706 * -EBUSY if adapter is busy
707 * -ENOMSG if FW upload returned bad status
710 mptctl_fw_download(unsigned long arg)
712 struct mpt_fw_xfer __user *ufwdl = (void __user *) arg;
713 struct mpt_fw_xfer kfwdl;
715 if (copy_from_user(&kfwdl, ufwdl, sizeof(struct mpt_fw_xfer))) {
716 printk(KERN_ERR MYNAM "%s@%d::_ioctl_fwdl - "
717 "Unable to copy mpt_fw_xfer struct @ %p\n",
718 __FILE__, __LINE__, ufwdl);
722 return mptctl_do_fw_download(kfwdl.iocnum, kfwdl.bufp, kfwdl.fwlen);
725 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
727 * FW Download engine.
729 * Return: 0 if successful
730 * -EFAULT if data unavailable
731 * -ENXIO if no such device
732 * -EAGAIN if resource problem
733 * -ENOMEM if no memory for SGE
734 * -EMLINK if too many chain buffers required
735 * -EBADRQC if adapter does not support FW download
736 * -EBUSY if adapter is busy
737 * -ENOMSG if FW upload returned bad status
740 mptctl_do_fw_download(int ioc, char __user *ufwbuf, size_t fwlen)
745 FWDownloadTCSGE_t *ptsge;
746 MptSge_t *sgl, *sgIn;
748 struct buflist *buflist;
757 int fw_bytes_copied = 0;
761 pFWDownloadReply_t ReplyMsg = NULL;
763 if (mpt_verify_adapter(ioc, &iocp) < 0) {
764 printk(KERN_DEBUG MYNAM "ioctl_fwdl - ioc%d not found!\n",
766 return -ENODEV; /* (-6) No such device or address */
769 /* Valid device. Get a message frame and construct the FW download message.
771 if ((mf = mpt_get_msg_frame(mptctl_id, iocp)) == NULL)
775 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT
776 "mptctl_do_fwdl called. mptctl_id = %xh.\n", iocp->name, mptctl_id));
777 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "DbG: kfwdl.bufp = %p\n",
778 iocp->name, ufwbuf));
779 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "DbG: kfwdl.fwlen = %d\n",
780 iocp->name, (int)fwlen));
781 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "DbG: kfwdl.ioc = %04xh\n",
784 dlmsg = (FWDownload_t*) mf;
785 ptsge = (FWDownloadTCSGE_t *) &dlmsg->SGL;
786 sgOut = (char *) (ptsge + 1);
789 * Construct f/w download request
791 dlmsg->ImageType = MPI_FW_DOWNLOAD_ITYPE_FW;
793 dlmsg->ChainOffset = 0;
794 dlmsg->Function = MPI_FUNCTION_FW_DOWNLOAD;
795 dlmsg->Reserved1[0] = dlmsg->Reserved1[1] = dlmsg->Reserved1[2] = 0;
796 if (iocp->facts.MsgVersion >= MPI_VERSION_01_05)
797 dlmsg->MsgFlags = MPI_FW_DOWNLOAD_MSGFLGS_LAST_SEGMENT;
802 /* Set up the Transaction SGE.
805 ptsge->ContextSize = 0;
806 ptsge->DetailsLength = 12;
807 ptsge->Flags = MPI_SGE_FLAGS_TRANSACTION_ELEMENT;
808 ptsge->Reserved_0100_Checksum = 0;
809 ptsge->ImageOffset = 0;
810 ptsge->ImageSize = cpu_to_le32(fwlen);
816 * Need to kmalloc area(s) for holding firmware image bytes.
817 * But we need to do it piece meal, using a proper
818 * scatter gather list (with 128kB MAX hunks).
820 * A practical limit here might be # of sg hunks that fit into
821 * a single IOC request frame; 12 or 8 (see below), so:
822 * For FC9xx: 12 x 128kB == 1.5 mB (max)
823 * For C1030: 8 x 128kB == 1 mB (max)
824 * We could support chaining, but things get ugly(ier:)
826 * Set the sge_offset to the start of the sgl (bytes).
828 sgdir = 0x04000000; /* IOC will READ from sys mem */
829 sge_offset = sizeof(MPIHeader_t) + sizeof(FWDownloadTCSGE_t);
830 if ((sgl = kbuf_alloc_2_sgl(fwlen, sgdir, sge_offset,
831 &numfrags, &buflist, &sgl_dma, iocp)) == NULL)
835 * We should only need SGL with 2 simple_32bit entries (up to 256 kB)
836 * for FC9xx f/w image, but calculate max number of sge hunks
837 * we can fit into a request frame, and limit ourselves to that.
838 * (currently no chain support)
839 * maxfrags = (Request Size - FWdownload Size ) / Size of 32 bit SGE
845 maxfrags = (iocp->req_sz - sizeof(MPIHeader_t) -
846 sizeof(FWDownloadTCSGE_t))
848 if (numfrags > maxfrags) {
853 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "DbG: sgl buffer = %p, sgfrags = %d\n",
854 iocp->name, sgl, numfrags));
857 * Parse SG list, copying sgl itself,
858 * plus f/w image hunks from user space as we go...
863 for (i=0; i < numfrags; i++) {
865 /* Get the SGE type: 0 - TCSGE, 3 - Chain, 1 - Simple SGE
866 * Skip everything but Simple. If simple, copy from
867 * user space into kernel space.
868 * Note: we should not have anything but Simple as
869 * Chain SGE are illegal.
871 nib = (sgIn->FlagsLength & 0x30000000) >> 28;
872 if (nib == 0 || nib == 3) {
874 } else if (sgIn->Address) {
875 iocp->add_sge(sgOut, sgIn->FlagsLength, sgIn->Address);
877 if (copy_from_user(bl->kptr, ufwbuf+fw_bytes_copied, bl->len)) {
878 printk(MYIOC_s_ERR_FMT "%s@%d::_ioctl_fwdl - "
879 "Unable to copy f/w buffer hunk#%d @ %p\n",
880 iocp->name, __FILE__, __LINE__, n, ufwbuf);
883 fw_bytes_copied += bl->len;
887 sgOut += iocp->SGE_size;
890 DBG_DUMP_FW_DOWNLOAD(iocp, (u32 *)mf, numfrags);
893 * Finally, perform firmware download.
896 mpt_put_msg_frame(mptctl_id, iocp, mf);
898 /* Now wait for the command to complete */
899 ret = wait_event_timeout(mptctl_wait,
900 iocp->ioctl->wait_done == 1,
903 if(ret <=0 && (iocp->ioctl->wait_done != 1 )) {
904 /* Now we need to reset the board */
905 mptctl_timeout_expired(iocp->ioctl);
911 kfree_sgl(sgl, sgl_dma, buflist, iocp);
913 ReplyMsg = (pFWDownloadReply_t)iocp->ioctl->ReplyFrame;
914 iocstat = le16_to_cpu(ReplyMsg->IOCStatus) & MPI_IOCSTATUS_MASK;
915 if (iocstat == MPI_IOCSTATUS_SUCCESS) {
916 printk(MYIOC_s_INFO_FMT "F/W update successfull!\n", iocp->name);
918 } else if (iocstat == MPI_IOCSTATUS_INVALID_FUNCTION) {
919 printk(MYIOC_s_WARN_FMT "Hmmm... F/W download not supported!?!\n",
921 printk(MYIOC_s_WARN_FMT "(time to go bang on somebodies door)\n",
924 } else if (iocstat == MPI_IOCSTATUS_BUSY) {
925 printk(MYIOC_s_WARN_FMT "IOC_BUSY!\n", iocp->name);
926 printk(MYIOC_s_WARN_FMT "(try again later?)\n", iocp->name);
929 printk(MYIOC_s_WARN_FMT "ioctl_fwdl() returned [bad] status = %04xh\n",
930 iocp->name, iocstat);
931 printk(MYIOC_s_WARN_FMT "(bad VooDoo)\n", iocp->name);
937 kfree_sgl(sgl, sgl_dma, buflist, iocp);
941 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
943 * SGE Allocation routine
945 * Inputs: bytes - number of bytes to be transferred
946 * sgdir - data direction
947 * sge_offset - offset (in bytes) from the start of the request
948 * frame to the first SGE
949 * ioc - pointer to the mptadapter
950 * Outputs: frags - number of scatter gather elements
951 * blp - point to the buflist pointer
952 * sglbuf_dma - pointer to the (dma) sgl
953 * Returns: Null if failes
954 * pointer to the (virtual) sgl if successful.
957 kbuf_alloc_2_sgl(int bytes, u32 sgdir, int sge_offset, int *frags,
958 struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc)
960 MptSge_t *sglbuf = NULL; /* pointer to array of SGE */
961 /* and chain buffers */
962 struct buflist *buflist = NULL; /* kernel routine */
966 int alloc_sz = min(bytes,MAX_KMALLOC_SZ); // avoid kernel warning msg!
967 int bytes_allocd = 0;
969 dma_addr_t pa; // phys addr
971 int sg_spill = MAX_FRAGS_SPILL1;
977 /* Allocate and initialize an array of kernel
978 * structures for the SG elements.
980 i = MAX_SGL_BYTES / 8;
981 buflist = kzalloc(i, GFP_USER);
986 /* Allocate a single block of memory to store the sg elements and
987 * the chain buffers. The calling routine is responsible for
988 * copying the data in this array into the correct place in the
989 * request and chain buffers.
991 sglbuf = pci_alloc_consistent(ioc->pcidev, MAX_SGL_BYTES, sglbuf_dma);
995 if (sgdir & 0x04000000)
996 dir = PCI_DMA_TODEVICE;
998 dir = PCI_DMA_FROMDEVICE;
1001 * sgl = sglbuf = point to beginning of sg buffer
1002 * buflist_ent = 0 = first kernel structure
1003 * sg_spill = number of SGE that can be written before the first
1008 sg_spill = ((ioc->req_sz - sge_offset)/ioc->SGE_size) - 1;
1009 while (bytes_allocd < bytes) {
1010 this_alloc = min(alloc_sz, bytes-bytes_allocd);
1011 buflist[buflist_ent].len = this_alloc;
1012 buflist[buflist_ent].kptr = pci_alloc_consistent(ioc->pcidev,
1015 if (buflist[buflist_ent].kptr == NULL) {
1016 alloc_sz = alloc_sz / 2;
1017 if (alloc_sz == 0) {
1018 printk(MYIOC_s_WARN_FMT "-SG: No can do - "
1019 "not enough memory! :-(\n", ioc->name);
1020 printk(MYIOC_s_WARN_FMT "-SG: (freeing %d frags)\n",
1021 ioc->name, numfrags);
1026 dma_addr_t dma_addr;
1028 bytes_allocd += this_alloc;
1029 sgl->FlagsLength = (0x10000000|sgdir|this_alloc);
1030 dma_addr = pci_map_single(ioc->pcidev,
1031 buflist[buflist_ent].kptr, this_alloc, dir);
1032 sgl->Address = dma_addr;
1040 if (bytes_allocd >= bytes)
1043 /* Need to chain? */
1044 if (fragcnt == sg_spill) {
1045 printk(MYIOC_s_WARN_FMT
1046 "-SG: No can do - " "Chain required! :-(\n", ioc->name);
1047 printk(MYIOC_s_WARN_FMT "(freeing %d frags)\n", ioc->name, numfrags);
1051 /* overflow check... */
1052 if (numfrags*8 > MAX_SGL_BYTES){
1054 printk(MYIOC_s_WARN_FMT "-SG: No can do - "
1055 "too many SG frags! :-(\n", ioc->name);
1056 printk(MYIOC_s_WARN_FMT "-SG: (freeing %d frags)\n",
1057 ioc->name, numfrags);
1062 /* Last sge fixup: set LE+eol+eob bits */
1063 sgl[-1].FlagsLength |= 0xC1000000;
1068 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: kbuf_alloc_2_sgl() - "
1069 "%d SG frags generated!\n", ioc->name, numfrags));
1071 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: kbuf_alloc_2_sgl() - "
1072 "last (big) alloc_sz=%d\n", ioc->name, alloc_sz));
1077 if (sglbuf != NULL) {
1078 for (i = 0; i < numfrags; i++) {
1079 dma_addr_t dma_addr;
1083 if ((sglbuf[i].FlagsLength >> 24) == 0x30)
1086 dma_addr = sglbuf[i].Address;
1087 kptr = buflist[i].kptr;
1088 len = buflist[i].len;
1090 pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
1092 pci_free_consistent(ioc->pcidev, MAX_SGL_BYTES, sglbuf, *sglbuf_dma);
1098 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1100 * Routine to free the SGL elements.
1103 kfree_sgl(MptSge_t *sgl, dma_addr_t sgl_dma, struct buflist *buflist, MPT_ADAPTER *ioc)
1106 struct buflist *bl = buflist;
1111 if (sg->FlagsLength & 0x04000000)
1112 dir = PCI_DMA_TODEVICE;
1114 dir = PCI_DMA_FROMDEVICE;
1116 nib = (sg->FlagsLength & 0xF0000000) >> 28;
1117 while (! (nib & 0x4)) { /* eob */
1118 /* skip ignore/chain. */
1119 if (nib == 0 || nib == 3) {
1121 } else if (sg->Address) {
1122 dma_addr_t dma_addr;
1126 dma_addr = sg->Address;
1129 pci_unmap_single(ioc->pcidev, dma_addr, len, dir);
1130 pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
1135 nib = (le32_to_cpu(sg->FlagsLength) & 0xF0000000) >> 28;
1140 dma_addr_t dma_addr;
1144 dma_addr = sg->Address;
1147 pci_unmap_single(ioc->pcidev, dma_addr, len, dir);
1148 pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
1152 pci_free_consistent(ioc->pcidev, MAX_SGL_BYTES, sgl, sgl_dma);
1154 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: Free'd 1 SGL buf + %d kbufs!\n",
1158 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1160 * mptctl_getiocinfo - Query the host adapter for IOC information.
1161 * @arg: User space argument
1164 * Return: 0 if successful
1165 * -EFAULT if data unavailable
1166 * -ENODEV if no such device/adapter
1169 mptctl_getiocinfo (unsigned long arg, unsigned int data_size)
1171 struct mpt_ioctl_iocinfo __user *uarg = (void __user *) arg;
1172 struct mpt_ioctl_iocinfo *karg;
1174 struct pci_dev *pdev;
1179 struct scsi_device *sdev;
1180 VirtDevice *vdevice;
1182 /* Add of PCI INFO results in unaligned access for
1183 * IA64 and Sparc. Reset long to int. Return no PCI
1184 * data for obsolete format.
1186 if (data_size == sizeof(struct mpt_ioctl_iocinfo_rev0))
1188 else if (data_size == sizeof(struct mpt_ioctl_iocinfo_rev1))
1190 else if (data_size == sizeof(struct mpt_ioctl_iocinfo))
1192 else if (data_size == (sizeof(struct mpt_ioctl_iocinfo_rev0)+12))
1193 cim_rev = 0; /* obsolete */
1197 karg = kmalloc(data_size, GFP_KERNEL);
1199 printk(KERN_ERR MYNAM "%s::mpt_ioctl_iocinfo() @%d - no memory available!\n",
1200 __FILE__, __LINE__);
1204 if (copy_from_user(karg, uarg, data_size)) {
1205 printk(KERN_ERR MYNAM "%s@%d::mptctl_getiocinfo - "
1206 "Unable to read in mpt_ioctl_iocinfo struct @ %p\n",
1207 __FILE__, __LINE__, uarg);
1212 if (((iocnum = mpt_verify_adapter(karg->hdr.iocnum, &ioc)) < 0) ||
1214 printk(KERN_DEBUG MYNAM "%s::mptctl_getiocinfo() @%d - ioc%d not found!\n",
1215 __FILE__, __LINE__, iocnum);
1220 /* Verify the data transfer size is correct. */
1221 if (karg->hdr.maxDataSize != data_size) {
1222 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_getiocinfo - "
1223 "Structure size mismatch. Command not completed.\n",
1224 ioc->name, __FILE__, __LINE__);
1229 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_getiocinfo called.\n",
1232 /* Fill in the data and return the structure to the calling
1235 if (ioc->bus_type == SAS)
1236 karg->adapterType = MPT_IOCTL_INTERFACE_SAS;
1237 else if (ioc->bus_type == FC)
1238 karg->adapterType = MPT_IOCTL_INTERFACE_FC;
1240 karg->adapterType = MPT_IOCTL_INTERFACE_SCSI;
1242 if (karg->hdr.port > 1)
1244 port = karg->hdr.port;
1247 pdev = (struct pci_dev *) ioc->pcidev;
1249 karg->pciId = pdev->device;
1250 pci_read_config_byte(pdev, PCI_CLASS_REVISION, &revision);
1251 karg->hwRev = revision;
1252 karg->subSystemDevice = pdev->subsystem_device;
1253 karg->subSystemVendor = pdev->subsystem_vendor;
1256 /* Get the PCI bus, device, and function numbers for the IOC
1258 karg->pciInfo.u.bits.busNumber = pdev->bus->number;
1259 karg->pciInfo.u.bits.deviceNumber = PCI_SLOT( pdev->devfn );
1260 karg->pciInfo.u.bits.functionNumber = PCI_FUNC( pdev->devfn );
1261 } else if (cim_rev == 2) {
1262 /* Get the PCI bus, device, function and segment ID numbers
1264 karg->pciInfo.u.bits.busNumber = pdev->bus->number;
1265 karg->pciInfo.u.bits.deviceNumber = PCI_SLOT( pdev->devfn );
1266 karg->pciInfo.u.bits.functionNumber = PCI_FUNC( pdev->devfn );
1267 karg->pciInfo.segmentID = pci_domain_nr(pdev->bus);
1270 /* Get number of devices
1272 karg->numDevices = 0;
1274 shost_for_each_device(sdev, ioc->sh) {
1275 vdevice = sdev->hostdata;
1276 if (vdevice->vtarget->tflags &
1277 MPT_TARGET_FLAGS_RAID_COMPONENT)
1283 /* Set the BIOS and FW Version
1285 karg->FWVersion = ioc->facts.FWVersion.Word;
1286 karg->BIOSVersion = ioc->biosVersion;
1288 /* Set the Version Strings.
1290 strncpy (karg->driverVersion, MPT_LINUX_PACKAGE_NAME, MPT_IOCTL_VERSION_LENGTH);
1291 karg->driverVersion[MPT_IOCTL_VERSION_LENGTH-1]='\0';
1293 karg->busChangeEvent = 0;
1294 karg->hostId = ioc->pfacts[port].PortSCSIID;
1295 karg->rsvd[0] = karg->rsvd[1] = 0;
1297 /* Copy the data from kernel memory to user memory
1299 if (copy_to_user((char __user *)arg, karg, data_size)) {
1300 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_getiocinfo - "
1301 "Unable to write out mpt_ioctl_iocinfo struct @ %p\n",
1302 ioc->name, __FILE__, __LINE__, uarg);
1311 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1313 * mptctl_gettargetinfo - Query the host adapter for target information.
1314 * @arg: User space argument
1317 * Return: 0 if successful
1318 * -EFAULT if data unavailable
1319 * -ENODEV if no such device/adapter
1322 mptctl_gettargetinfo (unsigned long arg)
1324 struct mpt_ioctl_targetinfo __user *uarg = (void __user *) arg;
1325 struct mpt_ioctl_targetinfo karg;
1327 VirtDevice *vdevice;
1336 struct scsi_device *sdev;
1338 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_targetinfo))) {
1339 printk(KERN_ERR MYNAM "%s@%d::mptctl_gettargetinfo - "
1340 "Unable to read in mpt_ioctl_targetinfo struct @ %p\n",
1341 __FILE__, __LINE__, uarg);
1345 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1347 printk(KERN_DEBUG MYNAM "%s::mptctl_gettargetinfo() @%d - ioc%d not found!\n",
1348 __FILE__, __LINE__, iocnum);
1352 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_gettargetinfo called.\n",
1354 /* Get the port number and set the maximum number of bytes
1355 * in the returned structure.
1356 * Ignore the port setting.
1358 numBytes = karg.hdr.maxDataSize - sizeof(mpt_ioctl_header);
1359 maxWordsLeft = numBytes/sizeof(int);
1360 port = karg.hdr.port;
1362 if (maxWordsLeft <= 0) {
1363 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo() - no memory available!\n",
1364 ioc->name, __FILE__, __LINE__);
1368 /* Fill in the data and return the structure to the calling
1372 /* struct mpt_ioctl_targetinfo does not contain sufficient space
1373 * for the target structures so when the IOCTL is called, there is
1374 * not sufficient stack space for the structure. Allocate memory,
1375 * populate the memory, copy back to the user, then free memory.
1376 * targetInfo format:
1377 * bits 31-24: reserved
1382 pmem = kzalloc(numBytes, GFP_KERNEL);
1384 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo() - no memory available!\n",
1385 ioc->name, __FILE__, __LINE__);
1388 pdata = (int *) pmem;
1390 /* Get number of devices
1393 shost_for_each_device(sdev, ioc->sh) {
1396 vdevice = sdev->hostdata;
1397 if (vdevice->vtarget->tflags &
1398 MPT_TARGET_FLAGS_RAID_COMPONENT)
1400 lun = (vdevice->vtarget->raidVolume) ? 0x80 : vdevice->lun;
1401 *pdata = (((u8)lun << 16) + (vdevice->vtarget->channel << 8) +
1402 (vdevice->vtarget->id ));
1408 karg.numDevices = numDevices;
1410 /* Copy part of the data from kernel memory to user memory
1412 if (copy_to_user((char __user *)arg, &karg,
1413 sizeof(struct mpt_ioctl_targetinfo))) {
1414 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo - "
1415 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
1416 ioc->name, __FILE__, __LINE__, uarg);
1421 /* Copy the remaining data from kernel memory to user memory
1423 if (copy_to_user(uarg->targetInfo, pmem, numBytes)) {
1424 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo - "
1425 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
1426 ioc->name, __FILE__, __LINE__, pdata);
1436 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1437 /* MPT IOCTL Test function.
1440 * Return: 0 if successful
1441 * -EFAULT if data unavailable
1442 * -ENODEV if no such device/adapter
1445 mptctl_readtest (unsigned long arg)
1447 struct mpt_ioctl_test __user *uarg = (void __user *) arg;
1448 struct mpt_ioctl_test karg;
1452 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_test))) {
1453 printk(KERN_ERR MYNAM "%s@%d::mptctl_readtest - "
1454 "Unable to read in mpt_ioctl_test struct @ %p\n",
1455 __FILE__, __LINE__, uarg);
1459 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1461 printk(KERN_DEBUG MYNAM "%s::mptctl_readtest() @%d - ioc%d not found!\n",
1462 __FILE__, __LINE__, iocnum);
1466 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_readtest called.\n",
1468 /* Fill in the data and return the structure to the calling
1473 karg.chip_type = ioc->mfcnt;
1475 karg.chip_type = ioc->pcidev->device;
1477 strncpy (karg.name, ioc->name, MPT_MAX_NAME);
1478 karg.name[MPT_MAX_NAME-1]='\0';
1479 strncpy (karg.product, ioc->prod_name, MPT_PRODUCT_LENGTH);
1480 karg.product[MPT_PRODUCT_LENGTH-1]='\0';
1482 /* Copy the data from kernel memory to user memory
1484 if (copy_to_user((char __user *)arg, &karg, sizeof(struct mpt_ioctl_test))) {
1485 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_readtest - "
1486 "Unable to write out mpt_ioctl_test struct @ %p\n",
1487 ioc->name, __FILE__, __LINE__, uarg);
1494 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1496 * mptctl_eventquery - Query the host adapter for the event types
1497 * that are being logged.
1498 * @arg: User space argument
1501 * Return: 0 if successful
1502 * -EFAULT if data unavailable
1503 * -ENODEV if no such device/adapter
1506 mptctl_eventquery (unsigned long arg)
1508 struct mpt_ioctl_eventquery __user *uarg = (void __user *) arg;
1509 struct mpt_ioctl_eventquery karg;
1513 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventquery))) {
1514 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventquery - "
1515 "Unable to read in mpt_ioctl_eventquery struct @ %p\n",
1516 __FILE__, __LINE__, uarg);
1520 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1522 printk(KERN_DEBUG MYNAM "%s::mptctl_eventquery() @%d - ioc%d not found!\n",
1523 __FILE__, __LINE__, iocnum);
1527 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventquery called.\n",
1529 karg.eventEntries = MPTCTL_EVENT_LOG_SIZE;
1530 karg.eventTypes = ioc->eventTypes;
1532 /* Copy the data from kernel memory to user memory
1534 if (copy_to_user((char __user *)arg, &karg, sizeof(struct mpt_ioctl_eventquery))) {
1535 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_eventquery - "
1536 "Unable to write out mpt_ioctl_eventquery struct @ %p\n",
1537 ioc->name, __FILE__, __LINE__, uarg);
1543 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1545 mptctl_eventenable (unsigned long arg)
1547 struct mpt_ioctl_eventenable __user *uarg = (void __user *) arg;
1548 struct mpt_ioctl_eventenable karg;
1552 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventenable))) {
1553 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventenable - "
1554 "Unable to read in mpt_ioctl_eventenable struct @ %p\n",
1555 __FILE__, __LINE__, uarg);
1559 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1561 printk(KERN_DEBUG MYNAM "%s::mptctl_eventenable() @%d - ioc%d not found!\n",
1562 __FILE__, __LINE__, iocnum);
1566 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventenable called.\n",
1568 if (ioc->events == NULL) {
1569 /* Have not yet allocated memory - do so now.
1571 int sz = MPTCTL_EVENT_LOG_SIZE * sizeof(MPT_IOCTL_EVENTS);
1572 ioc->events = kzalloc(sz, GFP_KERNEL);
1574 printk(MYIOC_s_ERR_FMT
1575 ": ERROR - Insufficient memory to add adapter!\n",
1579 ioc->alloc_total += sz;
1581 ioc->eventContext = 0;
1584 /* Update the IOC event logging flag.
1586 ioc->eventTypes = karg.eventTypes;
1591 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1593 mptctl_eventreport (unsigned long arg)
1595 struct mpt_ioctl_eventreport __user *uarg = (void __user *) arg;
1596 struct mpt_ioctl_eventreport karg;
1599 int numBytes, maxEvents, max;
1601 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventreport))) {
1602 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventreport - "
1603 "Unable to read in mpt_ioctl_eventreport struct @ %p\n",
1604 __FILE__, __LINE__, uarg);
1608 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1610 printk(KERN_DEBUG MYNAM "%s::mptctl_eventreport() @%d - ioc%d not found!\n",
1611 __FILE__, __LINE__, iocnum);
1614 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventreport called.\n",
1617 numBytes = karg.hdr.maxDataSize - sizeof(mpt_ioctl_header);
1618 maxEvents = numBytes/sizeof(MPT_IOCTL_EVENTS);
1621 max = MPTCTL_EVENT_LOG_SIZE < maxEvents ? MPTCTL_EVENT_LOG_SIZE : maxEvents;
1623 /* If fewer than 1 event is requested, there must have
1624 * been some type of error.
1626 if ((max < 1) || !ioc->events)
1629 /* reset this flag so SIGIO can restart */
1630 ioc->aen_event_read_flag=0;
1632 /* Copy the data from kernel memory to user memory
1634 numBytes = max * sizeof(MPT_IOCTL_EVENTS);
1635 if (copy_to_user(uarg->eventData, ioc->events, numBytes)) {
1636 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_eventreport - "
1637 "Unable to write out mpt_ioctl_eventreport struct @ %p\n",
1638 ioc->name, __FILE__, __LINE__, ioc->events);
1645 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1647 mptctl_replace_fw (unsigned long arg)
1649 struct mpt_ioctl_replace_fw __user *uarg = (void __user *) arg;
1650 struct mpt_ioctl_replace_fw karg;
1655 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_replace_fw))) {
1656 printk(KERN_ERR MYNAM "%s@%d::mptctl_replace_fw - "
1657 "Unable to read in mpt_ioctl_replace_fw struct @ %p\n",
1658 __FILE__, __LINE__, uarg);
1662 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1664 printk(KERN_DEBUG MYNAM "%s::mptctl_replace_fw() @%d - ioc%d not found!\n",
1665 __FILE__, __LINE__, iocnum);
1669 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_replace_fw called.\n",
1671 /* If caching FW, Free the old FW image
1673 if (ioc->cached_fw == NULL)
1676 mpt_free_fw_memory(ioc);
1678 /* Allocate memory for the new FW image
1680 newFwSize = karg.newImageSize;
1682 if (newFwSize & 0x01)
1684 if (newFwSize & 0x02)
1687 mpt_alloc_fw_memory(ioc, newFwSize);
1688 if (ioc->cached_fw == NULL)
1691 /* Copy the data from user memory to kernel space
1693 if (copy_from_user(ioc->cached_fw, uarg->newImage, newFwSize)) {
1694 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_replace_fw - "
1695 "Unable to read in mpt_ioctl_replace_fw image "
1696 "@ %p\n", ioc->name, __FILE__, __LINE__, uarg);
1697 mpt_free_fw_memory(ioc);
1701 /* Update IOCFactsReply
1703 ioc->facts.FWImageSize = newFwSize;
1707 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1708 /* MPT IOCTL MPTCOMMAND function.
1709 * Cast the arg into the mpt_ioctl_mpt_command structure.
1712 * Return: 0 if successful
1713 * -EBUSY if previous command timeout and IOC reset is not complete.
1714 * -EFAULT if data unavailable
1715 * -ENODEV if no such device/adapter
1716 * -ETIME if timer expires
1717 * -ENOMEM if memory allocation error
1720 mptctl_mpt_command (unsigned long arg)
1722 struct mpt_ioctl_command __user *uarg = (void __user *) arg;
1723 struct mpt_ioctl_command karg;
1729 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_command))) {
1730 printk(KERN_ERR MYNAM "%s@%d::mptctl_mpt_command - "
1731 "Unable to read in mpt_ioctl_command struct @ %p\n",
1732 __FILE__, __LINE__, uarg);
1736 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1738 printk(KERN_DEBUG MYNAM "%s::mptctl_mpt_command() @%d - ioc%d not found!\n",
1739 __FILE__, __LINE__, iocnum);
1743 rc = mptctl_do_mpt_command (karg, &uarg->MF);
1748 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1749 /* Worker routine for the IOCTL MPTCOMMAND and MPTCOMMAND32 (sparc) commands.
1752 * Return: 0 if successful
1753 * -EBUSY if previous command timeout and IOC reset is not complete.
1754 * -EFAULT if data unavailable
1755 * -ENODEV if no such device/adapter
1756 * -ETIME if timer expires
1757 * -ENOMEM if memory allocation error
1758 * -EPERM if SCSI I/O and target is untagged
1761 mptctl_do_mpt_command (struct mpt_ioctl_command karg, void __user *mfPtr)
1764 MPT_FRAME_HDR *mf = NULL;
1767 struct buflist bufIn; /* data In buffer */
1768 struct buflist bufOut; /* data Out buffer */
1769 dma_addr_t dma_addr_in;
1770 dma_addr_t dma_addr_out;
1771 int sgSize = 0; /* Num SG elements */
1772 int iocnum, flagsLength;
1777 struct scsi_device *sdev;
1779 /* bufIn and bufOut are used for user to kernel space transfers
1781 bufIn.kptr = bufOut.kptr = NULL;
1782 bufIn.len = bufOut.len = 0;
1784 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1786 printk(KERN_DEBUG MYNAM "%s::mptctl_do_mpt_command() @%d - ioc%d not found!\n",
1787 __FILE__, __LINE__, iocnum);
1791 printk(KERN_ERR MYNAM "%s@%d::mptctl_do_mpt_command - "
1792 "No memory available during driver init.\n",
1793 __FILE__, __LINE__);
1795 } else if (ioc->ioctl->status & MPT_MGMT_STATUS_DID_IOCRESET) {
1796 printk(KERN_ERR MYNAM "%s@%d::mptctl_do_mpt_command - "
1797 "Busy with IOC Reset \n", __FILE__, __LINE__);
1801 /* Verify that the final request frame will not be too large.
1803 sz = karg.dataSgeOffset * 4;
1804 if (karg.dataInSize > 0)
1805 sz += ioc->SGE_size;
1806 if (karg.dataOutSize > 0)
1807 sz += ioc->SGE_size;
1809 if (sz > ioc->req_sz) {
1810 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1811 "Request frame too large (%d) maximum (%d)\n",
1812 ioc->name, __FILE__, __LINE__, sz, ioc->req_sz);
1816 /* Get a free request frame and save the message context.
1818 if ((mf = mpt_get_msg_frame(mptctl_id, ioc)) == NULL)
1821 hdr = (MPIHeader_t *) mf;
1822 msgContext = le32_to_cpu(hdr->MsgContext);
1823 req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
1825 /* Copy the request frame
1826 * Reset the saved message context.
1827 * Request frame in user space
1829 if (copy_from_user(mf, mfPtr, karg.dataSgeOffset * 4)) {
1830 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1831 "Unable to read MF from mpt_ioctl_command struct @ %p\n",
1832 ioc->name, __FILE__, __LINE__, mfPtr);
1836 hdr->MsgContext = cpu_to_le32(msgContext);
1839 /* Verify that this request is allowed.
1841 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "sending mpi function (0x%02X), req=%p\n",
1842 ioc->name, hdr->Function, mf));
1844 switch (hdr->Function) {
1845 case MPI_FUNCTION_IOC_FACTS:
1846 case MPI_FUNCTION_PORT_FACTS:
1847 karg.dataOutSize = karg.dataInSize = 0;
1850 case MPI_FUNCTION_CONFIG:
1852 Config_t *config_frame;
1853 config_frame = (Config_t *)mf;
1854 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "\ttype=0x%02x ext_type=0x%02x "
1855 "number=0x%02x action=0x%02x\n", ioc->name,
1856 config_frame->Header.PageType,
1857 config_frame->ExtPageType,
1858 config_frame->Header.PageNumber,
1859 config_frame->Action));
1863 case MPI_FUNCTION_FC_COMMON_TRANSPORT_SEND:
1864 case MPI_FUNCTION_FC_EX_LINK_SRVC_SEND:
1865 case MPI_FUNCTION_FW_UPLOAD:
1866 case MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR:
1867 case MPI_FUNCTION_FW_DOWNLOAD:
1868 case MPI_FUNCTION_FC_PRIMITIVE_SEND:
1869 case MPI_FUNCTION_TOOLBOX:
1870 case MPI_FUNCTION_SAS_IO_UNIT_CONTROL:
1873 case MPI_FUNCTION_SCSI_IO_REQUEST:
1875 SCSIIORequest_t *pScsiReq = (SCSIIORequest_t *) mf;
1876 int qtag = MPI_SCSIIO_CONTROL_UNTAGGED;
1881 id = (ioc->devices_per_bus == 0) ? 256 : ioc->devices_per_bus;
1882 if (pScsiReq->TargetID > id) {
1883 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1884 "Target ID out of bounds. \n",
1885 ioc->name, __FILE__, __LINE__);
1890 if (pScsiReq->Bus >= ioc->number_of_buses) {
1891 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1892 "Target Bus out of bounds. \n",
1893 ioc->name, __FILE__, __LINE__);
1898 pScsiReq->MsgFlags &= ~MPI_SCSIIO_MSGFLGS_SENSE_WIDTH;
1899 pScsiReq->MsgFlags |= mpt_msg_flags(ioc);
1902 /* verify that app has not requested
1903 * more sense data than driver
1904 * can provide, if so, reset this parameter
1905 * set the sense buffer pointer low address
1906 * update the control field to specify Q type
1908 if (karg.maxSenseBytes > MPT_SENSE_BUFFER_SIZE)
1909 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
1911 pScsiReq->SenseBufferLength = karg.maxSenseBytes;
1913 pScsiReq->SenseBufferLowAddr =
1914 cpu_to_le32(ioc->sense_buf_low_dma
1915 + (req_idx * MPT_SENSE_BUFFER_ALLOC));
1917 shost_for_each_device(sdev, ioc->sh) {
1918 struct scsi_target *starget = scsi_target(sdev);
1919 VirtTarget *vtarget = starget->hostdata;
1921 if ((pScsiReq->TargetID == vtarget->id) &&
1922 (pScsiReq->Bus == vtarget->channel) &&
1923 (vtarget->tflags & MPT_TARGET_FLAGS_Q_YES))
1924 qtag = MPI_SCSIIO_CONTROL_SIMPLEQ;
1927 /* Have the IOCTL driver set the direction based
1928 * on the dataOutSize (ordering issue with Sparc).
1930 if (karg.dataOutSize > 0) {
1931 scsidir = MPI_SCSIIO_CONTROL_WRITE;
1932 dataSize = karg.dataOutSize;
1934 scsidir = MPI_SCSIIO_CONTROL_READ;
1935 dataSize = karg.dataInSize;
1938 pScsiReq->Control = cpu_to_le32(scsidir | qtag);
1939 pScsiReq->DataLength = cpu_to_le32(dataSize);
1941 ioc->ioctl->reset = MPTCTL_RESET_OK;
1942 ioc->ioctl->id = pScsiReq->TargetID;
1945 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1946 "SCSI driver is not loaded. \n",
1947 ioc->name, __FILE__, __LINE__);
1953 case MPI_FUNCTION_SMP_PASSTHROUGH:
1954 /* Check mf->PassthruFlags to determine if
1955 * transfer is ImmediateMode or not.
1956 * Immediate mode returns data in the ReplyFrame.
1957 * Else, we are sending request and response data
1958 * in two SGLs at the end of the mf.
1962 case MPI_FUNCTION_SATA_PASSTHROUGH:
1964 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1965 "SCSI driver is not loaded. \n",
1966 ioc->name, __FILE__, __LINE__);
1972 case MPI_FUNCTION_RAID_ACTION:
1977 case MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH:
1979 SCSIIORequest_t *pScsiReq = (SCSIIORequest_t *) mf;
1980 int qtag = MPI_SCSIIO_CONTROL_SIMPLEQ;
1981 int scsidir = MPI_SCSIIO_CONTROL_READ;
1984 pScsiReq->MsgFlags &= ~MPI_SCSIIO_MSGFLGS_SENSE_WIDTH;
1985 pScsiReq->MsgFlags |= mpt_msg_flags(ioc);
1988 /* verify that app has not requested
1989 * more sense data than driver
1990 * can provide, if so, reset this parameter
1991 * set the sense buffer pointer low address
1992 * update the control field to specify Q type
1994 if (karg.maxSenseBytes > MPT_SENSE_BUFFER_SIZE)
1995 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
1997 pScsiReq->SenseBufferLength = karg.maxSenseBytes;
1999 pScsiReq->SenseBufferLowAddr =
2000 cpu_to_le32(ioc->sense_buf_low_dma
2001 + (req_idx * MPT_SENSE_BUFFER_ALLOC));
2003 /* All commands to physical devices are tagged
2006 /* Have the IOCTL driver set the direction based
2007 * on the dataOutSize (ordering issue with Sparc).
2009 if (karg.dataOutSize > 0) {
2010 scsidir = MPI_SCSIIO_CONTROL_WRITE;
2011 dataSize = karg.dataOutSize;
2013 scsidir = MPI_SCSIIO_CONTROL_READ;
2014 dataSize = karg.dataInSize;
2017 pScsiReq->Control = cpu_to_le32(scsidir | qtag);
2018 pScsiReq->DataLength = cpu_to_le32(dataSize);
2020 ioc->ioctl->reset = MPTCTL_RESET_OK;
2021 ioc->ioctl->id = pScsiReq->TargetID;
2023 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2024 "SCSI driver is not loaded. \n",
2025 ioc->name, __FILE__, __LINE__);
2031 case MPI_FUNCTION_SCSI_TASK_MGMT:
2033 MPT_SCSI_HOST *hd = NULL;
2034 if ((ioc->sh == NULL) || ((hd = shost_priv(ioc->sh)) == NULL)) {
2035 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2036 "SCSI driver not loaded or SCSI host not found. \n",
2037 ioc->name, __FILE__, __LINE__);
2040 } else if (mptctl_set_tm_flags(hd) != 0) {
2047 case MPI_FUNCTION_IOC_INIT:
2049 IOCInit_t *pInit = (IOCInit_t *) mf;
2050 u32 high_addr, sense_high;
2052 /* Verify that all entries in the IOC INIT match
2053 * existing setup (and in LE format).
2055 if (sizeof(dma_addr_t) == sizeof(u64)) {
2056 high_addr = cpu_to_le32((u32)((u64)ioc->req_frames_dma >> 32));
2057 sense_high= cpu_to_le32((u32)((u64)ioc->sense_buf_pool_dma >> 32));
2063 if ((pInit->Flags != 0) || (pInit->MaxDevices != ioc->facts.MaxDevices) ||
2064 (pInit->MaxBuses != ioc->facts.MaxBuses) ||
2065 (pInit->ReplyFrameSize != cpu_to_le16(ioc->reply_sz)) ||
2066 (pInit->HostMfaHighAddr != high_addr) ||
2067 (pInit->SenseBufferHighAddr != sense_high)) {
2068 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2069 "IOC_INIT issued with 1 or more incorrect parameters. Rejected.\n",
2070 ioc->name, __FILE__, __LINE__);
2078 * MPI_FUNCTION_PORT_ENABLE
2079 * MPI_FUNCTION_TARGET_CMD_BUFFER_POST
2080 * MPI_FUNCTION_TARGET_ASSIST
2081 * MPI_FUNCTION_TARGET_STATUS_SEND
2082 * MPI_FUNCTION_TARGET_MODE_ABORT
2083 * MPI_FUNCTION_IOC_MESSAGE_UNIT_RESET
2084 * MPI_FUNCTION_IO_UNIT_RESET
2085 * MPI_FUNCTION_HANDSHAKE
2086 * MPI_FUNCTION_REPLY_FRAME_REMOVAL
2087 * MPI_FUNCTION_EVENT_NOTIFICATION
2088 * (driver handles event notification)
2089 * MPI_FUNCTION_EVENT_ACK
2092 /* What to do with these??? CHECK ME!!!
2093 MPI_FUNCTION_FC_LINK_SRVC_BUF_POST
2094 MPI_FUNCTION_FC_LINK_SRVC_RSP
2095 MPI_FUNCTION_FC_ABORT
2096 MPI_FUNCTION_LAN_SEND
2097 MPI_FUNCTION_LAN_RECEIVE
2098 MPI_FUNCTION_LAN_RESET
2101 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2102 "Illegal request (function 0x%x) \n",
2103 ioc->name, __FILE__, __LINE__, hdr->Function);
2108 /* Add the SGL ( at most one data in SGE and one data out SGE )
2109 * In the case of two SGE's - the data out (write) will always
2110 * preceede the data in (read) SGE. psgList is used to free the
2113 psge = (char *) (((int *) mf) + karg.dataSgeOffset);
2116 if (karg.dataOutSize > 0)
2119 if (karg.dataInSize > 0)
2124 /* Set up the dataOut memory allocation */
2125 if (karg.dataOutSize > 0) {
2126 if (karg.dataInSize > 0) {
2127 flagsLength = ( MPI_SGE_FLAGS_SIMPLE_ELEMENT |
2128 MPI_SGE_FLAGS_END_OF_BUFFER |
2129 MPI_SGE_FLAGS_DIRECTION)
2130 << MPI_SGE_FLAGS_SHIFT;
2132 flagsLength = MPT_SGE_FLAGS_SSIMPLE_WRITE;
2134 flagsLength |= karg.dataOutSize;
2135 bufOut.len = karg.dataOutSize;
2136 bufOut.kptr = pci_alloc_consistent(
2137 ioc->pcidev, bufOut.len, &dma_addr_out);
2139 if (bufOut.kptr == NULL) {
2144 * Copy to MF and to sglbuf
2146 ioc->add_sge(psge, flagsLength, dma_addr_out);
2147 psge += ioc->SGE_size;
2149 /* Copy user data to kernel space.
2151 if (copy_from_user(bufOut.kptr,
2154 printk(MYIOC_s_ERR_FMT
2155 "%s@%d::mptctl_do_mpt_command - Unable "
2156 "to read user data "
2158 ioc->name, __FILE__, __LINE__,karg.dataOutBufPtr);
2165 if (karg.dataInSize > 0) {
2166 flagsLength = MPT_SGE_FLAGS_SSIMPLE_READ;
2167 flagsLength |= karg.dataInSize;
2169 bufIn.len = karg.dataInSize;
2170 bufIn.kptr = pci_alloc_consistent(ioc->pcidev,
2171 bufIn.len, &dma_addr_in);
2173 if (bufIn.kptr == NULL) {
2178 * Copy to MF and to sglbuf
2180 ioc->add_sge(psge, flagsLength, dma_addr_in);
2186 ioc->add_sge(psge, flagsLength, (dma_addr_t) -1);
2189 ioc->ioctl->wait_done = 0;
2190 if (hdr->Function == MPI_FUNCTION_SCSI_TASK_MGMT) {
2192 DBG_DUMP_TM_REQUEST_FRAME(ioc, (u32 *)mf);
2194 if ((ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q) &&
2195 (ioc->facts.MsgVersion >= MPI_VERSION_01_05))
2196 mpt_put_msg_frame_hi_pri(mptctl_id, ioc, mf);
2198 rc =mpt_send_handshake_request(mptctl_id, ioc,
2199 sizeof(SCSITaskMgmt_t), (u32*)mf, CAN_SLEEP);
2201 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT
2202 "_send_handshake FAILED! (ioc %p, mf %p)\n",
2203 ioc->name, ioc, mf));
2204 mptctl_free_tm_flags(ioc);
2211 mpt_put_msg_frame(mptctl_id, ioc, mf);
2213 /* Now wait for the command to complete */
2214 timeout = (karg.timeout > 0) ? karg.timeout : MPT_IOCTL_DEFAULT_TIMEOUT;
2215 timeout = wait_event_timeout(mptctl_wait,
2216 ioc->ioctl->wait_done == 1,
2219 if(timeout <=0 && (ioc->ioctl->wait_done != 1 )) {
2220 /* Now we need to reset the board */
2222 if (hdr->Function == MPI_FUNCTION_SCSI_TASK_MGMT)
2223 mptctl_free_tm_flags(ioc);
2225 mptctl_timeout_expired(ioc->ioctl);
2232 /* If a valid reply frame, copy to the user.
2233 * Offset 2: reply length in U32's
2235 if (ioc->ioctl->status & MPT_MGMT_STATUS_RF_VALID) {
2236 if (karg.maxReplyBytes < ioc->reply_sz) {
2237 sz = min(karg.maxReplyBytes, 4*ioc->ioctl->ReplyFrame[2]);
2239 sz = min(ioc->reply_sz, 4*ioc->ioctl->ReplyFrame[2]);
2243 if (copy_to_user(karg.replyFrameBufPtr,
2244 &ioc->ioctl->ReplyFrame, sz)){
2245 printk(MYIOC_s_ERR_FMT
2246 "%s@%d::mptctl_do_mpt_command - "
2247 "Unable to write out reply frame %p\n",
2248 ioc->name, __FILE__, __LINE__, karg.replyFrameBufPtr);
2255 /* If valid sense data, copy to user.
2257 if (ioc->ioctl->status & MPT_MGMT_STATUS_SENSE_VALID) {
2258 sz = min(karg.maxSenseBytes, MPT_SENSE_BUFFER_SIZE);
2260 if (copy_to_user(karg.senseDataPtr, ioc->ioctl->sense, sz)) {
2261 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2262 "Unable to write sense data to user %p\n",
2263 ioc->name, __FILE__, __LINE__,
2271 /* If the overall status is _GOOD and data in, copy data
2274 if ((ioc->ioctl->status & MPT_MGMT_STATUS_COMMAND_GOOD) &&
2275 (karg.dataInSize > 0) && (bufIn.kptr)) {
2277 if (copy_to_user(karg.dataInBufPtr,
2278 bufIn.kptr, karg.dataInSize)) {
2279 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2280 "Unable to write data to user %p\n",
2281 ioc->name, __FILE__, __LINE__,
2289 ioc->ioctl->status &= ~(MPT_MGMT_STATUS_COMMAND_GOOD |
2290 MPT_MGMT_STATUS_SENSE_VALID |
2291 MPT_MGMT_STATUS_RF_VALID);
2293 /* Free the allocated memory.
2295 if (bufOut.kptr != NULL) {
2296 pci_free_consistent(ioc->pcidev,
2297 bufOut.len, (void *) bufOut.kptr, dma_addr_out);
2300 if (bufIn.kptr != NULL) {
2301 pci_free_consistent(ioc->pcidev,
2302 bufIn.len, (void *) bufIn.kptr, dma_addr_in);
2305 /* mf is null if command issued successfully
2306 * otherwise, failure occured after mf acquired.
2309 mpt_free_msg_frame(ioc, mf);
2314 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2315 /* Prototype Routine for the HOST INFO command.
2318 * Return: 0 if successful
2319 * -EFAULT if data unavailable
2320 * -EBUSY if previous command timeout and IOC reset is not complete.
2321 * -ENODEV if no such device/adapter
2322 * -ETIME if timer expires
2323 * -ENOMEM if memory allocation error
2326 mptctl_hp_hostinfo(unsigned long arg, unsigned int data_size)
2328 hp_host_info_t __user *uarg = (void __user *) arg;
2330 struct pci_dev *pdev;
2333 hp_host_info_t karg;
2335 ConfigPageHeader_t hdr;
2338 ToolboxIstwiReadWriteRequest_t *IstwiRWRequest;
2339 MPT_FRAME_HDR *mf = NULL;
2340 MPIHeader_t *mpi_hdr;
2342 /* Reset long to int. Should affect IA64 and SPARC only
2344 if (data_size == sizeof(hp_host_info_t))
2346 else if (data_size == sizeof(hp_host_info_rev0_t))
2347 cim_rev = 0; /* obsolete */
2351 if (copy_from_user(&karg, uarg, sizeof(hp_host_info_t))) {
2352 printk(KERN_ERR MYNAM "%s@%d::mptctl_hp_host_info - "
2353 "Unable to read in hp_host_info struct @ %p\n",
2354 __FILE__, __LINE__, uarg);
2358 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
2360 printk(KERN_DEBUG MYNAM "%s::mptctl_hp_hostinfo() @%d - ioc%d not found!\n",
2361 __FILE__, __LINE__, iocnum);
2364 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT ": mptctl_hp_hostinfo called.\n",
2367 /* Fill in the data and return the structure to the calling
2370 pdev = (struct pci_dev *) ioc->pcidev;
2372 karg.vendor = pdev->vendor;
2373 karg.device = pdev->device;
2374 karg.subsystem_id = pdev->subsystem_device;
2375 karg.subsystem_vendor = pdev->subsystem_vendor;
2376 karg.devfn = pdev->devfn;
2377 karg.bus = pdev->bus->number;
2379 /* Save the SCSI host no. if
2380 * SCSI driver loaded
2382 if (ioc->sh != NULL)
2383 karg.host_no = ioc->sh->host_no;
2387 /* Reformat the fw_version into a string
2389 karg.fw_version[0] = ioc->facts.FWVersion.Struct.Major >= 10 ?
2390 ((ioc->facts.FWVersion.Struct.Major / 10) + '0') : '0';
2391 karg.fw_version[1] = (ioc->facts.FWVersion.Struct.Major % 10 ) + '0';
2392 karg.fw_version[2] = '.';
2393 karg.fw_version[3] = ioc->facts.FWVersion.Struct.Minor >= 10 ?
2394 ((ioc->facts.FWVersion.Struct.Minor / 10) + '0') : '0';
2395 karg.fw_version[4] = (ioc->facts.FWVersion.Struct.Minor % 10 ) + '0';
2396 karg.fw_version[5] = '.';
2397 karg.fw_version[6] = ioc->facts.FWVersion.Struct.Unit >= 10 ?
2398 ((ioc->facts.FWVersion.Struct.Unit / 10) + '0') : '0';
2399 karg.fw_version[7] = (ioc->facts.FWVersion.Struct.Unit % 10 ) + '0';
2400 karg.fw_version[8] = '.';
2401 karg.fw_version[9] = ioc->facts.FWVersion.Struct.Dev >= 10 ?
2402 ((ioc->facts.FWVersion.Struct.Dev / 10) + '0') : '0';
2403 karg.fw_version[10] = (ioc->facts.FWVersion.Struct.Dev % 10 ) + '0';
2404 karg.fw_version[11] = '\0';
2406 /* Issue a config request to get the device serial number
2408 hdr.PageVersion = 0;
2411 hdr.PageType = MPI_CONFIG_PAGETYPE_MANUFACTURING;
2412 cfg.cfghdr.hdr = &hdr;
2415 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
2416 cfg.dir = 0; /* read */
2419 strncpy(karg.serial_number, " ", 24);
2420 if (mpt_config(ioc, &cfg) == 0) {
2421 if (cfg.cfghdr.hdr->PageLength > 0) {
2422 /* Issue the second config page request */
2423 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2425 pbuf = pci_alloc_consistent(ioc->pcidev, hdr.PageLength * 4, &buf_dma);
2427 cfg.physAddr = buf_dma;
2428 if (mpt_config(ioc, &cfg) == 0) {
2429 ManufacturingPage0_t *pdata = (ManufacturingPage0_t *) pbuf;
2430 if (strlen(pdata->BoardTracerNumber) > 1) {
2431 strncpy(karg.serial_number, pdata->BoardTracerNumber, 24);
2432 karg.serial_number[24-1]='\0';
2435 pci_free_consistent(ioc->pcidev, hdr.PageLength * 4, pbuf, buf_dma);
2440 rc = mpt_GetIocState(ioc, 1);
2442 case MPI_IOC_STATE_OPERATIONAL:
2443 karg.ioc_status = HP_STATUS_OK;
2446 case MPI_IOC_STATE_FAULT:
2447 karg.ioc_status = HP_STATUS_FAILED;
2450 case MPI_IOC_STATE_RESET:
2451 case MPI_IOC_STATE_READY:
2453 karg.ioc_status = HP_STATUS_OTHER;
2457 karg.base_io_addr = pci_resource_start(pdev, 0);
2459 if ((ioc->bus_type == SAS) || (ioc->bus_type == FC))
2460 karg.bus_phys_width = HP_BUS_WIDTH_UNK;
2462 karg.bus_phys_width = HP_BUS_WIDTH_16;
2464 karg.hard_resets = 0;
2465 karg.soft_resets = 0;
2467 if (ioc->sh != NULL) {
2468 MPT_SCSI_HOST *hd = shost_priv(ioc->sh);
2470 if (hd && (cim_rev == 1)) {
2471 karg.hard_resets = hd->hard_resets;
2472 karg.soft_resets = hd->soft_resets;
2473 karg.timeouts = hd->timeouts;
2478 * Gather ISTWI(Industry Standard Two Wire Interface) Data
2480 if ((mf = mpt_get_msg_frame(mptctl_id, ioc)) == NULL) {
2481 dfailprintk(ioc, printk(MYIOC_s_WARN_FMT "%s, no msg frames!!\n",
2482 ioc->name,__func__));
2486 IstwiRWRequest = (ToolboxIstwiReadWriteRequest_t *)mf;
2487 mpi_hdr = (MPIHeader_t *) mf;
2488 memset(IstwiRWRequest,0,sizeof(ToolboxIstwiReadWriteRequest_t));
2489 IstwiRWRequest->Function = MPI_FUNCTION_TOOLBOX;
2490 IstwiRWRequest->Tool = MPI_TOOLBOX_ISTWI_READ_WRITE_TOOL;
2491 IstwiRWRequest->MsgContext = mpi_hdr->MsgContext;
2492 IstwiRWRequest->Flags = MPI_TB_ISTWI_FLAGS_READ;
2493 IstwiRWRequest->NumAddressBytes = 0x01;
2494 IstwiRWRequest->DataLength = cpu_to_le16(0x04);
2495 if (pdev->devfn & 1)
2496 IstwiRWRequest->DeviceAddr = 0xB2;
2498 IstwiRWRequest->DeviceAddr = 0xB0;
2500 pbuf = pci_alloc_consistent(ioc->pcidev, 4, &buf_dma);
2503 ioc->add_sge((char *)&IstwiRWRequest->SGL,
2504 (MPT_SGE_FLAGS_SSIMPLE_READ|4), buf_dma);
2506 ioc->ioctl->wait_done = 0;
2507 mpt_put_msg_frame(mptctl_id, ioc, mf);
2509 rc = wait_event_timeout(mptctl_wait,
2510 ioc->ioctl->wait_done == 1,
2511 HZ*MPT_IOCTL_DEFAULT_TIMEOUT /* 10 sec */);
2513 if(rc <=0 && (ioc->ioctl->wait_done != 1 )) {
2515 * Now we need to reset the board
2517 mpt_free_msg_frame(ioc, mf);
2518 mptctl_timeout_expired(ioc->ioctl);
2523 *ISTWI Data Definition
2524 * pbuf[0] = FW_VERSION = 0x4
2525 * pbuf[1] = Bay Count = 6 or 4 or 2, depending on
2526 * the config, you should be seeing one out of these three values
2527 * pbuf[2] = Drive Installed Map = bit pattern depend on which
2528 * bays have drives in them
2529 * pbuf[3] = Checksum (0x100 = (byte0 + byte2 + byte3)
2531 if (ioc->ioctl->status & MPT_MGMT_STATUS_RF_VALID)
2532 karg.rsvd = *(u32 *)pbuf;
2536 pci_free_consistent(ioc->pcidev, 4, pbuf, buf_dma);
2538 /* Copy the data from kernel memory to user memory
2540 if (copy_to_user((char __user *)arg, &karg, sizeof(hp_host_info_t))) {
2541 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_hpgethostinfo - "
2542 "Unable to write out hp_host_info @ %p\n",
2543 ioc->name, __FILE__, __LINE__, uarg);
2551 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2552 /* Prototype Routine for the TARGET INFO command.
2555 * Return: 0 if successful
2556 * -EFAULT if data unavailable
2557 * -EBUSY if previous command timeout and IOC reset is not complete.
2558 * -ENODEV if no such device/adapter
2559 * -ETIME if timer expires
2560 * -ENOMEM if memory allocation error
2563 mptctl_hp_targetinfo(unsigned long arg)
2565 hp_target_info_t __user *uarg = (void __user *) arg;
2566 SCSIDevicePage0_t *pg0_alloc;
2567 SCSIDevicePage3_t *pg3_alloc;
2569 MPT_SCSI_HOST *hd = NULL;
2570 hp_target_info_t karg;
2573 dma_addr_t page_dma;
2575 ConfigPageHeader_t hdr;
2576 int tmp, np, rc = 0;
2578 if (copy_from_user(&karg, uarg, sizeof(hp_target_info_t))) {
2579 printk(KERN_ERR MYNAM "%s@%d::mptctl_hp_targetinfo - "
2580 "Unable to read in hp_host_targetinfo struct @ %p\n",
2581 __FILE__, __LINE__, uarg);
2585 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
2587 printk(KERN_DEBUG MYNAM "%s::mptctl_hp_targetinfo() @%d - ioc%d not found!\n",
2588 __FILE__, __LINE__, iocnum);
2591 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_hp_targetinfo called.\n",
2594 /* There is nothing to do for FCP parts.
2596 if ((ioc->bus_type == SAS) || (ioc->bus_type == FC))
2599 if ((ioc->spi_data.sdp0length == 0) || (ioc->sh == NULL))
2602 if (ioc->sh->host_no != karg.hdr.host)
2605 /* Get the data transfer speeds
2607 data_sz = ioc->spi_data.sdp0length * 4;
2608 pg0_alloc = (SCSIDevicePage0_t *) pci_alloc_consistent(ioc->pcidev, data_sz, &page_dma);
2610 hdr.PageVersion = ioc->spi_data.sdp0version;
2611 hdr.PageLength = data_sz;
2613 hdr.PageType = MPI_CONFIG_PAGETYPE_SCSI_DEVICE;
2615 cfg.cfghdr.hdr = &hdr;
2616 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2619 cfg.physAddr = page_dma;
2621 cfg.pageAddr = (karg.hdr.channel << 8) | karg.hdr.id;
2623 if ((rc = mpt_config(ioc, &cfg)) == 0) {
2624 np = le32_to_cpu(pg0_alloc->NegotiatedParameters);
2625 karg.negotiated_width = np & MPI_SCSIDEVPAGE0_NP_WIDE ?
2626 HP_BUS_WIDTH_16 : HP_BUS_WIDTH_8;
2628 if (np & MPI_SCSIDEVPAGE0_NP_NEG_SYNC_OFFSET_MASK) {
2629 tmp = (np & MPI_SCSIDEVPAGE0_NP_NEG_SYNC_PERIOD_MASK) >> 8;
2631 karg.negotiated_speed = HP_DEV_SPEED_ULTRA320;
2632 else if (tmp <= 0x09)
2633 karg.negotiated_speed = HP_DEV_SPEED_ULTRA160;
2634 else if (tmp <= 0x0A)
2635 karg.negotiated_speed = HP_DEV_SPEED_ULTRA2;
2636 else if (tmp <= 0x0C)
2637 karg.negotiated_speed = HP_DEV_SPEED_ULTRA;
2638 else if (tmp <= 0x25)
2639 karg.negotiated_speed = HP_DEV_SPEED_FAST;
2641 karg.negotiated_speed = HP_DEV_SPEED_ASYNC;
2643 karg.negotiated_speed = HP_DEV_SPEED_ASYNC;
2646 pci_free_consistent(ioc->pcidev, data_sz, (u8 *) pg0_alloc, page_dma);
2651 karg.message_rejects = -1;
2652 karg.phase_errors = -1;
2653 karg.parity_errors = -1;
2654 karg.select_timeouts = -1;
2656 /* Get the target error parameters
2658 hdr.PageVersion = 0;
2661 hdr.PageType = MPI_CONFIG_PAGETYPE_SCSI_DEVICE;
2663 cfg.cfghdr.hdr = &hdr;
2664 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
2668 if ((mpt_config(ioc, &cfg) == 0) && (cfg.cfghdr.hdr->PageLength > 0)) {
2669 /* Issue the second config page request */
2670 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2671 data_sz = (int) cfg.cfghdr.hdr->PageLength * 4;
2672 pg3_alloc = (SCSIDevicePage3_t *) pci_alloc_consistent(
2673 ioc->pcidev, data_sz, &page_dma);
2675 cfg.physAddr = page_dma;
2676 cfg.pageAddr = (karg.hdr.channel << 8) | karg.hdr.id;
2677 if ((rc = mpt_config(ioc, &cfg)) == 0) {
2678 karg.message_rejects = (u32) le16_to_cpu(pg3_alloc->MsgRejectCount);
2679 karg.phase_errors = (u32) le16_to_cpu(pg3_alloc->PhaseErrorCount);
2680 karg.parity_errors = (u32) le16_to_cpu(pg3_alloc->ParityErrorCount);
2682 pci_free_consistent(ioc->pcidev, data_sz, (u8 *) pg3_alloc, page_dma);
2685 hd = shost_priv(ioc->sh);
2687 karg.select_timeouts = hd->sel_timeout[karg.hdr.id];
2689 /* Copy the data from kernel memory to user memory
2691 if (copy_to_user((char __user *)arg, &karg, sizeof(hp_target_info_t))) {
2692 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_hp_target_info - "
2693 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
2694 ioc->name, __FILE__, __LINE__, uarg);
2701 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2703 static const struct file_operations mptctl_fops = {
2704 .owner = THIS_MODULE,
2705 .llseek = no_llseek,
2706 .fasync = mptctl_fasync,
2707 .unlocked_ioctl = mptctl_ioctl,
2708 #ifdef CONFIG_COMPAT
2709 .compat_ioctl = compat_mpctl_ioctl,
2713 static struct miscdevice mptctl_miscdev = {
2719 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2721 #ifdef CONFIG_COMPAT
2724 compat_mptfwxfer_ioctl(struct file *filp, unsigned int cmd,
2727 struct mpt_fw_xfer32 kfw32;
2728 struct mpt_fw_xfer kfw;
2729 MPT_ADAPTER *iocp = NULL;
2730 int iocnum, iocnumX;
2731 int nonblock = (filp->f_flags & O_NONBLOCK);
2735 if (copy_from_user(&kfw32, (char __user *)arg, sizeof(kfw32)))
2738 /* Verify intended MPT adapter */
2739 iocnumX = kfw32.iocnum & 0xFF;
2740 if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
2742 printk(KERN_DEBUG MYNAM "::compat_mptfwxfer_ioctl @%d - ioc%d not found!\n",
2747 if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
2750 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "compat_mptfwxfer_ioctl() called\n",
2752 kfw.iocnum = iocnum;
2753 kfw.fwlen = kfw32.fwlen;
2754 kfw.bufp = compat_ptr(kfw32.bufp);
2756 ret = mptctl_do_fw_download(kfw.iocnum, kfw.bufp, kfw.fwlen);
2758 mutex_unlock(&iocp->ioctl->ioctl_mutex);
2764 compat_mpt_command(struct file *filp, unsigned int cmd,
2767 struct mpt_ioctl_command32 karg32;
2768 struct mpt_ioctl_command32 __user *uarg = (struct mpt_ioctl_command32 __user *) arg;
2769 struct mpt_ioctl_command karg;
2770 MPT_ADAPTER *iocp = NULL;
2771 int iocnum, iocnumX;
2772 int nonblock = (filp->f_flags & O_NONBLOCK);
2775 if (copy_from_user(&karg32, (char __user *)arg, sizeof(karg32)))
2778 /* Verify intended MPT adapter */
2779 iocnumX = karg32.hdr.iocnum & 0xFF;
2780 if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
2782 printk(KERN_DEBUG MYNAM "::compat_mpt_command @%d - ioc%d not found!\n",
2787 if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
2790 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "compat_mpt_command() called\n",
2792 /* Copy data to karg */
2793 karg.hdr.iocnum = karg32.hdr.iocnum;
2794 karg.hdr.port = karg32.hdr.port;
2795 karg.timeout = karg32.timeout;
2796 karg.maxReplyBytes = karg32.maxReplyBytes;
2798 karg.dataInSize = karg32.dataInSize;
2799 karg.dataOutSize = karg32.dataOutSize;
2800 karg.maxSenseBytes = karg32.maxSenseBytes;
2801 karg.dataSgeOffset = karg32.dataSgeOffset;
2803 karg.replyFrameBufPtr = (char __user *)(unsigned long)karg32.replyFrameBufPtr;
2804 karg.dataInBufPtr = (char __user *)(unsigned long)karg32.dataInBufPtr;
2805 karg.dataOutBufPtr = (char __user *)(unsigned long)karg32.dataOutBufPtr;
2806 karg.senseDataPtr = (char __user *)(unsigned long)karg32.senseDataPtr;
2808 /* Pass new structure to do_mpt_command
2810 ret = mptctl_do_mpt_command (karg, &uarg->MF);
2812 mutex_unlock(&iocp->ioctl->ioctl_mutex);
2817 static long compat_mpctl_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2827 case MPTEVENTENABLE:
2828 case MPTEVENTREPORT:
2830 case HP_GETHOSTINFO:
2831 case HP_GETTARGETINFO:
2833 ret = __mptctl_ioctl(f, cmd, arg);
2836 ret = compat_mpt_command(f, cmd, arg);
2838 case MPTFWDOWNLOAD32:
2839 ret = compat_mptfwxfer_ioctl(f, cmd, arg);
2852 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2854 * mptctl_probe - Installs ioctl devices per bus.
2855 * @pdev: Pointer to pci_dev structure
2857 * Returns 0 for success, non-zero for failure.
2862 mptctl_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2865 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
2868 * Allocate and inite a MPT_IOCTL structure
2870 mem = kzalloc(sizeof(MPT_IOCTL), GFP_KERNEL);
2872 mptctl_remove(pdev);
2877 ioc->ioctl->ioc = ioc;
2878 mutex_init(&ioc->ioctl->ioctl_mutex);
2882 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2884 * mptctl_remove - Removed ioctl devices
2885 * @pdev: Pointer to pci_dev structure
2890 mptctl_remove(struct pci_dev *pdev)
2892 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
2894 kfree ( ioc->ioctl );
2897 static struct mpt_pci_driver mptctl_driver = {
2898 .probe = mptctl_probe,
2899 .remove = mptctl_remove,
2902 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2903 static int __init mptctl_init(void)
2908 show_mptmod_ver(my_NAME, my_VERSION);
2910 mpt_device_driver_register(&mptctl_driver, MPTCTL_DRIVER);
2912 /* Register this device */
2913 err = misc_register(&mptctl_miscdev);
2915 printk(KERN_ERR MYNAM ": Can't register misc device [minor=%d].\n", MPT_MINOR);
2918 printk(KERN_INFO MYNAM ": Registered with Fusion MPT base driver\n");
2919 printk(KERN_INFO MYNAM ": /dev/%s @ (major,minor=%d,%d)\n",
2920 mptctl_miscdev.name, MISC_MAJOR, mptctl_miscdev.minor);
2923 * Install our handler
2926 mptctl_id = mpt_register(mptctl_reply, MPTCTL_DRIVER);
2927 if (!mptctl_id || mptctl_id >= MPT_MAX_PROTOCOL_DRIVERS) {
2928 printk(KERN_ERR MYNAM ": ERROR: Failed to register with Fusion MPT base driver\n");
2929 misc_deregister(&mptctl_miscdev);
2934 mpt_reset_register(mptctl_id, mptctl_ioc_reset);
2935 mpt_event_register(mptctl_id, mptctl_event_process);
2941 mpt_device_driver_deregister(MPTCTL_DRIVER);
2946 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2947 static void mptctl_exit(void)
2949 misc_deregister(&mptctl_miscdev);
2950 printk(KERN_INFO MYNAM ": Deregistered /dev/%s @ (major,minor=%d,%d)\n",
2951 mptctl_miscdev.name, MISC_MAJOR, mptctl_miscdev.minor);
2953 /* De-register reset handler from base module */
2954 mpt_reset_deregister(mptctl_id);
2956 /* De-register callback handler from base module */
2957 mpt_deregister(mptctl_id);
2959 mpt_device_driver_deregister(MPTCTL_DRIVER);
2963 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2965 module_init(mptctl_init);
2966 module_exit(mptctl_exit);