2 * Scsi Host Layer for MPT (Message Passing Technology) based controllers
4 * This code is based on drivers/scsi/mpt2sas/mpt2_scsih.c
5 * Copyright (C) 2007-2012 LSI Corporation
6 * (mailto:DL-MPTFusionLinux@lsi.com)
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
19 * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
20 * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
21 * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
22 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
23 * solely responsible for determining the appropriateness of using and
24 * distributing the Program and assumes all risks associated with its
25 * exercise of rights under this Agreement, including but not limited to
26 * the risks and costs of program errors, damage to or loss of data,
27 * programs or equipment, and unavailability or interruption of operations.
29 * DISCLAIMER OF LIABILITY
30 * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
31 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
33 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
35 * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
36 * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
38 * You should have received a copy of the GNU General Public License
39 * along with this program; if not, write to the Free Software
40 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
44 #include <linux/module.h>
45 #include <linux/kernel.h>
46 #include <linux/init.h>
47 #include <linux/errno.h>
48 #include <linux/blkdev.h>
49 #include <linux/sched.h>
50 #include <linux/workqueue.h>
51 #include <linux/delay.h>
52 #include <linux/pci.h>
53 #include <linux/interrupt.h>
54 #include <linux/aer.h>
55 #include <linux/raid_class.h>
56 #include <linux/slab.h>
58 #include "mpt2sas_base.h"
60 MODULE_AUTHOR(MPT2SAS_AUTHOR
);
61 MODULE_DESCRIPTION(MPT2SAS_DESCRIPTION
);
62 MODULE_LICENSE("GPL");
63 MODULE_VERSION(MPT2SAS_DRIVER_VERSION
);
65 #define RAID_CHANNEL 1
68 static void _scsih_expander_node_remove(struct MPT2SAS_ADAPTER
*ioc
,
69 struct _sas_node
*sas_expander
);
70 static void _firmware_event_work(struct work_struct
*work
);
72 static u8
_scsih_check_for_pending_tm(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
);
74 static void _scsih_scan_start(struct Scsi_Host
*shost
);
75 static int _scsih_scan_finished(struct Scsi_Host
*shost
, unsigned long time
);
77 /* global parameters */
78 LIST_HEAD(mpt2sas_ioc_list
);
80 /* local parameters */
81 static u8 scsi_io_cb_idx
= -1;
82 static u8 tm_cb_idx
= -1;
83 static u8 ctl_cb_idx
= -1;
84 static u8 base_cb_idx
= -1;
85 static u8 port_enable_cb_idx
= -1;
86 static u8 transport_cb_idx
= -1;
87 static u8 scsih_cb_idx
= -1;
88 static u8 config_cb_idx
= -1;
91 static u8 tm_tr_cb_idx
= -1 ;
92 static u8 tm_tr_volume_cb_idx
= -1 ;
93 static u8 tm_sas_control_cb_idx
= -1;
95 /* command line options */
96 static u32 logging_level
;
97 MODULE_PARM_DESC(logging_level
, " bits for enabling additional logging info "
100 static ushort max_sectors
= 0xFFFF;
101 module_param(max_sectors
, ushort
, 0);
102 MODULE_PARM_DESC(max_sectors
, "max sectors, range 64 to 32767 default=32767");
104 /* scsi-mid layer global parmeter is max_report_luns, which is 511 */
105 #define MPT2SAS_MAX_LUN (16895)
106 static int max_lun
= MPT2SAS_MAX_LUN
;
107 module_param(max_lun
, int, 0);
108 MODULE_PARM_DESC(max_lun
, " max lun, default=16895 ");
110 /* diag_buffer_enable is bitwise
112 * bit 1 set = SNAPSHOT
113 * bit 2 set = EXTENDED
115 * Either bit can be set, or both
117 static int diag_buffer_enable
= -1;
118 module_param(diag_buffer_enable
, int, 0);
119 MODULE_PARM_DESC(diag_buffer_enable
, " post diag buffers "
120 "(TRACE=1/SNAPSHOT=2/EXTENDED=4/default=0)");
122 static int disable_discovery
= -1;
123 module_param(disable_discovery
, int, 0);
124 MODULE_PARM_DESC(disable_discovery
, " disable discovery ");
126 /* permit overriding the host protection capabilities mask (EEDP/T10 PI) */
127 static int prot_mask
= 0;
128 module_param(prot_mask
, int, 0);
129 MODULE_PARM_DESC(prot_mask
, " host protection capabilities mask, def=7 ");
132 * struct sense_info - common structure for obtaining sense keys
134 * @asc: additional sense code
135 * @ascq: additional sense code qualifier
144 #define MPT2SAS_TURN_ON_FAULT_LED (0xFFFC)
145 #define MPT2SAS_PORT_ENABLE_COMPLETE (0xFFFD)
146 #define MPT2SAS_REMOVE_UNRESPONDING_DEVICES (0xFFFF)
148 * struct fw_event_work - firmware event struct
149 * @list: link list framework
150 * @work: work object (ioc->fault_reset_work_q)
151 * @cancel_pending_work: flag set during reset handling
152 * @ioc: per adapter object
153 * @device_handle: device handle
154 * @VF_ID: virtual function id
155 * @VP_ID: virtual port id
156 * @ignore: flag meaning this event has been marked to ignore
157 * @event: firmware event MPI2_EVENT_XXX defined in mpt2_ioc.h
158 * @event_data: reply event data payload follows
160 * This object stored on ioc->fw_event_list.
162 struct fw_event_work
{
163 struct list_head list
;
164 u8 cancel_pending_work
;
165 struct delayed_work delayed_work
;
166 struct MPT2SAS_ADAPTER
*ioc
;
175 /* raid transport support */
176 static struct raid_template
*mpt2sas_raid_template
;
179 * struct _scsi_io_transfer - scsi io transfer
180 * @handle: sas device handle (assigned by firmware)
181 * @is_raid: flag set for hidden raid components
182 * @dir: DMA_TO_DEVICE, DMA_FROM_DEVICE,
183 * @data_length: data transfer length
184 * @data_dma: dma pointer to data
187 * @cdb_length: cdb length
189 * @timeout: timeout for this command
190 * @VF_ID: virtual function id
191 * @VP_ID: virtual port id
192 * @valid_reply: flag set for reply message
193 * @sense_length: sense length
194 * @ioc_status: ioc status
195 * @scsi_state: scsi state
196 * @scsi_status: scsi staus
197 * @log_info: log information
198 * @transfer_length: data length transfer when there is a reply message
200 * Used for sending internal scsi commands to devices within this module.
201 * Refer to _scsi_send_scsi_io().
203 struct _scsi_io_transfer
{
206 enum dma_data_direction dir
;
209 u8 sense
[SCSI_SENSE_BUFFERSIZE
];
217 /* the following bits are only valid when 'valid_reply = 1' */
227 * The pci device ids are defined in mpi/mpi2_cnfg.h.
229 static struct pci_device_id scsih_pci_table
[] = {
230 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2004
,
231 PCI_ANY_ID
, PCI_ANY_ID
},
233 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2008
,
234 PCI_ANY_ID
, PCI_ANY_ID
},
235 /* Liberator ~ 2108 */
236 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2108_1
,
237 PCI_ANY_ID
, PCI_ANY_ID
},
238 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2108_2
,
239 PCI_ANY_ID
, PCI_ANY_ID
},
240 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2108_3
,
241 PCI_ANY_ID
, PCI_ANY_ID
},
243 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2116_1
,
244 PCI_ANY_ID
, PCI_ANY_ID
},
245 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2116_2
,
246 PCI_ANY_ID
, PCI_ANY_ID
},
247 /* Thunderbolt ~ 2208 */
248 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2208_1
,
249 PCI_ANY_ID
, PCI_ANY_ID
},
250 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2208_2
,
251 PCI_ANY_ID
, PCI_ANY_ID
},
252 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2208_3
,
253 PCI_ANY_ID
, PCI_ANY_ID
},
254 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2208_4
,
255 PCI_ANY_ID
, PCI_ANY_ID
},
256 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2208_5
,
257 PCI_ANY_ID
, PCI_ANY_ID
},
258 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2208_6
,
259 PCI_ANY_ID
, PCI_ANY_ID
},
261 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2308_1
,
262 PCI_ANY_ID
, PCI_ANY_ID
},
263 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2308_2
,
264 PCI_ANY_ID
, PCI_ANY_ID
},
265 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SAS2308_3
,
266 PCI_ANY_ID
, PCI_ANY_ID
},
268 { MPI2_MFGPAGE_VENDORID_LSI
, MPI2_MFGPAGE_DEVID_SSS6200
,
269 PCI_ANY_ID
, PCI_ANY_ID
},
270 {0} /* Terminating entry */
272 MODULE_DEVICE_TABLE(pci
, scsih_pci_table
);
275 * _scsih_set_debug_level - global setting of ioc->logging_level.
277 * Note: The logging levels are defined in mpt2sas_debug.h.
280 _scsih_set_debug_level(const char *val
, struct kernel_param
*kp
)
282 int ret
= param_set_int(val
, kp
);
283 struct MPT2SAS_ADAPTER
*ioc
;
288 printk(KERN_INFO
"setting logging_level(0x%08x)\n", logging_level
);
289 list_for_each_entry(ioc
, &mpt2sas_ioc_list
, list
)
290 ioc
->logging_level
= logging_level
;
293 module_param_call(logging_level
, _scsih_set_debug_level
, param_get_int
,
294 &logging_level
, 0644);
297 * _scsih_srch_boot_sas_address - search based on sas_address
298 * @sas_address: sas address
299 * @boot_device: boot device object from bios page 2
301 * Returns 1 when there's a match, 0 means no match.
304 _scsih_srch_boot_sas_address(u64 sas_address
,
305 Mpi2BootDeviceSasWwid_t
*boot_device
)
307 return (sas_address
== le64_to_cpu(boot_device
->SASAddress
)) ? 1 : 0;
311 * _scsih_srch_boot_device_name - search based on device name
312 * @device_name: device name specified in INDENTIFY fram
313 * @boot_device: boot device object from bios page 2
315 * Returns 1 when there's a match, 0 means no match.
318 _scsih_srch_boot_device_name(u64 device_name
,
319 Mpi2BootDeviceDeviceName_t
*boot_device
)
321 return (device_name
== le64_to_cpu(boot_device
->DeviceName
)) ? 1 : 0;
325 * _scsih_srch_boot_encl_slot - search based on enclosure_logical_id/slot
326 * @enclosure_logical_id: enclosure logical id
327 * @slot_number: slot number
328 * @boot_device: boot device object from bios page 2
330 * Returns 1 when there's a match, 0 means no match.
333 _scsih_srch_boot_encl_slot(u64 enclosure_logical_id
, u16 slot_number
,
334 Mpi2BootDeviceEnclosureSlot_t
*boot_device
)
336 return (enclosure_logical_id
== le64_to_cpu(boot_device
->
337 EnclosureLogicalID
) && slot_number
== le16_to_cpu(boot_device
->
338 SlotNumber
)) ? 1 : 0;
342 * _scsih_is_boot_device - search for matching boot device.
343 * @sas_address: sas address
344 * @device_name: device name specified in INDENTIFY fram
345 * @enclosure_logical_id: enclosure logical id
346 * @slot_number: slot number
347 * @form: specifies boot device form
348 * @boot_device: boot device object from bios page 2
350 * Returns 1 when there's a match, 0 means no match.
353 _scsih_is_boot_device(u64 sas_address
, u64 device_name
,
354 u64 enclosure_logical_id
, u16 slot
, u8 form
,
355 Mpi2BiosPage2BootDevice_t
*boot_device
)
360 case MPI2_BIOSPAGE2_FORM_SAS_WWID
:
363 rc
= _scsih_srch_boot_sas_address(
364 sas_address
, &boot_device
->SasWwid
);
366 case MPI2_BIOSPAGE2_FORM_ENCLOSURE_SLOT
:
367 if (!enclosure_logical_id
)
369 rc
= _scsih_srch_boot_encl_slot(
370 enclosure_logical_id
,
371 slot
, &boot_device
->EnclosureSlot
);
373 case MPI2_BIOSPAGE2_FORM_DEVICE_NAME
:
376 rc
= _scsih_srch_boot_device_name(
377 device_name
, &boot_device
->DeviceName
);
379 case MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED
:
387 * _scsih_get_sas_address - set the sas_address for given device handle
388 * @handle: device handle
389 * @sas_address: sas address
391 * Returns 0 success, non-zero when failure
394 _scsih_get_sas_address(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
,
397 Mpi2SasDevicePage0_t sas_device_pg0
;
398 Mpi2ConfigReply_t mpi_reply
;
402 if (handle
<= ioc
->sas_hba
.num_phys
) {
403 *sas_address
= ioc
->sas_hba
.sas_address
;
407 if ((mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
408 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
409 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n", ioc
->name
,
410 __FILE__
, __LINE__
, __func__
);
414 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
415 if (ioc_status
== MPI2_IOCSTATUS_SUCCESS
) {
416 *sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
420 /* we hit this becuase the given parent handle doesn't exist */
421 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
423 /* else error case */
424 printk(MPT2SAS_ERR_FMT
"handle(0x%04x), ioc_status(0x%04x), "
425 "failure at %s:%d/%s()!\n", ioc
->name
, handle
, ioc_status
,
426 __FILE__
, __LINE__
, __func__
);
431 * _scsih_determine_boot_device - determine boot device.
432 * @ioc: per adapter object
433 * @device: either sas_device or raid_device object
434 * @is_raid: [flag] 1 = raid object, 0 = sas object
436 * Determines whether this device should be first reported device to
437 * to scsi-ml or sas transport, this purpose is for persistent boot device.
438 * There are primary, alternate, and current entries in bios page 2. The order
439 * priority is primary, alternate, then current. This routine saves
440 * the corresponding device object and is_raid flag in the ioc object.
441 * The saved data to be used later in _scsih_probe_boot_devices().
444 _scsih_determine_boot_device(struct MPT2SAS_ADAPTER
*ioc
,
445 void *device
, u8 is_raid
)
447 struct _sas_device
*sas_device
;
448 struct _raid_device
*raid_device
;
451 u64 enclosure_logical_id
;
454 /* only process this function when driver loads */
455 if (!ioc
->is_driver_loading
)
458 /* no Bios, return immediately */
459 if (!ioc
->bios_pg3
.BiosVersion
)
464 sas_address
= sas_device
->sas_address
;
465 device_name
= sas_device
->device_name
;
466 enclosure_logical_id
= sas_device
->enclosure_logical_id
;
467 slot
= sas_device
->slot
;
469 raid_device
= device
;
470 sas_address
= raid_device
->wwid
;
472 enclosure_logical_id
= 0;
476 if (!ioc
->req_boot_device
.device
) {
477 if (_scsih_is_boot_device(sas_address
, device_name
,
478 enclosure_logical_id
, slot
,
479 (ioc
->bios_pg2
.ReqBootDeviceForm
&
480 MPI2_BIOSPAGE2_FORM_MASK
),
481 &ioc
->bios_pg2
.RequestedBootDevice
)) {
482 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
483 "%s: req_boot_device(0x%016llx)\n",
485 (unsigned long long)sas_address
));
486 ioc
->req_boot_device
.device
= device
;
487 ioc
->req_boot_device
.is_raid
= is_raid
;
491 if (!ioc
->req_alt_boot_device
.device
) {
492 if (_scsih_is_boot_device(sas_address
, device_name
,
493 enclosure_logical_id
, slot
,
494 (ioc
->bios_pg2
.ReqAltBootDeviceForm
&
495 MPI2_BIOSPAGE2_FORM_MASK
),
496 &ioc
->bios_pg2
.RequestedAltBootDevice
)) {
497 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
498 "%s: req_alt_boot_device(0x%016llx)\n",
500 (unsigned long long)sas_address
));
501 ioc
->req_alt_boot_device
.device
= device
;
502 ioc
->req_alt_boot_device
.is_raid
= is_raid
;
506 if (!ioc
->current_boot_device
.device
) {
507 if (_scsih_is_boot_device(sas_address
, device_name
,
508 enclosure_logical_id
, slot
,
509 (ioc
->bios_pg2
.CurrentBootDeviceForm
&
510 MPI2_BIOSPAGE2_FORM_MASK
),
511 &ioc
->bios_pg2
.CurrentBootDevice
)) {
512 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
513 "%s: current_boot_device(0x%016llx)\n",
515 (unsigned long long)sas_address
));
516 ioc
->current_boot_device
.device
= device
;
517 ioc
->current_boot_device
.is_raid
= is_raid
;
523 * mpt2sas_scsih_sas_device_find_by_sas_address - sas device search
524 * @ioc: per adapter object
525 * @sas_address: sas address
526 * Context: Calling function should acquire ioc->sas_device_lock
528 * This searches for sas_device based on sas_address, then return sas_device
532 mpt2sas_scsih_sas_device_find_by_sas_address(struct MPT2SAS_ADAPTER
*ioc
,
535 struct _sas_device
*sas_device
;
537 list_for_each_entry(sas_device
, &ioc
->sas_device_list
, list
)
538 if (sas_device
->sas_address
== sas_address
)
541 list_for_each_entry(sas_device
, &ioc
->sas_device_init_list
, list
)
542 if (sas_device
->sas_address
== sas_address
)
549 * _scsih_sas_device_find_by_handle - sas device search
550 * @ioc: per adapter object
551 * @handle: sas device handle (assigned by firmware)
552 * Context: Calling function should acquire ioc->sas_device_lock
554 * This searches for sas_device based on sas_address, then return sas_device
557 static struct _sas_device
*
558 _scsih_sas_device_find_by_handle(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
560 struct _sas_device
*sas_device
;
562 list_for_each_entry(sas_device
, &ioc
->sas_device_list
, list
)
563 if (sas_device
->handle
== handle
)
566 list_for_each_entry(sas_device
, &ioc
->sas_device_init_list
, list
)
567 if (sas_device
->handle
== handle
)
574 * _scsih_sas_device_remove - remove sas_device from list.
575 * @ioc: per adapter object
576 * @sas_device: the sas_device object
577 * Context: This function will acquire ioc->sas_device_lock.
579 * Removing object and freeing associated memory from the ioc->sas_device_list.
582 _scsih_sas_device_remove(struct MPT2SAS_ADAPTER
*ioc
,
583 struct _sas_device
*sas_device
)
590 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
591 list_del(&sas_device
->list
);
593 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
598 * _scsih_sas_device_add - insert sas_device to the list.
599 * @ioc: per adapter object
600 * @sas_device: the sas_device object
601 * Context: This function will acquire ioc->sas_device_lock.
603 * Adding new object to the ioc->sas_device_list.
606 _scsih_sas_device_add(struct MPT2SAS_ADAPTER
*ioc
,
607 struct _sas_device
*sas_device
)
611 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: handle"
612 "(0x%04x), sas_addr(0x%016llx)\n", ioc
->name
, __func__
,
613 sas_device
->handle
, (unsigned long long)sas_device
->sas_address
));
615 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
616 list_add_tail(&sas_device
->list
, &ioc
->sas_device_list
);
617 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
619 if (!mpt2sas_transport_port_add(ioc
, sas_device
->handle
,
620 sas_device
->sas_address_parent
)) {
621 _scsih_sas_device_remove(ioc
, sas_device
);
622 } else if (!sas_device
->starget
) {
623 /* When asyn scanning is enabled, its not possible to remove
624 * devices while scanning is turned on due to an oops in
625 * scsi_sysfs_add_sdev()->add_device()->sysfs_addrm_start()
627 if (!ioc
->is_driver_loading
)
628 mpt2sas_transport_port_remove(ioc
,
629 sas_device
->sas_address
,
630 sas_device
->sas_address_parent
);
631 _scsih_sas_device_remove(ioc
, sas_device
);
636 * _scsih_sas_device_init_add - insert sas_device to the list.
637 * @ioc: per adapter object
638 * @sas_device: the sas_device object
639 * Context: This function will acquire ioc->sas_device_lock.
641 * Adding new object at driver load time to the ioc->sas_device_init_list.
644 _scsih_sas_device_init_add(struct MPT2SAS_ADAPTER
*ioc
,
645 struct _sas_device
*sas_device
)
649 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: handle"
650 "(0x%04x), sas_addr(0x%016llx)\n", ioc
->name
, __func__
,
651 sas_device
->handle
, (unsigned long long)sas_device
->sas_address
));
653 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
654 list_add_tail(&sas_device
->list
, &ioc
->sas_device_init_list
);
655 _scsih_determine_boot_device(ioc
, sas_device
, 0);
656 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
660 * _scsih_raid_device_find_by_id - raid device search
661 * @ioc: per adapter object
662 * @id: sas device target id
663 * @channel: sas device channel
664 * Context: Calling function should acquire ioc->raid_device_lock
666 * This searches for raid_device based on target id, then return raid_device
669 static struct _raid_device
*
670 _scsih_raid_device_find_by_id(struct MPT2SAS_ADAPTER
*ioc
, int id
, int channel
)
672 struct _raid_device
*raid_device
, *r
;
675 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
676 if (raid_device
->id
== id
&& raid_device
->channel
== channel
) {
687 * _scsih_raid_device_find_by_handle - raid device search
688 * @ioc: per adapter object
689 * @handle: sas device handle (assigned by firmware)
690 * Context: Calling function should acquire ioc->raid_device_lock
692 * This searches for raid_device based on handle, then return raid_device
695 static struct _raid_device
*
696 _scsih_raid_device_find_by_handle(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
698 struct _raid_device
*raid_device
, *r
;
701 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
702 if (raid_device
->handle
!= handle
)
713 * _scsih_raid_device_find_by_wwid - raid device search
714 * @ioc: per adapter object
715 * @handle: sas device handle (assigned by firmware)
716 * Context: Calling function should acquire ioc->raid_device_lock
718 * This searches for raid_device based on wwid, then return raid_device
721 static struct _raid_device
*
722 _scsih_raid_device_find_by_wwid(struct MPT2SAS_ADAPTER
*ioc
, u64 wwid
)
724 struct _raid_device
*raid_device
, *r
;
727 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
728 if (raid_device
->wwid
!= wwid
)
739 * _scsih_raid_device_add - add raid_device object
740 * @ioc: per adapter object
741 * @raid_device: raid_device object
743 * This is added to the raid_device_list link list.
746 _scsih_raid_device_add(struct MPT2SAS_ADAPTER
*ioc
,
747 struct _raid_device
*raid_device
)
751 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: handle"
752 "(0x%04x), wwid(0x%016llx)\n", ioc
->name
, __func__
,
753 raid_device
->handle
, (unsigned long long)raid_device
->wwid
));
755 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
756 list_add_tail(&raid_device
->list
, &ioc
->raid_device_list
);
757 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
761 * _scsih_raid_device_remove - delete raid_device object
762 * @ioc: per adapter object
763 * @raid_device: raid_device object
767 _scsih_raid_device_remove(struct MPT2SAS_ADAPTER
*ioc
,
768 struct _raid_device
*raid_device
)
772 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
773 list_del(&raid_device
->list
);
775 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
779 * mpt2sas_scsih_expander_find_by_handle - expander device search
780 * @ioc: per adapter object
781 * @handle: expander handle (assigned by firmware)
782 * Context: Calling function should acquire ioc->sas_device_lock
784 * This searches for expander device based on handle, then returns the
788 mpt2sas_scsih_expander_find_by_handle(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
790 struct _sas_node
*sas_expander
, *r
;
793 list_for_each_entry(sas_expander
, &ioc
->sas_expander_list
, list
) {
794 if (sas_expander
->handle
!= handle
)
804 * mpt2sas_scsih_expander_find_by_sas_address - expander device search
805 * @ioc: per adapter object
806 * @sas_address: sas address
807 * Context: Calling function should acquire ioc->sas_node_lock.
809 * This searches for expander device based on sas_address, then returns the
813 mpt2sas_scsih_expander_find_by_sas_address(struct MPT2SAS_ADAPTER
*ioc
,
816 struct _sas_node
*sas_expander
, *r
;
819 list_for_each_entry(sas_expander
, &ioc
->sas_expander_list
, list
) {
820 if (sas_expander
->sas_address
!= sas_address
)
830 * _scsih_expander_node_add - insert expander device to the list.
831 * @ioc: per adapter object
832 * @sas_expander: the sas_device object
833 * Context: This function will acquire ioc->sas_node_lock.
835 * Adding new object to the ioc->sas_expander_list.
840 _scsih_expander_node_add(struct MPT2SAS_ADAPTER
*ioc
,
841 struct _sas_node
*sas_expander
)
845 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
846 list_add_tail(&sas_expander
->list
, &ioc
->sas_expander_list
);
847 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
851 * _scsih_is_end_device - determines if device is an end device
852 * @device_info: bitfield providing information about the device.
855 * Returns 1 if end device.
858 _scsih_is_end_device(u32 device_info
)
860 if (device_info
& MPI2_SAS_DEVICE_INFO_END_DEVICE
&&
861 ((device_info
& MPI2_SAS_DEVICE_INFO_SSP_TARGET
) |
862 (device_info
& MPI2_SAS_DEVICE_INFO_STP_TARGET
) |
863 (device_info
& MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)))
870 * _scsih_scsi_lookup_get - returns scmd entry
871 * @ioc: per adapter object
872 * @smid: system request message index
874 * Returns the smid stored scmd pointer.
876 static struct scsi_cmnd
*
877 _scsih_scsi_lookup_get(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
879 return ioc
->scsi_lookup
[smid
- 1].scmd
;
883 * _scsih_scsi_lookup_get_clear - returns scmd entry
884 * @ioc: per adapter object
885 * @smid: system request message index
887 * Returns the smid stored scmd pointer.
888 * Then will derefrence the stored scmd pointer.
890 static inline struct scsi_cmnd
*
891 _scsih_scsi_lookup_get_clear(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
894 struct scsi_cmnd
*scmd
;
896 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
897 scmd
= ioc
->scsi_lookup
[smid
- 1].scmd
;
898 ioc
->scsi_lookup
[smid
- 1].scmd
= NULL
;
899 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
905 * _scsih_scsi_lookup_find_by_scmd - scmd lookup
906 * @ioc: per adapter object
907 * @smid: system request message index
908 * @scmd: pointer to scsi command object
909 * Context: This function will acquire ioc->scsi_lookup_lock.
911 * This will search for a scmd pointer in the scsi_lookup array,
912 * returning the revelent smid. A returned value of zero means invalid.
915 _scsih_scsi_lookup_find_by_scmd(struct MPT2SAS_ADAPTER
*ioc
, struct scsi_cmnd
922 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
924 for (i
= 0; i
< ioc
->scsiio_depth
; i
++) {
925 if (ioc
->scsi_lookup
[i
].scmd
== scmd
) {
926 smid
= ioc
->scsi_lookup
[i
].smid
;
931 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
936 * _scsih_scsi_lookup_find_by_target - search for matching channel:id
937 * @ioc: per adapter object
940 * Context: This function will acquire ioc->scsi_lookup_lock.
942 * This will search for a matching channel:id in the scsi_lookup array,
943 * returning 1 if found.
946 _scsih_scsi_lookup_find_by_target(struct MPT2SAS_ADAPTER
*ioc
, int id
,
953 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
955 for (i
= 0 ; i
< ioc
->scsiio_depth
; i
++) {
956 if (ioc
->scsi_lookup
[i
].scmd
&&
957 (ioc
->scsi_lookup
[i
].scmd
->device
->id
== id
&&
958 ioc
->scsi_lookup
[i
].scmd
->device
->channel
== channel
)) {
964 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
969 * _scsih_scsi_lookup_find_by_lun - search for matching channel:id:lun
970 * @ioc: per adapter object
974 * Context: This function will acquire ioc->scsi_lookup_lock.
976 * This will search for a matching channel:id:lun in the scsi_lookup array,
977 * returning 1 if found.
980 _scsih_scsi_lookup_find_by_lun(struct MPT2SAS_ADAPTER
*ioc
, int id
,
981 unsigned int lun
, int channel
)
987 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
989 for (i
= 0 ; i
< ioc
->scsiio_depth
; i
++) {
990 if (ioc
->scsi_lookup
[i
].scmd
&&
991 (ioc
->scsi_lookup
[i
].scmd
->device
->id
== id
&&
992 ioc
->scsi_lookup
[i
].scmd
->device
->channel
== channel
&&
993 ioc
->scsi_lookup
[i
].scmd
->device
->lun
== lun
)) {
999 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1004 * _scsih_get_chain_buffer_tracker - obtain chain tracker
1005 * @ioc: per adapter object
1006 * @smid: smid associated to an IO request
1008 * Returns chain tracker(from ioc->free_chain_list)
1010 static struct chain_tracker
*
1011 _scsih_get_chain_buffer_tracker(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
1013 struct chain_tracker
*chain_req
;
1014 unsigned long flags
;
1016 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
1017 if (list_empty(&ioc
->free_chain_list
)) {
1018 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1019 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
"chain buffers not "
1020 "available\n", ioc
->name
));
1023 chain_req
= list_entry(ioc
->free_chain_list
.next
,
1024 struct chain_tracker
, tracker_list
);
1025 list_del_init(&chain_req
->tracker_list
);
1026 list_add_tail(&chain_req
->tracker_list
,
1027 &ioc
->scsi_lookup
[smid
- 1].chain_list
);
1028 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1033 * _scsih_build_scatter_gather - main sg creation routine
1034 * @ioc: per adapter object
1035 * @scmd: scsi command
1036 * @smid: system request message index
1039 * The main routine that builds scatter gather table from a given
1040 * scsi request sent via the .queuecommand main handler.
1042 * Returns 0 success, anything else error
1045 _scsih_build_scatter_gather(struct MPT2SAS_ADAPTER
*ioc
,
1046 struct scsi_cmnd
*scmd
, u16 smid
)
1048 Mpi2SCSIIORequest_t
*mpi_request
;
1049 dma_addr_t chain_dma
;
1050 struct scatterlist
*sg_scmd
;
1051 void *sg_local
, *chain
;
1056 u32 sges_in_segment
;
1058 u32 sgl_flags_last_element
;
1059 u32 sgl_flags_end_buffer
;
1060 struct chain_tracker
*chain_req
;
1062 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
1064 /* init scatter gather flags */
1065 sgl_flags
= MPI2_SGE_FLAGS_SIMPLE_ELEMENT
;
1066 if (scmd
->sc_data_direction
== DMA_TO_DEVICE
)
1067 sgl_flags
|= MPI2_SGE_FLAGS_HOST_TO_IOC
;
1068 sgl_flags_last_element
= (sgl_flags
| MPI2_SGE_FLAGS_LAST_ELEMENT
)
1069 << MPI2_SGE_FLAGS_SHIFT
;
1070 sgl_flags_end_buffer
= (sgl_flags
| MPI2_SGE_FLAGS_LAST_ELEMENT
|
1071 MPI2_SGE_FLAGS_END_OF_BUFFER
| MPI2_SGE_FLAGS_END_OF_LIST
)
1072 << MPI2_SGE_FLAGS_SHIFT
;
1073 sgl_flags
= sgl_flags
<< MPI2_SGE_FLAGS_SHIFT
;
1075 sg_scmd
= scsi_sglist(scmd
);
1076 sges_left
= scsi_dma_map(scmd
);
1077 if (sges_left
< 0) {
1078 sdev_printk(KERN_ERR
, scmd
->device
, "pci_map_sg"
1079 " failed: request for %d bytes!\n", scsi_bufflen(scmd
));
1083 sg_local
= &mpi_request
->SGL
;
1084 sges_in_segment
= ioc
->max_sges_in_main_message
;
1085 if (sges_left
<= sges_in_segment
)
1086 goto fill_in_last_segment
;
1088 mpi_request
->ChainOffset
= (offsetof(Mpi2SCSIIORequest_t
, SGL
) +
1089 (sges_in_segment
* ioc
->sge_size
))/4;
1091 /* fill in main message segment when there is a chain following */
1092 while (sges_in_segment
) {
1093 if (sges_in_segment
== 1)
1094 ioc
->base_add_sg_single(sg_local
,
1095 sgl_flags_last_element
| sg_dma_len(sg_scmd
),
1096 sg_dma_address(sg_scmd
));
1098 ioc
->base_add_sg_single(sg_local
, sgl_flags
|
1099 sg_dma_len(sg_scmd
), sg_dma_address(sg_scmd
));
1100 sg_scmd
= sg_next(sg_scmd
);
1101 sg_local
+= ioc
->sge_size
;
1106 /* initializing the chain flags and pointers */
1107 chain_flags
= MPI2_SGE_FLAGS_CHAIN_ELEMENT
<< MPI2_SGE_FLAGS_SHIFT
;
1108 chain_req
= _scsih_get_chain_buffer_tracker(ioc
, smid
);
1111 chain
= chain_req
->chain_buffer
;
1112 chain_dma
= chain_req
->chain_buffer_dma
;
1114 sges_in_segment
= (sges_left
<=
1115 ioc
->max_sges_in_chain_message
) ? sges_left
:
1116 ioc
->max_sges_in_chain_message
;
1117 chain_offset
= (sges_left
== sges_in_segment
) ?
1118 0 : (sges_in_segment
* ioc
->sge_size
)/4;
1119 chain_length
= sges_in_segment
* ioc
->sge_size
;
1121 chain_offset
= chain_offset
<<
1122 MPI2_SGE_CHAIN_OFFSET_SHIFT
;
1123 chain_length
+= ioc
->sge_size
;
1125 ioc
->base_add_sg_single(sg_local
, chain_flags
| chain_offset
|
1126 chain_length
, chain_dma
);
1129 goto fill_in_last_segment
;
1131 /* fill in chain segments */
1132 while (sges_in_segment
) {
1133 if (sges_in_segment
== 1)
1134 ioc
->base_add_sg_single(sg_local
,
1135 sgl_flags_last_element
|
1136 sg_dma_len(sg_scmd
),
1137 sg_dma_address(sg_scmd
));
1139 ioc
->base_add_sg_single(sg_local
, sgl_flags
|
1140 sg_dma_len(sg_scmd
),
1141 sg_dma_address(sg_scmd
));
1142 sg_scmd
= sg_next(sg_scmd
);
1143 sg_local
+= ioc
->sge_size
;
1148 chain_req
= _scsih_get_chain_buffer_tracker(ioc
, smid
);
1151 chain
= chain_req
->chain_buffer
;
1152 chain_dma
= chain_req
->chain_buffer_dma
;
1156 fill_in_last_segment
:
1158 /* fill the last segment */
1161 ioc
->base_add_sg_single(sg_local
, sgl_flags_end_buffer
|
1162 sg_dma_len(sg_scmd
), sg_dma_address(sg_scmd
));
1164 ioc
->base_add_sg_single(sg_local
, sgl_flags
|
1165 sg_dma_len(sg_scmd
), sg_dma_address(sg_scmd
));
1166 sg_scmd
= sg_next(sg_scmd
);
1167 sg_local
+= ioc
->sge_size
;
1175 * _scsih_adjust_queue_depth - setting device queue depth
1176 * @sdev: scsi device struct
1177 * @qdepth: requested queue depth
1183 _scsih_adjust_queue_depth(struct scsi_device
*sdev
, int qdepth
)
1185 struct Scsi_Host
*shost
= sdev
->host
;
1187 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
1188 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
1189 struct MPT2SAS_TARGET
*sas_target_priv_data
;
1190 struct _sas_device
*sas_device
;
1191 unsigned long flags
;
1193 max_depth
= shost
->can_queue
;
1195 /* limit max device queue for SATA to 32 */
1196 sas_device_priv_data
= sdev
->hostdata
;
1197 if (!sas_device_priv_data
)
1199 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
1200 if (!sas_target_priv_data
)
1202 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
))
1204 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1205 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
1206 sas_device_priv_data
->sas_target
->sas_address
);
1207 if (sas_device
&& sas_device
->device_info
&
1208 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
1209 max_depth
= MPT2SAS_SATA_QUEUE_DEPTH
;
1210 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1214 if (!sdev
->tagged_supported
)
1216 if (qdepth
> max_depth
)
1218 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), qdepth
);
1222 * _scsih_change_queue_depth - setting device queue depth
1223 * @sdev: scsi device struct
1224 * @qdepth: requested queue depth
1225 * @reason: SCSI_QDEPTH_DEFAULT/SCSI_QDEPTH_QFULL/SCSI_QDEPTH_RAMP_UP
1226 * (see include/scsi/scsi_host.h for definition)
1228 * Returns queue depth.
1231 _scsih_change_queue_depth(struct scsi_device
*sdev
, int qdepth
, int reason
)
1233 if (reason
== SCSI_QDEPTH_DEFAULT
|| reason
== SCSI_QDEPTH_RAMP_UP
)
1234 _scsih_adjust_queue_depth(sdev
, qdepth
);
1235 else if (reason
== SCSI_QDEPTH_QFULL
)
1236 scsi_track_queue_full(sdev
, qdepth
);
1240 if (sdev
->inquiry_len
> 7)
1241 sdev_printk(KERN_INFO
, sdev
, "qdepth(%d), tagged(%d), "
1242 "simple(%d), ordered(%d), scsi_level(%d), cmd_que(%d)\n",
1243 sdev
->queue_depth
, sdev
->tagged_supported
, sdev
->simple_tags
,
1244 sdev
->ordered_tags
, sdev
->scsi_level
,
1245 (sdev
->inquiry
[7] & 2) >> 1);
1247 return sdev
->queue_depth
;
1251 * _scsih_change_queue_type - changing device queue tag type
1252 * @sdev: scsi device struct
1253 * @tag_type: requested tag type
1255 * Returns queue tag type.
1258 _scsih_change_queue_type(struct scsi_device
*sdev
, int tag_type
)
1260 if (sdev
->tagged_supported
) {
1261 scsi_set_tag_type(sdev
, tag_type
);
1263 scsi_activate_tcq(sdev
, sdev
->queue_depth
);
1265 scsi_deactivate_tcq(sdev
, sdev
->queue_depth
);
1273 * _scsih_target_alloc - target add routine
1274 * @starget: scsi target struct
1276 * Returns 0 if ok. Any other return is assumed to be an error and
1277 * the device is ignored.
1280 _scsih_target_alloc(struct scsi_target
*starget
)
1282 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
1283 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
1284 struct MPT2SAS_TARGET
*sas_target_priv_data
;
1285 struct _sas_device
*sas_device
;
1286 struct _raid_device
*raid_device
;
1287 unsigned long flags
;
1288 struct sas_rphy
*rphy
;
1290 sas_target_priv_data
= kzalloc(sizeof(struct scsi_target
), GFP_KERNEL
);
1291 if (!sas_target_priv_data
)
1294 starget
->hostdata
= sas_target_priv_data
;
1295 sas_target_priv_data
->starget
= starget
;
1296 sas_target_priv_data
->handle
= MPT2SAS_INVALID_DEVICE_HANDLE
;
1299 if (starget
->channel
== RAID_CHANNEL
) {
1300 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1301 raid_device
= _scsih_raid_device_find_by_id(ioc
, starget
->id
,
1304 sas_target_priv_data
->handle
= raid_device
->handle
;
1305 sas_target_priv_data
->sas_address
= raid_device
->wwid
;
1306 sas_target_priv_data
->flags
|= MPT_TARGET_FLAGS_VOLUME
;
1307 if (ioc
->is_warpdrive
)
1308 sas_target_priv_data
->raid_device
= raid_device
;
1309 raid_device
->starget
= starget
;
1311 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1315 /* sas/sata devices */
1316 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1317 rphy
= dev_to_rphy(starget
->dev
.parent
);
1318 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
1319 rphy
->identify
.sas_address
);
1322 sas_target_priv_data
->handle
= sas_device
->handle
;
1323 sas_target_priv_data
->sas_address
= sas_device
->sas_address
;
1324 sas_device
->starget
= starget
;
1325 sas_device
->id
= starget
->id
;
1326 sas_device
->channel
= starget
->channel
;
1327 if (test_bit(sas_device
->handle
, ioc
->pd_handles
))
1328 sas_target_priv_data
->flags
|=
1329 MPT_TARGET_FLAGS_RAID_COMPONENT
;
1331 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1337 * _scsih_target_destroy - target destroy routine
1338 * @starget: scsi target struct
1343 _scsih_target_destroy(struct scsi_target
*starget
)
1345 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
1346 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
1347 struct MPT2SAS_TARGET
*sas_target_priv_data
;
1348 struct _sas_device
*sas_device
;
1349 struct _raid_device
*raid_device
;
1350 unsigned long flags
;
1351 struct sas_rphy
*rphy
;
1353 sas_target_priv_data
= starget
->hostdata
;
1354 if (!sas_target_priv_data
)
1357 if (starget
->channel
== RAID_CHANNEL
) {
1358 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1359 raid_device
= _scsih_raid_device_find_by_id(ioc
, starget
->id
,
1362 raid_device
->starget
= NULL
;
1363 raid_device
->sdev
= NULL
;
1365 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1369 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1370 rphy
= dev_to_rphy(starget
->dev
.parent
);
1371 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
1372 rphy
->identify
.sas_address
);
1373 if (sas_device
&& (sas_device
->starget
== starget
) &&
1374 (sas_device
->id
== starget
->id
) &&
1375 (sas_device
->channel
== starget
->channel
))
1376 sas_device
->starget
= NULL
;
1378 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1381 kfree(sas_target_priv_data
);
1382 starget
->hostdata
= NULL
;
1386 * _scsih_slave_alloc - device add routine
1387 * @sdev: scsi device struct
1389 * Returns 0 if ok. Any other return is assumed to be an error and
1390 * the device is ignored.
1393 _scsih_slave_alloc(struct scsi_device
*sdev
)
1395 struct Scsi_Host
*shost
;
1396 struct MPT2SAS_ADAPTER
*ioc
;
1397 struct MPT2SAS_TARGET
*sas_target_priv_data
;
1398 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
1399 struct scsi_target
*starget
;
1400 struct _raid_device
*raid_device
;
1401 unsigned long flags
;
1403 sas_device_priv_data
= kzalloc(sizeof(struct scsi_device
), GFP_KERNEL
);
1404 if (!sas_device_priv_data
)
1407 sas_device_priv_data
->lun
= sdev
->lun
;
1408 sas_device_priv_data
->flags
= MPT_DEVICE_FLAGS_INIT
;
1410 starget
= scsi_target(sdev
);
1411 sas_target_priv_data
= starget
->hostdata
;
1412 sas_target_priv_data
->num_luns
++;
1413 sas_device_priv_data
->sas_target
= sas_target_priv_data
;
1414 sdev
->hostdata
= sas_device_priv_data
;
1415 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
))
1416 sdev
->no_uld_attach
= 1;
1418 shost
= dev_to_shost(&starget
->dev
);
1419 ioc
= shost_priv(shost
);
1420 if (starget
->channel
== RAID_CHANNEL
) {
1421 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1422 raid_device
= _scsih_raid_device_find_by_id(ioc
,
1423 starget
->id
, starget
->channel
);
1425 raid_device
->sdev
= sdev
; /* raid is single lun */
1426 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1433 * _scsih_slave_destroy - device destroy routine
1434 * @sdev: scsi device struct
1439 _scsih_slave_destroy(struct scsi_device
*sdev
)
1441 struct MPT2SAS_TARGET
*sas_target_priv_data
;
1442 struct scsi_target
*starget
;
1443 struct Scsi_Host
*shost
;
1444 struct MPT2SAS_ADAPTER
*ioc
;
1445 struct _sas_device
*sas_device
;
1446 unsigned long flags
;
1448 if (!sdev
->hostdata
)
1451 starget
= scsi_target(sdev
);
1452 sas_target_priv_data
= starget
->hostdata
;
1453 sas_target_priv_data
->num_luns
--;
1455 shost
= dev_to_shost(&starget
->dev
);
1456 ioc
= shost_priv(shost
);
1458 if (!(sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
)) {
1459 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1460 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
1461 sas_target_priv_data
->sas_address
);
1462 if (sas_device
&& !sas_target_priv_data
->num_luns
)
1463 sas_device
->starget
= NULL
;
1464 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1467 kfree(sdev
->hostdata
);
1468 sdev
->hostdata
= NULL
;
1472 * _scsih_display_sata_capabilities - sata capabilities
1473 * @ioc: per adapter object
1474 * @handle: device handle
1475 * @sdev: scsi device struct
1478 _scsih_display_sata_capabilities(struct MPT2SAS_ADAPTER
*ioc
,
1479 u16 handle
, struct scsi_device
*sdev
)
1481 Mpi2ConfigReply_t mpi_reply
;
1482 Mpi2SasDevicePage0_t sas_device_pg0
;
1487 if ((mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
1488 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
1489 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
1490 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1494 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
1495 MPI2_IOCSTATUS_MASK
;
1496 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
1497 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
1498 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1502 flags
= le16_to_cpu(sas_device_pg0
.Flags
);
1503 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
1505 sdev_printk(KERN_INFO
, sdev
,
1506 "atapi(%s), ncq(%s), asyn_notify(%s), smart(%s), fua(%s), "
1507 "sw_preserve(%s)\n",
1508 (device_info
& MPI2_SAS_DEVICE_INFO_ATAPI_DEVICE
) ? "y" : "n",
1509 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_NCQ_SUPPORTED
) ? "y" : "n",
1510 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_ASYNCHRONOUS_NOTIFY
) ? "y" :
1512 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_SMART_SUPPORTED
) ? "y" : "n",
1513 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_FUA_SUPPORTED
) ? "y" : "n",
1514 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_SW_PRESERVE
) ? "y" : "n");
1518 * _scsih_is_raid - return boolean indicating device is raid volume
1519 * @dev the device struct object
1522 _scsih_is_raid(struct device
*dev
)
1524 struct scsi_device
*sdev
= to_scsi_device(dev
);
1525 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(sdev
->host
);
1527 if (ioc
->is_warpdrive
)
1529 return (sdev
->channel
== RAID_CHANNEL
) ? 1 : 0;
1533 * _scsih_get_resync - get raid volume resync percent complete
1534 * @dev the device struct object
1537 _scsih_get_resync(struct device
*dev
)
1539 struct scsi_device
*sdev
= to_scsi_device(dev
);
1540 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(sdev
->host
);
1541 static struct _raid_device
*raid_device
;
1542 unsigned long flags
;
1543 Mpi2RaidVolPage0_t vol_pg0
;
1544 Mpi2ConfigReply_t mpi_reply
;
1545 u32 volume_status_flags
;
1546 u8 percent_complete
;
1549 percent_complete
= 0;
1551 if (ioc
->is_warpdrive
)
1554 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1555 raid_device
= _scsih_raid_device_find_by_id(ioc
, sdev
->id
,
1558 handle
= raid_device
->handle
;
1559 percent_complete
= raid_device
->percent_complete
;
1561 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1566 if (mpt2sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, &vol_pg0
,
1567 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
1568 sizeof(Mpi2RaidVolPage0_t
))) {
1569 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
1570 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1571 percent_complete
= 0;
1575 volume_status_flags
= le32_to_cpu(vol_pg0
.VolumeStatusFlags
);
1576 if (!(volume_status_flags
&
1577 MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS
))
1578 percent_complete
= 0;
1581 raid_set_resync(mpt2sas_raid_template
, dev
, percent_complete
);
1585 * _scsih_get_state - get raid volume level
1586 * @dev the device struct object
1589 _scsih_get_state(struct device
*dev
)
1591 struct scsi_device
*sdev
= to_scsi_device(dev
);
1592 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(sdev
->host
);
1593 static struct _raid_device
*raid_device
;
1594 unsigned long flags
;
1595 Mpi2RaidVolPage0_t vol_pg0
;
1596 Mpi2ConfigReply_t mpi_reply
;
1598 enum raid_state state
= RAID_STATE_UNKNOWN
;
1601 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1602 raid_device
= _scsih_raid_device_find_by_id(ioc
, sdev
->id
,
1605 handle
= raid_device
->handle
;
1606 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1611 if (mpt2sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, &vol_pg0
,
1612 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
1613 sizeof(Mpi2RaidVolPage0_t
))) {
1614 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
1615 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1619 volstate
= le32_to_cpu(vol_pg0
.VolumeStatusFlags
);
1620 if (volstate
& MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS
) {
1621 state
= RAID_STATE_RESYNCING
;
1625 switch (vol_pg0
.VolumeState
) {
1626 case MPI2_RAID_VOL_STATE_OPTIMAL
:
1627 case MPI2_RAID_VOL_STATE_ONLINE
:
1628 state
= RAID_STATE_ACTIVE
;
1630 case MPI2_RAID_VOL_STATE_DEGRADED
:
1631 state
= RAID_STATE_DEGRADED
;
1633 case MPI2_RAID_VOL_STATE_FAILED
:
1634 case MPI2_RAID_VOL_STATE_MISSING
:
1635 state
= RAID_STATE_OFFLINE
;
1639 raid_set_state(mpt2sas_raid_template
, dev
, state
);
1643 * _scsih_set_level - set raid level
1644 * @sdev: scsi device struct
1645 * @volume_type: volume type
1648 _scsih_set_level(struct scsi_device
*sdev
, u8 volume_type
)
1650 enum raid_level level
= RAID_LEVEL_UNKNOWN
;
1652 switch (volume_type
) {
1653 case MPI2_RAID_VOL_TYPE_RAID0
:
1654 level
= RAID_LEVEL_0
;
1656 case MPI2_RAID_VOL_TYPE_RAID10
:
1657 level
= RAID_LEVEL_10
;
1659 case MPI2_RAID_VOL_TYPE_RAID1E
:
1660 level
= RAID_LEVEL_1E
;
1662 case MPI2_RAID_VOL_TYPE_RAID1
:
1663 level
= RAID_LEVEL_1
;
1667 raid_set_level(mpt2sas_raid_template
, &sdev
->sdev_gendev
, level
);
1671 * _scsih_get_volume_capabilities - volume capabilities
1672 * @ioc: per adapter object
1673 * @sas_device: the raid_device object
1675 * Returns 0 for success, else 1
1678 _scsih_get_volume_capabilities(struct MPT2SAS_ADAPTER
*ioc
,
1679 struct _raid_device
*raid_device
)
1681 Mpi2RaidVolPage0_t
*vol_pg0
;
1682 Mpi2RaidPhysDiskPage0_t pd_pg0
;
1683 Mpi2SasDevicePage0_t sas_device_pg0
;
1684 Mpi2ConfigReply_t mpi_reply
;
1688 if ((mpt2sas_config_get_number_pds(ioc
, raid_device
->handle
,
1689 &num_pds
)) || !num_pds
) {
1690 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
1691 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1696 raid_device
->num_pds
= num_pds
;
1697 sz
= offsetof(Mpi2RaidVolPage0_t
, PhysDisk
) + (num_pds
*
1698 sizeof(Mpi2RaidVol0PhysDisk_t
));
1699 vol_pg0
= kzalloc(sz
, GFP_KERNEL
);
1701 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
1702 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1707 if ((mpt2sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, vol_pg0
,
1708 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, raid_device
->handle
, sz
))) {
1709 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
1710 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1716 raid_device
->volume_type
= vol_pg0
->VolumeType
;
1718 /* figure out what the underlying devices are by
1719 * obtaining the device_info bits for the 1st device
1721 if (!(mpt2sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
1722 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM
,
1723 vol_pg0
->PhysDisk
[0].PhysDiskNum
))) {
1724 if (!(mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
1725 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
1726 le16_to_cpu(pd_pg0
.DevHandle
)))) {
1727 raid_device
->device_info
=
1728 le32_to_cpu(sas_device_pg0
.DeviceInfo
);
1736 * _scsih_disable_ddio - Disable direct I/O for all the volumes
1737 * @ioc: per adapter object
1740 _scsih_disable_ddio(struct MPT2SAS_ADAPTER
*ioc
)
1742 Mpi2RaidVolPage1_t vol_pg1
;
1743 Mpi2ConfigReply_t mpi_reply
;
1744 struct _raid_device
*raid_device
;
1747 unsigned long flags
;
1750 while (!(mpt2sas_config_get_raid_volume_pg1(ioc
, &mpi_reply
,
1751 &vol_pg1
, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE
, handle
))) {
1752 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
1753 MPI2_IOCSTATUS_MASK
;
1754 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
1756 handle
= le16_to_cpu(vol_pg1
.DevHandle
);
1757 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1758 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
1760 raid_device
->direct_io_enabled
= 0;
1761 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1768 * _scsih_get_num_volumes - Get number of volumes in the ioc
1769 * @ioc: per adapter object
1772 _scsih_get_num_volumes(struct MPT2SAS_ADAPTER
*ioc
)
1774 Mpi2RaidVolPage1_t vol_pg1
;
1775 Mpi2ConfigReply_t mpi_reply
;
1781 while (!(mpt2sas_config_get_raid_volume_pg1(ioc
, &mpi_reply
,
1782 &vol_pg1
, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE
, handle
))) {
1783 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
1784 MPI2_IOCSTATUS_MASK
;
1785 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
1788 handle
= le16_to_cpu(vol_pg1
.DevHandle
);
1795 * _scsih_init_warpdrive_properties - Set properties for warpdrive direct I/O.
1796 * @ioc: per adapter object
1797 * @raid_device: the raid_device object
1800 _scsih_init_warpdrive_properties(struct MPT2SAS_ADAPTER
*ioc
,
1801 struct _raid_device
*raid_device
)
1803 Mpi2RaidVolPage0_t
*vol_pg0
;
1804 Mpi2RaidPhysDiskPage0_t pd_pg0
;
1805 Mpi2ConfigReply_t mpi_reply
;
1808 unsigned long stripe_sz
, block_sz
;
1809 u8 stripe_exp
, block_exp
;
1812 if (!ioc
->is_warpdrive
)
1815 if (ioc
->mfg_pg10_hide_flag
== MFG_PAGE10_EXPOSE_ALL_DISKS
) {
1816 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is disabled "
1817 "globally as drives are exposed\n", ioc
->name
);
1820 if (_scsih_get_num_volumes(ioc
) > 1) {
1821 _scsih_disable_ddio(ioc
);
1822 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is disabled "
1823 "globally as number of drives > 1\n", ioc
->name
);
1826 if ((mpt2sas_config_get_number_pds(ioc
, raid_device
->handle
,
1827 &num_pds
)) || !num_pds
) {
1828 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is disabled "
1829 "Failure in computing number of drives\n", ioc
->name
);
1833 sz
= offsetof(Mpi2RaidVolPage0_t
, PhysDisk
) + (num_pds
*
1834 sizeof(Mpi2RaidVol0PhysDisk_t
));
1835 vol_pg0
= kzalloc(sz
, GFP_KERNEL
);
1837 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is disabled "
1838 "Memory allocation failure for RVPG0\n", ioc
->name
);
1842 if ((mpt2sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, vol_pg0
,
1843 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, raid_device
->handle
, sz
))) {
1844 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is disabled "
1845 "Failure in retrieving RVPG0\n", ioc
->name
);
1851 * WARPDRIVE:If number of physical disks in a volume exceeds the max pds
1852 * assumed for WARPDRIVE, disable direct I/O
1854 if (num_pds
> MPT_MAX_WARPDRIVE_PDS
) {
1855 printk(MPT2SAS_WARN_FMT
"WarpDrive : Direct IO is disabled "
1856 "for the drive with handle(0x%04x): num_mem=%d, "
1857 "max_mem_allowed=%d\n", ioc
->name
, raid_device
->handle
,
1858 num_pds
, MPT_MAX_WARPDRIVE_PDS
);
1862 for (count
= 0; count
< num_pds
; count
++) {
1863 if (mpt2sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
1864 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM
,
1865 vol_pg0
->PhysDisk
[count
].PhysDiskNum
) ||
1866 le16_to_cpu(pd_pg0
.DevHandle
) ==
1867 MPT2SAS_INVALID_DEVICE_HANDLE
) {
1868 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is "
1869 "disabled for the drive with handle(0x%04x) member"
1870 "handle retrieval failed for member number=%d\n",
1871 ioc
->name
, raid_device
->handle
,
1872 vol_pg0
->PhysDisk
[count
].PhysDiskNum
);
1875 /* Disable direct I/O if member drive lba exceeds 4 bytes */
1876 dev_max_lba
= le64_to_cpu(pd_pg0
.DeviceMaxLBA
);
1877 if (dev_max_lba
>> 32) {
1878 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is "
1879 "disabled for the drive with handle(0x%04x) member"
1880 "handle (0x%04x) unsupported max lba 0x%016llx\n",
1881 ioc
->name
, raid_device
->handle
,
1882 le16_to_cpu(pd_pg0
.DevHandle
),
1883 (unsigned long long)dev_max_lba
);
1887 raid_device
->pd_handle
[count
] = le16_to_cpu(pd_pg0
.DevHandle
);
1891 * Assumption for WD: Direct I/O is not supported if the volume is
1894 if (raid_device
->volume_type
!= MPI2_RAID_VOL_TYPE_RAID0
) {
1895 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is disabled "
1896 "for the drive with handle(0x%04x): type=%d, "
1897 "s_sz=%uK, blk_size=%u\n", ioc
->name
,
1898 raid_device
->handle
, raid_device
->volume_type
,
1899 (le32_to_cpu(vol_pg0
->StripeSize
) *
1900 le16_to_cpu(vol_pg0
->BlockSize
)) / 1024,
1901 le16_to_cpu(vol_pg0
->BlockSize
));
1905 stripe_sz
= le32_to_cpu(vol_pg0
->StripeSize
);
1906 stripe_exp
= find_first_bit(&stripe_sz
, 32);
1907 if (stripe_exp
== 32) {
1908 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is disabled "
1909 "for the drive with handle(0x%04x) invalid stripe sz %uK\n",
1910 ioc
->name
, raid_device
->handle
,
1911 (le32_to_cpu(vol_pg0
->StripeSize
) *
1912 le16_to_cpu(vol_pg0
->BlockSize
)) / 1024);
1915 raid_device
->stripe_exponent
= stripe_exp
;
1916 block_sz
= le16_to_cpu(vol_pg0
->BlockSize
);
1917 block_exp
= find_first_bit(&block_sz
, 16);
1918 if (block_exp
== 16) {
1919 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is disabled "
1920 "for the drive with handle(0x%04x) invalid block sz %u\n",
1921 ioc
->name
, raid_device
->handle
,
1922 le16_to_cpu(vol_pg0
->BlockSize
));
1925 raid_device
->block_exponent
= block_exp
;
1926 raid_device
->direct_io_enabled
= 1;
1928 printk(MPT2SAS_INFO_FMT
"WarpDrive : Direct IO is Enabled for the drive"
1929 " with handle(0x%04x)\n", ioc
->name
, raid_device
->handle
);
1931 * WARPDRIVE: Though the following fields are not used for direct IO,
1932 * stored for future purpose:
1934 raid_device
->max_lba
= le64_to_cpu(vol_pg0
->MaxLBA
);
1935 raid_device
->stripe_sz
= le32_to_cpu(vol_pg0
->StripeSize
);
1936 raid_device
->block_sz
= le16_to_cpu(vol_pg0
->BlockSize
);
1943 raid_device
->direct_io_enabled
= 0;
1944 for (count
= 0; count
< num_pds
; count
++)
1945 raid_device
->pd_handle
[count
] = 0;
1951 * _scsih_enable_tlr - setting TLR flags
1952 * @ioc: per adapter object
1953 * @sdev: scsi device struct
1955 * Enabling Transaction Layer Retries for tape devices when
1956 * vpd page 0x90 is present
1960 _scsih_enable_tlr(struct MPT2SAS_ADAPTER
*ioc
, struct scsi_device
*sdev
)
1963 if (sdev
->type
!= TYPE_TAPE
)
1966 if (!(ioc
->facts
.IOCCapabilities
& MPI2_IOCFACTS_CAPABILITY_TLR
))
1969 sas_enable_tlr(sdev
);
1970 sdev_printk(KERN_INFO
, sdev
, "TLR %s\n",
1971 sas_is_tlr_enabled(sdev
) ? "Enabled" : "Disabled");
1977 * _scsih_slave_configure - device configure routine.
1978 * @sdev: scsi device struct
1980 * Returns 0 if ok. Any other return is assumed to be an error and
1981 * the device is ignored.
1984 _scsih_slave_configure(struct scsi_device
*sdev
)
1986 struct Scsi_Host
*shost
= sdev
->host
;
1987 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
1988 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
1989 struct MPT2SAS_TARGET
*sas_target_priv_data
;
1990 struct _sas_device
*sas_device
;
1991 struct _raid_device
*raid_device
;
1992 unsigned long flags
;
1997 u16 handle
, volume_handle
= 0;
1998 u64 volume_wwid
= 0;
2001 sas_device_priv_data
= sdev
->hostdata
;
2002 sas_device_priv_data
->configured_lun
= 1;
2003 sas_device_priv_data
->flags
&= ~MPT_DEVICE_FLAGS_INIT
;
2004 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
2005 handle
= sas_target_priv_data
->handle
;
2007 /* raid volume handling */
2008 if (sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
2010 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
2011 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
2012 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
2014 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
2015 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
,
2016 __LINE__
, __func__
));
2020 if (_scsih_get_volume_capabilities(ioc
, raid_device
)) {
2021 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
2022 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
,
2023 __LINE__
, __func__
));
2027 * WARPDRIVE: Initialize the required data for Direct IO
2029 _scsih_init_warpdrive_properties(ioc
, raid_device
);
2031 /* RAID Queue Depth Support
2032 * IS volume = underlying qdepth of drive type, either
2033 * MPT2SAS_SAS_QUEUE_DEPTH or MPT2SAS_SATA_QUEUE_DEPTH
2034 * IM/IME/R10 = 128 (MPT2SAS_RAID_QUEUE_DEPTH)
2036 if (raid_device
->device_info
&
2037 MPI2_SAS_DEVICE_INFO_SSP_TARGET
) {
2038 qdepth
= MPT2SAS_SAS_QUEUE_DEPTH
;
2041 qdepth
= MPT2SAS_SATA_QUEUE_DEPTH
;
2042 if (raid_device
->device_info
&
2043 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
2049 switch (raid_device
->volume_type
) {
2050 case MPI2_RAID_VOL_TYPE_RAID0
:
2053 case MPI2_RAID_VOL_TYPE_RAID1E
:
2054 qdepth
= MPT2SAS_RAID_QUEUE_DEPTH
;
2055 if (ioc
->manu_pg10
.OEMIdentifier
&&
2056 (le32_to_cpu(ioc
->manu_pg10
.GenericFlags0
) &
2057 MFG10_GF0_R10_DISPLAY
) &&
2058 !(raid_device
->num_pds
% 2))
2063 case MPI2_RAID_VOL_TYPE_RAID1
:
2064 qdepth
= MPT2SAS_RAID_QUEUE_DEPTH
;
2067 case MPI2_RAID_VOL_TYPE_RAID10
:
2068 qdepth
= MPT2SAS_RAID_QUEUE_DEPTH
;
2071 case MPI2_RAID_VOL_TYPE_UNKNOWN
:
2073 qdepth
= MPT2SAS_RAID_QUEUE_DEPTH
;
2078 if (!ioc
->hide_ir_msg
)
2079 sdev_printk(KERN_INFO
, sdev
, "%s: handle(0x%04x), "
2080 "wwid(0x%016llx), pd_count(%d), type(%s)\n",
2081 r_level
, raid_device
->handle
,
2082 (unsigned long long)raid_device
->wwid
,
2083 raid_device
->num_pds
, ds
);
2084 _scsih_change_queue_depth(sdev
, qdepth
, SCSI_QDEPTH_DEFAULT
);
2085 /* raid transport support */
2086 if (!ioc
->is_warpdrive
)
2087 _scsih_set_level(sdev
, raid_device
->volume_type
);
2091 /* non-raid handling */
2092 if (sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2093 if (mpt2sas_config_get_volume_handle(ioc
, handle
,
2095 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
2096 "failure at %s:%d/%s()!\n", ioc
->name
,
2097 __FILE__
, __LINE__
, __func__
));
2100 if (volume_handle
&& mpt2sas_config_get_volume_wwid(ioc
,
2101 volume_handle
, &volume_wwid
)) {
2102 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
2103 "failure at %s:%d/%s()!\n", ioc
->name
,
2104 __FILE__
, __LINE__
, __func__
));
2109 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2110 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
2111 sas_device_priv_data
->sas_target
->sas_address
);
2113 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2114 dfailprintk(ioc
, printk(MPT2SAS_WARN_FMT
2115 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
,
2116 __LINE__
, __func__
));
2119 sas_device
->volume_handle
= volume_handle
;
2120 sas_device
->volume_wwid
= volume_wwid
;
2121 if (sas_device
->device_info
& MPI2_SAS_DEVICE_INFO_SSP_TARGET
) {
2122 qdepth
= MPT2SAS_SAS_QUEUE_DEPTH
;
2126 qdepth
= MPT2SAS_SATA_QUEUE_DEPTH
;
2127 if (sas_device
->device_info
& MPI2_SAS_DEVICE_INFO_STP_TARGET
)
2129 else if (sas_device
->device_info
&
2130 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
2133 sdev_printk(KERN_INFO
, sdev
, "%s: handle(0x%04x), "
2134 "sas_addr(0x%016llx), phy(%d), device_name(0x%016llx)\n",
2135 ds
, sas_device
->handle
,
2136 (unsigned long long)sas_device
->sas_address
,
2138 (unsigned long long)sas_device
->device_name
);
2139 sdev_printk(KERN_INFO
, sdev
, "%s: "
2140 "enclosure_logical_id(0x%016llx), slot(%d)\n", ds
,
2141 (unsigned long long) sas_device
->enclosure_logical_id
,
2144 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2146 _scsih_display_sata_capabilities(ioc
, handle
, sdev
);
2149 _scsih_change_queue_depth(sdev
, qdepth
, SCSI_QDEPTH_DEFAULT
);
2152 sas_read_port_mode_page(sdev
);
2153 _scsih_enable_tlr(ioc
, sdev
);
2159 * _scsih_bios_param - fetch head, sector, cylinder info for a disk
2160 * @sdev: scsi device struct
2161 * @bdev: pointer to block device context
2162 * @capacity: device size (in 512 byte sectors)
2163 * @params: three element array to place output:
2164 * params[0] number of heads (max 255)
2165 * params[1] number of sectors (max 63)
2166 * params[2] number of cylinders
2171 _scsih_bios_param(struct scsi_device
*sdev
, struct block_device
*bdev
,
2172 sector_t capacity
, int params
[])
2182 dummy
= heads
* sectors
;
2183 cylinders
= capacity
;
2184 sector_div(cylinders
, dummy
);
2187 * Handle extended translation size for logical drives
2190 if ((ulong
)capacity
>= 0x200000) {
2193 dummy
= heads
* sectors
;
2194 cylinders
= capacity
;
2195 sector_div(cylinders
, dummy
);
2200 params
[1] = sectors
;
2201 params
[2] = cylinders
;
2207 * _scsih_response_code - translation of device response code
2208 * @ioc: per adapter object
2209 * @response_code: response code returned by the device
2214 _scsih_response_code(struct MPT2SAS_ADAPTER
*ioc
, u8 response_code
)
2218 switch (response_code
) {
2219 case MPI2_SCSITASKMGMT_RSP_TM_COMPLETE
:
2220 desc
= "task management request completed";
2222 case MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
:
2223 desc
= "invalid frame";
2225 case MPI2_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED
:
2226 desc
= "task management request not supported";
2228 case MPI2_SCSITASKMGMT_RSP_TM_FAILED
:
2229 desc
= "task management request failed";
2231 case MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED
:
2232 desc
= "task management request succeeded";
2234 case MPI2_SCSITASKMGMT_RSP_TM_INVALID_LUN
:
2235 desc
= "invalid lun";
2238 desc
= "overlapped tag attempted";
2240 case MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC
:
2241 desc
= "task queued, however not sent to target";
2247 printk(MPT2SAS_WARN_FMT
"response_code(0x%01x): %s\n",
2248 ioc
->name
, response_code
, desc
);
2252 * _scsih_tm_done - tm completion routine
2253 * @ioc: per adapter object
2254 * @smid: system request message index
2255 * @msix_index: MSIX table index supplied by the OS
2256 * @reply: reply message frame(lower 32bit addr)
2259 * The callback handler when using scsih_issue_tm.
2261 * Return 1 meaning mf should be freed from _base_interrupt
2262 * 0 means the mf is freed from this function.
2265 _scsih_tm_done(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
2267 MPI2DefaultReply_t
*mpi_reply
;
2269 if (ioc
->tm_cmds
.status
== MPT2_CMD_NOT_USED
)
2271 if (ioc
->tm_cmds
.smid
!= smid
)
2273 mpt2sas_base_flush_reply_queues(ioc
);
2274 ioc
->tm_cmds
.status
|= MPT2_CMD_COMPLETE
;
2275 mpi_reply
= mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
2277 memcpy(ioc
->tm_cmds
.reply
, mpi_reply
, mpi_reply
->MsgLength
*4);
2278 ioc
->tm_cmds
.status
|= MPT2_CMD_REPLY_VALID
;
2280 ioc
->tm_cmds
.status
&= ~MPT2_CMD_PENDING
;
2281 complete(&ioc
->tm_cmds
.done
);
2286 * mpt2sas_scsih_set_tm_flag - set per target tm_busy
2287 * @ioc: per adapter object
2288 * @handle: device handle
2290 * During taskmangement request, we need to freeze the device queue.
2293 mpt2sas_scsih_set_tm_flag(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
2295 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2296 struct scsi_device
*sdev
;
2299 shost_for_each_device(sdev
, ioc
->shost
) {
2302 sas_device_priv_data
= sdev
->hostdata
;
2303 if (!sas_device_priv_data
)
2305 if (sas_device_priv_data
->sas_target
->handle
== handle
) {
2306 sas_device_priv_data
->sas_target
->tm_busy
= 1;
2308 ioc
->ignore_loginfos
= 1;
2314 * mpt2sas_scsih_clear_tm_flag - clear per target tm_busy
2315 * @ioc: per adapter object
2316 * @handle: device handle
2318 * During taskmangement request, we need to freeze the device queue.
2321 mpt2sas_scsih_clear_tm_flag(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
2323 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2324 struct scsi_device
*sdev
;
2327 shost_for_each_device(sdev
, ioc
->shost
) {
2330 sas_device_priv_data
= sdev
->hostdata
;
2331 if (!sas_device_priv_data
)
2333 if (sas_device_priv_data
->sas_target
->handle
== handle
) {
2334 sas_device_priv_data
->sas_target
->tm_busy
= 0;
2336 ioc
->ignore_loginfos
= 0;
2343 * mpt2sas_scsih_issue_tm - main routine for sending tm requests
2344 * @ioc: per adapter struct
2345 * @device_handle: device handle
2346 * @channel: the channel assigned by the OS
2347 * @id: the id assigned by the OS
2349 * @type: MPI2_SCSITASKMGMT_TASKTYPE__XXX (defined in mpi2_init.h)
2350 * @smid_task: smid assigned to the task
2351 * @timeout: timeout in seconds
2352 * @serial_number: the serial_number from scmd
2353 * @m_type: TM_MUTEX_ON or TM_MUTEX_OFF
2356 * A generic API for sending task management requests to firmware.
2358 * The callback index is set inside `ioc->tm_cb_idx`.
2360 * Return SUCCESS or FAILED.
2363 mpt2sas_scsih_issue_tm(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
, uint channel
,
2364 uint id
, uint lun
, u8 type
, u16 smid_task
, ulong timeout
,
2365 unsigned long serial_number
, enum mutex_type m_type
)
2367 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
2368 Mpi2SCSITaskManagementReply_t
*mpi_reply
;
2371 unsigned long timeleft
;
2372 struct scsiio_tracker
*scsi_lookup
= NULL
;
2375 if (m_type
== TM_MUTEX_ON
)
2376 mutex_lock(&ioc
->tm_cmds
.mutex
);
2377 if (ioc
->tm_cmds
.status
!= MPT2_CMD_NOT_USED
) {
2378 printk(MPT2SAS_INFO_FMT
"%s: tm_cmd busy!!!\n",
2379 __func__
, ioc
->name
);
2384 if (ioc
->shost_recovery
|| ioc
->remove_host
||
2385 ioc
->pci_error_recovery
) {
2386 printk(MPT2SAS_INFO_FMT
"%s: host reset in progress!\n",
2387 __func__
, ioc
->name
);
2392 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 0);
2393 if (ioc_state
& MPI2_DOORBELL_USED
) {
2394 dhsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"unexpected doorbell "
2395 "active!\n", ioc
->name
));
2396 rc
= mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2398 rc
= (!rc
) ? SUCCESS
: FAILED
;
2402 if ((ioc_state
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_FAULT
) {
2403 mpt2sas_base_fault_info(ioc
, ioc_state
&
2404 MPI2_DOORBELL_DATA_MASK
);
2405 rc
= mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2407 rc
= (!rc
) ? SUCCESS
: FAILED
;
2411 smid
= mpt2sas_base_get_smid_hpr(ioc
, ioc
->tm_cb_idx
);
2413 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
2414 ioc
->name
, __func__
);
2419 if (type
== MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
)
2420 scsi_lookup
= &ioc
->scsi_lookup
[smid_task
- 1];
2422 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"sending tm: handle(0x%04x),"
2423 " task_type(0x%02x), smid(%d)\n", ioc
->name
, handle
, type
,
2425 ioc
->tm_cmds
.status
= MPT2_CMD_PENDING
;
2426 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
2427 ioc
->tm_cmds
.smid
= smid
;
2428 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
2429 memset(ioc
->tm_cmds
.reply
, 0, sizeof(Mpi2SCSITaskManagementReply_t
));
2430 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
2431 mpi_request
->DevHandle
= cpu_to_le16(handle
);
2432 mpi_request
->TaskType
= type
;
2433 mpi_request
->TaskMID
= cpu_to_le16(smid_task
);
2434 int_to_scsilun(lun
, (struct scsi_lun
*)mpi_request
->LUN
);
2435 mpt2sas_scsih_set_tm_flag(ioc
, handle
);
2436 init_completion(&ioc
->tm_cmds
.done
);
2437 mpt2sas_base_put_smid_hi_priority(ioc
, smid
);
2438 timeleft
= wait_for_completion_timeout(&ioc
->tm_cmds
.done
, timeout
*HZ
);
2439 if (!(ioc
->tm_cmds
.status
& MPT2_CMD_COMPLETE
)) {
2440 printk(MPT2SAS_ERR_FMT
"%s: timeout\n",
2441 ioc
->name
, __func__
);
2442 _debug_dump_mf(mpi_request
,
2443 sizeof(Mpi2SCSITaskManagementRequest_t
)/4);
2444 if (!(ioc
->tm_cmds
.status
& MPT2_CMD_RESET
)) {
2445 rc
= mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2447 rc
= (!rc
) ? SUCCESS
: FAILED
;
2448 ioc
->tm_cmds
.status
= MPT2_CMD_NOT_USED
;
2449 mpt2sas_scsih_clear_tm_flag(ioc
, handle
);
2454 if (ioc
->tm_cmds
.status
& MPT2_CMD_REPLY_VALID
) {
2455 mpi_reply
= ioc
->tm_cmds
.reply
;
2456 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"complete tm: "
2457 "ioc_status(0x%04x), loginfo(0x%08x), term_count(0x%08x)\n",
2458 ioc
->name
, le16_to_cpu(mpi_reply
->IOCStatus
),
2459 le32_to_cpu(mpi_reply
->IOCLogInfo
),
2460 le32_to_cpu(mpi_reply
->TerminationCount
)));
2461 if (ioc
->logging_level
& MPT_DEBUG_TM
) {
2462 _scsih_response_code(ioc
, mpi_reply
->ResponseCode
);
2463 if (mpi_reply
->IOCStatus
)
2464 _debug_dump_mf(mpi_request
,
2465 sizeof(Mpi2SCSITaskManagementRequest_t
)/4);
2470 case MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
:
2472 if (scsi_lookup
->scmd
== NULL
)
2477 case MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
:
2478 if (_scsih_scsi_lookup_find_by_target(ioc
, id
, channel
))
2484 case MPI2_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET
:
2485 case MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET
:
2486 if (_scsih_scsi_lookup_find_by_lun(ioc
, id
, lun
, channel
))
2491 case MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK
:
2499 mpt2sas_scsih_clear_tm_flag(ioc
, handle
);
2500 ioc
->tm_cmds
.status
= MPT2_CMD_NOT_USED
;
2501 if (m_type
== TM_MUTEX_ON
)
2502 mutex_unlock(&ioc
->tm_cmds
.mutex
);
2507 if (m_type
== TM_MUTEX_ON
)
2508 mutex_unlock(&ioc
->tm_cmds
.mutex
);
2513 * _scsih_tm_display_info - displays info about the device
2514 * @ioc: per adapter struct
2515 * @scmd: pointer to scsi command object
2517 * Called by task management callback handlers.
2520 _scsih_tm_display_info(struct MPT2SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
)
2522 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
2523 struct MPT2SAS_TARGET
*priv_target
= starget
->hostdata
;
2524 struct _sas_device
*sas_device
= NULL
;
2525 unsigned long flags
;
2526 char *device_str
= NULL
;
2530 if (ioc
->hide_ir_msg
)
2531 device_str
= "WarpDrive";
2533 device_str
= "volume";
2535 scsi_print_command(scmd
);
2536 if (priv_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
2537 starget_printk(KERN_INFO
, starget
, "%s handle(0x%04x), "
2538 "%s wwid(0x%016llx)\n", device_str
, priv_target
->handle
,
2539 device_str
, (unsigned long long)priv_target
->sas_address
);
2541 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2542 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
2543 priv_target
->sas_address
);
2545 if (priv_target
->flags
&
2546 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2547 starget_printk(KERN_INFO
, starget
,
2548 "volume handle(0x%04x), "
2549 "volume wwid(0x%016llx)\n",
2550 sas_device
->volume_handle
,
2551 (unsigned long long)sas_device
->volume_wwid
);
2553 starget_printk(KERN_INFO
, starget
,
2554 "handle(0x%04x), sas_address(0x%016llx), phy(%d)\n",
2556 (unsigned long long)sas_device
->sas_address
,
2558 starget_printk(KERN_INFO
, starget
,
2559 "enclosure_logical_id(0x%016llx), slot(%d)\n",
2560 (unsigned long long)sas_device
->enclosure_logical_id
,
2563 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2568 * _scsih_abort - eh threads main abort routine
2569 * @scmd: pointer to scsi command object
2571 * Returns SUCCESS if command aborted else FAILED
2574 _scsih_abort(struct scsi_cmnd
*scmd
)
2576 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2577 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2582 sdev_printk(KERN_INFO
, scmd
->device
, "attempting task abort! "
2583 "scmd(%p)\n", scmd
);
2584 _scsih_tm_display_info(ioc
, scmd
);
2586 sas_device_priv_data
= scmd
->device
->hostdata
;
2587 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2588 sdev_printk(KERN_INFO
, scmd
->device
, "device been deleted! "
2589 "scmd(%p)\n", scmd
);
2590 scmd
->result
= DID_NO_CONNECT
<< 16;
2591 scmd
->scsi_done(scmd
);
2596 /* search for the command */
2597 smid
= _scsih_scsi_lookup_find_by_scmd(ioc
, scmd
);
2599 scmd
->result
= DID_RESET
<< 16;
2604 /* for hidden raid components and volumes this is not supported */
2605 if (sas_device_priv_data
->sas_target
->flags
&
2606 MPT_TARGET_FLAGS_RAID_COMPONENT
||
2607 sas_device_priv_data
->sas_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
2608 scmd
->result
= DID_RESET
<< 16;
2613 mpt2sas_halt_firmware(ioc
);
2615 handle
= sas_device_priv_data
->sas_target
->handle
;
2616 r
= mpt2sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2617 scmd
->device
->id
, scmd
->device
->lun
,
2618 MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
, smid
, 30,
2619 scmd
->serial_number
, TM_MUTEX_ON
);
2622 sdev_printk(KERN_INFO
, scmd
->device
, "task abort: %s scmd(%p)\n",
2623 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2628 * _scsih_dev_reset - eh threads main device reset routine
2629 * @scmd: pointer to scsi command object
2631 * Returns SUCCESS if command aborted else FAILED
2634 _scsih_dev_reset(struct scsi_cmnd
*scmd
)
2636 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2637 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2638 struct _sas_device
*sas_device
;
2639 unsigned long flags
;
2643 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
2645 starget_printk(KERN_INFO
, starget
, "attempting device reset! "
2646 "scmd(%p)\n", scmd
);
2647 _scsih_tm_display_info(ioc
, scmd
);
2649 sas_device_priv_data
= scmd
->device
->hostdata
;
2650 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2651 starget_printk(KERN_INFO
, starget
, "device been deleted! "
2652 "scmd(%p)\n", scmd
);
2653 scmd
->result
= DID_NO_CONNECT
<< 16;
2654 scmd
->scsi_done(scmd
);
2659 /* for hidden raid components obtain the volume_handle */
2661 if (sas_device_priv_data
->sas_target
->flags
&
2662 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2663 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2664 sas_device
= _scsih_sas_device_find_by_handle(ioc
,
2665 sas_device_priv_data
->sas_target
->handle
);
2667 handle
= sas_device
->volume_handle
;
2668 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2670 handle
= sas_device_priv_data
->sas_target
->handle
;
2673 scmd
->result
= DID_RESET
<< 16;
2678 r
= mpt2sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2679 scmd
->device
->id
, scmd
->device
->lun
,
2680 MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET
, 0, 30, 0,
2684 sdev_printk(KERN_INFO
, scmd
->device
, "device reset: %s scmd(%p)\n",
2685 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2690 * _scsih_target_reset - eh threads main target reset routine
2691 * @scmd: pointer to scsi command object
2693 * Returns SUCCESS if command aborted else FAILED
2696 _scsih_target_reset(struct scsi_cmnd
*scmd
)
2698 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2699 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2700 struct _sas_device
*sas_device
;
2701 unsigned long flags
;
2704 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
2706 starget_printk(KERN_INFO
, starget
, "attempting target reset! "
2707 "scmd(%p)\n", scmd
);
2708 _scsih_tm_display_info(ioc
, scmd
);
2710 sas_device_priv_data
= scmd
->device
->hostdata
;
2711 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2712 starget_printk(KERN_INFO
, starget
, "target been deleted! "
2713 "scmd(%p)\n", scmd
);
2714 scmd
->result
= DID_NO_CONNECT
<< 16;
2715 scmd
->scsi_done(scmd
);
2720 /* for hidden raid components obtain the volume_handle */
2722 if (sas_device_priv_data
->sas_target
->flags
&
2723 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2724 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2725 sas_device
= _scsih_sas_device_find_by_handle(ioc
,
2726 sas_device_priv_data
->sas_target
->handle
);
2728 handle
= sas_device
->volume_handle
;
2729 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2731 handle
= sas_device_priv_data
->sas_target
->handle
;
2734 scmd
->result
= DID_RESET
<< 16;
2739 r
= mpt2sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2740 scmd
->device
->id
, 0, MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
, 0,
2741 30, 0, TM_MUTEX_ON
);
2744 starget_printk(KERN_INFO
, starget
, "target reset: %s scmd(%p)\n",
2745 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2750 * _scsih_host_reset - eh threads main host reset routine
2751 * @scmd: pointer to scsi command object
2753 * Returns SUCCESS if command aborted else FAILED
2756 _scsih_host_reset(struct scsi_cmnd
*scmd
)
2758 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2761 printk(MPT2SAS_INFO_FMT
"attempting host reset! scmd(%p)\n",
2763 scsi_print_command(scmd
);
2765 retval
= mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2767 r
= (retval
< 0) ? FAILED
: SUCCESS
;
2768 printk(MPT2SAS_INFO_FMT
"host reset: %s scmd(%p)\n",
2769 ioc
->name
, ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2775 * _scsih_fw_event_add - insert and queue up fw_event
2776 * @ioc: per adapter object
2777 * @fw_event: object describing the event
2778 * Context: This function will acquire ioc->fw_event_lock.
2780 * This adds the firmware event object into link list, then queues it up to
2781 * be processed from user context.
2786 _scsih_fw_event_add(struct MPT2SAS_ADAPTER
*ioc
, struct fw_event_work
*fw_event
)
2788 unsigned long flags
;
2790 if (ioc
->firmware_event_thread
== NULL
)
2793 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
2794 list_add_tail(&fw_event
->list
, &ioc
->fw_event_list
);
2795 INIT_DELAYED_WORK(&fw_event
->delayed_work
, _firmware_event_work
);
2796 queue_delayed_work(ioc
->firmware_event_thread
,
2797 &fw_event
->delayed_work
, 0);
2798 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
2802 * _scsih_fw_event_free - delete fw_event
2803 * @ioc: per adapter object
2804 * @fw_event: object describing the event
2805 * Context: This function will acquire ioc->fw_event_lock.
2807 * This removes firmware event object from link list, frees associated memory.
2812 _scsih_fw_event_free(struct MPT2SAS_ADAPTER
*ioc
, struct fw_event_work
2815 unsigned long flags
;
2817 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
2818 list_del(&fw_event
->list
);
2819 kfree(fw_event
->event_data
);
2821 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
2826 * _scsih_error_recovery_delete_devices - remove devices not responding
2827 * @ioc: per adapter object
2832 _scsih_error_recovery_delete_devices(struct MPT2SAS_ADAPTER
*ioc
)
2834 struct fw_event_work
*fw_event
;
2836 if (ioc
->is_driver_loading
)
2839 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
2843 fw_event
->event
= MPT2SAS_REMOVE_UNRESPONDING_DEVICES
;
2844 fw_event
->ioc
= ioc
;
2845 _scsih_fw_event_add(ioc
, fw_event
);
2849 * mpt2sas_port_enable_complete - port enable completed (fake event)
2850 * @ioc: per adapter object
2855 mpt2sas_port_enable_complete(struct MPT2SAS_ADAPTER
*ioc
)
2857 struct fw_event_work
*fw_event
;
2859 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
2862 fw_event
->event
= MPT2SAS_PORT_ENABLE_COMPLETE
;
2863 fw_event
->ioc
= ioc
;
2864 _scsih_fw_event_add(ioc
, fw_event
);
2868 * _scsih_fw_event_cleanup_queue - cleanup event queue
2869 * @ioc: per adapter object
2871 * Walk the firmware event queue, either killing timers, or waiting
2872 * for outstanding events to complete
2877 _scsih_fw_event_cleanup_queue(struct MPT2SAS_ADAPTER
*ioc
)
2879 struct fw_event_work
*fw_event
, *next
;
2881 if (list_empty(&ioc
->fw_event_list
) ||
2882 !ioc
->firmware_event_thread
|| in_interrupt())
2885 list_for_each_entry_safe(fw_event
, next
, &ioc
->fw_event_list
, list
) {
2886 if (cancel_delayed_work(&fw_event
->delayed_work
)) {
2887 _scsih_fw_event_free(ioc
, fw_event
);
2890 fw_event
->cancel_pending_work
= 1;
2895 * _scsih_ublock_io_all_device - unblock every device
2896 * @ioc: per adapter object
2898 * change the device state from block to running
2901 _scsih_ublock_io_all_device(struct MPT2SAS_ADAPTER
*ioc
)
2903 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2904 struct scsi_device
*sdev
;
2906 shost_for_each_device(sdev
, ioc
->shost
) {
2907 sas_device_priv_data
= sdev
->hostdata
;
2908 if (!sas_device_priv_data
)
2910 if (!sas_device_priv_data
->block
)
2912 sas_device_priv_data
->block
= 0;
2913 dewtprintk(ioc
, sdev_printk(KERN_INFO
, sdev
, "device_running, "
2915 sas_device_priv_data
->sas_target
->handle
));
2916 scsi_internal_device_unblock(sdev
, SDEV_RUNNING
);
2920 * _scsih_ublock_io_device - set the device state to SDEV_RUNNING
2921 * @ioc: per adapter object
2922 * @handle: device handle
2924 * During device pull we need to appropiately set the sdev state.
2927 _scsih_ublock_io_device(struct MPT2SAS_ADAPTER
*ioc
, u64 sas_address
)
2929 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2930 struct scsi_device
*sdev
;
2932 shost_for_each_device(sdev
, ioc
->shost
) {
2933 sas_device_priv_data
= sdev
->hostdata
;
2934 if (!sas_device_priv_data
)
2936 if (!sas_device_priv_data
->block
)
2938 if (sas_device_priv_data
->sas_target
->sas_address
==
2940 dewtprintk(ioc
, sdev_printk(KERN_INFO
, sdev
,
2941 MPT2SAS_INFO_FMT
"SDEV_RUNNING: "
2942 "sas address(0x%016llx)\n", ioc
->name
,
2943 (unsigned long long)sas_address
));
2944 sas_device_priv_data
->block
= 0;
2945 scsi_internal_device_unblock(sdev
, SDEV_RUNNING
);
2951 * _scsih_block_io_all_device - set the device state to SDEV_BLOCK
2952 * @ioc: per adapter object
2953 * @handle: device handle
2955 * During device pull we need to appropiately set the sdev state.
2958 _scsih_block_io_all_device(struct MPT2SAS_ADAPTER
*ioc
)
2960 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2961 struct scsi_device
*sdev
;
2963 shost_for_each_device(sdev
, ioc
->shost
) {
2964 sas_device_priv_data
= sdev
->hostdata
;
2965 if (!sas_device_priv_data
)
2967 if (sas_device_priv_data
->block
)
2969 sas_device_priv_data
->block
= 1;
2970 dewtprintk(ioc
, sdev_printk(KERN_INFO
, sdev
, "device_blocked, "
2972 sas_device_priv_data
->sas_target
->handle
));
2973 scsi_internal_device_block(sdev
);
2979 * _scsih_block_io_device - set the device state to SDEV_BLOCK
2980 * @ioc: per adapter object
2981 * @handle: device handle
2983 * During device pull we need to appropiately set the sdev state.
2986 _scsih_block_io_device(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
2988 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
2989 struct scsi_device
*sdev
;
2991 shost_for_each_device(sdev
, ioc
->shost
) {
2992 sas_device_priv_data
= sdev
->hostdata
;
2993 if (!sas_device_priv_data
)
2995 if (sas_device_priv_data
->block
)
2997 if (sas_device_priv_data
->sas_target
->handle
== handle
) {
2998 dewtprintk(ioc
, sdev_printk(KERN_INFO
, sdev
,
2999 MPT2SAS_INFO_FMT
"SDEV_BLOCK: "
3000 "handle(0x%04x)\n", ioc
->name
, handle
));
3001 sas_device_priv_data
->block
= 1;
3002 scsi_internal_device_block(sdev
);
3008 * _scsih_block_io_to_children_attached_to_ex
3009 * @ioc: per adapter object
3010 * @sas_expander: the sas_device object
3012 * This routine set sdev state to SDEV_BLOCK for all devices
3013 * attached to this expander. This function called when expander is
3017 _scsih_block_io_to_children_attached_to_ex(struct MPT2SAS_ADAPTER
*ioc
,
3018 struct _sas_node
*sas_expander
)
3020 struct _sas_port
*mpt2sas_port
;
3021 struct _sas_device
*sas_device
;
3022 struct _sas_node
*expander_sibling
;
3023 unsigned long flags
;
3028 list_for_each_entry(mpt2sas_port
,
3029 &sas_expander
->sas_port_list
, port_list
) {
3030 if (mpt2sas_port
->remote_identify
.device_type
==
3032 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
3034 mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
3035 mpt2sas_port
->remote_identify
.sas_address
);
3037 set_bit(sas_device
->handle
,
3038 ioc
->blocking_handles
);
3039 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3043 list_for_each_entry(mpt2sas_port
,
3044 &sas_expander
->sas_port_list
, port_list
) {
3046 if (mpt2sas_port
->remote_identify
.device_type
==
3047 SAS_EDGE_EXPANDER_DEVICE
||
3048 mpt2sas_port
->remote_identify
.device_type
==
3049 SAS_FANOUT_EXPANDER_DEVICE
) {
3051 mpt2sas_scsih_expander_find_by_sas_address(
3052 ioc
, mpt2sas_port
->remote_identify
.sas_address
);
3053 _scsih_block_io_to_children_attached_to_ex(ioc
,
3060 * _scsih_block_io_to_children_attached_directly
3061 * @ioc: per adapter object
3062 * @event_data: topology change event data
3064 * This routine set sdev state to SDEV_BLOCK for all devices
3065 * direct attached during device pull.
3068 _scsih_block_io_to_children_attached_directly(struct MPT2SAS_ADAPTER
*ioc
,
3069 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
3076 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
3077 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
3080 phy_number
= event_data
->StartPhyNum
+ i
;
3081 reason_code
= event_data
->PHY
[i
].PhyStatus
&
3082 MPI2_EVENT_SAS_TOPO_RC_MASK
;
3083 if (reason_code
== MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING
)
3084 _scsih_block_io_device(ioc
, handle
);
3089 * _scsih_tm_tr_send - send task management request
3090 * @ioc: per adapter object
3091 * @handle: device handle
3092 * Context: interrupt time.
3094 * This code is to initiate the device removal handshake protocol
3095 * with controller firmware. This function will issue target reset
3096 * using high priority request queue. It will send a sas iounit
3097 * control request (MPI2_SAS_OP_REMOVE_DEVICE) from this completion.
3099 * This is designed to send muliple task management request at the same
3100 * time to the fifo. If the fifo is full, we will append the request,
3101 * and process it in a future completion.
3104 _scsih_tm_tr_send(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
3106 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
3108 struct _sas_device
*sas_device
;
3109 struct MPT2SAS_TARGET
*sas_target_priv_data
= NULL
;
3110 u64 sas_address
= 0;
3111 unsigned long flags
;
3112 struct _tr_list
*delayed_tr
;
3115 if (ioc
->remove_host
) {
3116 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: host has been "
3117 "removed: handle(0x%04x)\n", __func__
, ioc
->name
, handle
));
3119 } else if (ioc
->pci_error_recovery
) {
3120 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: host in pci "
3121 "error recovery: handle(0x%04x)\n", __func__
, ioc
->name
,
3125 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 1);
3126 if (ioc_state
!= MPI2_IOC_STATE_OPERATIONAL
) {
3127 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: host is not "
3128 "operational: handle(0x%04x)\n", __func__
, ioc
->name
,
3133 /* if PD, then return */
3134 if (test_bit(handle
, ioc
->pd_handles
))
3137 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
3138 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
3139 if (sas_device
&& sas_device
->starget
&&
3140 sas_device
->starget
->hostdata
) {
3141 sas_target_priv_data
= sas_device
->starget
->hostdata
;
3142 sas_target_priv_data
->deleted
= 1;
3143 sas_address
= sas_device
->sas_address
;
3145 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3147 if (sas_target_priv_data
) {
3148 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"setting delete flag: "
3149 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc
->name
, handle
,
3150 (unsigned long long)sas_address
));
3151 _scsih_ublock_io_device(ioc
, sas_address
);
3152 sas_target_priv_data
->handle
= MPT2SAS_INVALID_DEVICE_HANDLE
;
3155 smid
= mpt2sas_base_get_smid_hpr(ioc
, ioc
->tm_tr_cb_idx
);
3157 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
3160 INIT_LIST_HEAD(&delayed_tr
->list
);
3161 delayed_tr
->handle
= handle
;
3162 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_list
);
3163 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
3164 "DELAYED:tr:handle(0x%04x), (open)\n",
3165 ioc
->name
, handle
));
3169 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"tr_send:handle(0x%04x), "
3170 "(open), smid(%d), cb(%d)\n", ioc
->name
, handle
, smid
,
3171 ioc
->tm_tr_cb_idx
));
3172 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
3173 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
3174 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
3175 mpi_request
->DevHandle
= cpu_to_le16(handle
);
3176 mpi_request
->TaskType
= MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
;
3177 mpt2sas_base_put_smid_hi_priority(ioc
, smid
);
3183 * _scsih_sas_control_complete - completion routine
3184 * @ioc: per adapter object
3185 * @smid: system request message index
3186 * @msix_index: MSIX table index supplied by the OS
3187 * @reply: reply message frame(lower 32bit addr)
3188 * Context: interrupt time.
3190 * This is the sas iounit control completion routine.
3191 * This code is part of the code to initiate the device removal
3192 * handshake protocol with controller firmware.
3194 * Return 1 meaning mf should be freed from _base_interrupt
3195 * 0 means the mf is freed from this function.
3198 _scsih_sas_control_complete(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
,
3199 u8 msix_index
, u32 reply
)
3201 Mpi2SasIoUnitControlReply_t
*mpi_reply
=
3202 mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
3203 if (likely(mpi_reply
)) {
3204 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
3205 "sc_complete:handle(0x%04x), (open) "
3206 "smid(%d), ioc_status(0x%04x), loginfo(0x%08x)\n",
3207 ioc
->name
, le16_to_cpu(mpi_reply
->DevHandle
), smid
,
3208 le16_to_cpu(mpi_reply
->IOCStatus
),
3209 le32_to_cpu(mpi_reply
->IOCLogInfo
)));
3211 printk(MPT2SAS_ERR_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
3212 ioc
->name
, __FILE__
, __LINE__
, __func__
);
3218 * _scsih_tm_tr_volume_send - send target reset request for volumes
3219 * @ioc: per adapter object
3220 * @handle: device handle
3221 * Context: interrupt time.
3223 * This is designed to send muliple task management request at the same
3224 * time to the fifo. If the fifo is full, we will append the request,
3225 * and process it in a future completion.
3228 _scsih_tm_tr_volume_send(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
3230 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
3232 struct _tr_list
*delayed_tr
;
3234 if (ioc
->shost_recovery
|| ioc
->remove_host
||
3235 ioc
->pci_error_recovery
) {
3236 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: host reset in "
3237 "progress!\n", __func__
, ioc
->name
));
3241 smid
= mpt2sas_base_get_smid_hpr(ioc
, ioc
->tm_tr_volume_cb_idx
);
3243 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
3246 INIT_LIST_HEAD(&delayed_tr
->list
);
3247 delayed_tr
->handle
= handle
;
3248 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_volume_list
);
3249 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
3250 "DELAYED:tr:handle(0x%04x), (open)\n",
3251 ioc
->name
, handle
));
3255 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"tr_send:handle(0x%04x), "
3256 "(open), smid(%d), cb(%d)\n", ioc
->name
, handle
, smid
,
3257 ioc
->tm_tr_volume_cb_idx
));
3258 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
3259 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
3260 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
3261 mpi_request
->DevHandle
= cpu_to_le16(handle
);
3262 mpi_request
->TaskType
= MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
;
3263 mpt2sas_base_put_smid_hi_priority(ioc
, smid
);
3267 * _scsih_tm_volume_tr_complete - target reset completion
3268 * @ioc: per adapter object
3269 * @smid: system request message index
3270 * @msix_index: MSIX table index supplied by the OS
3271 * @reply: reply message frame(lower 32bit addr)
3272 * Context: interrupt time.
3274 * Return 1 meaning mf should be freed from _base_interrupt
3275 * 0 means the mf is freed from this function.
3278 _scsih_tm_volume_tr_complete(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
,
3279 u8 msix_index
, u32 reply
)
3282 Mpi2SCSITaskManagementRequest_t
*mpi_request_tm
;
3283 Mpi2SCSITaskManagementReply_t
*mpi_reply
=
3284 mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
3286 if (ioc
->shost_recovery
|| ioc
->remove_host
||
3287 ioc
->pci_error_recovery
) {
3288 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: host reset in "
3289 "progress!\n", __func__
, ioc
->name
));
3292 if (unlikely(!mpi_reply
)) {
3293 printk(MPT2SAS_ERR_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
3294 ioc
->name
, __FILE__
, __LINE__
, __func__
);
3297 mpi_request_tm
= mpt2sas_base_get_msg_frame(ioc
, smid
);
3298 handle
= le16_to_cpu(mpi_request_tm
->DevHandle
);
3299 if (handle
!= le16_to_cpu(mpi_reply
->DevHandle
)) {
3300 dewtprintk(ioc
, printk("spurious interrupt: "
3301 "handle(0x%04x:0x%04x), smid(%d)!!!\n", handle
,
3302 le16_to_cpu(mpi_reply
->DevHandle
), smid
));
3306 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
3307 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
3308 "loginfo(0x%08x), completed(%d)\n", ioc
->name
,
3309 handle
, smid
, le16_to_cpu(mpi_reply
->IOCStatus
),
3310 le32_to_cpu(mpi_reply
->IOCLogInfo
),
3311 le32_to_cpu(mpi_reply
->TerminationCount
)));
3313 return _scsih_check_for_pending_tm(ioc
, smid
);
3317 * _scsih_tm_tr_complete -
3318 * @ioc: per adapter object
3319 * @smid: system request message index
3320 * @msix_index: MSIX table index supplied by the OS
3321 * @reply: reply message frame(lower 32bit addr)
3322 * Context: interrupt time.
3324 * This is the target reset completion routine.
3325 * This code is part of the code to initiate the device removal
3326 * handshake protocol with controller firmware.
3327 * It will send a sas iounit control request (MPI2_SAS_OP_REMOVE_DEVICE)
3329 * Return 1 meaning mf should be freed from _base_interrupt
3330 * 0 means the mf is freed from this function.
3333 _scsih_tm_tr_complete(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
,
3337 Mpi2SCSITaskManagementRequest_t
*mpi_request_tm
;
3338 Mpi2SCSITaskManagementReply_t
*mpi_reply
=
3339 mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
3340 Mpi2SasIoUnitControlRequest_t
*mpi_request
;
3344 if (ioc
->remove_host
) {
3345 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: host has been "
3346 "removed\n", __func__
, ioc
->name
));
3348 } else if (ioc
->pci_error_recovery
) {
3349 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: host in pci "
3350 "error recovery\n", __func__
, ioc
->name
));
3353 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 1);
3354 if (ioc_state
!= MPI2_IOC_STATE_OPERATIONAL
) {
3355 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: host is not "
3356 "operational\n", __func__
, ioc
->name
));
3359 if (unlikely(!mpi_reply
)) {
3360 printk(MPT2SAS_ERR_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
3361 ioc
->name
, __FILE__
, __LINE__
, __func__
);
3364 mpi_request_tm
= mpt2sas_base_get_msg_frame(ioc
, smid
);
3365 handle
= le16_to_cpu(mpi_request_tm
->DevHandle
);
3366 if (handle
!= le16_to_cpu(mpi_reply
->DevHandle
)) {
3367 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"spurious interrupt: "
3368 "handle(0x%04x:0x%04x), smid(%d)!!!\n", ioc
->name
, handle
,
3369 le16_to_cpu(mpi_reply
->DevHandle
), smid
));
3373 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
3374 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
3375 "loginfo(0x%08x), completed(%d)\n", ioc
->name
,
3376 handle
, smid
, le16_to_cpu(mpi_reply
->IOCStatus
),
3377 le32_to_cpu(mpi_reply
->IOCLogInfo
),
3378 le32_to_cpu(mpi_reply
->TerminationCount
)));
3380 smid_sas_ctrl
= mpt2sas_base_get_smid(ioc
, ioc
->tm_sas_control_cb_idx
);
3381 if (!smid_sas_ctrl
) {
3382 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
3383 ioc
->name
, __func__
);
3387 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"sc_send:handle(0x%04x), "
3388 "(open), smid(%d), cb(%d)\n", ioc
->name
, handle
, smid_sas_ctrl
,
3389 ioc
->tm_sas_control_cb_idx
));
3390 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid_sas_ctrl
);
3391 memset(mpi_request
, 0, sizeof(Mpi2SasIoUnitControlRequest_t
));
3392 mpi_request
->Function
= MPI2_FUNCTION_SAS_IO_UNIT_CONTROL
;
3393 mpi_request
->Operation
= MPI2_SAS_OP_REMOVE_DEVICE
;
3394 mpi_request
->DevHandle
= mpi_request_tm
->DevHandle
;
3395 mpt2sas_base_put_smid_default(ioc
, smid_sas_ctrl
);
3397 return _scsih_check_for_pending_tm(ioc
, smid
);
3401 * _scsih_check_for_pending_tm - check for pending task management
3402 * @ioc: per adapter object
3403 * @smid: system request message index
3405 * This will check delayed target reset list, and feed the
3408 * Return 1 meaning mf should be freed from _base_interrupt
3409 * 0 means the mf is freed from this function.
3412 _scsih_check_for_pending_tm(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
3414 struct _tr_list
*delayed_tr
;
3416 if (!list_empty(&ioc
->delayed_tr_volume_list
)) {
3417 delayed_tr
= list_entry(ioc
->delayed_tr_volume_list
.next
,
3418 struct _tr_list
, list
);
3419 mpt2sas_base_free_smid(ioc
, smid
);
3420 _scsih_tm_tr_volume_send(ioc
, delayed_tr
->handle
);
3421 list_del(&delayed_tr
->list
);
3426 if (!list_empty(&ioc
->delayed_tr_list
)) {
3427 delayed_tr
= list_entry(ioc
->delayed_tr_list
.next
,
3428 struct _tr_list
, list
);
3429 mpt2sas_base_free_smid(ioc
, smid
);
3430 _scsih_tm_tr_send(ioc
, delayed_tr
->handle
);
3431 list_del(&delayed_tr
->list
);
3440 * _scsih_check_topo_delete_events - sanity check on topo events
3441 * @ioc: per adapter object
3442 * @event_data: the event data payload
3444 * This routine added to better handle cable breaker.
3446 * This handles the case where driver receives multiple expander
3447 * add and delete events in a single shot. When there is a delete event
3448 * the routine will void any pending add events waiting in the event queue.
3453 _scsih_check_topo_delete_events(struct MPT2SAS_ADAPTER
*ioc
,
3454 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
3456 struct fw_event_work
*fw_event
;
3457 Mpi2EventDataSasTopologyChangeList_t
*local_event_data
;
3458 u16 expander_handle
;
3459 struct _sas_node
*sas_expander
;
3460 unsigned long flags
;
3464 for (i
= 0 ; i
< event_data
->NumEntries
; i
++) {
3465 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
3468 reason_code
= event_data
->PHY
[i
].PhyStatus
&
3469 MPI2_EVENT_SAS_TOPO_RC_MASK
;
3470 if (reason_code
== MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
)
3471 _scsih_tm_tr_send(ioc
, handle
);
3474 expander_handle
= le16_to_cpu(event_data
->ExpanderDevHandle
);
3475 if (expander_handle
< ioc
->sas_hba
.num_phys
) {
3476 _scsih_block_io_to_children_attached_directly(ioc
, event_data
);
3479 if (event_data
->ExpStatus
==
3480 MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
) {
3481 /* put expander attached devices into blocking state */
3482 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
3483 sas_expander
= mpt2sas_scsih_expander_find_by_handle(ioc
,
3485 _scsih_block_io_to_children_attached_to_ex(ioc
, sas_expander
);
3486 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
3488 handle
= find_first_bit(ioc
->blocking_handles
,
3489 ioc
->facts
.MaxDevHandle
);
3490 if (handle
< ioc
->facts
.MaxDevHandle
)
3491 _scsih_block_io_device(ioc
, handle
);
3492 } while (test_and_clear_bit(handle
, ioc
->blocking_handles
));
3493 } else if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_RESPONDING
)
3494 _scsih_block_io_to_children_attached_directly(ioc
, event_data
);
3496 if (event_data
->ExpStatus
!= MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
)
3499 /* mark ignore flag for pending events */
3500 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
3501 list_for_each_entry(fw_event
, &ioc
->fw_event_list
, list
) {
3502 if (fw_event
->event
!= MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
||
3505 local_event_data
= fw_event
->event_data
;
3506 if (local_event_data
->ExpStatus
==
3507 MPI2_EVENT_SAS_TOPO_ES_ADDED
||
3508 local_event_data
->ExpStatus
==
3509 MPI2_EVENT_SAS_TOPO_ES_RESPONDING
) {
3510 if (le16_to_cpu(local_event_data
->ExpanderDevHandle
) ==
3512 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
3513 "setting ignoring flag\n", ioc
->name
));
3514 fw_event
->ignore
= 1;
3518 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
3522 * _scsih_set_volume_delete_flag - setting volume delete flag
3523 * @ioc: per adapter object
3524 * @handle: device handle
3530 _scsih_set_volume_delete_flag(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
3532 struct _raid_device
*raid_device
;
3533 struct MPT2SAS_TARGET
*sas_target_priv_data
;
3534 unsigned long flags
;
3536 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
3537 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
3538 if (raid_device
&& raid_device
->starget
&&
3539 raid_device
->starget
->hostdata
) {
3540 sas_target_priv_data
=
3541 raid_device
->starget
->hostdata
;
3542 sas_target_priv_data
->deleted
= 1;
3543 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
3544 "setting delete flag: handle(0x%04x), "
3545 "wwid(0x%016llx)\n", ioc
->name
, handle
,
3546 (unsigned long long) raid_device
->wwid
));
3548 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
3552 * _scsih_set_volume_handle_for_tr - set handle for target reset to volume
3553 * @handle: input handle
3554 * @a: handle for volume a
3555 * @b: handle for volume b
3557 * IR firmware only supports two raid volumes. The purpose of this
3558 * routine is to set the volume handle in either a or b. When the given
3559 * input handle is non-zero, or when a and b have not been set before.
3562 _scsih_set_volume_handle_for_tr(u16 handle
, u16
*a
, u16
*b
)
3564 if (!handle
|| handle
== *a
|| handle
== *b
)
3573 * _scsih_check_ir_config_unhide_events - check for UNHIDE events
3574 * @ioc: per adapter object
3575 * @event_data: the event data payload
3576 * Context: interrupt time.
3578 * This routine will send target reset to volume, followed by target
3579 * resets to the PDs. This is called when a PD has been removed, or
3580 * volume has been deleted or removed. When the target reset is sent
3581 * to volume, the PD target resets need to be queued to start upon
3582 * completion of the volume target reset.
3587 _scsih_check_ir_config_unhide_events(struct MPT2SAS_ADAPTER
*ioc
,
3588 Mpi2EventDataIrConfigChangeList_t
*event_data
)
3590 Mpi2EventIrConfigElement_t
*element
;
3592 u16 handle
, volume_handle
, a
, b
;
3593 struct _tr_list
*delayed_tr
;
3598 if (ioc
->is_warpdrive
)
3601 /* Volume Resets for Deleted or Removed */
3602 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3603 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3604 if (element
->ReasonCode
==
3605 MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
||
3606 element
->ReasonCode
==
3607 MPI2_EVENT_IR_CHANGE_RC_REMOVED
) {
3608 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3609 _scsih_set_volume_delete_flag(ioc
, volume_handle
);
3610 _scsih_set_volume_handle_for_tr(volume_handle
, &a
, &b
);
3614 /* Volume Resets for UNHIDE events */
3615 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3616 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3617 if (le32_to_cpu(event_data
->Flags
) &
3618 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
)
3620 if (element
->ReasonCode
== MPI2_EVENT_IR_CHANGE_RC_UNHIDE
) {
3621 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3622 _scsih_set_volume_handle_for_tr(volume_handle
, &a
, &b
);
3627 _scsih_tm_tr_volume_send(ioc
, a
);
3629 _scsih_tm_tr_volume_send(ioc
, b
);
3631 /* PD target resets */
3632 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3633 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3634 if (element
->ReasonCode
!= MPI2_EVENT_IR_CHANGE_RC_UNHIDE
)
3636 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
3637 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3638 clear_bit(handle
, ioc
->pd_handles
);
3640 _scsih_tm_tr_send(ioc
, handle
);
3641 else if (volume_handle
== a
|| volume_handle
== b
) {
3642 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
3643 BUG_ON(!delayed_tr
);
3644 INIT_LIST_HEAD(&delayed_tr
->list
);
3645 delayed_tr
->handle
= handle
;
3646 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_list
);
3647 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
3648 "DELAYED:tr:handle(0x%04x), (open)\n", ioc
->name
,
3651 _scsih_tm_tr_send(ioc
, handle
);
3657 * _scsih_check_volume_delete_events - set delete flag for volumes
3658 * @ioc: per adapter object
3659 * @event_data: the event data payload
3660 * Context: interrupt time.
3662 * This will handle the case when the cable connected to entire volume is
3663 * pulled. We will take care of setting the deleted flag so normal IO will
3669 _scsih_check_volume_delete_events(struct MPT2SAS_ADAPTER
*ioc
,
3670 Mpi2EventDataIrVolume_t
*event_data
)
3674 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED
)
3676 state
= le32_to_cpu(event_data
->NewValue
);
3677 if (state
== MPI2_RAID_VOL_STATE_MISSING
|| state
==
3678 MPI2_RAID_VOL_STATE_FAILED
)
3679 _scsih_set_volume_delete_flag(ioc
,
3680 le16_to_cpu(event_data
->VolDevHandle
));
3684 * _scsih_flush_running_cmds - completing outstanding commands.
3685 * @ioc: per adapter object
3687 * The flushing out of all pending scmd commands following host reset,
3688 * where all IO is dropped to the floor.
3693 _scsih_flush_running_cmds(struct MPT2SAS_ADAPTER
*ioc
)
3695 struct scsi_cmnd
*scmd
;
3699 for (smid
= 1; smid
<= ioc
->scsiio_depth
; smid
++) {
3700 scmd
= _scsih_scsi_lookup_get_clear(ioc
, smid
);
3704 mpt2sas_base_free_smid(ioc
, smid
);
3705 scsi_dma_unmap(scmd
);
3706 if (ioc
->pci_error_recovery
)
3707 scmd
->result
= DID_NO_CONNECT
<< 16;
3709 scmd
->result
= DID_RESET
<< 16;
3710 scmd
->scsi_done(scmd
);
3712 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"completing %d cmds\n",
3717 * _scsih_setup_eedp - setup MPI request for EEDP transfer
3718 * @scmd: pointer to scsi command object
3719 * @mpi_request: pointer to the SCSI_IO reqest message frame
3721 * Supporting protection 1 and 3.
3726 _scsih_setup_eedp(struct scsi_cmnd
*scmd
, Mpi2SCSIIORequest_t
*mpi_request
)
3729 unsigned char prot_op
= scsi_get_prot_op(scmd
);
3730 unsigned char prot_type
= scsi_get_prot_type(scmd
);
3732 if (prot_type
== SCSI_PROT_DIF_TYPE0
|| prot_op
== SCSI_PROT_NORMAL
)
3735 if (prot_op
== SCSI_PROT_READ_STRIP
)
3736 eedp_flags
= MPI2_SCSIIO_EEDPFLAGS_CHECK_REMOVE_OP
;
3737 else if (prot_op
== SCSI_PROT_WRITE_INSERT
)
3738 eedp_flags
= MPI2_SCSIIO_EEDPFLAGS_INSERT_OP
;
3742 switch (prot_type
) {
3743 case SCSI_PROT_DIF_TYPE1
:
3744 case SCSI_PROT_DIF_TYPE2
:
3747 * enable ref/guard checking
3748 * auto increment ref tag
3750 eedp_flags
|= MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG
|
3751 MPI2_SCSIIO_EEDPFLAGS_CHECK_REFTAG
|
3752 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD
;
3753 mpi_request
->CDB
.EEDP32
.PrimaryReferenceTag
=
3754 cpu_to_be32(scsi_get_lba(scmd
));
3757 case SCSI_PROT_DIF_TYPE3
:
3760 * enable guard checking
3762 eedp_flags
|= MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD
;
3765 mpi_request
->EEDPBlockSize
= cpu_to_le32(scmd
->device
->sector_size
);
3766 mpi_request
->EEDPFlags
= cpu_to_le16(eedp_flags
);
3770 * _scsih_eedp_error_handling - return sense code for EEDP errors
3771 * @scmd: pointer to scsi command object
3772 * @ioc_status: ioc status
3777 _scsih_eedp_error_handling(struct scsi_cmnd
*scmd
, u16 ioc_status
)
3781 switch (ioc_status
) {
3782 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
3785 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
3788 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
3796 scsi_build_sense_buffer(0, scmd
->sense_buffer
, ILLEGAL_REQUEST
, 0x10, ascq
);
3797 scmd
->result
= DRIVER_SENSE
<< 24 | (DID_ABORT
<< 16) |
3798 SAM_STAT_CHECK_CONDITION
;
3802 * _scsih_scsi_direct_io_get - returns direct io flag
3803 * @ioc: per adapter object
3804 * @smid: system request message index
3806 * Returns the smid stored scmd pointer.
3809 _scsih_scsi_direct_io_get(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
3811 return ioc
->scsi_lookup
[smid
- 1].direct_io
;
3815 * _scsih_scsi_direct_io_set - sets direct io flag
3816 * @ioc: per adapter object
3817 * @smid: system request message index
3818 * @direct_io: Zero or non-zero value to set in the direct_io flag
3823 _scsih_scsi_direct_io_set(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
, u8 direct_io
)
3825 ioc
->scsi_lookup
[smid
- 1].direct_io
= direct_io
;
3830 * _scsih_setup_direct_io - setup MPI request for WARPDRIVE Direct I/O
3831 * @ioc: per adapter object
3832 * @scmd: pointer to scsi command object
3833 * @raid_device: pointer to raid device data structure
3834 * @mpi_request: pointer to the SCSI_IO reqest message frame
3835 * @smid: system request message index
3840 _scsih_setup_direct_io(struct MPT2SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
,
3841 struct _raid_device
*raid_device
, Mpi2SCSIIORequest_t
*mpi_request
,
3844 u32 v_lba
, p_lba
, stripe_off
, stripe_unit
, column
, io_size
;
3845 u32 stripe_sz
, stripe_exp
;
3846 u8 num_pds
, *cdb_ptr
, i
;
3847 u8 cdb0
= scmd
->cmnd
[0];
3851 * Try Direct I/O to RAID memeber disks
3853 if (cdb0
== READ_16
|| cdb0
== READ_10
||
3854 cdb0
== WRITE_16
|| cdb0
== WRITE_10
) {
3855 cdb_ptr
= mpi_request
->CDB
.CDB32
;
3857 if ((cdb0
< READ_16
) || !(cdb_ptr
[2] | cdb_ptr
[3] | cdb_ptr
[4]
3859 io_size
= scsi_bufflen(scmd
) >>
3860 raid_device
->block_exponent
;
3861 i
= (cdb0
< READ_16
) ? 2 : 6;
3862 /* get virtual lba */
3863 v_lba
= be32_to_cpu(*(__be32
*)(&cdb_ptr
[i
]));
3865 if (((u64
)v_lba
+ (u64
)io_size
- 1) <=
3866 (u32
)raid_device
->max_lba
) {
3867 stripe_sz
= raid_device
->stripe_sz
;
3868 stripe_exp
= raid_device
->stripe_exponent
;
3869 stripe_off
= v_lba
& (stripe_sz
- 1);
3871 /* Check whether IO falls within a stripe */
3872 if ((stripe_off
+ io_size
) <= stripe_sz
) {
3873 num_pds
= raid_device
->num_pds
;
3874 p_lba
= v_lba
>> stripe_exp
;
3875 stripe_unit
= p_lba
/ num_pds
;
3876 column
= p_lba
% num_pds
;
3877 p_lba
= (stripe_unit
<< stripe_exp
) +
3879 mpi_request
->DevHandle
=
3880 cpu_to_le16(raid_device
->
3882 (*(__be32
*)(&cdb_ptr
[i
])) =
3885 * WD: To indicate this I/O is directI/O
3887 _scsih_scsi_direct_io_set(ioc
, smid
, 1);
3891 io_size
= scsi_bufflen(scmd
) >>
3892 raid_device
->block_exponent
;
3893 /* get virtual lba */
3894 v_llba
= be64_to_cpu(*(__be64
*)(&cdb_ptr
[2]));
3896 if ((v_llba
+ (u64
)io_size
- 1) <=
3897 raid_device
->max_lba
) {
3898 stripe_sz
= raid_device
->stripe_sz
;
3899 stripe_exp
= raid_device
->stripe_exponent
;
3900 stripe_off
= (u32
) (v_llba
& (stripe_sz
- 1));
3902 /* Check whether IO falls within a stripe */
3903 if ((stripe_off
+ io_size
) <= stripe_sz
) {
3904 num_pds
= raid_device
->num_pds
;
3905 p_lba
= (u32
)(v_llba
>> stripe_exp
);
3906 stripe_unit
= p_lba
/ num_pds
;
3907 column
= p_lba
% num_pds
;
3908 p_lba
= (stripe_unit
<< stripe_exp
) +
3910 mpi_request
->DevHandle
=
3911 cpu_to_le16(raid_device
->
3913 (*(__be64
*)(&cdb_ptr
[2])) =
3914 cpu_to_be64((u64
)p_lba
);
3916 * WD: To indicate this I/O is directI/O
3918 _scsih_scsi_direct_io_set(ioc
, smid
, 1);
3926 * _scsih_qcmd - main scsi request entry point
3927 * @scmd: pointer to scsi command object
3928 * @done: function pointer to be invoked on completion
3930 * The callback index is set inside `ioc->scsi_io_cb_idx`.
3932 * Returns 0 on success. If there's a failure, return either:
3933 * SCSI_MLQUEUE_DEVICE_BUSY if the device queue is full, or
3934 * SCSI_MLQUEUE_HOST_BUSY if the entire host queue is full
3937 _scsih_qcmd_lck(struct scsi_cmnd
*scmd
, void (*done
)(struct scsi_cmnd
*))
3939 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
3940 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
3941 struct MPT2SAS_TARGET
*sas_target_priv_data
;
3942 struct _raid_device
*raid_device
;
3943 Mpi2SCSIIORequest_t
*mpi_request
;
3947 scmd
->scsi_done
= done
;
3948 sas_device_priv_data
= scmd
->device
->hostdata
;
3949 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
3950 scmd
->result
= DID_NO_CONNECT
<< 16;
3951 scmd
->scsi_done(scmd
);
3955 if (ioc
->pci_error_recovery
|| ioc
->remove_host
) {
3956 scmd
->result
= DID_NO_CONNECT
<< 16;
3957 scmd
->scsi_done(scmd
);
3961 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
3962 /* invalid device handle */
3963 if (sas_target_priv_data
->handle
== MPT2SAS_INVALID_DEVICE_HANDLE
) {
3964 scmd
->result
= DID_NO_CONNECT
<< 16;
3965 scmd
->scsi_done(scmd
);
3969 /* host recovery or link resets sent via IOCTLs */
3970 if (ioc
->shost_recovery
|| ioc
->ioc_link_reset_in_progress
)
3971 return SCSI_MLQUEUE_HOST_BUSY
;
3972 /* device busy with task management */
3973 else if (sas_device_priv_data
->block
|| sas_target_priv_data
->tm_busy
)
3974 return SCSI_MLQUEUE_DEVICE_BUSY
;
3975 /* device has been deleted */
3976 else if (sas_target_priv_data
->deleted
) {
3977 scmd
->result
= DID_NO_CONNECT
<< 16;
3978 scmd
->scsi_done(scmd
);
3982 if (scmd
->sc_data_direction
== DMA_FROM_DEVICE
)
3983 mpi_control
= MPI2_SCSIIO_CONTROL_READ
;
3984 else if (scmd
->sc_data_direction
== DMA_TO_DEVICE
)
3985 mpi_control
= MPI2_SCSIIO_CONTROL_WRITE
;
3987 mpi_control
= MPI2_SCSIIO_CONTROL_NODATATRANSFER
;
3990 if (!(sas_device_priv_data
->flags
& MPT_DEVICE_FLAGS_INIT
)) {
3991 if (scmd
->device
->tagged_supported
) {
3992 if (scmd
->device
->ordered_tags
)
3993 mpi_control
|= MPI2_SCSIIO_CONTROL_ORDEREDQ
;
3995 mpi_control
|= MPI2_SCSIIO_CONTROL_SIMPLEQ
;
3997 /* MPI Revision I (UNIT = 0xA) - removed MPI2_SCSIIO_CONTROL_UNTAGGED */
3998 /* mpi_control |= MPI2_SCSIIO_CONTROL_UNTAGGED;
4000 mpi_control
|= (0x500);
4003 mpi_control
|= MPI2_SCSIIO_CONTROL_SIMPLEQ
;
4004 /* Make sure Device is not raid volume.
4005 * We do not expose raid functionality to upper layer for warpdrive.
4007 if (!ioc
->is_warpdrive
&& !_scsih_is_raid(&scmd
->device
->sdev_gendev
) &&
4008 sas_is_tlr_enabled(scmd
->device
) && scmd
->cmd_len
!= 32)
4009 mpi_control
|= MPI2_SCSIIO_CONTROL_TLR_ON
;
4011 smid
= mpt2sas_base_get_smid_scsiio(ioc
, ioc
->scsi_io_cb_idx
, scmd
);
4013 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
4014 ioc
->name
, __func__
);
4017 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
4018 memset(mpi_request
, 0, sizeof(Mpi2SCSIIORequest_t
));
4019 _scsih_setup_eedp(scmd
, mpi_request
);
4020 if (scmd
->cmd_len
== 32)
4021 mpi_control
|= 4 << MPI2_SCSIIO_CONTROL_ADDCDBLEN_SHIFT
;
4022 mpi_request
->Function
= MPI2_FUNCTION_SCSI_IO_REQUEST
;
4023 if (sas_device_priv_data
->sas_target
->flags
&
4024 MPT_TARGET_FLAGS_RAID_COMPONENT
)
4025 mpi_request
->Function
= MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH
;
4027 mpi_request
->Function
= MPI2_FUNCTION_SCSI_IO_REQUEST
;
4028 mpi_request
->DevHandle
=
4029 cpu_to_le16(sas_device_priv_data
->sas_target
->handle
);
4030 mpi_request
->DataLength
= cpu_to_le32(scsi_bufflen(scmd
));
4031 mpi_request
->Control
= cpu_to_le32(mpi_control
);
4032 mpi_request
->IoFlags
= cpu_to_le16(scmd
->cmd_len
);
4033 mpi_request
->MsgFlags
= MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR
;
4034 mpi_request
->SenseBufferLength
= SCSI_SENSE_BUFFERSIZE
;
4035 mpi_request
->SenseBufferLowAddress
=
4036 mpt2sas_base_get_sense_buffer_dma(ioc
, smid
);
4037 mpi_request
->SGLOffset0
= offsetof(Mpi2SCSIIORequest_t
, SGL
) / 4;
4038 mpi_request
->SGLFlags
= cpu_to_le16(MPI2_SCSIIO_SGLFLAGS_TYPE_MPI
+
4039 MPI2_SCSIIO_SGLFLAGS_SYSTEM_ADDR
);
4040 mpi_request
->VF_ID
= 0; /* TODO */
4041 mpi_request
->VP_ID
= 0;
4042 int_to_scsilun(sas_device_priv_data
->lun
, (struct scsi_lun
*)
4044 memcpy(mpi_request
->CDB
.CDB32
, scmd
->cmnd
, scmd
->cmd_len
);
4046 if (!mpi_request
->DataLength
) {
4047 mpt2sas_base_build_zero_len_sge(ioc
, &mpi_request
->SGL
);
4049 if (_scsih_build_scatter_gather(ioc
, scmd
, smid
)) {
4050 mpt2sas_base_free_smid(ioc
, smid
);
4055 raid_device
= sas_target_priv_data
->raid_device
;
4056 if (raid_device
&& raid_device
->direct_io_enabled
)
4057 _scsih_setup_direct_io(ioc
, scmd
, raid_device
, mpi_request
,
4060 if (likely(mpi_request
->Function
== MPI2_FUNCTION_SCSI_IO_REQUEST
))
4061 mpt2sas_base_put_smid_scsi_io(ioc
, smid
,
4062 le16_to_cpu(mpi_request
->DevHandle
));
4064 mpt2sas_base_put_smid_default(ioc
, smid
);
4068 return SCSI_MLQUEUE_HOST_BUSY
;
4071 static DEF_SCSI_QCMD(_scsih_qcmd
)
4074 * _scsih_normalize_sense - normalize descriptor and fixed format sense data
4075 * @sense_buffer: sense data returned by target
4076 * @data: normalized skey/asc/ascq
4081 _scsih_normalize_sense(char *sense_buffer
, struct sense_info
*data
)
4083 if ((sense_buffer
[0] & 0x7F) >= 0x72) {
4084 /* descriptor format */
4085 data
->skey
= sense_buffer
[1] & 0x0F;
4086 data
->asc
= sense_buffer
[2];
4087 data
->ascq
= sense_buffer
[3];
4090 data
->skey
= sense_buffer
[2] & 0x0F;
4091 data
->asc
= sense_buffer
[12];
4092 data
->ascq
= sense_buffer
[13];
4096 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4098 * _scsih_scsi_ioc_info - translated non-successful SCSI_IO request
4099 * @ioc: per adapter object
4100 * @scmd: pointer to scsi command object
4101 * @mpi_reply: reply mf payload returned from firmware
4103 * scsi_status - SCSI Status code returned from target device
4104 * scsi_state - state info associated with SCSI_IO determined by ioc
4105 * ioc_status - ioc supplied status info
4110 _scsih_scsi_ioc_info(struct MPT2SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
,
4111 Mpi2SCSIIOReply_t
*mpi_reply
, u16 smid
)
4115 u16 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
) &
4116 MPI2_IOCSTATUS_MASK
;
4117 u8 scsi_state
= mpi_reply
->SCSIState
;
4118 u8 scsi_status
= mpi_reply
->SCSIStatus
;
4119 char *desc_ioc_state
= NULL
;
4120 char *desc_scsi_status
= NULL
;
4121 char *desc_scsi_state
= ioc
->tmp_string
;
4122 u32 log_info
= le32_to_cpu(mpi_reply
->IOCLogInfo
);
4123 struct _sas_device
*sas_device
= NULL
;
4124 unsigned long flags
;
4125 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
4126 struct MPT2SAS_TARGET
*priv_target
= starget
->hostdata
;
4127 char *device_str
= NULL
;
4132 if (ioc
->hide_ir_msg
)
4133 device_str
= "WarpDrive";
4135 device_str
= "volume";
4137 if (log_info
== 0x31170000)
4140 switch (ioc_status
) {
4141 case MPI2_IOCSTATUS_SUCCESS
:
4142 desc_ioc_state
= "success";
4144 case MPI2_IOCSTATUS_INVALID_FUNCTION
:
4145 desc_ioc_state
= "invalid function";
4147 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR
:
4148 desc_ioc_state
= "scsi recovered error";
4150 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE
:
4151 desc_ioc_state
= "scsi invalid dev handle";
4153 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE
:
4154 desc_ioc_state
= "scsi device not there";
4156 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN
:
4157 desc_ioc_state
= "scsi data overrun";
4159 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
:
4160 desc_ioc_state
= "scsi data underrun";
4162 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR
:
4163 desc_ioc_state
= "scsi io data error";
4165 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR
:
4166 desc_ioc_state
= "scsi protocol error";
4168 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED
:
4169 desc_ioc_state
= "scsi task terminated";
4171 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH
:
4172 desc_ioc_state
= "scsi residual mismatch";
4174 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED
:
4175 desc_ioc_state
= "scsi task mgmt failed";
4177 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED
:
4178 desc_ioc_state
= "scsi ioc terminated";
4180 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED
:
4181 desc_ioc_state
= "scsi ext terminated";
4183 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
4184 desc_ioc_state
= "eedp guard error";
4186 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
4187 desc_ioc_state
= "eedp ref tag error";
4189 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
4190 desc_ioc_state
= "eedp app tag error";
4193 desc_ioc_state
= "unknown";
4197 switch (scsi_status
) {
4198 case MPI2_SCSI_STATUS_GOOD
:
4199 desc_scsi_status
= "good";
4201 case MPI2_SCSI_STATUS_CHECK_CONDITION
:
4202 desc_scsi_status
= "check condition";
4204 case MPI2_SCSI_STATUS_CONDITION_MET
:
4205 desc_scsi_status
= "condition met";
4207 case MPI2_SCSI_STATUS_BUSY
:
4208 desc_scsi_status
= "busy";
4210 case MPI2_SCSI_STATUS_INTERMEDIATE
:
4211 desc_scsi_status
= "intermediate";
4213 case MPI2_SCSI_STATUS_INTERMEDIATE_CONDMET
:
4214 desc_scsi_status
= "intermediate condmet";
4216 case MPI2_SCSI_STATUS_RESERVATION_CONFLICT
:
4217 desc_scsi_status
= "reservation conflict";
4219 case MPI2_SCSI_STATUS_COMMAND_TERMINATED
:
4220 desc_scsi_status
= "command terminated";
4222 case MPI2_SCSI_STATUS_TASK_SET_FULL
:
4223 desc_scsi_status
= "task set full";
4225 case MPI2_SCSI_STATUS_ACA_ACTIVE
:
4226 desc_scsi_status
= "aca active";
4228 case MPI2_SCSI_STATUS_TASK_ABORTED
:
4229 desc_scsi_status
= "task aborted";
4232 desc_scsi_status
= "unknown";
4236 desc_scsi_state
[0] = '\0';
4238 desc_scsi_state
= " ";
4239 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
)
4240 strcat(desc_scsi_state
, "response info ");
4241 if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
4242 strcat(desc_scsi_state
, "state terminated ");
4243 if (scsi_state
& MPI2_SCSI_STATE_NO_SCSI_STATUS
)
4244 strcat(desc_scsi_state
, "no status ");
4245 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_FAILED
)
4246 strcat(desc_scsi_state
, "autosense failed ");
4247 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
)
4248 strcat(desc_scsi_state
, "autosense valid ");
4250 scsi_print_command(scmd
);
4252 if (priv_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
4253 printk(MPT2SAS_WARN_FMT
"\t%s wwid(0x%016llx)\n", ioc
->name
,
4254 device_str
, (unsigned long long)priv_target
->sas_address
);
4256 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
4257 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
4258 priv_target
->sas_address
);
4260 printk(MPT2SAS_WARN_FMT
"\tsas_address(0x%016llx), "
4261 "phy(%d)\n", ioc
->name
, sas_device
->sas_address
,
4263 printk(MPT2SAS_WARN_FMT
4264 "\tenclosure_logical_id(0x%016llx), slot(%d)\n",
4265 ioc
->name
, sas_device
->enclosure_logical_id
,
4268 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4271 printk(MPT2SAS_WARN_FMT
"\thandle(0x%04x), ioc_status(%s)(0x%04x), "
4272 "smid(%d)\n", ioc
->name
, le16_to_cpu(mpi_reply
->DevHandle
),
4273 desc_ioc_state
, ioc_status
, smid
);
4274 printk(MPT2SAS_WARN_FMT
"\trequest_len(%d), underflow(%d), "
4275 "resid(%d)\n", ioc
->name
, scsi_bufflen(scmd
), scmd
->underflow
,
4276 scsi_get_resid(scmd
));
4277 printk(MPT2SAS_WARN_FMT
"\ttag(%d), transfer_count(%d), "
4278 "sc->result(0x%08x)\n", ioc
->name
, le16_to_cpu(mpi_reply
->TaskTag
),
4279 le32_to_cpu(mpi_reply
->TransferCount
), scmd
->result
);
4280 printk(MPT2SAS_WARN_FMT
"\tscsi_status(%s)(0x%02x), "
4281 "scsi_state(%s)(0x%02x)\n", ioc
->name
, desc_scsi_status
,
4282 scsi_status
, desc_scsi_state
, scsi_state
);
4284 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
) {
4285 struct sense_info data
;
4286 _scsih_normalize_sense(scmd
->sense_buffer
, &data
);
4287 printk(MPT2SAS_WARN_FMT
"\t[sense_key,asc,ascq]: "
4288 "[0x%02x,0x%02x,0x%02x], count(%d)\n", ioc
->name
, data
.skey
,
4289 data
.asc
, data
.ascq
, le32_to_cpu(mpi_reply
->SenseCount
));
4292 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
) {
4293 response_info
= le32_to_cpu(mpi_reply
->ResponseInfo
);
4294 response_bytes
= (u8
*)&response_info
;
4295 _scsih_response_code(ioc
, response_bytes
[0]);
4301 * _scsih_turn_on_fault_led - illuminate Fault LED
4302 * @ioc: per adapter object
4303 * @handle: device handle
4309 _scsih_turn_on_fault_led(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
4311 Mpi2SepReply_t mpi_reply
;
4312 Mpi2SepRequest_t mpi_request
;
4314 memset(&mpi_request
, 0, sizeof(Mpi2SepRequest_t
));
4315 mpi_request
.Function
= MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR
;
4316 mpi_request
.Action
= MPI2_SEP_REQ_ACTION_WRITE_STATUS
;
4317 mpi_request
.SlotStatus
=
4318 cpu_to_le32(MPI2_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT
);
4319 mpi_request
.DevHandle
= cpu_to_le16(handle
);
4320 mpi_request
.Flags
= MPI2_SEP_REQ_FLAGS_DEVHANDLE_ADDRESS
;
4321 if ((mpt2sas_base_scsi_enclosure_processor(ioc
, &mpi_reply
,
4322 &mpi_request
)) != 0) {
4323 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n", ioc
->name
,
4324 __FILE__
, __LINE__
, __func__
);
4328 if (mpi_reply
.IOCStatus
|| mpi_reply
.IOCLogInfo
) {
4329 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"enclosure_processor: "
4330 "ioc_status (0x%04x), loginfo(0x%08x)\n", ioc
->name
,
4331 le16_to_cpu(mpi_reply
.IOCStatus
),
4332 le32_to_cpu(mpi_reply
.IOCLogInfo
)));
4338 * _scsih_send_event_to_turn_on_fault_led - fire delayed event
4339 * @ioc: per adapter object
4340 * @handle: device handle
4341 * Context: interrupt.
4346 _scsih_send_event_to_turn_on_fault_led(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
4348 struct fw_event_work
*fw_event
;
4350 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
4353 fw_event
->event
= MPT2SAS_TURN_ON_FAULT_LED
;
4354 fw_event
->device_handle
= handle
;
4355 fw_event
->ioc
= ioc
;
4356 _scsih_fw_event_add(ioc
, fw_event
);
4360 * _scsih_smart_predicted_fault - process smart errors
4361 * @ioc: per adapter object
4362 * @handle: device handle
4363 * Context: interrupt.
4368 _scsih_smart_predicted_fault(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
4370 struct scsi_target
*starget
;
4371 struct MPT2SAS_TARGET
*sas_target_priv_data
;
4372 Mpi2EventNotificationReply_t
*event_reply
;
4373 Mpi2EventDataSasDeviceStatusChange_t
*event_data
;
4374 struct _sas_device
*sas_device
;
4376 unsigned long flags
;
4378 /* only handle non-raid devices */
4379 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
4380 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
4382 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4385 starget
= sas_device
->starget
;
4386 sas_target_priv_data
= starget
->hostdata
;
4388 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
) ||
4389 ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
))) {
4390 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4393 starget_printk(KERN_WARNING
, starget
, "predicted fault\n");
4394 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4396 if (ioc
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_IBM
)
4397 _scsih_send_event_to_turn_on_fault_led(ioc
, handle
);
4399 /* insert into event log */
4400 sz
= offsetof(Mpi2EventNotificationReply_t
, EventData
) +
4401 sizeof(Mpi2EventDataSasDeviceStatusChange_t
);
4402 event_reply
= kzalloc(sz
, GFP_ATOMIC
);
4404 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4405 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4409 event_reply
->Function
= MPI2_FUNCTION_EVENT_NOTIFICATION
;
4410 event_reply
->Event
=
4411 cpu_to_le16(MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
);
4412 event_reply
->MsgLength
= sz
/4;
4413 event_reply
->EventDataLength
=
4414 cpu_to_le16(sizeof(Mpi2EventDataSasDeviceStatusChange_t
)/4);
4415 event_data
= (Mpi2EventDataSasDeviceStatusChange_t
*)
4416 event_reply
->EventData
;
4417 event_data
->ReasonCode
= MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
;
4418 event_data
->ASC
= 0x5D;
4419 event_data
->DevHandle
= cpu_to_le16(handle
);
4420 event_data
->SASAddress
= cpu_to_le64(sas_target_priv_data
->sas_address
);
4421 mpt2sas_ctl_add_to_event_log(ioc
, event_reply
);
4426 * _scsih_io_done - scsi request callback
4427 * @ioc: per adapter object
4428 * @smid: system request message index
4429 * @msix_index: MSIX table index supplied by the OS
4430 * @reply: reply message frame(lower 32bit addr)
4432 * Callback handler when using _scsih_qcmd.
4434 * Return 1 meaning mf should be freed from _base_interrupt
4435 * 0 means the mf is freed from this function.
4438 _scsih_io_done(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
4440 Mpi2SCSIIORequest_t
*mpi_request
;
4441 Mpi2SCSIIOReply_t
*mpi_reply
;
4442 struct scsi_cmnd
*scmd
;
4448 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
4449 u32 response_code
= 0;
4450 unsigned long flags
;
4452 mpi_reply
= mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
4453 scmd
= _scsih_scsi_lookup_get_clear(ioc
, smid
);
4457 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
4459 if (mpi_reply
== NULL
) {
4460 scmd
->result
= DID_OK
<< 16;
4464 sas_device_priv_data
= scmd
->device
->hostdata
;
4465 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
||
4466 sas_device_priv_data
->sas_target
->deleted
) {
4467 scmd
->result
= DID_NO_CONNECT
<< 16;
4470 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
);
4472 * WARPDRIVE: If direct_io is set then it is directIO,
4473 * the failed direct I/O should be redirected to volume
4475 if (_scsih_scsi_direct_io_get(ioc
, smid
) &&
4476 ((ioc_status
& MPI2_IOCSTATUS_MASK
)
4477 != MPI2_IOCSTATUS_SCSI_TASK_TERMINATED
)) {
4478 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
4479 ioc
->scsi_lookup
[smid
- 1].scmd
= scmd
;
4480 _scsih_scsi_direct_io_set(ioc
, smid
, 0);
4481 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
4482 memcpy(mpi_request
->CDB
.CDB32
, scmd
->cmnd
, scmd
->cmd_len
);
4483 mpi_request
->DevHandle
=
4484 cpu_to_le16(sas_device_priv_data
->sas_target
->handle
);
4485 mpt2sas_base_put_smid_scsi_io(ioc
, smid
,
4486 sas_device_priv_data
->sas_target
->handle
);
4491 /* turning off TLR */
4492 scsi_state
= mpi_reply
->SCSIState
;
4493 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
)
4495 le32_to_cpu(mpi_reply
->ResponseInfo
) & 0xFF;
4496 if (!sas_device_priv_data
->tlr_snoop_check
) {
4497 sas_device_priv_data
->tlr_snoop_check
++;
4498 /* Make sure Device is not raid volume.
4499 * We do not expose raid functionality to upper layer for warpdrive.
4501 if (!ioc
->is_warpdrive
&& !_scsih_is_raid(&scmd
->device
->sdev_gendev
) &&
4502 sas_is_tlr_enabled(scmd
->device
) &&
4503 response_code
== MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
) {
4504 sas_disable_tlr(scmd
->device
);
4505 sdev_printk(KERN_INFO
, scmd
->device
, "TLR disabled\n");
4509 xfer_cnt
= le32_to_cpu(mpi_reply
->TransferCount
);
4510 scsi_set_resid(scmd
, scsi_bufflen(scmd
) - xfer_cnt
);
4511 if (ioc_status
& MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE
)
4512 log_info
= le32_to_cpu(mpi_reply
->IOCLogInfo
);
4515 ioc_status
&= MPI2_IOCSTATUS_MASK
;
4516 scsi_status
= mpi_reply
->SCSIStatus
;
4518 if (ioc_status
== MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
&& xfer_cnt
== 0 &&
4519 (scsi_status
== MPI2_SCSI_STATUS_BUSY
||
4520 scsi_status
== MPI2_SCSI_STATUS_RESERVATION_CONFLICT
||
4521 scsi_status
== MPI2_SCSI_STATUS_TASK_SET_FULL
)) {
4522 ioc_status
= MPI2_IOCSTATUS_SUCCESS
;
4525 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
) {
4526 struct sense_info data
;
4527 const void *sense_data
= mpt2sas_base_get_sense_buffer(ioc
,
4529 u32 sz
= min_t(u32
, SCSI_SENSE_BUFFERSIZE
,
4530 le32_to_cpu(mpi_reply
->SenseCount
));
4531 memcpy(scmd
->sense_buffer
, sense_data
, sz
);
4532 _scsih_normalize_sense(scmd
->sense_buffer
, &data
);
4533 /* failure prediction threshold exceeded */
4534 if (data
.asc
== 0x5D)
4535 _scsih_smart_predicted_fault(ioc
,
4536 le16_to_cpu(mpi_reply
->DevHandle
));
4539 switch (ioc_status
) {
4540 case MPI2_IOCSTATUS_BUSY
:
4541 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES
:
4542 scmd
->result
= SAM_STAT_BUSY
;
4545 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE
:
4546 scmd
->result
= DID_NO_CONNECT
<< 16;
4549 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED
:
4550 if (sas_device_priv_data
->block
) {
4551 scmd
->result
= DID_TRANSPORT_DISRUPTED
<< 16;
4554 scmd
->result
= DID_SOFT_ERROR
<< 16;
4556 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED
:
4557 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED
:
4558 scmd
->result
= DID_RESET
<< 16;
4561 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH
:
4562 if ((xfer_cnt
== 0) || (scmd
->underflow
> xfer_cnt
))
4563 scmd
->result
= DID_SOFT_ERROR
<< 16;
4565 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4568 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
:
4569 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4571 if ((scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
))
4574 if (xfer_cnt
< scmd
->underflow
) {
4575 if (scsi_status
== SAM_STAT_BUSY
)
4576 scmd
->result
= SAM_STAT_BUSY
;
4578 scmd
->result
= DID_SOFT_ERROR
<< 16;
4579 } else if (scsi_state
& (MPI2_SCSI_STATE_AUTOSENSE_FAILED
|
4580 MPI2_SCSI_STATE_NO_SCSI_STATUS
))
4581 scmd
->result
= DID_SOFT_ERROR
<< 16;
4582 else if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
4583 scmd
->result
= DID_RESET
<< 16;
4584 else if (!xfer_cnt
&& scmd
->cmnd
[0] == REPORT_LUNS
) {
4585 mpi_reply
->SCSIState
= MPI2_SCSI_STATE_AUTOSENSE_VALID
;
4586 mpi_reply
->SCSIStatus
= SAM_STAT_CHECK_CONDITION
;
4587 scmd
->result
= (DRIVER_SENSE
<< 24) |
4588 SAM_STAT_CHECK_CONDITION
;
4589 scmd
->sense_buffer
[0] = 0x70;
4590 scmd
->sense_buffer
[2] = ILLEGAL_REQUEST
;
4591 scmd
->sense_buffer
[12] = 0x20;
4592 scmd
->sense_buffer
[13] = 0;
4596 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN
:
4597 scsi_set_resid(scmd
, 0);
4598 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR
:
4599 case MPI2_IOCSTATUS_SUCCESS
:
4600 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4601 if (response_code
==
4602 MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
||
4603 (scsi_state
& (MPI2_SCSI_STATE_AUTOSENSE_FAILED
|
4604 MPI2_SCSI_STATE_NO_SCSI_STATUS
)))
4605 scmd
->result
= DID_SOFT_ERROR
<< 16;
4606 else if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
4607 scmd
->result
= DID_RESET
<< 16;
4610 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
4611 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
4612 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
4613 _scsih_eedp_error_handling(scmd
, ioc_status
);
4615 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR
:
4616 case MPI2_IOCSTATUS_INVALID_FUNCTION
:
4617 case MPI2_IOCSTATUS_INVALID_SGL
:
4618 case MPI2_IOCSTATUS_INTERNAL_ERROR
:
4619 case MPI2_IOCSTATUS_INVALID_FIELD
:
4620 case MPI2_IOCSTATUS_INVALID_STATE
:
4621 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR
:
4622 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED
:
4624 scmd
->result
= DID_SOFT_ERROR
<< 16;
4629 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4630 if (scmd
->result
&& (ioc
->logging_level
& MPT_DEBUG_REPLY
))
4631 _scsih_scsi_ioc_info(ioc
, scmd
, mpi_reply
, smid
);
4635 scsi_dma_unmap(scmd
);
4636 scmd
->scsi_done(scmd
);
4641 * _scsih_sas_host_refresh - refreshing sas host object contents
4642 * @ioc: per adapter object
4645 * During port enable, fw will send topology events for every device. Its
4646 * possible that the handles may change from the previous setting, so this
4647 * code keeping handles updating if changed.
4652 _scsih_sas_host_refresh(struct MPT2SAS_ADAPTER
*ioc
)
4657 Mpi2ConfigReply_t mpi_reply
;
4658 Mpi2SasIOUnitPage0_t
*sas_iounit_pg0
= NULL
;
4659 u16 attached_handle
;
4662 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
4663 "updating handles for sas_host(0x%016llx)\n",
4664 ioc
->name
, (unsigned long long)ioc
->sas_hba
.sas_address
));
4666 sz
= offsetof(Mpi2SasIOUnitPage0_t
, PhyData
) + (ioc
->sas_hba
.num_phys
4667 * sizeof(Mpi2SasIOUnit0PhyData_t
));
4668 sas_iounit_pg0
= kzalloc(sz
, GFP_KERNEL
);
4669 if (!sas_iounit_pg0
) {
4670 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4671 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4675 if ((mpt2sas_config_get_sas_iounit_pg0(ioc
, &mpi_reply
,
4676 sas_iounit_pg0
, sz
)) != 0)
4678 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
4679 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
4681 for (i
= 0; i
< ioc
->sas_hba
.num_phys
; i
++) {
4682 link_rate
= sas_iounit_pg0
->PhyData
[i
].NegotiatedLinkRate
>> 4;
4684 ioc
->sas_hba
.handle
= le16_to_cpu(sas_iounit_pg0
->
4685 PhyData
[0].ControllerDevHandle
);
4686 ioc
->sas_hba
.phy
[i
].handle
= ioc
->sas_hba
.handle
;
4687 attached_handle
= le16_to_cpu(sas_iounit_pg0
->PhyData
[i
].
4689 if (attached_handle
&& link_rate
< MPI2_SAS_NEG_LINK_RATE_1_5
)
4690 link_rate
= MPI2_SAS_NEG_LINK_RATE_1_5
;
4691 mpt2sas_transport_update_links(ioc
, ioc
->sas_hba
.sas_address
,
4692 attached_handle
, i
, link_rate
);
4695 kfree(sas_iounit_pg0
);
4699 * _scsih_sas_host_add - create sas host object
4700 * @ioc: per adapter object
4702 * Creating host side data object, stored in ioc->sas_hba
4707 _scsih_sas_host_add(struct MPT2SAS_ADAPTER
*ioc
)
4710 Mpi2ConfigReply_t mpi_reply
;
4711 Mpi2SasIOUnitPage0_t
*sas_iounit_pg0
= NULL
;
4712 Mpi2SasIOUnitPage1_t
*sas_iounit_pg1
= NULL
;
4713 Mpi2SasPhyPage0_t phy_pg0
;
4714 Mpi2SasDevicePage0_t sas_device_pg0
;
4715 Mpi2SasEnclosurePage0_t enclosure_pg0
;
4718 u16 device_missing_delay
;
4720 mpt2sas_config_get_number_hba_phys(ioc
, &ioc
->sas_hba
.num_phys
);
4721 if (!ioc
->sas_hba
.num_phys
) {
4722 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4723 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4727 /* sas_iounit page 0 */
4728 sz
= offsetof(Mpi2SasIOUnitPage0_t
, PhyData
) + (ioc
->sas_hba
.num_phys
*
4729 sizeof(Mpi2SasIOUnit0PhyData_t
));
4730 sas_iounit_pg0
= kzalloc(sz
, GFP_KERNEL
);
4731 if (!sas_iounit_pg0
) {
4732 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4733 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4736 if ((mpt2sas_config_get_sas_iounit_pg0(ioc
, &mpi_reply
,
4737 sas_iounit_pg0
, sz
))) {
4738 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4739 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4742 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4743 MPI2_IOCSTATUS_MASK
;
4744 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4745 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4746 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4750 /* sas_iounit page 1 */
4751 sz
= offsetof(Mpi2SasIOUnitPage1_t
, PhyData
) + (ioc
->sas_hba
.num_phys
*
4752 sizeof(Mpi2SasIOUnit1PhyData_t
));
4753 sas_iounit_pg1
= kzalloc(sz
, GFP_KERNEL
);
4754 if (!sas_iounit_pg1
) {
4755 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4756 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4759 if ((mpt2sas_config_get_sas_iounit_pg1(ioc
, &mpi_reply
,
4760 sas_iounit_pg1
, sz
))) {
4761 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4762 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4765 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4766 MPI2_IOCSTATUS_MASK
;
4767 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4768 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4769 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4773 ioc
->io_missing_delay
=
4774 le16_to_cpu(sas_iounit_pg1
->IODeviceMissingDelay
);
4775 device_missing_delay
=
4776 le16_to_cpu(sas_iounit_pg1
->ReportDeviceMissingDelay
);
4777 if (device_missing_delay
& MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16
)
4778 ioc
->device_missing_delay
= (device_missing_delay
&
4779 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
) * 16;
4781 ioc
->device_missing_delay
= device_missing_delay
&
4782 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
;
4784 ioc
->sas_hba
.parent_dev
= &ioc
->shost
->shost_gendev
;
4785 ioc
->sas_hba
.phy
= kcalloc(ioc
->sas_hba
.num_phys
,
4786 sizeof(struct _sas_phy
), GFP_KERNEL
);
4787 if (!ioc
->sas_hba
.phy
) {
4788 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4789 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4792 for (i
= 0; i
< ioc
->sas_hba
.num_phys
; i
++) {
4793 if ((mpt2sas_config_get_phy_pg0(ioc
, &mpi_reply
, &phy_pg0
,
4795 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4796 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4799 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4800 MPI2_IOCSTATUS_MASK
;
4801 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4802 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4803 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4808 ioc
->sas_hba
.handle
= le16_to_cpu(sas_iounit_pg0
->
4809 PhyData
[0].ControllerDevHandle
);
4810 ioc
->sas_hba
.phy
[i
].handle
= ioc
->sas_hba
.handle
;
4811 ioc
->sas_hba
.phy
[i
].phy_id
= i
;
4812 mpt2sas_transport_add_host_phy(ioc
, &ioc
->sas_hba
.phy
[i
],
4813 phy_pg0
, ioc
->sas_hba
.parent_dev
);
4815 if ((mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
4816 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, ioc
->sas_hba
.handle
))) {
4817 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4818 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4821 ioc
->sas_hba
.enclosure_handle
=
4822 le16_to_cpu(sas_device_pg0
.EnclosureHandle
);
4823 ioc
->sas_hba
.sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
4824 printk(MPT2SAS_INFO_FMT
"host_add: handle(0x%04x), "
4825 "sas_addr(0x%016llx), phys(%d)\n", ioc
->name
, ioc
->sas_hba
.handle
,
4826 (unsigned long long) ioc
->sas_hba
.sas_address
,
4827 ioc
->sas_hba
.num_phys
) ;
4829 if (ioc
->sas_hba
.enclosure_handle
) {
4830 if (!(mpt2sas_config_get_enclosure_pg0(ioc
, &mpi_reply
,
4832 MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
4833 ioc
->sas_hba
.enclosure_handle
))) {
4834 ioc
->sas_hba
.enclosure_logical_id
=
4835 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
4840 kfree(sas_iounit_pg1
);
4841 kfree(sas_iounit_pg0
);
4845 * _scsih_expander_add - creating expander object
4846 * @ioc: per adapter object
4847 * @handle: expander handle
4849 * Creating expander object, stored in ioc->sas_expander_list.
4851 * Return 0 for success, else error.
4854 _scsih_expander_add(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
4856 struct _sas_node
*sas_expander
;
4857 Mpi2ConfigReply_t mpi_reply
;
4858 Mpi2ExpanderPage0_t expander_pg0
;
4859 Mpi2ExpanderPage1_t expander_pg1
;
4860 Mpi2SasEnclosurePage0_t enclosure_pg0
;
4863 u64 sas_address
, sas_address_parent
= 0;
4865 unsigned long flags
;
4866 struct _sas_port
*mpt2sas_port
= NULL
;
4872 if (ioc
->shost_recovery
|| ioc
->pci_error_recovery
)
4875 if ((mpt2sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
4876 MPI2_SAS_EXPAND_PGAD_FORM_HNDL
, handle
))) {
4877 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4878 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4882 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4883 MPI2_IOCSTATUS_MASK
;
4884 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4885 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4886 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4890 /* handle out of order topology events */
4891 parent_handle
= le16_to_cpu(expander_pg0
.ParentDevHandle
);
4892 if (_scsih_get_sas_address(ioc
, parent_handle
, &sas_address_parent
)
4894 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4895 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4898 if (sas_address_parent
!= ioc
->sas_hba
.sas_address
) {
4899 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
4900 sas_expander
= mpt2sas_scsih_expander_find_by_sas_address(ioc
,
4901 sas_address_parent
);
4902 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
4903 if (!sas_expander
) {
4904 rc
= _scsih_expander_add(ioc
, parent_handle
);
4910 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
4911 sas_address
= le64_to_cpu(expander_pg0
.SASAddress
);
4912 sas_expander
= mpt2sas_scsih_expander_find_by_sas_address(ioc
,
4914 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
4919 sas_expander
= kzalloc(sizeof(struct _sas_node
),
4921 if (!sas_expander
) {
4922 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4923 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4927 sas_expander
->handle
= handle
;
4928 sas_expander
->num_phys
= expander_pg0
.NumPhys
;
4929 sas_expander
->sas_address_parent
= sas_address_parent
;
4930 sas_expander
->sas_address
= sas_address
;
4932 printk(MPT2SAS_INFO_FMT
"expander_add: handle(0x%04x),"
4933 " parent(0x%04x), sas_addr(0x%016llx), phys(%d)\n", ioc
->name
,
4934 handle
, parent_handle
, (unsigned long long)
4935 sas_expander
->sas_address
, sas_expander
->num_phys
);
4937 if (!sas_expander
->num_phys
)
4939 sas_expander
->phy
= kcalloc(sas_expander
->num_phys
,
4940 sizeof(struct _sas_phy
), GFP_KERNEL
);
4941 if (!sas_expander
->phy
) {
4942 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4943 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4948 INIT_LIST_HEAD(&sas_expander
->sas_port_list
);
4949 mpt2sas_port
= mpt2sas_transport_port_add(ioc
, handle
,
4950 sas_address_parent
);
4951 if (!mpt2sas_port
) {
4952 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4953 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4957 sas_expander
->parent_dev
= &mpt2sas_port
->rphy
->dev
;
4959 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++) {
4960 if ((mpt2sas_config_get_expander_pg1(ioc
, &mpi_reply
,
4961 &expander_pg1
, i
, handle
))) {
4962 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4963 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4967 sas_expander
->phy
[i
].handle
= handle
;
4968 sas_expander
->phy
[i
].phy_id
= i
;
4970 if ((mpt2sas_transport_add_expander_phy(ioc
,
4971 &sas_expander
->phy
[i
], expander_pg1
,
4972 sas_expander
->parent_dev
))) {
4973 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
4974 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4980 if (sas_expander
->enclosure_handle
) {
4981 if (!(mpt2sas_config_get_enclosure_pg0(ioc
, &mpi_reply
,
4982 &enclosure_pg0
, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
4983 sas_expander
->enclosure_handle
))) {
4984 sas_expander
->enclosure_logical_id
=
4985 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
4989 _scsih_expander_node_add(ioc
, sas_expander
);
4995 mpt2sas_transport_port_remove(ioc
, sas_expander
->sas_address
,
4996 sas_address_parent
);
4997 kfree(sas_expander
);
5002 * _scsih_done - scsih callback handler.
5003 * @ioc: per adapter object
5004 * @smid: system request message index
5005 * @msix_index: MSIX table index supplied by the OS
5006 * @reply: reply message frame(lower 32bit addr)
5008 * Callback handler when sending internal generated message frames.
5009 * The callback index passed is `ioc->scsih_cb_idx`
5011 * Return 1 meaning mf should be freed from _base_interrupt
5012 * 0 means the mf is freed from this function.
5015 _scsih_done(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
5017 MPI2DefaultReply_t
*mpi_reply
;
5019 mpi_reply
= mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
5020 if (ioc
->scsih_cmds
.status
== MPT2_CMD_NOT_USED
)
5022 if (ioc
->scsih_cmds
.smid
!= smid
)
5024 ioc
->scsih_cmds
.status
|= MPT2_CMD_COMPLETE
;
5026 memcpy(ioc
->scsih_cmds
.reply
, mpi_reply
,
5027 mpi_reply
->MsgLength
*4);
5028 ioc
->scsih_cmds
.status
|= MPT2_CMD_REPLY_VALID
;
5030 ioc
->scsih_cmds
.status
&= ~MPT2_CMD_PENDING
;
5031 complete(&ioc
->scsih_cmds
.done
);
5036 * mpt2sas_expander_remove - removing expander object
5037 * @ioc: per adapter object
5038 * @sas_address: expander sas_address
5043 mpt2sas_expander_remove(struct MPT2SAS_ADAPTER
*ioc
, u64 sas_address
)
5045 struct _sas_node
*sas_expander
;
5046 unsigned long flags
;
5048 if (ioc
->shost_recovery
)
5051 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
5052 sas_expander
= mpt2sas_scsih_expander_find_by_sas_address(ioc
,
5055 list_del(&sas_expander
->list
);
5056 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
5058 _scsih_expander_node_remove(ioc
, sas_expander
);
5062 * _scsih_check_access_status - check access flags
5063 * @ioc: per adapter object
5064 * @sas_address: sas address
5065 * @handle: sas device handle
5066 * @access_flags: errors returned during discovery of the device
5068 * Return 0 for success, else failure
5071 _scsih_check_access_status(struct MPT2SAS_ADAPTER
*ioc
, u64 sas_address
,
5072 u16 handle
, u8 access_status
)
5077 switch (access_status
) {
5078 case MPI2_SAS_DEVICE0_ASTATUS_NO_ERRORS
:
5079 case MPI2_SAS_DEVICE0_ASTATUS_SATA_NEEDS_INITIALIZATION
:
5082 case MPI2_SAS_DEVICE0_ASTATUS_SATA_CAPABILITY_FAILED
:
5083 desc
= "sata capability failed";
5085 case MPI2_SAS_DEVICE0_ASTATUS_SATA_AFFILIATION_CONFLICT
:
5086 desc
= "sata affiliation conflict";
5088 case MPI2_SAS_DEVICE0_ASTATUS_ROUTE_NOT_ADDRESSABLE
:
5089 desc
= "route not addressable";
5091 case MPI2_SAS_DEVICE0_ASTATUS_SMP_ERROR_NOT_ADDRESSABLE
:
5092 desc
= "smp error not addressable";
5094 case MPI2_SAS_DEVICE0_ASTATUS_DEVICE_BLOCKED
:
5095 desc
= "device blocked";
5097 case MPI2_SAS_DEVICE0_ASTATUS_SATA_INIT_FAILED
:
5098 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UNKNOWN
:
5099 case MPI2_SAS_DEVICE0_ASTATUS_SIF_AFFILIATION_CONFLICT
:
5100 case MPI2_SAS_DEVICE0_ASTATUS_SIF_DIAG
:
5101 case MPI2_SAS_DEVICE0_ASTATUS_SIF_IDENTIFICATION
:
5102 case MPI2_SAS_DEVICE0_ASTATUS_SIF_CHECK_POWER
:
5103 case MPI2_SAS_DEVICE0_ASTATUS_SIF_PIO_SN
:
5104 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MDMA_SN
:
5105 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UDMA_SN
:
5106 case MPI2_SAS_DEVICE0_ASTATUS_SIF_ZONING_VIOLATION
:
5107 case MPI2_SAS_DEVICE0_ASTATUS_SIF_NOT_ADDRESSABLE
:
5108 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MAX
:
5109 desc
= "sata initialization failed";
5119 printk(MPT2SAS_ERR_FMT
"discovery errors(%s): sas_address(0x%016llx), "
5120 "handle(0x%04x)\n", ioc
->name
, desc
,
5121 (unsigned long long)sas_address
, handle
);
5126 _scsih_check_device(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
5128 Mpi2ConfigReply_t mpi_reply
;
5129 Mpi2SasDevicePage0_t sas_device_pg0
;
5130 struct _sas_device
*sas_device
;
5132 unsigned long flags
;
5134 struct scsi_target
*starget
;
5135 struct MPT2SAS_TARGET
*sas_target_priv_data
;
5139 if ((mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
5140 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
)))
5143 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
5144 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
5147 /* check if this is end device */
5148 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
5149 if (!(_scsih_is_end_device(device_info
)))
5152 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5153 sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
5154 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
5158 printk(MPT2SAS_ERR_FMT
"device is not present "
5159 "handle(0x%04x), no sas_device!!!\n", ioc
->name
, handle
);
5160 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5164 if (unlikely(sas_device
->handle
!= handle
)) {
5165 starget
= sas_device
->starget
;
5166 sas_target_priv_data
= starget
->hostdata
;
5167 starget_printk(KERN_INFO
, starget
, "handle changed from(0x%04x)"
5168 " to (0x%04x)!!!\n", sas_device
->handle
, handle
);
5169 sas_target_priv_data
->handle
= handle
;
5170 sas_device
->handle
= handle
;
5173 /* check if device is present */
5174 if (!(le16_to_cpu(sas_device_pg0
.Flags
) &
5175 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT
)) {
5176 printk(MPT2SAS_ERR_FMT
"device is not present "
5177 "handle(0x%04x), flags!!!\n", ioc
->name
, handle
);
5178 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5182 /* check if there were any issues with discovery */
5183 if (_scsih_check_access_status(ioc
, sas_address
, handle
,
5184 sas_device_pg0
.AccessStatus
)) {
5185 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5188 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5189 _scsih_ublock_io_device(ioc
, sas_address
);
5194 * _scsih_add_device - creating sas device object
5195 * @ioc: per adapter object
5196 * @handle: sas device handle
5197 * @phy_num: phy number end device attached to
5198 * @is_pd: is this hidden raid component
5200 * Creating end device object, stored in ioc->sas_device_list.
5202 * Returns 0 for success, non-zero for failure.
5205 _scsih_add_device(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
, u8 phy_num
, u8 is_pd
)
5207 Mpi2ConfigReply_t mpi_reply
;
5208 Mpi2SasDevicePage0_t sas_device_pg0
;
5209 Mpi2SasEnclosurePage0_t enclosure_pg0
;
5210 struct _sas_device
*sas_device
;
5214 unsigned long flags
;
5216 if ((mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
5217 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
5218 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
5219 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5223 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
5224 MPI2_IOCSTATUS_MASK
;
5225 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
5226 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
5227 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5231 sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
5233 /* check if device is present */
5234 if (!(le16_to_cpu(sas_device_pg0
.Flags
) &
5235 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT
)) {
5236 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
5237 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5238 printk(MPT2SAS_ERR_FMT
"Flags = 0x%04x\n",
5239 ioc
->name
, le16_to_cpu(sas_device_pg0
.Flags
));
5243 /* check if there were any issues with discovery */
5244 if (_scsih_check_access_status(ioc
, sas_address
, handle
,
5245 sas_device_pg0
.AccessStatus
))
5248 /* check if this is end device */
5249 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
5250 if (!(_scsih_is_end_device(device_info
))) {
5251 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
5252 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5257 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5258 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
5260 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5265 sas_device
= kzalloc(sizeof(struct _sas_device
),
5268 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
5269 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5273 sas_device
->handle
= handle
;
5274 if (_scsih_get_sas_address(ioc
, le16_to_cpu
5275 (sas_device_pg0
.ParentDevHandle
),
5276 &sas_device
->sas_address_parent
) != 0)
5277 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
5278 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5279 sas_device
->enclosure_handle
=
5280 le16_to_cpu(sas_device_pg0
.EnclosureHandle
);
5282 le16_to_cpu(sas_device_pg0
.Slot
);
5283 sas_device
->device_info
= device_info
;
5284 sas_device
->sas_address
= sas_address
;
5285 sas_device
->phy
= sas_device_pg0
.PhyNum
;
5287 /* get enclosure_logical_id */
5288 if (sas_device
->enclosure_handle
&& !(mpt2sas_config_get_enclosure_pg0(
5289 ioc
, &mpi_reply
, &enclosure_pg0
, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
5290 sas_device
->enclosure_handle
)))
5291 sas_device
->enclosure_logical_id
=
5292 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
5294 /* get device name */
5295 sas_device
->device_name
= le64_to_cpu(sas_device_pg0
.DeviceName
);
5297 if (ioc
->wait_for_discovery_to_complete
)
5298 _scsih_sas_device_init_add(ioc
, sas_device
);
5300 _scsih_sas_device_add(ioc
, sas_device
);
5306 * _scsih_remove_device - removing sas device object
5307 * @ioc: per adapter object
5308 * @sas_device_delete: the sas_device object
5313 _scsih_remove_device(struct MPT2SAS_ADAPTER
*ioc
,
5314 struct _sas_device
*sas_device
)
5316 struct MPT2SAS_TARGET
*sas_target_priv_data
;
5318 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: enter: "
5319 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc
->name
, __func__
,
5320 sas_device
->handle
, (unsigned long long)
5321 sas_device
->sas_address
));
5323 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
5324 sas_target_priv_data
= sas_device
->starget
->hostdata
;
5325 sas_target_priv_data
->deleted
= 1;
5326 _scsih_ublock_io_device(ioc
, sas_device
->sas_address
);
5327 sas_target_priv_data
->handle
=
5328 MPT2SAS_INVALID_DEVICE_HANDLE
;
5331 if (!ioc
->hide_drives
)
5332 mpt2sas_transport_port_remove(ioc
,
5333 sas_device
->sas_address
,
5334 sas_device
->sas_address_parent
);
5336 printk(MPT2SAS_INFO_FMT
"removing handle(0x%04x), sas_addr"
5337 "(0x%016llx)\n", ioc
->name
, sas_device
->handle
,
5338 (unsigned long long) sas_device
->sas_address
);
5340 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: exit: "
5341 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc
->name
, __func__
,
5342 sas_device
->handle
, (unsigned long long)
5343 sas_device
->sas_address
));
5347 * _scsih_device_remove_by_handle - removing device object by handle
5348 * @ioc: per adapter object
5349 * @handle: device handle
5354 _scsih_device_remove_by_handle(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
5356 struct _sas_device
*sas_device
;
5357 unsigned long flags
;
5359 if (ioc
->shost_recovery
)
5362 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5363 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
5365 list_del(&sas_device
->list
);
5366 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5368 _scsih_remove_device(ioc
, sas_device
);
5372 * mpt2sas_device_remove_by_sas_address - removing device object by sas address
5373 * @ioc: per adapter object
5374 * @sas_address: device sas_address
5379 mpt2sas_device_remove_by_sas_address(struct MPT2SAS_ADAPTER
*ioc
,
5382 struct _sas_device
*sas_device
;
5383 unsigned long flags
;
5385 if (ioc
->shost_recovery
)
5388 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5389 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
5392 list_del(&sas_device
->list
);
5393 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5395 _scsih_remove_device(ioc
, sas_device
);
5397 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5399 * _scsih_sas_topology_change_event_debug - debug for topology event
5400 * @ioc: per adapter object
5401 * @event_data: event data payload
5405 _scsih_sas_topology_change_event_debug(struct MPT2SAS_ADAPTER
*ioc
,
5406 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
5412 char *status_str
= NULL
;
5413 u8 link_rate
, prev_link_rate
;
5415 switch (event_data
->ExpStatus
) {
5416 case MPI2_EVENT_SAS_TOPO_ES_ADDED
:
5419 case MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
:
5420 status_str
= "remove";
5422 case MPI2_EVENT_SAS_TOPO_ES_RESPONDING
:
5424 status_str
= "responding";
5426 case MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
:
5427 status_str
= "remove delay";
5430 status_str
= "unknown status";
5433 printk(MPT2SAS_INFO_FMT
"sas topology change: (%s)\n",
5434 ioc
->name
, status_str
);
5435 printk(KERN_INFO
"\thandle(0x%04x), enclosure_handle(0x%04x) "
5436 "start_phy(%02d), count(%d)\n",
5437 le16_to_cpu(event_data
->ExpanderDevHandle
),
5438 le16_to_cpu(event_data
->EnclosureHandle
),
5439 event_data
->StartPhyNum
, event_data
->NumEntries
);
5440 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
5441 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
5444 phy_number
= event_data
->StartPhyNum
+ i
;
5445 reason_code
= event_data
->PHY
[i
].PhyStatus
&
5446 MPI2_EVENT_SAS_TOPO_RC_MASK
;
5447 switch (reason_code
) {
5448 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED
:
5449 status_str
= "target add";
5451 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
:
5452 status_str
= "target remove";
5454 case MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING
:
5455 status_str
= "delay target remove";
5457 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED
:
5458 status_str
= "link rate change";
5460 case MPI2_EVENT_SAS_TOPO_RC_NO_CHANGE
:
5461 status_str
= "target responding";
5464 status_str
= "unknown";
5467 link_rate
= event_data
->PHY
[i
].LinkRate
>> 4;
5468 prev_link_rate
= event_data
->PHY
[i
].LinkRate
& 0xF;
5469 printk(KERN_INFO
"\tphy(%02d), attached_handle(0x%04x): %s:"
5470 " link rate: new(0x%02x), old(0x%02x)\n", phy_number
,
5471 handle
, status_str
, link_rate
, prev_link_rate
);
5478 * _scsih_sas_topology_change_event - handle topology changes
5479 * @ioc: per adapter object
5480 * @fw_event: The fw_event_work object
5485 _scsih_sas_topology_change_event(struct MPT2SAS_ADAPTER
*ioc
,
5486 struct fw_event_work
*fw_event
)
5489 u16 parent_handle
, handle
;
5491 u8 phy_number
, max_phys
;
5492 struct _sas_node
*sas_expander
;
5494 unsigned long flags
;
5495 u8 link_rate
, prev_link_rate
;
5496 Mpi2EventDataSasTopologyChangeList_t
*event_data
= fw_event
->event_data
;
5498 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5499 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5500 _scsih_sas_topology_change_event_debug(ioc
, event_data
);
5503 if (ioc
->remove_host
|| ioc
->pci_error_recovery
)
5506 if (!ioc
->sas_hba
.num_phys
)
5507 _scsih_sas_host_add(ioc
);
5509 _scsih_sas_host_refresh(ioc
);
5511 if (fw_event
->ignore
) {
5512 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"ignoring expander "
5513 "event\n", ioc
->name
));
5517 parent_handle
= le16_to_cpu(event_data
->ExpanderDevHandle
);
5519 /* handle expander add */
5520 if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_ADDED
)
5521 if (_scsih_expander_add(ioc
, parent_handle
) != 0)
5524 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
5525 sas_expander
= mpt2sas_scsih_expander_find_by_handle(ioc
,
5528 sas_address
= sas_expander
->sas_address
;
5529 max_phys
= sas_expander
->num_phys
;
5530 } else if (parent_handle
< ioc
->sas_hba
.num_phys
) {
5531 sas_address
= ioc
->sas_hba
.sas_address
;
5532 max_phys
= ioc
->sas_hba
.num_phys
;
5534 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
5537 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
5539 /* handle siblings events */
5540 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
5541 if (fw_event
->ignore
) {
5542 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"ignoring "
5543 "expander event\n", ioc
->name
));
5546 if (ioc
->shost_recovery
|| ioc
->remove_host
||
5547 ioc
->pci_error_recovery
)
5549 phy_number
= event_data
->StartPhyNum
+ i
;
5550 if (phy_number
>= max_phys
)
5552 reason_code
= event_data
->PHY
[i
].PhyStatus
&
5553 MPI2_EVENT_SAS_TOPO_RC_MASK
;
5554 if ((event_data
->PHY
[i
].PhyStatus
&
5555 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT
) && (reason_code
!=
5556 MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
))
5558 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
5561 link_rate
= event_data
->PHY
[i
].LinkRate
>> 4;
5562 prev_link_rate
= event_data
->PHY
[i
].LinkRate
& 0xF;
5563 switch (reason_code
) {
5564 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED
:
5566 if (ioc
->shost_recovery
)
5569 if (link_rate
== prev_link_rate
)
5572 mpt2sas_transport_update_links(ioc
, sas_address
,
5573 handle
, phy_number
, link_rate
);
5575 if (link_rate
< MPI2_SAS_NEG_LINK_RATE_1_5
)
5578 _scsih_check_device(ioc
, handle
);
5580 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED
:
5582 if (ioc
->shost_recovery
)
5585 mpt2sas_transport_update_links(ioc
, sas_address
,
5586 handle
, phy_number
, link_rate
);
5588 _scsih_add_device(ioc
, handle
, phy_number
, 0);
5590 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
:
5592 _scsih_device_remove_by_handle(ioc
, handle
);
5597 /* handle expander removal */
5598 if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
&&
5600 mpt2sas_expander_remove(ioc
, sas_address
);
5604 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5606 * _scsih_sas_device_status_change_event_debug - debug for device event
5607 * @event_data: event data payload
5613 _scsih_sas_device_status_change_event_debug(struct MPT2SAS_ADAPTER
*ioc
,
5614 Mpi2EventDataSasDeviceStatusChange_t
*event_data
)
5616 char *reason_str
= NULL
;
5618 switch (event_data
->ReasonCode
) {
5619 case MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
:
5620 reason_str
= "smart data";
5622 case MPI2_EVENT_SAS_DEV_STAT_RC_UNSUPPORTED
:
5623 reason_str
= "unsupported device discovered";
5625 case MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
:
5626 reason_str
= "internal device reset";
5628 case MPI2_EVENT_SAS_DEV_STAT_RC_TASK_ABORT_INTERNAL
:
5629 reason_str
= "internal task abort";
5631 case MPI2_EVENT_SAS_DEV_STAT_RC_ABORT_TASK_SET_INTERNAL
:
5632 reason_str
= "internal task abort set";
5634 case MPI2_EVENT_SAS_DEV_STAT_RC_CLEAR_TASK_SET_INTERNAL
:
5635 reason_str
= "internal clear task set";
5637 case MPI2_EVENT_SAS_DEV_STAT_RC_QUERY_TASK_INTERNAL
:
5638 reason_str
= "internal query task";
5640 case MPI2_EVENT_SAS_DEV_STAT_RC_SATA_INIT_FAILURE
:
5641 reason_str
= "sata init failure";
5643 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET
:
5644 reason_str
= "internal device reset complete";
5646 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_TASK_ABORT_INTERNAL
:
5647 reason_str
= "internal task abort complete";
5649 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION
:
5650 reason_str
= "internal async notification";
5652 case MPI2_EVENT_SAS_DEV_STAT_RC_EXPANDER_REDUCED_FUNCTIONALITY
:
5653 reason_str
= "expander reduced functionality";
5655 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_EXPANDER_REDUCED_FUNCTIONALITY
:
5656 reason_str
= "expander reduced functionality complete";
5659 reason_str
= "unknown reason";
5662 printk(MPT2SAS_INFO_FMT
"device status change: (%s)\n"
5663 "\thandle(0x%04x), sas address(0x%016llx), tag(%d)",
5664 ioc
->name
, reason_str
, le16_to_cpu(event_data
->DevHandle
),
5665 (unsigned long long)le64_to_cpu(event_data
->SASAddress
),
5666 le16_to_cpu(event_data
->TaskTag
));
5667 if (event_data
->ReasonCode
== MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
)
5668 printk(MPT2SAS_INFO_FMT
", ASC(0x%x), ASCQ(0x%x)\n", ioc
->name
,
5669 event_data
->ASC
, event_data
->ASCQ
);
5670 printk(KERN_INFO
"\n");
5675 * _scsih_sas_device_status_change_event - handle device status change
5676 * @ioc: per adapter object
5677 * @fw_event: The fw_event_work object
5683 _scsih_sas_device_status_change_event(struct MPT2SAS_ADAPTER
*ioc
,
5684 struct fw_event_work
*fw_event
)
5686 struct MPT2SAS_TARGET
*target_priv_data
;
5687 struct _sas_device
*sas_device
;
5689 unsigned long flags
;
5690 Mpi2EventDataSasDeviceStatusChange_t
*event_data
=
5691 fw_event
->event_data
;
5693 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5694 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5695 _scsih_sas_device_status_change_event_debug(ioc
,
5699 /* In MPI Revision K (0xC), the internal device reset complete was
5700 * implemented, so avoid setting tm_busy flag for older firmware.
5702 if ((ioc
->facts
.HeaderVersion
>> 8) < 0xC)
5705 if (event_data
->ReasonCode
!=
5706 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
&&
5707 event_data
->ReasonCode
!=
5708 MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET
)
5711 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5712 sas_address
= le64_to_cpu(event_data
->SASAddress
);
5713 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
5716 if (!sas_device
|| !sas_device
->starget
) {
5717 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5721 target_priv_data
= sas_device
->starget
->hostdata
;
5722 if (!target_priv_data
) {
5723 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5727 if (event_data
->ReasonCode
==
5728 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
)
5729 target_priv_data
->tm_busy
= 1;
5731 target_priv_data
->tm_busy
= 0;
5732 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5735 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5737 * _scsih_sas_enclosure_dev_status_change_event_debug - debug for enclosure event
5738 * @ioc: per adapter object
5739 * @event_data: event data payload
5745 _scsih_sas_enclosure_dev_status_change_event_debug(struct MPT2SAS_ADAPTER
*ioc
,
5746 Mpi2EventDataSasEnclDevStatusChange_t
*event_data
)
5748 char *reason_str
= NULL
;
5750 switch (event_data
->ReasonCode
) {
5751 case MPI2_EVENT_SAS_ENCL_RC_ADDED
:
5752 reason_str
= "enclosure add";
5754 case MPI2_EVENT_SAS_ENCL_RC_NOT_RESPONDING
:
5755 reason_str
= "enclosure remove";
5758 reason_str
= "unknown reason";
5762 printk(MPT2SAS_INFO_FMT
"enclosure status change: (%s)\n"
5763 "\thandle(0x%04x), enclosure logical id(0x%016llx)"
5764 " number slots(%d)\n", ioc
->name
, reason_str
,
5765 le16_to_cpu(event_data
->EnclosureHandle
),
5766 (unsigned long long)le64_to_cpu(event_data
->EnclosureLogicalID
),
5767 le16_to_cpu(event_data
->StartSlot
));
5772 * _scsih_sas_enclosure_dev_status_change_event - handle enclosure events
5773 * @ioc: per adapter object
5774 * @fw_event: The fw_event_work object
5780 _scsih_sas_enclosure_dev_status_change_event(struct MPT2SAS_ADAPTER
*ioc
,
5781 struct fw_event_work
*fw_event
)
5783 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5784 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5785 _scsih_sas_enclosure_dev_status_change_event_debug(ioc
,
5786 fw_event
->event_data
);
5791 * _scsih_sas_broadcast_primitive_event - handle broadcast events
5792 * @ioc: per adapter object
5793 * @fw_event: The fw_event_work object
5799 _scsih_sas_broadcast_primitive_event(struct MPT2SAS_ADAPTER
*ioc
,
5800 struct fw_event_work
*fw_event
)
5802 struct scsi_cmnd
*scmd
;
5803 struct scsi_device
*sdev
;
5806 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
5807 u32 termination_count
;
5809 Mpi2SCSITaskManagementReply_t
*mpi_reply
;
5810 Mpi2EventDataSasBroadcastPrimitive_t
*event_data
= fw_event
->event_data
;
5812 unsigned long flags
;
5815 u8 task_abort_retries
;
5817 mutex_lock(&ioc
->tm_cmds
.mutex
);
5818 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: enter: phy number(%d), "
5819 "width(%d)\n", ioc
->name
, __func__
, event_data
->PhyNum
,
5820 event_data
->PortWidth
));
5822 _scsih_block_io_all_device(ioc
);
5824 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5825 mpi_reply
= ioc
->tm_cmds
.reply
;
5826 broadcast_aen_retry
:
5828 /* sanity checks for retrying this loop */
5829 if (max_retries
++ == 5) {
5830 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: giving up\n",
5831 ioc
->name
, __func__
));
5833 } else if (max_retries
> 1)
5834 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: %d retry\n",
5835 ioc
->name
, __func__
, max_retries
- 1));
5837 termination_count
= 0;
5839 for (smid
= 1; smid
<= ioc
->scsiio_depth
; smid
++) {
5840 if (ioc
->shost_recovery
)
5842 scmd
= _scsih_scsi_lookup_get(ioc
, smid
);
5845 sdev
= scmd
->device
;
5846 sas_device_priv_data
= sdev
->hostdata
;
5847 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
)
5849 /* skip hidden raid components */
5850 if (sas_device_priv_data
->sas_target
->flags
&
5851 MPT_TARGET_FLAGS_RAID_COMPONENT
)
5854 if (sas_device_priv_data
->sas_target
->flags
&
5855 MPT_TARGET_FLAGS_VOLUME
)
5858 handle
= sas_device_priv_data
->sas_target
->handle
;
5859 lun
= sas_device_priv_data
->lun
;
5862 if (ioc
->shost_recovery
)
5865 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
5866 r
= mpt2sas_scsih_issue_tm(ioc
, handle
, 0, 0, lun
,
5867 MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK
, smid
, 30, 0,
5870 sdev_printk(KERN_WARNING
, sdev
,
5871 "mpt2sas_scsih_issue_tm: FAILED when sending "
5872 "QUERY_TASK: scmd(%p)\n", scmd
);
5873 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5874 goto broadcast_aen_retry
;
5876 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
)
5877 & MPI2_IOCSTATUS_MASK
;
5878 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
5879 sdev_printk(KERN_WARNING
, sdev
, "query task: FAILED "
5880 "with IOCSTATUS(0x%04x), scmd(%p)\n", ioc_status
,
5882 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5883 goto broadcast_aen_retry
;
5886 /* see if IO is still owned by IOC and target */
5887 if (mpi_reply
->ResponseCode
==
5888 MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED
||
5889 mpi_reply
->ResponseCode
==
5890 MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC
) {
5891 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5894 task_abort_retries
= 0;
5896 if (task_abort_retries
++ == 60) {
5897 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
5898 "%s: ABORT_TASK: giving up\n", ioc
->name
,
5900 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5901 goto broadcast_aen_retry
;
5904 if (ioc
->shost_recovery
)
5907 r
= mpt2sas_scsih_issue_tm(ioc
, handle
, sdev
->channel
, sdev
->id
,
5908 sdev
->lun
, MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
, smid
, 30,
5909 scmd
->serial_number
, TM_MUTEX_OFF
);
5911 sdev_printk(KERN_WARNING
, sdev
,
5912 "mpt2sas_scsih_issue_tm: ABORT_TASK: FAILED : "
5913 "scmd(%p)\n", scmd
);
5917 if (task_abort_retries
> 1)
5918 sdev_printk(KERN_WARNING
, sdev
,
5919 "mpt2sas_scsih_issue_tm: ABORT_TASK: RETRIES (%d):"
5921 task_abort_retries
- 1, scmd
);
5923 termination_count
+= le32_to_cpu(mpi_reply
->TerminationCount
);
5924 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5927 if (ioc
->broadcast_aen_pending
) {
5928 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: loop back due to"
5929 " pending AEN\n", ioc
->name
, __func__
));
5930 ioc
->broadcast_aen_pending
= 0;
5931 goto broadcast_aen_retry
;
5935 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
5938 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
5939 "%s - exit, query_count = %d termination_count = %d\n",
5940 ioc
->name
, __func__
, query_count
, termination_count
));
5942 ioc
->broadcast_aen_busy
= 0;
5943 if (!ioc
->shost_recovery
)
5944 _scsih_ublock_io_all_device(ioc
);
5945 mutex_unlock(&ioc
->tm_cmds
.mutex
);
5949 * _scsih_sas_discovery_event - handle discovery events
5950 * @ioc: per adapter object
5951 * @fw_event: The fw_event_work object
5957 _scsih_sas_discovery_event(struct MPT2SAS_ADAPTER
*ioc
,
5958 struct fw_event_work
*fw_event
)
5960 Mpi2EventDataSasDiscovery_t
*event_data
= fw_event
->event_data
;
5962 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5963 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
) {
5964 printk(MPT2SAS_INFO_FMT
"discovery event: (%s)", ioc
->name
,
5965 (event_data
->ReasonCode
== MPI2_EVENT_SAS_DISC_RC_STARTED
) ?
5967 if (event_data
->DiscoveryStatus
)
5968 printk("discovery_status(0x%08x)",
5969 le32_to_cpu(event_data
->DiscoveryStatus
));
5974 if (event_data
->ReasonCode
== MPI2_EVENT_SAS_DISC_RC_STARTED
&&
5975 !ioc
->sas_hba
.num_phys
) {
5976 if (disable_discovery
> 0 && ioc
->shost_recovery
) {
5977 /* Wait for the reset to complete */
5978 while (ioc
->shost_recovery
)
5981 _scsih_sas_host_add(ioc
);
5986 * _scsih_reprobe_lun - reprobing lun
5987 * @sdev: scsi device struct
5988 * @no_uld_attach: sdev->no_uld_attach flag setting
5992 _scsih_reprobe_lun(struct scsi_device
*sdev
, void *no_uld_attach
)
5996 sdev
->no_uld_attach
= no_uld_attach
? 1 : 0;
5997 sdev_printk(KERN_INFO
, sdev
, "%s raid component\n",
5998 sdev
->no_uld_attach
? "hidding" : "exposing");
5999 rc
= scsi_device_reprobe(sdev
);
6003 * _scsih_sas_volume_add - add new volume
6004 * @ioc: per adapter object
6005 * @element: IR config element data
6011 _scsih_sas_volume_add(struct MPT2SAS_ADAPTER
*ioc
,
6012 Mpi2EventIrConfigElement_t
*element
)
6014 struct _raid_device
*raid_device
;
6015 unsigned long flags
;
6017 u16 handle
= le16_to_cpu(element
->VolDevHandle
);
6020 mpt2sas_config_get_volume_wwid(ioc
, handle
, &wwid
);
6022 printk(MPT2SAS_ERR_FMT
6023 "failure at %s:%d/%s()!\n", ioc
->name
,
6024 __FILE__
, __LINE__
, __func__
);
6028 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6029 raid_device
= _scsih_raid_device_find_by_wwid(ioc
, wwid
);
6030 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6035 raid_device
= kzalloc(sizeof(struct _raid_device
), GFP_KERNEL
);
6037 printk(MPT2SAS_ERR_FMT
6038 "failure at %s:%d/%s()!\n", ioc
->name
,
6039 __FILE__
, __LINE__
, __func__
);
6043 raid_device
->id
= ioc
->sas_id
++;
6044 raid_device
->channel
= RAID_CHANNEL
;
6045 raid_device
->handle
= handle
;
6046 raid_device
->wwid
= wwid
;
6047 _scsih_raid_device_add(ioc
, raid_device
);
6048 if (!ioc
->wait_for_discovery_to_complete
) {
6049 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
6050 raid_device
->id
, 0);
6052 _scsih_raid_device_remove(ioc
, raid_device
);
6054 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6055 _scsih_determine_boot_device(ioc
, raid_device
, 1);
6056 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6061 * _scsih_sas_volume_delete - delete volume
6062 * @ioc: per adapter object
6063 * @handle: volume device handle
6069 _scsih_sas_volume_delete(struct MPT2SAS_ADAPTER
*ioc
, u16 handle
)
6071 struct _raid_device
*raid_device
;
6072 unsigned long flags
;
6073 struct MPT2SAS_TARGET
*sas_target_priv_data
;
6074 struct scsi_target
*starget
= NULL
;
6076 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6077 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
6079 if (raid_device
->starget
) {
6080 starget
= raid_device
->starget
;
6081 sas_target_priv_data
= starget
->hostdata
;
6082 sas_target_priv_data
->deleted
= 1;
6084 printk(MPT2SAS_INFO_FMT
"removing handle(0x%04x), wwid"
6085 "(0x%016llx)\n", ioc
->name
, raid_device
->handle
,
6086 (unsigned long long) raid_device
->wwid
);
6087 list_del(&raid_device
->list
);
6090 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6092 scsi_remove_target(&starget
->dev
);
6096 * _scsih_sas_pd_expose - expose pd component to /dev/sdX
6097 * @ioc: per adapter object
6098 * @element: IR config element data
6104 _scsih_sas_pd_expose(struct MPT2SAS_ADAPTER
*ioc
,
6105 Mpi2EventIrConfigElement_t
*element
)
6107 struct _sas_device
*sas_device
;
6108 struct scsi_target
*starget
= NULL
;
6109 struct MPT2SAS_TARGET
*sas_target_priv_data
;
6110 unsigned long flags
;
6111 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
6113 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6114 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
6116 sas_device
->volume_handle
= 0;
6117 sas_device
->volume_wwid
= 0;
6118 clear_bit(handle
, ioc
->pd_handles
);
6119 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
6120 starget
= sas_device
->starget
;
6121 sas_target_priv_data
= starget
->hostdata
;
6122 sas_target_priv_data
->flags
&=
6123 ~MPT_TARGET_FLAGS_RAID_COMPONENT
;
6126 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6130 /* exposing raid component */
6132 starget_for_each_device(starget
, NULL
, _scsih_reprobe_lun
);
6136 * _scsih_sas_pd_hide - hide pd component from /dev/sdX
6137 * @ioc: per adapter object
6138 * @element: IR config element data
6144 _scsih_sas_pd_hide(struct MPT2SAS_ADAPTER
*ioc
,
6145 Mpi2EventIrConfigElement_t
*element
)
6147 struct _sas_device
*sas_device
;
6148 struct scsi_target
*starget
= NULL
;
6149 struct MPT2SAS_TARGET
*sas_target_priv_data
;
6150 unsigned long flags
;
6151 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
6152 u16 volume_handle
= 0;
6153 u64 volume_wwid
= 0;
6155 mpt2sas_config_get_volume_handle(ioc
, handle
, &volume_handle
);
6157 mpt2sas_config_get_volume_wwid(ioc
, volume_handle
,
6160 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6161 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
6163 set_bit(handle
, ioc
->pd_handles
);
6164 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
6165 starget
= sas_device
->starget
;
6166 sas_target_priv_data
= starget
->hostdata
;
6167 sas_target_priv_data
->flags
|=
6168 MPT_TARGET_FLAGS_RAID_COMPONENT
;
6169 sas_device
->volume_handle
= volume_handle
;
6170 sas_device
->volume_wwid
= volume_wwid
;
6173 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6177 /* hiding raid component */
6179 starget_for_each_device(starget
, (void *)1, _scsih_reprobe_lun
);
6183 * _scsih_sas_pd_delete - delete pd component
6184 * @ioc: per adapter object
6185 * @element: IR config element data
6191 _scsih_sas_pd_delete(struct MPT2SAS_ADAPTER
*ioc
,
6192 Mpi2EventIrConfigElement_t
*element
)
6194 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
6196 _scsih_device_remove_by_handle(ioc
, handle
);
6200 * _scsih_sas_pd_add - remove pd component
6201 * @ioc: per adapter object
6202 * @element: IR config element data
6208 _scsih_sas_pd_add(struct MPT2SAS_ADAPTER
*ioc
,
6209 Mpi2EventIrConfigElement_t
*element
)
6211 struct _sas_device
*sas_device
;
6212 unsigned long flags
;
6213 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
6214 Mpi2ConfigReply_t mpi_reply
;
6215 Mpi2SasDevicePage0_t sas_device_pg0
;
6220 set_bit(handle
, ioc
->pd_handles
);
6222 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6223 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
6224 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6228 if ((mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
6229 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
6230 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
6231 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6235 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6236 MPI2_IOCSTATUS_MASK
;
6237 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6238 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
6239 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6243 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
6244 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
))
6245 mpt2sas_transport_update_links(ioc
, sas_address
, handle
,
6246 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
6248 _scsih_add_device(ioc
, handle
, 0, 1);
6251 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
6253 * _scsih_sas_ir_config_change_event_debug - debug for IR Config Change events
6254 * @ioc: per adapter object
6255 * @event_data: event data payload
6261 _scsih_sas_ir_config_change_event_debug(struct MPT2SAS_ADAPTER
*ioc
,
6262 Mpi2EventDataIrConfigChangeList_t
*event_data
)
6264 Mpi2EventIrConfigElement_t
*element
;
6267 char *reason_str
= NULL
, *element_str
= NULL
;
6269 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
6271 printk(MPT2SAS_INFO_FMT
"raid config change: (%s), elements(%d)\n",
6272 ioc
->name
, (le32_to_cpu(event_data
->Flags
) &
6273 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
) ?
6274 "foreign" : "native", event_data
->NumElements
);
6275 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
6276 switch (element
->ReasonCode
) {
6277 case MPI2_EVENT_IR_CHANGE_RC_ADDED
:
6280 case MPI2_EVENT_IR_CHANGE_RC_REMOVED
:
6281 reason_str
= "remove";
6283 case MPI2_EVENT_IR_CHANGE_RC_NO_CHANGE
:
6284 reason_str
= "no change";
6286 case MPI2_EVENT_IR_CHANGE_RC_HIDE
:
6287 reason_str
= "hide";
6289 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE
:
6290 reason_str
= "unhide";
6292 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED
:
6293 reason_str
= "volume_created";
6295 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
:
6296 reason_str
= "volume_deleted";
6298 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED
:
6299 reason_str
= "pd_created";
6301 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED
:
6302 reason_str
= "pd_deleted";
6305 reason_str
= "unknown reason";
6308 element_type
= le16_to_cpu(element
->ElementFlags
) &
6309 MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK
;
6310 switch (element_type
) {
6311 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLUME_ELEMENT
:
6312 element_str
= "volume";
6314 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLPHYSDISK_ELEMENT
:
6315 element_str
= "phys disk";
6317 case MPI2_EVENT_IR_CHANGE_EFLAGS_HOTSPARE_ELEMENT
:
6318 element_str
= "hot spare";
6321 element_str
= "unknown element";
6324 printk(KERN_INFO
"\t(%s:%s), vol handle(0x%04x), "
6325 "pd handle(0x%04x), pd num(0x%02x)\n", element_str
,
6326 reason_str
, le16_to_cpu(element
->VolDevHandle
),
6327 le16_to_cpu(element
->PhysDiskDevHandle
),
6328 element
->PhysDiskNum
);
6334 * _scsih_sas_ir_config_change_event - handle ir configuration change events
6335 * @ioc: per adapter object
6336 * @fw_event: The fw_event_work object
6342 _scsih_sas_ir_config_change_event(struct MPT2SAS_ADAPTER
*ioc
,
6343 struct fw_event_work
*fw_event
)
6345 Mpi2EventIrConfigElement_t
*element
;
6348 Mpi2EventDataIrConfigChangeList_t
*event_data
= fw_event
->event_data
;
6350 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
6351 if ((ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
6352 && !ioc
->hide_ir_msg
)
6353 _scsih_sas_ir_config_change_event_debug(ioc
, event_data
);
6357 if (ioc
->shost_recovery
)
6360 foreign_config
= (le32_to_cpu(event_data
->Flags
) &
6361 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
) ? 1 : 0;
6363 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
6364 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
6366 switch (element
->ReasonCode
) {
6367 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED
:
6368 case MPI2_EVENT_IR_CHANGE_RC_ADDED
:
6369 if (!foreign_config
)
6370 _scsih_sas_volume_add(ioc
, element
);
6372 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
:
6373 case MPI2_EVENT_IR_CHANGE_RC_REMOVED
:
6374 if (!foreign_config
)
6375 _scsih_sas_volume_delete(ioc
,
6376 le16_to_cpu(element
->VolDevHandle
));
6378 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED
:
6379 if (!ioc
->is_warpdrive
)
6380 _scsih_sas_pd_hide(ioc
, element
);
6382 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED
:
6383 if (!ioc
->is_warpdrive
)
6384 _scsih_sas_pd_expose(ioc
, element
);
6386 case MPI2_EVENT_IR_CHANGE_RC_HIDE
:
6387 if (!ioc
->is_warpdrive
)
6388 _scsih_sas_pd_add(ioc
, element
);
6390 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE
:
6391 if (!ioc
->is_warpdrive
)
6392 _scsih_sas_pd_delete(ioc
, element
);
6399 * _scsih_sas_ir_volume_event - IR volume event
6400 * @ioc: per adapter object
6401 * @fw_event: The fw_event_work object
6407 _scsih_sas_ir_volume_event(struct MPT2SAS_ADAPTER
*ioc
,
6408 struct fw_event_work
*fw_event
)
6411 unsigned long flags
;
6412 struct _raid_device
*raid_device
;
6416 Mpi2EventDataIrVolume_t
*event_data
= fw_event
->event_data
;
6418 if (ioc
->shost_recovery
)
6421 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED
)
6424 handle
= le16_to_cpu(event_data
->VolDevHandle
);
6425 state
= le32_to_cpu(event_data
->NewValue
);
6426 if (!ioc
->hide_ir_msg
)
6427 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: handle(0x%04x), "
6428 "old(0x%08x), new(0x%08x)\n", ioc
->name
, __func__
, handle
,
6429 le32_to_cpu(event_data
->PreviousValue
), state
));
6432 case MPI2_RAID_VOL_STATE_MISSING
:
6433 case MPI2_RAID_VOL_STATE_FAILED
:
6434 _scsih_sas_volume_delete(ioc
, handle
);
6437 case MPI2_RAID_VOL_STATE_ONLINE
:
6438 case MPI2_RAID_VOL_STATE_DEGRADED
:
6439 case MPI2_RAID_VOL_STATE_OPTIMAL
:
6441 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6442 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
6443 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6448 mpt2sas_config_get_volume_wwid(ioc
, handle
, &wwid
);
6450 printk(MPT2SAS_ERR_FMT
6451 "failure at %s:%d/%s()!\n", ioc
->name
,
6452 __FILE__
, __LINE__
, __func__
);
6456 raid_device
= kzalloc(sizeof(struct _raid_device
), GFP_KERNEL
);
6458 printk(MPT2SAS_ERR_FMT
6459 "failure at %s:%d/%s()!\n", ioc
->name
,
6460 __FILE__
, __LINE__
, __func__
);
6464 raid_device
->id
= ioc
->sas_id
++;
6465 raid_device
->channel
= RAID_CHANNEL
;
6466 raid_device
->handle
= handle
;
6467 raid_device
->wwid
= wwid
;
6468 _scsih_raid_device_add(ioc
, raid_device
);
6469 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
6470 raid_device
->id
, 0);
6472 _scsih_raid_device_remove(ioc
, raid_device
);
6475 case MPI2_RAID_VOL_STATE_INITIALIZING
:
6482 * _scsih_sas_ir_physical_disk_event - PD event
6483 * @ioc: per adapter object
6484 * @fw_event: The fw_event_work object
6490 _scsih_sas_ir_physical_disk_event(struct MPT2SAS_ADAPTER
*ioc
,
6491 struct fw_event_work
*fw_event
)
6493 u16 handle
, parent_handle
;
6495 struct _sas_device
*sas_device
;
6496 unsigned long flags
;
6497 Mpi2ConfigReply_t mpi_reply
;
6498 Mpi2SasDevicePage0_t sas_device_pg0
;
6500 Mpi2EventDataIrPhysicalDisk_t
*event_data
= fw_event
->event_data
;
6503 if (ioc
->shost_recovery
)
6506 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_PHYSDISK_RC_STATE_CHANGED
)
6509 handle
= le16_to_cpu(event_data
->PhysDiskDevHandle
);
6510 state
= le32_to_cpu(event_data
->NewValue
);
6512 if (!ioc
->hide_ir_msg
)
6513 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: handle(0x%04x), "
6514 "old(0x%08x), new(0x%08x)\n", ioc
->name
, __func__
, handle
,
6515 le32_to_cpu(event_data
->PreviousValue
), state
));
6518 case MPI2_RAID_PD_STATE_ONLINE
:
6519 case MPI2_RAID_PD_STATE_DEGRADED
:
6520 case MPI2_RAID_PD_STATE_REBUILDING
:
6521 case MPI2_RAID_PD_STATE_OPTIMAL
:
6522 case MPI2_RAID_PD_STATE_HOT_SPARE
:
6524 if (!ioc
->is_warpdrive
)
6525 set_bit(handle
, ioc
->pd_handles
);
6527 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6528 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
6529 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6534 if ((mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6535 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
6537 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
6538 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6542 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6543 MPI2_IOCSTATUS_MASK
;
6544 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6545 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
6546 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6550 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
6551 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
))
6552 mpt2sas_transport_update_links(ioc
, sas_address
, handle
,
6553 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
6555 _scsih_add_device(ioc
, handle
, 0, 1);
6559 case MPI2_RAID_PD_STATE_OFFLINE
:
6560 case MPI2_RAID_PD_STATE_NOT_CONFIGURED
:
6561 case MPI2_RAID_PD_STATE_NOT_COMPATIBLE
:
6567 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
6569 * _scsih_sas_ir_operation_status_event_debug - debug for IR op event
6570 * @ioc: per adapter object
6571 * @event_data: event data payload
6577 _scsih_sas_ir_operation_status_event_debug(struct MPT2SAS_ADAPTER
*ioc
,
6578 Mpi2EventDataIrOperationStatus_t
*event_data
)
6580 char *reason_str
= NULL
;
6582 switch (event_data
->RAIDOperation
) {
6583 case MPI2_EVENT_IR_RAIDOP_RESYNC
:
6584 reason_str
= "resync";
6586 case MPI2_EVENT_IR_RAIDOP_ONLINE_CAP_EXPANSION
:
6587 reason_str
= "online capacity expansion";
6589 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK
:
6590 reason_str
= "consistency check";
6592 case MPI2_EVENT_IR_RAIDOP_BACKGROUND_INIT
:
6593 reason_str
= "background init";
6595 case MPI2_EVENT_IR_RAIDOP_MAKE_DATA_CONSISTENT
:
6596 reason_str
= "make data consistent";
6603 printk(MPT2SAS_INFO_FMT
"raid operational status: (%s)"
6604 "\thandle(0x%04x), percent complete(%d)\n",
6605 ioc
->name
, reason_str
,
6606 le16_to_cpu(event_data
->VolDevHandle
),
6607 event_data
->PercentComplete
);
6612 * _scsih_sas_ir_operation_status_event - handle RAID operation events
6613 * @ioc: per adapter object
6614 * @fw_event: The fw_event_work object
6620 _scsih_sas_ir_operation_status_event(struct MPT2SAS_ADAPTER
*ioc
,
6621 struct fw_event_work
*fw_event
)
6623 Mpi2EventDataIrOperationStatus_t
*event_data
= fw_event
->event_data
;
6624 static struct _raid_device
*raid_device
;
6625 unsigned long flags
;
6628 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
6629 if ((ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
6630 && !ioc
->hide_ir_msg
)
6631 _scsih_sas_ir_operation_status_event_debug(ioc
,
6635 /* code added for raid transport support */
6636 if (event_data
->RAIDOperation
== MPI2_EVENT_IR_RAIDOP_RESYNC
) {
6638 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6639 handle
= le16_to_cpu(event_data
->VolDevHandle
);
6640 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
6642 raid_device
->percent_complete
=
6643 event_data
->PercentComplete
;
6644 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6649 * _scsih_prep_device_scan - initialize parameters prior to device scan
6650 * @ioc: per adapter object
6652 * Set the deleted flag prior to device scan. If the device is found during
6653 * the scan, then we clear the deleted flag.
6656 _scsih_prep_device_scan(struct MPT2SAS_ADAPTER
*ioc
)
6658 struct MPT2SAS_DEVICE
*sas_device_priv_data
;
6659 struct scsi_device
*sdev
;
6661 shost_for_each_device(sdev
, ioc
->shost
) {
6662 sas_device_priv_data
= sdev
->hostdata
;
6663 if (sas_device_priv_data
&& sas_device_priv_data
->sas_target
)
6664 sas_device_priv_data
->sas_target
->deleted
= 1;
6669 * _scsih_mark_responding_sas_device - mark a sas_devices as responding
6670 * @ioc: per adapter object
6671 * @sas_address: sas address
6672 * @slot: enclosure slot id
6673 * @handle: device handle
6675 * After host reset, find out whether devices are still responding.
6676 * Used in _scsi_remove_unresponsive_sas_devices.
6681 _scsih_mark_responding_sas_device(struct MPT2SAS_ADAPTER
*ioc
, u64 sas_address
,
6682 u16 slot
, u16 handle
)
6684 struct MPT2SAS_TARGET
*sas_target_priv_data
= NULL
;
6685 struct scsi_target
*starget
;
6686 struct _sas_device
*sas_device
;
6687 unsigned long flags
;
6689 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6690 list_for_each_entry(sas_device
, &ioc
->sas_device_list
, list
) {
6691 if (sas_device
->sas_address
== sas_address
&&
6692 sas_device
->slot
== slot
) {
6693 sas_device
->responding
= 1;
6694 starget
= sas_device
->starget
;
6695 if (starget
&& starget
->hostdata
) {
6696 sas_target_priv_data
= starget
->hostdata
;
6697 sas_target_priv_data
->tm_busy
= 0;
6698 sas_target_priv_data
->deleted
= 0;
6700 sas_target_priv_data
= NULL
;
6702 starget_printk(KERN_INFO
, starget
,
6703 "handle(0x%04x), sas_addr(0x%016llx), "
6704 "enclosure logical id(0x%016llx), "
6705 "slot(%d)\n", handle
,
6706 (unsigned long long)sas_device
->sas_address
,
6707 (unsigned long long)
6708 sas_device
->enclosure_logical_id
,
6710 if (sas_device
->handle
== handle
)
6712 printk(KERN_INFO
"\thandle changed from(0x%04x)!!!\n",
6713 sas_device
->handle
);
6714 sas_device
->handle
= handle
;
6715 if (sas_target_priv_data
)
6716 sas_target_priv_data
->handle
= handle
;
6721 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6725 * _scsih_search_responding_sas_devices -
6726 * @ioc: per adapter object
6728 * After host reset, find out whether devices are still responding.
6734 _scsih_search_responding_sas_devices(struct MPT2SAS_ADAPTER
*ioc
)
6736 Mpi2SasDevicePage0_t sas_device_pg0
;
6737 Mpi2ConfigReply_t mpi_reply
;
6744 printk(MPT2SAS_INFO_FMT
"search for end-devices: start\n", ioc
->name
);
6746 if (list_empty(&ioc
->sas_device_list
))
6750 while (!(mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6751 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE
,
6753 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6754 MPI2_IOCSTATUS_MASK
;
6755 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
6757 handle
= le16_to_cpu(sas_device_pg0
.DevHandle
);
6758 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
6759 if (!(_scsih_is_end_device(device_info
)))
6761 sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
6762 slot
= le16_to_cpu(sas_device_pg0
.Slot
);
6763 _scsih_mark_responding_sas_device(ioc
, sas_address
, slot
,
6767 printk(MPT2SAS_INFO_FMT
"search for end-devices: complete\n",
6772 * _scsih_mark_responding_raid_device - mark a raid_device as responding
6773 * @ioc: per adapter object
6774 * @wwid: world wide identifier for raid volume
6775 * @handle: device handle
6777 * After host reset, find out whether devices are still responding.
6778 * Used in _scsi_remove_unresponsive_raid_devices.
6783 _scsih_mark_responding_raid_device(struct MPT2SAS_ADAPTER
*ioc
, u64 wwid
,
6786 struct MPT2SAS_TARGET
*sas_target_priv_data
;
6787 struct scsi_target
*starget
;
6788 struct _raid_device
*raid_device
;
6789 unsigned long flags
;
6791 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6792 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
6793 if (raid_device
->wwid
== wwid
&& raid_device
->starget
) {
6794 starget
= raid_device
->starget
;
6795 if (starget
&& starget
->hostdata
) {
6796 sas_target_priv_data
= starget
->hostdata
;
6797 sas_target_priv_data
->deleted
= 0;
6799 sas_target_priv_data
= NULL
;
6800 raid_device
->responding
= 1;
6801 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6802 starget_printk(KERN_INFO
, raid_device
->starget
,
6803 "handle(0x%04x), wwid(0x%016llx)\n", handle
,
6804 (unsigned long long)raid_device
->wwid
);
6806 * WARPDRIVE: The handles of the PDs might have changed
6807 * across the host reset so re-initialize the
6808 * required data for Direct IO
6810 _scsih_init_warpdrive_properties(ioc
, raid_device
);
6811 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6812 if (raid_device
->handle
== handle
) {
6813 spin_unlock_irqrestore(&ioc
->raid_device_lock
,
6817 printk(KERN_INFO
"\thandle changed from(0x%04x)!!!\n",
6818 raid_device
->handle
);
6819 raid_device
->handle
= handle
;
6820 if (sas_target_priv_data
)
6821 sas_target_priv_data
->handle
= handle
;
6822 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6827 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6831 * _scsih_search_responding_raid_devices -
6832 * @ioc: per adapter object
6834 * After host reset, find out whether devices are still responding.
6840 _scsih_search_responding_raid_devices(struct MPT2SAS_ADAPTER
*ioc
)
6842 Mpi2RaidVolPage1_t volume_pg1
;
6843 Mpi2RaidVolPage0_t volume_pg0
;
6844 Mpi2RaidPhysDiskPage0_t pd_pg0
;
6845 Mpi2ConfigReply_t mpi_reply
;
6850 if (!ioc
->ir_firmware
)
6853 printk(MPT2SAS_INFO_FMT
"search for raid volumes: start\n",
6856 if (list_empty(&ioc
->raid_device_list
))
6860 while (!(mpt2sas_config_get_raid_volume_pg1(ioc
, &mpi_reply
,
6861 &volume_pg1
, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE
, handle
))) {
6862 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6863 MPI2_IOCSTATUS_MASK
;
6864 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
6866 handle
= le16_to_cpu(volume_pg1
.DevHandle
);
6868 if (mpt2sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
,
6869 &volume_pg0
, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
6870 sizeof(Mpi2RaidVolPage0_t
)))
6873 if (volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_OPTIMAL
||
6874 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_ONLINE
||
6875 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_DEGRADED
)
6876 _scsih_mark_responding_raid_device(ioc
,
6877 le64_to_cpu(volume_pg1
.WWID
), handle
);
6880 /* refresh the pd_handles */
6881 if (!ioc
->is_warpdrive
) {
6882 phys_disk_num
= 0xFF;
6883 memset(ioc
->pd_handles
, 0, ioc
->pd_handles_sz
);
6884 while (!(mpt2sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
6885 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM
,
6887 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6888 MPI2_IOCSTATUS_MASK
;
6889 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
6891 phys_disk_num
= pd_pg0
.PhysDiskNum
;
6892 handle
= le16_to_cpu(pd_pg0
.DevHandle
);
6893 set_bit(handle
, ioc
->pd_handles
);
6897 printk(MPT2SAS_INFO_FMT
"search for responding raid volumes: "
6898 "complete\n", ioc
->name
);
6902 * _scsih_mark_responding_expander - mark a expander as responding
6903 * @ioc: per adapter object
6904 * @sas_address: sas address
6907 * After host reset, find out whether devices are still responding.
6908 * Used in _scsi_remove_unresponsive_expanders.
6913 _scsih_mark_responding_expander(struct MPT2SAS_ADAPTER
*ioc
, u64 sas_address
,
6916 struct _sas_node
*sas_expander
;
6917 unsigned long flags
;
6920 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
6921 list_for_each_entry(sas_expander
, &ioc
->sas_expander_list
, list
) {
6922 if (sas_expander
->sas_address
!= sas_address
)
6924 sas_expander
->responding
= 1;
6925 if (sas_expander
->handle
== handle
)
6927 printk(KERN_INFO
"\texpander(0x%016llx): handle changed"
6928 " from(0x%04x) to (0x%04x)!!!\n",
6929 (unsigned long long)sas_expander
->sas_address
,
6930 sas_expander
->handle
, handle
);
6931 sas_expander
->handle
= handle
;
6932 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++)
6933 sas_expander
->phy
[i
].handle
= handle
;
6937 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
6941 * _scsih_search_responding_expanders -
6942 * @ioc: per adapter object
6944 * After host reset, find out whether devices are still responding.
6950 _scsih_search_responding_expanders(struct MPT2SAS_ADAPTER
*ioc
)
6952 Mpi2ExpanderPage0_t expander_pg0
;
6953 Mpi2ConfigReply_t mpi_reply
;
6958 printk(MPT2SAS_INFO_FMT
"search for expanders: start\n", ioc
->name
);
6960 if (list_empty(&ioc
->sas_expander_list
))
6964 while (!(mpt2sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
6965 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL
, handle
))) {
6967 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6968 MPI2_IOCSTATUS_MASK
;
6969 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
6972 handle
= le16_to_cpu(expander_pg0
.DevHandle
);
6973 sas_address
= le64_to_cpu(expander_pg0
.SASAddress
);
6974 printk(KERN_INFO
"\texpander present: handle(0x%04x), "
6975 "sas_addr(0x%016llx)\n", handle
,
6976 (unsigned long long)sas_address
);
6977 _scsih_mark_responding_expander(ioc
, sas_address
, handle
);
6981 printk(MPT2SAS_INFO_FMT
"search for expanders: complete\n", ioc
->name
);
6985 * _scsih_remove_unresponding_sas_devices - removing unresponding devices
6986 * @ioc: per adapter object
6991 _scsih_remove_unresponding_sas_devices(struct MPT2SAS_ADAPTER
*ioc
)
6993 struct _sas_device
*sas_device
, *sas_device_next
;
6994 struct _sas_node
*sas_expander
, *sas_expander_next
;
6995 struct _raid_device
*raid_device
, *raid_device_next
;
6996 struct list_head tmp_list
;
6997 unsigned long flags
;
6999 printk(MPT2SAS_INFO_FMT
"removing unresponding devices: start\n",
7002 /* removing unresponding end devices */
7003 printk(MPT2SAS_INFO_FMT
"removing unresponding devices: end-devices\n",
7005 list_for_each_entry_safe(sas_device
, sas_device_next
,
7006 &ioc
->sas_device_list
, list
) {
7007 if (!sas_device
->responding
)
7008 mpt2sas_device_remove_by_sas_address(ioc
,
7009 sas_device
->sas_address
);
7011 sas_device
->responding
= 0;
7014 /* removing unresponding volumes */
7015 if (ioc
->ir_firmware
) {
7016 printk(MPT2SAS_INFO_FMT
"removing unresponding devices: "
7017 "volumes\n", ioc
->name
);
7018 list_for_each_entry_safe(raid_device
, raid_device_next
,
7019 &ioc
->raid_device_list
, list
) {
7020 if (!raid_device
->responding
)
7021 _scsih_sas_volume_delete(ioc
,
7022 raid_device
->handle
);
7024 raid_device
->responding
= 0;
7027 /* removing unresponding expanders */
7028 printk(MPT2SAS_INFO_FMT
"removing unresponding devices: expanders\n",
7030 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
7031 INIT_LIST_HEAD(&tmp_list
);
7032 list_for_each_entry_safe(sas_expander
, sas_expander_next
,
7033 &ioc
->sas_expander_list
, list
) {
7034 if (!sas_expander
->responding
)
7035 list_move_tail(&sas_expander
->list
, &tmp_list
);
7037 sas_expander
->responding
= 0;
7039 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
7040 list_for_each_entry_safe(sas_expander
, sas_expander_next
, &tmp_list
,
7042 list_del(&sas_expander
->list
);
7043 _scsih_expander_node_remove(ioc
, sas_expander
);
7045 printk(MPT2SAS_INFO_FMT
"removing unresponding devices: complete\n",
7047 /* unblock devices */
7048 _scsih_ublock_io_all_device(ioc
);
7052 _scsih_refresh_expander_links(struct MPT2SAS_ADAPTER
*ioc
,
7053 struct _sas_node
*sas_expander
, u16 handle
)
7055 Mpi2ExpanderPage1_t expander_pg1
;
7056 Mpi2ConfigReply_t mpi_reply
;
7059 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++) {
7060 if ((mpt2sas_config_get_expander_pg1(ioc
, &mpi_reply
,
7061 &expander_pg1
, i
, handle
))) {
7062 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
7063 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7067 mpt2sas_transport_update_links(ioc
, sas_expander
->sas_address
,
7068 le16_to_cpu(expander_pg1
.AttachedDevHandle
), i
,
7069 expander_pg1
.NegotiatedLinkRate
>> 4);
7074 * _scsih_scan_for_devices_after_reset - scan for devices after host reset
7075 * @ioc: per adapter object
7080 _scsih_scan_for_devices_after_reset(struct MPT2SAS_ADAPTER
*ioc
)
7082 Mpi2ExpanderPage0_t expander_pg0
;
7083 Mpi2SasDevicePage0_t sas_device_pg0
;
7084 Mpi2RaidVolPage1_t volume_pg1
;
7085 Mpi2RaidVolPage0_t volume_pg0
;
7086 Mpi2RaidPhysDiskPage0_t pd_pg0
;
7087 Mpi2EventIrConfigElement_t element
;
7088 Mpi2ConfigReply_t mpi_reply
;
7091 u16 handle
, parent_handle
;
7093 struct _sas_device
*sas_device
;
7094 struct _sas_node
*expander_device
;
7095 static struct _raid_device
*raid_device
;
7096 unsigned long flags
;
7098 printk(MPT2SAS_INFO_FMT
"scan devices: start\n", ioc
->name
);
7100 _scsih_sas_host_refresh(ioc
);
7104 while (!(mpt2sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
7105 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL
, handle
))) {
7106 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
7107 MPI2_IOCSTATUS_MASK
;
7108 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
7110 handle
= le16_to_cpu(expander_pg0
.DevHandle
);
7111 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
7112 expander_device
= mpt2sas_scsih_expander_find_by_sas_address(
7113 ioc
, le64_to_cpu(expander_pg0
.SASAddress
));
7114 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
7115 if (expander_device
)
7116 _scsih_refresh_expander_links(ioc
, expander_device
,
7119 _scsih_expander_add(ioc
, handle
);
7122 if (!ioc
->ir_firmware
)
7126 phys_disk_num
= 0xFF;
7127 while (!(mpt2sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
7128 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM
,
7130 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
7131 MPI2_IOCSTATUS_MASK
;
7132 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
7134 phys_disk_num
= pd_pg0
.PhysDiskNum
;
7135 handle
= le16_to_cpu(pd_pg0
.DevHandle
);
7136 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
7137 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
7138 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
7141 if (mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
7142 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
7145 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
7146 if (!_scsih_get_sas_address(ioc
, parent_handle
,
7148 mpt2sas_transport_update_links(ioc
, sas_address
,
7149 handle
, sas_device_pg0
.PhyNum
,
7150 MPI2_SAS_NEG_LINK_RATE_1_5
);
7151 set_bit(handle
, ioc
->pd_handles
);
7152 _scsih_add_device(ioc
, handle
, 0, 1);
7158 while (!(mpt2sas_config_get_raid_volume_pg1(ioc
, &mpi_reply
,
7159 &volume_pg1
, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE
, handle
))) {
7160 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
7161 MPI2_IOCSTATUS_MASK
;
7162 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
7164 handle
= le16_to_cpu(volume_pg1
.DevHandle
);
7165 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
7166 raid_device
= _scsih_raid_device_find_by_wwid(ioc
,
7167 le64_to_cpu(volume_pg1
.WWID
));
7168 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
7171 if (mpt2sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
,
7172 &volume_pg0
, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
7173 sizeof(Mpi2RaidVolPage0_t
)))
7175 if (volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_OPTIMAL
||
7176 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_ONLINE
||
7177 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_DEGRADED
) {
7178 memset(&element
, 0, sizeof(Mpi2EventIrConfigElement_t
));
7179 element
.ReasonCode
= MPI2_EVENT_IR_CHANGE_RC_ADDED
;
7180 element
.VolDevHandle
= volume_pg1
.DevHandle
;
7181 _scsih_sas_volume_add(ioc
, &element
);
7189 while (!(mpt2sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
7190 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE
,
7192 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
7193 MPI2_IOCSTATUS_MASK
;
7194 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
7196 handle
= le16_to_cpu(sas_device_pg0
.DevHandle
);
7197 if (!(_scsih_is_end_device(
7198 le32_to_cpu(sas_device_pg0
.DeviceInfo
))))
7200 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
7201 sas_device
= mpt2sas_scsih_sas_device_find_by_sas_address(ioc
,
7202 le64_to_cpu(sas_device_pg0
.SASAddress
));
7203 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
7206 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
7207 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
)) {
7208 mpt2sas_transport_update_links(ioc
, sas_address
, handle
,
7209 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
7210 _scsih_add_device(ioc
, handle
, 0, 0);
7214 printk(MPT2SAS_INFO_FMT
"scan devices: complete\n", ioc
->name
);
7219 * mpt2sas_scsih_reset_handler - reset callback handler (for scsih)
7220 * @ioc: per adapter object
7221 * @reset_phase: phase
7223 * The handler for doing any required cleanup or initialization.
7225 * The reset phase can be MPT2_IOC_PRE_RESET, MPT2_IOC_AFTER_RESET,
7226 * MPT2_IOC_DONE_RESET
7231 mpt2sas_scsih_reset_handler(struct MPT2SAS_ADAPTER
*ioc
, int reset_phase
)
7233 switch (reset_phase
) {
7234 case MPT2_IOC_PRE_RESET
:
7235 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
7236 "MPT2_IOC_PRE_RESET\n", ioc
->name
, __func__
));
7238 case MPT2_IOC_AFTER_RESET
:
7239 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
7240 "MPT2_IOC_AFTER_RESET\n", ioc
->name
, __func__
));
7241 if (ioc
->scsih_cmds
.status
& MPT2_CMD_PENDING
) {
7242 ioc
->scsih_cmds
.status
|= MPT2_CMD_RESET
;
7243 mpt2sas_base_free_smid(ioc
, ioc
->scsih_cmds
.smid
);
7244 complete(&ioc
->scsih_cmds
.done
);
7246 if (ioc
->tm_cmds
.status
& MPT2_CMD_PENDING
) {
7247 ioc
->tm_cmds
.status
|= MPT2_CMD_RESET
;
7248 mpt2sas_base_free_smid(ioc
, ioc
->tm_cmds
.smid
);
7249 complete(&ioc
->tm_cmds
.done
);
7251 _scsih_fw_event_cleanup_queue(ioc
);
7252 _scsih_flush_running_cmds(ioc
);
7254 case MPT2_IOC_DONE_RESET
:
7255 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
7256 "MPT2_IOC_DONE_RESET\n", ioc
->name
, __func__
));
7257 _scsih_sas_host_refresh(ioc
);
7258 _scsih_prep_device_scan(ioc
);
7259 _scsih_search_responding_sas_devices(ioc
);
7260 _scsih_search_responding_raid_devices(ioc
);
7261 _scsih_search_responding_expanders(ioc
);
7262 if ((!ioc
->is_driver_loading
) && !(disable_discovery
> 0 &&
7263 !ioc
->sas_hba
.num_phys
)) {
7264 _scsih_prep_device_scan(ioc
);
7265 _scsih_search_responding_sas_devices(ioc
);
7266 _scsih_search_responding_raid_devices(ioc
);
7267 _scsih_search_responding_expanders(ioc
);
7268 _scsih_error_recovery_delete_devices(ioc
);
7275 * _firmware_event_work - delayed task for processing firmware events
7276 * @ioc: per adapter object
7277 * @work: equal to the fw_event_work object
7283 _firmware_event_work(struct work_struct
*work
)
7285 struct fw_event_work
*fw_event
= container_of(work
,
7286 struct fw_event_work
, delayed_work
.work
);
7287 struct MPT2SAS_ADAPTER
*ioc
= fw_event
->ioc
;
7289 /* the queue is being flushed so ignore this event */
7290 if (ioc
->remove_host
|| fw_event
->cancel_pending_work
||
7291 ioc
->pci_error_recovery
) {
7292 _scsih_fw_event_free(ioc
, fw_event
);
7296 switch (fw_event
->event
) {
7297 case MPT2SAS_REMOVE_UNRESPONDING_DEVICES
:
7298 while (scsi_host_in_recovery(ioc
->shost
) || ioc
->shost_recovery
)
7300 _scsih_remove_unresponding_sas_devices(ioc
);
7301 _scsih_scan_for_devices_after_reset(ioc
);
7303 case MPT2SAS_PORT_ENABLE_COMPLETE
:
7304 ioc
->start_scan
= 0;
7308 dewtprintk(ioc
, printk(MPT2SAS_INFO_FMT
"port enable: complete "
7309 "from worker thread\n", ioc
->name
));
7311 case MPT2SAS_TURN_ON_FAULT_LED
:
7312 _scsih_turn_on_fault_led(ioc
, fw_event
->device_handle
);
7314 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
:
7315 _scsih_sas_topology_change_event(ioc
, fw_event
);
7317 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
:
7318 _scsih_sas_device_status_change_event(ioc
,
7321 case MPI2_EVENT_SAS_DISCOVERY
:
7322 _scsih_sas_discovery_event(ioc
,
7325 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE
:
7326 _scsih_sas_broadcast_primitive_event(ioc
,
7329 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE
:
7330 _scsih_sas_enclosure_dev_status_change_event(ioc
,
7333 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST
:
7334 _scsih_sas_ir_config_change_event(ioc
, fw_event
);
7336 case MPI2_EVENT_IR_VOLUME
:
7337 _scsih_sas_ir_volume_event(ioc
, fw_event
);
7339 case MPI2_EVENT_IR_PHYSICAL_DISK
:
7340 _scsih_sas_ir_physical_disk_event(ioc
, fw_event
);
7342 case MPI2_EVENT_IR_OPERATION_STATUS
:
7343 _scsih_sas_ir_operation_status_event(ioc
, fw_event
);
7346 _scsih_fw_event_free(ioc
, fw_event
);
7350 * mpt2sas_scsih_event_callback - firmware event handler (called at ISR time)
7351 * @ioc: per adapter object
7352 * @msix_index: MSIX table index supplied by the OS
7353 * @reply: reply message frame(lower 32bit addr)
7354 * Context: interrupt.
7356 * This function merely adds a new work task into ioc->firmware_event_thread.
7357 * The tasks are worked from _firmware_event_work in user context.
7359 * Return 1 meaning mf should be freed from _base_interrupt
7360 * 0 means the mf is freed from this function.
7363 mpt2sas_scsih_event_callback(struct MPT2SAS_ADAPTER
*ioc
, u8 msix_index
,
7366 struct fw_event_work
*fw_event
;
7367 Mpi2EventNotificationReply_t
*mpi_reply
;
7371 /* events turned off due to host reset or driver unloading */
7372 if (ioc
->remove_host
|| ioc
->pci_error_recovery
)
7375 mpi_reply
= mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
7377 if (unlikely(!mpi_reply
)) {
7378 printk(MPT2SAS_ERR_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
7379 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7383 event
= le16_to_cpu(mpi_reply
->Event
);
7387 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE
:
7389 Mpi2EventDataSasBroadcastPrimitive_t
*baen_data
=
7390 (Mpi2EventDataSasBroadcastPrimitive_t
*)
7391 mpi_reply
->EventData
;
7393 if (baen_data
->Primitive
!=
7394 MPI2_EVENT_PRIMITIVE_ASYNCHRONOUS_EVENT
)
7397 if (ioc
->broadcast_aen_busy
) {
7398 ioc
->broadcast_aen_pending
++;
7401 ioc
->broadcast_aen_busy
= 1;
7405 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
:
7406 _scsih_check_topo_delete_events(ioc
,
7407 (Mpi2EventDataSasTopologyChangeList_t
*)
7408 mpi_reply
->EventData
);
7410 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST
:
7411 _scsih_check_ir_config_unhide_events(ioc
,
7412 (Mpi2EventDataIrConfigChangeList_t
*)
7413 mpi_reply
->EventData
);
7415 case MPI2_EVENT_IR_VOLUME
:
7416 _scsih_check_volume_delete_events(ioc
,
7417 (Mpi2EventDataIrVolume_t
*)
7418 mpi_reply
->EventData
);
7420 case MPI2_EVENT_LOG_ENTRY_ADDED
:
7422 Mpi2EventDataLogEntryAdded_t
*log_entry
;
7425 if (!ioc
->is_warpdrive
)
7428 log_entry
= (Mpi2EventDataLogEntryAdded_t
*)
7429 mpi_reply
->EventData
;
7430 log_code
= (__le32
*)log_entry
->LogData
;
7432 if (le16_to_cpu(log_entry
->LogEntryQualifier
)
7433 != MPT2_WARPDRIVE_LOGENTRY
)
7436 switch (le32_to_cpu(*log_code
)) {
7437 case MPT2_WARPDRIVE_LC_SSDT
:
7438 printk(MPT2SAS_WARN_FMT
"WarpDrive Warning: "
7439 "IO Throttling has occurred in the WarpDrive "
7440 "subsystem. Check WarpDrive documentation for "
7441 "additional details.\n", ioc
->name
);
7443 case MPT2_WARPDRIVE_LC_SSDLW
:
7444 printk(MPT2SAS_WARN_FMT
"WarpDrive Warning: "
7445 "Program/Erase Cycles for the WarpDrive subsystem "
7446 "in degraded range. Check WarpDrive documentation "
7447 "for additional details.\n", ioc
->name
);
7449 case MPT2_WARPDRIVE_LC_SSDLF
:
7450 printk(MPT2SAS_ERR_FMT
"WarpDrive Fatal Error: "
7451 "There are no Program/Erase Cycles for the "
7452 "WarpDrive subsystem. The storage device will be "
7453 "in read-only mode. Check WarpDrive documentation "
7454 "for additional details.\n", ioc
->name
);
7456 case MPT2_WARPDRIVE_LC_BRMF
:
7457 printk(MPT2SAS_ERR_FMT
"WarpDrive Fatal Error: "
7458 "The Backup Rail Monitor has failed on the "
7459 "WarpDrive subsystem. Check WarpDrive "
7460 "documentation for additional details.\n",
7467 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
:
7468 case MPI2_EVENT_IR_OPERATION_STATUS
:
7469 case MPI2_EVENT_SAS_DISCOVERY
:
7470 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE
:
7471 case MPI2_EVENT_IR_PHYSICAL_DISK
:
7474 default: /* ignore the rest */
7478 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
7480 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
7481 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7484 sz
= le16_to_cpu(mpi_reply
->EventDataLength
) * 4;
7485 fw_event
->event_data
= kzalloc(sz
, GFP_ATOMIC
);
7486 if (!fw_event
->event_data
) {
7487 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
7488 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7493 memcpy(fw_event
->event_data
, mpi_reply
->EventData
,
7495 fw_event
->ioc
= ioc
;
7496 fw_event
->VF_ID
= mpi_reply
->VF_ID
;
7497 fw_event
->VP_ID
= mpi_reply
->VP_ID
;
7498 fw_event
->event
= event
;
7499 _scsih_fw_event_add(ioc
, fw_event
);
7503 /* shost template */
7504 static struct scsi_host_template scsih_driver_template
= {
7505 .module
= THIS_MODULE
,
7506 .name
= "Fusion MPT SAS Host",
7507 .proc_name
= MPT2SAS_DRIVER_NAME
,
7508 .queuecommand
= _scsih_qcmd
,
7509 .target_alloc
= _scsih_target_alloc
,
7510 .slave_alloc
= _scsih_slave_alloc
,
7511 .slave_configure
= _scsih_slave_configure
,
7512 .target_destroy
= _scsih_target_destroy
,
7513 .slave_destroy
= _scsih_slave_destroy
,
7514 .scan_finished
= _scsih_scan_finished
,
7515 .scan_start
= _scsih_scan_start
,
7516 .change_queue_depth
= _scsih_change_queue_depth
,
7517 .change_queue_type
= _scsih_change_queue_type
,
7518 .eh_abort_handler
= _scsih_abort
,
7519 .eh_device_reset_handler
= _scsih_dev_reset
,
7520 .eh_target_reset_handler
= _scsih_target_reset
,
7521 .eh_host_reset_handler
= _scsih_host_reset
,
7522 .bios_param
= _scsih_bios_param
,
7525 .sg_tablesize
= MPT2SAS_SG_DEPTH
,
7526 .max_sectors
= 32767,
7528 .use_clustering
= ENABLE_CLUSTERING
,
7529 .shost_attrs
= mpt2sas_host_attrs
,
7530 .sdev_attrs
= mpt2sas_dev_attrs
,
7534 * _scsih_expander_node_remove - removing expander device from list.
7535 * @ioc: per adapter object
7536 * @sas_expander: the sas_device object
7537 * Context: Calling function should acquire ioc->sas_node_lock.
7539 * Removing object and freeing associated memory from the
7540 * ioc->sas_expander_list.
7545 _scsih_expander_node_remove(struct MPT2SAS_ADAPTER
*ioc
,
7546 struct _sas_node
*sas_expander
)
7548 struct _sas_port
*mpt2sas_port
, *next
;
7550 /* remove sibling ports attached to this expander */
7551 list_for_each_entry_safe(mpt2sas_port
, next
,
7552 &sas_expander
->sas_port_list
, port_list
) {
7553 if (ioc
->shost_recovery
)
7555 if (mpt2sas_port
->remote_identify
.device_type
==
7557 mpt2sas_device_remove_by_sas_address(ioc
,
7558 mpt2sas_port
->remote_identify
.sas_address
);
7559 else if (mpt2sas_port
->remote_identify
.device_type
==
7560 SAS_EDGE_EXPANDER_DEVICE
||
7561 mpt2sas_port
->remote_identify
.device_type
==
7562 SAS_FANOUT_EXPANDER_DEVICE
)
7563 mpt2sas_expander_remove(ioc
,
7564 mpt2sas_port
->remote_identify
.sas_address
);
7567 mpt2sas_transport_port_remove(ioc
, sas_expander
->sas_address
,
7568 sas_expander
->sas_address_parent
);
7570 printk(MPT2SAS_INFO_FMT
"expander_remove: handle"
7571 "(0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
7572 sas_expander
->handle
, (unsigned long long)
7573 sas_expander
->sas_address
);
7575 kfree(sas_expander
->phy
);
7576 kfree(sas_expander
);
7580 * _scsih_ir_shutdown - IR shutdown notification
7581 * @ioc: per adapter object
7583 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that
7584 * the host system is shutting down.
7589 _scsih_ir_shutdown(struct MPT2SAS_ADAPTER
*ioc
)
7591 Mpi2RaidActionRequest_t
*mpi_request
;
7592 Mpi2RaidActionReply_t
*mpi_reply
;
7595 /* is IR firmware build loaded ? */
7596 if (!ioc
->ir_firmware
)
7599 /* are there any volumes ? */
7600 if (list_empty(&ioc
->raid_device_list
))
7603 mutex_lock(&ioc
->scsih_cmds
.mutex
);
7605 if (ioc
->scsih_cmds
.status
!= MPT2_CMD_NOT_USED
) {
7606 printk(MPT2SAS_ERR_FMT
"%s: scsih_cmd in use\n",
7607 ioc
->name
, __func__
);
7610 ioc
->scsih_cmds
.status
= MPT2_CMD_PENDING
;
7612 smid
= mpt2sas_base_get_smid(ioc
, ioc
->scsih_cb_idx
);
7614 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
7615 ioc
->name
, __func__
);
7616 ioc
->scsih_cmds
.status
= MPT2_CMD_NOT_USED
;
7620 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
7621 ioc
->scsih_cmds
.smid
= smid
;
7622 memset(mpi_request
, 0, sizeof(Mpi2RaidActionRequest_t
));
7624 mpi_request
->Function
= MPI2_FUNCTION_RAID_ACTION
;
7625 mpi_request
->Action
= MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED
;
7627 if (!ioc
->hide_ir_msg
)
7628 printk(MPT2SAS_INFO_FMT
"IR shutdown (sending)\n", ioc
->name
);
7629 init_completion(&ioc
->scsih_cmds
.done
);
7630 mpt2sas_base_put_smid_default(ioc
, smid
);
7631 wait_for_completion_timeout(&ioc
->scsih_cmds
.done
, 10*HZ
);
7633 if (!(ioc
->scsih_cmds
.status
& MPT2_CMD_COMPLETE
)) {
7634 printk(MPT2SAS_ERR_FMT
"%s: timeout\n",
7635 ioc
->name
, __func__
);
7639 if (ioc
->scsih_cmds
.status
& MPT2_CMD_REPLY_VALID
) {
7640 mpi_reply
= ioc
->scsih_cmds
.reply
;
7642 if (!ioc
->hide_ir_msg
)
7643 printk(MPT2SAS_INFO_FMT
"IR shutdown (complete): "
7644 "ioc_status(0x%04x), loginfo(0x%08x)\n",
7645 ioc
->name
, le16_to_cpu(mpi_reply
->IOCStatus
),
7646 le32_to_cpu(mpi_reply
->IOCLogInfo
));
7650 ioc
->scsih_cmds
.status
= MPT2_CMD_NOT_USED
;
7651 mutex_unlock(&ioc
->scsih_cmds
.mutex
);
7655 * _scsih_shutdown - routine call during system shutdown
7656 * @pdev: PCI device struct
7661 _scsih_shutdown(struct pci_dev
*pdev
)
7663 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7664 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
7665 struct workqueue_struct
*wq
;
7666 unsigned long flags
;
7668 ioc
->remove_host
= 1;
7669 _scsih_fw_event_cleanup_queue(ioc
);
7671 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
7672 wq
= ioc
->firmware_event_thread
;
7673 ioc
->firmware_event_thread
= NULL
;
7674 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
7676 destroy_workqueue(wq
);
7678 _scsih_ir_shutdown(ioc
);
7679 mpt2sas_base_detach(ioc
);
7683 * _scsih_remove - detach and remove add host
7684 * @pdev: PCI device struct
7686 * Routine called when unloading the driver.
7690 _scsih_remove(struct pci_dev
*pdev
)
7692 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7693 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
7694 struct _sas_port
*mpt2sas_port
, *next_port
;
7695 struct _raid_device
*raid_device
, *next
;
7696 struct MPT2SAS_TARGET
*sas_target_priv_data
;
7697 struct workqueue_struct
*wq
;
7698 unsigned long flags
;
7700 ioc
->remove_host
= 1;
7701 _scsih_fw_event_cleanup_queue(ioc
);
7703 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
7704 wq
= ioc
->firmware_event_thread
;
7705 ioc
->firmware_event_thread
= NULL
;
7706 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
7708 destroy_workqueue(wq
);
7710 /* release all the volumes */
7711 _scsih_ir_shutdown(ioc
);
7712 list_for_each_entry_safe(raid_device
, next
, &ioc
->raid_device_list
,
7714 if (raid_device
->starget
) {
7715 sas_target_priv_data
=
7716 raid_device
->starget
->hostdata
;
7717 sas_target_priv_data
->deleted
= 1;
7718 scsi_remove_target(&raid_device
->starget
->dev
);
7720 printk(MPT2SAS_INFO_FMT
"removing handle(0x%04x), wwid"
7721 "(0x%016llx)\n", ioc
->name
, raid_device
->handle
,
7722 (unsigned long long) raid_device
->wwid
);
7723 _scsih_raid_device_remove(ioc
, raid_device
);
7726 /* free ports attached to the sas_host */
7727 list_for_each_entry_safe(mpt2sas_port
, next_port
,
7728 &ioc
->sas_hba
.sas_port_list
, port_list
) {
7729 if (mpt2sas_port
->remote_identify
.device_type
==
7731 mpt2sas_device_remove_by_sas_address(ioc
,
7732 mpt2sas_port
->remote_identify
.sas_address
);
7733 else if (mpt2sas_port
->remote_identify
.device_type
==
7734 SAS_EDGE_EXPANDER_DEVICE
||
7735 mpt2sas_port
->remote_identify
.device_type
==
7736 SAS_FANOUT_EXPANDER_DEVICE
)
7737 mpt2sas_expander_remove(ioc
,
7738 mpt2sas_port
->remote_identify
.sas_address
);
7741 /* free phys attached to the sas_host */
7742 if (ioc
->sas_hba
.num_phys
) {
7743 kfree(ioc
->sas_hba
.phy
);
7744 ioc
->sas_hba
.phy
= NULL
;
7745 ioc
->sas_hba
.num_phys
= 0;
7748 sas_remove_host(shost
);
7749 mpt2sas_base_detach(ioc
);
7750 list_del(&ioc
->list
);
7751 scsi_remove_host(shost
);
7752 scsi_host_put(shost
);
7756 * _scsih_probe_boot_devices - reports 1st device
7757 * @ioc: per adapter object
7759 * If specified in bios page 2, this routine reports the 1st
7760 * device scsi-ml or sas transport for persistent boot device
7761 * purposes. Please refer to function _scsih_determine_boot_device()
7764 _scsih_probe_boot_devices(struct MPT2SAS_ADAPTER
*ioc
)
7768 struct _sas_device
*sas_device
;
7769 struct _raid_device
*raid_device
;
7771 u64 sas_address_parent
;
7773 unsigned long flags
;
7776 /* no Bios, return immediately */
7777 if (!ioc
->bios_pg3
.BiosVersion
)
7782 if (ioc
->req_boot_device
.device
) {
7783 device
= ioc
->req_boot_device
.device
;
7784 is_raid
= ioc
->req_boot_device
.is_raid
;
7785 } else if (ioc
->req_alt_boot_device
.device
) {
7786 device
= ioc
->req_alt_boot_device
.device
;
7787 is_raid
= ioc
->req_alt_boot_device
.is_raid
;
7788 } else if (ioc
->current_boot_device
.device
) {
7789 device
= ioc
->current_boot_device
.device
;
7790 is_raid
= ioc
->current_boot_device
.is_raid
;
7797 raid_device
= device
;
7798 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
7799 raid_device
->id
, 0);
7801 _scsih_raid_device_remove(ioc
, raid_device
);
7803 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
7804 sas_device
= device
;
7805 handle
= sas_device
->handle
;
7806 sas_address_parent
= sas_device
->sas_address_parent
;
7807 sas_address
= sas_device
->sas_address
;
7808 list_move_tail(&sas_device
->list
, &ioc
->sas_device_list
);
7809 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
7811 if (ioc
->hide_drives
)
7813 if (!mpt2sas_transport_port_add(ioc
, sas_device
->handle
,
7814 sas_device
->sas_address_parent
)) {
7815 _scsih_sas_device_remove(ioc
, sas_device
);
7816 } else if (!sas_device
->starget
) {
7817 if (!ioc
->is_driver_loading
)
7818 mpt2sas_transport_port_remove(ioc
, sas_address
,
7819 sas_address_parent
);
7820 _scsih_sas_device_remove(ioc
, sas_device
);
7826 * _scsih_probe_raid - reporting raid volumes to scsi-ml
7827 * @ioc: per adapter object
7829 * Called during initial loading of the driver.
7832 _scsih_probe_raid(struct MPT2SAS_ADAPTER
*ioc
)
7834 struct _raid_device
*raid_device
, *raid_next
;
7837 list_for_each_entry_safe(raid_device
, raid_next
,
7838 &ioc
->raid_device_list
, list
) {
7839 if (raid_device
->starget
)
7841 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
7842 raid_device
->id
, 0);
7844 _scsih_raid_device_remove(ioc
, raid_device
);
7849 * _scsih_probe_sas - reporting sas devices to sas transport
7850 * @ioc: per adapter object
7852 * Called during initial loading of the driver.
7855 _scsih_probe_sas(struct MPT2SAS_ADAPTER
*ioc
)
7857 struct _sas_device
*sas_device
, *next
;
7858 unsigned long flags
;
7860 /* SAS Device List */
7861 list_for_each_entry_safe(sas_device
, next
, &ioc
->sas_device_init_list
,
7864 if (ioc
->hide_drives
)
7867 if (!mpt2sas_transport_port_add(ioc
, sas_device
->handle
,
7868 sas_device
->sas_address_parent
)) {
7869 list_del(&sas_device
->list
);
7872 } else if (!sas_device
->starget
) {
7873 if (!ioc
->is_driver_loading
)
7874 mpt2sas_transport_port_remove(ioc
,
7875 sas_device
->sas_address
,
7876 sas_device
->sas_address_parent
);
7877 list_del(&sas_device
->list
);
7882 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
7883 list_move_tail(&sas_device
->list
, &ioc
->sas_device_list
);
7884 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
7889 * _scsih_probe_devices - probing for devices
7890 * @ioc: per adapter object
7892 * Called during initial loading of the driver.
7895 _scsih_probe_devices(struct MPT2SAS_ADAPTER
*ioc
)
7897 u16 volume_mapping_flags
;
7899 if (!(ioc
->facts
.ProtocolFlags
& MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR
))
7900 return; /* return when IOC doesn't support initiator mode */
7902 _scsih_probe_boot_devices(ioc
);
7904 if (ioc
->ir_firmware
) {
7905 volume_mapping_flags
=
7906 le16_to_cpu(ioc
->ioc_pg8
.IRVolumeMappingFlags
) &
7907 MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE
;
7908 if (volume_mapping_flags
==
7909 MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING
) {
7910 _scsih_probe_raid(ioc
);
7911 _scsih_probe_sas(ioc
);
7913 _scsih_probe_sas(ioc
);
7914 _scsih_probe_raid(ioc
);
7917 _scsih_probe_sas(ioc
);
7922 * _scsih_scan_start - scsi lld callback for .scan_start
7923 * @shost: SCSI host pointer
7925 * The shost has the ability to discover targets on its own instead
7926 * of scanning the entire bus. In our implemention, we will kick off
7927 * firmware discovery.
7930 _scsih_scan_start(struct Scsi_Host
*shost
)
7932 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
7935 if (diag_buffer_enable
!= -1 && diag_buffer_enable
!= 0)
7936 mpt2sas_enable_diag_buffer(ioc
, diag_buffer_enable
);
7938 if (disable_discovery
> 0)
7941 ioc
->start_scan
= 1;
7942 rc
= mpt2sas_port_enable(ioc
);
7945 printk(MPT2SAS_INFO_FMT
"port enable: FAILED\n", ioc
->name
);
7949 * _scsih_scan_finished - scsi lld callback for .scan_finished
7950 * @shost: SCSI host pointer
7951 * @time: elapsed time of the scan in jiffies
7953 * This function will be called periodically until it returns 1 with the
7954 * scsi_host and the elapsed time of the scan in jiffies. In our implemention,
7955 * we wait for firmware discovery to complete, then return 1.
7958 _scsih_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
7960 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
7962 if (disable_discovery
> 0) {
7963 ioc
->is_driver_loading
= 0;
7964 ioc
->wait_for_discovery_to_complete
= 0;
7968 if (time
>= (300 * HZ
)) {
7969 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
7970 printk(MPT2SAS_INFO_FMT
"port enable: FAILED with timeout "
7971 "(timeout=300s)\n", ioc
->name
);
7972 ioc
->is_driver_loading
= 0;
7976 if (ioc
->start_scan
)
7979 if (ioc
->start_scan_failed
) {
7980 printk(MPT2SAS_INFO_FMT
"port enable: FAILED with "
7981 "(ioc_status=0x%08x)\n", ioc
->name
, ioc
->start_scan_failed
);
7982 ioc
->is_driver_loading
= 0;
7983 ioc
->wait_for_discovery_to_complete
= 0;
7984 ioc
->remove_host
= 1;
7988 printk(MPT2SAS_INFO_FMT
"port enable: SUCCESS\n", ioc
->name
);
7989 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
7991 if (ioc
->wait_for_discovery_to_complete
) {
7992 ioc
->wait_for_discovery_to_complete
= 0;
7993 _scsih_probe_devices(ioc
);
7995 mpt2sas_base_start_watchdog(ioc
);
7996 ioc
->is_driver_loading
= 0;
8002 * _scsih_probe - attach and add scsi host
8003 * @pdev: PCI device struct
8004 * @id: pci device id
8006 * Returns 0 success, anything else error.
8009 _scsih_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
8011 struct MPT2SAS_ADAPTER
*ioc
;
8012 struct Scsi_Host
*shost
;
8014 shost
= scsi_host_alloc(&scsih_driver_template
,
8015 sizeof(struct MPT2SAS_ADAPTER
));
8019 /* init local params */
8020 ioc
= shost_priv(shost
);
8021 memset(ioc
, 0, sizeof(struct MPT2SAS_ADAPTER
));
8022 INIT_LIST_HEAD(&ioc
->list
);
8023 list_add_tail(&ioc
->list
, &mpt2sas_ioc_list
);
8025 ioc
->id
= mpt_ids
++;
8026 sprintf(ioc
->name
, "%s%d", MPT2SAS_DRIVER_NAME
, ioc
->id
);
8028 if (id
->device
== MPI2_MFGPAGE_DEVID_SSS6200
) {
8029 ioc
->is_warpdrive
= 1;
8030 ioc
->hide_ir_msg
= 1;
8032 ioc
->mfg_pg10_hide_flag
= MFG_PAGE10_EXPOSE_ALL_DISKS
;
8033 ioc
->scsi_io_cb_idx
= scsi_io_cb_idx
;
8034 ioc
->tm_cb_idx
= tm_cb_idx
;
8035 ioc
->ctl_cb_idx
= ctl_cb_idx
;
8036 ioc
->base_cb_idx
= base_cb_idx
;
8037 ioc
->port_enable_cb_idx
= port_enable_cb_idx
;
8038 ioc
->transport_cb_idx
= transport_cb_idx
;
8039 ioc
->scsih_cb_idx
= scsih_cb_idx
;
8040 ioc
->config_cb_idx
= config_cb_idx
;
8041 ioc
->tm_tr_cb_idx
= tm_tr_cb_idx
;
8042 ioc
->tm_tr_volume_cb_idx
= tm_tr_volume_cb_idx
;
8043 ioc
->tm_sas_control_cb_idx
= tm_sas_control_cb_idx
;
8044 ioc
->logging_level
= logging_level
;
8045 ioc
->schedule_dead_ioc_flush_running_cmds
= &_scsih_flush_running_cmds
;
8046 /* misc semaphores and spin locks */
8047 mutex_init(&ioc
->reset_in_progress_mutex
);
8048 spin_lock_init(&ioc
->ioc_reset_in_progress_lock
);
8049 spin_lock_init(&ioc
->scsi_lookup_lock
);
8050 spin_lock_init(&ioc
->sas_device_lock
);
8051 spin_lock_init(&ioc
->sas_node_lock
);
8052 spin_lock_init(&ioc
->fw_event_lock
);
8053 spin_lock_init(&ioc
->raid_device_lock
);
8055 INIT_LIST_HEAD(&ioc
->sas_device_list
);
8056 INIT_LIST_HEAD(&ioc
->sas_device_init_list
);
8057 INIT_LIST_HEAD(&ioc
->sas_expander_list
);
8058 INIT_LIST_HEAD(&ioc
->fw_event_list
);
8059 INIT_LIST_HEAD(&ioc
->raid_device_list
);
8060 INIT_LIST_HEAD(&ioc
->sas_hba
.sas_port_list
);
8061 INIT_LIST_HEAD(&ioc
->delayed_tr_list
);
8062 INIT_LIST_HEAD(&ioc
->delayed_tr_volume_list
);
8064 /* init shost parameters */
8065 shost
->max_cmd_len
= 32;
8066 shost
->max_lun
= max_lun
;
8067 shost
->transportt
= mpt2sas_transport_template
;
8068 shost
->unique_id
= ioc
->id
;
8070 if (max_sectors
!= 0xFFFF) {
8071 if (max_sectors
< 64) {
8072 shost
->max_sectors
= 64;
8073 printk(MPT2SAS_WARN_FMT
"Invalid value %d passed "\
8074 "for max_sectors, range is 64 to 32767. Assigning "\
8075 "value of 64.\n", ioc
->name
, max_sectors
);
8076 } else if (max_sectors
> 32767) {
8077 shost
->max_sectors
= 32767;
8078 printk(MPT2SAS_WARN_FMT
"Invalid value %d passed "
8079 "for max_sectors, range is 64 to 8192. Assigning "
8080 "default value of 32767.\n", ioc
->name
,
8083 shost
->max_sectors
= max_sectors
& 0xFFFE;
8084 printk(MPT2SAS_INFO_FMT
"The max_sectors value is "
8085 "set to %d\n", ioc
->name
, shost
->max_sectors
);
8089 if ((scsi_add_host(shost
, &pdev
->dev
))) {
8090 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
8091 ioc
->name
, __FILE__
, __LINE__
, __func__
);
8092 list_del(&ioc
->list
);
8093 goto out_add_shost_fail
;
8096 /* register EEDP capabilities with SCSI layer */
8098 scsi_host_set_prot(shost
, prot_mask
);
8100 scsi_host_set_prot(shost
, SHOST_DIF_TYPE1_PROTECTION
8101 | SHOST_DIF_TYPE2_PROTECTION
8102 | SHOST_DIF_TYPE3_PROTECTION
);
8104 scsi_host_set_guard(shost
, SHOST_DIX_GUARD_CRC
);
8107 snprintf(ioc
->firmware_event_name
, sizeof(ioc
->firmware_event_name
),
8108 "fw_event%d", ioc
->id
);
8109 ioc
->firmware_event_thread
= create_singlethread_workqueue(
8110 ioc
->firmware_event_name
);
8111 if (!ioc
->firmware_event_thread
) {
8112 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
8113 ioc
->name
, __FILE__
, __LINE__
, __func__
);
8114 goto out_thread_fail
;
8117 ioc
->is_driver_loading
= 1;
8118 if ((mpt2sas_base_attach(ioc
))) {
8119 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
8120 ioc
->name
, __FILE__
, __LINE__
, __func__
);
8121 goto out_attach_fail
;
8124 if (ioc
->is_warpdrive
) {
8125 if (ioc
->mfg_pg10_hide_flag
== MFG_PAGE10_EXPOSE_ALL_DISKS
)
8126 ioc
->hide_drives
= 0;
8127 else if (ioc
->mfg_pg10_hide_flag
== MFG_PAGE10_HIDE_ALL_DISKS
)
8128 ioc
->hide_drives
= 1;
8130 if (_scsih_get_num_volumes(ioc
))
8131 ioc
->hide_drives
= 1;
8133 ioc
->hide_drives
= 0;
8136 ioc
->hide_drives
= 0;
8137 scsi_scan_host(shost
);
8142 destroy_workqueue(ioc
->firmware_event_thread
);
8144 list_del(&ioc
->list
);
8145 scsi_remove_host(shost
);
8147 scsi_host_put(shost
);
8153 * _scsih_suspend - power management suspend main entry point
8154 * @pdev: PCI device struct
8155 * @state: PM state change to (usually PCI_D3)
8157 * Returns 0 success, anything else error.
8160 _scsih_suspend(struct pci_dev
*pdev
, pm_message_t state
)
8162 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8163 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
8164 pci_power_t device_state
;
8166 mpt2sas_base_stop_watchdog(ioc
);
8167 scsi_block_requests(shost
);
8168 device_state
= pci_choose_state(pdev
, state
);
8169 printk(MPT2SAS_INFO_FMT
"pdev=0x%p, slot=%s, entering "
8170 "operating state [D%d]\n", ioc
->name
, pdev
,
8171 pci_name(pdev
), device_state
);
8173 mpt2sas_base_free_resources(ioc
);
8174 pci_save_state(pdev
);
8175 pci_disable_device(pdev
);
8176 pci_set_power_state(pdev
, device_state
);
8181 * _scsih_resume - power management resume main entry point
8182 * @pdev: PCI device struct
8184 * Returns 0 success, anything else error.
8187 _scsih_resume(struct pci_dev
*pdev
)
8189 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8190 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
8191 pci_power_t device_state
= pdev
->current_state
;
8194 printk(MPT2SAS_INFO_FMT
"pdev=0x%p, slot=%s, previous "
8195 "operating state [D%d]\n", ioc
->name
, pdev
,
8196 pci_name(pdev
), device_state
);
8198 pci_set_power_state(pdev
, PCI_D0
);
8199 pci_enable_wake(pdev
, PCI_D0
, 0);
8200 pci_restore_state(pdev
);
8202 r
= mpt2sas_base_map_resources(ioc
);
8206 mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
, SOFT_RESET
);
8207 scsi_unblock_requests(shost
);
8208 mpt2sas_base_start_watchdog(ioc
);
8211 #endif /* CONFIG_PM */
8214 * _scsih_pci_error_detected - Called when a PCI error is detected.
8215 * @pdev: PCI device struct
8216 * @state: PCI channel state
8218 * Description: Called when a PCI error is detected.
8221 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
8223 static pci_ers_result_t
8224 _scsih_pci_error_detected(struct pci_dev
*pdev
, pci_channel_state_t state
)
8226 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8227 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
8229 printk(MPT2SAS_INFO_FMT
"PCI error: detected callback, state(%d)!!\n",
8233 case pci_channel_io_normal
:
8234 return PCI_ERS_RESULT_CAN_RECOVER
;
8235 case pci_channel_io_frozen
:
8236 /* Fatal error, prepare for slot reset */
8237 ioc
->pci_error_recovery
= 1;
8238 scsi_block_requests(ioc
->shost
);
8239 mpt2sas_base_stop_watchdog(ioc
);
8240 mpt2sas_base_free_resources(ioc
);
8241 return PCI_ERS_RESULT_NEED_RESET
;
8242 case pci_channel_io_perm_failure
:
8243 /* Permanent error, prepare for device removal */
8244 ioc
->pci_error_recovery
= 1;
8245 mpt2sas_base_stop_watchdog(ioc
);
8246 _scsih_flush_running_cmds(ioc
);
8247 return PCI_ERS_RESULT_DISCONNECT
;
8249 return PCI_ERS_RESULT_NEED_RESET
;
8253 * _scsih_pci_slot_reset - Called when PCI slot has been reset.
8254 * @pdev: PCI device struct
8256 * Description: This routine is called by the pci error recovery
8257 * code after the PCI slot has been reset, just before we
8258 * should resume normal operations.
8260 static pci_ers_result_t
8261 _scsih_pci_slot_reset(struct pci_dev
*pdev
)
8263 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8264 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
8267 printk(MPT2SAS_INFO_FMT
"PCI error: slot reset callback!!\n",
8270 ioc
->pci_error_recovery
= 0;
8272 pci_restore_state(pdev
);
8273 rc
= mpt2sas_base_map_resources(ioc
);
8275 return PCI_ERS_RESULT_DISCONNECT
;
8278 rc
= mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
8281 printk(MPT2SAS_WARN_FMT
"hard reset: %s\n", ioc
->name
,
8282 (rc
== 0) ? "success" : "failed");
8285 return PCI_ERS_RESULT_RECOVERED
;
8287 return PCI_ERS_RESULT_DISCONNECT
;
8291 * _scsih_pci_resume() - resume normal ops after PCI reset
8292 * @pdev: pointer to PCI device
8294 * Called when the error recovery driver tells us that its
8295 * OK to resume normal operation. Use completion to allow
8296 * halted scsi ops to resume.
8299 _scsih_pci_resume(struct pci_dev
*pdev
)
8301 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8302 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
8304 printk(MPT2SAS_INFO_FMT
"PCI error: resume callback!!\n", ioc
->name
);
8306 pci_cleanup_aer_uncorrect_error_status(pdev
);
8307 mpt2sas_base_start_watchdog(ioc
);
8308 scsi_unblock_requests(ioc
->shost
);
8312 * _scsih_pci_mmio_enabled - Enable MMIO and dump debug registers
8313 * @pdev: pointer to PCI device
8315 static pci_ers_result_t
8316 _scsih_pci_mmio_enabled(struct pci_dev
*pdev
)
8318 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8319 struct MPT2SAS_ADAPTER
*ioc
= shost_priv(shost
);
8321 printk(MPT2SAS_INFO_FMT
"PCI error: mmio enabled callback!!\n",
8324 /* TODO - dump whatever for debugging purposes */
8326 /* Request a slot reset. */
8327 return PCI_ERS_RESULT_NEED_RESET
;
8330 static const struct pci_error_handlers _scsih_err_handler
= {
8331 .error_detected
= _scsih_pci_error_detected
,
8332 .mmio_enabled
= _scsih_pci_mmio_enabled
,
8333 .slot_reset
= _scsih_pci_slot_reset
,
8334 .resume
= _scsih_pci_resume
,
8337 static struct pci_driver scsih_driver
= {
8338 .name
= MPT2SAS_DRIVER_NAME
,
8339 .id_table
= scsih_pci_table
,
8340 .probe
= _scsih_probe
,
8341 .remove
= _scsih_remove
,
8342 .shutdown
= _scsih_shutdown
,
8343 .err_handler
= &_scsih_err_handler
,
8345 .suspend
= _scsih_suspend
,
8346 .resume
= _scsih_resume
,
8350 /* raid transport support */
8351 static struct raid_function_template mpt2sas_raid_functions
= {
8352 .cookie
= &scsih_driver_template
,
8353 .is_raid
= _scsih_is_raid
,
8354 .get_resync
= _scsih_get_resync
,
8355 .get_state
= _scsih_get_state
,
8359 * _scsih_init - main entry point for this driver.
8361 * Returns 0 success, anything else error.
8369 printk(KERN_INFO
"%s version %s loaded\n", MPT2SAS_DRIVER_NAME
,
8370 MPT2SAS_DRIVER_VERSION
);
8372 mpt2sas_transport_template
=
8373 sas_attach_transport(&mpt2sas_transport_functions
);
8374 if (!mpt2sas_transport_template
)
8376 /* raid transport support */
8377 mpt2sas_raid_template
= raid_class_attach(&mpt2sas_raid_functions
);
8378 if (!mpt2sas_raid_template
) {
8379 sas_release_transport(mpt2sas_transport_template
);
8383 mpt2sas_base_initialize_callback_handler();
8385 /* queuecommand callback hander */
8386 scsi_io_cb_idx
= mpt2sas_base_register_callback_handler(_scsih_io_done
);
8388 /* task management callback handler */
8389 tm_cb_idx
= mpt2sas_base_register_callback_handler(_scsih_tm_done
);
8391 /* base internal commands callback handler */
8392 base_cb_idx
= mpt2sas_base_register_callback_handler(mpt2sas_base_done
);
8393 port_enable_cb_idx
= mpt2sas_base_register_callback_handler(
8394 mpt2sas_port_enable_done
);
8396 /* transport internal commands callback handler */
8397 transport_cb_idx
= mpt2sas_base_register_callback_handler(
8398 mpt2sas_transport_done
);
8400 /* scsih internal commands callback handler */
8401 scsih_cb_idx
= mpt2sas_base_register_callback_handler(_scsih_done
);
8403 /* configuration page API internal commands callback handler */
8404 config_cb_idx
= mpt2sas_base_register_callback_handler(
8405 mpt2sas_config_done
);
8407 /* ctl module callback handler */
8408 ctl_cb_idx
= mpt2sas_base_register_callback_handler(mpt2sas_ctl_done
);
8410 tm_tr_cb_idx
= mpt2sas_base_register_callback_handler(
8411 _scsih_tm_tr_complete
);
8413 tm_tr_volume_cb_idx
= mpt2sas_base_register_callback_handler(
8414 _scsih_tm_volume_tr_complete
);
8416 tm_sas_control_cb_idx
= mpt2sas_base_register_callback_handler(
8417 _scsih_sas_control_complete
);
8421 error
= pci_register_driver(&scsih_driver
);
8423 /* raid transport support */
8424 raid_class_release(mpt2sas_raid_template
);
8425 sas_release_transport(mpt2sas_transport_template
);
8432 * _scsih_exit - exit point for this driver (when it is a module).
8434 * Returns 0 success, anything else error.
8439 printk(KERN_INFO
"mpt2sas version %s unloading\n",
8440 MPT2SAS_DRIVER_VERSION
);
8442 pci_unregister_driver(&scsih_driver
);
8446 mpt2sas_base_release_callback_handler(scsi_io_cb_idx
);
8447 mpt2sas_base_release_callback_handler(tm_cb_idx
);
8448 mpt2sas_base_release_callback_handler(base_cb_idx
);
8449 mpt2sas_base_release_callback_handler(port_enable_cb_idx
);
8450 mpt2sas_base_release_callback_handler(transport_cb_idx
);
8451 mpt2sas_base_release_callback_handler(scsih_cb_idx
);
8452 mpt2sas_base_release_callback_handler(config_cb_idx
);
8453 mpt2sas_base_release_callback_handler(ctl_cb_idx
);
8455 mpt2sas_base_release_callback_handler(tm_tr_cb_idx
);
8456 mpt2sas_base_release_callback_handler(tm_tr_volume_cb_idx
);
8457 mpt2sas_base_release_callback_handler(tm_sas_control_cb_idx
);
8459 /* raid transport support */
8460 raid_class_release(mpt2sas_raid_template
);
8461 sas_release_transport(mpt2sas_transport_template
);
8465 module_init(_scsih_init
);
8466 module_exit(_scsih_exit
);