mptctl.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:91k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/message/fusion/mptctl.c
  3.  *      Fusion MPT misc device (ioctl) driver.
  4.  *      For use with PCI chip/adapter(s):
  5.  *          LSIFC9xx/LSI409xx Fibre Channel
  6.  *      running LSI Logic Fusion MPT (Message Passing Technology) firmware.
  7.  *
  8.  *  Credits:
  9.  *      This driver would not exist if not for Alan Cox's development
  10.  *      of the linux i2o driver.
  11.  *
  12.  *      A special thanks to Pamela Delaney (LSI Logic) for tons of work
  13.  *      and countless enhancements while adding support for the 1030
  14.  *      chip family.  Pam has been instrumental in the development of
  15.  *      of the 2.xx.xx series fusion drivers, and her contributions are
  16.  *      far too numerous to hope to list in one place.
  17.  *
  18.  *      A huge debt of gratitude is owed to David S. Miller (DaveM)
  19.  *      for fixing much of the stupid and broken stuff in the early
  20.  *      driver while porting to sparc64 platform.  THANK YOU!
  21.  *
  22.  *      A big THANKS to Eddie C. Dost for fixing the ioctl path
  23.  *      and most importantly f/w download on sparc64 platform!
  24.  *      (plus Eddie's other helpful hints and insights)
  25.  *
  26.  *      Thanks to Arnaldo Carvalho de Melo for finding and patching
  27.  *      a potential memory leak in mptctl_do_fw_download(),
  28.  *      and for some kmalloc insight:-)
  29.  *
  30.  *      (see also mptbase.c)
  31.  *
  32.  *  Copyright (c) 1999-2002 LSI Logic Corporation
  33.  *  Originally By: Steven J. Ralston, Noah Romer
  34.  *  (mailto:sjralston1@netscape.net)
  35.  *  (mailto:Pam.Delaney@lsil.com)
  36.  *
  37.  *  $Id: mptctl.c,v 1.59 2002/09/05 22:30:10 pdelaney Exp $
  38.  */
  39. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  40. /*
  41.     This program is free software; you can redistribute it and/or modify
  42.     it under the terms of the GNU General Public License as published by
  43.     the Free Software Foundation; version 2 of the License.
  44.     This program is distributed in the hope that it will be useful,
  45.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  46.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  47.     GNU General Public License for more details.
  48.     NO WARRANTY
  49.     THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
  50.     CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
  51.     LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
  52.     MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
  53.     solely responsible for determining the appropriateness of using and
  54.     distributing the Program and assumes all risks associated with its
  55.     exercise of rights under this Agreement, including but not limited to
  56.     the risks and costs of program errors, damage to or loss of data,
  57.     programs or equipment, and unavailability or interruption of operations.
  58.     DISCLAIMER OF LIABILITY
  59.     NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
  60.     DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  61.     DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
  62.     ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  63.     TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  64.     USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
  65.     HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
  66.     You should have received a copy of the GNU General Public License
  67.     along with this program; if not, write to the Free Software
  68.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  69. */
  70. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  71. #include <linux/version.h>
  72. #include <linux/kernel.h>
  73. #include <linux/module.h>
  74. #include <linux/errno.h>
  75. #include <linux/init.h>
  76. #include <linux/slab.h>
  77. #include <linux/types.h>
  78. #include <linux/pci.h>
  79. #include <linux/miscdevice.h>
  80. #include <asm/io.h>
  81. #include <asm/uaccess.h>
  82. #include <linux/kdev_t.h> /* needed for access to Scsi_Host struct */
  83. #include <linux/blkdev.h>
  84. #include <linux/blk.h>          /* for io_request_lock (spinlock) decl */
  85. #include "../../scsi/scsi.h"
  86. #include "../../scsi/hosts.h"
  87. #define COPYRIGHT "Copyright (c) 1999-2001 LSI Logic Corporation"
  88. #define MODULEAUTHOR "Steven J. Ralston, Noah Romer, Pamela Delaney"
  89. #include "mptbase.h"
  90. #include "mptctl.h"
  91. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  92. #define my_NAME "Fusion MPT misc device (ioctl) driver"
  93. #define my_VERSION MPT_LINUX_VERSION_COMMON
  94. #define MYNAM "mptctl"
  95. EXPORT_NO_SYMBOLS;
  96. MODULE_AUTHOR(MODULEAUTHOR);
  97. MODULE_DESCRIPTION(my_NAME);
  98. MODULE_LICENSE("GPL");
  99. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  100. static int mptctl_id = -1;
  101. static struct semaphore mptctl_syscall_sem_ioc[MPT_MAX_ADAPTERS];
  102. static DECLARE_WAIT_QUEUE_HEAD ( mptctl_wait );
  103. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  104. struct buflist {
  105. u8 *kptr;
  106. int  len;
  107. };
  108. /*
  109.  * Function prototypes. Called from OS entry point mptctl_ioctl.
  110.  * arg contents specific to function.
  111.  */
  112. static int mptctl_fw_download(unsigned long arg);
  113. static int mptctl_getiocinfo (unsigned long arg, unsigned int cmd);
  114. static int mptctl_gettargetinfo (unsigned long arg);
  115. static int mptctl_readtest (unsigned long arg);
  116. static int mptctl_mpt_command (unsigned long arg);
  117. static int mptctl_eventquery (unsigned long arg);
  118. static int mptctl_eventenable (unsigned long arg);
  119. static int mptctl_eventreport (unsigned long arg);
  120. static int mptctl_replace_fw (unsigned long arg);
  121. static int mptctl_do_reset(unsigned long arg);
  122. static int mptctl_compaq_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
  123. static int mptctl_cpq_getpciinfo(unsigned long arg);
  124. static int mptctl_cpq_getdriver(unsigned long arg);
  125. static int mptctl_cpq_ctlr_status(unsigned long arg);
  126. static int mptctl_cpq_target_address(unsigned long arg);
  127. static int mptctl_cpq_passthru(unsigned long arg);
  128. static int mptctl_compaq_scsiio(VENDOR_IOCTL_REQ *pVenReq, cpqfc_passthru_t *pPass);
  129. /*
  130.  * Private function calls.
  131.  */
  132. static int mptctl_do_mpt_command (struct mpt_ioctl_command karg, char *mfPtr, int local);
  133. static int mptctl_do_fw_download(int ioc, char *ufwbuf, size_t fwlen);
  134. static MptSge_t *kbuf_alloc_2_sgl( int bytes, u32 dir, int sge_offset, int *frags,
  135. struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc);
  136. static void kfree_sgl( MptSge_t *sgl, dma_addr_t sgl_dma,
  137. struct buflist *buflist, MPT_ADAPTER *ioc);
  138. static void mptctl_timer_expired (unsigned long data);
  139. static int  mptctl_bus_reset(MPT_IOCTL *ioctl);
  140. static int mptctl_set_tm_flags(MPT_SCSI_HOST *hd);
  141. static void mptctl_free_tm_flags(MPT_ADAPTER *ioc);
  142. /*
  143.  * Reset Handler cleanup function
  144.  */
  145. static int  mptctl_ioc_reset(MPT_ADAPTER *ioc, int reset_phase);
  146. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  147. /*
  148.  * Scatter gather list (SGL) sizes and limits...
  149.  */
  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)
  154. //#define MAX_CHAIN_FRAGS 64
  155. //#define MAX_CHAIN_FRAGS (15+15+15+16)
  156. #define MAX_CHAIN_FRAGS (4 * MAX_FRAGS_SPILL2 + 1)
  157. //  Define max sg LIST bytes ( == (#frags + #chains) * 8 bytes each)
  158. //  Works out to: 592d bytes!     (9+1)*8 + 4*(15+1)*8
  159. //                  ^----------------- 80 + 512
  160. #define MAX_SGL_BYTES ((MAX_FRAGS_SPILL1 + 1 + (4 * FRAGS_PER_BUCKET)) * 8)
  161. /* linux only seems to ever give 128kB MAX contiguous (GFP_USER) mem bytes */
  162. #define MAX_KMALLOC_SZ (128*1024)
  163. #define MPT_IOCTL_DEFAULT_TIMEOUT 10 /* Default timeout value (seconds) */
  164. static u32 fwReplyBuffer[16];
  165. static pMPIDefaultReply_t ReplyMsg = NULL;
  166. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  167. /**
  168.  * mptctl_syscall_down - Down the MPT adapter syscall semaphore.
  169.  * @ioc: Pointer to MPT adapter
  170.  * @nonblock: boolean, non-zero if O_NONBLOCK is set
  171.  *
  172.  * All of the ioctl commands can potentially sleep, which is illegal
  173.  * with a spinlock held, thus we perform mutual exclusion here.
  174.  *
  175.  * Returns negative errno on error, or zero for success.
  176.  */
  177. static inline int
  178. mptctl_syscall_down(MPT_ADAPTER *ioc, int nonblock)
  179. {
  180. int rc = 0;
  181. dctlprintk((KERN_INFO MYNAM "::mptctl_syscall_down(%p,%d) calledn", ioc, nonblock));
  182. if (ioc->ioctl->tmPtr != NULL) {
  183. dctlprintk((KERN_INFO MYNAM "::mptctl_syscall_down BUSYn"));
  184. return -EBUSY;
  185. }
  186. #if defined(__sparc__) && defined(__sparc_v9__) /*{*/
  187. if (!nonblock) {
  188. if (down_interruptible(&mptctl_syscall_sem_ioc[ioc->id]))
  189. rc = -ERESTARTSYS;
  190. } else {
  191. rc = -EPERM;
  192. }
  193. #else
  194. if (nonblock) {
  195. if (down_trylock(&mptctl_syscall_sem_ioc[ioc->id]))
  196. rc = -EAGAIN;
  197. } else {
  198. if (down_interruptible(&mptctl_syscall_sem_ioc[ioc->id]))
  199. rc = -ERESTARTSYS;
  200. }
  201. #endif
  202. dctlprintk((KERN_INFO MYNAM "::mptctl_syscall_down return %dn", rc));
  203. return rc;
  204. }
  205. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  206. /*
  207.  *  This is the callback for any message we have posted. The message itself
  208.  *  will be returned to the message pool when we return from the IRQ
  209.  *
  210.  *  This runs in irq context so be short and sweet.
  211.  */
  212. static int
  213. mptctl_reply(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req, MPT_FRAME_HDR *reply)
  214. {
  215. char *sense_data;
  216. int sz, req_index;
  217. u16 iocStatus;
  218. u8 cmd;
  219. dctlprintk((MYIOC_s_INFO_FMT ": mptctl_reply()!n", ioc->name));
  220. if (req)
  221.  cmd = req->u.hdr.Function;
  222. else
  223. return 1;
  224. if (ioc->ioctl) {
  225. /* If timer is not running, then an error occurred.
  226.  * A timeout will call the reset routine to reload the messaging
  227.  * queues.
  228.  * Main callback will free message and reply frames.
  229.  */
  230. if (reply && (cmd == MPI_FUNCTION_SCSI_TASK_MGMT) &&
  231.     (ioc->ioctl->status & MPT_IOCTL_STATUS_TMTIMER_ACTIVE)) {
  232. /* This is internally generated TM
  233.  */
  234. del_timer (&ioc->ioctl->TMtimer);
  235. ioc->ioctl->status &= ~MPT_IOCTL_STATUS_TMTIMER_ACTIVE;
  236. mptctl_free_tm_flags(ioc);
  237. /* If TM failed, reset the timer on the existing command,
  238.  * will trigger an adapter reset.
  239.  */
  240. iocStatus = reply->u.reply.IOCStatus & MPI_IOCSTATUS_MASK;
  241. if (iocStatus == MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED) {
  242. if (ioc->ioctl->status & MPT_IOCTL_STATUS_TIMER_ACTIVE) {
  243. del_timer (&ioc->ioctl->timer);
  244. ioc->ioctl->timer.expires = jiffies + HZ;
  245. add_timer(&ioc->ioctl->timer);
  246. }
  247. }
  248. ioc->ioctl->tmPtr = NULL;
  249. } else if (ioc->ioctl->status & MPT_IOCTL_STATUS_TIMER_ACTIVE) {
  250. /* Delete this timer
  251.  */
  252. del_timer (&ioc->ioctl->timer);
  253. ioc->ioctl->status &= ~MPT_IOCTL_STATUS_TIMER_ACTIVE;
  254. /* Set the overall status byte.  Good if:
  255.  * IOC status is good OR if no reply and a SCSI IO request
  256.  */
  257. if (reply) {
  258. /* Copy the reply frame (which much exist
  259.  * for non-SCSI I/O) to the IOC structure.
  260.  */
  261. dctlprintk((MYIOC_s_INFO_FMT ": Copying Reply Frame @%p to IOC!n",
  262. ioc->name, reply));
  263. memcpy(ioc->ioctl->ReplyFrame, reply,
  264. MIN(ioc->reply_sz, 4*reply->u.reply.MsgLength));
  265. ioc->ioctl->status |= MPT_IOCTL_STATUS_RF_VALID;
  266. /* Set the command status to GOOD if IOC Status is GOOD
  267.  * OR if SCSI I/O cmd and data underrun or recovered error.
  268.  */
  269. iocStatus = reply->u.reply.IOCStatus & MPI_IOCSTATUS_MASK;
  270. if (iocStatus  == MPI_IOCSTATUS_SUCCESS)
  271. ioc->ioctl->status |= MPT_IOCTL_STATUS_COMMAND_GOOD;
  272. if ((cmd == MPI_FUNCTION_SCSI_IO_REQUEST) ||
  273. (cmd == MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH)) {
  274. ioc->ioctl->reset &= ~MPTCTL_RESET_OK;
  275. if ((iocStatus == MPI_IOCSTATUS_SCSI_DATA_UNDERRUN) ||
  276. (iocStatus == MPI_IOCSTATUS_SCSI_RECOVERED_ERROR)) {
  277. ioc->ioctl->status |= MPT_IOCTL_STATUS_COMMAND_GOOD;
  278. }
  279. }
  280. /* Copy the sense data - if present
  281.  */
  282. if ((cmd == MPI_FUNCTION_SCSI_IO_REQUEST) &&
  283. (reply->u.sreply.SCSIState & MPI_SCSI_STATE_AUTOSENSE_VALID)){
  284. sz = req->u.scsireq.SenseBufferLength;
  285. req_index = le16_to_cpu(req->u.frame.hwhdr.msgctxu.fld.req_idx);
  286. sense_data = ((u8 *)ioc->sense_buf_pool + (req_index * MPT_SENSE_BUFFER_ALLOC));
  287. memcpy(ioc->ioctl->sense, sense_data, sz);
  288. ioc->ioctl->status |= MPT_IOCTL_STATUS_SENSE_VALID;
  289. }
  290. if (cmd == MPI_FUNCTION_SCSI_TASK_MGMT)
  291. mptctl_free_tm_flags(ioc);
  292. } else if ((cmd == MPI_FUNCTION_SCSI_IO_REQUEST) ||
  293. (cmd == MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH)) {
  294. ioc->ioctl->status |= MPT_IOCTL_STATUS_COMMAND_GOOD;
  295. ioc->ioctl->reset &= ~MPTCTL_RESET_OK;
  296. }
  297. /* We are done, issue wake up
  298.  */
  299. ioc->ioctl->wait_done = 1;
  300. wake_up (&mptctl_wait);
  301. } else if (reply && cmd == MPI_FUNCTION_FW_DOWNLOAD) {
  302. /* Two paths to FW DOWNLOAD! */
  303. // NOTE: Expects/requires non-Turbo reply!
  304. dctlprintk((MYIOC_s_INFO_FMT ":Caching MPI_FUNCTION_FW_DOWNLOAD reply!n",
  305. ioc->name));
  306. memcpy(fwReplyBuffer, reply, MIN(sizeof(fwReplyBuffer), 4*reply->u.reply.MsgLength));
  307. ReplyMsg = (pMPIDefaultReply_t) fwReplyBuffer;
  308. }
  309. }
  310. return 1;
  311. }
  312. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  313. /* mptctl_timer_expired
  314.  *
  315.  * Call back for timer process. Used only for ioctl functionality.
  316.  *
  317.  */
  318. static void mptctl_timer_expired (unsigned long data)
  319. {
  320. MPT_IOCTL *ioctl = (MPT_IOCTL *) data;
  321. int rc = 1;
  322. dctlprintk((KERN_NOTICE MYNAM ": Timer Expired! Host %dn",
  323. ioctl->ioc->id));
  324. if (ioctl == NULL)
  325. return;
  326. if (ioctl->reset & MPTCTL_RESET_OK)
  327. rc = mptctl_bus_reset(ioctl);
  328. if (rc) {
  329. /* Issue a reset for this device.
  330.  * The IOC is not responding.
  331.  */
  332. mpt_HardResetHandler(ioctl->ioc, NO_SLEEP);
  333. }
  334. return;
  335. }
  336. /* mptctl_bus_reset
  337.  *
  338.  * Bus reset code.
  339.  *
  340.  */
  341. static int mptctl_bus_reset(MPT_IOCTL *ioctl)
  342. {
  343. MPT_FRAME_HDR *mf;
  344. SCSITaskMgmt_t *pScsiTm;
  345. MPT_SCSI_HOST *hd;
  346. int  ii;
  347. int  retval;
  348. ioctl->reset &= ~MPTCTL_RESET_OK;
  349. if (ioctl->ioc->sh == NULL)
  350. return -EPERM;
  351. hd = (MPT_SCSI_HOST *) ioctl->ioc->sh->hostdata;
  352. if (hd == NULL)
  353. return -EPERM;
  354. /* Single threading ....
  355.  */
  356. if (mptctl_set_tm_flags(hd) != 0)
  357. return -EPERM;
  358. /* Send request
  359.  */
  360. if ((mf = mpt_get_msg_frame(mptctl_id, ioctl->ioc->id)) == NULL) {
  361. dtmprintk((MYIOC_s_WARN_FMT "IssueTaskMgmt, no msg frames!!n",
  362. ioctl->ioc->name));
  363. mptctl_free_tm_flags(ioctl->ioc);
  364. return -ENOMEM;
  365. }
  366. dtmprintk((MYIOC_s_INFO_FMT "IssueTaskMgmt request @ %pn",
  367. ioctl->ioc->name, mf));
  368. pScsiTm = (SCSITaskMgmt_t *) mf;
  369. pScsiTm->TargetID = ioctl->target;
  370. pScsiTm->Bus = hd->port; /* 0 */
  371. pScsiTm->ChainOffset = 0;
  372. pScsiTm->Function = MPI_FUNCTION_SCSI_TASK_MGMT;
  373. pScsiTm->Reserved = 0;
  374. pScsiTm->TaskType = MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS;
  375. pScsiTm->Reserved1 = 0;
  376. pScsiTm->MsgFlags = MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION;
  377. for (ii= 0; ii < 8; ii++)
  378. pScsiTm->LUN[ii] = 0;
  379. for (ii=0; ii < 7; ii++)
  380. pScsiTm->Reserved2[ii] = 0;
  381. pScsiTm->TaskMsgContext = 0;
  382. dtmprintk((MYIOC_s_INFO_FMT "mptctl_bus_reset: issued.n", ioctl->ioc->name));
  383. ioctl->tmPtr = mf;
  384. ioctl->TMtimer.expires = jiffies + HZ * 20; /* 20 seconds */
  385. ioctl->status |= MPT_IOCTL_STATUS_TMTIMER_ACTIVE;
  386. add_timer(&ioctl->TMtimer);
  387. retval = mpt_send_handshake_request(mptctl_id, ioctl->ioc->id,
  388. sizeof(SCSITaskMgmt_t), (u32*)pScsiTm, NO_SLEEP);
  389. if (retval != 0) {
  390. dtmprintk((MYIOC_s_WARN_FMT "_send_handshake FAILED!"
  391. " (hd %p, ioc %p, mf %p) n", ioctl->ioc->name, hd, hd->ioc, mf));
  392. mptctl_free_tm_flags(ioctl->ioc);
  393. del_timer(&ioctl->TMtimer);
  394. mpt_free_msg_frame(mptctl_id, ioctl->ioc->id, mf);
  395. ioctl->tmPtr = NULL;
  396. }
  397. return retval;
  398. }
  399. static int
  400. mptctl_set_tm_flags(MPT_SCSI_HOST *hd) {
  401. unsigned long flags;
  402. spin_lock_irqsave(&hd->ioc->FreeQlock, flags);
  403. #ifdef MPT_SCSI_USE_NEW_EH
  404. if (hd->tmState == TM_STATE_NONE) {
  405. hd->tmState = TM_STATE_IN_PROGRESS;
  406. hd->tmPending = 1;
  407. spin_unlock_irqrestore(&hd->ioc->FreeQlock, flags);
  408. } else {
  409. spin_unlock_irqrestore(&hd->ioc->FreeQlock, flags);
  410. return -EBUSY;
  411. }
  412. #else
  413. if (hd->tmPending) {
  414. spin_unlock_irqrestore(&hd->ioc->FreeQlock, flags);
  415. return -EBUSY;
  416. } else {
  417. hd->tmPending = 1;
  418. spin_unlock_irqrestore(&hd->ioc->FreeQlock, flags);
  419. }
  420. #endif
  421. return 0;
  422. }
  423. static void
  424. mptctl_free_tm_flags(MPT_ADAPTER *ioc)
  425. {
  426. MPT_SCSI_HOST * hd;
  427. unsigned long flags;
  428. hd = (MPT_SCSI_HOST *) ioc->sh->hostdata;
  429. if (hd == NULL)
  430. return;
  431. spin_lock_irqsave(&ioc->FreeQlock, flags);
  432. #ifdef MPT_SCSI_USE_NEW_EH
  433. hd->tmState = TM_STATE_ERROR;
  434. hd->tmPending = 0;
  435. spin_unlock_irqrestore(&ioc->FreeQlock, flags);
  436. #else
  437. hd->tmPending = 0;
  438. spin_unlock_irqrestore(&ioc->FreeQlock, flags);
  439. #endif
  440. return;
  441. }
  442. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  443. /* mptctl_ioc_reset
  444.  *
  445.  * Clean-up functionality. Used only if there has been a
  446.  * reload of the FW due.
  447.  *
  448.  */
  449. static int
  450. mptctl_ioc_reset(MPT_ADAPTER *ioc, int reset_phase)
  451. {
  452. MPT_IOCTL *ioctl = ioc->ioctl;
  453. dctlprintk((KERN_INFO MYNAM ": IOC %s_reset routed to IOCTL driver!n",
  454. reset_phase==MPT_IOC_PRE_RESET ? "pre" : "post"));
  455. if (reset_phase == MPT_IOC_PRE_RESET){
  456. /* Someone has called the reset handler to
  457.  * do a hard reset. No more replies from the FW.
  458.  * Delete the timer. TM flags cleaned up by SCSI driver.
  459.  * Do not need to free msg frame, as re-initialized
  460.  */
  461. if (ioctl && (ioctl->status & MPT_IOCTL_STATUS_TIMER_ACTIVE)){
  462. del_timer(&ioctl->timer);
  463. }
  464. if (ioctl && (ioctl->status & MPT_IOCTL_STATUS_TMTIMER_ACTIVE)){
  465. ioctl->status &= ~MPT_IOCTL_STATUS_TMTIMER_ACTIVE;
  466. del_timer(&ioctl->TMtimer);
  467. mpt_free_msg_frame(mptctl_id, ioc->id, ioctl->tmPtr);
  468. }
  469. } else {
  470. /* Set the status and continue IOCTL
  471.  * processing. All memory will be free'd
  472.  * by originating thread after wake_up is
  473.  * called.
  474.  */
  475. if (ioctl && (ioctl->status & MPT_IOCTL_STATUS_TIMER_ACTIVE)){
  476. ioctl->status = MPT_IOCTL_STATUS_DID_IOCRESET;
  477. /* Wake up the calling process
  478.  */
  479. ioctl->wait_done = 1;
  480. wake_up(&mptctl_wait);
  481. }
  482. }
  483. return 1;
  484. }
  485. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  486. /*
  487.  *  struct file_operations functionality.
  488.  *  Members:
  489.  * llseek, write, read, ioctl, open, release
  490.  */
  491. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  492. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,9)
  493. static loff_t
  494. mptctl_llseek(struct file *file, loff_t offset, int origin)
  495. {
  496. return -ESPIPE;
  497. }
  498. #define no_llseek mptctl_llseek
  499. #endif
  500. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  501. static ssize_t
  502. mptctl_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
  503. {
  504. printk(KERN_ERR MYNAM ": ioctl WRITE not yet supportedn");
  505. return 0;
  506. }
  507. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  508. static ssize_t
  509. mptctl_read(struct file *file, char *buf, size_t count, loff_t *ptr)
  510. {
  511. printk(KERN_ERR MYNAM ": ioctl READ not yet supportedn");
  512. return 0;
  513. }
  514. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  515. /*
  516.  *  MPT ioctl handler
  517.  *  cmd - specify the particular IOCTL command to be issued
  518.  *  arg - data specific to the command. Must not be null.
  519.  */
  520. static int
  521. mptctl_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  522. {
  523. mpt_ioctl_header *uhdr = (mpt_ioctl_header *) arg;
  524. mpt_ioctl_header  khdr;
  525. int iocnum;
  526. unsigned iocnumX;
  527. int nonblock = (file->f_flags & O_NONBLOCK);
  528. int ret;
  529. MPT_ADAPTER *iocp = NULL;
  530. dctlprintk(("mptctl_ioctl() calledn"));
  531. if (copy_from_user(&khdr, uhdr, sizeof(khdr))) {
  532. printk(KERN_ERR "%s::mptctl_ioctl() @%d - "
  533. "Unable to copy mpt_ioctl_header data @ %pn",
  534. __FILE__, __LINE__, (void*)uhdr);
  535. return -EFAULT;
  536. }
  537. ret = -ENXIO; /* (-6) No such device or address */
  538. /* Test for Compaq-specific IOCTL's.
  539.  */
  540. if ((cmd == CPQFCTS_GETPCIINFO) || (cmd == CPQFCTS_CTLR_STATUS) ||
  541. (cmd == CPQFCTS_GETDRIVER) || (cmd == CPQFCTS_SCSI_PASSTHRU) ||
  542. (cmd == CPQFCTS_SCSI_IOCTL_FC_TARGET_ADDRESS))
  543. return mptctl_compaq_ioctl(file, cmd, arg);
  544. /* Verify intended MPT adapter - set iocnum and the adapter
  545.  * pointer (iocp)
  546.  */
  547. iocnumX = khdr.iocnum & 0xFF;
  548. if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
  549.     (iocp == NULL)) {
  550. dtmprintk((KERN_ERR "%s::mptctl_ioctl() @%d - ioc%d not found!n",
  551. __FILE__, __LINE__, iocnumX));
  552. return -ENODEV;
  553. }
  554. /* Handle those commands that are just returning
  555.  * information stored in the driver.
  556.  * These commands should never time out and are unaffected
  557.  * by TM and FW reloads.
  558.  */
  559. if ((cmd & ~IOCSIZE_MASK) == (MPTIOCINFO & ~IOCSIZE_MASK)) {
  560. return mptctl_getiocinfo(arg, _IOC_SIZE(cmd));
  561. } else if (cmd == MPTTARGETINFO) {
  562. return mptctl_gettargetinfo(arg);
  563. } else if (cmd == MPTTEST) {
  564. return mptctl_readtest(arg);
  565. } else if (cmd == MPTEVENTQUERY) {
  566. return mptctl_eventquery(arg);
  567. } else if (cmd == MPTEVENTENABLE) {
  568. return mptctl_eventenable(arg);
  569. } else if (cmd == MPTEVENTREPORT) {
  570. return mptctl_eventreport(arg);
  571. } else if (cmd == MPTFWREPLACE) {
  572. return mptctl_replace_fw(arg);
  573. }
  574. /* All of these commands require an interrupt or
  575.  * are unknown/illegal.
  576.  */
  577. if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
  578. return ret;
  579. dctlprintk((MYIOC_s_INFO_FMT ": mptctl_ioctl()n", iocp->name));
  580. switch(cmd) {
  581. case MPTFWDOWNLOAD:
  582. ret = mptctl_fw_download(arg);
  583. break;
  584. case MPTCOMMAND:
  585. ret = mptctl_mpt_command(arg);
  586. break;
  587. case MPTHARDRESET:
  588. ret = mptctl_do_reset(arg);
  589. break;
  590. default:
  591. ret = -EINVAL;
  592. }
  593. up(&mptctl_syscall_sem_ioc[iocp->id]);
  594. return ret;
  595. }
  596. static int mptctl_do_reset(unsigned long arg)
  597. {
  598. struct mpt_ioctl_diag_reset *urinfo = (struct mpt_ioctl_diag_reset *) arg;
  599. struct mpt_ioctl_diag_reset krinfo;
  600. MPT_ADAPTER *iocp;
  601. dctlprintk((KERN_INFO "mptctl_do_reset called.n"));
  602. if (copy_from_user(&krinfo, urinfo, sizeof(struct mpt_ioctl_diag_reset))) {
  603. printk(KERN_ERR "%s@%d::mptctl_do_reset - "
  604. "Unable to copy mpt_ioctl_diag_reset struct @ %pn",
  605. __FILE__, __LINE__, (void*)urinfo);
  606. return -EFAULT;
  607. }
  608. if (mpt_verify_adapter(krinfo.hdr.iocnum, &iocp) < 0) {
  609. dtmprintk((KERN_ERR "%s@%d::mptctl_do_reset - ioc%d not found!n",
  610. __FILE__, __LINE__, krinfo.hdr.iocnum));
  611. return -ENODEV; /* (-6) No such device or address */
  612. }
  613. if (mpt_HardResetHandler(iocp, NO_SLEEP) != 0) {
  614. printk (KERN_ERR "%s@%d::mptctl_do_reset - reset failed.n",
  615. __FILE__, __LINE__);
  616. return -1;
  617. }
  618. return 0;
  619. }
  620. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  621. static int mptctl_open(struct inode *inode, struct file *file)
  622. {
  623. /*
  624.  * Should support multiple management users
  625.  */
  626. return 0;
  627. }
  628. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  629. static int mptctl_release(struct inode *inode, struct file *file)
  630. {
  631. return 0;
  632. }
  633. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  634. /*
  635.  * MPT FW download function.  Cast the arg into the mpt_fw_xfer structure.
  636.  * This structure contains: iocnum, firmware length (bytes),
  637.  *      pointer to user space memory where the fw image is stored.
  638.  *
  639.  * Outputs: None.
  640.  * Return: 0 if successful
  641.  * -EFAULT if data unavailable
  642.  * -ENXIO  if no such device
  643.  * -EAGAIN if resource problem
  644.  * -ENOMEM if no memory for SGE
  645.  * -EMLINK if too many chain buffers required
  646.  * -EBADRQC if adapter does not support FW download
  647.  * -EBUSY if adapter is busy
  648.  * -ENOMSG if FW upload returned bad status
  649.  */
  650. static int
  651. mptctl_fw_download(unsigned long arg)
  652. {
  653. struct mpt_fw_xfer *ufwdl = (struct mpt_fw_xfer *) arg;
  654. struct mpt_fw_xfer  kfwdl;
  655. dctlprintk((KERN_INFO "mptctl_fwdl called. mptctl_id = %xhn", mptctl_id)); //tc
  656. if (copy_from_user(&kfwdl, ufwdl, sizeof(struct mpt_fw_xfer))) {
  657. printk(KERN_ERR "%s@%d::_ioctl_fwdl - "
  658. "Unable to copy mpt_fw_xfer struct @ %pn",
  659. __FILE__, __LINE__, (void*)ufwdl);
  660. return -EFAULT;
  661. }
  662. return mptctl_do_fw_download(kfwdl.iocnum, kfwdl.bufp, kfwdl.fwlen);
  663. }
  664. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  665. /*
  666.  * FW Download engine.
  667.  * Outputs: None.
  668.  * Return: 0 if successful
  669.  * -EFAULT if data unavailable
  670.  * -ENXIO  if no such device
  671.  * -EAGAIN if resource problem
  672.  * -ENOMEM if no memory for SGE
  673.  * -EMLINK if too many chain buffers required
  674.  * -EBADRQC if adapter does not support FW download
  675.  * -EBUSY if adapter is busy
  676.  * -ENOMSG if FW upload returned bad status
  677.  */
  678. static int
  679. mptctl_do_fw_download(int ioc, char *ufwbuf, size_t fwlen)
  680. {
  681. FWDownload_t *dlmsg;
  682. MPT_FRAME_HDR *mf;
  683. MPT_ADAPTER *iocp;
  684. FWDownloadTCSGE_t *ptsge;
  685. MptSge_t *sgl, *sgIn;
  686. char *sgOut;
  687. struct buflist *buflist;
  688. struct buflist *bl;
  689. dma_addr_t  sgl_dma;
  690. int  ret;
  691. int  numfrags = 0;
  692. int  maxfrags;
  693. int  n = 0;
  694. u32  sgdir;
  695. u32  nib;
  696. int  fw_bytes_copied = 0;
  697. int  i;
  698. int  cntdn;
  699. int  sge_offset = 0;
  700. u16  iocstat;
  701. dctlprintk((KERN_INFO "mptctl_do_fwdl called. mptctl_id = %xh.n", mptctl_id));
  702. dctlprintk((KERN_INFO "DbG: kfwdl.bufp  = %pn", ufwbuf));
  703. dctlprintk((KERN_INFO "DbG: kfwdl.fwlen = %dn", (int)fwlen));
  704. dctlprintk((KERN_INFO "DbG: kfwdl.ioc   = %04xhn", ioc));
  705. if ((ioc = mpt_verify_adapter(ioc, &iocp)) < 0) {
  706. dtmprintk(("%s@%d::_ioctl_fwdl - ioc%d not found!n",
  707. __FILE__, __LINE__, ioc));
  708. return -ENODEV; /* (-6) No such device or address */
  709. }
  710. /*  Valid device. Get a message frame and construct the FW download message.
  711.  */
  712. if ((mf = mpt_get_msg_frame(mptctl_id, ioc)) == NULL)
  713. return -EAGAIN;
  714. dlmsg = (FWDownload_t*) mf;
  715. ptsge = (FWDownloadTCSGE_t *) &dlmsg->SGL;
  716. sgOut = (char *) (ptsge + 1);
  717. /*
  718.  * Construct f/w download request
  719.  */
  720. dlmsg->ImageType = MPI_FW_DOWNLOAD_ITYPE_FW;
  721. dlmsg->Reserved = 0;
  722. dlmsg->ChainOffset = 0;
  723. dlmsg->Function = MPI_FUNCTION_FW_DOWNLOAD;
  724. dlmsg->Reserved1[0] = dlmsg->Reserved1[1] = dlmsg->Reserved1[2] = 0;
  725. dlmsg->MsgFlags = 0;
  726. /* Set up the Transaction SGE.
  727.  */
  728. ptsge->Reserved = 0;
  729. ptsge->ContextSize = 0;
  730. ptsge->DetailsLength = 12;
  731. ptsge->Flags = MPI_SGE_FLAGS_TRANSACTION_ELEMENT;
  732. ptsge->Reserved_0100_Checksum = 0;
  733. ptsge->ImageOffset = 0;
  734. ptsge->ImageSize = cpu_to_le32(fwlen);
  735. /* Add the SGL
  736.  */
  737. /*
  738.  * Need to kmalloc area(s) for holding firmware image bytes.
  739.  * But we need to do it piece meal, using a proper
  740.  * scatter gather list (with 128kB MAX hunks).
  741.  *
  742.  * A practical limit here might be # of sg hunks that fit into
  743.  * a single IOC request frame; 12 or 8 (see below), so:
  744.  * For FC9xx: 12 x 128kB == 1.5 mB (max)
  745.  * For C1030:  8 x 128kB == 1   mB (max)
  746.  * We could support chaining, but things get ugly(ier:)
  747.  *
  748.  * Set the sge_offset to the start of the sgl (bytes).
  749.  */
  750. sgdir = 0x04000000; /* IOC will READ from sys mem */
  751. sge_offset = sizeof(MPIHeader_t) + sizeof(FWDownloadTCSGE_t);
  752. if ((sgl = kbuf_alloc_2_sgl(fwlen, sgdir, sge_offset,
  753.     &numfrags, &buflist, &sgl_dma, iocp)) == NULL)
  754. return -ENOMEM;
  755. /*
  756.  * We should only need SGL with 2 simple_32bit entries (up to 256 kB)
  757.  * for FC9xx f/w image, but calculate max number of sge hunks
  758.  * we can fit into a request frame, and limit ourselves to that.
  759.  * (currently no chain support)
  760.  * maxfrags = (Request Size - FWdownload Size ) / Size of 32 bit SGE
  761.  * Request maxfrags
  762.  * 128 12
  763.  * 96 8
  764.  * 64 4
  765.  */
  766. maxfrags = (iocp->req_sz - sizeof(MPIHeader_t) - sizeof(FWDownloadTCSGE_t)) 
  767. / (sizeof(dma_addr_t) + sizeof(u32));
  768. if (numfrags > maxfrags) {
  769. ret = -EMLINK;
  770. goto fwdl_out;
  771. }
  772. dctlprintk((KERN_INFO "DbG: sgl buffer  = %p, sgfrags = %dn", sgl, numfrags));
  773. /*
  774.  * Parse SG list, copying sgl itself,
  775.  * plus f/w image hunks from user space as we go...
  776.  */
  777. ret = -EFAULT;
  778. sgIn = sgl;
  779. bl = buflist;
  780. for (i=0; i < numfrags; i++) {
  781. /* Get the SGE type: 0 - TCSGE, 3 - Chain, 1 - Simple SGE
  782.  * Skip everything but Simple. If simple, copy from
  783.  * user space into kernel space.
  784.  * Note: we should not have anything but Simple as
  785.  * Chain SGE are illegal.
  786.  */
  787. nib = (sgIn->FlagsLength & 0x30000000) >> 28;
  788. if (nib == 0 || nib == 3) {
  789. ;
  790. } else if (sgIn->Address) {
  791. mpt_add_sge(sgOut, sgIn->FlagsLength, sgIn->Address);
  792. n++;
  793. if (copy_from_user(bl->kptr, ufwbuf+fw_bytes_copied, bl->len)) {
  794. printk(KERN_ERR "%s@%d::_ioctl_fwdl - "
  795. "Unable to copy f/w buffer hunk#%d @ %pn",
  796. __FILE__, __LINE__, n, (void*)ufwbuf);
  797. goto fwdl_out;
  798. }
  799. fw_bytes_copied += bl->len;
  800. }
  801. sgIn++;
  802. bl++;
  803. sgOut += (sizeof(dma_addr_t) + sizeof(u32));
  804. }
  805. #ifdef MPT_DEBUG
  806. {
  807. u32 *m = (u32 *)mf;
  808. printk(KERN_INFO MYNAM ": F/W download request:n" KERN_INFO " ");
  809. for (i=0; i < 7+numfrags*2; i++)
  810. printk(" %08x", le32_to_cpu(m[i]));
  811. printk("n");
  812. }
  813. #endif
  814. /*
  815.  * Finally, perform firmware download.
  816.  */
  817. ReplyMsg = NULL;
  818. mpt_put_msg_frame(mptctl_id, ioc, mf);
  819. /*
  820.  *  Wait until the reply has been received
  821.  */
  822. for (cntdn=HZ*60, i=1; ReplyMsg == NULL; cntdn--, i++) {
  823. if (!cntdn) {
  824. ret = -ETIME;
  825. goto fwdl_out;
  826. }
  827. if (!(i%HZ)) {
  828. dctlprintk((KERN_INFO "DbG::_do_fwdl: "
  829.    "In ReplyMsg loop - iteration %dn",
  830.    i));
  831. }
  832. set_current_state(TASK_INTERRUPTIBLE);
  833. schedule_timeout(1);
  834. }
  835. if (sgl)
  836. kfree_sgl(sgl, sgl_dma, buflist, iocp);
  837. iocstat = le16_to_cpu(ReplyMsg->IOCStatus) & MPI_IOCSTATUS_MASK;
  838. if (iocstat == MPI_IOCSTATUS_SUCCESS) {
  839. printk(KERN_INFO MYNAM ": F/W update successfully sent to %s!n", iocp->name);
  840. return 0;
  841. } else if (iocstat == MPI_IOCSTATUS_INVALID_FUNCTION) {
  842. printk(KERN_WARNING MYNAM ": ?Hmmm...  %s says it doesn't support F/W download!?!n",
  843. iocp->name);
  844. printk(KERN_WARNING MYNAM ": (time to go bang on somebodies door)n");
  845. return -EBADRQC;
  846. } else if (iocstat == MPI_IOCSTATUS_BUSY) {
  847. printk(KERN_WARNING MYNAM ": Warning!  %s says: IOC_BUSY!n", iocp->name);
  848. printk(KERN_WARNING MYNAM ": (try again later?)n");
  849. return -EBUSY;
  850. } else {
  851. printk(KERN_WARNING MYNAM "::ioctl_fwdl() ERROR!  %s returned [bad] status = %04xhn",
  852.     iocp->name, iocstat);
  853. printk(KERN_WARNING MYNAM ": (bad VooDoo)n");
  854. return -ENOMSG;
  855. }
  856. return 0;
  857. fwdl_out:
  858.         kfree_sgl(sgl, sgl_dma, buflist, iocp);
  859. return ret;
  860. }
  861. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  862. /*
  863.  * SGE Allocation routine
  864.  *
  865.  * Inputs: bytes - number of bytes to be transferred
  866.  * sgdir - data direction
  867.  * sge_offset - offset (in bytes) from the start of the request
  868.  * frame to the first SGE
  869.  * ioc - pointer to the mptadapter
  870.  * Outputs: frags - number of scatter gather elements
  871.  * blp - point to the buflist pointer
  872.  * sglbuf_dma - pointer to the (dma) sgl
  873.  * Returns: Null if failes
  874.  * pointer to the (virtual) sgl if successful.
  875.  */
  876. static MptSge_t *
  877. kbuf_alloc_2_sgl(int bytes, u32 sgdir, int sge_offset, int *frags,
  878.  struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc)
  879. {
  880. MptSge_t *sglbuf = NULL; /* pointer to array of SGE */
  881. /* and chain buffers */
  882. struct buflist *buflist = NULL; /* kernel routine */
  883. MptSge_t *sgl;
  884. int  numfrags = 0;
  885. int  fragcnt = 0;
  886. int  alloc_sz = MIN(bytes,MAX_KMALLOC_SZ); // avoid kernel warning msg!
  887. int  bytes_allocd = 0;
  888. int  this_alloc;
  889. dma_addr_t  pa; // phys addr
  890. int  i, buflist_ent;
  891. int  sg_spill = MAX_FRAGS_SPILL1;
  892. int  dir;
  893. /* initialization */
  894. *frags = 0;
  895. *blp = NULL;
  896. /* Allocate and initialize an array of kernel
  897.  * structures for the SG elements.
  898.  */
  899. i = MAX_SGL_BYTES / 8;
  900. buflist = kmalloc(i, GFP_USER);
  901. if (buflist == NULL)
  902. return NULL;
  903. memset(buflist, 0, i);
  904. buflist_ent = 0;
  905. /* Allocate a single block of memory to store the sg elements and
  906.  * the chain buffers.  The calling routine is responsible for
  907.  * copying the data in this array into the correct place in the
  908.  * request and chain buffers.
  909.  */
  910. sglbuf = pci_alloc_consistent(ioc->pcidev, MAX_SGL_BYTES, sglbuf_dma);
  911. if (sglbuf == NULL)
  912. goto free_and_fail;
  913. if (sgdir & 0x04000000)
  914. dir = PCI_DMA_TODEVICE;
  915. else
  916. dir = PCI_DMA_FROMDEVICE;
  917. /* At start:
  918.  * sgl = sglbuf = point to beginning of sg buffer
  919.  * buflist_ent = 0 = first kernel structure
  920.  * sg_spill = number of SGE that can be written before the first
  921.  * chain element.
  922.  *
  923.  */
  924. sgl = sglbuf;
  925. sg_spill = ((ioc->req_sz - sge_offset)/(sizeof(dma_addr_t) + sizeof(u32))) - 1;
  926. while (bytes_allocd < bytes) {
  927. this_alloc = MIN(alloc_sz, bytes-bytes_allocd);
  928. buflist[buflist_ent].len = this_alloc;
  929. buflist[buflist_ent].kptr = pci_alloc_consistent(ioc->pcidev,
  930.  this_alloc,
  931.  &pa);
  932. if (buflist[buflist_ent].kptr == NULL) {
  933. alloc_sz = alloc_sz / 2;
  934. if (alloc_sz == 0) {
  935. printk(KERN_WARNING MYNAM "-SG: No can do - "
  936.     "not enough memory!   :-(n");
  937. printk(KERN_WARNING MYNAM "-SG: (freeing %d frags)n",
  938.     numfrags);
  939. goto free_and_fail;
  940. }
  941. continue;
  942. } else {
  943. dma_addr_t dma_addr;
  944. bytes_allocd += this_alloc;
  945. sgl->FlagsLength = (0x10000000|MPT_SGE_FLAGS_ADDRESSING|sgdir|this_alloc);
  946. dma_addr = pci_map_single(ioc->pcidev, buflist[buflist_ent].kptr, this_alloc, dir);
  947. sgl->Address = dma_addr;
  948. fragcnt++;
  949. numfrags++;
  950. sgl++;
  951. buflist_ent++;
  952. }
  953. if (bytes_allocd >= bytes)
  954. break;
  955. /* Need to chain? */
  956. if (fragcnt == sg_spill) {
  957. printk(KERN_WARNING MYNAM "-SG: No can do - " "Chain required!   :-(n");
  958. printk(KERN_WARNING MYNAM "(freeing %d frags)n", numfrags);
  959. goto free_and_fail;
  960. }
  961. /* overflow check... */
  962. if (numfrags*8 > MAX_SGL_BYTES){
  963. /* GRRRRR... */
  964. printk(KERN_WARNING MYNAM "-SG: No can do - "
  965.     "too many SG frags!   :-(n");
  966. printk(KERN_WARNING MYNAM "-SG: (freeing %d frags)n",
  967.     numfrags);
  968. goto free_and_fail;
  969. }
  970. }
  971. /* Last sge fixup: set LE+eol+eob bits */
  972. sgl[-1].FlagsLength |= 0xC1000000;
  973. *frags = numfrags;
  974. *blp = buflist;
  975. dctlprintk((KERN_INFO MYNAM "-SG: kbuf_alloc_2_sgl() - "
  976.    "%d SG frags generated!n",
  977.    numfrags));
  978. dctlprintk((KERN_INFO MYNAM "-SG: kbuf_alloc_2_sgl() - "
  979.    "last (big) alloc_sz=%dn",
  980.    alloc_sz));
  981. return sglbuf;
  982. free_and_fail:
  983. if (sglbuf != NULL) {
  984. int i;
  985. for (i = 0; i < numfrags; i++) {
  986. dma_addr_t dma_addr;
  987. u8 *kptr;
  988. int len;
  989. if ((sglbuf[i].FlagsLength >> 24) == 0x30)
  990. continue;
  991. dma_addr = sglbuf[i].Address;
  992. kptr = buflist[i].kptr;
  993. len = buflist[i].len;
  994. pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
  995. }
  996. pci_free_consistent(ioc->pcidev, MAX_SGL_BYTES, sglbuf, *sglbuf_dma);
  997. }
  998. kfree(buflist);
  999. return NULL;
  1000. }
  1001. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1002. /*
  1003.  * Routine to free the SGL elements.
  1004.  */
  1005. static void
  1006. kfree_sgl(MptSge_t *sgl, dma_addr_t sgl_dma, struct buflist *buflist, MPT_ADAPTER *ioc)
  1007. {
  1008. MptSge_t *sg = sgl;
  1009. struct buflist *bl = buflist;
  1010. u32  nib;
  1011. int  dir;
  1012. int  n = 0;
  1013. if (sg->FlagsLength & 0x04000000)
  1014. dir = PCI_DMA_TODEVICE;
  1015. else
  1016. dir = PCI_DMA_FROMDEVICE;
  1017. nib = (sg->FlagsLength & 0xF0000000) >> 28;
  1018. while (! (nib & 0x4)) { /* eob */
  1019. /* skip ignore/chain. */
  1020. if (nib == 0 || nib == 3) {
  1021. ;
  1022. } else if (sg->Address) {
  1023. dma_addr_t dma_addr;
  1024. void *kptr;
  1025. int len;
  1026. dma_addr = sg->Address;
  1027. kptr = bl->kptr;
  1028. len = bl->len;
  1029. pci_unmap_single(ioc->pcidev, dma_addr, len, dir);
  1030. pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
  1031. n++;
  1032. }
  1033. sg++;
  1034. bl++;
  1035. nib = (le32_to_cpu(sg->FlagsLength) & 0xF0000000) >> 28;
  1036. }
  1037. /* we're at eob! */
  1038. if (sg->Address) {
  1039. dma_addr_t dma_addr;
  1040. void *kptr;
  1041. int len;
  1042. dma_addr = sg->Address;
  1043. kptr = bl->kptr;
  1044. len = bl->len;
  1045. pci_unmap_single(ioc->pcidev, dma_addr, len, dir);
  1046. pci_free_consistent(ioc->pcidev, len, kptr, dma_addr);
  1047. n++;
  1048. }
  1049. pci_free_consistent(ioc->pcidev, MAX_SGL_BYTES, sgl, sgl_dma);
  1050. kfree(buflist);
  1051. dctlprintk((KERN_INFO MYNAM "-SG: Free'd 1 SGL buf + %d kbufs!n", n));
  1052. }
  1053. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1054. /*
  1055.  * mptctl_getiocinfo - Query the host adapter for IOC information.
  1056.  * @arg: User space argument
  1057.  *
  1058.  * Outputs: None.
  1059.  * Return: 0 if successful
  1060.  * -EFAULT if data unavailable
  1061.  * -ENODEV  if no such device/adapter
  1062.  */
  1063. static int
  1064. mptctl_getiocinfo (unsigned long arg, unsigned int data_size)
  1065. {
  1066. struct mpt_ioctl_iocinfo *uarg = (struct mpt_ioctl_iocinfo *) arg;
  1067. struct mpt_ioctl_iocinfo karg;
  1068. MPT_ADAPTER *ioc;
  1069. struct pci_dev *pdev;
  1070. struct Scsi_Host *sh;
  1071. MPT_SCSI_HOST *hd;
  1072. int iocnum;
  1073. int numDevices = 0;
  1074. unsigned int max_id;
  1075. int ii;
  1076. int port;
  1077. int cim_rev;
  1078. u8 revision;
  1079. dctlprintk((": mptctl_getiocinfo called.n"));
  1080. if (data_size == sizeof(struct mpt_ioctl_iocinfo))
  1081. cim_rev = 1;
  1082. else if (data_size == (sizeof(struct mpt_ioctl_iocinfo) - sizeof(struct mpt_ioctl_pci_info)))
  1083. cim_rev = 0;
  1084. else
  1085. return -EFAULT;
  1086. if (copy_from_user(&karg, uarg, data_size)) {
  1087. printk(KERN_ERR "%s@%d::mptctl_getiocinfo - "
  1088. "Unable to read in mpt_ioctl_iocinfo struct @ %pn",
  1089. __FILE__, __LINE__, (void*)uarg);
  1090. return -EFAULT;
  1091. }
  1092. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1093.     (ioc == NULL)) {
  1094. dtmprintk((KERN_ERR "%s::mptctl_getiocinfo() @%d - ioc%d not found!n",
  1095. __FILE__, __LINE__, iocnum));
  1096. return -ENODEV;
  1097. }
  1098. /* Verify the data transfer size is correct.
  1099.  * Ignore the port setting.
  1100.  */
  1101. if (karg.hdr.maxDataSize != data_size) {
  1102. printk(KERN_ERR "%s@%d::mptctl_getiocinfo - "
  1103. "Structure size mismatch. Command not completed.n",
  1104. __FILE__, __LINE__);
  1105. return -EFAULT;
  1106. }
  1107. /* Fill in the data and return the structure to the calling
  1108.  * program
  1109.  */
  1110. if (ioc->chip_type == C1030)
  1111. karg.adapterType = MPT_IOCTL_INTERFACE_SCSI;
  1112. else
  1113. karg.adapterType = MPT_IOCTL_INTERFACE_FC;
  1114. port = karg.hdr.port;
  1115. karg.port = port;
  1116. pdev = (struct pci_dev *) ioc->pcidev;
  1117. karg.pciId = pdev->device;
  1118. pci_read_config_byte(pdev, PCI_CLASS_REVISION, &revision);
  1119. karg.hwRev = revision;
  1120. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
  1121. karg.subSystemDevice = pdev->subsystem_device;
  1122. karg.subSystemVendor = pdev->subsystem_vendor;
  1123. #endif
  1124. if (cim_rev == 1) {
  1125. /* Get the PCI bus, device, and function numbers for the IOC
  1126.  */
  1127. karg.pciInfo.u.bits.busNumber = pdev->bus->number;
  1128. karg.pciInfo.u.bits.deviceNumber = PCI_SLOT( pdev->devfn );
  1129. karg.pciInfo.u.bits.functionNumber = PCI_FUNC( pdev->devfn );
  1130. }
  1131. /* Get number of devices
  1132.          */
  1133. if ((sh = ioc->sh) != NULL) {
  1134.  /* sh->max_id = maximum target ID + 1
  1135.  */
  1136. max_id = sh->max_id - 1;
  1137. hd = (MPT_SCSI_HOST *) sh->hostdata;
  1138. /* Check all of the target structures and
  1139.  * keep a counter.
  1140.  */
  1141. if (hd && hd->Targets) {
  1142. for (ii = 0; ii <= max_id; ii++) {
  1143. if (hd->Targets[ii])
  1144. numDevices++;
  1145. }
  1146. }
  1147. }
  1148. karg.numDevices = numDevices;
  1149. /* Set the BIOS and FW Version
  1150.  */
  1151. karg.FWVersion = ioc->facts.FWVersion.Word;
  1152. karg.BIOSVersion = ioc->biosVersion;
  1153. /* Set the Version Strings.
  1154.  */
  1155. strncpy (karg.driverVersion, MPT_LINUX_PACKAGE_NAME, MPT_IOCTL_VERSION_LENGTH);
  1156. karg.busChangeEvent = 0;
  1157. karg.hostId = ioc->pfacts[port].PortSCSIID;
  1158. karg.rsvd[0] = karg.rsvd[1] = 0;
  1159. /* Copy the data from kernel memory to user memory
  1160.  */
  1161. if (copy_to_user((char *)arg, &karg, data_size)) {
  1162. printk(KERN_ERR "%s@%d::mptctl_getiocinfo - "
  1163. "Unable to write out mpt_ioctl_iocinfo struct @ %pn",
  1164. __FILE__, __LINE__, (void*)uarg);
  1165. return -EFAULT;
  1166. }
  1167. return 0;
  1168. }
  1169. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1170. /*
  1171.  * mptctl_gettargetinfo - Query the host adapter for target information.
  1172.  * @arg: User space argument
  1173.  *
  1174.  * Outputs: None.
  1175.  * Return: 0 if successful
  1176.  * -EFAULT if data unavailable
  1177.  * -ENODEV  if no such device/adapter
  1178.  */
  1179. static int
  1180. mptctl_gettargetinfo (unsigned long arg)
  1181. {
  1182. struct mpt_ioctl_targetinfo *uarg = (struct mpt_ioctl_targetinfo *) arg;
  1183. struct mpt_ioctl_targetinfo karg;
  1184. MPT_ADAPTER *ioc;
  1185. struct Scsi_Host *sh;
  1186. MPT_SCSI_HOST *hd;
  1187. char *pmem;
  1188. int *pdata;
  1189. int iocnum;
  1190. int numDevices = 0;
  1191. unsigned int max_id;
  1192. int ii, jj, lun;
  1193. int maxWordsLeft;
  1194. int numBytes;
  1195. u8 port;
  1196. dctlprintk(("mptctl_gettargetinfo called.n"));
  1197. if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_targetinfo))) {
  1198. printk(KERN_ERR "%s@%d::mptctl_gettargetinfo - "
  1199. "Unable to read in mpt_ioctl_targetinfo struct @ %pn",
  1200. __FILE__, __LINE__, (void*)uarg);
  1201. return -EFAULT;
  1202. }
  1203. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1204.     (ioc == NULL)) {
  1205. dtmprintk((KERN_ERR "%s::mptctl_gettargetinfo() @%d - ioc%d not found!n",
  1206. __FILE__, __LINE__, iocnum));
  1207. return -ENODEV;
  1208. }
  1209. /* Get the port number and set the maximum number of bytes
  1210.  * in the returned structure.
  1211.  * Ignore the port setting.
  1212.  */
  1213. numBytes = karg.hdr.maxDataSize - sizeof(mpt_ioctl_header);
  1214. maxWordsLeft = numBytes/sizeof(int);
  1215. port = karg.hdr.port;
  1216. if (maxWordsLeft <= 0) {
  1217. printk(KERN_ERR "%s::mptctl_gettargetinfo() @%d - no memory available!n",
  1218. __FILE__, __LINE__);
  1219. return -ENOMEM;
  1220. }
  1221. /* Fill in the data and return the structure to the calling
  1222.  * program
  1223.  */
  1224. /* struct mpt_ioctl_targetinfo does not contain sufficient space
  1225.  * for the target structures so when the IOCTL is called, there is
  1226.  * not sufficient stack space for the structure. Allocate memory,
  1227.  * populate the memory, copy back to the user, then free memory.
  1228.  * targetInfo format:
  1229.  * bits 31-24: reserved
  1230.  *      23-16: LUN
  1231.  *      15- 8: Bus Number
  1232.  *       7- 0: Target ID
  1233.  */
  1234. pmem = kmalloc(numBytes, GFP_KERNEL);
  1235. if (pmem == NULL) {
  1236. printk(KERN_ERR "%s::mptctl_gettargetinfo() @%d - no memory available!n",
  1237. __FILE__, __LINE__);
  1238. return -ENOMEM;
  1239. }
  1240. memset(pmem, 0, numBytes);
  1241. pdata =  (int *) pmem;
  1242. /* Get number of devices
  1243.          */
  1244. if ( (sh = ioc->sh) != NULL) {
  1245. max_id = sh->max_id - 1;
  1246. hd = (MPT_SCSI_HOST *) sh->hostdata;
  1247. /* Check all of the target structures.
  1248.  * Save the Id and increment the counter,
  1249.  * if ptr non-null.
  1250.  * sh->max_id = maximum target ID + 1
  1251.  */
  1252. if (hd && hd->Targets) {
  1253. ii = 0;
  1254. while (ii <= max_id) {
  1255. if (hd->Targets[ii]) {
  1256. for (jj = 0; jj <= MPT_LAST_LUN; jj++) {
  1257. lun = (1 << jj);
  1258. if (hd->Targets[ii]->luns & lun) {
  1259. numDevices++;
  1260. *pdata = (jj << 16) | ii;
  1261. --maxWordsLeft;
  1262. pdata++;
  1263. if (maxWordsLeft <= 0) {
  1264. break;
  1265. }
  1266. }
  1267. }
  1268. }
  1269. ii++;
  1270. }
  1271. }
  1272. }
  1273. karg.numDevices = numDevices;
  1274. /* Copy part of the data from kernel memory to user memory
  1275.  */
  1276. if (copy_to_user((char *)arg, &karg,
  1277. sizeof(struct mpt_ioctl_targetinfo))) {
  1278. printk(KERN_ERR "%s@%d::mptctl_gettargetinfo - "
  1279. "Unable to write out mpt_ioctl_targetinfo struct @ %pn",
  1280. __FILE__, __LINE__, (void*)uarg);
  1281. kfree(pmem);
  1282. return -EFAULT;
  1283. }
  1284. /* Copy the remaining data from kernel memory to user memory
  1285.  */
  1286. if (copy_to_user((char *) uarg->targetInfo, pmem, numBytes)) {
  1287. printk(KERN_ERR "%s@%d::mptctl_gettargetinfo - "
  1288. "Unable to write out mpt_ioctl_targetinfo struct @ %pn",
  1289. __FILE__, __LINE__, (void*)pdata);
  1290. kfree(pmem);
  1291. return -EFAULT;
  1292. }
  1293. kfree(pmem);
  1294. return 0;
  1295. }
  1296. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1297. /* MPT IOCTL Test function.
  1298.  *
  1299.  * Outputs: None.
  1300.  * Return: 0 if successful
  1301.  * -EFAULT if data unavailable
  1302.  * -ENODEV  if no such device/adapter
  1303.  */
  1304. static int
  1305. mptctl_readtest (unsigned long arg)
  1306. {
  1307. struct mpt_ioctl_test *uarg = (struct mpt_ioctl_test *) arg;
  1308. struct mpt_ioctl_test  karg;
  1309. MPT_ADAPTER *ioc;
  1310. int iocnum;
  1311. dctlprintk(("mptctl_readtest called.n"));
  1312. if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_test))) {
  1313. printk(KERN_ERR "%s@%d::mptctl_readtest - "
  1314. "Unable to read in mpt_ioctl_test struct @ %pn",
  1315. __FILE__, __LINE__, (void*)uarg);
  1316. return -EFAULT;
  1317. }
  1318. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1319.     (ioc == NULL)) {
  1320. dtmprintk((KERN_ERR "%s::mptctl_readtest() @%d - ioc%d not found!n",
  1321. __FILE__, __LINE__, iocnum));
  1322. return -ENODEV;
  1323. }
  1324. /* Fill in the data and return the structure to the calling
  1325.  * program
  1326.  */
  1327. #ifdef MFCNT
  1328. karg.chip_type = ioc->mfcnt;
  1329. #else
  1330. karg.chip_type = ioc->chip_type;
  1331. #endif
  1332. strncpy (karg.name, ioc->name, MPT_MAX_NAME);
  1333. strncpy (karg.product, ioc->prod_name, MPT_PRODUCT_LENGTH);
  1334. /* Copy the data from kernel memory to user memory
  1335.  */
  1336. if (copy_to_user((char *)arg, &karg, sizeof(struct mpt_ioctl_test))) {
  1337. printk(KERN_ERR "%s@%d::mptctl_readtest - "
  1338. "Unable to write out mpt_ioctl_test struct @ %pn",
  1339. __FILE__, __LINE__, (void*)uarg);
  1340. return -EFAULT;
  1341. }
  1342. return 0;
  1343. }
  1344. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1345. /*
  1346.  * mptctl_eventquery - Query the host adapter for the event types
  1347.  * that are being logged.
  1348.  * @arg: User space argument
  1349.  *
  1350.  * Outputs: None.
  1351.  * Return: 0 if successful
  1352.  * -EFAULT if data unavailable
  1353.  * -ENODEV  if no such device/adapter
  1354.  */
  1355. static int
  1356. mptctl_eventquery (unsigned long arg)
  1357. {
  1358. struct mpt_ioctl_eventquery *uarg = (struct mpt_ioctl_eventquery *) arg;
  1359. struct mpt_ioctl_eventquery  karg;
  1360. MPT_ADAPTER *ioc;
  1361. int iocnum;
  1362. dctlprintk(("mptctl_eventquery called.n"));
  1363. if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventquery))) {
  1364. printk(KERN_ERR "%s@%d::mptctl_eventquery - "
  1365. "Unable to read in mpt_ioctl_eventquery struct @ %pn",
  1366. __FILE__, __LINE__, (void*)uarg);
  1367. return -EFAULT;
  1368. }
  1369. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1370.     (ioc == NULL)) {
  1371. dtmprintk((KERN_ERR "%s::mptctl_eventquery() @%d - ioc%d not found!n",
  1372. __FILE__, __LINE__, iocnum));
  1373. return -ENODEV;
  1374. }
  1375. karg.eventEntries = ioc->eventLogSize;
  1376. karg.eventTypes = ioc->eventTypes;
  1377. /* Copy the data from kernel memory to user memory
  1378.  */
  1379. if (copy_to_user((char *)arg, &karg, sizeof(struct mpt_ioctl_eventquery))) {
  1380. printk(KERN_ERR "%s@%d::mptctl_eventquery - "
  1381. "Unable to write out mpt_ioctl_eventquery struct @ %pn",
  1382. __FILE__, __LINE__, (void*)uarg);
  1383. return -EFAULT;
  1384. }
  1385. return 0;
  1386. }
  1387. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1388. static int
  1389. mptctl_eventenable (unsigned long arg)
  1390. {
  1391. struct mpt_ioctl_eventenable *uarg = (struct mpt_ioctl_eventenable *) arg;
  1392. struct mpt_ioctl_eventenable  karg;
  1393. MPT_ADAPTER *ioc;
  1394. int iocnum;
  1395. dctlprintk(("mptctl_eventenable called.n"));
  1396. if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventenable))) {
  1397. printk(KERN_ERR "%s@%d::mptctl_eventenable - "
  1398. "Unable to read in mpt_ioctl_eventenable struct @ %pn",
  1399. __FILE__, __LINE__, (void*)uarg);
  1400. return -EFAULT;
  1401. }
  1402. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1403.     (ioc == NULL)) {
  1404. dtmprintk((KERN_ERR "%s::mptctl_eventenable() @%d - ioc%d not found!n",
  1405. __FILE__, __LINE__, iocnum));
  1406. return -ENODEV;
  1407. }
  1408. if (ioc->events == NULL) {
  1409. /* Have not yet allocated memory - do so now.
  1410.  */
  1411. int sz = MPTCTL_EVENT_LOG_SIZE * sizeof(MPT_IOCTL_EVENTS);
  1412. ioc->events = kmalloc(sz, GFP_KERNEL);
  1413. if (ioc->events == NULL) {
  1414. printk(KERN_ERR MYNAM ": ERROR - Insufficient memory to add adapter!n");
  1415. return -ENOMEM;
  1416. }
  1417. memset(ioc->events, 0, sz);
  1418. ioc->alloc_total += sz;
  1419. ioc->eventLogSize = MPTCTL_EVENT_LOG_SIZE;
  1420. ioc->eventContext = 0;
  1421.         }
  1422. /* Update the IOC event logging flag.
  1423.  */
  1424. ioc->eventTypes = karg.eventTypes;
  1425. return 0;
  1426. }
  1427. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1428. static int
  1429. mptctl_eventreport (unsigned long arg)
  1430. {
  1431. struct mpt_ioctl_eventreport *uarg = (struct mpt_ioctl_eventreport *) arg;
  1432. struct mpt_ioctl_eventreport  karg;
  1433. MPT_ADAPTER  *ioc;
  1434. int  iocnum;
  1435. int  numBytes, maxEvents, max;
  1436. dctlprintk(("mptctl_eventreport called.n"));
  1437. if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_eventreport))) {
  1438. printk(KERN_ERR "%s@%d::mptctl_eventreport - "
  1439. "Unable to read in mpt_ioctl_eventreport struct @ %pn",
  1440. __FILE__, __LINE__, (void*)uarg);
  1441. return -EFAULT;
  1442. }
  1443. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1444.     (ioc == NULL)) {
  1445. dtmprintk((KERN_ERR "%s::mptctl_eventreport() @%d - ioc%d not found!n",
  1446. __FILE__, __LINE__, iocnum));
  1447. return -ENODEV;
  1448. }
  1449. numBytes = karg.hdr.maxDataSize - sizeof(mpt_ioctl_header);
  1450. maxEvents = numBytes/sizeof(MPT_IOCTL_EVENTS);
  1451. max = ioc->eventLogSize < maxEvents ? ioc->eventLogSize : maxEvents;
  1452. /* If fewer than 1 event is requested, there must have
  1453.  * been some type of error.
  1454.  */
  1455. if ((max < 1) || !ioc->events)
  1456. return -ENODATA;
  1457. /* Copy the data from kernel memory to user memory
  1458.  */
  1459. numBytes = max * sizeof(MPT_IOCTL_EVENTS);
  1460. if (copy_to_user((char *) uarg->eventData, ioc->events, numBytes)) {
  1461. printk(KERN_ERR "%s@%d::mptctl_eventreport - "
  1462. "Unable to write out mpt_ioctl_eventreport struct @ %pn",
  1463. __FILE__, __LINE__, (void*)ioc->events);
  1464. return -EFAULT;
  1465. }
  1466. return 0;
  1467. }
  1468. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1469. static int
  1470. mptctl_replace_fw (unsigned long arg)
  1471. {
  1472. struct mpt_ioctl_replace_fw *uarg = (struct mpt_ioctl_replace_fw *) arg;
  1473. struct mpt_ioctl_replace_fw  karg;
  1474. MPT_ADAPTER  *ioc;
  1475. fw_image_t  **fwmem = NULL;
  1476. int  iocnum;
  1477. int  newFwSize;
  1478. int  num_frags, alloc_sz;
  1479. int  ii;
  1480. u32  offset;
  1481. dctlprintk(("mptctl_replace_fw called.n"));
  1482. if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_replace_fw))) {
  1483. printk(KERN_ERR "%s@%d::mptctl_replace_fw - "
  1484. "Unable to read in mpt_ioctl_replace_fw struct @ %pn",
  1485. __FILE__, __LINE__, (void*)uarg);
  1486. return -EFAULT;
  1487. }
  1488. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1489.     (ioc == NULL)) {
  1490. dtmprintk((KERN_ERR "%s::mptctl_replace_fw() @%d - ioc%d not found!n",
  1491. __FILE__, __LINE__, iocnum));
  1492. return -ENODEV;
  1493. }
  1494. /* If not caching FW, return 0
  1495.  */
  1496. if ((ioc->cached_fw == NULL) && (ioc->alt_ioc) && (ioc->alt_ioc->cached_fw == NULL))
  1497. return 0;
  1498. /* Allocate memory for the new FW image
  1499.  */
  1500. newFwSize = karg.newImageSize;
  1501. fwmem = mpt_alloc_fw_memory(ioc, newFwSize, &num_frags, &alloc_sz); 
  1502. if (fwmem == NULL)
  1503. return -ENOMEM;
  1504. offset = 0;
  1505. for (ii = 0; ii < num_frags; ii++) {
  1506. /* Copy the data from user memory to kernel space
  1507.  */
  1508. if (copy_from_user(fwmem[ii]->fw, uarg->newImage + offset, fwmem[ii]->size)) {
  1509. printk(KERN_ERR "%s@%d::mptctl_replace_fw - "
  1510. "Unable to read in mpt_ioctl_replace_fw image @ %pn",
  1511. __FILE__, __LINE__, (void*)uarg);
  1512. mpt_free_fw_memory(ioc, fwmem);
  1513. return -EFAULT;
  1514. }
  1515. offset += fwmem[ii]->size;
  1516. }
  1517. /* Free the old FW image 
  1518.  */
  1519. if (ioc->cached_fw) {
  1520. mpt_free_fw_memory(ioc, 0);
  1521. ioc->cached_fw = fwmem;
  1522. ioc->alloc_total += alloc_sz;
  1523. } else if ((ioc->alt_ioc) && (ioc->alt_ioc->cached_fw)) {
  1524. mpt_free_fw_memory(ioc->alt_ioc, 0);
  1525. ioc->alt_ioc->cached_fw = fwmem;
  1526. ioc->alt_ioc->alloc_total += alloc_sz;
  1527. }
  1528. /* Update IOCFactsReply
  1529.  */
  1530. ioc->facts.FWImageSize = newFwSize;
  1531. if (ioc->alt_ioc)
  1532. ioc->alt_ioc->facts.FWImageSize = newFwSize;
  1533. return 0;
  1534. }
  1535. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1536. /* MPT IOCTL MPTCOMMAND function.
  1537.  * Cast the arg into the mpt_ioctl_mpt_command structure.
  1538.  *
  1539.  * Outputs: None.
  1540.  * Return: 0 if successful
  1541.  * -EBUSY  if previous command timout and IOC reset is not complete.
  1542.  * -EFAULT if data unavailable
  1543.  * -ENODEV if no such device/adapter
  1544.  * -ETIME if timer expires
  1545.  * -ENOMEM if memory allocation error
  1546.  */
  1547. static int
  1548. mptctl_mpt_command (unsigned long arg)
  1549. {
  1550. struct mpt_ioctl_command *uarg = (struct mpt_ioctl_command *) arg;
  1551. struct mpt_ioctl_command  karg;
  1552. MPT_ADAPTER *ioc;
  1553. int iocnum;
  1554. int rc;
  1555. dctlprintk(("mptctl_command called.n"));
  1556. if (copy_from_user(&karg, uarg, sizeof(struct mpt_ioctl_command))) {
  1557. printk(KERN_ERR "%s@%d::mptctl_mpt_command - "
  1558. "Unable to read in mpt_ioctl_command struct @ %pn",
  1559. __FILE__, __LINE__, (void*)uarg);
  1560. return -EFAULT;
  1561. }
  1562. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1563.     (ioc == NULL)) {
  1564. dtmprintk((KERN_ERR "%s::mptctl_mpt_command() @%d - ioc%d not found!n",
  1565. __FILE__, __LINE__, iocnum));
  1566. return -ENODEV;
  1567. }
  1568. rc = mptctl_do_mpt_command (karg, (char *) &uarg->MF, 0);
  1569. return rc;
  1570. }
  1571. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  1572. /* Worker routine for the IOCTL MPTCOMMAND and MPTCOMMAND32 (sparc) commands.
  1573.  *
  1574.  * Outputs: None.
  1575.  * Return: 0 if successful
  1576.  * -EBUSY  if previous command timout and IOC reset is not complete.
  1577.  * -EFAULT if data unavailable
  1578.  * -ENODEV if no such device/adapter
  1579.  * -ETIME if timer expires
  1580.  * -ENOMEM if memory allocation error
  1581.  * -EPERM if SCSI I/O and target is untagged
  1582.  */
  1583. static int
  1584. mptctl_do_mpt_command (struct mpt_ioctl_command karg, char *mfPtr, int local)
  1585. {
  1586. MPT_ADAPTER *ioc;
  1587. MPT_FRAME_HDR *mf = NULL;
  1588. MPIHeader_t *hdr;
  1589. char *psge;
  1590. MptSge_t *this_sge = NULL;
  1591. MptSge_t *sglbuf = NULL;
  1592. struct buflist bufIn; /* data In buffer */
  1593. struct buflist bufOut; /* data Out buffer */
  1594. dma_addr_t sglbuf_dma;
  1595. dma_addr_t dma_addr;
  1596. int dir; /* PCI data direction */
  1597. int sgSize = 0; /* Num SG elements */
  1598. int this_alloc;
  1599. int  iocnum, flagsLength;
  1600. int  sz, rc = 0;
  1601. int  msgContext;
  1602. int tm_flags_set = 0;
  1603. u16 req_idx;
  1604. dctlprintk(("mptctl_do_mpt_command called.n"));
  1605. if (((iocnum = mpt_verify_adapter(karg.hdr.iocnum, &ioc)) < 0) ||
  1606.     (ioc == NULL)) {
  1607. dtmprintk((KERN_ERR "%s::mptctl_do_mpt_command() @%d - ioc%d not found!n",
  1608. __FILE__, __LINE__, iocnum));
  1609. return -ENODEV;
  1610. }
  1611. if (!ioc->ioctl) {
  1612. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1613. "No memory available during driver init.n",
  1614. __FILE__, __LINE__);
  1615. return -ENOMEM;
  1616. } else if (ioc->ioctl->status & MPT_IOCTL_STATUS_DID_IOCRESET) {
  1617. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1618. "Busy with IOC Reset n", __FILE__, __LINE__);
  1619. return -EBUSY;
  1620. }
  1621. /* Verify that the final request frame will not be too large.
  1622.  */
  1623. sz = karg.dataSgeOffset * 4;
  1624. if (karg.dataInSize > 0)
  1625. sz += sizeof(dma_addr_t) + sizeof(u32);
  1626. if (karg.dataOutSize > 0)
  1627. sz += sizeof(dma_addr_t) + sizeof(u32);
  1628. if ( sz > ioc->req_sz) {
  1629. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1630. "Request frame too large (%d) maximum (%d)n",
  1631. __FILE__, __LINE__, sz, ioc->req_sz);
  1632. return -EFAULT;
  1633. }
  1634. /* Get a free request frame and save the message context.
  1635.  */
  1636.         if ((mf = mpt_get_msg_frame(mptctl_id, ioc->id)) == NULL)
  1637.                 return -EAGAIN;
  1638. hdr = (MPIHeader_t *) mf;
  1639. msgContext = le32_to_cpu(hdr->MsgContext);
  1640. req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx);
  1641. /* Copy the request frame
  1642.  * Reset the saved message context.
  1643.  */
  1644.         if (local) {
  1645. /* Request frame in kernel space
  1646.  */
  1647. memcpy((char *)mf, (char *) mfPtr, karg.dataSgeOffset * 4);
  1648.         } else {
  1649. /* Request frame in user space
  1650.  */
  1651. if (copy_from_user((char *)mf, (char *) mfPtr,
  1652. karg.dataSgeOffset * 4)){
  1653. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1654. "Unable to read MF from mpt_ioctl_command struct @ %pn",
  1655. __FILE__, __LINE__, (void*)mfPtr);
  1656. rc = -EFAULT;
  1657. goto done_free_mem;
  1658. }
  1659.         }
  1660. hdr->MsgContext = cpu_to_le32(msgContext);
  1661. /* Verify that this request is allowed.
  1662.  */
  1663. switch (hdr->Function) {
  1664. case MPI_FUNCTION_IOC_FACTS:
  1665. case MPI_FUNCTION_PORT_FACTS:
  1666. case MPI_FUNCTION_CONFIG:
  1667. case MPI_FUNCTION_FC_COMMON_TRANSPORT_SEND:
  1668. case MPI_FUNCTION_FC_EX_LINK_SRVC_SEND:
  1669. case MPI_FUNCTION_FW_UPLOAD:
  1670. case MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR:
  1671. case MPI_FUNCTION_FW_DOWNLOAD:
  1672. break;
  1673. case MPI_FUNCTION_SCSI_IO_REQUEST:
  1674. if (ioc->sh) {
  1675. SCSIIORequest_t *pScsiReq = (SCSIIORequest_t *) mf;
  1676. VirtDevice *pTarget = NULL;
  1677. MPT_SCSI_HOST *hd = NULL;
  1678. int qtag = MPI_SCSIIO_CONTROL_UNTAGGED;
  1679. int scsidir = 0;
  1680. int target = (int) pScsiReq->TargetID;
  1681. int dataSize;
  1682. pScsiReq->MsgFlags = mpt_msg_flags();
  1683. /* verify that app has not requested
  1684.  * more sense data than driver
  1685.  * can provide, if so, reset this parameter
  1686.  * set the sense buffer pointer low address
  1687.  * update the control field to specify Q type
  1688.  */
  1689. if (karg.maxSenseBytes > MPT_SENSE_BUFFER_SIZE)
  1690. pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
  1691. pScsiReq->SenseBufferLowAddr =
  1692. cpu_to_le32(ioc->sense_buf_low_dma
  1693.    + (req_idx * MPT_SENSE_BUFFER_ALLOC));
  1694. if ( (hd = (MPT_SCSI_HOST *) ioc->sh->hostdata)) {
  1695. if (hd->Targets)
  1696. pTarget = hd->Targets[target];
  1697. }
  1698. if (pTarget &&(pTarget->tflags & MPT_TARGET_FLAGS_Q_YES))
  1699. qtag = MPI_SCSIIO_CONTROL_SIMPLEQ;
  1700. /* Have the IOCTL driver set the direction based
  1701.  * on the dataOutSize (ordering issue with Sparc).
  1702.  */
  1703. if (karg.dataOutSize > 0 ) {
  1704. scsidir = MPI_SCSIIO_CONTROL_WRITE;
  1705. dataSize = karg.dataOutSize;
  1706. }
  1707. else {
  1708. scsidir = MPI_SCSIIO_CONTROL_READ;
  1709. dataSize = karg.dataInSize;
  1710. }
  1711. pScsiReq->Control = cpu_to_le32(scsidir | qtag);
  1712. pScsiReq->DataLength = cpu_to_le32(dataSize);
  1713. ioc->ioctl->reset = MPTCTL_RESET_OK;
  1714. ioc->ioctl->target = target;
  1715. } else {
  1716. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1717. "SCSI driver is not loaded. n",
  1718. __FILE__, __LINE__);
  1719. rc = -EFAULT;
  1720. goto done_free_mem;
  1721. }
  1722. break;
  1723. case MPI_FUNCTION_RAID_ACTION:
  1724. /* Just add a SGE
  1725.  */
  1726. break;
  1727. case MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH:
  1728. if (ioc->sh) {
  1729. SCSIIORequest_t *pScsiReq = (SCSIIORequest_t *) mf;
  1730. int qtag = MPI_SCSIIO_CONTROL_SIMPLEQ;
  1731. int scsidir = MPI_SCSIIO_CONTROL_READ;
  1732. int dataSize;
  1733. pScsiReq->MsgFlags = mpt_msg_flags();
  1734. /* verify that app has not requested
  1735.  * more sense data than driver
  1736.  * can provide, if so, reset this parameter
  1737.  * set the sense buffer pointer low address
  1738.  * update the control field to specify Q type
  1739.  */
  1740. if (karg.maxSenseBytes > MPT_SENSE_BUFFER_SIZE)
  1741. pScsiReq->SenseBufferLength = MPT_SENSE_BUFFER_SIZE;
  1742. pScsiReq->SenseBufferLowAddr =
  1743. cpu_to_le32(ioc->sense_buf_low_dma
  1744.    + (req_idx * MPT_SENSE_BUFFER_ALLOC));
  1745. /* All commands to physical devices are tagged
  1746.  */
  1747. /* Have the IOCTL driver set the direction based
  1748.  * on the dataOutSize (ordering issue with Sparc).
  1749.  */
  1750. if (karg.dataOutSize > 0 ) {
  1751. scsidir = MPI_SCSIIO_CONTROL_WRITE;
  1752. dataSize = karg.dataOutSize;
  1753. }
  1754. else {
  1755. scsidir = MPI_SCSIIO_CONTROL_READ;
  1756. dataSize = karg.dataInSize;
  1757. }
  1758. pScsiReq->Control = cpu_to_le32(scsidir | qtag);
  1759. pScsiReq->DataLength = cpu_to_le32(dataSize);
  1760. ioc->ioctl->reset = MPTCTL_RESET_OK;
  1761. ioc->ioctl->target = pScsiReq->TargetID;
  1762. } else {
  1763. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1764. "SCSI driver is not loaded. n",
  1765. __FILE__, __LINE__);
  1766. rc = -EFAULT;
  1767. goto done_free_mem;
  1768. }
  1769. break;
  1770. case MPI_FUNCTION_SCSI_TASK_MGMT:
  1771. MPT_SCSI_HOST *hd = NULL;
  1772. if ((ioc->sh == NULL) || ((hd = (MPT_SCSI_HOST *)ioc->sh->hostdata) == NULL)) {
  1773. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1774. "SCSI driver not loaded or SCSI host not found. n",
  1775. __FILE__, __LINE__);
  1776. rc = -EFAULT;
  1777. goto done_free_mem;
  1778. }  else if (mptctl_set_tm_flags(hd) != 0) {
  1779. rc = -EPERM;
  1780. goto done_free_mem;
  1781. }
  1782. tm_flags_set = 1;
  1783. }
  1784. break;
  1785. default:
  1786. /*
  1787.  * MPI_FUNCTION_IOC_INIT
  1788.  * MPI_FUNCTION_PORT_ENABLE
  1789.  * MPI_FUNCTION_TARGET_CMD_BUFFER_POST
  1790.  * MPI_FUNCTION_TARGET_ASSIST
  1791.  * MPI_FUNCTION_TARGET_STATUS_SEND
  1792.  * MPI_FUNCTION_TARGET_MODE_ABORT
  1793.  * MPI_FUNCTION_IOC_MESSAGE_UNIT_RESET
  1794.  * MPI_FUNCTION_IO_UNIT_RESET
  1795.  * MPI_FUNCTION_HANDSHAKE
  1796.  * MPI_FUNCTION_REPLY_FRAME_REMOVAL
  1797.  * MPI_FUNCTION_EVENT_NOTIFICATION
  1798.  *  (driver handles event notification)
  1799.  * MPI_FUNCTION_EVENT_ACK
  1800.  */
  1801. /*  What to do with these???  CHECK ME!!!
  1802. MPI_FUNCTION_FC_LINK_SRVC_BUF_POST
  1803. MPI_FUNCTION_FC_LINK_SRVC_RSP
  1804. MPI_FUNCTION_FC_ABORT
  1805. MPI_FUNCTION_FC_PRIMITIVE_SEND
  1806. MPI_FUNCTION_LAN_SEND
  1807. MPI_FUNCTION_LAN_RECEIVE
  1808.   MPI_FUNCTION_LAN_RESET
  1809. */
  1810. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1811. "Illegal request (function 0x%x) n",
  1812. __FILE__, __LINE__, hdr->Function);
  1813. rc = -EFAULT;
  1814. goto done_free_mem;
  1815. }
  1816. /* Add the SGL ( at most one data in SGE and one data out SGE )
  1817.  * In the case of two SGE's - the data out (write) will always
  1818.  * preceede the data in (read) SGE. psgList is used to free the
  1819.  * allocated memory.
  1820.  */
  1821. psge = (char *) ( ((int *) mf) + karg.dataSgeOffset);
  1822. flagsLength = 0;
  1823. /* bufIn and bufOut are used for user to kernel space transfers
  1824.  */
  1825. bufIn.kptr = bufOut.kptr = NULL;
  1826. bufIn.len = bufOut.len = 0;
  1827. if (karg.dataOutSize > 0 )
  1828. sgSize ++;
  1829. if (karg.dataInSize > 0 )
  1830. sgSize ++;
  1831. if (sgSize > 0) {
  1832. /* Allocate memory for the SGL.
  1833.  * Used to free kernel memory once
  1834.  * the MF is freed.
  1835.  */
  1836. sglbuf = pci_alloc_consistent (ioc->pcidev,
  1837. sgSize*sizeof(MptSge_t), &sglbuf_dma);
  1838. if (sglbuf == NULL) {
  1839. rc = -ENOMEM;
  1840. goto done_free_mem;
  1841. }
  1842. this_sge = sglbuf;
  1843. /* Set up the dataOut memory allocation */
  1844. if (karg.dataOutSize > 0) {
  1845. dir = PCI_DMA_TODEVICE;
  1846. if (karg.dataInSize > 0 ) {
  1847. flagsLength = ( MPI_SGE_FLAGS_SIMPLE_ELEMENT |
  1848. MPI_SGE_FLAGS_DIRECTION |
  1849. mpt_addr_size() )
  1850. << MPI_SGE_FLAGS_SHIFT;
  1851. } else {
  1852. flagsLength = MPT_SGE_FLAGS_SSIMPLE_WRITE;
  1853. }
  1854. flagsLength |= karg.dataOutSize;
  1855. this_alloc = karg.dataOutSize;
  1856. bufOut.len = this_alloc;
  1857. bufOut.kptr = pci_alloc_consistent(
  1858. ioc->pcidev, this_alloc, &dma_addr);
  1859. if (bufOut.kptr == NULL) {
  1860. rc = -ENOMEM;
  1861. goto done_free_mem;
  1862. } else {
  1863. /* Copy user data to kernel space.
  1864.  */
  1865. if (copy_from_user(bufOut.kptr,
  1866. karg.dataOutBufPtr,
  1867. bufOut.len)) {
  1868. printk(KERN_ERR
  1869. "%s@%d::mptctl_do_mpt_command - Unable "
  1870. "to read user data "
  1871. "struct @ %pn",
  1872. __FILE__, __LINE__,(void*)karg.dataOutBufPtr);
  1873. rc =  -EFAULT;
  1874. goto done_free_mem;
  1875. }
  1876. /* Set up this SGE.
  1877.  * Copy to MF and to sglbuf
  1878.  */
  1879. mpt_add_sge(psge, flagsLength, dma_addr);
  1880. psge += (sizeof(u32) + sizeof(dma_addr_t));
  1881. this_sge->FlagsLength = flagsLength;
  1882. this_sge->Address = dma_addr;
  1883. this_sge++;
  1884. }
  1885. }
  1886. if (karg.dataInSize > 0) {
  1887. dir = PCI_DMA_FROMDEVICE;
  1888. flagsLength = MPT_SGE_FLAGS_SSIMPLE_READ;
  1889. flagsLength |= karg.dataInSize;
  1890. this_alloc = karg.dataInSize;
  1891. bufIn.len = this_alloc;
  1892. bufIn.kptr = pci_alloc_consistent(ioc->pcidev,
  1893. this_alloc, &dma_addr);
  1894. if (bufIn.kptr == NULL) {
  1895. rc = -ENOMEM;
  1896. goto done_free_mem;
  1897. } else {
  1898. /* Set up this SGE
  1899.  * Copy to MF and to sglbuf
  1900.  */
  1901. mpt_add_sge(psge, flagsLength, dma_addr);
  1902. this_sge->FlagsLength = flagsLength;
  1903. this_sge->Address = dma_addr;
  1904. this_sge++;
  1905. }
  1906. }
  1907. } else  {
  1908. /* Add a NULL SGE
  1909.  */
  1910. mpt_add_sge(psge, flagsLength, (dma_addr_t) -1);
  1911. }
  1912. /* The request is complete. Set the timer parameters
  1913.  * and issue the request.
  1914.  */
  1915. if (karg.timeout > 0) {
  1916. ioc->ioctl->timer.expires = jiffies + HZ*karg.timeout;
  1917. } else {
  1918. ioc->ioctl->timer.expires = jiffies + HZ*MPT_IOCTL_DEFAULT_TIMEOUT;
  1919. }
  1920. ioc->ioctl->wait_done = 0;
  1921. ioc->ioctl->status |= MPT_IOCTL_STATUS_TIMER_ACTIVE;
  1922. add_timer(&ioc->ioctl->timer);
  1923. if (hdr->Function == MPI_FUNCTION_SCSI_TASK_MGMT) {
  1924. rc = mpt_send_handshake_request(mptctl_id, ioc->id,
  1925. sizeof(SCSITaskMgmt_t), (u32*)mf, NO_SLEEP);
  1926. if (rc == 0) {
  1927. wait_event(mptctl_wait, ioc->ioctl->wait_done);
  1928. } else {
  1929. mptctl_free_tm_flags(ioc);
  1930. tm_flags_set= 0;
  1931. del_timer(&ioc->ioctl->timer);
  1932. ioc->ioctl->status &= ~MPT_IOCTL_STATUS_TIMER_ACTIVE;
  1933. ioc->ioctl->status = MPT_IOCTL_STATUS_TM_FAILED;
  1934. }
  1935. } else {
  1936. mpt_put_msg_frame(mptctl_id, ioc->id, mf);
  1937. wait_event(mptctl_wait, ioc->ioctl->wait_done);
  1938. }
  1939. /* The command is complete.  * Return data to the user.
  1940.  *
  1941.  * If command completed,  mf has been freed so cannot
  1942.  * use this memory.
  1943.  *
  1944.  * If timeout, a recovery  mechanism has been called.
  1945.  * Need to free the mf.
  1946.  */
  1947. if (ioc->ioctl->status & MPT_IOCTL_STATUS_DID_IOCRESET) {
  1948. /* A timeout - there is no data to return to the
  1949.  * the user other than an error.
  1950.  * The timer callback deleted the
  1951.  * timer and reset the adapter queues.
  1952.  */
  1953. printk(KERN_WARNING "%s@%d::mptctl_do_mpt_command - "
  1954. "Timeout Occurred on IOCTL! Reset IOC.n", __FILE__, __LINE__);
  1955. tm_flags_set= 0;
  1956. rc = -ETIME;
  1957. /* Free memory and return to the calling function
  1958.  */
  1959. goto done_free_mem;
  1960. } else if (ioc->ioctl->status & MPT_IOCTL_STATUS_TM_FAILED) {
  1961. /* User TM request failed!
  1962.  */
  1963. rc = -ENODATA;
  1964. } else {
  1965. /* Callback freed request frame.
  1966.  */
  1967. mf = NULL;
  1968. /* If a valid reply frame, copy to the user.
  1969.  * Offset 2: reply length in U32's
  1970.  */
  1971. if (ioc->ioctl->status & MPT_IOCTL_STATUS_RF_VALID) {
  1972. if (karg.maxReplyBytes < ioc->reply_sz) {
  1973.  sz = MIN(karg.maxReplyBytes, 4*ioc->ioctl->ReplyFrame[2]);
  1974. } else {
  1975.  sz = MIN(ioc->reply_sz, 4*ioc->ioctl->ReplyFrame[2]);
  1976. }
  1977. if (sz > 0) {
  1978. if (copy_to_user((char *)karg.replyFrameBufPtr,
  1979.  &ioc->ioctl->ReplyFrame, sz)){
  1980.  printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1981.  "Unable to write out reply frame %pn",
  1982.  __FILE__, __LINE__, (void*)karg.replyFrameBufPtr);
  1983.  rc =  -ENODATA;
  1984.  goto done_free_mem;
  1985. }
  1986. }
  1987. }
  1988. /* If valid sense data, copy to user.
  1989.  */
  1990. if (ioc->ioctl->status & MPT_IOCTL_STATUS_SENSE_VALID) {
  1991. sz = MIN(karg.maxSenseBytes, MPT_SENSE_BUFFER_SIZE);
  1992. if (sz > 0) {
  1993. if (copy_to_user((char *)karg.senseDataPtr, ioc->ioctl->sense, sz)) {
  1994. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  1995. "Unable to write sense data to user %pn",
  1996. __FILE__, __LINE__,
  1997. (void*)karg.senseDataPtr);
  1998. rc =  -ENODATA;
  1999. goto done_free_mem;
  2000. }
  2001. }
  2002. }
  2003. /* If the overall status is _GOOD and data in, copy data
  2004.  * to user.
  2005.  */
  2006. if ((ioc->ioctl->status & MPT_IOCTL_STATUS_COMMAND_GOOD) &&
  2007. (karg.dataInSize > 0) && (bufIn.kptr)) {
  2008. if (copy_to_user((char *)karg.dataInBufPtr,
  2009.  bufIn.kptr, karg.dataInSize)) {
  2010. printk(KERN_ERR "%s@%d::mptctl_do_mpt_command - "
  2011. "Unable to write data to user %pn",
  2012. __FILE__, __LINE__,
  2013. (void*)karg.dataInBufPtr);
  2014. rc =  -ENODATA;
  2015. }
  2016. }
  2017. }
  2018. done_free_mem:
  2019. /* Clear status bits.
  2020.  */
  2021. ioc->ioctl->status = 0;
  2022. if (tm_flags_set)
  2023. mptctl_free_tm_flags(ioc);
  2024. if (sglbuf) {
  2025. this_sge = sglbuf;
  2026. /* Free the allocated memory.
  2027.  */
  2028.  if (bufOut.kptr != NULL ) {
  2029. dma_addr = this_sge->Address;
  2030. this_sge++; /* go to next structure */
  2031. this_alloc = bufOut.len;
  2032. pci_free_consistent(ioc->pcidev,
  2033. this_alloc, (void *)bufOut.kptr, dma_addr);
  2034. }
  2035. if (bufIn.kptr != NULL ) {
  2036. dma_addr = this_sge->Address;
  2037. this_alloc = bufIn.len;
  2038. pci_free_consistent(ioc->pcidev,
  2039. this_alloc, (void *)bufIn.kptr, dma_addr);
  2040. }
  2041. this_alloc = sgSize * sizeof(MptSge_t);
  2042. pci_free_consistent(ioc->pcidev,
  2043. this_alloc, (void *) sglbuf, sglbuf_dma);
  2044. }
  2045. /* mf will be null if allocation failed OR
  2046.  * if command completed OK (callback freed)
  2047.  */
  2048. if (mf)
  2049. mpt_free_msg_frame(mptctl_id, ioc->id, mf);
  2050. return rc;
  2051. }
  2052. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2053. /* Routine for the Compaq IOCTL commands.
  2054.  *
  2055.  * Outputs: None.
  2056.  * Return: 0 if successful
  2057.  * -EBUSY  if previous command timout and IOC reset is not complete.
  2058.  * -EFAULT if data unavailable
  2059.  * -ENODEV if no such device/adapter
  2060.  * -ETIME if timer expires
  2061.  * -ENOMEM if memory allocation error
  2062.  */
  2063. static int
  2064. mptctl_compaq_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  2065. {
  2066. int iocnum = 0;
  2067. unsigned iocnumX = 0;
  2068. int ret;
  2069. int nonblock = (file->f_flags & O_NONBLOCK);
  2070. MPT_ADAPTER *iocp = NULL;
  2071. if (cmd == CPQFCTS_SCSI_PASSTHRU) {
  2072. /* Update the iocnum */
  2073. if (copy_from_user(&iocnumX, (int *)arg, sizeof(int))) {
  2074. printk(KERN_ERR "%s::mptctl_compaq_ioctl() @%d - "
  2075. "Unable to read controller number @ %pn",
  2076. __FILE__, __LINE__, (void*)arg);
  2077. return -EFAULT;
  2078. }
  2079. iocnumX &= 0xFF;
  2080. }
  2081. if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
  2082.     (iocp == NULL)) {
  2083. dtmprintk((KERN_ERR "%s::mptctl_compaq_ioctl() @%d - ioc%d not found!n",
  2084. __FILE__, __LINE__, iocnumX));
  2085. return -ENODEV;
  2086. }
  2087. /* All of these commands require an interrupt or
  2088.  * are unknown/illegal.
  2089.  */
  2090. if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
  2091. return ret;
  2092. dctlprintk((MYIOC_s_INFO_FMT ": mptctl_compaq_ioctl()n", iocp->name));
  2093. switch(cmd) {
  2094. case CPQFCTS_GETPCIINFO:
  2095. ret = mptctl_cpq_getpciinfo(arg);
  2096. break;
  2097. case CPQFCTS_GETDRIVER:
  2098. ret = mptctl_cpq_getdriver(arg);
  2099. break;
  2100. case CPQFCTS_CTLR_STATUS:
  2101. ret = mptctl_cpq_ctlr_status(arg);
  2102. break;
  2103. case CPQFCTS_SCSI_IOCTL_FC_TARGET_ADDRESS:
  2104. ret = mptctl_cpq_target_address(arg);
  2105. break;
  2106. case CPQFCTS_SCSI_PASSTHRU:
  2107. ret = mptctl_cpq_passthru(arg);
  2108. break;
  2109. default:
  2110. ret = -EINVAL;
  2111. }
  2112. up(&mptctl_syscall_sem_ioc[iocp->id]);
  2113. return ret;
  2114. }
  2115. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2116. /* mptctl_cpq_getpciinfo - Get PCI Information in format desired by Compaq
  2117.  *
  2118.  * Outputs: None.
  2119.  * Return: 0 if successful
  2120.  * -EBUSY  if previous command timout and IOC reset is not complete.
  2121.  * -EFAULT if data unavailable
  2122.  * -ENODEV if no such device/adapter
  2123.  * -ETIME if timer expires
  2124.  */
  2125. static int
  2126. mptctl_cpq_getpciinfo(unsigned long arg)
  2127. {
  2128. cpqfc_pci_info_struct *uarg = (cpqfc_pci_info_struct *) arg;
  2129. cpqfc_pci_info_struct karg;
  2130. MPT_ADAPTER *ioc;
  2131. struct pci_dev *pdev;
  2132. CONFIGPARMS cfg;
  2133. ConfigPageHeader_t hdr;
  2134. int iocnum = 0, iocnumX = 0;
  2135. dma_addr_t buf_dma;
  2136. u8 *pbuf = NULL;
  2137. int failed;
  2138. dctlprintk((": mptctl_cpq_pciinfo called.n"));
  2139. if (copy_from_user(&karg, uarg, sizeof(cpqfc_pci_info_struct))) {
  2140. printk(KERN_ERR "%s@%d::mptctl_cpq_pciinfo - "
  2141. "Unable to read in cpqfc_pci_info_struct @ %pn",
  2142. __FILE__, __LINE__, (void*)uarg);
  2143. return -EINVAL;
  2144. }
  2145. if (((iocnum = mpt_verify_adapter(iocnumX, &ioc)) < 0) ||
  2146.     (ioc == NULL)) {
  2147. dtmprintk((KERN_ERR "%s::mptctl_pciinfo() @%d - ioc%d not found!n",
  2148. __FILE__, __LINE__, iocnum));
  2149. return -ENODEV;
  2150. }
  2151. pdev = (struct pci_dev *) ioc->pcidev;
  2152. /* Populate the structure. */
  2153. karg.bus = pdev->bus->number;
  2154. karg.bus_type = 1; /* 1 = PCI; 4 = unknown */
  2155. karg.device_fn = PCI_FUNC(pdev->devfn);
  2156. karg.slot_number = PCI_SLOT(pdev->devfn);
  2157. karg.vendor_id = pdev->vendor;
  2158. karg.device_id = pdev->device;
  2159. karg.board_id = (karg.device_id | (karg.vendor_id << 16));
  2160. karg.class_code = pdev->class;
  2161. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
  2162. karg.sub_vendor_id = pdev->subsystem_vendor;
  2163. karg.sub_device_id = pdev->subsystem_device;
  2164. #endif
  2165. /* Issue a config request to get the device serial number
  2166.  */
  2167. hdr.PageVersion = 0;
  2168. hdr.PageLength = 0;
  2169. hdr.PageNumber = 0;
  2170. hdr.PageType = MPI_CONFIG_PAGETYPE_MANUFACTURING;
  2171. cfg.hdr = &hdr;
  2172. cfg.physAddr = -1;
  2173. cfg.pageAddr = 0;
  2174. cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
  2175. cfg.dir = 0; /* read */
  2176. cfg.timeout = 10;
  2177. failed = 1;
  2178. if (mpt_config(ioc, &cfg) == 0) {
  2179. if (cfg.hdr->PageLength > 0) {
  2180. /* Issue the second config page request */
  2181. cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
  2182. pbuf = pci_alloc_consistent(ioc->pcidev, hdr.PageLength * 4, &buf_dma);
  2183. if (pbuf) {
  2184. cfg.physAddr = buf_dma;
  2185. if (mpt_config(ioc, &cfg) == 0) {
  2186. ManufacturingPage0_t *pdata = (ManufacturingPage0_t *) pbuf;
  2187. strncpy(karg.serial_number, pdata->BoardTracerNumber, 17);
  2188. failed = 0;
  2189. }
  2190. pci_free_consistent(ioc->pcidev, hdr.PageLength * 4, pbuf, buf_dma);
  2191. pbuf = NULL;
  2192. }
  2193. }
  2194. }
  2195. if (failed)
  2196. strncpy(karg.serial_number, " ", 17);
  2197. /* Copy the data from kernel memory to user memory
  2198.  */
  2199. if (copy_to_user((char *)arg, &karg,
  2200. sizeof(cpqfc_pci_info_struct))) {
  2201. printk(KERN_ERR "%s@%d::mptctl_cpq_pciinfo - "
  2202. "Unable to write out cpqfc_pci_info_struct @ %pn",
  2203. __FILE__, __LINE__, (void*)uarg);
  2204. return -EFAULT;
  2205. }
  2206. return 0;
  2207. }
  2208. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2209. /* mptctl_cpq_getdriver - Get Driver Version in format desired by Compaq
  2210.  *
  2211.  * Outputs: None.
  2212.  * Return: 0 if successful
  2213.  * -EFAULT if data unavailable
  2214.  * -ENODEV if no such device/adapter
  2215.  */
  2216. static int
  2217. mptctl_cpq_getdriver(unsigned long arg)
  2218. {
  2219. int *uarg = (int *)arg;
  2220. int karg;
  2221. MPT_ADAPTER *ioc = NULL;
  2222. int iocnum = 0, iocnumX = 0;
  2223. int ii, jj;
  2224. char version[10];
  2225. char val;
  2226. char *vptr = NULL;
  2227. char *pptr = NULL;
  2228. dctlprintk((": mptctl_cpq_getdriver called.n"));
  2229. if (copy_from_user(&karg, uarg, sizeof(int))) {
  2230. printk(KERN_ERR "%s@%d::mptctl_cpq_getdriver - "
  2231. "Unable to read in struct @ %pn",
  2232. __FILE__, __LINE__, (void*)uarg);
  2233. return -EFAULT;
  2234. }
  2235. if (((iocnum = mpt_verify_adapter(iocnumX, &ioc)) < 0) ||
  2236.     (ioc == NULL)) {
  2237. dtmprintk((KERN_ERR "%s::mptctl_cpq_getdriver() @%d - ioc%d not found!n",
  2238. __FILE__, __LINE__, iocnum));
  2239. return -ENODEV;
  2240. }
  2241. strncpy(version, MPT_LINUX_VERSION_COMMON, 8);
  2242. karg = 0;
  2243. vptr = version;
  2244. ii = 3;
  2245. while (ii > 0) {
  2246. pptr = strchr(vptr, '.');
  2247. if (pptr) {
  2248. *pptr = '';
  2249. val = 0;
  2250. for (jj=0; vptr[jj]>='0' && vptr[jj]<='9'; jj++)
  2251. val = 10 * val + (vptr[jj] - '0');
  2252. karg |= (val << (8*ii));
  2253. pptr++;
  2254. vptr = pptr;
  2255. } else
  2256. break;
  2257. ii--;
  2258. }
  2259. /* Copy the data from kernel memory to user memory
  2260.  */
  2261. if (copy_to_user((char *)arg, &karg,
  2262. sizeof(int))) {
  2263. printk(KERN_ERR "%s@%d::mptctl_cpq_getdriver - "
  2264. "Unable to write out stuct @ %pn",
  2265. __FILE__, __LINE__, (void*)uarg);
  2266. return -EFAULT;
  2267. }
  2268. return 0;
  2269. }
  2270. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2271. /* mptctl_cpq_ctlr_status - Get controller status in format desired by Compaq
  2272.  *
  2273.  * Outputs: None.
  2274.  * Return: 0 if successful
  2275.  * -EFAULT if data unavailable
  2276.  * -ENODEV if no such device/adapter
  2277.  */
  2278. static int
  2279. mptctl_cpq_ctlr_status(unsigned long arg)
  2280. {
  2281. cpqfc_ctlr_status *uarg = (cpqfc_ctlr_status *) arg;
  2282. cpqfc_ctlr_status karg;
  2283. MPT_ADAPTER *ioc;
  2284. int iocnum = 0, iocnumX = 0;
  2285. dctlprintk((": mptctl_cpq_pciinfo called.n"));
  2286. if (copy_from_user(&karg, uarg, sizeof(cpqfc_ctlr_status))) {
  2287. printk(KERN_ERR "%s@%d::mptctl_cpq_ctlr_status - "
  2288. "Unable to read in cpqfc_ctlr_status @ %pn",
  2289. __FILE__, __LINE__, (void*)uarg);
  2290. return -EFAULT;
  2291. }
  2292. if (((iocnum = mpt_verify_adapter(iocnumX, &ioc)) < 0) ||
  2293.     (ioc == NULL)) {
  2294. dtmprintk((KERN_ERR "%s::mptctl_cpq_ctlr_status() @%d - ioc%d not found!n",
  2295. __FILE__, __LINE__, iocnum));
  2296. return -ENODEV;
  2297. }
  2298. karg.status = ioc->last_state;
  2299. karg.offline_reason = 0;
  2300. /* Copy the data from kernel memory to user memory
  2301.  */
  2302. if (copy_to_user((char *)arg, &karg,
  2303. sizeof(cpqfc_ctlr_status))) {
  2304. printk(KERN_ERR "%s@%d::mptctl_cpq_ctlr_status - "
  2305. "Unable to write out cpqfc_ctlr_status @ %pn",
  2306. __FILE__, __LINE__, (void*)uarg);
  2307. return -EFAULT;
  2308. }
  2309. return 0;
  2310. }
  2311. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2312. /* mptctl_cpq_target_address - Get WWN Information in format desired by Compaq
  2313.  *
  2314.  * Outputs: None.
  2315.  * Return: 0 if successful
  2316.  * -EBUSY  if previous command timout and IOC reset is not complete.
  2317.  * -EFAULT if data unavailable
  2318.  * -ENODEV if no such device/adapter
  2319.  * -ETIME if timer expires
  2320.  */
  2321. static int
  2322. mptctl_cpq_target_address(unsigned long arg)
  2323. {
  2324. Scsi_FCTargAddress *uarg = (Scsi_FCTargAddress *) arg;
  2325. Scsi_FCTargAddress karg;
  2326. MPT_ADAPTER *ioc;
  2327. int iocnum = 0, iocnumX = 0;
  2328. CONFIGPARMS cfg;
  2329. ConfigPageHeader_t hdr;
  2330. dma_addr_t buf_dma;
  2331. u8 *pbuf = NULL;
  2332. FCPortPage0_t *ppp0;
  2333. int ii, failed;
  2334. u32 low, high;
  2335. dctlprintk((": mptctl_cpq_target_address called.n"));
  2336. if (copy_from_user(&karg, uarg, sizeof(Scsi_FCTargAddress))) {
  2337. printk(KERN_ERR "%s@%d::mptctl_cpq_target_address - "
  2338. "Unable to read in Scsi_FCTargAddress @ %pn",
  2339. __FILE__, __LINE__, (void*)uarg);
  2340. return -EFAULT;
  2341. }
  2342. if (((iocnum = mpt_verify_adapter(iocnumX, &ioc)) < 0) ||
  2343.     (ioc == NULL)) {
  2344. dtmprintk((KERN_ERR "%s::mptctl_cpq_target_address() @%d - ioc%d not found!n",
  2345. __FILE__, __LINE__, iocnum));
  2346. return -ENODEV;
  2347. }
  2348. karg.host_port_id = 0;
  2349. /* Issue a config request to get the device wwn
  2350.  */
  2351. hdr.PageVersion = 0;
  2352. hdr.PageLength = 0;
  2353. hdr.PageNumber = 0;
  2354. hdr.PageType = MPI_CONFIG_PAGETYPE_FC_PORT;
  2355. cfg.hdr = &hdr;
  2356. cfg.physAddr = -1;
  2357. cfg.pageAddr = 0;
  2358. cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
  2359. cfg.dir = 0; /* read */
  2360. cfg.timeout = 10;
  2361. failed = 1;
  2362. if (mpt_config(ioc, &cfg) == 0) {
  2363. if (cfg.hdr->PageLength > 0) {
  2364. /* Issue the second config page request */
  2365. cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
  2366. pbuf = pci_alloc_consistent(ioc->pcidev, hdr.PageLength * 4, &buf_dma);
  2367. if (pbuf) {
  2368. cfg.physAddr = buf_dma;
  2369. if (mpt_config(ioc, &cfg) == 0) {
  2370. ppp0 = (FCPortPage0_t *) pbuf;
  2371. low = le32_to_cpu(ppp0->WWNN.Low);
  2372. high = le32_to_cpu(ppp0->WWNN.High);
  2373. for (ii = 0; ii < 4; ii++) {
  2374. karg.host_wwn[7-ii] = low & 0xFF;
  2375. karg.host_wwn[3-ii] = high & 0xFF;
  2376. low = (low >> 8);
  2377. high = (high >> 8);
  2378. }
  2379. failed = 0;
  2380. }
  2381. pci_free_consistent(ioc->pcidev, hdr.PageLength * 4, pbuf, buf_dma);
  2382. pbuf = NULL;
  2383. }
  2384. }
  2385. }
  2386. if (failed) {
  2387. for (ii = 7; ii >= 0; ii--)
  2388. karg.host_wwn[ii] = 0;
  2389. }
  2390. /* Copy the data from kernel memory to user memory
  2391.  */
  2392. if (copy_to_user((char *)arg, &karg,
  2393. sizeof(Scsi_FCTargAddress))) {
  2394. printk(KERN_ERR "%s@%d::mptctl_cpq_target_address - "
  2395. "Unable to write out Scsi_FCTargAddress @ %pn",
  2396. __FILE__, __LINE__, (void*)uarg);
  2397. return -EFAULT;
  2398. }
  2399. return 0;
  2400. }
  2401. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2402. /* mptctl_cpq_passthru - Construct and issue a SCSI IO Passthru
  2403.  *
  2404.  * Requires the SCSI host driver to be loaded.
  2405.  * I386 version.
  2406.  *
  2407.  * Outputs: None.
  2408.  * Return: 0 if successful
  2409.  * -EBUSY  if previous command timout and IOC reset is not complete.
  2410.  * -EFAULT if data unavailable
  2411.  * -ENODEV if no such device/adapter
  2412.  * -ETIME if timer expires
  2413.  */
  2414. static int
  2415. mptctl_cpq_passthru(unsigned long arg)
  2416. {
  2417. VENDOR_IOCTL_REQ *uarg = (VENDOR_IOCTL_REQ *) arg;
  2418. VENDOR_IOCTL_REQ karg;
  2419. cpqfc_passthru_t kpass;
  2420. MPT_ADAPTER *ioc;
  2421. int iocnum = 0, iocnumX = 0;
  2422. int rc;
  2423. dctlprintk((": mptctl_cpq_passthru called.n"));
  2424. if (copy_from_user(&karg, uarg, sizeof(VENDOR_IOCTL_REQ))) {
  2425. printk(KERN_ERR "%s@%d::mptctl_cpq_passthru - "
  2426. "Unable to read in VENDOR_IOCTL_REQ @ %pn",
  2427. __FILE__, __LINE__, (void*)uarg);
  2428. return -EFAULT;
  2429. }
  2430. /* Set the IOC number */
  2431. iocnumX = karg.lc & 0xFF;
  2432. if (((iocnum = mpt_verify_adapter(iocnumX, &ioc)) < 0) ||
  2433.     (ioc == NULL)) {
  2434. dtmprintk((KERN_ERR "%s::mptctl_cpq_passthru() @%d - ioc%d not found!n",
  2435. __FILE__, __LINE__, iocnum));
  2436. return -ENODEV;
  2437. }
  2438. if (ioc->sh == NULL) {
  2439. printk(KERN_ERR "%s::mptctl_cpq_passthru() @%d - SCSI Host driver not loaded!n",
  2440. __FILE__, __LINE__);
  2441. return -EFAULT;
  2442. }
  2443. /* Read in the second buffer */
  2444. if (copy_from_user(&kpass, uarg->argp, sizeof(cpqfc_passthru_t))) {
  2445. printk(KERN_ERR "%s@%d::mptctl_cpq_passthru - "
  2446. "Unable to read in cpqfc_passthru_t @ %pn",
  2447. __FILE__, __LINE__, (void*)uarg);
  2448. return -EFAULT;
  2449. }
  2450. /* Generate the SCSI IO command and issue */
  2451. rc = mptctl_compaq_scsiio(&karg, &kpass);
  2452. return rc;
  2453. }
  2454. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2455. /* mptctl_compaq_scsiio - Reformat Compaq structures into driver structures
  2456.  * Call the generic _do_mpt_command function.
  2457.  *
  2458.  * Requires the SCSI host driver to be loaded.
  2459.  * I386 version.
  2460.  *
  2461.  * Outputs: None.
  2462.  * Return: 0 if successful
  2463.  * -EBUSY  if previous command timout and IOC reset is not complete.
  2464.  * -EFAULT if data unavailable
  2465.  * -ENODEV if no such device/adapter
  2466.  * -ETIME if timer expires
  2467.  */
  2468. static int
  2469. mptctl_compaq_scsiio(VENDOR_IOCTL_REQ *pVenReq, cpqfc_passthru_t *pPass)
  2470. {
  2471. struct mpt_ioctl_command karg;
  2472. SCSIIORequest_t  request ;
  2473. SCSIIORequest_t  *pMf;
  2474. int  ii, rc;
  2475. u8  opcode;
  2476. /* Fill in parameters to karg */
  2477. karg.hdr.iocnum = pVenReq->lc;
  2478. karg.hdr.port = 0;
  2479. karg.hdr.maxDataSize = 0; /* not used */
  2480. karg.timeout = 0; /* use default */
  2481. karg.replyFrameBufPtr = NULL; /* no reply data */
  2482. karg.maxReplyBytes = 0;
  2483. karg.senseDataPtr = pPass->sense_data;
  2484. karg.maxSenseBytes = pPass->sense_len; /* max is 40 */
  2485. if (pPass->rw_flag == MPT_COMPAQ_WRITE) {
  2486. karg.dataOutBufPtr = pPass->bufp;
  2487. karg.dataOutSize = pPass->len;
  2488. karg.dataInBufPtr = NULL;
  2489. karg.dataInSize = 0;
  2490. } else {
  2491. karg.dataInBufPtr = pPass->bufp;
  2492. karg.dataInSize = pPass->len;
  2493. karg.dataOutBufPtr = NULL;
  2494. karg.dataOutSize = 0;
  2495. }
  2496. karg.dataSgeOffset = (sizeof(SCSIIORequest_t) - sizeof(SGE_IO_UNION))/4;
  2497. /* Construct the Message frame */
  2498. pMf = &request;
  2499. pMf->TargetID = (u8) pVenReq->ld; /* ???? FIXME */
  2500. pMf->Bus = (u8) pPass->bus;
  2501. pMf->ChainOffset = 0;
  2502. pMf->Function = MPI_FUNCTION_SCSI_IO_REQUEST;
  2503. /* May need some tweaking here */
  2504. opcode = (u8) pPass->cdb[0];
  2505. if (opcode < 0x20)
  2506. pMf->CDBLength = 6;
  2507. else if (opcode < 0x60)
  2508. pMf->CDBLength = 10;
  2509. else if ((opcode < 0xC0) && (opcode >= 0xA0))
  2510. pMf->CDBLength = 12;
  2511. else
  2512. pMf->CDBLength = 16;
  2513. pMf->SenseBufferLength = karg.maxSenseBytes; /* max is 40 */
  2514. pMf->Reserved = 0;
  2515. pMf->MsgFlags = 0; /* set later */
  2516. pMf->MsgContext = 0; /* set later */
  2517. for (ii = 0; ii < 8; ii++)
  2518. pMf->LUN[ii] = 0;
  2519. pMf->LUN[1] = 0; /* ???? FIXME */
  2520. /* Tag values set by _do_mpt_command */
  2521. if (pPass->rw_flag == MPT_COMPAQ_WRITE)
  2522. pMf->Control = MPI_SCSIIO_CONTROL_WRITE;
  2523. else
  2524. pMf->Control = MPI_SCSIIO_CONTROL_READ;
  2525. for (ii = 0; ii < 16; ii++)
  2526. pMf->CDB[ii] = pPass->cdb[ii];
  2527. pMf->DataLength = pPass->len;
  2528. /* All remaining fields are set by the next function
  2529.  */
  2530. rc = mptctl_do_mpt_command (karg, (char *)pMf, 1);
  2531. return rc;
  2532. }
  2533. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2534. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,51)
  2535. #define owner_THIS_MODULE  owner: THIS_MODULE,
  2536. #else
  2537. #define owner_THIS_MODULE
  2538. #endif
  2539. static struct file_operations mptctl_fops = {
  2540. owner_THIS_MODULE
  2541. .llseek = no_llseek,
  2542. .read = mptctl_read,
  2543. .write = mptctl_write,
  2544. .ioctl = mptctl_ioctl,
  2545. .open = mptctl_open,
  2546. .release = mptctl_release,
  2547. };
  2548. static struct miscdevice mptctl_miscdev = {
  2549. MPT_MINOR,
  2550. MYNAM,
  2551. &mptctl_fops
  2552. };
  2553. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2554. #if defined(__sparc__) && defined(__sparc_v9__) /*{*/
  2555. /* The dynamic ioctl32 compat. registry only exists in >2.3.x sparc64 kernels */
  2556. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,0) /*{*/
  2557. extern int register_ioctl32_conversion(unsigned int cmd,
  2558.        int (*handler)(unsigned int,
  2559.       unsigned int,
  2560.       unsigned long,
  2561.       struct file *));
  2562. int unregister_ioctl32_conversion(unsigned int cmd);
  2563. extern asmlinkage int sys_ioctl(unsigned int fd, unsigned int cmd, unsigned long arg);
  2564. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2565. /* sparc32_XXX functions are used to provide a conversion between
  2566.  * pointers and u32's. If the arg does not contain any pointers, then
  2567.  * a specialized function (sparc32_XXX) is not needed. If the arg
  2568.  * does contain pointer(s), then the specialized function is used
  2569.  * to ensure the structure contents is properly processed by mptctl.
  2570.  */
  2571. static int
  2572. sparc32_mptfwxfer_ioctl(unsigned int fd, unsigned int cmd,
  2573. unsigned long arg, struct file *filp)
  2574. {
  2575. struct mpt_fw_xfer32 kfw32;
  2576. struct mpt_fw_xfer kfw;
  2577. MPT_ADAPTER *iocp = NULL;
  2578. int iocnum, iocnumX;
  2579. int nonblock = (filp->f_flags & O_NONBLOCK);
  2580. int ret;
  2581. dctlprintk((KERN_INFO MYNAM "::sparc32_mptfwxfer_ioctl() calledn"));
  2582. if (copy_from_user(&kfw32, (char *)arg, sizeof(kfw32)))
  2583. return -EFAULT;
  2584. /* Verify intended MPT adapter */
  2585. iocnumX = kfw32.iocnum & 0xFF;
  2586. if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
  2587.     (iocp == NULL)) {
  2588. dtmprintk((KERN_ERR MYNAM "::sparc32_mptfwxfer_ioctl @%d - ioc%d not found!n",
  2589. __LINE__, iocnumX));
  2590. return -ENODEV;
  2591. }
  2592. if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
  2593. return ret;
  2594. kfw.iocnum = iocnum;
  2595. kfw.fwlen = kfw32.fwlen;
  2596. kfw.bufp = (void *)(unsigned long)kfw32.bufp;
  2597. ret = mptctl_do_fw_download(kfw.iocnum, kfw.bufp, kfw.fwlen);
  2598. up(&mptctl_syscall_sem_ioc[iocp->id]);
  2599. return ret;
  2600. }
  2601. static int
  2602. sparc32_mpt_command(unsigned int fd, unsigned int cmd,
  2603. unsigned long arg, struct file *filp)
  2604. {
  2605. struct mpt_ioctl_command32 karg32;
  2606. struct mpt_ioctl_command32 *uarg = (struct mpt_ioctl_command32 *) arg;
  2607. struct mpt_ioctl_command karg;
  2608. MPT_ADAPTER *iocp = NULL;
  2609. int iocnum, iocnumX;
  2610. int nonblock = (filp->f_flags & O_NONBLOCK);
  2611. int ret;
  2612. dctlprintk((KERN_INFO MYNAM "::sparc32_mpt_command() calledn"));
  2613. if (copy_from_user(&karg32, (char *)arg, sizeof(karg32)))
  2614. return -EFAULT;
  2615. /* Verify intended MPT adapter */
  2616. iocnumX = karg32.hdr.iocnum & 0xFF;
  2617. if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) ||
  2618.     (iocp == NULL)) {
  2619. dtmprintk((KERN_ERR MYNAM "::sparc32_mpt_command @%d - ioc%d not found!n",
  2620. __LINE__, iocnumX));
  2621. return -ENODEV;
  2622. }
  2623. if ((ret = mptctl_syscall_down(iocp, nonblock)) != 0)
  2624. return ret;
  2625. /* Copy data to karg */
  2626. karg.hdr.iocnum = karg32.hdr.iocnum;
  2627. karg.hdr.port = karg32.hdr.port;
  2628. karg.timeout = karg32.timeout;
  2629. karg.maxReplyBytes = karg32.maxReplyBytes;
  2630. karg.dataInSize = karg32.dataInSize;
  2631. karg.dataOutSize = karg32.dataOutSize;
  2632. karg.maxSenseBytes = karg32.maxSenseBytes;
  2633. karg.dataSgeOffset = karg32.dataSgeOffset;
  2634. karg.replyFrameBufPtr = (char *)(unsigned long)karg32.replyFrameBufPtr;
  2635. karg.dataInBufPtr = (char *)(unsigned long)karg32.dataInBufPtr;
  2636. karg.dataOutBufPtr = (char *)(unsigned long)karg32.dataOutBufPtr;
  2637. karg.senseDataPtr = (char *)(unsigned long)karg32.senseDataPtr;
  2638. /* Pass new structure to do_mpt_command
  2639.  */
  2640. ret = mptctl_do_mpt_command (karg, (char *) &uarg->MF, 0);
  2641. up(&mptctl_syscall_sem_ioc[iocp->id]);
  2642. return ret;
  2643. }
  2644. static int
  2645. sparc32_mptctl_cpq_passthru(unsigned int fd, unsigned int cmd,
  2646. unsigned long arg, struct file *filp)
  2647. {
  2648. VENDOR_IOCTL_REQ32 *uarg = (VENDOR_IOCTL_REQ32 *) arg;
  2649. VENDOR_IOCTL_REQ32 karg32;
  2650. VENDOR_IOCTL_REQ karg;
  2651. cpqfc_passthru32_t kpass32;
  2652. cpqfc_passthru_t kpass;
  2653. MPT_ADAPTER *ioc;
  2654. int nonblock = (filp->f_flags & O_NONBLOCK);
  2655. int iocnum = 0, iocnumX = 0;
  2656. int rc;
  2657. int ii;
  2658. dctlprintk((KERN_INFO MYNAM "::sparc32_mptctl_cpq_passthru() calledn"));
  2659. if (copy_from_user(&karg32, (char *)arg, sizeof(karg32)))
  2660. return -EFAULT;
  2661. /* Verify intended MPT adapter */
  2662. iocnumX = karg32.lc & 0xFF;
  2663. if (((iocnum = mpt_verify_adapter(iocnumX, &ioc)) < 0) ||
  2664.     (ioc == NULL)) {
  2665. dtmprintk((KERN_ERR MYNAM "::sparc32_mpt_command @%d - ioc%d not found!n",
  2666. __LINE__, iocnumX));
  2667. return -ENODEV;
  2668. }
  2669. if ((rc = mptctl_syscall_down(ioc, nonblock)) != 0)
  2670. return rc;
  2671. /* Copy data to karg */
  2672. karg.ld = karg32.ld;
  2673. karg.node = karg32.node;
  2674. karg.lc = karg32.lc;
  2675. karg.nexus = karg32.nexus;
  2676. karg.argp = (void *)(unsigned long)karg32.argp;
  2677. /* Read in the second buffer */
  2678. if (copy_from_user(&kpass32, karg.argp, sizeof(cpqfc_passthru32_t))) {
  2679. printk(KERN_ERR "%s@%d::sparc32_mptctl_cpq_passthru - "
  2680. "Unable to read in cpqfc_passthru_t @ %pn",
  2681. __FILE__, __LINE__, (void*)uarg);
  2682. return -EFAULT;
  2683. }
  2684. /* Copy the 32bit buffer to kpass */
  2685. for (ii = 0; ii < 16; ii++)
  2686. kpass.cdb[ii] = kpass32.cdb[ii];
  2687. kpass.bus = kpass32.bus;
  2688. kpass.pdrive = kpass32.pdrive;
  2689. kpass.len = kpass32.len;
  2690. kpass.sense_len = kpass32.sense_len;
  2691. kpass.bufp = (void *)(unsigned long)kpass32.bufp;
  2692. kpass.rw_flag = kpass32.rw_flag;
  2693. /* Generate the SCSI IO command and issue */
  2694. rc = mptctl_compaq_scsiio(&karg, &kpass);
  2695. up(&mptctl_syscall_sem_ioc[ioc->id]);
  2696. return rc;
  2697. }
  2698. #endif /*} linux >= 2.3.x */
  2699. #endif /*} sparc */
  2700. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2701. int __init mptctl_init(void)
  2702. {
  2703. int err;
  2704. int i;
  2705. int where = 1;
  2706. int sz;
  2707. u8 *mem;
  2708. MPT_ADAPTER *ioc = NULL;
  2709. int iocnum;
  2710. show_mptmod_ver(my_NAME, my_VERSION);
  2711. for (i=0; i<MPT_MAX_ADAPTERS; i++) {
  2712. sema_init(&mptctl_syscall_sem_ioc[i], 1);
  2713. ioc = NULL;
  2714. if (((iocnum = mpt_verify_adapter(i, &ioc)) < 0) ||
  2715.     (ioc == NULL)) {
  2716. continue;
  2717. }
  2718. else {
  2719. /* This adapter instance is found.
  2720.  * Allocate and inite a MPT_IOCTL structure
  2721.  */
  2722. sz = sizeof (MPT_IOCTL);
  2723. mem = kmalloc(sz, GFP_KERNEL);
  2724. if (mem == NULL) {
  2725. err = -ENOMEM;
  2726. goto out_fail;
  2727. }
  2728. memset(mem, 0, sz);
  2729. ioc->ioctl = (MPT_IOCTL *) mem;
  2730. ioc->ioctl->ioc = ioc;
  2731. init_timer (&ioc->ioctl->timer);
  2732. ioc->ioctl->timer.data = (unsigned long) ioc->ioctl;
  2733. ioc->ioctl->timer.function = mptctl_timer_expired;
  2734. init_timer (&ioc->ioctl->TMtimer);
  2735. ioc->ioctl->TMtimer.data = (unsigned long) ioc->ioctl;
  2736. ioc->ioctl->TMtimer.function = mptctl_timer_expired;
  2737. }
  2738. }
  2739. #if defined(__sparc__) && defined(__sparc_v9__) /*{*/
  2740. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,0) /*{*/
  2741. err = register_ioctl32_conversion(MPTIOCINFO, NULL);
  2742. if (++where && err) goto out_fail;
  2743. err = register_ioctl32_conversion(MPTTARGETINFO, NULL);
  2744. if (++where && err) goto out_fail;
  2745. err = register_ioctl32_conversion(MPTTEST, NULL);
  2746. if (++where && err) goto out_fail;
  2747. err = register_ioctl32_conversion(MPTEVENTQUERY, NULL);
  2748. if (++where && err) goto out_fail;
  2749. err = register_ioctl32_conversion(MPTEVENTENABLE, NULL);
  2750. if (++where && err) goto out_fail;
  2751. err = register_ioctl32_conversion(MPTEVENTREPORT, NULL);
  2752. if (++where && err) goto out_fail;
  2753. err = register_ioctl32_conversion(MPTHARDRESET, NULL);
  2754. if (++where && err) goto out_fail;
  2755. err = register_ioctl32_conversion(MPTCOMMAND32, sparc32_mpt_command);
  2756. if (++where && err) goto out_fail;
  2757. err = register_ioctl32_conversion(MPTFWDOWNLOAD32,
  2758.   sparc32_mptfwxfer_ioctl);
  2759. if (++where && err) goto out_fail;
  2760. err = register_ioctl32_conversion(CPQFCTS_GETPCIINFO, NULL);
  2761. if (++where && err) goto out_fail;
  2762. err = register_ioctl32_conversion(CPQFCTS_CTLR_STATUS, NULL);
  2763. if (++where && err) goto out_fail;
  2764. err = register_ioctl32_conversion(CPQFCTS_GETDRIVER, NULL);
  2765. if (++where && err) goto out_fail;
  2766. err = register_ioctl32_conversion(CPQFCTS_SCSI_IOCTL_FC_TARGET_ADDRESS, NULL);
  2767. if (++where && err) goto out_fail;
  2768. err = register_ioctl32_conversion(CPQFCTS_SCSI_PASSTHRU32, sparc32_mptctl_cpq_passthru);
  2769. if (++where && err) goto out_fail;
  2770. #endif /*} linux >= 2.3.x */
  2771. #endif /*} sparc */
  2772. /* Register this device */
  2773. if (misc_register(&mptctl_miscdev) == -1) {
  2774. printk(KERN_ERR MYNAM ": Can't register misc device [minor=%d].n", MPT_MINOR);
  2775. err = -EBUSY;
  2776. goto out_fail;
  2777. }
  2778. printk(KERN_INFO MYNAM ": Registered with Fusion MPT base drivern");
  2779. printk(KERN_INFO MYNAM ": /dev/%s @ (major,minor=%d,%d)n",
  2780.  mptctl_miscdev.name, MISC_MAJOR, mptctl_miscdev.minor);
  2781. /*
  2782.  *  Install our handler
  2783.  */
  2784. ++where;
  2785. if ((mptctl_id = mpt_register(mptctl_reply, MPTCTL_DRIVER)) < 0) {
  2786. printk(KERN_ERR MYNAM ": ERROR: Failed to register with Fusion MPT base drivern");
  2787. misc_deregister(&mptctl_miscdev);
  2788. err = -EBUSY;
  2789. goto out_fail;
  2790. }
  2791. if (mpt_reset_register(mptctl_id, mptctl_ioc_reset) == 0) {
  2792. dprintk((KERN_INFO MYNAM ": Registered for IOC reset notificationsn"));
  2793. } else {
  2794. /* FIXME! */
  2795. }
  2796. return 0;
  2797. out_fail:
  2798. #if defined(__sparc__) && defined(__sparc_v9__) /*{*/
  2799. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,0) /*{*/
  2800. printk(KERN_ERR MYNAM ": ERROR: Failed to register ioctl32_conversion!"
  2801. " (%d:err=%d)n", where, err);
  2802. unregister_ioctl32_conversion(MPTIOCINFO);
  2803. unregister_ioctl32_conversion(MPTTARGETINFO);
  2804. unregister_ioctl32_conversion(MPTTEST);
  2805. unregister_ioctl32_conversion(MPTEVENTQUERY);
  2806. unregister_ioctl32_conversion(MPTEVENTENABLE);
  2807. unregister_ioctl32_conversion(MPTEVENTREPORT);
  2808. unregister_ioctl32_conversion(MPTHARDRESET);
  2809. unregister_ioctl32_conversion(MPTCOMMAND32);
  2810. unregister_ioctl32_conversion(MPTFWDOWNLOAD32);
  2811. unregister_ioctl32_conversion(CPQFCTS_GETPCIINFO);
  2812. unregister_ioctl32_conversion(CPQFCTS_GETDRIVER);
  2813. unregister_ioctl32_conversion(CPQFCTS_CTLR_STATUS);
  2814. unregister_ioctl32_conversion(CPQFCTS_SCSI_IOCTL_FC_TARGET_ADDRESS);
  2815. unregister_ioctl32_conversion(CPQFCTS_SCSI_PASSTHRU32);
  2816. #endif /*} linux >= 2.3.x */
  2817. #endif /*} sparc */
  2818. for (i=0; i<MPT_MAX_ADAPTERS; i++) {
  2819. ioc = NULL;
  2820. if (((iocnum = mpt_verify_adapter(i, &ioc)) < 0) ||
  2821.     (ioc == NULL)) {
  2822. continue;
  2823. }
  2824. else {
  2825. if (ioc->ioctl) {
  2826. kfree ( ioc->ioctl );
  2827. ioc->ioctl = NULL;
  2828. }
  2829. }
  2830. }
  2831. return err;
  2832. }
  2833. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2834. void mptctl_exit(void)
  2835. {
  2836. int i;
  2837. MPT_ADAPTER *ioc;
  2838. int iocnum;
  2839. misc_deregister(&mptctl_miscdev);
  2840. printk(KERN_INFO MYNAM ": Deregistered /dev/%s @ (major,minor=%d,%d)n",
  2841.  mptctl_miscdev.name, MISC_MAJOR, mptctl_miscdev.minor);
  2842. /* De-register reset handler from base module */
  2843. mpt_reset_deregister(mptctl_id);
  2844. dprintk((KERN_INFO MYNAM ": Deregistered for IOC reset notificationsn"));
  2845. /* De-register callback handler from base module */
  2846. mpt_deregister(mptctl_id);
  2847. printk(KERN_INFO MYNAM ": Deregistered from Fusion MPT base drivern");
  2848. /* Free allocated memory */
  2849. for (i=0; i<MPT_MAX_ADAPTERS; i++) {
  2850. ioc = NULL;
  2851. if (((iocnum = mpt_verify_adapter(i, &ioc)) < 0) ||
  2852.     (ioc == NULL)) {
  2853. continue;
  2854. }
  2855. else {
  2856. if (ioc->ioctl) {
  2857. kfree ( ioc->ioctl );
  2858. ioc->ioctl = NULL;
  2859. }
  2860. }
  2861. }
  2862. }
  2863. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  2864. module_init(mptctl_init);
  2865. module_exit(mptctl_exit);