[SCSI] mpt fusion: standardize printks and debug info
[linux-2.6/kvm.git] / drivers / message / fusion / mptctl.c
blob5d137a8b3096af4752d65ad6412d62278f16b6e4
1 /*
2 * linux/drivers/message/fusion/mptctl.c
3 * mpt Ioctl driver.
4 * For use with LSI PCI chip/adapters
5 * running LSI Fusion MPT (Message Passing Technology) firmware.
7 * Copyright (c) 1999-2007 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.
22 NO WARRANTY
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>
60 #include <asm/io.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-2007 LSI Corporation"
70 #define MODULEAUTHOR "LSI Corporation"
71 #include "mptbase.h"
72 #include "mptctl.h"
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 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
92 struct buflist {
93 u8 *kptr;
94 int len;
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 *);
118 #ifdef CONFIG_COMPAT
119 static long compat_mpctl_ioctl(struct file *f, unsigned cmd, unsigned long arg);
120 #endif
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.
180 static inline int
181 mptctl_syscall_down(MPT_ADAPTER *ioc, int nonblock)
183 int rc = 0;
185 if (nonblock) {
186 if (!mutex_trylock(&ioc->ioctl->ioctl_mutex))
187 rc = -EAGAIN;
188 } else {
189 if (mutex_lock_interruptible(&ioc->ioctl->ioctl_mutex))
190 rc = -ERESTARTSYS;
192 return rc;
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.
202 static int
203 mptctl_reply(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req, MPT_FRAME_HDR *reply)
205 char *sense_data;
206 int sz, req_index;
207 u16 iocStatus;
208 u8 cmd;
210 if (req)
211 cmd = req->u.hdr.Function;
212 else
213 return 1;
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));
217 if (ioc->ioctl) {
219 if (reply==NULL) {
221 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_reply() NULL Reply "
222 "Function=%x!\n", ioc->name, cmd));
224 ioc->ioctl->status |= MPT_IOCTL_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);
231 return 1;
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_IOCTL_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_IOCTL_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,
252 iocStatus,
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 |= MPT_IOCTL_STATUS_COMMAND_GOOD;
275 /* Copy the sense data - if present
277 if ((cmd == MPI_FUNCTION_SCSI_IO_REQUEST) &&
278 (reply->u.sreply.SCSIState &
279 MPI_SCSI_STATE_AUTOSENSE_VALID)){
280 sz = req->u.scsireq.SenseBufferLength;
281 req_index =
282 le16_to_cpu(req->u.frame.hwhdr.msgctxu.fld.req_idx);
283 sense_data =
284 ((u8 *)ioc->sense_buf_pool +
285 (req_index * MPT_SENSE_BUFFER_ALLOC));
286 memcpy(ioc->ioctl->sense, sense_data, sz);
287 ioc->ioctl->status |= MPT_IOCTL_STATUS_SENSE_VALID;
290 if (cmd == MPI_FUNCTION_SCSI_TASK_MGMT)
291 mptctl_free_tm_flags(ioc);
293 /* We are done, issue wake up
295 ioc->ioctl->wait_done = 1;
296 wake_up (&mptctl_wait);
298 return 1;
301 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
302 /* mptctl_timeout_expired
304 * Expecting an interrupt, however timed out.
307 static void mptctl_timeout_expired (MPT_IOCTL *ioctl)
309 int rc = 1;
311 dctlprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT ": Timeout Expired! Host %d\n",
312 ioctl->ioc->name, ioctl->ioc->id));
313 if (ioctl == NULL)
314 return;
316 ioctl->wait_done = 0;
317 if (ioctl->reset & MPTCTL_RESET_OK)
318 rc = mptctl_bus_reset(ioctl);
320 if (rc) {
321 /* Issue a reset for this device.
322 * The IOC is not responding.
324 dctlprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT "Calling HardReset! \n",
325 ioctl->ioc->name));
326 mpt_HardResetHandler(ioctl->ioc, CAN_SLEEP);
328 return;
332 /* mptctl_bus_reset
334 * Bus reset code.
337 static int mptctl_bus_reset(MPT_IOCTL *ioctl)
339 MPT_FRAME_HDR *mf;
340 SCSITaskMgmt_t *pScsiTm;
341 MPT_SCSI_HOST *hd;
342 int ii;
343 int retval=0;
346 ioctl->reset &= ~MPTCTL_RESET_OK;
348 if (ioctl->ioc->sh == NULL)
349 return -EPERM;
351 hd = (MPT_SCSI_HOST *) ioctl->ioc->sh->hostdata;
352 if (hd == NULL)
353 return -EPERM;
355 /* Single threading ....
357 if (mptctl_set_tm_flags(hd) != 0)
358 return -EPERM;
360 /* Send request
362 if ((mf = mpt_get_msg_frame(mptctl_id, ioctl->ioc)) == NULL) {
363 dtmprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT "IssueTaskMgmt, no msg frames!!\n",
364 ioctl->ioc->name));
366 mptctl_free_tm_flags(ioctl->ioc);
367 return -ENOMEM;
370 dtmprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT "IssueTaskMgmt request @ %p\n",
371 ioctl->ioc->name, mf));
373 pScsiTm = (SCSITaskMgmt_t *) mf;
374 pScsiTm->TargetID = ioctl->id;
375 pScsiTm->Bus = hd->port; /* 0 */
376 pScsiTm->ChainOffset = 0;
377 pScsiTm->Function = MPI_FUNCTION_SCSI_TASK_MGMT;
378 pScsiTm->Reserved = 0;
379 pScsiTm->TaskType = MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS;
380 pScsiTm->Reserved1 = 0;
381 pScsiTm->MsgFlags = MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION;
383 for (ii= 0; ii < 8; ii++)
384 pScsiTm->LUN[ii] = 0;
386 for (ii=0; ii < 7; ii++)
387 pScsiTm->Reserved2[ii] = 0;
389 pScsiTm->TaskMsgContext = 0;
390 dtmprintk(ioctl->ioc, printk(MYIOC_s_DEBUG_FMT
391 "mptctl_bus_reset: issued.\n", ioctl->ioc->name));
393 DBG_DUMP_TM_REQUEST_FRAME(ioctl->ioc, (u32 *)mf);
395 ioctl->wait_done=0;
397 if ((ioctl->ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q) &&
398 (ioctl->ioc->facts.MsgVersion >= MPI_VERSION_01_05))
399 mpt_put_msg_frame_hi_pri(mptctl_id, ioctl->ioc, mf);
400 else {
401 retval = mpt_send_handshake_request(mptctl_id, ioctl->ioc,
402 sizeof(SCSITaskMgmt_t), (u32*)pScsiTm, CAN_SLEEP);
403 if (retval != 0) {
404 dfailprintk(ioctl->ioc, printk(MYIOC_s_ERR_FMT "_send_handshake FAILED!"
405 " (hd %p, ioc %p, mf %p) \n", hd->ioc->name, hd,
406 hd->ioc, mf));
407 goto mptctl_bus_reset_done;
411 /* Now wait for the command to complete */
412 ii = wait_event_timeout(mptctl_wait,
413 ioctl->wait_done == 1,
414 HZ*5 /* 5 second timeout */);
416 if(ii <=0 && (ioctl->wait_done != 1 )) {
417 mpt_free_msg_frame(hd->ioc, mf);
418 ioctl->wait_done = 0;
419 retval = -1; /* return failure */
422 mptctl_bus_reset_done:
424 mptctl_free_tm_flags(ioctl->ioc);
425 return retval;
428 static int
429 mptctl_set_tm_flags(MPT_SCSI_HOST *hd) {
430 unsigned long flags;
432 spin_lock_irqsave(&hd->ioc->FreeQlock, flags);
434 if (hd->tmState == TM_STATE_NONE) {
435 hd->tmState = TM_STATE_IN_PROGRESS;
436 hd->tmPending = 1;
437 spin_unlock_irqrestore(&hd->ioc->FreeQlock, flags);
438 } else {
439 spin_unlock_irqrestore(&hd->ioc->FreeQlock, flags);
440 return -EBUSY;
443 return 0;
446 static void
447 mptctl_free_tm_flags(MPT_ADAPTER *ioc)
449 MPT_SCSI_HOST * hd;
450 unsigned long flags;
452 hd = (MPT_SCSI_HOST *) ioc->sh->hostdata;
453 if (hd == NULL)
454 return;
456 spin_lock_irqsave(&ioc->FreeQlock, flags);
458 hd->tmState = TM_STATE_NONE;
459 hd->tmPending = 0;
460 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
462 return;
465 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
466 /* mptctl_ioc_reset
468 * Clean-up functionality. Used only if there has been a
469 * reload of the FW due.
472 static int
473 mptctl_ioc_reset(MPT_ADAPTER *ioc, int reset_phase)
475 MPT_IOCTL *ioctl = ioc->ioctl;
476 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "IOC %s_reset routed to IOCTL driver!\n", ioc->name,
477 reset_phase==MPT_IOC_SETUP_RESET ? "setup" : (
478 reset_phase==MPT_IOC_PRE_RESET ? "pre" : "post")));
480 if(ioctl == NULL)
481 return 1;
483 switch(reset_phase) {
484 case MPT_IOC_SETUP_RESET:
485 ioctl->status |= MPT_IOCTL_STATUS_DID_IOCRESET;
486 break;
487 case MPT_IOC_POST_RESET:
488 ioctl->status &= ~MPT_IOCTL_STATUS_DID_IOCRESET;
489 break;
490 case MPT_IOC_PRE_RESET:
491 default:
492 break;
495 return 1;
498 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
499 /* ASYNC Event Notification Support */
500 static int
501 mptctl_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply)
503 u8 event;
505 event = le32_to_cpu(pEvReply->Event) & 0xFF;
507 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "%s() called\n",
508 ioc->name, __FUNCTION__));
509 if(async_queue == NULL)
510 return 1;
512 /* Raise SIGIO for persistent events.
513 * TODO - this define is not in MPI spec yet,
514 * but they plan to set it to 0x21
516 if (event == 0x21 ) {
517 ioc->aen_event_read_flag=1;
518 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "Raised SIGIO to application\n",
519 ioc->name));
520 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
521 "Raised SIGIO to application\n", ioc->name));
522 kill_fasync(&async_queue, SIGIO, POLL_IN);
523 return 1;
526 /* This flag is set after SIGIO was raised, and
527 * remains set until the application has read
528 * the event log via ioctl=MPTEVENTREPORT
530 if(ioc->aen_event_read_flag)
531 return 1;
533 /* Signal only for the events that are
534 * requested for by the application
536 if (ioc->events && (ioc->eventTypes & ( 1 << event))) {
537 ioc->aen_event_read_flag=1;
538 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT
539 "Raised SIGIO to application\n", ioc->name));
540 devtverboseprintk(ioc, printk(MYIOC_s_DEBUG_FMT
541 "Raised SIGIO to application\n", ioc->name));
542 kill_fasync(&async_queue, SIGIO, POLL_IN);
544 return 1;
547 static int
548 mptctl_fasync(int fd, struct file *filep, int mode)
550 MPT_ADAPTER *ioc;
552 list_for_each_entry(ioc, &ioc_list, list)
553 ioc->aen_event_read_flag=0;
555 return fasync_helper(fd, filep, mode, &async_queue);
558 static int
559 mptctl_release(struct inode *inode, struct file *filep)
561 return fasync_helper(-1, filep, 0, &async_queue);
564 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
566 * MPT ioctl handler
567 * cmd - specify the particular IOCTL command to be issued
568 * arg - data specific to the command. Must not be null.
570 static long
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;
575 int iocnum;
576 unsigned iocnumX;
577 int nonblock = (file->f_flags & O_NONBLOCK);
578 int ret;
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);
585 return -EFAULT;
587 ret = -ENXIO; /* (-6) No such device or address */
589 /* Verify intended MPT adapter - set iocnum and the adapter
590 * pointer (iocp)
592 iocnumX = khdr.iocnum & 0xFF;
593 if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
594 (iocp == NULL)) {
595 printk(KERN_DEBUG MYNAM "%s::mptctl_ioctl() @%d - ioc%d not found!\n",
596 __FILE__, __LINE__, iocnumX);
597 return -ENODEV;
600 if (!iocp->active) {
601 printk(KERN_DEBUG MYNAM "%s::mptctl_ioctl() @%d - Controller disabled.\n",
602 __FILE__, __LINE__);
603 return -EFAULT;
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)
631 return ret;
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);
643 else
644 ret = -EINVAL;
646 mutex_unlock(&iocp->ioctl->ioctl_mutex);
648 return ret;
651 static long
652 mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
654 long ret;
655 lock_kernel();
656 ret = __mptctl_ioctl(file, cmd, arg);
657 unlock_kernel();
658 return ret;
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;
665 MPT_ADAPTER *iocp;
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);
671 return -EFAULT;
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",
681 iocp->name));
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__);
686 return -1;
689 return 0;
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.
698 * Outputs: None.
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
709 static int
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);
719 return -EFAULT;
722 return mptctl_do_fw_download(kfwdl.iocnum, kfwdl.bufp, kfwdl.fwlen);
725 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
727 * FW Download engine.
728 * Outputs: None.
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
739 static int
740 mptctl_do_fw_download(int ioc, char __user *ufwbuf, size_t fwlen)
742 FWDownload_t *dlmsg;
743 MPT_FRAME_HDR *mf;
744 MPT_ADAPTER *iocp;
745 FWDownloadTCSGE_t *ptsge;
746 MptSge_t *sgl, *sgIn;
747 char *sgOut;
748 struct buflist *buflist;
749 struct buflist *bl;
750 dma_addr_t sgl_dma;
751 int ret;
752 int numfrags = 0;
753 int maxfrags;
754 int n = 0;
755 u32 sgdir;
756 u32 nib;
757 int fw_bytes_copied = 0;
758 int i;
759 int sge_offset = 0;
760 u16 iocstat;
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",
765 ioc);
766 return -ENODEV; /* (-6) No such device or address */
767 } else {
769 /* Valid device. Get a message frame and construct the FW download message.
771 if ((mf = mpt_get_msg_frame(mptctl_id, iocp)) == NULL)
772 return -EAGAIN;
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",
782 iocp->name, ioc));
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;
792 dlmsg->Reserved = 0;
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;
798 else
799 dlmsg->MsgFlags = 0;
802 /* Set up the Transaction SGE.
804 ptsge->Reserved = 0;
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);
812 /* Add the SGL
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)
832 return -ENOMEM;
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
840 * Request maxfrags
841 * 128 12
842 * 96 8
843 * 64 4
845 maxfrags = (iocp->req_sz - sizeof(MPIHeader_t) - sizeof(FWDownloadTCSGE_t))
846 / (sizeof(dma_addr_t) + sizeof(u32));
847 if (numfrags > maxfrags) {
848 ret = -EMLINK;
849 goto fwdl_out;
852 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "DbG: sgl buffer = %p, sgfrags = %d\n",
853 iocp->name, sgl, numfrags));
856 * Parse SG list, copying sgl itself,
857 * plus f/w image hunks from user space as we go...
859 ret = -EFAULT;
860 sgIn = sgl;
861 bl = buflist;
862 for (i=0; i < numfrags; i++) {
864 /* Get the SGE type: 0 - TCSGE, 3 - Chain, 1 - Simple SGE
865 * Skip everything but Simple. If simple, copy from
866 * user space into kernel space.
867 * Note: we should not have anything but Simple as
868 * Chain SGE are illegal.
870 nib = (sgIn->FlagsLength & 0x30000000) >> 28;
871 if (nib == 0 || nib == 3) {
873 } else if (sgIn->Address) {
874 mpt_add_sge(sgOut, sgIn->FlagsLength, sgIn->Address);
875 n++;
876 if (copy_from_user(bl->kptr, ufwbuf+fw_bytes_copied, bl->len)) {
877 printk(MYIOC_s_ERR_FMT "%s@%d::_ioctl_fwdl - "
878 "Unable to copy f/w buffer hunk#%d @ %p\n",
879 iocp->name, __FILE__, __LINE__, n, ufwbuf);
880 goto fwdl_out;
882 fw_bytes_copied += bl->len;
884 sgIn++;
885 bl++;
886 sgOut += (sizeof(dma_addr_t) + sizeof(u32));
889 DBG_DUMP_FW_DOWNLOAD(iocp, (u32 *)mf, numfrags);
892 * Finally, perform firmware download.
894 ReplyMsg = NULL;
895 mpt_put_msg_frame(mptctl_id, iocp, mf);
897 /* Now wait for the command to complete */
898 ret = wait_event_timeout(mptctl_wait,
899 iocp->ioctl->wait_done == 1,
900 HZ*60);
902 if(ret <=0 && (iocp->ioctl->wait_done != 1 )) {
903 /* Now we need to reset the board */
904 mptctl_timeout_expired(iocp->ioctl);
905 ret = -ENODATA;
906 goto fwdl_out;
909 if (sgl)
910 kfree_sgl(sgl, sgl_dma, buflist, iocp);
912 ReplyMsg = (pFWDownloadReply_t)iocp->ioctl->ReplyFrame;
913 iocstat = le16_to_cpu(ReplyMsg->IOCStatus) & MPI_IOCSTATUS_MASK;
914 if (iocstat == MPI_IOCSTATUS_SUCCESS) {
915 printk(MYIOC_s_INFO_FMT "F/W update successfull!\n", iocp->name);
916 return 0;
917 } else if (iocstat == MPI_IOCSTATUS_INVALID_FUNCTION) {
918 printk(MYIOC_s_WARN_FMT "Hmmm... F/W download not supported!?!\n",
919 iocp->name);
920 printk(MYIOC_s_WARN_FMT "(time to go bang on somebodies door)\n",
921 iocp->name);
922 return -EBADRQC;
923 } else if (iocstat == MPI_IOCSTATUS_BUSY) {
924 printk(MYIOC_s_WARN_FMT "IOC_BUSY!\n", iocp->name);
925 printk(MYIOC_s_WARN_FMT "(try again later?)\n", iocp->name);
926 return -EBUSY;
927 } else {
928 printk(MYIOC_s_WARN_FMT "ioctl_fwdl() returned [bad] status = %04xh\n",
929 iocp->name, iocstat);
930 printk(MYIOC_s_WARN_FMT "(bad VooDoo)\n", iocp->name);
931 return -ENOMSG;
933 return 0;
935 fwdl_out:
936 kfree_sgl(sgl, sgl_dma, buflist, iocp);
937 return ret;
940 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
942 * SGE Allocation routine
944 * Inputs: bytes - number of bytes to be transferred
945 * sgdir - data direction
946 * sge_offset - offset (in bytes) from the start of the request
947 * frame to the first SGE
948 * ioc - pointer to the mptadapter
949 * Outputs: frags - number of scatter gather elements
950 * blp - point to the buflist pointer
951 * sglbuf_dma - pointer to the (dma) sgl
952 * Returns: Null if failes
953 * pointer to the (virtual) sgl if successful.
955 static MptSge_t *
956 kbuf_alloc_2_sgl(int bytes, u32 sgdir, int sge_offset, int *frags,
957 struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc)
959 MptSge_t *sglbuf = NULL; /* pointer to array of SGE */
960 /* and chain buffers */
961 struct buflist *buflist = NULL; /* kernel routine */
962 MptSge_t *sgl;
963 int numfrags = 0;
964 int fragcnt = 0;
965 int alloc_sz = min(bytes,MAX_KMALLOC_SZ); // avoid kernel warning msg!
966 int bytes_allocd = 0;
967 int this_alloc;
968 dma_addr_t pa; // phys addr
969 int i, buflist_ent;
970 int sg_spill = MAX_FRAGS_SPILL1;
971 int dir;
972 /* initialization */
973 *frags = 0;
974 *blp = NULL;
976 /* Allocate and initialize an array of kernel
977 * structures for the SG elements.
979 i = MAX_SGL_BYTES / 8;
980 buflist = kzalloc(i, GFP_USER);
981 if (!buflist)
982 return NULL;
983 buflist_ent = 0;
985 /* Allocate a single block of memory to store the sg elements and
986 * the chain buffers. The calling routine is responsible for
987 * copying the data in this array into the correct place in the
988 * request and chain buffers.
990 sglbuf = pci_alloc_consistent(ioc->pcidev, MAX_SGL_BYTES, sglbuf_dma);
991 if (sglbuf == NULL)
992 goto free_and_fail;
994 if (sgdir & 0x04000000)
995 dir = PCI_DMA_TODEVICE;
996 else
997 dir = PCI_DMA_FROMDEVICE;
999 /* At start:
1000 * sgl = sglbuf = point to beginning of sg buffer
1001 * buflist_ent = 0 = first kernel structure
1002 * sg_spill = number of SGE that can be written before the first
1003 * chain element.
1006 sgl = sglbuf;
1007 sg_spill = ((ioc->req_sz - sge_offset)/(sizeof(dma_addr_t) + sizeof(u32))) - 1;
1008 while (bytes_allocd < bytes) {
1009 this_alloc = min(alloc_sz, bytes-bytes_allocd);
1010 buflist[buflist_ent].len = this_alloc;
1011 buflist[buflist_ent].kptr = pci_alloc_consistent(ioc->pcidev,
1012 this_alloc,
1013 &pa);
1014 if (buflist[buflist_ent].kptr == NULL) {
1015 alloc_sz = alloc_sz / 2;
1016 if (alloc_sz == 0) {
1017 printk(MYIOC_s_WARN_FMT "-SG: No can do - "
1018 "not enough memory! :-(\n", ioc->name);
1019 printk(MYIOC_s_WARN_FMT "-SG: (freeing %d frags)\n",
1020 ioc->name, numfrags);
1021 goto free_and_fail;
1023 continue;
1024 } else {
1025 dma_addr_t dma_addr;
1027 bytes_allocd += this_alloc;
1028 sgl->FlagsLength = (0x10000000|MPT_SGE_FLAGS_ADDRESSING|sgdir|this_alloc);
1029 dma_addr = pci_map_single(ioc->pcidev, buflist[buflist_ent].kptr, this_alloc, dir);
1030 sgl->Address = dma_addr;
1032 fragcnt++;
1033 numfrags++;
1034 sgl++;
1035 buflist_ent++;
1038 if (bytes_allocd >= bytes)
1039 break;
1041 /* Need to chain? */
1042 if (fragcnt == sg_spill) {
1043 printk(MYIOC_s_WARN_FMT
1044 "-SG: No can do - " "Chain required! :-(\n", ioc->name);
1045 printk(MYIOC_s_WARN_FMT "(freeing %d frags)\n", ioc->name, numfrags);
1046 goto free_and_fail;
1049 /* overflow check... */
1050 if (numfrags*8 > MAX_SGL_BYTES){
1051 /* GRRRRR... */
1052 printk(MYIOC_s_WARN_FMT "-SG: No can do - "
1053 "too many SG frags! :-(\n", ioc->name);
1054 printk(MYIOC_s_WARN_FMT "-SG: (freeing %d frags)\n",
1055 ioc->name, numfrags);
1056 goto free_and_fail;
1060 /* Last sge fixup: set LE+eol+eob bits */
1061 sgl[-1].FlagsLength |= 0xC1000000;
1063 *frags = numfrags;
1064 *blp = buflist;
1066 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: kbuf_alloc_2_sgl() - "
1067 "%d SG frags generated!\n", ioc->name, numfrags));
1069 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: kbuf_alloc_2_sgl() - "
1070 "last (big) alloc_sz=%d\n", ioc->name, alloc_sz));
1072 return sglbuf;
1074 free_and_fail:
1075 if (sglbuf != NULL) {
1076 for (i = 0; i < numfrags; i++) {
1077 dma_addr_t dma_addr;
1078 u8 *kptr;
1079 int len;
1081 if ((sglbuf[i].FlagsLength >> 24) == 0x30)
1082 continue;
1084 dma_addr = sglbuf[i].Address;
1085 kptr = buflist[i].kptr;
1086 len = buflist[i].len;
1088 pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
1090 pci_free_consistent(ioc->pcidev, MAX_SGL_BYTES, sglbuf, *sglbuf_dma);
1092 kfree(buflist);
1093 return NULL;
1096 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1098 * Routine to free the SGL elements.
1100 static void
1101 kfree_sgl(MptSge_t *sgl, dma_addr_t sgl_dma, struct buflist *buflist, MPT_ADAPTER *ioc)
1103 MptSge_t *sg = sgl;
1104 struct buflist *bl = buflist;
1105 u32 nib;
1106 int dir;
1107 int n = 0;
1109 if (sg->FlagsLength & 0x04000000)
1110 dir = PCI_DMA_TODEVICE;
1111 else
1112 dir = PCI_DMA_FROMDEVICE;
1114 nib = (sg->FlagsLength & 0xF0000000) >> 28;
1115 while (! (nib & 0x4)) { /* eob */
1116 /* skip ignore/chain. */
1117 if (nib == 0 || nib == 3) {
1119 } else if (sg->Address) {
1120 dma_addr_t dma_addr;
1121 void *kptr;
1122 int len;
1124 dma_addr = sg->Address;
1125 kptr = bl->kptr;
1126 len = bl->len;
1127 pci_unmap_single(ioc->pcidev, dma_addr, len, dir);
1128 pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
1129 n++;
1131 sg++;
1132 bl++;
1133 nib = (le32_to_cpu(sg->FlagsLength) & 0xF0000000) >> 28;
1136 /* we're at eob! */
1137 if (sg->Address) {
1138 dma_addr_t dma_addr;
1139 void *kptr;
1140 int len;
1142 dma_addr = sg->Address;
1143 kptr = bl->kptr;
1144 len = bl->len;
1145 pci_unmap_single(ioc->pcidev, dma_addr, len, dir);
1146 pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
1147 n++;
1150 pci_free_consistent(ioc->pcidev, MAX_SGL_BYTES, sgl, sgl_dma);
1151 kfree(buflist);
1152 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "-SG: Free'd 1 SGL buf + %d kbufs!\n",
1153 ioc->name, n));
1156 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1158 * mptctl_getiocinfo - Query the host adapter for IOC information.
1159 * @arg: User space argument
1161 * Outputs: None.
1162 * Return: 0 if successful
1163 * -EFAULT if data unavailable
1164 * -ENODEV if no such device/adapter
1166 static int
1167 mptctl_getiocinfo (unsigned long arg, unsigned int data_size)
1169 struct mpt_ioctl_iocinfo __user *uarg = (void __user *) arg;
1170 struct mpt_ioctl_iocinfo *karg;
1171 MPT_ADAPTER *ioc;
1172 struct pci_dev *pdev;
1173 int iocnum;
1174 unsigned int port;
1175 int cim_rev;
1176 u8 revision;
1177 struct scsi_device *sdev;
1178 VirtDevice *vdev;
1180 /* Add of PCI INFO results in unaligned access for
1181 * IA64 and Sparc. Reset long to int. Return no PCI
1182 * data for obsolete format.
1184 if (data_size == sizeof(struct mpt_ioctl_iocinfo_rev0))
1185 cim_rev = 0;
1186 else if (data_size == sizeof(struct mpt_ioctl_iocinfo_rev1))
1187 cim_rev = 1;
1188 else if (data_size == sizeof(struct mpt_ioctl_iocinfo))
1189 cim_rev = 2;
1190 else if (data_size == (sizeof(struct mpt_ioctl_iocinfo_rev0)+12))
1191 cim_rev = 0; /* obsolete */
1192 else
1193 return -EFAULT;
1195 karg = kmalloc(data_size, GFP_KERNEL);
1196 if (karg == NULL) {
1197 printk(KERN_ERR MYNAM "%s::mpt_ioctl_iocinfo() @%d - no memory available!\n",
1198 __FILE__, __LINE__);
1199 return -ENOMEM;
1202 if (copy_from_user(karg, uarg, data_size)) {
1203 printk(KERN_ERR MYNAM "%s@%d::mptctl_getiocinfo - "
1204 "Unable to read in mpt_ioctl_iocinfo struct @ %p\n",
1205 __FILE__, __LINE__, uarg);
1206 kfree(karg);
1207 return -EFAULT;
1210 if (((iocnum = mpt_verify_adapter(karg->hdr.iocnum, &ioc)) < 0) ||
1211 (ioc == NULL)) {
1212 printk(KERN_DEBUG MYNAM "%s::mptctl_getiocinfo() @%d - ioc%d not found!\n",
1213 __FILE__, __LINE__, iocnum);
1214 kfree(karg);
1215 return -ENODEV;
1218 /* Verify the data transfer size is correct. */
1219 if (karg->hdr.maxDataSize != data_size) {
1220 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_getiocinfo - "
1221 "Structure size mismatch. Command not completed.\n",
1222 ioc->name, __FILE__, __LINE__);
1223 kfree(karg);
1224 return -EFAULT;
1227 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_getiocinfo called.\n",
1228 ioc->name));
1230 /* Fill in the data and return the structure to the calling
1231 * program
1233 if (ioc->bus_type == SAS)
1234 karg->adapterType = MPT_IOCTL_INTERFACE_SAS;
1235 else if (ioc->bus_type == FC)
1236 karg->adapterType = MPT_IOCTL_INTERFACE_FC;
1237 else
1238 karg->adapterType = MPT_IOCTL_INTERFACE_SCSI;
1240 if (karg->hdr.port > 1)
1241 return -EINVAL;
1242 port = karg->hdr.port;
1244 karg->port = port;
1245 pdev = (struct pci_dev *) ioc->pcidev;
1247 karg->pciId = pdev->device;
1248 pci_read_config_byte(pdev, PCI_CLASS_REVISION, &revision);
1249 karg->hwRev = revision;
1250 karg->subSystemDevice = pdev->subsystem_device;
1251 karg->subSystemVendor = pdev->subsystem_vendor;
1253 if (cim_rev == 1) {
1254 /* Get the PCI bus, device, and function numbers for the IOC
1256 karg->pciInfo.u.bits.busNumber = pdev->bus->number;
1257 karg->pciInfo.u.bits.deviceNumber = PCI_SLOT( pdev->devfn );
1258 karg->pciInfo.u.bits.functionNumber = PCI_FUNC( pdev->devfn );
1259 } else if (cim_rev == 2) {
1260 /* Get the PCI bus, device, function and segment ID numbers
1261 for the IOC */
1262 karg->pciInfo.u.bits.busNumber = pdev->bus->number;
1263 karg->pciInfo.u.bits.deviceNumber = PCI_SLOT( pdev->devfn );
1264 karg->pciInfo.u.bits.functionNumber = PCI_FUNC( pdev->devfn );
1265 karg->pciInfo.segmentID = pci_domain_nr(pdev->bus);
1268 /* Get number of devices
1270 karg->numDevices = 0;
1271 if (ioc->sh) {
1272 shost_for_each_device(sdev, ioc->sh) {
1273 vdev = sdev->hostdata;
1274 if (vdev->vtarget->tflags &
1275 MPT_TARGET_FLAGS_RAID_COMPONENT)
1276 continue;
1277 karg->numDevices++;
1281 /* Set the BIOS and FW Version
1283 karg->FWVersion = ioc->facts.FWVersion.Word;
1284 karg->BIOSVersion = ioc->biosVersion;
1286 /* Set the Version Strings.
1288 strncpy (karg->driverVersion, MPT_LINUX_PACKAGE_NAME, MPT_IOCTL_VERSION_LENGTH);
1289 karg->driverVersion[MPT_IOCTL_VERSION_LENGTH-1]='\0';
1291 karg->busChangeEvent = 0;
1292 karg->hostId = ioc->pfacts[port].PortSCSIID;
1293 karg->rsvd[0] = karg->rsvd[1] = 0;
1295 /* Copy the data from kernel memory to user memory
1297 if (copy_to_user((char __user *)arg, karg, data_size)) {
1298 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_getiocinfo - "
1299 "Unable to write out mpt_ioctl_iocinfo struct @ %p\n",
1300 ioc->name, __FILE__, __LINE__, uarg);
1301 kfree(karg);
1302 return -EFAULT;
1305 kfree(karg);
1306 return 0;
1309 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1311 * mptctl_gettargetinfo - Query the host adapter for target information.
1312 * @arg: User space argument
1314 * Outputs: None.
1315 * Return: 0 if successful
1316 * -EFAULT if data unavailable
1317 * -ENODEV if no such device/adapter
1319 static int
1320 mptctl_gettargetinfo (unsigned long arg)
1322 struct mpt_ioctl_targetinfo __user *uarg = (void __user *) arg;
1323 struct mpt_ioctl_targetinfo karg;
1324 MPT_ADAPTER *ioc;
1325 VirtDevice *vdev;
1326 char *pmem;
1327 int *pdata;
1328 int iocnum;
1329 int numDevices = 0;
1330 int lun;
1331 int maxWordsLeft;
1332 int numBytes;
1333 u8 port;
1334 struct scsi_device *sdev;
1336 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_targetinfo))) {
1337 printk(KERN_ERR MYNAM "%s@%d::mptctl_gettargetinfo - "
1338 "Unable to read in mpt_ioctl_targetinfo struct @ %p\n",
1339 __FILE__, __LINE__, uarg);
1340 return -EFAULT;
1343 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1344 (ioc == NULL)) {
1345 printk(KERN_DEBUG MYNAM "%s::mptctl_gettargetinfo() @%d - ioc%d not found!\n",
1346 __FILE__, __LINE__, iocnum);
1347 return -ENODEV;
1350 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_gettargetinfo called.\n",
1351 ioc->name));
1352 /* Get the port number and set the maximum number of bytes
1353 * in the returned structure.
1354 * Ignore the port setting.
1356 numBytes = karg.hdr.maxDataSize - sizeof(mpt_ioctl_header);
1357 maxWordsLeft = numBytes/sizeof(int);
1358 port = karg.hdr.port;
1360 if (maxWordsLeft <= 0) {
1361 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo() - no memory available!\n",
1362 ioc->name, __FILE__, __LINE__);
1363 return -ENOMEM;
1366 /* Fill in the data and return the structure to the calling
1367 * program
1370 /* struct mpt_ioctl_targetinfo does not contain sufficient space
1371 * for the target structures so when the IOCTL is called, there is
1372 * not sufficient stack space for the structure. Allocate memory,
1373 * populate the memory, copy back to the user, then free memory.
1374 * targetInfo format:
1375 * bits 31-24: reserved
1376 * 23-16: LUN
1377 * 15- 8: Bus Number
1378 * 7- 0: Target ID
1380 pmem = kzalloc(numBytes, GFP_KERNEL);
1381 if (!pmem) {
1382 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo() - no memory available!\n",
1383 ioc->name, __FILE__, __LINE__);
1384 return -ENOMEM;
1386 pdata = (int *) pmem;
1388 /* Get number of devices
1390 if (ioc->sh){
1391 shost_for_each_device(sdev, ioc->sh) {
1392 if (!maxWordsLeft)
1393 continue;
1394 vdev = sdev->hostdata;
1395 if (vdev->vtarget->tflags &
1396 MPT_TARGET_FLAGS_RAID_COMPONENT)
1397 continue;
1398 lun = (vdev->vtarget->raidVolume) ? 0x80 : vdev->lun;
1399 *pdata = (((u8)lun << 16) + (vdev->vtarget->channel << 8) +
1400 (vdev->vtarget->id ));
1401 pdata++;
1402 numDevices++;
1403 --maxWordsLeft;
1406 karg.numDevices = numDevices;
1408 /* Copy part of the data from kernel memory to user memory
1410 if (copy_to_user((char __user *)arg, &karg,
1411 sizeof(struct mpt_ioctl_targetinfo))) {
1412 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo - "
1413 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
1414 ioc->name, __FILE__, __LINE__, uarg);
1415 kfree(pmem);
1416 return -EFAULT;
1419 /* Copy the remaining data from kernel memory to user memory
1421 if (copy_to_user(uarg->targetInfo, pmem, numBytes)) {
1422 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_gettargetinfo - "
1423 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
1424 ioc->name, __FILE__, __LINE__, pdata);
1425 kfree(pmem);
1426 return -EFAULT;
1429 kfree(pmem);
1431 return 0;
1434 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1435 /* MPT IOCTL Test function.
1437 * Outputs: None.
1438 * Return: 0 if successful
1439 * -EFAULT if data unavailable
1440 * -ENODEV if no such device/adapter
1442 static int
1443 mptctl_readtest (unsigned long arg)
1445 struct mpt_ioctl_test __user *uarg = (void __user *) arg;
1446 struct mpt_ioctl_test karg;
1447 MPT_ADAPTER *ioc;
1448 int iocnum;
1450 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_test))) {
1451 printk(KERN_ERR MYNAM "%s@%d::mptctl_readtest - "
1452 "Unable to read in mpt_ioctl_test struct @ %p\n",
1453 __FILE__, __LINE__, uarg);
1454 return -EFAULT;
1457 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1458 (ioc == NULL)) {
1459 printk(KERN_DEBUG MYNAM "%s::mptctl_readtest() @%d - ioc%d not found!\n",
1460 __FILE__, __LINE__, iocnum);
1461 return -ENODEV;
1464 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_readtest called.\n",
1465 ioc->name));
1466 /* Fill in the data and return the structure to the calling
1467 * program
1470 #ifdef MFCNT
1471 karg.chip_type = ioc->mfcnt;
1472 #else
1473 karg.chip_type = ioc->pcidev->device;
1474 #endif
1475 strncpy (karg.name, ioc->name, MPT_MAX_NAME);
1476 karg.name[MPT_MAX_NAME-1]='\0';
1477 strncpy (karg.product, ioc->prod_name, MPT_PRODUCT_LENGTH);
1478 karg.product[MPT_PRODUCT_LENGTH-1]='\0';
1480 /* Copy the data from kernel memory to user memory
1482 if (copy_to_user((char __user *)arg, &karg, sizeof(struct mpt_ioctl_test))) {
1483 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_readtest - "
1484 "Unable to write out mpt_ioctl_test struct @ %p\n",
1485 ioc->name, __FILE__, __LINE__, uarg);
1486 return -EFAULT;
1489 return 0;
1492 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1494 * mptctl_eventquery - Query the host adapter for the event types
1495 * that are being logged.
1496 * @arg: User space argument
1498 * Outputs: None.
1499 * Return: 0 if successful
1500 * -EFAULT if data unavailable
1501 * -ENODEV if no such device/adapter
1503 static int
1504 mptctl_eventquery (unsigned long arg)
1506 struct mpt_ioctl_eventquery __user *uarg = (void __user *) arg;
1507 struct mpt_ioctl_eventquery karg;
1508 MPT_ADAPTER *ioc;
1509 int iocnum;
1511 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventquery))) {
1512 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventquery - "
1513 "Unable to read in mpt_ioctl_eventquery struct @ %p\n",
1514 __FILE__, __LINE__, uarg);
1515 return -EFAULT;
1518 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1519 (ioc == NULL)) {
1520 printk(KERN_DEBUG MYNAM "%s::mptctl_eventquery() @%d - ioc%d not found!\n",
1521 __FILE__, __LINE__, iocnum);
1522 return -ENODEV;
1525 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventquery called.\n",
1526 ioc->name));
1527 karg.eventEntries = MPTCTL_EVENT_LOG_SIZE;
1528 karg.eventTypes = ioc->eventTypes;
1530 /* Copy the data from kernel memory to user memory
1532 if (copy_to_user((char __user *)arg, &karg, sizeof(struct mpt_ioctl_eventquery))) {
1533 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_eventquery - "
1534 "Unable to write out mpt_ioctl_eventquery struct @ %p\n",
1535 ioc->name, __FILE__, __LINE__, uarg);
1536 return -EFAULT;
1538 return 0;
1541 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1542 static int
1543 mptctl_eventenable (unsigned long arg)
1545 struct mpt_ioctl_eventenable __user *uarg = (void __user *) arg;
1546 struct mpt_ioctl_eventenable karg;
1547 MPT_ADAPTER *ioc;
1548 int iocnum;
1550 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventenable))) {
1551 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventenable - "
1552 "Unable to read in mpt_ioctl_eventenable struct @ %p\n",
1553 __FILE__, __LINE__, uarg);
1554 return -EFAULT;
1557 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1558 (ioc == NULL)) {
1559 printk(KERN_DEBUG MYNAM "%s::mptctl_eventenable() @%d - ioc%d not found!\n",
1560 __FILE__, __LINE__, iocnum);
1561 return -ENODEV;
1564 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventenable called.\n",
1565 ioc->name));
1566 if (ioc->events == NULL) {
1567 /* Have not yet allocated memory - do so now.
1569 int sz = MPTCTL_EVENT_LOG_SIZE * sizeof(MPT_IOCTL_EVENTS);
1570 ioc->events = kzalloc(sz, GFP_KERNEL);
1571 if (!ioc->events) {
1572 printk(MYIOC_s_ERR_FMT
1573 ": ERROR - Insufficient memory to add adapter!\n",
1574 ioc->name);
1575 return -ENOMEM;
1577 ioc->alloc_total += sz;
1579 ioc->eventContext = 0;
1582 /* Update the IOC event logging flag.
1584 ioc->eventTypes = karg.eventTypes;
1586 return 0;
1589 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1590 static int
1591 mptctl_eventreport (unsigned long arg)
1593 struct mpt_ioctl_eventreport __user *uarg = (void __user *) arg;
1594 struct mpt_ioctl_eventreport karg;
1595 MPT_ADAPTER *ioc;
1596 int iocnum;
1597 int numBytes, maxEvents, max;
1599 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventreport))) {
1600 printk(KERN_ERR MYNAM "%s@%d::mptctl_eventreport - "
1601 "Unable to read in mpt_ioctl_eventreport struct @ %p\n",
1602 __FILE__, __LINE__, uarg);
1603 return -EFAULT;
1606 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1607 (ioc == NULL)) {
1608 printk(KERN_DEBUG MYNAM "%s::mptctl_eventreport() @%d - ioc%d not found!\n",
1609 __FILE__, __LINE__, iocnum);
1610 return -ENODEV;
1612 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_eventreport called.\n",
1613 ioc->name));
1615 numBytes = karg.hdr.maxDataSize - sizeof(mpt_ioctl_header);
1616 maxEvents = numBytes/sizeof(MPT_IOCTL_EVENTS);
1619 max = MPTCTL_EVENT_LOG_SIZE < maxEvents ? MPTCTL_EVENT_LOG_SIZE : maxEvents;
1621 /* If fewer than 1 event is requested, there must have
1622 * been some type of error.
1624 if ((max < 1) || !ioc->events)
1625 return -ENODATA;
1627 /* reset this flag so SIGIO can restart */
1628 ioc->aen_event_read_flag=0;
1630 /* Copy the data from kernel memory to user memory
1632 numBytes = max * sizeof(MPT_IOCTL_EVENTS);
1633 if (copy_to_user(uarg->eventData, ioc->events, numBytes)) {
1634 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_eventreport - "
1635 "Unable to write out mpt_ioctl_eventreport struct @ %p\n",
1636 ioc->name, __FILE__, __LINE__, ioc->events);
1637 return -EFAULT;
1640 return 0;
1643 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1644 static int
1645 mptctl_replace_fw (unsigned long arg)
1647 struct mpt_ioctl_replace_fw __user *uarg = (void __user *) arg;
1648 struct mpt_ioctl_replace_fw karg;
1649 MPT_ADAPTER *ioc;
1650 int iocnum;
1651 int newFwSize;
1653 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_replace_fw))) {
1654 printk(KERN_ERR MYNAM "%s@%d::mptctl_replace_fw - "
1655 "Unable to read in mpt_ioctl_replace_fw struct @ %p\n",
1656 __FILE__, __LINE__, uarg);
1657 return -EFAULT;
1660 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1661 (ioc == NULL)) {
1662 printk(KERN_DEBUG MYNAM "%s::mptctl_replace_fw() @%d - ioc%d not found!\n",
1663 __FILE__, __LINE__, iocnum);
1664 return -ENODEV;
1667 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_replace_fw called.\n",
1668 ioc->name));
1669 /* If caching FW, Free the old FW image
1671 if (ioc->cached_fw == NULL)
1672 return 0;
1674 mpt_free_fw_memory(ioc);
1676 /* Allocate memory for the new FW image
1678 newFwSize = karg.newImageSize;
1680 if (newFwSize & 0x01)
1681 newFwSize += 1;
1682 if (newFwSize & 0x02)
1683 newFwSize += 2;
1685 mpt_alloc_fw_memory(ioc, newFwSize);
1686 if (ioc->cached_fw == NULL)
1687 return -ENOMEM;
1689 /* Copy the data from user memory to kernel space
1691 if (copy_from_user(ioc->cached_fw, uarg->newImage, newFwSize)) {
1692 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_replace_fw - "
1693 "Unable to read in mpt_ioctl_replace_fw image "
1694 "@ %p\n", ioc->name, __FILE__, __LINE__, uarg);
1695 mpt_free_fw_memory(ioc);
1696 return -EFAULT;
1699 /* Update IOCFactsReply
1701 ioc->facts.FWImageSize = newFwSize;
1702 return 0;
1705 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1706 /* MPT IOCTL MPTCOMMAND function.
1707 * Cast the arg into the mpt_ioctl_mpt_command structure.
1709 * Outputs: None.
1710 * Return: 0 if successful
1711 * -EBUSY if previous command timout and IOC reset is not complete.
1712 * -EFAULT if data unavailable
1713 * -ENODEV if no such device/adapter
1714 * -ETIME if timer expires
1715 * -ENOMEM if memory allocation error
1717 static int
1718 mptctl_mpt_command (unsigned long arg)
1720 struct mpt_ioctl_command __user *uarg = (void __user *) arg;
1721 struct mpt_ioctl_command karg;
1722 MPT_ADAPTER *ioc;
1723 int iocnum;
1724 int rc;
1727 if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_command))) {
1728 printk(KERN_ERR MYNAM "%s@%d::mptctl_mpt_command - "
1729 "Unable to read in mpt_ioctl_command struct @ %p\n",
1730 __FILE__, __LINE__, uarg);
1731 return -EFAULT;
1734 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1735 (ioc == NULL)) {
1736 printk(KERN_DEBUG MYNAM "%s::mptctl_mpt_command() @%d - ioc%d not found!\n",
1737 __FILE__, __LINE__, iocnum);
1738 return -ENODEV;
1741 rc = mptctl_do_mpt_command (karg, &uarg->MF);
1743 return rc;
1746 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1747 /* Worker routine for the IOCTL MPTCOMMAND and MPTCOMMAND32 (sparc) commands.
1749 * Outputs: None.
1750 * Return: 0 if successful
1751 * -EBUSY if previous command timout and IOC reset is not complete.
1752 * -EFAULT if data unavailable
1753 * -ENODEV if no such device/adapter
1754 * -ETIME if timer expires
1755 * -ENOMEM if memory allocation error
1756 * -EPERM if SCSI I/O and target is untagged
1758 static int
1759 mptctl_do_mpt_command (struct mpt_ioctl_command karg, void __user *mfPtr)
1761 MPT_ADAPTER *ioc;
1762 MPT_FRAME_HDR *mf = NULL;
1763 MPIHeader_t *hdr;
1764 char *psge;
1765 struct buflist bufIn; /* data In buffer */
1766 struct buflist bufOut; /* data Out buffer */
1767 dma_addr_t dma_addr_in;
1768 dma_addr_t dma_addr_out;
1769 int sgSize = 0; /* Num SG elements */
1770 int iocnum, flagsLength;
1771 int sz, rc = 0;
1772 int msgContext;
1773 u16 req_idx;
1774 ulong timeout;
1775 struct scsi_device *sdev;
1777 bufIn.kptr = bufOut.kptr = NULL;
1779 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
1780 (ioc == NULL)) {
1781 printk(KERN_DEBUG MYNAM "%s::mptctl_do_mpt_command() @%d - ioc%d not found!\n",
1782 __FILE__, __LINE__, iocnum);
1783 return -ENODEV;
1785 if (!ioc->ioctl) {
1786 printk(KERN_ERR MYNAM "%s@%d::mptctl_do_mpt_command - "
1787 "No memory available during driver init.\n",
1788 __FILE__, __LINE__);
1789 return -ENOMEM;
1790 } else if (ioc->ioctl->status & MPT_IOCTL_STATUS_DID_IOCRESET) {
1791 printk(KERN_ERR MYNAM "%s@%d::mptctl_do_mpt_command - "
1792 "Busy with IOC Reset \n", __FILE__, __LINE__);
1793 return -EBUSY;
1796 /* Verify that the final request frame will not be too large.
1798 sz = karg.dataSgeOffset * 4;
1799 if (karg.dataInSize > 0)
1800 sz += sizeof(dma_addr_t) + sizeof(u32);
1801 if (karg.dataOutSize > 0)
1802 sz += sizeof(dma_addr_t) + sizeof(u32);
1804 if (sz > ioc->req_sz) {
1805 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1806 "Request frame too large (%d) maximum (%d)\n",
1807 ioc->name, __FILE__, __LINE__, sz, ioc->req_sz);
1808 return -EFAULT;
1811 /* Get a free request frame and save the message context.
1813 if ((mf = mpt_get_msg_frame(mptctl_id, ioc)) == NULL)
1814 return -EAGAIN;
1816 hdr = (MPIHeader_t *) mf;
1817 msgContext = le32_to_cpu(hdr->MsgContext);
1818 req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
1820 /* Copy the request frame
1821 * Reset the saved message context.
1822 * Request frame in user space
1824 if (copy_from_user(mf, mfPtr, karg.dataSgeOffset * 4)) {
1825 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1826 "Unable to read MF from mpt_ioctl_command struct @ %p\n",
1827 ioc->name, __FILE__, __LINE__, mfPtr);
1828 rc = -EFAULT;
1829 goto done_free_mem;
1831 hdr->MsgContext = cpu_to_le32(msgContext);
1834 /* Verify that this request is allowed.
1836 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "sending mpi function (0x%02X), req=%p\n",
1837 ioc->name, hdr->Function, mf));
1839 switch (hdr->Function) {
1840 case MPI_FUNCTION_IOC_FACTS:
1841 case MPI_FUNCTION_PORT_FACTS:
1842 karg.dataOutSize = karg.dataInSize = 0;
1843 break;
1845 case MPI_FUNCTION_CONFIG:
1847 Config_t *config_frame;
1848 config_frame = (Config_t *)mf;
1849 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "\ttype=0x%02x ext_type=0x%02x "
1850 "number=0x%02x action=0x%02x\n", ioc->name,
1851 config_frame->Header.PageType,
1852 config_frame->ExtPageType,
1853 config_frame->Header.PageNumber,
1854 config_frame->Action));
1855 break;
1858 case MPI_FUNCTION_FC_COMMON_TRANSPORT_SEND:
1859 case MPI_FUNCTION_FC_EX_LINK_SRVC_SEND:
1860 case MPI_FUNCTION_FW_UPLOAD:
1861 case MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR:
1862 case MPI_FUNCTION_FW_DOWNLOAD:
1863 case MPI_FUNCTION_FC_PRIMITIVE_SEND:
1864 case MPI_FUNCTION_TOOLBOX:
1865 case MPI_FUNCTION_SAS_IO_UNIT_CONTROL:
1866 break;
1868 case MPI_FUNCTION_SCSI_IO_REQUEST:
1869 if (ioc->sh) {
1870 SCSIIORequest_t *pScsiReq = (SCSIIORequest_t *) mf;
1871 int qtag = MPI_SCSIIO_CONTROL_UNTAGGED;
1872 int scsidir = 0;
1873 int dataSize;
1874 u32 id;
1876 id = (ioc->devices_per_bus == 0) ? 256 : ioc->devices_per_bus;
1877 if (pScsiReq->TargetID > id) {
1878 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1879 "Target ID out of bounds. \n",
1880 ioc->name, __FILE__, __LINE__);
1881 rc = -ENODEV;
1882 goto done_free_mem;
1885 if (pScsiReq->Bus >= ioc->number_of_buses) {
1886 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1887 "Target Bus out of bounds. \n",
1888 ioc->name, __FILE__, __LINE__);
1889 rc = -ENODEV;
1890 goto done_free_mem;
1893 pScsiReq->MsgFlags &= ~MPI_SCSIIO_MSGFLGS_SENSE_WIDTH;
1894 pScsiReq->MsgFlags |= mpt_msg_flags();
1897 /* verify that app has not requested
1898 * more sense data than driver
1899 * can provide, if so, reset this parameter
1900 * set the sense buffer pointer low address
1901 * update the control field to specify Q type
1903 if (karg.maxSenseBytes > MPT_SENSE_BUFFER_SIZE)
1904 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
1905 else
1906 pScsiReq->SenseBufferLength = karg.maxSenseBytes;
1908 pScsiReq->SenseBufferLowAddr =
1909 cpu_to_le32(ioc->sense_buf_low_dma
1910 + (req_idx * MPT_SENSE_BUFFER_ALLOC));
1912 shost_for_each_device(sdev, ioc->sh) {
1913 struct scsi_target *starget = scsi_target(sdev);
1914 VirtTarget *vtarget = starget->hostdata;
1916 if ((pScsiReq->TargetID == vtarget->id) &&
1917 (pScsiReq->Bus == vtarget->channel) &&
1918 (vtarget->tflags & MPT_TARGET_FLAGS_Q_YES))
1919 qtag = MPI_SCSIIO_CONTROL_SIMPLEQ;
1922 /* Have the IOCTL driver set the direction based
1923 * on the dataOutSize (ordering issue with Sparc).
1925 if (karg.dataOutSize > 0) {
1926 scsidir = MPI_SCSIIO_CONTROL_WRITE;
1927 dataSize = karg.dataOutSize;
1928 } else {
1929 scsidir = MPI_SCSIIO_CONTROL_READ;
1930 dataSize = karg.dataInSize;
1933 pScsiReq->Control = cpu_to_le32(scsidir | qtag);
1934 pScsiReq->DataLength = cpu_to_le32(dataSize);
1936 ioc->ioctl->reset = MPTCTL_RESET_OK;
1937 ioc->ioctl->id = pScsiReq->TargetID;
1939 } else {
1940 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1941 "SCSI driver is not loaded. \n",
1942 ioc->name, __FILE__, __LINE__);
1943 rc = -EFAULT;
1944 goto done_free_mem;
1946 break;
1948 case MPI_FUNCTION_SMP_PASSTHROUGH:
1949 /* Check mf->PassthruFlags to determine if
1950 * transfer is ImmediateMode or not.
1951 * Immediate mode returns data in the ReplyFrame.
1952 * Else, we are sending request and response data
1953 * in two SGLs at the end of the mf.
1955 break;
1957 case MPI_FUNCTION_SATA_PASSTHROUGH:
1958 if (!ioc->sh) {
1959 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
1960 "SCSI driver is not loaded. \n",
1961 ioc->name, __FILE__, __LINE__);
1962 rc = -EFAULT;
1963 goto done_free_mem;
1965 break;
1967 case MPI_FUNCTION_RAID_ACTION:
1968 /* Just add a SGE
1970 break;
1972 case MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH:
1973 if (ioc->sh) {
1974 SCSIIORequest_t *pScsiReq = (SCSIIORequest_t *) mf;
1975 int qtag = MPI_SCSIIO_CONTROL_SIMPLEQ;
1976 int scsidir = MPI_SCSIIO_CONTROL_READ;
1977 int dataSize;
1979 pScsiReq->MsgFlags &= ~MPI_SCSIIO_MSGFLGS_SENSE_WIDTH;
1980 pScsiReq->MsgFlags |= mpt_msg_flags();
1983 /* verify that app has not requested
1984 * more sense data than driver
1985 * can provide, if so, reset this parameter
1986 * set the sense buffer pointer low address
1987 * update the control field to specify Q type
1989 if (karg.maxSenseBytes > MPT_SENSE_BUFFER_SIZE)
1990 pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
1991 else
1992 pScsiReq->SenseBufferLength = karg.maxSenseBytes;
1994 pScsiReq->SenseBufferLowAddr =
1995 cpu_to_le32(ioc->sense_buf_low_dma
1996 + (req_idx * MPT_SENSE_BUFFER_ALLOC));
1998 /* All commands to physical devices are tagged
2001 /* Have the IOCTL driver set the direction based
2002 * on the dataOutSize (ordering issue with Sparc).
2004 if (karg.dataOutSize > 0) {
2005 scsidir = MPI_SCSIIO_CONTROL_WRITE;
2006 dataSize = karg.dataOutSize;
2007 } else {
2008 scsidir = MPI_SCSIIO_CONTROL_READ;
2009 dataSize = karg.dataInSize;
2012 pScsiReq->Control = cpu_to_le32(scsidir | qtag);
2013 pScsiReq->DataLength = cpu_to_le32(dataSize);
2015 ioc->ioctl->reset = MPTCTL_RESET_OK;
2016 ioc->ioctl->id = pScsiReq->TargetID;
2017 } else {
2018 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2019 "SCSI driver is not loaded. \n",
2020 ioc->name, __FILE__, __LINE__);
2021 rc = -EFAULT;
2022 goto done_free_mem;
2024 break;
2026 case MPI_FUNCTION_SCSI_TASK_MGMT:
2028 MPT_SCSI_HOST *hd = NULL;
2029 if ((ioc->sh == NULL) || ((hd = (MPT_SCSI_HOST *)ioc->sh->hostdata) == NULL)) {
2030 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2031 "SCSI driver not loaded or SCSI host not found. \n",
2032 ioc->name, __FILE__, __LINE__);
2033 rc = -EFAULT;
2034 goto done_free_mem;
2035 } else if (mptctl_set_tm_flags(hd) != 0) {
2036 rc = -EPERM;
2037 goto done_free_mem;
2040 break;
2042 case MPI_FUNCTION_IOC_INIT:
2044 IOCInit_t *pInit = (IOCInit_t *) mf;
2045 u32 high_addr, sense_high;
2047 /* Verify that all entries in the IOC INIT match
2048 * existing setup (and in LE format).
2050 if (sizeof(dma_addr_t) == sizeof(u64)) {
2051 high_addr = cpu_to_le32((u32)((u64)ioc->req_frames_dma >> 32));
2052 sense_high= cpu_to_le32((u32)((u64)ioc->sense_buf_pool_dma >> 32));
2053 } else {
2054 high_addr = 0;
2055 sense_high= 0;
2058 if ((pInit->Flags != 0) || (pInit->MaxDevices != ioc->facts.MaxDevices) ||
2059 (pInit->MaxBuses != ioc->facts.MaxBuses) ||
2060 (pInit->ReplyFrameSize != cpu_to_le16(ioc->reply_sz)) ||
2061 (pInit->HostMfaHighAddr != high_addr) ||
2062 (pInit->SenseBufferHighAddr != sense_high)) {
2063 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2064 "IOC_INIT issued with 1 or more incorrect parameters. Rejected.\n",
2065 ioc->name, __FILE__, __LINE__);
2066 rc = -EFAULT;
2067 goto done_free_mem;
2070 break;
2071 default:
2073 * MPI_FUNCTION_PORT_ENABLE
2074 * MPI_FUNCTION_TARGET_CMD_BUFFER_POST
2075 * MPI_FUNCTION_TARGET_ASSIST
2076 * MPI_FUNCTION_TARGET_STATUS_SEND
2077 * MPI_FUNCTION_TARGET_MODE_ABORT
2078 * MPI_FUNCTION_IOC_MESSAGE_UNIT_RESET
2079 * MPI_FUNCTION_IO_UNIT_RESET
2080 * MPI_FUNCTION_HANDSHAKE
2081 * MPI_FUNCTION_REPLY_FRAME_REMOVAL
2082 * MPI_FUNCTION_EVENT_NOTIFICATION
2083 * (driver handles event notification)
2084 * MPI_FUNCTION_EVENT_ACK
2087 /* What to do with these??? CHECK ME!!!
2088 MPI_FUNCTION_FC_LINK_SRVC_BUF_POST
2089 MPI_FUNCTION_FC_LINK_SRVC_RSP
2090 MPI_FUNCTION_FC_ABORT
2091 MPI_FUNCTION_LAN_SEND
2092 MPI_FUNCTION_LAN_RECEIVE
2093 MPI_FUNCTION_LAN_RESET
2096 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2097 "Illegal request (function 0x%x) \n",
2098 ioc->name, __FILE__, __LINE__, hdr->Function);
2099 rc = -EFAULT;
2100 goto done_free_mem;
2103 /* Add the SGL ( at most one data in SGE and one data out SGE )
2104 * In the case of two SGE's - the data out (write) will always
2105 * preceede the data in (read) SGE. psgList is used to free the
2106 * allocated memory.
2108 psge = (char *) (((int *) mf) + karg.dataSgeOffset);
2109 flagsLength = 0;
2111 /* bufIn and bufOut are used for user to kernel space transfers
2113 bufIn.kptr = bufOut.kptr = NULL;
2114 bufIn.len = bufOut.len = 0;
2116 if (karg.dataOutSize > 0)
2117 sgSize ++;
2119 if (karg.dataInSize > 0)
2120 sgSize ++;
2122 if (sgSize > 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 mpt_addr_size() )
2131 << MPI_SGE_FLAGS_SHIFT;
2132 } else {
2133 flagsLength = MPT_SGE_FLAGS_SSIMPLE_WRITE;
2135 flagsLength |= karg.dataOutSize;
2136 bufOut.len = karg.dataOutSize;
2137 bufOut.kptr = pci_alloc_consistent(
2138 ioc->pcidev, bufOut.len, &dma_addr_out);
2140 if (bufOut.kptr == NULL) {
2141 rc = -ENOMEM;
2142 goto done_free_mem;
2143 } else {
2144 /* Set up this SGE.
2145 * Copy to MF and to sglbuf
2147 mpt_add_sge(psge, flagsLength, dma_addr_out);
2148 psge += (sizeof(u32) + sizeof(dma_addr_t));
2150 /* Copy user data to kernel space.
2152 if (copy_from_user(bufOut.kptr,
2153 karg.dataOutBufPtr,
2154 bufOut.len)) {
2155 printk(MYIOC_s_ERR_FMT
2156 "%s@%d::mptctl_do_mpt_command - Unable "
2157 "to read user data "
2158 "struct @ %p\n",
2159 ioc->name, __FILE__, __LINE__,karg.dataOutBufPtr);
2160 rc = -EFAULT;
2161 goto done_free_mem;
2166 if (karg.dataInSize > 0) {
2167 flagsLength = MPT_SGE_FLAGS_SSIMPLE_READ;
2168 flagsLength |= karg.dataInSize;
2170 bufIn.len = karg.dataInSize;
2171 bufIn.kptr = pci_alloc_consistent(ioc->pcidev,
2172 bufIn.len, &dma_addr_in);
2174 if (bufIn.kptr == NULL) {
2175 rc = -ENOMEM;
2176 goto done_free_mem;
2177 } else {
2178 /* Set up this SGE
2179 * Copy to MF and to sglbuf
2181 mpt_add_sge(psge, flagsLength, dma_addr_in);
2184 } else {
2185 /* Add a NULL SGE
2187 mpt_add_sge(psge, flagsLength, (dma_addr_t) -1);
2190 ioc->ioctl->wait_done = 0;
2191 if (hdr->Function == MPI_FUNCTION_SCSI_TASK_MGMT) {
2193 DBG_DUMP_TM_REQUEST_FRAME(ioc, (u32 *)mf);
2195 if ((ioc->facts.IOCCapabilities & MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q) &&
2196 (ioc->facts.MsgVersion >= MPI_VERSION_01_05))
2197 mpt_put_msg_frame_hi_pri(mptctl_id, ioc, mf);
2198 else {
2199 rc =mpt_send_handshake_request(mptctl_id, ioc,
2200 sizeof(SCSITaskMgmt_t), (u32*)mf, CAN_SLEEP);
2201 if (rc != 0) {
2202 dfailprintk(ioc, printk(MYIOC_s_ERR_FMT
2203 "_send_handshake FAILED! (ioc %p, mf %p)\n",
2204 ioc->name, ioc, mf));
2205 mptctl_free_tm_flags(ioc);
2206 rc = -ENODATA;
2207 goto done_free_mem;
2211 } else
2212 mpt_put_msg_frame(mptctl_id, ioc, mf);
2214 /* Now wait for the command to complete */
2215 timeout = (karg.timeout > 0) ? karg.timeout : MPT_IOCTL_DEFAULT_TIMEOUT;
2216 timeout = wait_event_timeout(mptctl_wait,
2217 ioc->ioctl->wait_done == 1,
2218 HZ*timeout);
2220 if(timeout <=0 && (ioc->ioctl->wait_done != 1 )) {
2221 /* Now we need to reset the board */
2223 if (hdr->Function == MPI_FUNCTION_SCSI_TASK_MGMT)
2224 mptctl_free_tm_flags(ioc);
2226 mptctl_timeout_expired(ioc->ioctl);
2227 rc = -ENODATA;
2228 goto done_free_mem;
2231 mf = NULL;
2233 /* If a valid reply frame, copy to the user.
2234 * Offset 2: reply length in U32's
2236 if (ioc->ioctl->status & MPT_IOCTL_STATUS_RF_VALID) {
2237 if (karg.maxReplyBytes < ioc->reply_sz) {
2238 sz = min(karg.maxReplyBytes, 4*ioc->ioctl->ReplyFrame[2]);
2239 } else {
2240 sz = min(ioc->reply_sz, 4*ioc->ioctl->ReplyFrame[2]);
2243 if (sz > 0) {
2244 if (copy_to_user(karg.replyFrameBufPtr,
2245 &ioc->ioctl->ReplyFrame, sz)){
2246 printk(MYIOC_s_ERR_FMT
2247 "%s@%d::mptctl_do_mpt_command - "
2248 "Unable to write out reply frame %p\n",
2249 ioc->name, __FILE__, __LINE__, karg.replyFrameBufPtr);
2250 rc = -ENODATA;
2251 goto done_free_mem;
2256 /* If valid sense data, copy to user.
2258 if (ioc->ioctl->status & MPT_IOCTL_STATUS_SENSE_VALID) {
2259 sz = min(karg.maxSenseBytes, MPT_SENSE_BUFFER_SIZE);
2260 if (sz > 0) {
2261 if (copy_to_user(karg.senseDataPtr, ioc->ioctl->sense, sz)) {
2262 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2263 "Unable to write sense data to user %p\n",
2264 ioc->name, __FILE__, __LINE__,
2265 karg.senseDataPtr);
2266 rc = -ENODATA;
2267 goto done_free_mem;
2272 /* If the overall status is _GOOD and data in, copy data
2273 * to user.
2275 if ((ioc->ioctl->status & MPT_IOCTL_STATUS_COMMAND_GOOD) &&
2276 (karg.dataInSize > 0) && (bufIn.kptr)) {
2278 if (copy_to_user(karg.dataInBufPtr,
2279 bufIn.kptr, karg.dataInSize)) {
2280 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_do_mpt_command - "
2281 "Unable to write data to user %p\n",
2282 ioc->name, __FILE__, __LINE__,
2283 karg.dataInBufPtr);
2284 rc = -ENODATA;
2288 done_free_mem:
2290 ioc->ioctl->status &= ~(MPT_IOCTL_STATUS_COMMAND_GOOD |
2291 MPT_IOCTL_STATUS_SENSE_VALID |
2292 MPT_IOCTL_STATUS_RF_VALID );
2294 /* Free the allocated memory.
2296 if (bufOut.kptr != NULL) {
2297 pci_free_consistent(ioc->pcidev,
2298 bufOut.len, (void *) bufOut.kptr, dma_addr_out);
2301 if (bufIn.kptr != NULL) {
2302 pci_free_consistent(ioc->pcidev,
2303 bufIn.len, (void *) bufIn.kptr, dma_addr_in);
2306 /* mf is null if command issued successfully
2307 * otherwise, failure occured after mf acquired.
2309 if (mf)
2310 mpt_free_msg_frame(ioc, mf);
2312 return rc;
2315 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2316 /* Prototype Routine for the HOST INFO command.
2318 * Outputs: None.
2319 * Return: 0 if successful
2320 * -EFAULT if data unavailable
2321 * -EBUSY if previous command timout and IOC reset is not complete.
2322 * -ENODEV if no such device/adapter
2323 * -ETIME if timer expires
2324 * -ENOMEM if memory allocation error
2326 static int
2327 mptctl_hp_hostinfo(unsigned long arg, unsigned int data_size)
2329 hp_host_info_t __user *uarg = (void __user *) arg;
2330 MPT_ADAPTER *ioc;
2331 struct pci_dev *pdev;
2332 char *pbuf=NULL;
2333 dma_addr_t buf_dma;
2334 hp_host_info_t karg;
2335 CONFIGPARMS cfg;
2336 ConfigPageHeader_t hdr;
2337 int iocnum;
2338 int rc, cim_rev;
2339 ToolboxIstwiReadWriteRequest_t *IstwiRWRequest;
2340 MPT_FRAME_HDR *mf = NULL;
2341 MPIHeader_t *mpi_hdr;
2343 /* Reset long to int. Should affect IA64 and SPARC only
2345 if (data_size == sizeof(hp_host_info_t))
2346 cim_rev = 1;
2347 else if (data_size == sizeof(hp_host_info_rev0_t))
2348 cim_rev = 0; /* obsolete */
2349 else
2350 return -EFAULT;
2352 if (copy_from_user(&karg, uarg, sizeof(hp_host_info_t))) {
2353 printk(KERN_ERR MYNAM "%s@%d::mptctl_hp_host_info - "
2354 "Unable to read in hp_host_info struct @ %p\n",
2355 __FILE__, __LINE__, uarg);
2356 return -EFAULT;
2359 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
2360 (ioc == NULL)) {
2361 printk(KERN_DEBUG MYNAM "%s::mptctl_hp_hostinfo() @%d - ioc%d not found!\n",
2362 __FILE__, __LINE__, iocnum);
2363 return -ENODEV;
2365 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT ": mptctl_hp_hostinfo called.\n",
2366 ioc->name));
2368 /* Fill in the data and return the structure to the calling
2369 * program
2371 pdev = (struct pci_dev *) ioc->pcidev;
2373 karg.vendor = pdev->vendor;
2374 karg.device = pdev->device;
2375 karg.subsystem_id = pdev->subsystem_device;
2376 karg.subsystem_vendor = pdev->subsystem_vendor;
2377 karg.devfn = pdev->devfn;
2378 karg.bus = pdev->bus->number;
2380 /* Save the SCSI host no. if
2381 * SCSI driver loaded
2383 if (ioc->sh != NULL)
2384 karg.host_no = ioc->sh->host_no;
2385 else
2386 karg.host_no = -1;
2388 /* Reformat the fw_version into a string
2390 karg.fw_version[0] = ioc->facts.FWVersion.Struct.Major >= 10 ?
2391 ((ioc->facts.FWVersion.Struct.Major / 10) + '0') : '0';
2392 karg.fw_version[1] = (ioc->facts.FWVersion.Struct.Major % 10 ) + '0';
2393 karg.fw_version[2] = '.';
2394 karg.fw_version[3] = ioc->facts.FWVersion.Struct.Minor >= 10 ?
2395 ((ioc->facts.FWVersion.Struct.Minor / 10) + '0') : '0';
2396 karg.fw_version[4] = (ioc->facts.FWVersion.Struct.Minor % 10 ) + '0';
2397 karg.fw_version[5] = '.';
2398 karg.fw_version[6] = ioc->facts.FWVersion.Struct.Unit >= 10 ?
2399 ((ioc->facts.FWVersion.Struct.Unit / 10) + '0') : '0';
2400 karg.fw_version[7] = (ioc->facts.FWVersion.Struct.Unit % 10 ) + '0';
2401 karg.fw_version[8] = '.';
2402 karg.fw_version[9] = ioc->facts.FWVersion.Struct.Dev >= 10 ?
2403 ((ioc->facts.FWVersion.Struct.Dev / 10) + '0') : '0';
2404 karg.fw_version[10] = (ioc->facts.FWVersion.Struct.Dev % 10 ) + '0';
2405 karg.fw_version[11] = '\0';
2407 /* Issue a config request to get the device serial number
2409 hdr.PageVersion = 0;
2410 hdr.PageLength = 0;
2411 hdr.PageNumber = 0;
2412 hdr.PageType = MPI_CONFIG_PAGETYPE_MANUFACTURING;
2413 cfg.cfghdr.hdr = &hdr;
2414 cfg.physAddr = -1;
2415 cfg.pageAddr = 0;
2416 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
2417 cfg.dir = 0; /* read */
2418 cfg.timeout = 10;
2420 strncpy(karg.serial_number, " ", 24);
2421 if (mpt_config(ioc, &cfg) == 0) {
2422 if (cfg.cfghdr.hdr->PageLength > 0) {
2423 /* Issue the second config page request */
2424 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2426 pbuf = pci_alloc_consistent(ioc->pcidev, hdr.PageLength * 4, &buf_dma);
2427 if (pbuf) {
2428 cfg.physAddr = buf_dma;
2429 if (mpt_config(ioc, &cfg) == 0) {
2430 ManufacturingPage0_t *pdata = (ManufacturingPage0_t *) pbuf;
2431 if (strlen(pdata->BoardTracerNumber) > 1) {
2432 strncpy(karg.serial_number, pdata->BoardTracerNumber, 24);
2433 karg.serial_number[24-1]='\0';
2436 pci_free_consistent(ioc->pcidev, hdr.PageLength * 4, pbuf, buf_dma);
2437 pbuf = NULL;
2441 rc = mpt_GetIocState(ioc, 1);
2442 switch (rc) {
2443 case MPI_IOC_STATE_OPERATIONAL:
2444 karg.ioc_status = HP_STATUS_OK;
2445 break;
2447 case MPI_IOC_STATE_FAULT:
2448 karg.ioc_status = HP_STATUS_FAILED;
2449 break;
2451 case MPI_IOC_STATE_RESET:
2452 case MPI_IOC_STATE_READY:
2453 default:
2454 karg.ioc_status = HP_STATUS_OTHER;
2455 break;
2458 karg.base_io_addr = pci_resource_start(pdev, 0);
2460 if ((ioc->bus_type == SAS) || (ioc->bus_type == FC))
2461 karg.bus_phys_width = HP_BUS_WIDTH_UNK;
2462 else
2463 karg.bus_phys_width = HP_BUS_WIDTH_16;
2465 karg.hard_resets = 0;
2466 karg.soft_resets = 0;
2467 karg.timeouts = 0;
2468 if (ioc->sh != NULL) {
2469 MPT_SCSI_HOST *hd = (MPT_SCSI_HOST *)ioc->sh->hostdata;
2471 if (hd && (cim_rev == 1)) {
2472 karg.hard_resets = hd->hard_resets;
2473 karg.soft_resets = hd->soft_resets;
2474 karg.timeouts = hd->timeouts;
2479 * Gather ISTWI(Industry Standard Two Wire Interface) Data
2481 if ((mf = mpt_get_msg_frame(mptctl_id, ioc)) == NULL) {
2482 dfailprintk(ioc, printk(MYIOC_s_WARN_FMT "%s, no msg frames!!\n",
2483 ioc->name,__FUNCTION__));
2484 goto out;
2487 IstwiRWRequest = (ToolboxIstwiReadWriteRequest_t *)mf;
2488 mpi_hdr = (MPIHeader_t *) mf;
2489 memset(IstwiRWRequest,0,sizeof(ToolboxIstwiReadWriteRequest_t));
2490 IstwiRWRequest->Function = MPI_FUNCTION_TOOLBOX;
2491 IstwiRWRequest->Tool = MPI_TOOLBOX_ISTWI_READ_WRITE_TOOL;
2492 IstwiRWRequest->MsgContext = mpi_hdr->MsgContext;
2493 IstwiRWRequest->Flags = MPI_TB_ISTWI_FLAGS_READ;
2494 IstwiRWRequest->NumAddressBytes = 0x01;
2495 IstwiRWRequest->DataLength = cpu_to_le16(0x04);
2496 if (pdev->devfn & 1)
2497 IstwiRWRequest->DeviceAddr = 0xB2;
2498 else
2499 IstwiRWRequest->DeviceAddr = 0xB0;
2501 pbuf = pci_alloc_consistent(ioc->pcidev, 4, &buf_dma);
2502 if (!pbuf)
2503 goto out;
2504 mpt_add_sge((char *)&IstwiRWRequest->SGL,
2505 (MPT_SGE_FLAGS_SSIMPLE_READ|4), buf_dma);
2507 ioc->ioctl->wait_done = 0;
2508 mpt_put_msg_frame(mptctl_id, ioc, mf);
2510 rc = wait_event_timeout(mptctl_wait,
2511 ioc->ioctl->wait_done == 1,
2512 HZ*MPT_IOCTL_DEFAULT_TIMEOUT /* 10 sec */);
2514 if(rc <=0 && (ioc->ioctl->wait_done != 1 )) {
2516 * Now we need to reset the board
2518 mpt_free_msg_frame(ioc, mf);
2519 mptctl_timeout_expired(ioc->ioctl);
2520 goto out;
2524 *ISTWI Data Definition
2525 * pbuf[0] = FW_VERSION = 0x4
2526 * pbuf[1] = Bay Count = 6 or 4 or 2, depending on
2527 * the config, you should be seeing one out of these three values
2528 * pbuf[2] = Drive Installed Map = bit pattern depend on which
2529 * bays have drives in them
2530 * pbuf[3] = Checksum (0x100 = (byte0 + byte2 + byte3)
2532 if (ioc->ioctl->status & MPT_IOCTL_STATUS_RF_VALID)
2533 karg.rsvd = *(u32 *)pbuf;
2535 out:
2536 if (pbuf)
2537 pci_free_consistent(ioc->pcidev, 4, pbuf, buf_dma);
2539 /* Copy the data from kernel memory to user memory
2541 if (copy_to_user((char __user *)arg, &karg, sizeof(hp_host_info_t))) {
2542 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_hpgethostinfo - "
2543 "Unable to write out hp_host_info @ %p\n",
2544 ioc->name, __FILE__, __LINE__, uarg);
2545 return -EFAULT;
2548 return 0;
2552 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2553 /* Prototype Routine for the TARGET INFO command.
2555 * Outputs: None.
2556 * Return: 0 if successful
2557 * -EFAULT if data unavailable
2558 * -EBUSY if previous command timout and IOC reset is not complete.
2559 * -ENODEV if no such device/adapter
2560 * -ETIME if timer expires
2561 * -ENOMEM if memory allocation error
2563 static int
2564 mptctl_hp_targetinfo(unsigned long arg)
2566 hp_target_info_t __user *uarg = (void __user *) arg;
2567 SCSIDevicePage0_t *pg0_alloc;
2568 SCSIDevicePage3_t *pg3_alloc;
2569 MPT_ADAPTER *ioc;
2570 MPT_SCSI_HOST *hd = NULL;
2571 hp_target_info_t karg;
2572 int iocnum;
2573 int data_sz;
2574 dma_addr_t page_dma;
2575 CONFIGPARMS cfg;
2576 ConfigPageHeader_t hdr;
2577 int tmp, np, rc = 0;
2579 if (copy_from_user(&karg, uarg, sizeof(hp_target_info_t))) {
2580 printk(KERN_ERR MYNAM "%s@%d::mptctl_hp_targetinfo - "
2581 "Unable to read in hp_host_targetinfo struct @ %p\n",
2582 __FILE__, __LINE__, uarg);
2583 return -EFAULT;
2586 if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
2587 (ioc == NULL)) {
2588 printk(KERN_DEBUG MYNAM "%s::mptctl_hp_targetinfo() @%d - ioc%d not found!\n",
2589 __FILE__, __LINE__, iocnum);
2590 return -ENODEV;
2592 dctlprintk(ioc, printk(MYIOC_s_DEBUG_FMT "mptctl_hp_targetinfo called.\n",
2593 ioc->name));
2595 /* There is nothing to do for FCP parts.
2597 if ((ioc->bus_type == SAS) || (ioc->bus_type == FC))
2598 return 0;
2600 if ((ioc->spi_data.sdp0length == 0) || (ioc->sh == NULL))
2601 return 0;
2603 if (ioc->sh->host_no != karg.hdr.host)
2604 return -ENODEV;
2606 /* Get the data transfer speeds
2608 data_sz = ioc->spi_data.sdp0length * 4;
2609 pg0_alloc = (SCSIDevicePage0_t *) pci_alloc_consistent(ioc->pcidev, data_sz, &page_dma);
2610 if (pg0_alloc) {
2611 hdr.PageVersion = ioc->spi_data.sdp0version;
2612 hdr.PageLength = data_sz;
2613 hdr.PageNumber = 0;
2614 hdr.PageType = MPI_CONFIG_PAGETYPE_SCSI_DEVICE;
2616 cfg.cfghdr.hdr = &hdr;
2617 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2618 cfg.dir = 0;
2619 cfg.timeout = 0;
2620 cfg.physAddr = page_dma;
2622 cfg.pageAddr = (karg.hdr.channel << 8) | karg.hdr.id;
2624 if ((rc = mpt_config(ioc, &cfg)) == 0) {
2625 np = le32_to_cpu(pg0_alloc->NegotiatedParameters);
2626 karg.negotiated_width = np & MPI_SCSIDEVPAGE0_NP_WIDE ?
2627 HP_BUS_WIDTH_16 : HP_BUS_WIDTH_8;
2629 if (np & MPI_SCSIDEVPAGE0_NP_NEG_SYNC_OFFSET_MASK) {
2630 tmp = (np & MPI_SCSIDEVPAGE0_NP_NEG_SYNC_PERIOD_MASK) >> 8;
2631 if (tmp < 0x09)
2632 karg.negotiated_speed = HP_DEV_SPEED_ULTRA320;
2633 else if (tmp <= 0x09)
2634 karg.negotiated_speed = HP_DEV_SPEED_ULTRA160;
2635 else if (tmp <= 0x0A)
2636 karg.negotiated_speed = HP_DEV_SPEED_ULTRA2;
2637 else if (tmp <= 0x0C)
2638 karg.negotiated_speed = HP_DEV_SPEED_ULTRA;
2639 else if (tmp <= 0x25)
2640 karg.negotiated_speed = HP_DEV_SPEED_FAST;
2641 else
2642 karg.negotiated_speed = HP_DEV_SPEED_ASYNC;
2643 } else
2644 karg.negotiated_speed = HP_DEV_SPEED_ASYNC;
2647 pci_free_consistent(ioc->pcidev, data_sz, (u8 *) pg0_alloc, page_dma);
2650 /* Set defaults
2652 karg.message_rejects = -1;
2653 karg.phase_errors = -1;
2654 karg.parity_errors = -1;
2655 karg.select_timeouts = -1;
2657 /* Get the target error parameters
2659 hdr.PageVersion = 0;
2660 hdr.PageLength = 0;
2661 hdr.PageNumber = 3;
2662 hdr.PageType = MPI_CONFIG_PAGETYPE_SCSI_DEVICE;
2664 cfg.cfghdr.hdr = &hdr;
2665 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
2666 cfg.dir = 0;
2667 cfg.timeout = 0;
2668 cfg.physAddr = -1;
2669 if ((mpt_config(ioc, &cfg) == 0) && (cfg.cfghdr.hdr->PageLength > 0)) {
2670 /* Issue the second config page request */
2671 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
2672 data_sz = (int) cfg.cfghdr.hdr->PageLength * 4;
2673 pg3_alloc = (SCSIDevicePage3_t *) pci_alloc_consistent(
2674 ioc->pcidev, data_sz, &page_dma);
2675 if (pg3_alloc) {
2676 cfg.physAddr = page_dma;
2677 cfg.pageAddr = (karg.hdr.channel << 8) | karg.hdr.id;
2678 if ((rc = mpt_config(ioc, &cfg)) == 0) {
2679 karg.message_rejects = (u32) le16_to_cpu(pg3_alloc->MsgRejectCount);
2680 karg.phase_errors = (u32) le16_to_cpu(pg3_alloc->PhaseErrorCount);
2681 karg.parity_errors = (u32) le16_to_cpu(pg3_alloc->ParityErrorCount);
2683 pci_free_consistent(ioc->pcidev, data_sz, (u8 *) pg3_alloc, page_dma);
2686 hd = (MPT_SCSI_HOST *) ioc->sh->hostdata;
2687 if (hd != NULL)
2688 karg.select_timeouts = hd->sel_timeout[karg.hdr.id];
2690 /* Copy the data from kernel memory to user memory
2692 if (copy_to_user((char __user *)arg, &karg, sizeof(hp_target_info_t))) {
2693 printk(MYIOC_s_ERR_FMT "%s@%d::mptctl_hp_target_info - "
2694 "Unable to write out mpt_ioctl_targetinfo struct @ %p\n",
2695 ioc->name, __FILE__, __LINE__, uarg);
2696 return -EFAULT;
2699 return 0;
2702 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2704 static const struct file_operations mptctl_fops = {
2705 .owner = THIS_MODULE,
2706 .llseek = no_llseek,
2707 .release = mptctl_release,
2708 .fasync = mptctl_fasync,
2709 .unlocked_ioctl = mptctl_ioctl,
2710 #ifdef CONFIG_COMPAT
2711 .compat_ioctl = compat_mpctl_ioctl,
2712 #endif
2715 static struct miscdevice mptctl_miscdev = {
2716 MPT_MINOR,
2717 MYNAM,
2718 &mptctl_fops
2721 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2723 #ifdef CONFIG_COMPAT
2725 static int
2726 compat_mptfwxfer_ioctl(struct file *filp, unsigned int cmd,
2727 unsigned long arg)
2729 struct mpt_fw_xfer32 kfw32;
2730 struct mpt_fw_xfer kfw;
2731 MPT_ADAPTER *iocp = NULL;
2732 int iocnum, iocnumX;
2733 int nonblock = (filp->f_flags & O_NONBLOCK);
2734 int ret;
2737 if (copy_from_user(&kfw32, (char __user *)arg, sizeof(kfw32)))
2738 return -EFAULT;
2740 /* Verify intended MPT adapter */
2741 iocnumX = kfw32.iocnum & 0xFF;
2742 if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
2743 (iocp == NULL)) {
2744 printk(KERN_DEBUG MYNAM "::compat_mptfwxfer_ioctl @%d - ioc%d not found!\n",
2745 __LINE__, iocnumX);
2746 return -ENODEV;
2749 if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
2750 return ret;
2752 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "compat_mptfwxfer_ioctl() called\n",
2753 iocp->name));
2754 kfw.iocnum = iocnum;
2755 kfw.fwlen = kfw32.fwlen;
2756 kfw.bufp = compat_ptr(kfw32.bufp);
2758 ret = mptctl_do_fw_download(kfw.iocnum, kfw.bufp, kfw.fwlen);
2760 mutex_unlock(&iocp->ioctl->ioctl_mutex);
2762 return ret;
2765 static int
2766 compat_mpt_command(struct file *filp, unsigned int cmd,
2767 unsigned long arg)
2769 struct mpt_ioctl_command32 karg32;
2770 struct mpt_ioctl_command32 __user *uarg = (struct mpt_ioctl_command32 __user *) arg;
2771 struct mpt_ioctl_command karg;
2772 MPT_ADAPTER *iocp = NULL;
2773 int iocnum, iocnumX;
2774 int nonblock = (filp->f_flags & O_NONBLOCK);
2775 int ret;
2777 if (copy_from_user(&karg32, (char __user *)arg, sizeof(karg32)))
2778 return -EFAULT;
2780 /* Verify intended MPT adapter */
2781 iocnumX = karg32.hdr.iocnum & 0xFF;
2782 if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
2783 (iocp == NULL)) {
2784 printk(KERN_DEBUG MYNAM "::compat_mpt_command @%d - ioc%d not found!\n",
2785 __LINE__, iocnumX);
2786 return -ENODEV;
2789 if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
2790 return ret;
2792 dctlprintk(iocp, printk(MYIOC_s_DEBUG_FMT "compat_mpt_command() called\n",
2793 iocp->name));
2794 /* Copy data to karg */
2795 karg.hdr.iocnum = karg32.hdr.iocnum;
2796 karg.hdr.port = karg32.hdr.port;
2797 karg.timeout = karg32.timeout;
2798 karg.maxReplyBytes = karg32.maxReplyBytes;
2800 karg.dataInSize = karg32.dataInSize;
2801 karg.dataOutSize = karg32.dataOutSize;
2802 karg.maxSenseBytes = karg32.maxSenseBytes;
2803 karg.dataSgeOffset = karg32.dataSgeOffset;
2805 karg.replyFrameBufPtr = (char __user *)(unsigned long)karg32.replyFrameBufPtr;
2806 karg.dataInBufPtr = (char __user *)(unsigned long)karg32.dataInBufPtr;
2807 karg.dataOutBufPtr = (char __user *)(unsigned long)karg32.dataOutBufPtr;
2808 karg.senseDataPtr = (char __user *)(unsigned long)karg32.senseDataPtr;
2810 /* Pass new structure to do_mpt_command
2812 ret = mptctl_do_mpt_command (karg, &uarg->MF);
2814 mutex_unlock(&iocp->ioctl->ioctl_mutex);
2816 return ret;
2819 static long compat_mpctl_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2821 long ret;
2822 lock_kernel();
2823 switch (cmd) {
2824 case MPTIOCINFO:
2825 case MPTIOCINFO1:
2826 case MPTIOCINFO2:
2827 case MPTTARGETINFO:
2828 case MPTEVENTQUERY:
2829 case MPTEVENTENABLE:
2830 case MPTEVENTREPORT:
2831 case MPTHARDRESET:
2832 case HP_GETHOSTINFO:
2833 case HP_GETTARGETINFO:
2834 case MPTTEST:
2835 ret = __mptctl_ioctl(f, cmd, arg);
2836 break;
2837 case MPTCOMMAND32:
2838 ret = compat_mpt_command(f, cmd, arg);
2839 break;
2840 case MPTFWDOWNLOAD32:
2841 ret = compat_mptfwxfer_ioctl(f, cmd, arg);
2842 break;
2843 default:
2844 ret = -ENOIOCTLCMD;
2845 break;
2847 unlock_kernel();
2848 return ret;
2851 #endif
2854 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2856 * mptctl_probe - Installs ioctl devices per bus.
2857 * @pdev: Pointer to pci_dev structure
2859 * Returns 0 for success, non-zero for failure.
2863 static int
2864 mptctl_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2866 MPT_IOCTL *mem;
2867 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
2870 * Allocate and inite a MPT_IOCTL structure
2872 mem = kzalloc(sizeof(MPT_IOCTL), GFP_KERNEL);
2873 if (!mem) {
2874 mptctl_remove(pdev);
2875 return -ENOMEM;
2878 ioc->ioctl = mem;
2879 ioc->ioctl->ioc = ioc;
2880 mutex_init(&ioc->ioctl->ioctl_mutex);
2881 return 0;
2884 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2886 * mptctl_remove - Removed ioctl devices
2887 * @pdev: Pointer to pci_dev structure
2891 static void
2892 mptctl_remove(struct pci_dev *pdev)
2894 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
2896 kfree ( ioc->ioctl );
2899 static struct mpt_pci_driver mptctl_driver = {
2900 .probe = mptctl_probe,
2901 .remove = mptctl_remove,
2904 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2905 static int __init mptctl_init(void)
2907 int err;
2908 int where = 1;
2910 show_mptmod_ver(my_NAME, my_VERSION);
2912 mpt_device_driver_register(&mptctl_driver, MPTCTL_DRIVER);
2914 /* Register this device */
2915 err = misc_register(&mptctl_miscdev);
2916 if (err < 0) {
2917 printk(KERN_ERR MYNAM ": Can't register misc device [minor=%d].\n", MPT_MINOR);
2918 goto out_fail;
2920 printk(KERN_INFO MYNAM ": Registered with Fusion MPT base driver\n");
2921 printk(KERN_INFO MYNAM ": /dev/%s @ (major,minor=%d,%d)\n",
2922 mptctl_miscdev.name, MISC_MAJOR, mptctl_miscdev.minor);
2925 * Install our handler
2927 ++where;
2928 mptctl_id = mpt_register(mptctl_reply, MPTCTL_DRIVER);
2929 if (!mptctl_id || mptctl_id >= MPT_MAX_PROTOCOL_DRIVERS) {
2930 printk(KERN_ERR MYNAM ": ERROR: Failed to register with Fusion MPT base driver\n");
2931 misc_deregister(&mptctl_miscdev);
2932 err = -EBUSY;
2933 goto out_fail;
2936 mpt_reset_register(mptctl_id, mptctl_ioc_reset);
2937 mpt_event_register(mptctl_id, mptctl_event_process);
2939 return 0;
2941 out_fail:
2943 mpt_device_driver_deregister(MPTCTL_DRIVER);
2945 return err;
2948 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2949 static void mptctl_exit(void)
2951 misc_deregister(&mptctl_miscdev);
2952 printk(KERN_INFO MYNAM ": Deregistered /dev/%s @ (major,minor=%d,%d)\n",
2953 mptctl_miscdev.name, MISC_MAJOR, mptctl_miscdev.minor);
2955 /* De-register reset handler from base module */
2956 mpt_reset_deregister(mptctl_id);
2958 /* De-register callback handler from base module */
2959 mpt_deregister(mptctl_id);
2961 mpt_device_driver_deregister(MPTCTL_DRIVER);
2965 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2967 module_init(mptctl_init);
2968 module_exit(mptctl_exit);