2 * linux/drivers/message/fusion/mptfc.c
3 * For use with LSI Logic PCI chip/adapter(s)
4 * running LSI Logic Fusion MPT (Message Passing Technology) firmware.
6 * Copyright (c) 1999-2005 LSI Logic Corporation
7 * (mailto:mpt_linux_developer@lsil.com)
10 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; version 2 of the License.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
22 THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
23 CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
24 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
25 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
26 solely responsible for determining the appropriateness of using and
27 distributing the Program and assumes all risks associated with its
28 exercise of rights under this Agreement, including but not limited to
29 the risks and costs of program errors, damage to or loss of data,
30 programs or equipment, and unavailability or interruption of operations.
32 DISCLAIMER OF LIABILITY
33 NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
34 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
36 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
37 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
38 USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
39 HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
41 You should have received a copy of the GNU General Public License
42 along with this program; if not, write to the Free Software
43 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
45 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
46 #include "linux_compat.h" /* linux-2.6 tweaks */
47 #include <linux/module.h>
48 #include <linux/kernel.h>
49 #include <linux/init.h>
50 #include <linux/errno.h>
51 #include <linux/kdev_t.h>
52 #include <linux/blkdev.h>
53 #include <linux/delay.h> /* for mdelay */
54 #include <linux/interrupt.h> /* needed for in_interrupt() proto */
55 #include <linux/reboot.h> /* notifier code */
56 #include <linux/sched.h>
57 #include <linux/workqueue.h>
58 #include <linux/sort.h>
60 #include <scsi/scsi.h>
61 #include <scsi/scsi_cmnd.h>
62 #include <scsi/scsi_device.h>
63 #include <scsi/scsi_host.h>
64 #include <scsi/scsi_tcq.h>
65 #include <scsi/scsi_transport_fc.h>
70 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
71 #define my_NAME "Fusion MPT FC Host driver"
72 #define my_VERSION MPT_LINUX_VERSION_COMMON
75 MODULE_AUTHOR(MODULEAUTHOR);
76 MODULE_DESCRIPTION(my_NAME);
77 MODULE_LICENSE("GPL");
79 /* Command line args */
80 static int mpt_pq_filter = 0;
81 module_param(mpt_pq_filter, int, 0);
82 MODULE_PARM_DESC(mpt_pq_filter, " Enable peripheral qualifier filter: enable=1 (default=0)");
84 #define MPTFC_DEV_LOSS_TMO (60)
85 static int mptfc_dev_loss_tmo = MPTFC_DEV_LOSS_TMO; /* reasonable default */
86 module_param(mptfc_dev_loss_tmo, int, 0);
87 MODULE_PARM_DESC(mptfc_dev_loss_tmo, " Initial time the driver programs the "
88 " transport to wait for an rport to "
89 " return following a device loss event."
92 static int mptfcDoneCtx = -1;
93 static int mptfcTaskCtx = -1;
94 static int mptfcInternalCtx = -1; /* Used only for internal commands */
96 static int mptfc_target_alloc(struct scsi_target *starget);
97 static int mptfc_slave_alloc(struct scsi_device *sdev);
98 static int mptfc_qcmd(struct scsi_cmnd *SCpnt,
99 void (*done)(struct scsi_cmnd *));
100 static void mptfc_target_destroy(struct scsi_target *starget);
101 static void mptfc_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout);
102 static void __devexit mptfc_remove(struct pci_dev *pdev);
104 static struct scsi_host_template mptfc_driver_template = {
105 .module = THIS_MODULE,
106 .proc_name = "mptfc",
107 .proc_info = mptscsih_proc_info,
108 .name = "MPT FC Host",
109 .info = mptscsih_info,
110 .queuecommand = mptfc_qcmd,
111 .target_alloc = mptfc_target_alloc,
112 .slave_alloc = mptfc_slave_alloc,
113 .slave_configure = mptscsih_slave_configure,
114 .target_destroy = mptfc_target_destroy,
115 .slave_destroy = mptscsih_slave_destroy,
116 .change_queue_depth = mptscsih_change_queue_depth,
117 .eh_abort_handler = mptscsih_abort,
118 .eh_device_reset_handler = mptscsih_dev_reset,
119 .eh_bus_reset_handler = mptscsih_bus_reset,
120 .eh_host_reset_handler = mptscsih_host_reset,
121 .bios_param = mptscsih_bios_param,
122 .can_queue = MPT_FC_CAN_QUEUE,
124 .sg_tablesize = MPT_SCSI_SG_DEPTH,
127 .use_clustering = ENABLE_CLUSTERING,
130 /****************************************************************************
134 static struct pci_device_id mptfc_pci_table[] = {
135 { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FC909,
136 PCI_ANY_ID, PCI_ANY_ID },
137 { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FC919,
138 PCI_ANY_ID, PCI_ANY_ID },
139 { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FC929,
140 PCI_ANY_ID, PCI_ANY_ID },
141 { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FC919X,
142 PCI_ANY_ID, PCI_ANY_ID },
143 { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FC929X,
144 PCI_ANY_ID, PCI_ANY_ID },
145 { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FC939X,
146 PCI_ANY_ID, PCI_ANY_ID },
147 { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FC949X,
148 PCI_ANY_ID, PCI_ANY_ID },
149 { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FC949ES,
150 PCI_ANY_ID, PCI_ANY_ID },
151 {0} /* Terminating entry */
153 MODULE_DEVICE_TABLE(pci, mptfc_pci_table);
155 static struct scsi_transport_template *mptfc_transport_template = NULL;
157 static struct fc_function_template mptfc_transport_functions = {
158 .dd_fcrport_size = 8,
159 .show_host_node_name = 1,
160 .show_host_port_name = 1,
161 .show_host_supported_classes = 1,
162 .show_host_port_id = 1,
163 .show_rport_supported_classes = 1,
164 .show_starget_node_name = 1,
165 .show_starget_port_name = 1,
166 .show_starget_port_id = 1,
167 .set_rport_dev_loss_tmo = mptfc_set_rport_loss_tmo,
168 .show_rport_dev_loss_tmo = 1,
172 /* FIXME! values controlling firmware RESCAN event
173 * need to be set low to allow dev_loss_tmo to
174 * work as expected. Currently, firmware doesn't
175 * notify driver of RESCAN event until some number
176 * of seconds elapse. This value can be set via
180 mptfc_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
183 rport->dev_loss_tmo = timeout;
185 rport->dev_loss_tmo = mptfc_dev_loss_tmo;
189 mptfc_FcDevPage0_cmp_func(const void *a, const void *b)
191 FCDevicePage0_t **aa = (FCDevicePage0_t **)a;
192 FCDevicePage0_t **bb = (FCDevicePage0_t **)b;
194 if ((*aa)->CurrentBus == (*bb)->CurrentBus) {
195 if ((*aa)->CurrentTargetID == (*bb)->CurrentTargetID)
197 if ((*aa)->CurrentTargetID < (*bb)->CurrentTargetID)
201 if ((*aa)->CurrentBus < (*bb)->CurrentBus)
207 mptfc_GetFcDevPage0(MPT_ADAPTER *ioc, int ioc_port,
208 void(*func)(MPT_ADAPTER *ioc,int channel, FCDevicePage0_t *arg))
210 ConfigPageHeader_t hdr;
212 FCDevicePage0_t *ppage0_alloc, *fc;
213 dma_addr_t page0_dma;
217 FCDevicePage0_t *p0_array=NULL, *p_p0;
218 FCDevicePage0_t **pp0_array=NULL, **p_pp0;
221 U32 port_id = 0xffffff;
223 int max_bus = ioc->facts.MaxBuses;
224 int max_targ = ioc->facts.MaxDevices;
226 if (max_bus == 0 || max_targ == 0)
229 data_sz = sizeof(FCDevicePage0_t) * max_bus * max_targ;
230 p_p0 = p0_array = kzalloc(data_sz, GFP_KERNEL);
234 data_sz = sizeof(FCDevicePage0_t *) * max_bus * max_targ;
235 p_pp0 = pp0_array = kzalloc(data_sz, GFP_KERNEL);
240 /* Get FC Device Page 0 header */
244 hdr.PageType = MPI_CONFIG_PAGETYPE_FC_DEVICE;
245 cfg.cfghdr.hdr = &hdr;
247 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
249 cfg.pageAddr = port_id;
252 if ((rc = mpt_config(ioc, &cfg)) != 0)
255 if (hdr.PageLength <= 0)
258 data_sz = hdr.PageLength * 4;
259 ppage0_alloc = pci_alloc_consistent(ioc->pcidev, data_sz,
265 cfg.physAddr = page0_dma;
266 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
268 if ((rc = mpt_config(ioc, &cfg)) == 0) {
269 ppage0_alloc->PortIdentifier =
270 le32_to_cpu(ppage0_alloc->PortIdentifier);
272 ppage0_alloc->WWNN.Low =
273 le32_to_cpu(ppage0_alloc->WWNN.Low);
275 ppage0_alloc->WWNN.High =
276 le32_to_cpu(ppage0_alloc->WWNN.High);
278 ppage0_alloc->WWPN.Low =
279 le32_to_cpu(ppage0_alloc->WWPN.Low);
281 ppage0_alloc->WWPN.High =
282 le32_to_cpu(ppage0_alloc->WWPN.High);
284 ppage0_alloc->BBCredit =
285 le16_to_cpu(ppage0_alloc->BBCredit);
287 ppage0_alloc->MaxRxFrameSize =
288 le16_to_cpu(ppage0_alloc->MaxRxFrameSize);
290 port_id = ppage0_alloc->PortIdentifier;
292 *p_p0 = *ppage0_alloc; /* save data */
293 *p_pp0++ = p_p0++; /* save addr */
295 pci_free_consistent(ioc->pcidev, data_sz,
296 (u8 *) ppage0_alloc, page0_dma);
300 } while (port_id <= 0xff0000);
305 sort (pp0_array, num_targ, sizeof(FCDevicePage0_t *),
306 mptfc_FcDevPage0_cmp_func, NULL);
307 /* call caller's func for each targ */
308 for (ii = 0; ii < num_targ; ii++) {
309 fc = *(pp0_array+ii);
310 func(ioc, ioc_port, fc);
323 mptfc_generate_rport_ids(FCDevicePage0_t *pg0, struct fc_rport_identifiers *rid)
325 /* not currently usable */
326 if (pg0->Flags & (MPI_FC_DEVICE_PAGE0_FLAGS_PLOGI_INVALID |
327 MPI_FC_DEVICE_PAGE0_FLAGS_PRLI_INVALID))
330 if (!(pg0->Flags & MPI_FC_DEVICE_PAGE0_FLAGS_TARGETID_BUS_VALID))
333 if (!(pg0->Protocol & MPI_FC_DEVICE_PAGE0_PROT_FCP_TARGET))
337 * board data structure already normalized to platform endianness
338 * shifted to avoid unaligned access on 64 bit architecture
340 rid->node_name = ((u64)pg0->WWNN.High) << 32 | (u64)pg0->WWNN.Low;
341 rid->port_name = ((u64)pg0->WWPN.High) << 32 | (u64)pg0->WWPN.Low;
342 rid->port_id = pg0->PortIdentifier;
343 rid->roles = FC_RPORT_ROLE_UNKNOWN;
349 mptfc_register_dev(MPT_ADAPTER *ioc, int channel, FCDevicePage0_t *pg0)
351 struct fc_rport_identifiers rport_ids;
352 struct fc_rport *rport;
353 struct mptfc_rport_info *ri;
357 u32 roles = FC_RPORT_ROLE_UNKNOWN;
359 if (mptfc_generate_rport_ids(pg0, &rport_ids) < 0)
362 roles |= FC_RPORT_ROLE_FCP_TARGET;
363 if (pg0->Protocol & MPI_FC_DEVICE_PAGE0_PROT_FCP_INITIATOR)
364 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
366 /* scan list looking for a match */
367 list_for_each_entry(ri, &ioc->fc_rports, list) {
368 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low;
369 if (pn == rport_ids.port_name) { /* match */
370 list_move_tail(&ri->list, &ioc->fc_rports);
375 if (new_ri) { /* allocate one */
376 ri = kzalloc(sizeof(struct mptfc_rport_info), GFP_KERNEL);
379 list_add_tail(&ri->list, &ioc->fc_rports);
382 ri->pg0 = *pg0; /* add/update pg0 data */
383 ri->flags &= ~MPT_RPORT_INFO_FLAGS_MISSING;
385 /* MPT_RPORT_INFO_FLAGS_REGISTERED - rport not previously deleted */
386 if (!(ri->flags & MPT_RPORT_INFO_FLAGS_REGISTERED)) {
387 ri->flags |= MPT_RPORT_INFO_FLAGS_REGISTERED;
388 rport = fc_remote_port_add(ioc->sh, channel, &rport_ids);
391 if (new_ri) /* may have been reset by user */
392 rport->dev_loss_tmo = mptfc_dev_loss_tmo;
394 * if already mapped, remap here. If not mapped,
395 * target_alloc will allocate vtarget and map,
396 * slave_alloc will fill in vdev from vtarget.
399 vtarget = ri->starget->hostdata;
401 vtarget->target_id = pg0->CurrentTargetID;
402 vtarget->bus_id = pg0->CurrentBus;
405 *((struct mptfc_rport_info **)rport->dd_data) = ri;
406 /* scan will be scheduled once rport becomes a target */
407 fc_remote_port_rolechg(rport,roles);
409 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low;
410 nn = (u64)ri->pg0.WWNN.High << 32 | (u64)ri->pg0.WWNN.Low;
411 dfcprintk ((MYIOC_s_INFO_FMT
412 "mptfc_reg_dev.%d: %x, %llx / %llx, tid %d, "
413 "rport tid %d, tmo %d\n",
417 (unsigned long long)nn,
418 (unsigned long long)pn,
419 pg0->CurrentTargetID,
420 ri->rport->scsi_target_id,
421 ri->rport->dev_loss_tmo));
431 * OS entry point to allow for host driver to free allocated memory
432 * Called if no device present or device being unloaded
435 mptfc_target_destroy(struct scsi_target *starget)
437 struct fc_rport *rport;
438 struct mptfc_rport_info *ri;
440 rport = starget_to_rport(starget);
442 ri = *((struct mptfc_rport_info **)rport->dd_data);
443 if (ri) /* better be! */
446 if (starget->hostdata)
447 kfree(starget->hostdata);
448 starget->hostdata = NULL;
452 * OS entry point to allow host driver to alloc memory
453 * for each scsi target. Called once per device the bus scan.
454 * Return non-zero if allocation fails.
457 mptfc_target_alloc(struct scsi_target *starget)
460 struct fc_rport *rport;
461 struct mptfc_rport_info *ri;
464 vtarget = kzalloc(sizeof(VirtTarget), GFP_KERNEL);
467 starget->hostdata = vtarget;
470 rport = starget_to_rport(starget);
472 ri = *((struct mptfc_rport_info **)rport->dd_data);
473 if (ri) { /* better be! */
474 vtarget->target_id = ri->pg0.CurrentTargetID;
475 vtarget->bus_id = ri->pg0.CurrentBus;
476 ri->starget = starget;
482 starget->hostdata = NULL;
489 * OS entry point to allow host driver to alloc memory
490 * for each scsi device. Called once per device the bus scan.
491 * Return non-zero if allocation fails.
492 * Init memory once per LUN.
495 mptfc_slave_alloc(struct scsi_device *sdev)
500 struct scsi_target *starget;
501 struct fc_rport *rport;
504 starget = scsi_target(sdev);
505 rport = starget_to_rport(starget);
507 if (!rport || fc_remote_port_chkready(rport))
510 hd = (MPT_SCSI_HOST *)sdev->host->hostdata;
512 vdev = kzalloc(sizeof(VirtDevice), GFP_KERNEL);
514 printk(MYIOC_s_ERR_FMT "slave_alloc kmalloc(%zd) FAILED!\n",
515 hd->ioc->name, sizeof(VirtDevice));
520 sdev->hostdata = vdev;
521 vtarget = starget->hostdata;
523 if (vtarget->num_luns == 0) {
524 vtarget->ioc_id = hd->ioc->id;
525 vtarget->tflags = MPT_TARGET_FLAGS_Q_YES |
526 MPT_TARGET_FLAGS_VALID_INQUIRY;
527 hd->Targets[sdev->id] = vtarget;
530 vdev->vtarget = vtarget;
531 vdev->lun = sdev->lun;
539 struct mptfc_rport_info *ri;
540 ri = *((struct mptfc_rport_info **)rport->dd_data);
541 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low;
542 nn = (u64)ri->pg0.WWNN.High << 32 | (u64)ri->pg0.WWNN.Low;
543 dfcprintk ((MYIOC_s_INFO_FMT
544 "mptfc_slv_alloc.%d: num_luns %d, sdev.id %d, "
545 "CurrentTargetID %d, %x %llx %llx\n",
549 sdev->id, ri->pg0.CurrentTargetID,
550 ri->pg0.PortIdentifier,
551 (unsigned long long)pn,
552 (unsigned long long)nn));
560 mptfc_qcmd(struct scsi_cmnd *SCpnt, void (*done)(struct scsi_cmnd *))
562 struct mptfc_rport_info *ri;
563 struct fc_rport *rport = starget_to_rport(scsi_target(SCpnt->device));
566 err = fc_remote_port_chkready(rport);
573 /* dd_data is null until finished adding target */
574 ri = *((struct mptfc_rport_info **)rport->dd_data);
576 dfcprintk ((MYIOC_s_INFO_FMT
577 "mptfc_qcmd.%d: %d:%d, dd_data is null.\n",
578 ((MPT_SCSI_HOST *) SCpnt->device->host->hostdata)->ioc->name,
579 ((MPT_SCSI_HOST *) SCpnt->device->host->hostdata)->ioc->sh->host_no,
580 SCpnt->device->id,SCpnt->device->lun));
581 SCpnt->result = DID_IMM_RETRY << 16;
586 err = mptscsih_qcmd(SCpnt,done);
589 dfcprintk ((MYIOC_s_INFO_FMT
590 "mptfc_qcmd.%d: %d:%d, mptscsih_qcmd returns non-zero.\n",
591 ((MPT_SCSI_HOST *) SCpnt->device->host->hostdata)->ioc->name,
592 ((MPT_SCSI_HOST *) SCpnt->device->host->hostdata)->ioc->sh->host_no,
593 SCpnt->device->id,SCpnt->device->lun));
600 mptfc_init_host_attr(MPT_ADAPTER *ioc,int portnum)
602 unsigned class = 0, cos = 0;
604 /* don't know what to do as only one scsi (fc) host was allocated */
608 class = ioc->fc_port_page0[portnum].SupportedServiceClass;
609 if (class & MPI_FCPORTPAGE0_SUPPORT_CLASS_1)
610 cos |= FC_COS_CLASS1;
611 if (class & MPI_FCPORTPAGE0_SUPPORT_CLASS_2)
612 cos |= FC_COS_CLASS2;
613 if (class & MPI_FCPORTPAGE0_SUPPORT_CLASS_3)
614 cos |= FC_COS_CLASS3;
616 fc_host_node_name(ioc->sh) =
617 (u64)ioc->fc_port_page0[portnum].WWNN.High << 32
618 | (u64)ioc->fc_port_page0[portnum].WWNN.Low;
620 fc_host_port_name(ioc->sh) =
621 (u64)ioc->fc_port_page0[portnum].WWPN.High << 32
622 | (u64)ioc->fc_port_page0[portnum].WWPN.Low;
624 fc_host_port_id(ioc->sh) = ioc->fc_port_page0[portnum].PortIdentifier;
626 fc_host_supported_classes(ioc->sh) = cos;
628 fc_host_tgtid_bind_type(ioc->sh) = FC_TGTID_BIND_BY_WWPN;
632 mptfc_rescan_devices(void *arg)
634 MPT_ADAPTER *ioc = (MPT_ADAPTER *)arg;
639 struct mptfc_rport_info *ri;
642 /* start by tagging all ports as missing */
643 list_for_each_entry(ri, &ioc->fc_rports, list) {
644 if (ri->flags & MPT_RPORT_INFO_FLAGS_REGISTERED) {
645 ri->flags |= MPT_RPORT_INFO_FLAGS_MISSING;
650 * now rescan devices known to adapter,
651 * will reregister existing rports
653 for (ii=0; ii < ioc->facts.NumberOfPorts; ii++) {
654 (void) mptbase_GetFcPortPage0(ioc, ii);
655 mptfc_init_host_attr(ioc,ii); /* refresh */
656 mptfc_GetFcDevPage0(ioc,ii,mptfc_register_dev);
659 /* delete devices still missing */
660 list_for_each_entry(ri, &ioc->fc_rports, list) {
661 /* if newly missing, delete it */
662 if (ri->flags & MPT_RPORT_INFO_FLAGS_MISSING) {
664 ri->flags &= ~(MPT_RPORT_INFO_FLAGS_REGISTERED|
665 MPT_RPORT_INFO_FLAGS_MISSING);
666 fc_remote_port_delete(ri->rport); /* won't sleep */
669 pn = (u64)ri->pg0.WWPN.High << 32 |
670 (u64)ri->pg0.WWPN.Low;
671 dfcprintk ((MYIOC_s_INFO_FMT
672 "mptfc_rescan.%d: %llx deleted\n",
675 (unsigned long long)pn));
680 * allow multiple passes as target state
681 * might have changed during scan
683 spin_lock_irqsave(&ioc->fc_rescan_work_lock, flags);
684 if (ioc->fc_rescan_work_count > 2) /* only need one more */
685 ioc->fc_rescan_work_count = 2;
686 work_to_do = --ioc->fc_rescan_work_count;
687 spin_unlock_irqrestore(&ioc->fc_rescan_work_lock, flags);
688 } while (work_to_do);
692 mptfc_probe(struct pci_dev *pdev, const struct pci_device_id *id)
694 struct Scsi_Host *sh;
705 if ((r = mpt_attach(pdev,id)) != 0)
708 ioc = pci_get_drvdata(pdev);
709 ioc->DoneCtx = mptfcDoneCtx;
710 ioc->TaskCtx = mptfcTaskCtx;
711 ioc->InternalCtx = mptfcInternalCtx;
713 /* Added sanity check on readiness of the MPT adapter.
715 if (ioc->last_state != MPI_IOC_STATE_OPERATIONAL) {
716 printk(MYIOC_s_WARN_FMT
717 "Skipping because it's not operational!\n",
720 goto out_mptfc_probe;
724 printk(MYIOC_s_WARN_FMT "Skipping because it's disabled!\n",
727 goto out_mptfc_probe;
730 /* Sanity check - ensure at least 1 port is INITIATOR capable
733 for (ii=0; ii < ioc->facts.NumberOfPorts; ii++) {
734 if (ioc->pfacts[ii].ProtocolFlags &
735 MPI_PORTFACTS_PROTOCOL_INITIATOR)
740 printk(MYIOC_s_WARN_FMT
741 "Skipping ioc=%p because SCSI Initiator mode is NOT enabled!\n",
746 sh = scsi_host_alloc(&mptfc_driver_template, sizeof(MPT_SCSI_HOST));
749 printk(MYIOC_s_WARN_FMT
750 "Unable to register controller with SCSI subsystem\n",
753 goto out_mptfc_probe;
756 INIT_WORK(&ioc->fc_rescan_work, mptfc_rescan_devices,(void *)ioc);
758 spin_lock_irqsave(&ioc->FreeQlock, flags);
760 /* Attach the SCSI Host to the IOC structure
768 /* set 16 byte cdb's */
769 sh->max_cmd_len = 16;
771 sh->max_id = MPT_MAX_FC_DEVICES<256 ? MPT_MAX_FC_DEVICES : 255;
773 sh->max_lun = MPT_LAST_LUN + 1;
775 sh->this_id = ioc->pfacts[0].PortSCSIID;
779 sh->unique_id = ioc->id;
781 /* Verify that we won't exceed the maximum
782 * number of chain buffers
783 * We can optimize: ZZ = req_sz/sizeof(SGE)
785 * numSGE = 1 + (ZZ-1)*(maxChain -1) + ZZ
786 * + (req_sz - 64)/sizeof(SGE)
787 * A slightly different algorithm is required for
790 scale = ioc->req_sz/(sizeof(dma_addr_t) + sizeof(u32));
791 if (sizeof(dma_addr_t) == sizeof(u64)) {
792 numSGE = (scale - 1) *
793 (ioc->facts.MaxChainDepth-1) + scale +
794 (ioc->req_sz - 60) / (sizeof(dma_addr_t) +
797 numSGE = 1 + (scale - 1) *
798 (ioc->facts.MaxChainDepth-1) + scale +
799 (ioc->req_sz - 64) / (sizeof(dma_addr_t) +
803 if (numSGE < sh->sg_tablesize) {
804 /* Reset this value */
805 dprintk((MYIOC_s_INFO_FMT
806 "Resetting sg_tablesize to %d from %d\n",
807 ioc->name, numSGE, sh->sg_tablesize));
808 sh->sg_tablesize = numSGE;
811 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
813 hd = (MPT_SCSI_HOST *) sh->hostdata;
816 /* SCSI needs scsi_cmnd lookup table!
817 * (with size equal to req_depth*PtrSz!)
819 hd->ScsiLookup = kcalloc(ioc->req_depth, sizeof(void *), GFP_ATOMIC);
820 if (!hd->ScsiLookup) {
822 goto out_mptfc_probe;
825 dprintk((MYIOC_s_INFO_FMT "ScsiLookup @ %p\n",
826 ioc->name, hd->ScsiLookup));
828 /* Allocate memory for the device structures.
829 * A non-Null pointer at an offset
830 * indicates a device exists.
831 * max_id = 1 + maximum id (hosts.h)
833 hd->Targets = kcalloc(sh->max_id, sizeof(void *), GFP_ATOMIC);
836 goto out_mptfc_probe;
839 dprintk((KERN_INFO " vdev @ %p\n", hd->Targets));
841 /* Clear the TM flags
844 hd->tmState = TM_STATE_NONE;
845 hd->resetPending = 0;
846 hd->abortSCpnt = NULL;
848 /* Clear the pointer used to store
849 * single-threaded commands, i.e., those
850 * issued during a bus scan, dv and
851 * configuration pages.
855 /* Initialize this SCSI Hosts' timers
856 * To use, set the timer expires field
859 init_timer(&hd->timer);
860 hd->timer.data = (unsigned long) hd;
861 hd->timer.function = mptscsih_timer_expired;
863 hd->mpt_pq_filter = mpt_pq_filter;
865 ddvprintk((MYIOC_s_INFO_FMT
866 "mpt_pq_filter %x\n",
870 init_waitqueue_head(&hd->scandv_waitq);
871 hd->scandv_wait_done = 0;
872 hd->last_queue_full = 0;
874 sh->transportt = mptfc_transport_template;
875 error = scsi_add_host (sh, &ioc->pcidev->dev);
877 dprintk((KERN_ERR MYNAM
878 "scsi_add_host failed\n"));
879 goto out_mptfc_probe;
882 /* initialize workqueue */
884 snprintf(ioc->fc_rescan_work_q_name, KOBJ_NAME_LEN, "mptfc_wq_%d",
886 ioc->fc_rescan_work_q =
887 create_singlethread_workqueue(ioc->fc_rescan_work_q_name);
888 if (!ioc->fc_rescan_work_q)
889 goto out_mptfc_probe;
893 * by doing it via the workqueue, some locking is eliminated
896 ioc->fc_rescan_work_count = 1;
897 queue_work(ioc->fc_rescan_work_q, &ioc->fc_rescan_work);
898 flush_workqueue(ioc->fc_rescan_work_q);
904 mptscsih_remove(pdev);
908 static struct pci_driver mptfc_driver = {
910 .id_table = mptfc_pci_table,
911 .probe = mptfc_probe,
912 .remove = __devexit_p(mptfc_remove),
913 .shutdown = mptscsih_shutdown,
915 .suspend = mptscsih_suspend,
916 .resume = mptscsih_resume,
920 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
922 * mptfc_init - Register MPT adapter(s) as SCSI host(s) with
923 * linux scsi mid-layer.
925 * Returns 0 for success, non-zero for failure.
932 show_mptmod_ver(my_NAME, my_VERSION);
934 /* sanity check module parameter */
935 if (mptfc_dev_loss_tmo == 0)
936 mptfc_dev_loss_tmo = MPTFC_DEV_LOSS_TMO;
938 mptfc_transport_template =
939 fc_attach_transport(&mptfc_transport_functions);
941 if (!mptfc_transport_template)
944 mptfcDoneCtx = mpt_register(mptscsih_io_done, MPTFC_DRIVER);
945 mptfcTaskCtx = mpt_register(mptscsih_taskmgmt_complete, MPTFC_DRIVER);
946 mptfcInternalCtx = mpt_register(mptscsih_scandv_complete, MPTFC_DRIVER);
948 if (mpt_event_register(mptfcDoneCtx, mptscsih_event_process) == 0) {
949 devtverboseprintk((KERN_INFO MYNAM
950 ": Registered for IOC event notifications\n"));
953 if (mpt_reset_register(mptfcDoneCtx, mptscsih_ioc_reset) == 0) {
954 dprintk((KERN_INFO MYNAM
955 ": Registered for IOC reset notifications\n"));
958 error = pci_register_driver(&mptfc_driver);
960 fc_release_transport(mptfc_transport_template);
965 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
967 * mptfc_remove - Removed fc infrastructure for devices
968 * @pdev: Pointer to pci_dev structure
971 static void __devexit
972 mptfc_remove(struct pci_dev *pdev)
974 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
975 struct mptfc_rport_info *p, *n;
976 struct workqueue_struct *work_q;
979 /* destroy workqueue */
980 if ((work_q=ioc->fc_rescan_work_q)) {
981 spin_lock_irqsave(&ioc->fc_rescan_work_lock, flags);
982 ioc->fc_rescan_work_q = NULL;
983 spin_unlock_irqrestore(&ioc->fc_rescan_work_lock, flags);
984 destroy_workqueue(work_q);
987 fc_remove_host(ioc->sh);
989 list_for_each_entry_safe(p, n, &ioc->fc_rports, list) {
994 mptscsih_remove(pdev);
997 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
998 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1000 * mptfc_exit - Unregisters MPT adapter(s)
1006 pci_unregister_driver(&mptfc_driver);
1007 fc_release_transport(mptfc_transport_template);
1009 mpt_reset_deregister(mptfcDoneCtx);
1010 dprintk((KERN_INFO MYNAM
1011 ": Deregistered for IOC reset notifications\n"));
1013 mpt_event_deregister(mptfcDoneCtx);
1014 dprintk((KERN_INFO MYNAM
1015 ": Deregistered for IOC event notifications\n"));
1017 mpt_deregister(mptfcInternalCtx);
1018 mpt_deregister(mptfcTaskCtx);
1019 mpt_deregister(mptfcDoneCtx);
1022 module_init(mptfc_init);
1023 module_exit(mptfc_exit);