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