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, MPI_MANUFACTPAGE_DEVICEID_FC909,
136 PCI_ANY_ID, PCI_ANY_ID },
137 { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVICEID_FC919,
138 PCI_ANY_ID, PCI_ANY_ID },
139 { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVICEID_FC929,
140 PCI_ANY_ID, PCI_ANY_ID },
141 { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVICEID_FC919X,
142 PCI_ANY_ID, PCI_ANY_ID },
143 { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVICEID_FC929X,
144 PCI_ANY_ID, PCI_ANY_ID },
145 { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVICEID_FC939X,
146 PCI_ANY_ID, PCI_ANY_ID },
147 { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVICEID_FC949X,
148 PCI_ANY_ID, PCI_ANY_ID },
149 { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVICEID_FC949E,
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,
173 mptfc_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
176 rport->dev_loss_tmo = timeout;
178 rport->dev_loss_tmo = mptfc_dev_loss_tmo;
182 mptfc_FcDevPage0_cmp_func(const void *a, const void *b)
184 FCDevicePage0_t **aa = (FCDevicePage0_t **)a;
185 FCDevicePage0_t **bb = (FCDevicePage0_t **)b;
187 if ((*aa)->CurrentBus == (*bb)->CurrentBus) {
188 if ((*aa)->CurrentTargetID == (*bb)->CurrentTargetID)
190 if ((*aa)->CurrentTargetID < (*bb)->CurrentTargetID)
194 if ((*aa)->CurrentBus < (*bb)->CurrentBus)
200 mptfc_GetFcDevPage0(MPT_ADAPTER *ioc, int ioc_port,
201 void(*func)(MPT_ADAPTER *ioc,int channel, FCDevicePage0_t *arg))
203 ConfigPageHeader_t hdr;
205 FCDevicePage0_t *ppage0_alloc, *fc;
206 dma_addr_t page0_dma;
210 FCDevicePage0_t *p0_array=NULL, *p_p0;
211 FCDevicePage0_t **pp0_array=NULL, **p_pp0;
214 U32 port_id = 0xffffff;
216 int max_bus = ioc->facts.MaxBuses;
217 int max_targ = ioc->facts.MaxDevices;
219 if (max_bus == 0 || max_targ == 0)
222 data_sz = sizeof(FCDevicePage0_t) * max_bus * max_targ;
223 p_p0 = p0_array = kzalloc(data_sz, GFP_KERNEL);
227 data_sz = sizeof(FCDevicePage0_t *) * max_bus * max_targ;
228 p_pp0 = pp0_array = kzalloc(data_sz, GFP_KERNEL);
233 /* Get FC Device Page 0 header */
237 hdr.PageType = MPI_CONFIG_PAGETYPE_FC_DEVICE;
238 cfg.cfghdr.hdr = &hdr;
240 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
242 cfg.pageAddr = port_id;
245 if ((rc = mpt_config(ioc, &cfg)) != 0)
248 if (hdr.PageLength <= 0)
251 data_sz = hdr.PageLength * 4;
252 ppage0_alloc = pci_alloc_consistent(ioc->pcidev, data_sz,
258 cfg.physAddr = page0_dma;
259 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
261 if ((rc = mpt_config(ioc, &cfg)) == 0) {
262 ppage0_alloc->PortIdentifier =
263 le32_to_cpu(ppage0_alloc->PortIdentifier);
265 ppage0_alloc->WWNN.Low =
266 le32_to_cpu(ppage0_alloc->WWNN.Low);
268 ppage0_alloc->WWNN.High =
269 le32_to_cpu(ppage0_alloc->WWNN.High);
271 ppage0_alloc->WWPN.Low =
272 le32_to_cpu(ppage0_alloc->WWPN.Low);
274 ppage0_alloc->WWPN.High =
275 le32_to_cpu(ppage0_alloc->WWPN.High);
277 ppage0_alloc->BBCredit =
278 le16_to_cpu(ppage0_alloc->BBCredit);
280 ppage0_alloc->MaxRxFrameSize =
281 le16_to_cpu(ppage0_alloc->MaxRxFrameSize);
283 port_id = ppage0_alloc->PortIdentifier;
285 *p_p0 = *ppage0_alloc; /* save data */
286 *p_pp0++ = p_p0++; /* save addr */
288 pci_free_consistent(ioc->pcidev, data_sz,
289 (u8 *) ppage0_alloc, page0_dma);
293 } while (port_id <= 0xff0000);
298 sort (pp0_array, num_targ, sizeof(FCDevicePage0_t *),
299 mptfc_FcDevPage0_cmp_func, NULL);
300 /* call caller's func for each targ */
301 for (ii = 0; ii < num_targ; ii++) {
302 fc = *(pp0_array+ii);
303 func(ioc, ioc_port, fc);
314 mptfc_generate_rport_ids(FCDevicePage0_t *pg0, struct fc_rport_identifiers *rid)
316 /* not currently usable */
317 if (pg0->Flags & (MPI_FC_DEVICE_PAGE0_FLAGS_PLOGI_INVALID |
318 MPI_FC_DEVICE_PAGE0_FLAGS_PRLI_INVALID))
321 if (!(pg0->Flags & MPI_FC_DEVICE_PAGE0_FLAGS_TARGETID_BUS_VALID))
324 if (!(pg0->Protocol & MPI_FC_DEVICE_PAGE0_PROT_FCP_TARGET))
328 * board data structure already normalized to platform endianness
329 * shifted to avoid unaligned access on 64 bit architecture
331 rid->node_name = ((u64)pg0->WWNN.High) << 32 | (u64)pg0->WWNN.Low;
332 rid->port_name = ((u64)pg0->WWPN.High) << 32 | (u64)pg0->WWPN.Low;
333 rid->port_id = pg0->PortIdentifier;
334 rid->roles = FC_RPORT_ROLE_UNKNOWN;
340 mptfc_register_dev(MPT_ADAPTER *ioc, int channel, FCDevicePage0_t *pg0)
342 struct fc_rport_identifiers rport_ids;
343 struct fc_rport *rport;
344 struct mptfc_rport_info *ri;
348 u32 roles = FC_RPORT_ROLE_UNKNOWN;
350 if (mptfc_generate_rport_ids(pg0, &rport_ids) < 0)
353 roles |= FC_RPORT_ROLE_FCP_TARGET;
354 if (pg0->Protocol & MPI_FC_DEVICE_PAGE0_PROT_FCP_INITIATOR)
355 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
357 /* scan list looking for a match */
358 list_for_each_entry(ri, &ioc->fc_rports, list) {
359 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low;
360 if (pn == rport_ids.port_name) { /* match */
361 list_move_tail(&ri->list, &ioc->fc_rports);
366 if (new_ri) { /* allocate one */
367 ri = kzalloc(sizeof(struct mptfc_rport_info), GFP_KERNEL);
370 list_add_tail(&ri->list, &ioc->fc_rports);
373 ri->pg0 = *pg0; /* add/update pg0 data */
374 ri->flags &= ~MPT_RPORT_INFO_FLAGS_MISSING;
376 /* MPT_RPORT_INFO_FLAGS_REGISTERED - rport not previously deleted */
377 if (!(ri->flags & MPT_RPORT_INFO_FLAGS_REGISTERED)) {
378 ri->flags |= MPT_RPORT_INFO_FLAGS_REGISTERED;
379 rport = fc_remote_port_add(ioc->sh, channel, &rport_ids);
382 if (new_ri) /* may have been reset by user */
383 rport->dev_loss_tmo = mptfc_dev_loss_tmo;
385 * if already mapped, remap here. If not mapped,
386 * target_alloc will allocate vtarget and map,
387 * slave_alloc will fill in vdev from vtarget.
390 vtarget = ri->starget->hostdata;
392 vtarget->target_id = pg0->CurrentTargetID;
393 vtarget->bus_id = pg0->CurrentBus;
396 *((struct mptfc_rport_info **)rport->dd_data) = ri;
397 /* scan will be scheduled once rport becomes a target */
398 fc_remote_port_rolechg(rport,roles);
400 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low;
401 nn = (u64)ri->pg0.WWNN.High << 32 | (u64)ri->pg0.WWNN.Low;
402 dfcprintk ((MYIOC_s_INFO_FMT
403 "mptfc_reg_dev.%d: %x, %llx / %llx, tid %d, "
404 "rport tid %d, tmo %d\n",
408 (unsigned long long)nn,
409 (unsigned long long)pn,
410 pg0->CurrentTargetID,
411 ri->rport->scsi_target_id,
412 ri->rport->dev_loss_tmo));
422 * OS entry point to allow for host driver to free allocated memory
423 * Called if no device present or device being unloaded
426 mptfc_target_destroy(struct scsi_target *starget)
428 struct fc_rport *rport;
429 struct mptfc_rport_info *ri;
431 rport = starget_to_rport(starget);
433 ri = *((struct mptfc_rport_info **)rport->dd_data);
434 if (ri) /* better be! */
437 if (starget->hostdata)
438 kfree(starget->hostdata);
439 starget->hostdata = NULL;
443 * OS entry point to allow host driver to alloc memory
444 * for each scsi target. Called once per device the bus scan.
445 * Return non-zero if allocation fails.
448 mptfc_target_alloc(struct scsi_target *starget)
451 struct fc_rport *rport;
452 struct mptfc_rport_info *ri;
455 vtarget = kzalloc(sizeof(VirtTarget), GFP_KERNEL);
458 starget->hostdata = vtarget;
461 rport = starget_to_rport(starget);
463 ri = *((struct mptfc_rport_info **)rport->dd_data);
464 if (ri) { /* better be! */
465 vtarget->target_id = ri->pg0.CurrentTargetID;
466 vtarget->bus_id = ri->pg0.CurrentBus;
467 ri->starget = starget;
473 starget->hostdata = NULL;
480 * OS entry point to allow host driver to alloc memory
481 * for each scsi device. Called once per device the bus scan.
482 * Return non-zero if allocation fails.
483 * Init memory once per LUN.
486 mptfc_slave_alloc(struct scsi_device *sdev)
491 struct scsi_target *starget;
492 struct fc_rport *rport;
495 starget = scsi_target(sdev);
496 rport = starget_to_rport(starget);
498 if (!rport || fc_remote_port_chkready(rport))
501 hd = (MPT_SCSI_HOST *)sdev->host->hostdata;
503 vdev = kzalloc(sizeof(VirtDevice), GFP_KERNEL);
505 printk(MYIOC_s_ERR_FMT "slave_alloc kmalloc(%zd) FAILED!\n",
506 hd->ioc->name, sizeof(VirtDevice));
511 sdev->hostdata = vdev;
512 vtarget = starget->hostdata;
514 if (vtarget->num_luns == 0) {
515 vtarget->ioc_id = hd->ioc->id;
516 vtarget->tflags = MPT_TARGET_FLAGS_Q_YES |
517 MPT_TARGET_FLAGS_VALID_INQUIRY;
518 hd->Targets[sdev->id] = vtarget;
521 vdev->vtarget = vtarget;
522 vdev->lun = sdev->lun;
530 struct mptfc_rport_info *ri;
531 ri = *((struct mptfc_rport_info **)rport->dd_data);
532 pn = (u64)ri->pg0.WWPN.High << 32 | (u64)ri->pg0.WWPN.Low;
533 nn = (u64)ri->pg0.WWNN.High << 32 | (u64)ri->pg0.WWNN.Low;
534 dfcprintk ((MYIOC_s_INFO_FMT
535 "mptfc_slv_alloc.%d: num_luns %d, sdev.id %d, "
536 "CurrentTargetID %d, %x %llx %llx\n",
540 sdev->id, ri->pg0.CurrentTargetID,
541 ri->pg0.PortIdentifier,
542 (unsigned long long)pn,
543 (unsigned long long)nn));
551 mptfc_qcmd(struct scsi_cmnd *SCpnt, void (*done)(struct scsi_cmnd *))
553 struct mptfc_rport_info *ri;
554 struct fc_rport *rport = starget_to_rport(scsi_target(SCpnt->device));
557 err = fc_remote_port_chkready(rport);
564 /* dd_data is null until finished adding target */
565 ri = *((struct mptfc_rport_info **)rport->dd_data);
567 dfcprintk ((MYIOC_s_INFO_FMT
568 "mptfc_qcmd.%d: %d:%d, dd_data is null.\n",
569 ((MPT_SCSI_HOST *) SCpnt->device->host->hostdata)->ioc->name,
570 ((MPT_SCSI_HOST *) SCpnt->device->host->hostdata)->ioc->sh->host_no,
571 SCpnt->device->id,SCpnt->device->lun));
572 SCpnt->result = DID_IMM_RETRY << 16;
577 err = mptscsih_qcmd(SCpnt,done);
580 dfcprintk ((MYIOC_s_INFO_FMT
581 "mptfc_qcmd.%d: %d:%d, mptscsih_qcmd returns non-zero, (%x).\n",
582 ((MPT_SCSI_HOST *) SCpnt->device->host->hostdata)->ioc->name,
583 ((MPT_SCSI_HOST *) SCpnt->device->host->hostdata)->ioc->sh->host_no,
584 SCpnt->device->id,SCpnt->device->lun,err));
591 * mptfc_GetFcPortPage0 - Fetch FCPort config Page0.
592 * @ioc: Pointer to MPT_ADAPTER structure
593 * @portnum: IOC Port number
595 * Return: 0 for success
596 * -ENOMEM if no memory available
597 * -EPERM if not allowed due to ISR context
598 * -EAGAIN if no msg frames currently available
599 * -EFAULT for non-successful reply or no reply (timeout)
600 * -EINVAL portnum arg out of range (hardwired to two elements)
603 mptfc_GetFcPortPage0(MPT_ADAPTER *ioc, int portnum)
605 ConfigPageHeader_t hdr;
607 FCPortPage0_t *ppage0_alloc;
608 FCPortPage0_t *pp0dest;
609 dma_addr_t page0_dma;
618 /* Get FCPort Page 0 header */
622 hdr.PageType = MPI_CONFIG_PAGETYPE_FC_PORT;
623 cfg.cfghdr.hdr = &hdr;
625 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
627 cfg.pageAddr = portnum;
630 if ((rc = mpt_config(ioc, &cfg)) != 0)
633 if (hdr.PageLength == 0)
636 data_sz = hdr.PageLength * 4;
638 ppage0_alloc = (FCPortPage0_t *) pci_alloc_consistent(ioc->pcidev, data_sz, &page0_dma);
642 memset((u8 *)ppage0_alloc, 0, data_sz);
643 cfg.physAddr = page0_dma;
644 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
646 if ((rc = mpt_config(ioc, &cfg)) == 0) {
648 pp0dest = &ioc->fc_port_page0[portnum];
649 copy_sz = min_t(int, sizeof(FCPortPage0_t), data_sz);
650 memcpy(pp0dest, ppage0_alloc, copy_sz);
653 * Normalize endianness of structure data,
654 * by byte-swapping all > 1 byte fields!
656 pp0dest->Flags = le32_to_cpu(pp0dest->Flags);
657 pp0dest->PortIdentifier = le32_to_cpu(pp0dest->PortIdentifier);
658 pp0dest->WWNN.Low = le32_to_cpu(pp0dest->WWNN.Low);
659 pp0dest->WWNN.High = le32_to_cpu(pp0dest->WWNN.High);
660 pp0dest->WWPN.Low = le32_to_cpu(pp0dest->WWPN.Low);
661 pp0dest->WWPN.High = le32_to_cpu(pp0dest->WWPN.High);
662 pp0dest->SupportedServiceClass = le32_to_cpu(pp0dest->SupportedServiceClass);
663 pp0dest->SupportedSpeeds = le32_to_cpu(pp0dest->SupportedSpeeds);
664 pp0dest->CurrentSpeed = le32_to_cpu(pp0dest->CurrentSpeed);
665 pp0dest->MaxFrameSize = le32_to_cpu(pp0dest->MaxFrameSize);
666 pp0dest->FabricWWNN.Low = le32_to_cpu(pp0dest->FabricWWNN.Low);
667 pp0dest->FabricWWNN.High = le32_to_cpu(pp0dest->FabricWWNN.High);
668 pp0dest->FabricWWPN.Low = le32_to_cpu(pp0dest->FabricWWPN.Low);
669 pp0dest->FabricWWPN.High = le32_to_cpu(pp0dest->FabricWWPN.High);
670 pp0dest->DiscoveredPortsCount = le32_to_cpu(pp0dest->DiscoveredPortsCount);
671 pp0dest->MaxInitiators = le32_to_cpu(pp0dest->MaxInitiators);
674 * if still doing discovery,
675 * hang loose a while until finished
677 if (pp0dest->PortState == MPI_FCPORTPAGE0_PORTSTATE_UNKNOWN) {
682 printk(MYIOC_s_INFO_FMT "Firmware discovery not"
688 pci_free_consistent(ioc->pcidev, data_sz, (u8 *) ppage0_alloc, page0_dma);
695 mptfc_WriteFcPortPage1(MPT_ADAPTER *ioc, int portnum)
697 ConfigPageHeader_t hdr;
704 if (!(ioc->fc_data.fc_port_page1[portnum].data))
707 /* get fcport page 1 header */
711 hdr.PageType = MPI_CONFIG_PAGETYPE_FC_PORT;
712 cfg.cfghdr.hdr = &hdr;
714 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
716 cfg.pageAddr = portnum;
719 if ((rc = mpt_config(ioc, &cfg)) != 0)
722 if (hdr.PageLength == 0)
725 if (hdr.PageLength*4 != ioc->fc_data.fc_port_page1[portnum].pg_sz)
728 cfg.physAddr = ioc->fc_data.fc_port_page1[portnum].dma;
729 cfg.action = MPI_CONFIG_ACTION_PAGE_WRITE_CURRENT;
732 rc = mpt_config(ioc, &cfg);
738 mptfc_GetFcPortPage1(MPT_ADAPTER *ioc, int portnum)
740 ConfigPageHeader_t hdr;
742 FCPortPage1_t *page1_alloc;
743 dma_addr_t page1_dma;
750 /* get fcport page 1 header */
754 hdr.PageType = MPI_CONFIG_PAGETYPE_FC_PORT;
755 cfg.cfghdr.hdr = &hdr;
757 cfg.action = MPI_CONFIG_ACTION_PAGE_HEADER;
759 cfg.pageAddr = portnum;
762 if ((rc = mpt_config(ioc, &cfg)) != 0)
765 if (hdr.PageLength == 0)
770 if (ioc->fc_data.fc_port_page1[portnum].data == NULL) {
771 data_sz = hdr.PageLength * 4;
772 if (data_sz < sizeof(FCPortPage1_t))
773 data_sz = sizeof(FCPortPage1_t);
775 page1_alloc = (FCPortPage1_t *) pci_alloc_consistent(ioc->pcidev,
782 page1_alloc = ioc->fc_data.fc_port_page1[portnum].data;
783 page1_dma = ioc->fc_data.fc_port_page1[portnum].dma;
784 data_sz = ioc->fc_data.fc_port_page1[portnum].pg_sz;
785 if (hdr.PageLength * 4 > data_sz) {
786 ioc->fc_data.fc_port_page1[portnum].data = NULL;
787 pci_free_consistent(ioc->pcidev, data_sz, (u8 *)
788 page1_alloc, page1_dma);
793 memset(page1_alloc,0,data_sz);
795 cfg.physAddr = page1_dma;
796 cfg.action = MPI_CONFIG_ACTION_PAGE_READ_CURRENT;
798 if ((rc = mpt_config(ioc, &cfg)) == 0) {
799 ioc->fc_data.fc_port_page1[portnum].data = page1_alloc;
800 ioc->fc_data.fc_port_page1[portnum].pg_sz = data_sz;
801 ioc->fc_data.fc_port_page1[portnum].dma = page1_dma;
804 ioc->fc_data.fc_port_page1[portnum].data = NULL;
805 pci_free_consistent(ioc->pcidev, data_sz, (u8 *)
806 page1_alloc, page1_dma);
813 mptfc_SetFcPortPage1_defaults(MPT_ADAPTER *ioc)
818 #define MPTFC_FW_DEVICE_TIMEOUT (1)
819 #define MPTFC_FW_IO_PEND_TIMEOUT (1)
820 #define ON_FLAGS (MPI_FCPORTPAGE1_FLAGS_IMMEDIATE_ERROR_REPLY)
821 #define OFF_FLAGS (MPI_FCPORTPAGE1_FLAGS_VERBOSE_RESCAN_EVENTS)
823 for (ii=0; ii<ioc->facts.NumberOfPorts; ii++) {
824 if (mptfc_GetFcPortPage1(ioc, ii) != 0)
826 pp1 = ioc->fc_data.fc_port_page1[ii].data;
827 if ((pp1->InitiatorDeviceTimeout == MPTFC_FW_DEVICE_TIMEOUT)
828 && (pp1->InitiatorIoPendTimeout == MPTFC_FW_IO_PEND_TIMEOUT)
829 && ((pp1->Flags & ON_FLAGS) == ON_FLAGS)
830 && ((pp1->Flags & OFF_FLAGS) == 0))
832 pp1->InitiatorDeviceTimeout = MPTFC_FW_DEVICE_TIMEOUT;
833 pp1->InitiatorIoPendTimeout = MPTFC_FW_IO_PEND_TIMEOUT;
834 pp1->Flags &= ~OFF_FLAGS;
835 pp1->Flags |= ON_FLAGS;
836 mptfc_WriteFcPortPage1(ioc, ii);
842 mptfc_init_host_attr(MPT_ADAPTER *ioc,int portnum)
844 unsigned class = 0, cos = 0;
846 /* don't know what to do as only one scsi (fc) host was allocated */
850 class = ioc->fc_port_page0[portnum].SupportedServiceClass;
851 if (class & MPI_FCPORTPAGE0_SUPPORT_CLASS_1)
852 cos |= FC_COS_CLASS1;
853 if (class & MPI_FCPORTPAGE0_SUPPORT_CLASS_2)
854 cos |= FC_COS_CLASS2;
855 if (class & MPI_FCPORTPAGE0_SUPPORT_CLASS_3)
856 cos |= FC_COS_CLASS3;
858 fc_host_node_name(ioc->sh) =
859 (u64)ioc->fc_port_page0[portnum].WWNN.High << 32
860 | (u64)ioc->fc_port_page0[portnum].WWNN.Low;
862 fc_host_port_name(ioc->sh) =
863 (u64)ioc->fc_port_page0[portnum].WWPN.High << 32
864 | (u64)ioc->fc_port_page0[portnum].WWPN.Low;
866 fc_host_port_id(ioc->sh) = ioc->fc_port_page0[portnum].PortIdentifier;
868 fc_host_supported_classes(ioc->sh) = cos;
870 fc_host_tgtid_bind_type(ioc->sh) = FC_TGTID_BIND_BY_WWPN;
874 mptfc_setup_reset(void *arg)
876 MPT_ADAPTER *ioc = (MPT_ADAPTER *)arg;
878 struct mptfc_rport_info *ri;
880 /* reset about to happen, delete (block) all rports */
881 list_for_each_entry(ri, &ioc->fc_rports, list) {
882 if (ri->flags & MPT_RPORT_INFO_FLAGS_REGISTERED) {
883 ri->flags &= ~MPT_RPORT_INFO_FLAGS_REGISTERED;
884 fc_remote_port_delete(ri->rport); /* won't sleep */
887 pn = (u64)ri->pg0.WWPN.High << 32 |
888 (u64)ri->pg0.WWPN.Low;
889 dfcprintk ((MYIOC_s_INFO_FMT
890 "mptfc_setup_reset.%d: %llx deleted\n",
893 (unsigned long long)pn));
899 mptfc_rescan_devices(void *arg)
901 MPT_ADAPTER *ioc = (MPT_ADAPTER *)arg;
906 struct mptfc_rport_info *ri;
909 /* start by tagging all ports as missing */
910 list_for_each_entry(ri, &ioc->fc_rports, list) {
911 if (ri->flags & MPT_RPORT_INFO_FLAGS_REGISTERED) {
912 ri->flags |= MPT_RPORT_INFO_FLAGS_MISSING;
917 * now rescan devices known to adapter,
918 * will reregister existing rports
920 for (ii=0; ii < ioc->facts.NumberOfPorts; ii++) {
921 (void) mptfc_GetFcPortPage0(ioc, ii);
922 mptfc_init_host_attr(ioc,ii); /* refresh */
923 mptfc_GetFcDevPage0(ioc,ii,mptfc_register_dev);
926 /* delete devices still missing */
927 list_for_each_entry(ri, &ioc->fc_rports, list) {
928 /* if newly missing, delete it */
929 if (ri->flags & MPT_RPORT_INFO_FLAGS_MISSING) {
931 ri->flags &= ~(MPT_RPORT_INFO_FLAGS_REGISTERED|
932 MPT_RPORT_INFO_FLAGS_MISSING);
933 fc_remote_port_delete(ri->rport); /* won't sleep */
936 pn = (u64)ri->pg0.WWPN.High << 32 |
937 (u64)ri->pg0.WWPN.Low;
938 dfcprintk ((MYIOC_s_INFO_FMT
939 "mptfc_rescan.%d: %llx deleted\n",
942 (unsigned long long)pn));
947 * allow multiple passes as target state
948 * might have changed during scan
950 spin_lock_irqsave(&ioc->fc_rescan_work_lock, flags);
951 if (ioc->fc_rescan_work_count > 2) /* only need one more */
952 ioc->fc_rescan_work_count = 2;
953 work_to_do = --ioc->fc_rescan_work_count;
954 spin_unlock_irqrestore(&ioc->fc_rescan_work_lock, flags);
955 } while (work_to_do);
959 mptfc_probe(struct pci_dev *pdev, const struct pci_device_id *id)
961 struct Scsi_Host *sh;
972 if ((r = mpt_attach(pdev,id)) != 0)
975 ioc = pci_get_drvdata(pdev);
976 ioc->DoneCtx = mptfcDoneCtx;
977 ioc->TaskCtx = mptfcTaskCtx;
978 ioc->InternalCtx = mptfcInternalCtx;
980 /* Added sanity check on readiness of the MPT adapter.
982 if (ioc->last_state != MPI_IOC_STATE_OPERATIONAL) {
983 printk(MYIOC_s_WARN_FMT
984 "Skipping because it's not operational!\n",
987 goto out_mptfc_probe;
991 printk(MYIOC_s_WARN_FMT "Skipping because it's disabled!\n",
994 goto out_mptfc_probe;
997 /* Sanity check - ensure at least 1 port is INITIATOR capable
1000 for (ii=0; ii < ioc->facts.NumberOfPorts; ii++) {
1001 if (ioc->pfacts[ii].ProtocolFlags &
1002 MPI_PORTFACTS_PROTOCOL_INITIATOR)
1007 printk(MYIOC_s_WARN_FMT
1008 "Skipping ioc=%p because SCSI Initiator mode is NOT enabled!\n",
1013 sh = scsi_host_alloc(&mptfc_driver_template, sizeof(MPT_SCSI_HOST));
1016 printk(MYIOC_s_WARN_FMT
1017 "Unable to register controller with SCSI subsystem\n",
1020 goto out_mptfc_probe;
1023 spin_lock_init(&ioc->fc_rescan_work_lock);
1024 INIT_WORK(&ioc->fc_rescan_work, mptfc_rescan_devices,(void *)ioc);
1025 INIT_WORK(&ioc->fc_setup_reset_work, mptfc_setup_reset, (void *)ioc);
1027 spin_lock_irqsave(&ioc->FreeQlock, flags);
1029 /* Attach the SCSI Host to the IOC structure
1037 /* set 16 byte cdb's */
1038 sh->max_cmd_len = 16;
1040 sh->max_id = MPT_MAX_FC_DEVICES<256 ? MPT_MAX_FC_DEVICES : 255;
1042 sh->max_lun = MPT_LAST_LUN + 1;
1043 sh->max_channel = 0;
1044 sh->this_id = ioc->pfacts[0].PortSCSIID;
1048 sh->unique_id = ioc->id;
1050 /* Verify that we won't exceed the maximum
1051 * number of chain buffers
1052 * We can optimize: ZZ = req_sz/sizeof(SGE)
1054 * numSGE = 1 + (ZZ-1)*(maxChain -1) + ZZ
1055 * + (req_sz - 64)/sizeof(SGE)
1056 * A slightly different algorithm is required for
1059 scale = ioc->req_sz/(sizeof(dma_addr_t) + sizeof(u32));
1060 if (sizeof(dma_addr_t) == sizeof(u64)) {
1061 numSGE = (scale - 1) *
1062 (ioc->facts.MaxChainDepth-1) + scale +
1063 (ioc->req_sz - 60) / (sizeof(dma_addr_t) +
1066 numSGE = 1 + (scale - 1) *
1067 (ioc->facts.MaxChainDepth-1) + scale +
1068 (ioc->req_sz - 64) / (sizeof(dma_addr_t) +
1072 if (numSGE < sh->sg_tablesize) {
1073 /* Reset this value */
1074 dprintk((MYIOC_s_INFO_FMT
1075 "Resetting sg_tablesize to %d from %d\n",
1076 ioc->name, numSGE, sh->sg_tablesize));
1077 sh->sg_tablesize = numSGE;
1080 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
1082 hd = (MPT_SCSI_HOST *) sh->hostdata;
1085 /* SCSI needs scsi_cmnd lookup table!
1086 * (with size equal to req_depth*PtrSz!)
1088 hd->ScsiLookup = kcalloc(ioc->req_depth, sizeof(void *), GFP_ATOMIC);
1089 if (!hd->ScsiLookup) {
1091 goto out_mptfc_probe;
1094 dprintk((MYIOC_s_INFO_FMT "ScsiLookup @ %p\n",
1095 ioc->name, hd->ScsiLookup));
1097 /* Allocate memory for the device structures.
1098 * A non-Null pointer at an offset
1099 * indicates a device exists.
1100 * max_id = 1 + maximum id (hosts.h)
1102 hd->Targets = kcalloc(sh->max_id, sizeof(void *), GFP_ATOMIC);
1105 goto out_mptfc_probe;
1108 dprintk((KERN_INFO " vdev @ %p\n", hd->Targets));
1110 /* Clear the TM flags
1113 hd->tmState = TM_STATE_NONE;
1114 hd->resetPending = 0;
1115 hd->abortSCpnt = NULL;
1117 /* Clear the pointer used to store
1118 * single-threaded commands, i.e., those
1119 * issued during a bus scan, dv and
1120 * configuration pages.
1124 /* Initialize this SCSI Hosts' timers
1125 * To use, set the timer expires field
1128 init_timer(&hd->timer);
1129 hd->timer.data = (unsigned long) hd;
1130 hd->timer.function = mptscsih_timer_expired;
1132 hd->mpt_pq_filter = mpt_pq_filter;
1134 ddvprintk((MYIOC_s_INFO_FMT
1135 "mpt_pq_filter %x\n",
1139 init_waitqueue_head(&hd->scandv_waitq);
1140 hd->scandv_wait_done = 0;
1141 hd->last_queue_full = 0;
1143 sh->transportt = mptfc_transport_template;
1144 error = scsi_add_host (sh, &ioc->pcidev->dev);
1146 dprintk((KERN_ERR MYNAM
1147 "scsi_add_host failed\n"));
1148 goto out_mptfc_probe;
1151 /* initialize workqueue */
1153 snprintf(ioc->fc_rescan_work_q_name, KOBJ_NAME_LEN, "mptfc_wq_%d",
1155 ioc->fc_rescan_work_q =
1156 create_singlethread_workqueue(ioc->fc_rescan_work_q_name);
1157 if (!ioc->fc_rescan_work_q)
1158 goto out_mptfc_probe;
1161 * Pre-fetch FC port WWN and stuff...
1162 * (FCPortPage0_t stuff)
1164 for (ii=0; ii < ioc->facts.NumberOfPorts; ii++) {
1165 (void) mptfc_GetFcPortPage0(ioc, ii);
1167 mptfc_SetFcPortPage1_defaults(ioc);
1171 * by doing it via the workqueue, some locking is eliminated
1174 ioc->fc_rescan_work_count = 1;
1175 queue_work(ioc->fc_rescan_work_q, &ioc->fc_rescan_work);
1176 flush_workqueue(ioc->fc_rescan_work_q);
1182 mptscsih_remove(pdev);
1186 static struct pci_driver mptfc_driver = {
1188 .id_table = mptfc_pci_table,
1189 .probe = mptfc_probe,
1190 .remove = __devexit_p(mptfc_remove),
1191 .shutdown = mptscsih_shutdown,
1193 .suspend = mptscsih_suspend,
1194 .resume = mptscsih_resume,
1199 mptfc_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply)
1202 u8 event = le32_to_cpu(pEvReply->Event) & 0xFF;
1203 unsigned long flags;
1206 devtverboseprintk((MYIOC_s_INFO_FMT "MPT event (=%02Xh) routed to SCSI host driver!\n",
1209 if (ioc->sh == NULL ||
1210 ((hd = (MPT_SCSI_HOST *)ioc->sh->hostdata) == NULL))
1214 case MPI_EVENT_RESCAN:
1215 spin_lock_irqsave(&ioc->fc_rescan_work_lock, flags);
1216 if (ioc->fc_rescan_work_q) {
1217 if (ioc->fc_rescan_work_count++ == 0) {
1218 queue_work(ioc->fc_rescan_work_q,
1219 &ioc->fc_rescan_work);
1222 spin_unlock_irqrestore(&ioc->fc_rescan_work_lock, flags);
1225 rc = mptscsih_event_process(ioc,pEvReply);
1232 mptfc_ioc_reset(MPT_ADAPTER *ioc, int reset_phase)
1235 unsigned long flags;
1237 rc = mptscsih_ioc_reset(ioc,reset_phase);
1242 dtmprintk((KERN_WARNING MYNAM
1243 ": IOC %s_reset routed to FC host driver!\n",
1244 reset_phase==MPT_IOC_SETUP_RESET ? "setup" : (
1245 reset_phase==MPT_IOC_PRE_RESET ? "pre" : "post")));
1247 if (reset_phase == MPT_IOC_SETUP_RESET) {
1248 spin_lock_irqsave(&ioc->fc_rescan_work_lock, flags);
1249 if (ioc->fc_rescan_work_q) {
1250 queue_work(ioc->fc_rescan_work_q,
1251 &ioc->fc_setup_reset_work);
1253 spin_unlock_irqrestore(&ioc->fc_rescan_work_lock, flags);
1256 else if (reset_phase == MPT_IOC_PRE_RESET) {
1259 else { /* MPT_IOC_POST_RESET */
1260 mptfc_SetFcPortPage1_defaults(ioc);
1261 spin_lock_irqsave(&ioc->fc_rescan_work_lock, flags);
1262 if (ioc->fc_rescan_work_q) {
1263 if (ioc->fc_rescan_work_count++ == 0) {
1264 queue_work(ioc->fc_rescan_work_q,
1265 &ioc->fc_rescan_work);
1268 spin_unlock_irqrestore(&ioc->fc_rescan_work_lock, flags);
1273 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1275 * mptfc_init - Register MPT adapter(s) as SCSI host(s) with
1276 * linux scsi mid-layer.
1278 * Returns 0 for success, non-zero for failure.
1285 show_mptmod_ver(my_NAME, my_VERSION);
1287 /* sanity check module parameters */
1288 if (mptfc_dev_loss_tmo <= 0)
1289 mptfc_dev_loss_tmo = MPTFC_DEV_LOSS_TMO;
1291 mptfc_transport_template =
1292 fc_attach_transport(&mptfc_transport_functions);
1294 if (!mptfc_transport_template)
1297 mptfcDoneCtx = mpt_register(mptscsih_io_done, MPTFC_DRIVER);
1298 mptfcTaskCtx = mpt_register(mptscsih_taskmgmt_complete, MPTFC_DRIVER);
1299 mptfcInternalCtx = mpt_register(mptscsih_scandv_complete, MPTFC_DRIVER);
1301 if (mpt_event_register(mptfcDoneCtx, mptfc_event_process) == 0) {
1302 devtverboseprintk((KERN_INFO MYNAM
1303 ": Registered for IOC event notifications\n"));
1306 if (mpt_reset_register(mptfcDoneCtx, mptfc_ioc_reset) == 0) {
1307 dprintk((KERN_INFO MYNAM
1308 ": Registered for IOC reset notifications\n"));
1311 error = pci_register_driver(&mptfc_driver);
1313 fc_release_transport(mptfc_transport_template);
1318 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1320 * mptfc_remove - Removed fc infrastructure for devices
1321 * @pdev: Pointer to pci_dev structure
1324 static void __devexit
1325 mptfc_remove(struct pci_dev *pdev)
1327 MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
1328 struct mptfc_rport_info *p, *n;
1329 struct workqueue_struct *work_q;
1330 unsigned long flags;
1333 /* destroy workqueue */
1334 if ((work_q=ioc->fc_rescan_work_q)) {
1335 spin_lock_irqsave(&ioc->fc_rescan_work_lock, flags);
1336 ioc->fc_rescan_work_q = NULL;
1337 spin_unlock_irqrestore(&ioc->fc_rescan_work_lock, flags);
1338 destroy_workqueue(work_q);
1341 fc_remove_host(ioc->sh);
1343 list_for_each_entry_safe(p, n, &ioc->fc_rports, list) {
1348 for (ii=0; ii<ioc->facts.NumberOfPorts; ii++) {
1349 if (ioc->fc_data.fc_port_page1[ii].data) {
1350 pci_free_consistent(ioc->pcidev,
1351 ioc->fc_data.fc_port_page1[ii].pg_sz,
1352 (u8 *) ioc->fc_data.fc_port_page1[ii].data,
1353 ioc->fc_data.fc_port_page1[ii].dma);
1354 ioc->fc_data.fc_port_page1[ii].data = NULL;
1358 mptscsih_remove(pdev);
1361 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1362 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1364 * mptfc_exit - Unregisters MPT adapter(s)
1370 pci_unregister_driver(&mptfc_driver);
1371 fc_release_transport(mptfc_transport_template);
1373 mpt_reset_deregister(mptfcDoneCtx);
1374 dprintk((KERN_INFO MYNAM
1375 ": Deregistered for IOC reset notifications\n"));
1377 mpt_event_deregister(mptfcDoneCtx);
1378 dprintk((KERN_INFO MYNAM
1379 ": Deregistered for IOC event notifications\n"));
1381 mpt_deregister(mptfcInternalCtx);
1382 mpt_deregister(mptfcTaskCtx);
1383 mpt_deregister(mptfcDoneCtx);
1386 module_init(mptfc_init);
1387 module_exit(mptfc_exit);