2 * Scsi Host Layer for MPT (Message Passing Technology) based controllers
4 * This code is based on drivers/scsi/mpt3sas/mpt3sas_scsih.c
5 * Copyright (C) 2012-2013 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>
57 #include "mpt3sas_base.h"
59 MODULE_AUTHOR(MPT3SAS_AUTHOR
);
60 MODULE_DESCRIPTION(MPT3SAS_DESCRIPTION
);
61 MODULE_LICENSE("GPL");
62 MODULE_VERSION(MPT3SAS_DRIVER_VERSION
);
64 #define RAID_CHANNEL 1
66 static void _scsih_expander_node_remove(struct MPT3SAS_ADAPTER
*ioc
,
67 struct _sas_node
*sas_expander
);
68 static void _firmware_event_work(struct work_struct
*work
);
70 static void _scsih_remove_device(struct MPT3SAS_ADAPTER
*ioc
,
71 struct _sas_device
*sas_device
);
72 static int _scsih_add_device(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
,
73 u8 retry_count
, u8 is_pd
);
75 static u8
_scsih_check_for_pending_tm(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
);
77 static void _scsih_scan_start(struct Scsi_Host
*shost
);
78 static int _scsih_scan_finished(struct Scsi_Host
*shost
, unsigned long time
);
80 /* global parameters */
81 LIST_HEAD(mpt3sas_ioc_list
);
83 /* local parameters */
84 static u8 scsi_io_cb_idx
= -1;
85 static u8 tm_cb_idx
= -1;
86 static u8 ctl_cb_idx
= -1;
87 static u8 base_cb_idx
= -1;
88 static u8 port_enable_cb_idx
= -1;
89 static u8 transport_cb_idx
= -1;
90 static u8 scsih_cb_idx
= -1;
91 static u8 config_cb_idx
= -1;
94 static u8 tm_tr_cb_idx
= -1 ;
95 static u8 tm_tr_volume_cb_idx
= -1 ;
96 static u8 tm_sas_control_cb_idx
= -1;
98 /* command line options */
99 static u32 logging_level
;
100 MODULE_PARM_DESC(logging_level
,
101 " bits for enabling additional logging info (default=0)");
104 static ushort max_sectors
= 0xFFFF;
105 module_param(max_sectors
, ushort
, 0);
106 MODULE_PARM_DESC(max_sectors
, "max sectors, range 64 to 32767 default=32767");
109 static int missing_delay
[2] = {-1, -1};
110 module_param_array(missing_delay
, int, NULL
, 0);
111 MODULE_PARM_DESC(missing_delay
, " device missing delay , io missing delay");
113 /* scsi-mid layer global parmeter is max_report_luns, which is 511 */
114 #define MPT3SAS_MAX_LUN (16895)
115 static int max_lun
= MPT3SAS_MAX_LUN
;
116 module_param(max_lun
, int, 0);
117 MODULE_PARM_DESC(max_lun
, " max lun, default=16895 ");
122 /* diag_buffer_enable is bitwise
124 * bit 1 set = SNAPSHOT
125 * bit 2 set = EXTENDED
127 * Either bit can be set, or both
129 static int diag_buffer_enable
= -1;
130 module_param(diag_buffer_enable
, int, 0);
131 MODULE_PARM_DESC(diag_buffer_enable
,
132 " post diag buffers (TRACE=1/SNAPSHOT=2/EXTENDED=4/default=0)");
133 static int disable_discovery
= -1;
134 module_param(disable_discovery
, int, 0);
135 MODULE_PARM_DESC(disable_discovery
, " disable discovery ");
138 /* permit overriding the host protection capabilities mask (EEDP/T10 PI) */
139 static int prot_mask
= -1;
140 module_param(prot_mask
, int, 0);
141 MODULE_PARM_DESC(prot_mask
, " host protection capabilities mask, def=7 ");
144 /* raid transport support */
146 static struct raid_template
*mpt3sas_raid_template
;
150 * struct sense_info - common structure for obtaining sense keys
152 * @asc: additional sense code
153 * @ascq: additional sense code qualifier
161 #define MPT3SAS_PROCESS_TRIGGER_DIAG (0xFFFB)
162 #define MPT3SAS_TURN_ON_FAULT_LED (0xFFFC)
163 #define MPT3SAS_PORT_ENABLE_COMPLETE (0xFFFD)
164 #define MPT3SAS_ABRT_TASK_SET (0xFFFE)
165 #define MPT3SAS_REMOVE_UNRESPONDING_DEVICES (0xFFFF)
167 * struct fw_event_work - firmware event struct
168 * @list: link list framework
169 * @work: work object (ioc->fault_reset_work_q)
170 * @cancel_pending_work: flag set during reset handling
171 * @ioc: per adapter object
172 * @device_handle: device handle
173 * @VF_ID: virtual function id
174 * @VP_ID: virtual port id
175 * @ignore: flag meaning this event has been marked to ignore
176 * @event: firmware event MPI2_EVENT_XXX defined in mpt2_ioc.h
177 * @event_data: reply event data payload follows
179 * This object stored on ioc->fw_event_list.
181 struct fw_event_work
{
182 struct list_head list
;
183 struct work_struct work
;
184 u8 cancel_pending_work
;
185 struct delayed_work delayed_work
;
187 struct MPT3SAS_ADAPTER
*ioc
;
196 /* raid transport support */
197 static struct raid_template
*mpt3sas_raid_template
;
200 * struct _scsi_io_transfer - scsi io transfer
201 * @handle: sas device handle (assigned by firmware)
202 * @is_raid: flag set for hidden raid components
203 * @dir: DMA_TO_DEVICE, DMA_FROM_DEVICE,
204 * @data_length: data transfer length
205 * @data_dma: dma pointer to data
208 * @cdb_length: cdb length
210 * @timeout: timeout for this command
211 * @VF_ID: virtual function id
212 * @VP_ID: virtual port id
213 * @valid_reply: flag set for reply message
214 * @sense_length: sense length
215 * @ioc_status: ioc status
216 * @scsi_state: scsi state
217 * @scsi_status: scsi staus
218 * @log_info: log information
219 * @transfer_length: data length transfer when there is a reply message
221 * Used for sending internal scsi commands to devices within this module.
222 * Refer to _scsi_send_scsi_io().
224 struct _scsi_io_transfer
{
227 enum dma_data_direction dir
;
230 u8 sense
[SCSI_SENSE_BUFFERSIZE
];
238 /* the following bits are only valid when 'valid_reply = 1' */
248 * The pci device ids are defined in mpi/mpi2_cnfg.h.
250 static DEFINE_PCI_DEVICE_TABLE(scsih_pci_table
) = {
251 /* Fury ~ 3004 and 3008 */
252 { MPI2_MFGPAGE_VENDORID_LSI
, MPI25_MFGPAGE_DEVID_SAS3004
,
253 PCI_ANY_ID
, PCI_ANY_ID
},
254 { MPI2_MFGPAGE_VENDORID_LSI
, MPI25_MFGPAGE_DEVID_SAS3008
,
255 PCI_ANY_ID
, PCI_ANY_ID
},
257 { MPI2_MFGPAGE_VENDORID_LSI
, MPI25_MFGPAGE_DEVID_SAS3108_1
,
258 PCI_ANY_ID
, PCI_ANY_ID
},
259 { MPI2_MFGPAGE_VENDORID_LSI
, MPI25_MFGPAGE_DEVID_SAS3108_2
,
260 PCI_ANY_ID
, PCI_ANY_ID
},
261 { MPI2_MFGPAGE_VENDORID_LSI
, MPI25_MFGPAGE_DEVID_SAS3108_5
,
262 PCI_ANY_ID
, PCI_ANY_ID
},
263 { MPI2_MFGPAGE_VENDORID_LSI
, MPI25_MFGPAGE_DEVID_SAS3108_6
,
264 PCI_ANY_ID
, PCI_ANY_ID
},
265 {0} /* Terminating entry */
267 MODULE_DEVICE_TABLE(pci
, scsih_pci_table
);
270 * _scsih_set_debug_level - global setting of ioc->logging_level.
272 * Note: The logging levels are defined in mpt3sas_debug.h.
275 _scsih_set_debug_level(const char *val
, struct kernel_param
*kp
)
277 int ret
= param_set_int(val
, kp
);
278 struct MPT3SAS_ADAPTER
*ioc
;
283 pr_info("setting logging_level(0x%08x)\n", logging_level
);
284 list_for_each_entry(ioc
, &mpt3sas_ioc_list
, list
)
285 ioc
->logging_level
= logging_level
;
288 module_param_call(logging_level
, _scsih_set_debug_level
, param_get_int
,
289 &logging_level
, 0644);
292 * _scsih_srch_boot_sas_address - search based on sas_address
293 * @sas_address: sas address
294 * @boot_device: boot device object from bios page 2
296 * Returns 1 when there's a match, 0 means no match.
299 _scsih_srch_boot_sas_address(u64 sas_address
,
300 Mpi2BootDeviceSasWwid_t
*boot_device
)
302 return (sas_address
== le64_to_cpu(boot_device
->SASAddress
)) ? 1 : 0;
306 * _scsih_srch_boot_device_name - search based on device name
307 * @device_name: device name specified in INDENTIFY fram
308 * @boot_device: boot device object from bios page 2
310 * Returns 1 when there's a match, 0 means no match.
313 _scsih_srch_boot_device_name(u64 device_name
,
314 Mpi2BootDeviceDeviceName_t
*boot_device
)
316 return (device_name
== le64_to_cpu(boot_device
->DeviceName
)) ? 1 : 0;
320 * _scsih_srch_boot_encl_slot - search based on enclosure_logical_id/slot
321 * @enclosure_logical_id: enclosure logical id
322 * @slot_number: slot number
323 * @boot_device: boot device object from bios page 2
325 * Returns 1 when there's a match, 0 means no match.
328 _scsih_srch_boot_encl_slot(u64 enclosure_logical_id
, u16 slot_number
,
329 Mpi2BootDeviceEnclosureSlot_t
*boot_device
)
331 return (enclosure_logical_id
== le64_to_cpu(boot_device
->
332 EnclosureLogicalID
) && slot_number
== le16_to_cpu(boot_device
->
333 SlotNumber
)) ? 1 : 0;
337 * _scsih_is_boot_device - search for matching boot device.
338 * @sas_address: sas address
339 * @device_name: device name specified in INDENTIFY fram
340 * @enclosure_logical_id: enclosure logical id
341 * @slot_number: slot number
342 * @form: specifies boot device form
343 * @boot_device: boot device object from bios page 2
345 * Returns 1 when there's a match, 0 means no match.
348 _scsih_is_boot_device(u64 sas_address
, u64 device_name
,
349 u64 enclosure_logical_id
, u16 slot
, u8 form
,
350 Mpi2BiosPage2BootDevice_t
*boot_device
)
355 case MPI2_BIOSPAGE2_FORM_SAS_WWID
:
358 rc
= _scsih_srch_boot_sas_address(
359 sas_address
, &boot_device
->SasWwid
);
361 case MPI2_BIOSPAGE2_FORM_ENCLOSURE_SLOT
:
362 if (!enclosure_logical_id
)
364 rc
= _scsih_srch_boot_encl_slot(
365 enclosure_logical_id
,
366 slot
, &boot_device
->EnclosureSlot
);
368 case MPI2_BIOSPAGE2_FORM_DEVICE_NAME
:
371 rc
= _scsih_srch_boot_device_name(
372 device_name
, &boot_device
->DeviceName
);
374 case MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED
:
382 * _scsih_get_sas_address - set the sas_address for given device handle
383 * @handle: device handle
384 * @sas_address: sas address
386 * Returns 0 success, non-zero when failure
389 _scsih_get_sas_address(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
,
392 Mpi2SasDevicePage0_t sas_device_pg0
;
393 Mpi2ConfigReply_t mpi_reply
;
398 if (handle
<= ioc
->sas_hba
.num_phys
) {
399 *sas_address
= ioc
->sas_hba
.sas_address
;
403 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
404 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
405 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n", ioc
->name
,
406 __FILE__
, __LINE__
, __func__
);
410 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
411 if (ioc_status
== MPI2_IOCSTATUS_SUCCESS
) {
412 *sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
416 /* we hit this becuase the given parent handle doesn't exist */
417 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
420 /* else error case */
422 "handle(0x%04x), ioc_status(0x%04x), failure at %s:%d/%s()!\n",
423 ioc
->name
, handle
, ioc_status
,
424 __FILE__
, __LINE__
, __func__
);
429 * _scsih_determine_boot_device - determine boot device.
430 * @ioc: per adapter object
431 * @device: either sas_device or raid_device object
432 * @is_raid: [flag] 1 = raid object, 0 = sas object
434 * Determines whether this device should be first reported device to
435 * to scsi-ml or sas transport, this purpose is for persistent boot device.
436 * There are primary, alternate, and current entries in bios page 2. The order
437 * priority is primary, alternate, then current. This routine saves
438 * the corresponding device object and is_raid flag in the ioc object.
439 * The saved data to be used later in _scsih_probe_boot_devices().
442 _scsih_determine_boot_device(struct MPT3SAS_ADAPTER
*ioc
,
443 void *device
, u8 is_raid
)
445 struct _sas_device
*sas_device
;
446 struct _raid_device
*raid_device
;
449 u64 enclosure_logical_id
;
452 /* only process this function when driver loads */
453 if (!ioc
->is_driver_loading
)
456 /* no Bios, return immediately */
457 if (!ioc
->bios_pg3
.BiosVersion
)
462 sas_address
= sas_device
->sas_address
;
463 device_name
= sas_device
->device_name
;
464 enclosure_logical_id
= sas_device
->enclosure_logical_id
;
465 slot
= sas_device
->slot
;
467 raid_device
= device
;
468 sas_address
= raid_device
->wwid
;
470 enclosure_logical_id
= 0;
474 if (!ioc
->req_boot_device
.device
) {
475 if (_scsih_is_boot_device(sas_address
, device_name
,
476 enclosure_logical_id
, slot
,
477 (ioc
->bios_pg2
.ReqBootDeviceForm
&
478 MPI2_BIOSPAGE2_FORM_MASK
),
479 &ioc
->bios_pg2
.RequestedBootDevice
)) {
480 dinitprintk(ioc
, pr_info(MPT3SAS_FMT
481 "%s: req_boot_device(0x%016llx)\n",
483 (unsigned long long)sas_address
));
484 ioc
->req_boot_device
.device
= device
;
485 ioc
->req_boot_device
.is_raid
= is_raid
;
489 if (!ioc
->req_alt_boot_device
.device
) {
490 if (_scsih_is_boot_device(sas_address
, device_name
,
491 enclosure_logical_id
, slot
,
492 (ioc
->bios_pg2
.ReqAltBootDeviceForm
&
493 MPI2_BIOSPAGE2_FORM_MASK
),
494 &ioc
->bios_pg2
.RequestedAltBootDevice
)) {
495 dinitprintk(ioc
, pr_info(MPT3SAS_FMT
496 "%s: req_alt_boot_device(0x%016llx)\n",
498 (unsigned long long)sas_address
));
499 ioc
->req_alt_boot_device
.device
= device
;
500 ioc
->req_alt_boot_device
.is_raid
= is_raid
;
504 if (!ioc
->current_boot_device
.device
) {
505 if (_scsih_is_boot_device(sas_address
, device_name
,
506 enclosure_logical_id
, slot
,
507 (ioc
->bios_pg2
.CurrentBootDeviceForm
&
508 MPI2_BIOSPAGE2_FORM_MASK
),
509 &ioc
->bios_pg2
.CurrentBootDevice
)) {
510 dinitprintk(ioc
, pr_info(MPT3SAS_FMT
511 "%s: current_boot_device(0x%016llx)\n",
513 (unsigned long long)sas_address
));
514 ioc
->current_boot_device
.device
= device
;
515 ioc
->current_boot_device
.is_raid
= is_raid
;
521 * mpt3sas_scsih_sas_device_find_by_sas_address - sas device search
522 * @ioc: per adapter object
523 * @sas_address: sas address
524 * Context: Calling function should acquire ioc->sas_device_lock
526 * This searches for sas_device based on sas_address, then return sas_device
530 mpt3sas_scsih_sas_device_find_by_sas_address(struct MPT3SAS_ADAPTER
*ioc
,
533 struct _sas_device
*sas_device
;
535 list_for_each_entry(sas_device
, &ioc
->sas_device_list
, list
)
536 if (sas_device
->sas_address
== sas_address
)
539 list_for_each_entry(sas_device
, &ioc
->sas_device_init_list
, list
)
540 if (sas_device
->sas_address
== sas_address
)
547 * _scsih_sas_device_find_by_handle - sas device search
548 * @ioc: per adapter object
549 * @handle: sas device handle (assigned by firmware)
550 * Context: Calling function should acquire ioc->sas_device_lock
552 * This searches for sas_device based on sas_address, then return sas_device
555 static struct _sas_device
*
556 _scsih_sas_device_find_by_handle(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
558 struct _sas_device
*sas_device
;
560 list_for_each_entry(sas_device
, &ioc
->sas_device_list
, list
)
561 if (sas_device
->handle
== handle
)
564 list_for_each_entry(sas_device
, &ioc
->sas_device_init_list
, list
)
565 if (sas_device
->handle
== handle
)
572 * _scsih_sas_device_remove - remove sas_device from list.
573 * @ioc: per adapter object
574 * @sas_device: the sas_device object
575 * Context: This function will acquire ioc->sas_device_lock.
577 * Removing object and freeing associated memory from the ioc->sas_device_list.
580 _scsih_sas_device_remove(struct MPT3SAS_ADAPTER
*ioc
,
581 struct _sas_device
*sas_device
)
588 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
589 list_del(&sas_device
->list
);
591 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
595 * _scsih_device_remove_by_handle - removing device object by handle
596 * @ioc: per adapter object
597 * @handle: device handle
602 _scsih_device_remove_by_handle(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
604 struct _sas_device
*sas_device
;
607 if (ioc
->shost_recovery
)
610 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
611 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
613 list_del(&sas_device
->list
);
614 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
616 _scsih_remove_device(ioc
, sas_device
);
620 * mpt3sas_device_remove_by_sas_address - removing device object by sas address
621 * @ioc: per adapter object
622 * @sas_address: device sas_address
627 mpt3sas_device_remove_by_sas_address(struct MPT3SAS_ADAPTER
*ioc
,
630 struct _sas_device
*sas_device
;
633 if (ioc
->shost_recovery
)
636 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
637 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
640 list_del(&sas_device
->list
);
641 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
643 _scsih_remove_device(ioc
, sas_device
);
647 * _scsih_sas_device_add - insert sas_device to the list.
648 * @ioc: per adapter object
649 * @sas_device: the sas_device object
650 * Context: This function will acquire ioc->sas_device_lock.
652 * Adding new object to the ioc->sas_device_list.
655 _scsih_sas_device_add(struct MPT3SAS_ADAPTER
*ioc
,
656 struct _sas_device
*sas_device
)
660 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
661 "%s: handle(0x%04x), sas_addr(0x%016llx)\n",
662 ioc
->name
, __func__
, sas_device
->handle
,
663 (unsigned long long)sas_device
->sas_address
));
665 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
666 list_add_tail(&sas_device
->list
, &ioc
->sas_device_list
);
667 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
669 if (!mpt3sas_transport_port_add(ioc
, sas_device
->handle
,
670 sas_device
->sas_address_parent
)) {
671 _scsih_sas_device_remove(ioc
, sas_device
);
672 } else if (!sas_device
->starget
) {
674 * When asyn scanning is enabled, its not possible to remove
675 * devices while scanning is turned on due to an oops in
676 * scsi_sysfs_add_sdev()->add_device()->sysfs_addrm_start()
678 if (!ioc
->is_driver_loading
) {
679 mpt3sas_transport_port_remove(ioc
,
680 sas_device
->sas_address
,
681 sas_device
->sas_address_parent
);
682 _scsih_sas_device_remove(ioc
, sas_device
);
688 * _scsih_sas_device_init_add - insert sas_device to the list.
689 * @ioc: per adapter object
690 * @sas_device: the sas_device object
691 * Context: This function will acquire ioc->sas_device_lock.
693 * Adding new object at driver load time to the ioc->sas_device_init_list.
696 _scsih_sas_device_init_add(struct MPT3SAS_ADAPTER
*ioc
,
697 struct _sas_device
*sas_device
)
701 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
702 "%s: handle(0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
703 __func__
, sas_device
->handle
,
704 (unsigned long long)sas_device
->sas_address
));
706 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
707 list_add_tail(&sas_device
->list
, &ioc
->sas_device_init_list
);
708 _scsih_determine_boot_device(ioc
, sas_device
, 0);
709 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
713 * _scsih_raid_device_find_by_id - raid device search
714 * @ioc: per adapter object
715 * @id: sas device target id
716 * @channel: sas device channel
717 * Context: Calling function should acquire ioc->raid_device_lock
719 * This searches for raid_device based on target id, then return raid_device
722 static struct _raid_device
*
723 _scsih_raid_device_find_by_id(struct MPT3SAS_ADAPTER
*ioc
, int id
, int channel
)
725 struct _raid_device
*raid_device
, *r
;
728 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
729 if (raid_device
->id
== id
&& raid_device
->channel
== channel
) {
740 * _scsih_raid_device_find_by_handle - raid device search
741 * @ioc: per adapter object
742 * @handle: sas device handle (assigned by firmware)
743 * Context: Calling function should acquire ioc->raid_device_lock
745 * This searches for raid_device based on handle, then return raid_device
748 static struct _raid_device
*
749 _scsih_raid_device_find_by_handle(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
751 struct _raid_device
*raid_device
, *r
;
754 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
755 if (raid_device
->handle
!= handle
)
766 * _scsih_raid_device_find_by_wwid - raid device search
767 * @ioc: per adapter object
768 * @handle: sas device handle (assigned by firmware)
769 * Context: Calling function should acquire ioc->raid_device_lock
771 * This searches for raid_device based on wwid, then return raid_device
774 static struct _raid_device
*
775 _scsih_raid_device_find_by_wwid(struct MPT3SAS_ADAPTER
*ioc
, u64 wwid
)
777 struct _raid_device
*raid_device
, *r
;
780 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
781 if (raid_device
->wwid
!= wwid
)
792 * _scsih_raid_device_add - add raid_device object
793 * @ioc: per adapter object
794 * @raid_device: raid_device object
796 * This is added to the raid_device_list link list.
799 _scsih_raid_device_add(struct MPT3SAS_ADAPTER
*ioc
,
800 struct _raid_device
*raid_device
)
804 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
805 "%s: handle(0x%04x), wwid(0x%016llx)\n", ioc
->name
, __func__
,
806 raid_device
->handle
, (unsigned long long)raid_device
->wwid
));
808 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
809 list_add_tail(&raid_device
->list
, &ioc
->raid_device_list
);
810 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
814 * _scsih_raid_device_remove - delete raid_device object
815 * @ioc: per adapter object
816 * @raid_device: raid_device object
820 _scsih_raid_device_remove(struct MPT3SAS_ADAPTER
*ioc
,
821 struct _raid_device
*raid_device
)
825 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
826 list_del(&raid_device
->list
);
828 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
832 * mpt3sas_scsih_expander_find_by_handle - expander device search
833 * @ioc: per adapter object
834 * @handle: expander handle (assigned by firmware)
835 * Context: Calling function should acquire ioc->sas_device_lock
837 * This searches for expander device based on handle, then returns the
841 mpt3sas_scsih_expander_find_by_handle(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
843 struct _sas_node
*sas_expander
, *r
;
846 list_for_each_entry(sas_expander
, &ioc
->sas_expander_list
, list
) {
847 if (sas_expander
->handle
!= handle
)
857 * mpt3sas_scsih_expander_find_by_sas_address - expander device search
858 * @ioc: per adapter object
859 * @sas_address: sas address
860 * Context: Calling function should acquire ioc->sas_node_lock.
862 * This searches for expander device based on sas_address, then returns the
866 mpt3sas_scsih_expander_find_by_sas_address(struct MPT3SAS_ADAPTER
*ioc
,
869 struct _sas_node
*sas_expander
, *r
;
872 list_for_each_entry(sas_expander
, &ioc
->sas_expander_list
, list
) {
873 if (sas_expander
->sas_address
!= sas_address
)
883 * _scsih_expander_node_add - insert expander device to the list.
884 * @ioc: per adapter object
885 * @sas_expander: the sas_device object
886 * Context: This function will acquire ioc->sas_node_lock.
888 * Adding new object to the ioc->sas_expander_list.
893 _scsih_expander_node_add(struct MPT3SAS_ADAPTER
*ioc
,
894 struct _sas_node
*sas_expander
)
898 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
899 list_add_tail(&sas_expander
->list
, &ioc
->sas_expander_list
);
900 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
904 * _scsih_is_end_device - determines if device is an end device
905 * @device_info: bitfield providing information about the device.
908 * Returns 1 if end device.
911 _scsih_is_end_device(u32 device_info
)
913 if (device_info
& MPI2_SAS_DEVICE_INFO_END_DEVICE
&&
914 ((device_info
& MPI2_SAS_DEVICE_INFO_SSP_TARGET
) |
915 (device_info
& MPI2_SAS_DEVICE_INFO_STP_TARGET
) |
916 (device_info
& MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)))
923 * _scsih_scsi_lookup_get - returns scmd entry
924 * @ioc: per adapter object
925 * @smid: system request message index
927 * Returns the smid stored scmd pointer.
929 static struct scsi_cmnd
*
930 _scsih_scsi_lookup_get(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
)
932 return ioc
->scsi_lookup
[smid
- 1].scmd
;
936 * _scsih_scsi_lookup_get_clear - returns scmd entry
937 * @ioc: per adapter object
938 * @smid: system request message index
940 * Returns the smid stored scmd pointer.
941 * Then will derefrence the stored scmd pointer.
943 static inline struct scsi_cmnd
*
944 _scsih_scsi_lookup_get_clear(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
)
947 struct scsi_cmnd
*scmd
;
949 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
950 scmd
= ioc
->scsi_lookup
[smid
- 1].scmd
;
951 ioc
->scsi_lookup
[smid
- 1].scmd
= NULL
;
952 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
958 * _scsih_scsi_lookup_find_by_scmd - scmd lookup
959 * @ioc: per adapter object
960 * @smid: system request message index
961 * @scmd: pointer to scsi command object
962 * Context: This function will acquire ioc->scsi_lookup_lock.
964 * This will search for a scmd pointer in the scsi_lookup array,
965 * returning the revelent smid. A returned value of zero means invalid.
968 _scsih_scsi_lookup_find_by_scmd(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_cmnd
975 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
977 for (i
= 0; i
< ioc
->scsiio_depth
; i
++) {
978 if (ioc
->scsi_lookup
[i
].scmd
== scmd
) {
979 smid
= ioc
->scsi_lookup
[i
].smid
;
984 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
989 * _scsih_scsi_lookup_find_by_target - search for matching channel:id
990 * @ioc: per adapter object
993 * Context: This function will acquire ioc->scsi_lookup_lock.
995 * This will search for a matching channel:id in the scsi_lookup array,
996 * returning 1 if found.
999 _scsih_scsi_lookup_find_by_target(struct MPT3SAS_ADAPTER
*ioc
, int id
,
1003 unsigned long flags
;
1006 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
1008 for (i
= 0 ; i
< ioc
->scsiio_depth
; i
++) {
1009 if (ioc
->scsi_lookup
[i
].scmd
&&
1010 (ioc
->scsi_lookup
[i
].scmd
->device
->id
== id
&&
1011 ioc
->scsi_lookup
[i
].scmd
->device
->channel
== channel
)) {
1017 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1022 * _scsih_scsi_lookup_find_by_lun - search for matching channel:id:lun
1023 * @ioc: per adapter object
1027 * Context: This function will acquire ioc->scsi_lookup_lock.
1029 * This will search for a matching channel:id:lun in the scsi_lookup array,
1030 * returning 1 if found.
1033 _scsih_scsi_lookup_find_by_lun(struct MPT3SAS_ADAPTER
*ioc
, int id
,
1034 unsigned int lun
, int channel
)
1037 unsigned long flags
;
1040 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
1042 for (i
= 0 ; i
< ioc
->scsiio_depth
; i
++) {
1043 if (ioc
->scsi_lookup
[i
].scmd
&&
1044 (ioc
->scsi_lookup
[i
].scmd
->device
->id
== id
&&
1045 ioc
->scsi_lookup
[i
].scmd
->device
->channel
== channel
&&
1046 ioc
->scsi_lookup
[i
].scmd
->device
->lun
== lun
)) {
1052 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1058 _scsih_adjust_queue_depth(struct scsi_device
*sdev
, int qdepth
)
1060 struct Scsi_Host
*shost
= sdev
->host
;
1062 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
1063 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1064 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1065 struct _sas_device
*sas_device
;
1066 unsigned long flags
;
1068 max_depth
= shost
->can_queue
;
1070 /* limit max device queue for SATA to 32 */
1071 sas_device_priv_data
= sdev
->hostdata
;
1072 if (!sas_device_priv_data
)
1074 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
1075 if (!sas_target_priv_data
)
1077 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
))
1079 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1080 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1081 sas_device_priv_data
->sas_target
->sas_address
);
1082 if (sas_device
&& sas_device
->device_info
&
1083 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
1084 max_depth
= MPT3SAS_SATA_QUEUE_DEPTH
;
1085 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1089 if (!sdev
->tagged_supported
)
1091 if (qdepth
> max_depth
)
1093 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), qdepth
);
1097 * _scsih_change_queue_depth - setting device queue depth
1098 * @sdev: scsi device struct
1099 * @qdepth: requested queue depth
1100 * @reason: SCSI_QDEPTH_DEFAULT/SCSI_QDEPTH_QFULL/SCSI_QDEPTH_RAMP_UP
1101 * (see include/scsi/scsi_host.h for definition)
1103 * Returns queue depth.
1106 _scsih_change_queue_depth(struct scsi_device
*sdev
, int qdepth
, int reason
)
1108 if (reason
== SCSI_QDEPTH_DEFAULT
|| reason
== SCSI_QDEPTH_RAMP_UP
)
1109 _scsih_adjust_queue_depth(sdev
, qdepth
);
1110 else if (reason
== SCSI_QDEPTH_QFULL
)
1111 scsi_track_queue_full(sdev
, qdepth
);
1115 if (sdev
->inquiry_len
> 7)
1116 sdev_printk(KERN_INFO
, sdev
, "qdepth(%d), tagged(%d), " \
1117 "simple(%d), ordered(%d), scsi_level(%d), cmd_que(%d)\n",
1118 sdev
->queue_depth
, sdev
->tagged_supported
, sdev
->simple_tags
,
1119 sdev
->ordered_tags
, sdev
->scsi_level
,
1120 (sdev
->inquiry
[7] & 2) >> 1);
1122 return sdev
->queue_depth
;
1126 * _scsih_change_queue_type - changing device queue tag type
1127 * @sdev: scsi device struct
1128 * @tag_type: requested tag type
1130 * Returns queue tag type.
1133 _scsih_change_queue_type(struct scsi_device
*sdev
, int tag_type
)
1135 if (sdev
->tagged_supported
) {
1136 scsi_set_tag_type(sdev
, tag_type
);
1138 scsi_activate_tcq(sdev
, sdev
->queue_depth
);
1140 scsi_deactivate_tcq(sdev
, sdev
->queue_depth
);
1149 * _scsih_target_alloc - target add routine
1150 * @starget: scsi target struct
1152 * Returns 0 if ok. Any other return is assumed to be an error and
1153 * the device is ignored.
1156 _scsih_target_alloc(struct scsi_target
*starget
)
1158 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
1159 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
1160 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1161 struct _sas_device
*sas_device
;
1162 struct _raid_device
*raid_device
;
1163 unsigned long flags
;
1164 struct sas_rphy
*rphy
;
1166 sas_target_priv_data
= kzalloc(sizeof(struct scsi_target
), GFP_KERNEL
);
1167 if (!sas_target_priv_data
)
1170 starget
->hostdata
= sas_target_priv_data
;
1171 sas_target_priv_data
->starget
= starget
;
1172 sas_target_priv_data
->handle
= MPT3SAS_INVALID_DEVICE_HANDLE
;
1175 if (starget
->channel
== RAID_CHANNEL
) {
1176 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1177 raid_device
= _scsih_raid_device_find_by_id(ioc
, starget
->id
,
1180 sas_target_priv_data
->handle
= raid_device
->handle
;
1181 sas_target_priv_data
->sas_address
= raid_device
->wwid
;
1182 sas_target_priv_data
->flags
|= MPT_TARGET_FLAGS_VOLUME
;
1183 raid_device
->starget
= starget
;
1185 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1189 /* sas/sata devices */
1190 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1191 rphy
= dev_to_rphy(starget
->dev
.parent
);
1192 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1193 rphy
->identify
.sas_address
);
1196 sas_target_priv_data
->handle
= sas_device
->handle
;
1197 sas_target_priv_data
->sas_address
= sas_device
->sas_address
;
1198 sas_device
->starget
= starget
;
1199 sas_device
->id
= starget
->id
;
1200 sas_device
->channel
= starget
->channel
;
1201 if (test_bit(sas_device
->handle
, ioc
->pd_handles
))
1202 sas_target_priv_data
->flags
|=
1203 MPT_TARGET_FLAGS_RAID_COMPONENT
;
1204 if (sas_device
->fast_path
)
1205 sas_target_priv_data
->flags
|= MPT_TARGET_FASTPATH_IO
;
1207 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1213 * _scsih_target_destroy - target destroy routine
1214 * @starget: scsi target struct
1219 _scsih_target_destroy(struct scsi_target
*starget
)
1221 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
1222 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
1223 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1224 struct _sas_device
*sas_device
;
1225 struct _raid_device
*raid_device
;
1226 unsigned long flags
;
1227 struct sas_rphy
*rphy
;
1229 sas_target_priv_data
= starget
->hostdata
;
1230 if (!sas_target_priv_data
)
1233 if (starget
->channel
== RAID_CHANNEL
) {
1234 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1235 raid_device
= _scsih_raid_device_find_by_id(ioc
, starget
->id
,
1238 raid_device
->starget
= NULL
;
1239 raid_device
->sdev
= NULL
;
1241 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1245 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1246 rphy
= dev_to_rphy(starget
->dev
.parent
);
1247 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1248 rphy
->identify
.sas_address
);
1249 if (sas_device
&& (sas_device
->starget
== starget
) &&
1250 (sas_device
->id
== starget
->id
) &&
1251 (sas_device
->channel
== starget
->channel
))
1252 sas_device
->starget
= NULL
;
1254 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1257 kfree(sas_target_priv_data
);
1258 starget
->hostdata
= NULL
;
1262 * _scsih_slave_alloc - device add routine
1263 * @sdev: scsi device struct
1265 * Returns 0 if ok. Any other return is assumed to be an error and
1266 * the device is ignored.
1269 _scsih_slave_alloc(struct scsi_device
*sdev
)
1271 struct Scsi_Host
*shost
;
1272 struct MPT3SAS_ADAPTER
*ioc
;
1273 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1274 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1275 struct scsi_target
*starget
;
1276 struct _raid_device
*raid_device
;
1277 struct _sas_device
*sas_device
;
1278 unsigned long flags
;
1280 sas_device_priv_data
= kzalloc(sizeof(struct scsi_device
), GFP_KERNEL
);
1281 if (!sas_device_priv_data
)
1284 sas_device_priv_data
->lun
= sdev
->lun
;
1285 sas_device_priv_data
->flags
= MPT_DEVICE_FLAGS_INIT
;
1287 starget
= scsi_target(sdev
);
1288 sas_target_priv_data
= starget
->hostdata
;
1289 sas_target_priv_data
->num_luns
++;
1290 sas_device_priv_data
->sas_target
= sas_target_priv_data
;
1291 sdev
->hostdata
= sas_device_priv_data
;
1292 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
))
1293 sdev
->no_uld_attach
= 1;
1295 shost
= dev_to_shost(&starget
->dev
);
1296 ioc
= shost_priv(shost
);
1297 if (starget
->channel
== RAID_CHANNEL
) {
1298 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1299 raid_device
= _scsih_raid_device_find_by_id(ioc
,
1300 starget
->id
, starget
->channel
);
1302 raid_device
->sdev
= sdev
; /* raid is single lun */
1303 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1306 if (!(sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
)) {
1307 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1308 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1309 sas_target_priv_data
->sas_address
);
1310 if (sas_device
&& (sas_device
->starget
== NULL
)) {
1311 sdev_printk(KERN_INFO
, sdev
,
1312 "%s : sas_device->starget set to starget @ %d\n",
1313 __func__
, __LINE__
);
1314 sas_device
->starget
= starget
;
1316 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1323 * _scsih_slave_destroy - device destroy routine
1324 * @sdev: scsi device struct
1329 _scsih_slave_destroy(struct scsi_device
*sdev
)
1331 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1332 struct scsi_target
*starget
;
1333 struct Scsi_Host
*shost
;
1334 struct MPT3SAS_ADAPTER
*ioc
;
1335 struct _sas_device
*sas_device
;
1336 unsigned long flags
;
1338 if (!sdev
->hostdata
)
1341 starget
= scsi_target(sdev
);
1342 sas_target_priv_data
= starget
->hostdata
;
1343 sas_target_priv_data
->num_luns
--;
1345 shost
= dev_to_shost(&starget
->dev
);
1346 ioc
= shost_priv(shost
);
1348 if (!(sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
)) {
1349 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1350 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1351 sas_target_priv_data
->sas_address
);
1352 if (sas_device
&& !sas_target_priv_data
->num_luns
)
1353 sas_device
->starget
= NULL
;
1354 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1357 kfree(sdev
->hostdata
);
1358 sdev
->hostdata
= NULL
;
1362 * _scsih_display_sata_capabilities - sata capabilities
1363 * @ioc: per adapter object
1364 * @handle: device handle
1365 * @sdev: scsi device struct
1368 _scsih_display_sata_capabilities(struct MPT3SAS_ADAPTER
*ioc
,
1369 u16 handle
, struct scsi_device
*sdev
)
1371 Mpi2ConfigReply_t mpi_reply
;
1372 Mpi2SasDevicePage0_t sas_device_pg0
;
1377 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
1378 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
1379 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
1380 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1384 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
1385 MPI2_IOCSTATUS_MASK
;
1386 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
1387 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
1388 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1392 flags
= le16_to_cpu(sas_device_pg0
.Flags
);
1393 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
1395 sdev_printk(KERN_INFO
, sdev
,
1396 "atapi(%s), ncq(%s), asyn_notify(%s), smart(%s), fua(%s), "
1397 "sw_preserve(%s)\n",
1398 (device_info
& MPI2_SAS_DEVICE_INFO_ATAPI_DEVICE
) ? "y" : "n",
1399 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_NCQ_SUPPORTED
) ? "y" : "n",
1400 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_ASYNCHRONOUS_NOTIFY
) ? "y" :
1402 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_SMART_SUPPORTED
) ? "y" : "n",
1403 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_FUA_SUPPORTED
) ? "y" : "n",
1404 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_SW_PRESERVE
) ? "y" : "n");
1408 * raid transport support -
1409 * Enabled for SLES11 and newer, in older kernels the driver will panic when
1410 * unloading the driver followed by a load - I beleive that the subroutine
1411 * raid_class_release() is not cleaning up properly.
1415 * _scsih_is_raid - return boolean indicating device is raid volume
1416 * @dev the device struct object
1419 _scsih_is_raid(struct device
*dev
)
1421 struct scsi_device
*sdev
= to_scsi_device(dev
);
1423 return (sdev
->channel
== RAID_CHANNEL
) ? 1 : 0;
1427 * _scsih_get_resync - get raid volume resync percent complete
1428 * @dev the device struct object
1431 _scsih_get_resync(struct device
*dev
)
1433 struct scsi_device
*sdev
= to_scsi_device(dev
);
1434 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(sdev
->host
);
1435 static struct _raid_device
*raid_device
;
1436 unsigned long flags
;
1437 Mpi2RaidVolPage0_t vol_pg0
;
1438 Mpi2ConfigReply_t mpi_reply
;
1439 u32 volume_status_flags
;
1440 u8 percent_complete
;
1443 percent_complete
= 0;
1445 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1446 raid_device
= _scsih_raid_device_find_by_id(ioc
, sdev
->id
,
1449 handle
= raid_device
->handle
;
1450 percent_complete
= raid_device
->percent_complete
;
1452 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1457 if (mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, &vol_pg0
,
1458 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
1459 sizeof(Mpi2RaidVolPage0_t
))) {
1460 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
1461 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1462 percent_complete
= 0;
1466 volume_status_flags
= le32_to_cpu(vol_pg0
.VolumeStatusFlags
);
1467 if (!(volume_status_flags
&
1468 MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS
))
1469 percent_complete
= 0;
1472 raid_set_resync(mpt3sas_raid_template
, dev
, percent_complete
);
1476 * _scsih_get_state - get raid volume level
1477 * @dev the device struct object
1480 _scsih_get_state(struct device
*dev
)
1482 struct scsi_device
*sdev
= to_scsi_device(dev
);
1483 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(sdev
->host
);
1484 static struct _raid_device
*raid_device
;
1485 unsigned long flags
;
1486 Mpi2RaidVolPage0_t vol_pg0
;
1487 Mpi2ConfigReply_t mpi_reply
;
1489 enum raid_state state
= RAID_STATE_UNKNOWN
;
1492 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1493 raid_device
= _scsih_raid_device_find_by_id(ioc
, sdev
->id
,
1496 handle
= raid_device
->handle
;
1497 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1502 if (mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, &vol_pg0
,
1503 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
1504 sizeof(Mpi2RaidVolPage0_t
))) {
1505 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
1506 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1510 volstate
= le32_to_cpu(vol_pg0
.VolumeStatusFlags
);
1511 if (volstate
& MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS
) {
1512 state
= RAID_STATE_RESYNCING
;
1516 switch (vol_pg0
.VolumeState
) {
1517 case MPI2_RAID_VOL_STATE_OPTIMAL
:
1518 case MPI2_RAID_VOL_STATE_ONLINE
:
1519 state
= RAID_STATE_ACTIVE
;
1521 case MPI2_RAID_VOL_STATE_DEGRADED
:
1522 state
= RAID_STATE_DEGRADED
;
1524 case MPI2_RAID_VOL_STATE_FAILED
:
1525 case MPI2_RAID_VOL_STATE_MISSING
:
1526 state
= RAID_STATE_OFFLINE
;
1530 raid_set_state(mpt3sas_raid_template
, dev
, state
);
1534 * _scsih_set_level - set raid level
1535 * @sdev: scsi device struct
1536 * @volume_type: volume type
1539 _scsih_set_level(struct scsi_device
*sdev
, u8 volume_type
)
1541 enum raid_level level
= RAID_LEVEL_UNKNOWN
;
1543 switch (volume_type
) {
1544 case MPI2_RAID_VOL_TYPE_RAID0
:
1545 level
= RAID_LEVEL_0
;
1547 case MPI2_RAID_VOL_TYPE_RAID10
:
1548 level
= RAID_LEVEL_10
;
1550 case MPI2_RAID_VOL_TYPE_RAID1E
:
1551 level
= RAID_LEVEL_1E
;
1553 case MPI2_RAID_VOL_TYPE_RAID1
:
1554 level
= RAID_LEVEL_1
;
1558 raid_set_level(mpt3sas_raid_template
, &sdev
->sdev_gendev
, level
);
1563 * _scsih_get_volume_capabilities - volume capabilities
1564 * @ioc: per adapter object
1565 * @sas_device: the raid_device object
1567 * Returns 0 for success, else 1
1570 _scsih_get_volume_capabilities(struct MPT3SAS_ADAPTER
*ioc
,
1571 struct _raid_device
*raid_device
)
1573 Mpi2RaidVolPage0_t
*vol_pg0
;
1574 Mpi2RaidPhysDiskPage0_t pd_pg0
;
1575 Mpi2SasDevicePage0_t sas_device_pg0
;
1576 Mpi2ConfigReply_t mpi_reply
;
1580 if ((mpt3sas_config_get_number_pds(ioc
, raid_device
->handle
,
1581 &num_pds
)) || !num_pds
) {
1582 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1583 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1588 raid_device
->num_pds
= num_pds
;
1589 sz
= offsetof(Mpi2RaidVolPage0_t
, PhysDisk
) + (num_pds
*
1590 sizeof(Mpi2RaidVol0PhysDisk_t
));
1591 vol_pg0
= kzalloc(sz
, GFP_KERNEL
);
1593 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1594 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1599 if ((mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, vol_pg0
,
1600 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, raid_device
->handle
, sz
))) {
1601 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1602 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1608 raid_device
->volume_type
= vol_pg0
->VolumeType
;
1610 /* figure out what the underlying devices are by
1611 * obtaining the device_info bits for the 1st device
1613 if (!(mpt3sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
1614 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM
,
1615 vol_pg0
->PhysDisk
[0].PhysDiskNum
))) {
1616 if (!(mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
1617 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
1618 le16_to_cpu(pd_pg0
.DevHandle
)))) {
1619 raid_device
->device_info
=
1620 le32_to_cpu(sas_device_pg0
.DeviceInfo
);
1631 * _scsih_enable_tlr - setting TLR flags
1632 * @ioc: per adapter object
1633 * @sdev: scsi device struct
1635 * Enabling Transaction Layer Retries for tape devices when
1636 * vpd page 0x90 is present
1640 _scsih_enable_tlr(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_device
*sdev
)
1644 if (sdev
->type
!= TYPE_TAPE
)
1647 if (!(ioc
->facts
.IOCCapabilities
& MPI2_IOCFACTS_CAPABILITY_TLR
))
1650 sas_enable_tlr(sdev
);
1651 sdev_printk(KERN_INFO
, sdev
, "TLR %s\n",
1652 sas_is_tlr_enabled(sdev
) ? "Enabled" : "Disabled");
1658 * _scsih_slave_configure - device configure routine.
1659 * @sdev: scsi device struct
1661 * Returns 0 if ok. Any other return is assumed to be an error and
1662 * the device is ignored.
1665 _scsih_slave_configure(struct scsi_device
*sdev
)
1667 struct Scsi_Host
*shost
= sdev
->host
;
1668 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
1669 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1670 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1671 struct _sas_device
*sas_device
;
1672 struct _raid_device
*raid_device
;
1673 unsigned long flags
;
1678 u16 handle
, volume_handle
= 0;
1679 u64 volume_wwid
= 0;
1682 sas_device_priv_data
= sdev
->hostdata
;
1683 sas_device_priv_data
->configured_lun
= 1;
1684 sas_device_priv_data
->flags
&= ~MPT_DEVICE_FLAGS_INIT
;
1685 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
1686 handle
= sas_target_priv_data
->handle
;
1688 /* raid volume handling */
1689 if (sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
1691 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1692 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
1693 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1695 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1696 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
,
1697 __LINE__
, __func__
));
1701 if (_scsih_get_volume_capabilities(ioc
, raid_device
)) {
1702 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1703 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
,
1704 __LINE__
, __func__
));
1709 /* RAID Queue Depth Support
1710 * IS volume = underlying qdepth of drive type, either
1711 * MPT3SAS_SAS_QUEUE_DEPTH or MPT3SAS_SATA_QUEUE_DEPTH
1712 * IM/IME/R10 = 128 (MPT3SAS_RAID_QUEUE_DEPTH)
1714 if (raid_device
->device_info
&
1715 MPI2_SAS_DEVICE_INFO_SSP_TARGET
) {
1716 qdepth
= MPT3SAS_SAS_QUEUE_DEPTH
;
1719 qdepth
= MPT3SAS_SATA_QUEUE_DEPTH
;
1720 if (raid_device
->device_info
&
1721 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
1727 switch (raid_device
->volume_type
) {
1728 case MPI2_RAID_VOL_TYPE_RAID0
:
1731 case MPI2_RAID_VOL_TYPE_RAID1E
:
1732 qdepth
= MPT3SAS_RAID_QUEUE_DEPTH
;
1733 if (ioc
->manu_pg10
.OEMIdentifier
&&
1734 (le32_to_cpu(ioc
->manu_pg10
.GenericFlags0
) &
1735 MFG10_GF0_R10_DISPLAY
) &&
1736 !(raid_device
->num_pds
% 2))
1741 case MPI2_RAID_VOL_TYPE_RAID1
:
1742 qdepth
= MPT3SAS_RAID_QUEUE_DEPTH
;
1745 case MPI2_RAID_VOL_TYPE_RAID10
:
1746 qdepth
= MPT3SAS_RAID_QUEUE_DEPTH
;
1749 case MPI2_RAID_VOL_TYPE_UNKNOWN
:
1751 qdepth
= MPT3SAS_RAID_QUEUE_DEPTH
;
1756 sdev_printk(KERN_INFO
, sdev
,
1757 "%s: handle(0x%04x), wwid(0x%016llx), pd_count(%d), type(%s)\n",
1758 r_level
, raid_device
->handle
,
1759 (unsigned long long)raid_device
->wwid
,
1760 raid_device
->num_pds
, ds
);
1763 _scsih_change_queue_depth(sdev
, qdepth
, SCSI_QDEPTH_DEFAULT
);
1765 /* raid transport support */
1766 _scsih_set_level(sdev
, raid_device
->volume_type
);
1770 /* non-raid handling */
1771 if (sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
) {
1772 if (mpt3sas_config_get_volume_handle(ioc
, handle
,
1774 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1775 "failure at %s:%d/%s()!\n", ioc
->name
,
1776 __FILE__
, __LINE__
, __func__
));
1779 if (volume_handle
&& mpt3sas_config_get_volume_wwid(ioc
,
1780 volume_handle
, &volume_wwid
)) {
1781 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1782 "failure at %s:%d/%s()!\n", ioc
->name
,
1783 __FILE__
, __LINE__
, __func__
));
1788 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1789 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1790 sas_device_priv_data
->sas_target
->sas_address
);
1792 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1793 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1794 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1799 sas_device
->volume_handle
= volume_handle
;
1800 sas_device
->volume_wwid
= volume_wwid
;
1801 if (sas_device
->device_info
& MPI2_SAS_DEVICE_INFO_SSP_TARGET
) {
1802 qdepth
= MPT3SAS_SAS_QUEUE_DEPTH
;
1806 qdepth
= MPT3SAS_SATA_QUEUE_DEPTH
;
1807 if (sas_device
->device_info
& MPI2_SAS_DEVICE_INFO_STP_TARGET
)
1809 else if (sas_device
->device_info
&
1810 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
1814 sdev_printk(KERN_INFO
, sdev
, "%s: handle(0x%04x), " \
1815 "sas_addr(0x%016llx), phy(%d), device_name(0x%016llx)\n",
1816 ds
, handle
, (unsigned long long)sas_device
->sas_address
,
1817 sas_device
->phy
, (unsigned long long)sas_device
->device_name
);
1818 sdev_printk(KERN_INFO
, sdev
,
1819 "%s: enclosure_logical_id(0x%016llx), slot(%d)\n",
1820 ds
, (unsigned long long)
1821 sas_device
->enclosure_logical_id
, sas_device
->slot
);
1823 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1826 _scsih_display_sata_capabilities(ioc
, handle
, sdev
);
1829 _scsih_change_queue_depth(sdev
, qdepth
, SCSI_QDEPTH_DEFAULT
);
1832 sas_read_port_mode_page(sdev
);
1833 _scsih_enable_tlr(ioc
, sdev
);
1840 * _scsih_bios_param - fetch head, sector, cylinder info for a disk
1841 * @sdev: scsi device struct
1842 * @bdev: pointer to block device context
1843 * @capacity: device size (in 512 byte sectors)
1844 * @params: three element array to place output:
1845 * params[0] number of heads (max 255)
1846 * params[1] number of sectors (max 63)
1847 * params[2] number of cylinders
1852 _scsih_bios_param(struct scsi_device
*sdev
, struct block_device
*bdev
,
1853 sector_t capacity
, int params
[])
1863 dummy
= heads
* sectors
;
1864 cylinders
= capacity
;
1865 sector_div(cylinders
, dummy
);
1868 * Handle extended translation size for logical drives
1871 if ((ulong
)capacity
>= 0x200000) {
1874 dummy
= heads
* sectors
;
1875 cylinders
= capacity
;
1876 sector_div(cylinders
, dummy
);
1881 params
[1] = sectors
;
1882 params
[2] = cylinders
;
1888 * _scsih_response_code - translation of device response code
1889 * @ioc: per adapter object
1890 * @response_code: response code returned by the device
1895 _scsih_response_code(struct MPT3SAS_ADAPTER
*ioc
, u8 response_code
)
1899 switch (response_code
) {
1900 case MPI2_SCSITASKMGMT_RSP_TM_COMPLETE
:
1901 desc
= "task management request completed";
1903 case MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
:
1904 desc
= "invalid frame";
1906 case MPI2_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED
:
1907 desc
= "task management request not supported";
1909 case MPI2_SCSITASKMGMT_RSP_TM_FAILED
:
1910 desc
= "task management request failed";
1912 case MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED
:
1913 desc
= "task management request succeeded";
1915 case MPI2_SCSITASKMGMT_RSP_TM_INVALID_LUN
:
1916 desc
= "invalid lun";
1919 desc
= "overlapped tag attempted";
1921 case MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC
:
1922 desc
= "task queued, however not sent to target";
1928 pr_warn(MPT3SAS_FMT
"response_code(0x%01x): %s\n",
1929 ioc
->name
, response_code
, desc
);
1933 * _scsih_tm_done - tm completion routine
1934 * @ioc: per adapter object
1935 * @smid: system request message index
1936 * @msix_index: MSIX table index supplied by the OS
1937 * @reply: reply message frame(lower 32bit addr)
1940 * The callback handler when using scsih_issue_tm.
1942 * Return 1 meaning mf should be freed from _base_interrupt
1943 * 0 means the mf is freed from this function.
1946 _scsih_tm_done(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
1948 MPI2DefaultReply_t
*mpi_reply
;
1950 if (ioc
->tm_cmds
.status
== MPT3_CMD_NOT_USED
)
1952 if (ioc
->tm_cmds
.smid
!= smid
)
1954 mpt3sas_base_flush_reply_queues(ioc
);
1955 ioc
->tm_cmds
.status
|= MPT3_CMD_COMPLETE
;
1956 mpi_reply
= mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
1958 memcpy(ioc
->tm_cmds
.reply
, mpi_reply
, mpi_reply
->MsgLength
*4);
1959 ioc
->tm_cmds
.status
|= MPT3_CMD_REPLY_VALID
;
1961 ioc
->tm_cmds
.status
&= ~MPT3_CMD_PENDING
;
1962 complete(&ioc
->tm_cmds
.done
);
1967 * mpt3sas_scsih_set_tm_flag - set per target tm_busy
1968 * @ioc: per adapter object
1969 * @handle: device handle
1971 * During taskmangement request, we need to freeze the device queue.
1974 mpt3sas_scsih_set_tm_flag(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
1976 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1977 struct scsi_device
*sdev
;
1980 shost_for_each_device(sdev
, ioc
->shost
) {
1983 sas_device_priv_data
= sdev
->hostdata
;
1984 if (!sas_device_priv_data
)
1986 if (sas_device_priv_data
->sas_target
->handle
== handle
) {
1987 sas_device_priv_data
->sas_target
->tm_busy
= 1;
1989 ioc
->ignore_loginfos
= 1;
1995 * mpt3sas_scsih_clear_tm_flag - clear per target tm_busy
1996 * @ioc: per adapter object
1997 * @handle: device handle
1999 * During taskmangement request, we need to freeze the device queue.
2002 mpt3sas_scsih_clear_tm_flag(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
2004 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2005 struct scsi_device
*sdev
;
2008 shost_for_each_device(sdev
, ioc
->shost
) {
2011 sas_device_priv_data
= sdev
->hostdata
;
2012 if (!sas_device_priv_data
)
2014 if (sas_device_priv_data
->sas_target
->handle
== handle
) {
2015 sas_device_priv_data
->sas_target
->tm_busy
= 0;
2017 ioc
->ignore_loginfos
= 0;
2023 * mpt3sas_scsih_issue_tm - main routine for sending tm requests
2024 * @ioc: per adapter struct
2025 * @device_handle: device handle
2026 * @channel: the channel assigned by the OS
2027 * @id: the id assigned by the OS
2029 * @type: MPI2_SCSITASKMGMT_TASKTYPE__XXX (defined in mpi2_init.h)
2030 * @smid_task: smid assigned to the task
2031 * @timeout: timeout in seconds
2032 * @serial_number: the serial_number from scmd
2033 * @m_type: TM_MUTEX_ON or TM_MUTEX_OFF
2036 * A generic API for sending task management requests to firmware.
2038 * The callback index is set inside `ioc->tm_cb_idx`.
2040 * Return SUCCESS or FAILED.
2043 mpt3sas_scsih_issue_tm(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
, uint channel
,
2044 uint id
, uint lun
, u8 type
, u16 smid_task
, ulong timeout
,
2045 unsigned long serial_number
, enum mutex_type m_type
)
2047 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
2048 Mpi2SCSITaskManagementReply_t
*mpi_reply
;
2051 unsigned long timeleft
;
2052 struct scsiio_tracker
*scsi_lookup
= NULL
;
2055 if (m_type
== TM_MUTEX_ON
)
2056 mutex_lock(&ioc
->tm_cmds
.mutex
);
2057 if (ioc
->tm_cmds
.status
!= MPT3_CMD_NOT_USED
) {
2058 pr_info(MPT3SAS_FMT
"%s: tm_cmd busy!!!\n",
2059 __func__
, ioc
->name
);
2064 if (ioc
->shost_recovery
|| ioc
->remove_host
||
2065 ioc
->pci_error_recovery
) {
2066 pr_info(MPT3SAS_FMT
"%s: host reset in progress!\n",
2067 __func__
, ioc
->name
);
2072 ioc_state
= mpt3sas_base_get_iocstate(ioc
, 0);
2073 if (ioc_state
& MPI2_DOORBELL_USED
) {
2074 dhsprintk(ioc
, pr_info(MPT3SAS_FMT
2075 "unexpected doorbell active!\n", ioc
->name
));
2076 rc
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2078 rc
= (!rc
) ? SUCCESS
: FAILED
;
2082 if ((ioc_state
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_FAULT
) {
2083 mpt3sas_base_fault_info(ioc
, ioc_state
&
2084 MPI2_DOORBELL_DATA_MASK
);
2085 rc
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2087 rc
= (!rc
) ? SUCCESS
: FAILED
;
2091 smid
= mpt3sas_base_get_smid_hpr(ioc
, ioc
->tm_cb_idx
);
2093 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
2094 ioc
->name
, __func__
);
2099 if (type
== MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
)
2100 scsi_lookup
= &ioc
->scsi_lookup
[smid_task
- 1];
2102 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
2103 "sending tm: handle(0x%04x), task_type(0x%02x), smid(%d)\n",
2104 ioc
->name
, handle
, type
, smid_task
));
2105 ioc
->tm_cmds
.status
= MPT3_CMD_PENDING
;
2106 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
2107 ioc
->tm_cmds
.smid
= smid
;
2108 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
2109 memset(ioc
->tm_cmds
.reply
, 0, sizeof(Mpi2SCSITaskManagementReply_t
));
2110 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
2111 mpi_request
->DevHandle
= cpu_to_le16(handle
);
2112 mpi_request
->TaskType
= type
;
2113 mpi_request
->TaskMID
= cpu_to_le16(smid_task
);
2114 int_to_scsilun(lun
, (struct scsi_lun
*)mpi_request
->LUN
);
2115 mpt3sas_scsih_set_tm_flag(ioc
, handle
);
2116 init_completion(&ioc
->tm_cmds
.done
);
2117 mpt3sas_base_put_smid_hi_priority(ioc
, smid
);
2118 timeleft
= wait_for_completion_timeout(&ioc
->tm_cmds
.done
, timeout
*HZ
);
2119 if (!(ioc
->tm_cmds
.status
& MPT3_CMD_COMPLETE
)) {
2120 pr_err(MPT3SAS_FMT
"%s: timeout\n",
2121 ioc
->name
, __func__
);
2122 _debug_dump_mf(mpi_request
,
2123 sizeof(Mpi2SCSITaskManagementRequest_t
)/4);
2124 if (!(ioc
->tm_cmds
.status
& MPT3_CMD_RESET
)) {
2125 rc
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2127 rc
= (!rc
) ? SUCCESS
: FAILED
;
2128 ioc
->tm_cmds
.status
= MPT3_CMD_NOT_USED
;
2129 mpt3sas_scsih_clear_tm_flag(ioc
, handle
);
2134 if (ioc
->tm_cmds
.status
& MPT3_CMD_REPLY_VALID
) {
2135 mpt3sas_trigger_master(ioc
, MASTER_TRIGGER_TASK_MANAGMENT
);
2136 mpi_reply
= ioc
->tm_cmds
.reply
;
2137 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
"complete tm: " \
2138 "ioc_status(0x%04x), loginfo(0x%08x), term_count(0x%08x)\n",
2139 ioc
->name
, le16_to_cpu(mpi_reply
->IOCStatus
),
2140 le32_to_cpu(mpi_reply
->IOCLogInfo
),
2141 le32_to_cpu(mpi_reply
->TerminationCount
)));
2142 if (ioc
->logging_level
& MPT_DEBUG_TM
) {
2143 _scsih_response_code(ioc
, mpi_reply
->ResponseCode
);
2144 if (mpi_reply
->IOCStatus
)
2145 _debug_dump_mf(mpi_request
,
2146 sizeof(Mpi2SCSITaskManagementRequest_t
)/4);
2151 case MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
:
2153 if (scsi_lookup
->scmd
== NULL
)
2158 case MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
:
2159 if (_scsih_scsi_lookup_find_by_target(ioc
, id
, channel
))
2164 case MPI2_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET
:
2165 case MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET
:
2166 if (_scsih_scsi_lookup_find_by_lun(ioc
, id
, lun
, channel
))
2171 case MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK
:
2179 mpt3sas_scsih_clear_tm_flag(ioc
, handle
);
2180 ioc
->tm_cmds
.status
= MPT3_CMD_NOT_USED
;
2181 if (m_type
== TM_MUTEX_ON
)
2182 mutex_unlock(&ioc
->tm_cmds
.mutex
);
2187 if (m_type
== TM_MUTEX_ON
)
2188 mutex_unlock(&ioc
->tm_cmds
.mutex
);
2193 * _scsih_tm_display_info - displays info about the device
2194 * @ioc: per adapter struct
2195 * @scmd: pointer to scsi command object
2197 * Called by task management callback handlers.
2200 _scsih_tm_display_info(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
)
2202 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
2203 struct MPT3SAS_TARGET
*priv_target
= starget
->hostdata
;
2204 struct _sas_device
*sas_device
= NULL
;
2205 unsigned long flags
;
2206 char *device_str
= NULL
;
2210 device_str
= "volume";
2212 scsi_print_command(scmd
);
2213 if (priv_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
2214 starget_printk(KERN_INFO
, starget
,
2215 "%s handle(0x%04x), %s wwid(0x%016llx)\n",
2216 device_str
, priv_target
->handle
,
2217 device_str
, (unsigned long long)priv_target
->sas_address
);
2219 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2220 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
2221 priv_target
->sas_address
);
2223 if (priv_target
->flags
&
2224 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2225 starget_printk(KERN_INFO
, starget
,
2226 "volume handle(0x%04x), "
2227 "volume wwid(0x%016llx)\n",
2228 sas_device
->volume_handle
,
2229 (unsigned long long)sas_device
->volume_wwid
);
2231 starget_printk(KERN_INFO
, starget
,
2232 "handle(0x%04x), sas_address(0x%016llx), phy(%d)\n",
2234 (unsigned long long)sas_device
->sas_address
,
2236 starget_printk(KERN_INFO
, starget
,
2237 "enclosure_logical_id(0x%016llx), slot(%d)\n",
2238 (unsigned long long)sas_device
->enclosure_logical_id
,
2241 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2246 * _scsih_abort - eh threads main abort routine
2247 * @scmd: pointer to scsi command object
2249 * Returns SUCCESS if command aborted else FAILED
2252 _scsih_abort(struct scsi_cmnd
*scmd
)
2254 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2255 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2260 sdev_printk(KERN_INFO
, scmd
->device
,
2261 "attempting task abort! scmd(%p)\n", scmd
);
2262 _scsih_tm_display_info(ioc
, scmd
);
2264 sas_device_priv_data
= scmd
->device
->hostdata
;
2265 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2266 sdev_printk(KERN_INFO
, scmd
->device
,
2267 "device been deleted! scmd(%p)\n", scmd
);
2268 scmd
->result
= DID_NO_CONNECT
<< 16;
2269 scmd
->scsi_done(scmd
);
2274 /* search for the command */
2275 smid
= _scsih_scsi_lookup_find_by_scmd(ioc
, scmd
);
2277 scmd
->result
= DID_RESET
<< 16;
2282 /* for hidden raid components and volumes this is not supported */
2283 if (sas_device_priv_data
->sas_target
->flags
&
2284 MPT_TARGET_FLAGS_RAID_COMPONENT
||
2285 sas_device_priv_data
->sas_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
2286 scmd
->result
= DID_RESET
<< 16;
2291 mpt3sas_halt_firmware(ioc
);
2293 handle
= sas_device_priv_data
->sas_target
->handle
;
2294 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2295 scmd
->device
->id
, scmd
->device
->lun
,
2296 MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
, smid
, 30,
2297 scmd
->serial_number
, TM_MUTEX_ON
);
2300 sdev_printk(KERN_INFO
, scmd
->device
, "task abort: %s scmd(%p)\n",
2301 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2306 * _scsih_dev_reset - eh threads main device reset routine
2307 * @scmd: pointer to scsi command object
2309 * Returns SUCCESS if command aborted else FAILED
2312 _scsih_dev_reset(struct scsi_cmnd
*scmd
)
2314 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2315 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2316 struct _sas_device
*sas_device
;
2317 unsigned long flags
;
2321 sdev_printk(KERN_INFO
, scmd
->device
,
2322 "attempting device reset! scmd(%p)\n", scmd
);
2323 _scsih_tm_display_info(ioc
, scmd
);
2325 sas_device_priv_data
= scmd
->device
->hostdata
;
2326 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2327 sdev_printk(KERN_INFO
, scmd
->device
,
2328 "device been deleted! scmd(%p)\n", scmd
);
2329 scmd
->result
= DID_NO_CONNECT
<< 16;
2330 scmd
->scsi_done(scmd
);
2335 /* for hidden raid components obtain the volume_handle */
2337 if (sas_device_priv_data
->sas_target
->flags
&
2338 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2339 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2340 sas_device
= _scsih_sas_device_find_by_handle(ioc
,
2341 sas_device_priv_data
->sas_target
->handle
);
2343 handle
= sas_device
->volume_handle
;
2344 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2346 handle
= sas_device_priv_data
->sas_target
->handle
;
2349 scmd
->result
= DID_RESET
<< 16;
2354 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2355 scmd
->device
->id
, scmd
->device
->lun
,
2356 MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET
, 0, 30, 0,
2360 sdev_printk(KERN_INFO
, scmd
->device
, "device reset: %s scmd(%p)\n",
2361 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2366 * _scsih_target_reset - eh threads main target reset routine
2367 * @scmd: pointer to scsi command object
2369 * Returns SUCCESS if command aborted else FAILED
2372 _scsih_target_reset(struct scsi_cmnd
*scmd
)
2374 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2375 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2376 struct _sas_device
*sas_device
;
2377 unsigned long flags
;
2380 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
2382 starget_printk(KERN_INFO
, starget
, "attempting target reset! scmd(%p)\n",
2384 _scsih_tm_display_info(ioc
, scmd
);
2386 sas_device_priv_data
= scmd
->device
->hostdata
;
2387 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2388 starget_printk(KERN_INFO
, starget
, "target been deleted! scmd(%p)\n",
2390 scmd
->result
= DID_NO_CONNECT
<< 16;
2391 scmd
->scsi_done(scmd
);
2396 /* for hidden raid components obtain the volume_handle */
2398 if (sas_device_priv_data
->sas_target
->flags
&
2399 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2400 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2401 sas_device
= _scsih_sas_device_find_by_handle(ioc
,
2402 sas_device_priv_data
->sas_target
->handle
);
2404 handle
= sas_device
->volume_handle
;
2405 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2407 handle
= sas_device_priv_data
->sas_target
->handle
;
2410 scmd
->result
= DID_RESET
<< 16;
2415 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2416 scmd
->device
->id
, 0, MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
, 0,
2417 30, 0, TM_MUTEX_ON
);
2420 starget_printk(KERN_INFO
, starget
, "target reset: %s scmd(%p)\n",
2421 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2427 * _scsih_host_reset - eh threads main host reset routine
2428 * @scmd: pointer to scsi command object
2430 * Returns SUCCESS if command aborted else FAILED
2433 _scsih_host_reset(struct scsi_cmnd
*scmd
)
2435 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2438 pr_info(MPT3SAS_FMT
"attempting host reset! scmd(%p)\n",
2440 scsi_print_command(scmd
);
2442 retval
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2444 r
= (retval
< 0) ? FAILED
: SUCCESS
;
2445 pr_info(MPT3SAS_FMT
"host reset: %s scmd(%p)\n",
2446 ioc
->name
, ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2452 * _scsih_fw_event_add - insert and queue up fw_event
2453 * @ioc: per adapter object
2454 * @fw_event: object describing the event
2455 * Context: This function will acquire ioc->fw_event_lock.
2457 * This adds the firmware event object into link list, then queues it up to
2458 * be processed from user context.
2463 _scsih_fw_event_add(struct MPT3SAS_ADAPTER
*ioc
, struct fw_event_work
*fw_event
)
2465 unsigned long flags
;
2467 if (ioc
->firmware_event_thread
== NULL
)
2470 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
2471 INIT_LIST_HEAD(&fw_event
->list
);
2472 list_add_tail(&fw_event
->list
, &ioc
->fw_event_list
);
2473 INIT_WORK(&fw_event
->work
, _firmware_event_work
);
2474 queue_work(ioc
->firmware_event_thread
, &fw_event
->work
);
2475 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
2479 * _scsih_fw_event_free - delete fw_event
2480 * @ioc: per adapter object
2481 * @fw_event: object describing the event
2482 * Context: This function will acquire ioc->fw_event_lock.
2484 * This removes firmware event object from link list, frees associated memory.
2489 _scsih_fw_event_free(struct MPT3SAS_ADAPTER
*ioc
, struct fw_event_work
2492 unsigned long flags
;
2494 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
2495 list_del(&fw_event
->list
);
2496 kfree(fw_event
->event_data
);
2498 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
2503 * mpt3sas_send_trigger_data_event - send event for processing trigger data
2504 * @ioc: per adapter object
2505 * @event_data: trigger event data
2510 mpt3sas_send_trigger_data_event(struct MPT3SAS_ADAPTER
*ioc
,
2511 struct SL_WH_TRIGGERS_EVENT_DATA_T
*event_data
)
2513 struct fw_event_work
*fw_event
;
2515 if (ioc
->is_driver_loading
)
2517 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
2520 fw_event
->event_data
= kzalloc(sizeof(*event_data
), GFP_ATOMIC
);
2521 if (!fw_event
->event_data
)
2523 fw_event
->event
= MPT3SAS_PROCESS_TRIGGER_DIAG
;
2524 fw_event
->ioc
= ioc
;
2525 memcpy(fw_event
->event_data
, event_data
, sizeof(*event_data
));
2526 _scsih_fw_event_add(ioc
, fw_event
);
2530 * _scsih_error_recovery_delete_devices - remove devices not responding
2531 * @ioc: per adapter object
2536 _scsih_error_recovery_delete_devices(struct MPT3SAS_ADAPTER
*ioc
)
2538 struct fw_event_work
*fw_event
;
2540 if (ioc
->is_driver_loading
)
2542 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
2545 fw_event
->event
= MPT3SAS_REMOVE_UNRESPONDING_DEVICES
;
2546 fw_event
->ioc
= ioc
;
2547 _scsih_fw_event_add(ioc
, fw_event
);
2551 * mpt3sas_port_enable_complete - port enable completed (fake event)
2552 * @ioc: per adapter object
2557 mpt3sas_port_enable_complete(struct MPT3SAS_ADAPTER
*ioc
)
2559 struct fw_event_work
*fw_event
;
2561 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
2564 fw_event
->event
= MPT3SAS_PORT_ENABLE_COMPLETE
;
2565 fw_event
->ioc
= ioc
;
2566 _scsih_fw_event_add(ioc
, fw_event
);
2570 * _scsih_fw_event_cleanup_queue - cleanup event queue
2571 * @ioc: per adapter object
2573 * Walk the firmware event queue, either killing timers, or waiting
2574 * for outstanding events to complete
2579 _scsih_fw_event_cleanup_queue(struct MPT3SAS_ADAPTER
*ioc
)
2581 struct fw_event_work
*fw_event
, *next
;
2583 if (list_empty(&ioc
->fw_event_list
) ||
2584 !ioc
->firmware_event_thread
|| in_interrupt())
2587 list_for_each_entry_safe(fw_event
, next
, &ioc
->fw_event_list
, list
) {
2588 if (cancel_delayed_work(&fw_event
->delayed_work
)) {
2589 _scsih_fw_event_free(ioc
, fw_event
);
2592 fw_event
->cancel_pending_work
= 1;
2597 * _scsih_ublock_io_all_device - unblock every device
2598 * @ioc: per adapter object
2600 * change the device state from block to running
2603 _scsih_ublock_io_all_device(struct MPT3SAS_ADAPTER
*ioc
)
2605 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2606 struct scsi_device
*sdev
;
2608 shost_for_each_device(sdev
, ioc
->shost
) {
2609 sas_device_priv_data
= sdev
->hostdata
;
2610 if (!sas_device_priv_data
)
2612 if (!sas_device_priv_data
->block
)
2615 sas_device_priv_data
->block
= 0;
2616 dewtprintk(ioc
, sdev_printk(KERN_INFO
, sdev
,
2617 "device_running, handle(0x%04x)\n",
2618 sas_device_priv_data
->sas_target
->handle
));
2619 scsi_internal_device_unblock(sdev
, SDEV_RUNNING
);
2625 * _scsih_ublock_io_device - prepare device to be deleted
2626 * @ioc: per adapter object
2627 * @sas_addr: sas address
2629 * unblock then put device in offline state
2632 _scsih_ublock_io_device(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
)
2634 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2635 struct scsi_device
*sdev
;
2637 shost_for_each_device(sdev
, ioc
->shost
) {
2638 sas_device_priv_data
= sdev
->hostdata
;
2639 if (!sas_device_priv_data
)
2641 if (sas_device_priv_data
->sas_target
->sas_address
2644 if (sas_device_priv_data
->block
) {
2645 sas_device_priv_data
->block
= 0;
2646 scsi_internal_device_unblock(sdev
, SDEV_RUNNING
);
2652 * _scsih_block_io_all_device - set the device state to SDEV_BLOCK
2653 * @ioc: per adapter object
2654 * @handle: device handle
2656 * During device pull we need to appropiately set the sdev state.
2659 _scsih_block_io_all_device(struct MPT3SAS_ADAPTER
*ioc
)
2661 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2662 struct scsi_device
*sdev
;
2664 shost_for_each_device(sdev
, ioc
->shost
) {
2665 sas_device_priv_data
= sdev
->hostdata
;
2666 if (!sas_device_priv_data
)
2668 if (sas_device_priv_data
->block
)
2670 sas_device_priv_data
->block
= 1;
2671 scsi_internal_device_block(sdev
);
2672 sdev_printk(KERN_INFO
, sdev
, "device_blocked, handle(0x%04x)\n",
2673 sas_device_priv_data
->sas_target
->handle
);
2678 * _scsih_block_io_device - set the device state to SDEV_BLOCK
2679 * @ioc: per adapter object
2680 * @handle: device handle
2682 * During device pull we need to appropiately set the sdev state.
2685 _scsih_block_io_device(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
2687 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2688 struct scsi_device
*sdev
;
2690 shost_for_each_device(sdev
, ioc
->shost
) {
2691 sas_device_priv_data
= sdev
->hostdata
;
2692 if (!sas_device_priv_data
)
2694 if (sas_device_priv_data
->sas_target
->handle
!= handle
)
2696 if (sas_device_priv_data
->block
)
2698 sas_device_priv_data
->block
= 1;
2699 scsi_internal_device_block(sdev
);
2700 sdev_printk(KERN_INFO
, sdev
,
2701 "device_blocked, handle(0x%04x)\n", handle
);
2706 * _scsih_block_io_to_children_attached_to_ex
2707 * @ioc: per adapter object
2708 * @sas_expander: the sas_device object
2710 * This routine set sdev state to SDEV_BLOCK for all devices
2711 * attached to this expander. This function called when expander is
2715 _scsih_block_io_to_children_attached_to_ex(struct MPT3SAS_ADAPTER
*ioc
,
2716 struct _sas_node
*sas_expander
)
2718 struct _sas_port
*mpt3sas_port
;
2719 struct _sas_device
*sas_device
;
2720 struct _sas_node
*expander_sibling
;
2721 unsigned long flags
;
2726 list_for_each_entry(mpt3sas_port
,
2727 &sas_expander
->sas_port_list
, port_list
) {
2728 if (mpt3sas_port
->remote_identify
.device_type
==
2730 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2732 mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
2733 mpt3sas_port
->remote_identify
.sas_address
);
2735 set_bit(sas_device
->handle
,
2736 ioc
->blocking_handles
);
2737 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2741 list_for_each_entry(mpt3sas_port
,
2742 &sas_expander
->sas_port_list
, port_list
) {
2744 if (mpt3sas_port
->remote_identify
.device_type
==
2745 SAS_EDGE_EXPANDER_DEVICE
||
2746 mpt3sas_port
->remote_identify
.device_type
==
2747 SAS_FANOUT_EXPANDER_DEVICE
) {
2749 mpt3sas_scsih_expander_find_by_sas_address(
2750 ioc
, mpt3sas_port
->remote_identify
.sas_address
);
2751 _scsih_block_io_to_children_attached_to_ex(ioc
,
2758 * _scsih_block_io_to_children_attached_directly
2759 * @ioc: per adapter object
2760 * @event_data: topology change event data
2762 * This routine set sdev state to SDEV_BLOCK for all devices
2763 * direct attached during device pull.
2766 _scsih_block_io_to_children_attached_directly(struct MPT3SAS_ADAPTER
*ioc
,
2767 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
2773 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
2774 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
2777 reason_code
= event_data
->PHY
[i
].PhyStatus
&
2778 MPI2_EVENT_SAS_TOPO_RC_MASK
;
2779 if (reason_code
== MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING
)
2780 _scsih_block_io_device(ioc
, handle
);
2785 * _scsih_tm_tr_send - send task management request
2786 * @ioc: per adapter object
2787 * @handle: device handle
2788 * Context: interrupt time.
2790 * This code is to initiate the device removal handshake protocol
2791 * with controller firmware. This function will issue target reset
2792 * using high priority request queue. It will send a sas iounit
2793 * control request (MPI2_SAS_OP_REMOVE_DEVICE) from this completion.
2795 * This is designed to send muliple task management request at the same
2796 * time to the fifo. If the fifo is full, we will append the request,
2797 * and process it in a future completion.
2800 _scsih_tm_tr_send(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
2802 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
2804 struct _sas_device
*sas_device
;
2805 struct MPT3SAS_TARGET
*sas_target_priv_data
= NULL
;
2806 u64 sas_address
= 0;
2807 unsigned long flags
;
2808 struct _tr_list
*delayed_tr
;
2811 if (ioc
->remove_host
) {
2812 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2813 "%s: host has been removed: handle(0x%04x)\n",
2814 __func__
, ioc
->name
, handle
));
2816 } else if (ioc
->pci_error_recovery
) {
2817 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2818 "%s: host in pci error recovery: handle(0x%04x)\n",
2819 __func__
, ioc
->name
,
2823 ioc_state
= mpt3sas_base_get_iocstate(ioc
, 1);
2824 if (ioc_state
!= MPI2_IOC_STATE_OPERATIONAL
) {
2825 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2826 "%s: host is not operational: handle(0x%04x)\n",
2827 __func__
, ioc
->name
,
2832 /* if PD, then return */
2833 if (test_bit(handle
, ioc
->pd_handles
))
2836 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2837 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
2838 if (sas_device
&& sas_device
->starget
&&
2839 sas_device
->starget
->hostdata
) {
2840 sas_target_priv_data
= sas_device
->starget
->hostdata
;
2841 sas_target_priv_data
->deleted
= 1;
2842 sas_address
= sas_device
->sas_address
;
2844 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2846 if (sas_target_priv_data
) {
2847 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2848 "setting delete flag: handle(0x%04x), sas_addr(0x%016llx)\n",
2850 (unsigned long long)sas_address
));
2851 _scsih_ublock_io_device(ioc
, sas_address
);
2852 sas_target_priv_data
->handle
= MPT3SAS_INVALID_DEVICE_HANDLE
;
2855 smid
= mpt3sas_base_get_smid_hpr(ioc
, ioc
->tm_tr_cb_idx
);
2857 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
2860 INIT_LIST_HEAD(&delayed_tr
->list
);
2861 delayed_tr
->handle
= handle
;
2862 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_list
);
2863 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2864 "DELAYED:tr:handle(0x%04x), (open)\n",
2865 ioc
->name
, handle
));
2869 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2870 "tr_send:handle(0x%04x), (open), smid(%d), cb(%d)\n",
2871 ioc
->name
, handle
, smid
,
2872 ioc
->tm_tr_cb_idx
));
2873 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
2874 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
2875 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
2876 mpi_request
->DevHandle
= cpu_to_le16(handle
);
2877 mpi_request
->TaskType
= MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
;
2878 mpt3sas_base_put_smid_hi_priority(ioc
, smid
);
2879 mpt3sas_trigger_master(ioc
, MASTER_TRIGGER_DEVICE_REMOVAL
);
2883 * _scsih_tm_tr_complete -
2884 * @ioc: per adapter object
2885 * @smid: system request message index
2886 * @msix_index: MSIX table index supplied by the OS
2887 * @reply: reply message frame(lower 32bit addr)
2888 * Context: interrupt time.
2890 * This is the target reset completion routine.
2891 * This code is part of the code to initiate the device removal
2892 * handshake protocol with controller firmware.
2893 * It will send a sas iounit control request (MPI2_SAS_OP_REMOVE_DEVICE)
2895 * Return 1 meaning mf should be freed from _base_interrupt
2896 * 0 means the mf is freed from this function.
2899 _scsih_tm_tr_complete(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
,
2903 Mpi2SCSITaskManagementRequest_t
*mpi_request_tm
;
2904 Mpi2SCSITaskManagementReply_t
*mpi_reply
=
2905 mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
2906 Mpi2SasIoUnitControlRequest_t
*mpi_request
;
2910 if (ioc
->remove_host
) {
2911 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2912 "%s: host has been removed\n", __func__
, ioc
->name
));
2914 } else if (ioc
->pci_error_recovery
) {
2915 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2916 "%s: host in pci error recovery\n", __func__
,
2920 ioc_state
= mpt3sas_base_get_iocstate(ioc
, 1);
2921 if (ioc_state
!= MPI2_IOC_STATE_OPERATIONAL
) {
2922 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2923 "%s: host is not operational\n", __func__
, ioc
->name
));
2926 if (unlikely(!mpi_reply
)) {
2927 pr_err(MPT3SAS_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
2928 ioc
->name
, __FILE__
, __LINE__
, __func__
);
2931 mpi_request_tm
= mpt3sas_base_get_msg_frame(ioc
, smid
);
2932 handle
= le16_to_cpu(mpi_request_tm
->DevHandle
);
2933 if (handle
!= le16_to_cpu(mpi_reply
->DevHandle
)) {
2934 dewtprintk(ioc
, pr_err(MPT3SAS_FMT
2935 "spurious interrupt: handle(0x%04x:0x%04x), smid(%d)!!!\n",
2937 le16_to_cpu(mpi_reply
->DevHandle
), smid
));
2941 mpt3sas_trigger_master(ioc
, MASTER_TRIGGER_TASK_MANAGMENT
);
2942 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2943 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
2944 "loginfo(0x%08x), completed(%d)\n", ioc
->name
,
2945 handle
, smid
, le16_to_cpu(mpi_reply
->IOCStatus
),
2946 le32_to_cpu(mpi_reply
->IOCLogInfo
),
2947 le32_to_cpu(mpi_reply
->TerminationCount
)));
2949 smid_sas_ctrl
= mpt3sas_base_get_smid(ioc
, ioc
->tm_sas_control_cb_idx
);
2950 if (!smid_sas_ctrl
) {
2951 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
2952 ioc
->name
, __func__
);
2956 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2957 "sc_send:handle(0x%04x), (open), smid(%d), cb(%d)\n",
2958 ioc
->name
, handle
, smid_sas_ctrl
,
2959 ioc
->tm_sas_control_cb_idx
));
2960 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid_sas_ctrl
);
2961 memset(mpi_request
, 0, sizeof(Mpi2SasIoUnitControlRequest_t
));
2962 mpi_request
->Function
= MPI2_FUNCTION_SAS_IO_UNIT_CONTROL
;
2963 mpi_request
->Operation
= MPI2_SAS_OP_REMOVE_DEVICE
;
2964 mpi_request
->DevHandle
= mpi_request_tm
->DevHandle
;
2965 mpt3sas_base_put_smid_default(ioc
, smid_sas_ctrl
);
2967 return _scsih_check_for_pending_tm(ioc
, smid
);
2972 * _scsih_sas_control_complete - completion routine
2973 * @ioc: per adapter object
2974 * @smid: system request message index
2975 * @msix_index: MSIX table index supplied by the OS
2976 * @reply: reply message frame(lower 32bit addr)
2977 * Context: interrupt time.
2979 * This is the sas iounit control completion routine.
2980 * This code is part of the code to initiate the device removal
2981 * handshake protocol with controller firmware.
2983 * Return 1 meaning mf should be freed from _base_interrupt
2984 * 0 means the mf is freed from this function.
2987 _scsih_sas_control_complete(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
,
2988 u8 msix_index
, u32 reply
)
2990 Mpi2SasIoUnitControlReply_t
*mpi_reply
=
2991 mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
2993 if (likely(mpi_reply
)) {
2994 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2995 "sc_complete:handle(0x%04x), (open) "
2996 "smid(%d), ioc_status(0x%04x), loginfo(0x%08x)\n",
2997 ioc
->name
, le16_to_cpu(mpi_reply
->DevHandle
), smid
,
2998 le16_to_cpu(mpi_reply
->IOCStatus
),
2999 le32_to_cpu(mpi_reply
->IOCLogInfo
)));
3001 pr_err(MPT3SAS_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
3002 ioc
->name
, __FILE__
, __LINE__
, __func__
);
3008 * _scsih_tm_tr_volume_send - send target reset request for volumes
3009 * @ioc: per adapter object
3010 * @handle: device handle
3011 * Context: interrupt time.
3013 * This is designed to send muliple task management request at the same
3014 * time to the fifo. If the fifo is full, we will append the request,
3015 * and process it in a future completion.
3018 _scsih_tm_tr_volume_send(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3020 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
3022 struct _tr_list
*delayed_tr
;
3024 if (ioc
->shost_recovery
|| ioc
->remove_host
||
3025 ioc
->pci_error_recovery
) {
3026 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3027 "%s: host reset in progress!\n",
3028 __func__
, ioc
->name
));
3032 smid
= mpt3sas_base_get_smid_hpr(ioc
, ioc
->tm_tr_volume_cb_idx
);
3034 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
3037 INIT_LIST_HEAD(&delayed_tr
->list
);
3038 delayed_tr
->handle
= handle
;
3039 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_volume_list
);
3040 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3041 "DELAYED:tr:handle(0x%04x), (open)\n",
3042 ioc
->name
, handle
));
3046 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3047 "tr_send:handle(0x%04x), (open), smid(%d), cb(%d)\n",
3048 ioc
->name
, handle
, smid
,
3049 ioc
->tm_tr_volume_cb_idx
));
3050 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
3051 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
3052 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
3053 mpi_request
->DevHandle
= cpu_to_le16(handle
);
3054 mpi_request
->TaskType
= MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
;
3055 mpt3sas_base_put_smid_hi_priority(ioc
, smid
);
3059 * _scsih_tm_volume_tr_complete - target reset completion
3060 * @ioc: per adapter object
3061 * @smid: system request message index
3062 * @msix_index: MSIX table index supplied by the OS
3063 * @reply: reply message frame(lower 32bit addr)
3064 * Context: interrupt time.
3066 * Return 1 meaning mf should be freed from _base_interrupt
3067 * 0 means the mf is freed from this function.
3070 _scsih_tm_volume_tr_complete(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
,
3071 u8 msix_index
, u32 reply
)
3074 Mpi2SCSITaskManagementRequest_t
*mpi_request_tm
;
3075 Mpi2SCSITaskManagementReply_t
*mpi_reply
=
3076 mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
3078 if (ioc
->shost_recovery
|| ioc
->remove_host
||
3079 ioc
->pci_error_recovery
) {
3080 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3081 "%s: host reset in progress!\n",
3082 __func__
, ioc
->name
));
3085 if (unlikely(!mpi_reply
)) {
3086 pr_err(MPT3SAS_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
3087 ioc
->name
, __FILE__
, __LINE__
, __func__
);
3091 mpi_request_tm
= mpt3sas_base_get_msg_frame(ioc
, smid
);
3092 handle
= le16_to_cpu(mpi_request_tm
->DevHandle
);
3093 if (handle
!= le16_to_cpu(mpi_reply
->DevHandle
)) {
3094 dewtprintk(ioc
, pr_err(MPT3SAS_FMT
3095 "spurious interrupt: handle(0x%04x:0x%04x), smid(%d)!!!\n",
3097 le16_to_cpu(mpi_reply
->DevHandle
), smid
));
3101 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3102 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
3103 "loginfo(0x%08x), completed(%d)\n", ioc
->name
,
3104 handle
, smid
, le16_to_cpu(mpi_reply
->IOCStatus
),
3105 le32_to_cpu(mpi_reply
->IOCLogInfo
),
3106 le32_to_cpu(mpi_reply
->TerminationCount
)));
3108 return _scsih_check_for_pending_tm(ioc
, smid
);
3113 * _scsih_check_for_pending_tm - check for pending task management
3114 * @ioc: per adapter object
3115 * @smid: system request message index
3117 * This will check delayed target reset list, and feed the
3120 * Return 1 meaning mf should be freed from _base_interrupt
3121 * 0 means the mf is freed from this function.
3124 _scsih_check_for_pending_tm(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
)
3126 struct _tr_list
*delayed_tr
;
3128 if (!list_empty(&ioc
->delayed_tr_volume_list
)) {
3129 delayed_tr
= list_entry(ioc
->delayed_tr_volume_list
.next
,
3130 struct _tr_list
, list
);
3131 mpt3sas_base_free_smid(ioc
, smid
);
3132 _scsih_tm_tr_volume_send(ioc
, delayed_tr
->handle
);
3133 list_del(&delayed_tr
->list
);
3138 if (!list_empty(&ioc
->delayed_tr_list
)) {
3139 delayed_tr
= list_entry(ioc
->delayed_tr_list
.next
,
3140 struct _tr_list
, list
);
3141 mpt3sas_base_free_smid(ioc
, smid
);
3142 _scsih_tm_tr_send(ioc
, delayed_tr
->handle
);
3143 list_del(&delayed_tr
->list
);
3152 * _scsih_check_topo_delete_events - sanity check on topo events
3153 * @ioc: per adapter object
3154 * @event_data: the event data payload
3156 * This routine added to better handle cable breaker.
3158 * This handles the case where driver receives multiple expander
3159 * add and delete events in a single shot. When there is a delete event
3160 * the routine will void any pending add events waiting in the event queue.
3165 _scsih_check_topo_delete_events(struct MPT3SAS_ADAPTER
*ioc
,
3166 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
3168 struct fw_event_work
*fw_event
;
3169 Mpi2EventDataSasTopologyChangeList_t
*local_event_data
;
3170 u16 expander_handle
;
3171 struct _sas_node
*sas_expander
;
3172 unsigned long flags
;
3176 for (i
= 0 ; i
< event_data
->NumEntries
; i
++) {
3177 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
3180 reason_code
= event_data
->PHY
[i
].PhyStatus
&
3181 MPI2_EVENT_SAS_TOPO_RC_MASK
;
3182 if (reason_code
== MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
)
3183 _scsih_tm_tr_send(ioc
, handle
);
3186 expander_handle
= le16_to_cpu(event_data
->ExpanderDevHandle
);
3187 if (expander_handle
< ioc
->sas_hba
.num_phys
) {
3188 _scsih_block_io_to_children_attached_directly(ioc
, event_data
);
3191 if (event_data
->ExpStatus
==
3192 MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
) {
3193 /* put expander attached devices into blocking state */
3194 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
3195 sas_expander
= mpt3sas_scsih_expander_find_by_handle(ioc
,
3197 _scsih_block_io_to_children_attached_to_ex(ioc
, sas_expander
);
3198 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
3200 handle
= find_first_bit(ioc
->blocking_handles
,
3201 ioc
->facts
.MaxDevHandle
);
3202 if (handle
< ioc
->facts
.MaxDevHandle
)
3203 _scsih_block_io_device(ioc
, handle
);
3204 } while (test_and_clear_bit(handle
, ioc
->blocking_handles
));
3205 } else if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_RESPONDING
)
3206 _scsih_block_io_to_children_attached_directly(ioc
, event_data
);
3208 if (event_data
->ExpStatus
!= MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
)
3211 /* mark ignore flag for pending events */
3212 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
3213 list_for_each_entry(fw_event
, &ioc
->fw_event_list
, list
) {
3214 if (fw_event
->event
!= MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
||
3217 local_event_data
= fw_event
->event_data
;
3218 if (local_event_data
->ExpStatus
==
3219 MPI2_EVENT_SAS_TOPO_ES_ADDED
||
3220 local_event_data
->ExpStatus
==
3221 MPI2_EVENT_SAS_TOPO_ES_RESPONDING
) {
3222 if (le16_to_cpu(local_event_data
->ExpanderDevHandle
) ==
3224 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3225 "setting ignoring flag\n", ioc
->name
));
3226 fw_event
->ignore
= 1;
3230 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
3234 * _scsih_set_volume_delete_flag - setting volume delete flag
3235 * @ioc: per adapter object
3236 * @handle: device handle
3238 * This returns nothing.
3241 _scsih_set_volume_delete_flag(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3243 struct _raid_device
*raid_device
;
3244 struct MPT3SAS_TARGET
*sas_target_priv_data
;
3245 unsigned long flags
;
3247 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
3248 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
3249 if (raid_device
&& raid_device
->starget
&&
3250 raid_device
->starget
->hostdata
) {
3251 sas_target_priv_data
=
3252 raid_device
->starget
->hostdata
;
3253 sas_target_priv_data
->deleted
= 1;
3254 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3255 "setting delete flag: handle(0x%04x), "
3256 "wwid(0x%016llx)\n", ioc
->name
, handle
,
3257 (unsigned long long) raid_device
->wwid
));
3259 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
3263 * _scsih_set_volume_handle_for_tr - set handle for target reset to volume
3264 * @handle: input handle
3265 * @a: handle for volume a
3266 * @b: handle for volume b
3268 * IR firmware only supports two raid volumes. The purpose of this
3269 * routine is to set the volume handle in either a or b. When the given
3270 * input handle is non-zero, or when a and b have not been set before.
3273 _scsih_set_volume_handle_for_tr(u16 handle
, u16
*a
, u16
*b
)
3275 if (!handle
|| handle
== *a
|| handle
== *b
)
3284 * _scsih_check_ir_config_unhide_events - check for UNHIDE events
3285 * @ioc: per adapter object
3286 * @event_data: the event data payload
3287 * Context: interrupt time.
3289 * This routine will send target reset to volume, followed by target
3290 * resets to the PDs. This is called when a PD has been removed, or
3291 * volume has been deleted or removed. When the target reset is sent
3292 * to volume, the PD target resets need to be queued to start upon
3293 * completion of the volume target reset.
3298 _scsih_check_ir_config_unhide_events(struct MPT3SAS_ADAPTER
*ioc
,
3299 Mpi2EventDataIrConfigChangeList_t
*event_data
)
3301 Mpi2EventIrConfigElement_t
*element
;
3303 u16 handle
, volume_handle
, a
, b
;
3304 struct _tr_list
*delayed_tr
;
3309 /* Volume Resets for Deleted or Removed */
3310 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3311 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3312 if (le32_to_cpu(event_data
->Flags
) &
3313 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
)
3315 if (element
->ReasonCode
==
3316 MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
||
3317 element
->ReasonCode
==
3318 MPI2_EVENT_IR_CHANGE_RC_REMOVED
) {
3319 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3320 _scsih_set_volume_delete_flag(ioc
, volume_handle
);
3321 _scsih_set_volume_handle_for_tr(volume_handle
, &a
, &b
);
3325 /* Volume Resets for UNHIDE events */
3326 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3327 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3328 if (le32_to_cpu(event_data
->Flags
) &
3329 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
)
3331 if (element
->ReasonCode
== MPI2_EVENT_IR_CHANGE_RC_UNHIDE
) {
3332 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3333 _scsih_set_volume_handle_for_tr(volume_handle
, &a
, &b
);
3338 _scsih_tm_tr_volume_send(ioc
, a
);
3340 _scsih_tm_tr_volume_send(ioc
, b
);
3342 /* PD target resets */
3343 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3344 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3345 if (element
->ReasonCode
!= MPI2_EVENT_IR_CHANGE_RC_UNHIDE
)
3347 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
3348 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3349 clear_bit(handle
, ioc
->pd_handles
);
3351 _scsih_tm_tr_send(ioc
, handle
);
3352 else if (volume_handle
== a
|| volume_handle
== b
) {
3353 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
3354 BUG_ON(!delayed_tr
);
3355 INIT_LIST_HEAD(&delayed_tr
->list
);
3356 delayed_tr
->handle
= handle
;
3357 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_list
);
3358 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3359 "DELAYED:tr:handle(0x%04x), (open)\n", ioc
->name
,
3362 _scsih_tm_tr_send(ioc
, handle
);
3368 * _scsih_check_volume_delete_events - set delete flag for volumes
3369 * @ioc: per adapter object
3370 * @event_data: the event data payload
3371 * Context: interrupt time.
3373 * This will handle the case when the cable connected to entire volume is
3374 * pulled. We will take care of setting the deleted flag so normal IO will
3380 _scsih_check_volume_delete_events(struct MPT3SAS_ADAPTER
*ioc
,
3381 Mpi2EventDataIrVolume_t
*event_data
)
3385 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED
)
3387 state
= le32_to_cpu(event_data
->NewValue
);
3388 if (state
== MPI2_RAID_VOL_STATE_MISSING
|| state
==
3389 MPI2_RAID_VOL_STATE_FAILED
)
3390 _scsih_set_volume_delete_flag(ioc
,
3391 le16_to_cpu(event_data
->VolDevHandle
));
3395 * _scsih_flush_running_cmds - completing outstanding commands.
3396 * @ioc: per adapter object
3398 * The flushing out of all pending scmd commands following host reset,
3399 * where all IO is dropped to the floor.
3404 _scsih_flush_running_cmds(struct MPT3SAS_ADAPTER
*ioc
)
3406 struct scsi_cmnd
*scmd
;
3410 for (smid
= 1; smid
<= ioc
->scsiio_depth
; smid
++) {
3411 scmd
= _scsih_scsi_lookup_get_clear(ioc
, smid
);
3415 mpt3sas_base_free_smid(ioc
, smid
);
3416 scsi_dma_unmap(scmd
);
3417 if (ioc
->pci_error_recovery
)
3418 scmd
->result
= DID_NO_CONNECT
<< 16;
3420 scmd
->result
= DID_RESET
<< 16;
3421 scmd
->scsi_done(scmd
);
3423 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
"completing %d cmds\n",
3428 * _scsih_setup_eedp - setup MPI request for EEDP transfer
3429 * @ioc: per adapter object
3430 * @scmd: pointer to scsi command object
3431 * @mpi_request: pointer to the SCSI_IO reqest message frame
3433 * Supporting protection 1 and 3.
3438 _scsih_setup_eedp(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
,
3439 Mpi2SCSIIORequest_t
*mpi_request
)
3442 unsigned char prot_op
= scsi_get_prot_op(scmd
);
3443 unsigned char prot_type
= scsi_get_prot_type(scmd
);
3444 Mpi25SCSIIORequest_t
*mpi_request_3v
=
3445 (Mpi25SCSIIORequest_t
*)mpi_request
;
3447 if (prot_type
== SCSI_PROT_DIF_TYPE0
|| prot_op
== SCSI_PROT_NORMAL
)
3450 if (prot_op
== SCSI_PROT_READ_STRIP
)
3451 eedp_flags
= MPI2_SCSIIO_EEDPFLAGS_CHECK_REMOVE_OP
;
3452 else if (prot_op
== SCSI_PROT_WRITE_INSERT
)
3453 eedp_flags
= MPI2_SCSIIO_EEDPFLAGS_INSERT_OP
;
3457 switch (prot_type
) {
3458 case SCSI_PROT_DIF_TYPE1
:
3459 case SCSI_PROT_DIF_TYPE2
:
3462 * enable ref/guard checking
3463 * auto increment ref tag
3465 eedp_flags
|= MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG
|
3466 MPI2_SCSIIO_EEDPFLAGS_CHECK_REFTAG
|
3467 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD
;
3468 mpi_request
->CDB
.EEDP32
.PrimaryReferenceTag
=
3469 cpu_to_be32(scsi_get_lba(scmd
));
3472 case SCSI_PROT_DIF_TYPE3
:
3475 * enable guard checking
3477 eedp_flags
|= MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD
;
3482 mpi_request_3v
->EEDPBlockSize
=
3483 cpu_to_le16(scmd
->device
->sector_size
);
3484 mpi_request
->EEDPFlags
= cpu_to_le16(eedp_flags
);
3488 * _scsih_eedp_error_handling - return sense code for EEDP errors
3489 * @scmd: pointer to scsi command object
3490 * @ioc_status: ioc status
3495 _scsih_eedp_error_handling(struct scsi_cmnd
*scmd
, u16 ioc_status
)
3499 switch (ioc_status
) {
3500 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
3503 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
3506 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
3513 scsi_build_sense_buffer(0, scmd
->sense_buffer
, ILLEGAL_REQUEST
, 0x10,
3515 scmd
->result
= DRIVER_SENSE
<< 24 | (DID_ABORT
<< 16) |
3516 SAM_STAT_CHECK_CONDITION
;
3521 * _scsih_qcmd_lck - main scsi request entry point
3522 * @scmd: pointer to scsi command object
3523 * @done: function pointer to be invoked on completion
3525 * The callback index is set inside `ioc->scsi_io_cb_idx`.
3527 * Returns 0 on success. If there's a failure, return either:
3528 * SCSI_MLQUEUE_DEVICE_BUSY if the device queue is full, or
3529 * SCSI_MLQUEUE_HOST_BUSY if the entire host queue is full
3532 _scsih_qcmd_lck(struct scsi_cmnd
*scmd
, void (*done
)(struct scsi_cmnd
*))
3534 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
3535 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
3536 struct MPT3SAS_TARGET
*sas_target_priv_data
;
3537 Mpi2SCSIIORequest_t
*mpi_request
;
3542 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
3543 if (ioc
->logging_level
& MPT_DEBUG_SCSI
)
3544 scsi_print_command(scmd
);
3547 scmd
->scsi_done
= done
;
3548 sas_device_priv_data
= scmd
->device
->hostdata
;
3549 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
3550 scmd
->result
= DID_NO_CONNECT
<< 16;
3551 scmd
->scsi_done(scmd
);
3555 if (ioc
->pci_error_recovery
|| ioc
->remove_host
) {
3556 scmd
->result
= DID_NO_CONNECT
<< 16;
3557 scmd
->scsi_done(scmd
);
3561 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
3563 /* invalid device handle */
3564 handle
= sas_target_priv_data
->handle
;
3565 if (handle
== MPT3SAS_INVALID_DEVICE_HANDLE
) {
3566 scmd
->result
= DID_NO_CONNECT
<< 16;
3567 scmd
->scsi_done(scmd
);
3572 /* host recovery or link resets sent via IOCTLs */
3573 if (ioc
->shost_recovery
|| ioc
->ioc_link_reset_in_progress
)
3574 return SCSI_MLQUEUE_HOST_BUSY
;
3576 /* device has been deleted */
3577 else if (sas_target_priv_data
->deleted
) {
3578 scmd
->result
= DID_NO_CONNECT
<< 16;
3579 scmd
->scsi_done(scmd
);
3581 /* device busy with task managment */
3582 } else if (sas_target_priv_data
->tm_busy
||
3583 sas_device_priv_data
->block
)
3584 return SCSI_MLQUEUE_DEVICE_BUSY
;
3586 if (scmd
->sc_data_direction
== DMA_FROM_DEVICE
)
3587 mpi_control
= MPI2_SCSIIO_CONTROL_READ
;
3588 else if (scmd
->sc_data_direction
== DMA_TO_DEVICE
)
3589 mpi_control
= MPI2_SCSIIO_CONTROL_WRITE
;
3591 mpi_control
= MPI2_SCSIIO_CONTROL_NODATATRANSFER
;
3594 if (!(sas_device_priv_data
->flags
& MPT_DEVICE_FLAGS_INIT
)) {
3595 if (scmd
->device
->tagged_supported
) {
3596 if (scmd
->device
->ordered_tags
)
3597 mpi_control
|= MPI2_SCSIIO_CONTROL_ORDEREDQ
;
3599 mpi_control
|= MPI2_SCSIIO_CONTROL_SIMPLEQ
;
3601 mpi_control
|= MPI2_SCSIIO_CONTROL_SIMPLEQ
;
3603 mpi_control
|= MPI2_SCSIIO_CONTROL_SIMPLEQ
;
3605 if ((sas_device_priv_data
->flags
& MPT_DEVICE_TLR_ON
) &&
3606 scmd
->cmd_len
!= 32)
3607 mpi_control
|= MPI2_SCSIIO_CONTROL_TLR_ON
;
3609 smid
= mpt3sas_base_get_smid_scsiio(ioc
, ioc
->scsi_io_cb_idx
, scmd
);
3611 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
3612 ioc
->name
, __func__
);
3615 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
3616 memset(mpi_request
, 0, sizeof(Mpi2SCSIIORequest_t
));
3617 _scsih_setup_eedp(ioc
, scmd
, mpi_request
);
3619 if (scmd
->cmd_len
== 32)
3620 mpi_control
|= 4 << MPI2_SCSIIO_CONTROL_ADDCDBLEN_SHIFT
;
3621 mpi_request
->Function
= MPI2_FUNCTION_SCSI_IO_REQUEST
;
3622 if (sas_device_priv_data
->sas_target
->flags
&
3623 MPT_TARGET_FLAGS_RAID_COMPONENT
)
3624 mpi_request
->Function
= MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH
;
3626 mpi_request
->Function
= MPI2_FUNCTION_SCSI_IO_REQUEST
;
3627 mpi_request
->DevHandle
= cpu_to_le16(handle
);
3628 mpi_request
->DataLength
= cpu_to_le32(scsi_bufflen(scmd
));
3629 mpi_request
->Control
= cpu_to_le32(mpi_control
);
3630 mpi_request
->IoFlags
= cpu_to_le16(scmd
->cmd_len
);
3631 mpi_request
->MsgFlags
= MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR
;
3632 mpi_request
->SenseBufferLength
= SCSI_SENSE_BUFFERSIZE
;
3633 mpi_request
->SenseBufferLowAddress
=
3634 mpt3sas_base_get_sense_buffer_dma(ioc
, smid
);
3635 mpi_request
->SGLOffset0
= offsetof(Mpi2SCSIIORequest_t
, SGL
) / 4;
3636 int_to_scsilun(sas_device_priv_data
->lun
, (struct scsi_lun
*)
3638 memcpy(mpi_request
->CDB
.CDB32
, scmd
->cmnd
, scmd
->cmd_len
);
3640 if (mpi_request
->DataLength
) {
3641 if (ioc
->build_sg_scmd(ioc
, scmd
, smid
)) {
3642 mpt3sas_base_free_smid(ioc
, smid
);
3646 ioc
->build_zero_len_sge(ioc
, &mpi_request
->SGL
);
3648 if (likely(mpi_request
->Function
== MPI2_FUNCTION_SCSI_IO_REQUEST
)) {
3649 if (sas_target_priv_data
->flags
& MPT_TARGET_FASTPATH_IO
) {
3650 mpi_request
->IoFlags
= cpu_to_le16(scmd
->cmd_len
|
3651 MPI25_SCSIIO_IOFLAGS_FAST_PATH
);
3652 mpt3sas_base_put_smid_fast_path(ioc
, smid
, handle
);
3654 mpt3sas_base_put_smid_scsi_io(ioc
, smid
, handle
);
3656 mpt3sas_base_put_smid_default(ioc
, smid
);
3660 return SCSI_MLQUEUE_HOST_BUSY
;
3662 static DEF_SCSI_QCMD(_scsih_qcmd
)
3666 * _scsih_normalize_sense - normalize descriptor and fixed format sense data
3667 * @sense_buffer: sense data returned by target
3668 * @data: normalized skey/asc/ascq
3673 _scsih_normalize_sense(char *sense_buffer
, struct sense_info
*data
)
3675 if ((sense_buffer
[0] & 0x7F) >= 0x72) {
3676 /* descriptor format */
3677 data
->skey
= sense_buffer
[1] & 0x0F;
3678 data
->asc
= sense_buffer
[2];
3679 data
->ascq
= sense_buffer
[3];
3682 data
->skey
= sense_buffer
[2] & 0x0F;
3683 data
->asc
= sense_buffer
[12];
3684 data
->ascq
= sense_buffer
[13];
3688 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
3690 * _scsih_scsi_ioc_info - translated non-succesfull SCSI_IO request
3691 * @ioc: per adapter object
3692 * @scmd: pointer to scsi command object
3693 * @mpi_reply: reply mf payload returned from firmware
3695 * scsi_status - SCSI Status code returned from target device
3696 * scsi_state - state info associated with SCSI_IO determined by ioc
3697 * ioc_status - ioc supplied status info
3702 _scsih_scsi_ioc_info(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
,
3703 Mpi2SCSIIOReply_t
*mpi_reply
, u16 smid
)
3707 u16 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
) &
3708 MPI2_IOCSTATUS_MASK
;
3709 u8 scsi_state
= mpi_reply
->SCSIState
;
3710 u8 scsi_status
= mpi_reply
->SCSIStatus
;
3711 char *desc_ioc_state
= NULL
;
3712 char *desc_scsi_status
= NULL
;
3713 char *desc_scsi_state
= ioc
->tmp_string
;
3714 u32 log_info
= le32_to_cpu(mpi_reply
->IOCLogInfo
);
3715 struct _sas_device
*sas_device
= NULL
;
3716 unsigned long flags
;
3717 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
3718 struct MPT3SAS_TARGET
*priv_target
= starget
->hostdata
;
3719 char *device_str
= NULL
;
3723 device_str
= "volume";
3725 if (log_info
== 0x31170000)
3728 switch (ioc_status
) {
3729 case MPI2_IOCSTATUS_SUCCESS
:
3730 desc_ioc_state
= "success";
3732 case MPI2_IOCSTATUS_INVALID_FUNCTION
:
3733 desc_ioc_state
= "invalid function";
3735 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR
:
3736 desc_ioc_state
= "scsi recovered error";
3738 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE
:
3739 desc_ioc_state
= "scsi invalid dev handle";
3741 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE
:
3742 desc_ioc_state
= "scsi device not there";
3744 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN
:
3745 desc_ioc_state
= "scsi data overrun";
3747 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
:
3748 desc_ioc_state
= "scsi data underrun";
3750 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR
:
3751 desc_ioc_state
= "scsi io data error";
3753 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR
:
3754 desc_ioc_state
= "scsi protocol error";
3756 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED
:
3757 desc_ioc_state
= "scsi task terminated";
3759 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH
:
3760 desc_ioc_state
= "scsi residual mismatch";
3762 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED
:
3763 desc_ioc_state
= "scsi task mgmt failed";
3765 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED
:
3766 desc_ioc_state
= "scsi ioc terminated";
3768 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED
:
3769 desc_ioc_state
= "scsi ext terminated";
3771 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
3772 desc_ioc_state
= "eedp guard error";
3774 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
3775 desc_ioc_state
= "eedp ref tag error";
3777 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
3778 desc_ioc_state
= "eedp app tag error";
3781 desc_ioc_state
= "unknown";
3785 switch (scsi_status
) {
3786 case MPI2_SCSI_STATUS_GOOD
:
3787 desc_scsi_status
= "good";
3789 case MPI2_SCSI_STATUS_CHECK_CONDITION
:
3790 desc_scsi_status
= "check condition";
3792 case MPI2_SCSI_STATUS_CONDITION_MET
:
3793 desc_scsi_status
= "condition met";
3795 case MPI2_SCSI_STATUS_BUSY
:
3796 desc_scsi_status
= "busy";
3798 case MPI2_SCSI_STATUS_INTERMEDIATE
:
3799 desc_scsi_status
= "intermediate";
3801 case MPI2_SCSI_STATUS_INTERMEDIATE_CONDMET
:
3802 desc_scsi_status
= "intermediate condmet";
3804 case MPI2_SCSI_STATUS_RESERVATION_CONFLICT
:
3805 desc_scsi_status
= "reservation conflict";
3807 case MPI2_SCSI_STATUS_COMMAND_TERMINATED
:
3808 desc_scsi_status
= "command terminated";
3810 case MPI2_SCSI_STATUS_TASK_SET_FULL
:
3811 desc_scsi_status
= "task set full";
3813 case MPI2_SCSI_STATUS_ACA_ACTIVE
:
3814 desc_scsi_status
= "aca active";
3816 case MPI2_SCSI_STATUS_TASK_ABORTED
:
3817 desc_scsi_status
= "task aborted";
3820 desc_scsi_status
= "unknown";
3824 desc_scsi_state
[0] = '\0';
3826 desc_scsi_state
= " ";
3827 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
)
3828 strcat(desc_scsi_state
, "response info ");
3829 if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
3830 strcat(desc_scsi_state
, "state terminated ");
3831 if (scsi_state
& MPI2_SCSI_STATE_NO_SCSI_STATUS
)
3832 strcat(desc_scsi_state
, "no status ");
3833 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_FAILED
)
3834 strcat(desc_scsi_state
, "autosense failed ");
3835 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
)
3836 strcat(desc_scsi_state
, "autosense valid ");
3838 scsi_print_command(scmd
);
3840 if (priv_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
3841 pr_warn(MPT3SAS_FMT
"\t%s wwid(0x%016llx)\n", ioc
->name
,
3842 device_str
, (unsigned long long)priv_target
->sas_address
);
3844 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
3845 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
3846 priv_target
->sas_address
);
3849 "\tsas_address(0x%016llx), phy(%d)\n",
3850 ioc
->name
, (unsigned long long)
3851 sas_device
->sas_address
, sas_device
->phy
);
3853 "\tenclosure_logical_id(0x%016llx), slot(%d)\n",
3854 ioc
->name
, (unsigned long long)
3855 sas_device
->enclosure_logical_id
, sas_device
->slot
);
3857 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3861 "\thandle(0x%04x), ioc_status(%s)(0x%04x), smid(%d)\n",
3862 ioc
->name
, le16_to_cpu(mpi_reply
->DevHandle
),
3863 desc_ioc_state
, ioc_status
, smid
);
3865 "\trequest_len(%d), underflow(%d), resid(%d)\n",
3866 ioc
->name
, scsi_bufflen(scmd
), scmd
->underflow
,
3867 scsi_get_resid(scmd
));
3869 "\ttag(%d), transfer_count(%d), sc->result(0x%08x)\n",
3870 ioc
->name
, le16_to_cpu(mpi_reply
->TaskTag
),
3871 le32_to_cpu(mpi_reply
->TransferCount
), scmd
->result
);
3873 "\tscsi_status(%s)(0x%02x), scsi_state(%s)(0x%02x)\n",
3874 ioc
->name
, desc_scsi_status
,
3875 scsi_status
, desc_scsi_state
, scsi_state
);
3877 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
) {
3878 struct sense_info data
;
3879 _scsih_normalize_sense(scmd
->sense_buffer
, &data
);
3881 "\t[sense_key,asc,ascq]: [0x%02x,0x%02x,0x%02x], count(%d)\n",
3882 ioc
->name
, data
.skey
,
3883 data
.asc
, data
.ascq
, le32_to_cpu(mpi_reply
->SenseCount
));
3886 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
) {
3887 response_info
= le32_to_cpu(mpi_reply
->ResponseInfo
);
3888 response_bytes
= (u8
*)&response_info
;
3889 _scsih_response_code(ioc
, response_bytes
[0]);
3895 * _scsih_turn_on_fault_led - illuminate Fault LED
3896 * @ioc: per adapter object
3897 * @handle: device handle
3903 _scsih_turn_on_fault_led(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3905 Mpi2SepReply_t mpi_reply
;
3906 Mpi2SepRequest_t mpi_request
;
3908 memset(&mpi_request
, 0, sizeof(Mpi2SepRequest_t
));
3909 mpi_request
.Function
= MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR
;
3910 mpi_request
.Action
= MPI2_SEP_REQ_ACTION_WRITE_STATUS
;
3911 mpi_request
.SlotStatus
=
3912 cpu_to_le32(MPI2_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT
);
3913 mpi_request
.DevHandle
= cpu_to_le16(handle
);
3914 mpi_request
.Flags
= MPI2_SEP_REQ_FLAGS_DEVHANDLE_ADDRESS
;
3915 if ((mpt3sas_base_scsi_enclosure_processor(ioc
, &mpi_reply
,
3916 &mpi_request
)) != 0) {
3917 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n", ioc
->name
,
3918 __FILE__
, __LINE__
, __func__
);
3922 if (mpi_reply
.IOCStatus
|| mpi_reply
.IOCLogInfo
) {
3923 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3924 "enclosure_processor: ioc_status (0x%04x), loginfo(0x%08x)\n",
3925 ioc
->name
, le16_to_cpu(mpi_reply
.IOCStatus
),
3926 le32_to_cpu(mpi_reply
.IOCLogInfo
)));
3932 * _scsih_send_event_to_turn_on_fault_led - fire delayed event
3933 * @ioc: per adapter object
3934 * @handle: device handle
3935 * Context: interrupt.
3940 _scsih_send_event_to_turn_on_fault_led(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3942 struct fw_event_work
*fw_event
;
3944 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
3947 fw_event
->event
= MPT3SAS_TURN_ON_FAULT_LED
;
3948 fw_event
->device_handle
= handle
;
3949 fw_event
->ioc
= ioc
;
3950 _scsih_fw_event_add(ioc
, fw_event
);
3954 * _scsih_smart_predicted_fault - process smart errors
3955 * @ioc: per adapter object
3956 * @handle: device handle
3957 * Context: interrupt.
3962 _scsih_smart_predicted_fault(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3964 struct scsi_target
*starget
;
3965 struct MPT3SAS_TARGET
*sas_target_priv_data
;
3966 Mpi2EventNotificationReply_t
*event_reply
;
3967 Mpi2EventDataSasDeviceStatusChange_t
*event_data
;
3968 struct _sas_device
*sas_device
;
3970 unsigned long flags
;
3972 /* only handle non-raid devices */
3973 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
3974 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
3976 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3979 starget
= sas_device
->starget
;
3980 sas_target_priv_data
= starget
->hostdata
;
3982 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
) ||
3983 ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
))) {
3984 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3987 starget_printk(KERN_WARNING
, starget
, "predicted fault\n");
3988 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3990 if (ioc
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_IBM
)
3991 _scsih_send_event_to_turn_on_fault_led(ioc
, handle
);
3993 /* insert into event log */
3994 sz
= offsetof(Mpi2EventNotificationReply_t
, EventData
) +
3995 sizeof(Mpi2EventDataSasDeviceStatusChange_t
);
3996 event_reply
= kzalloc(sz
, GFP_KERNEL
);
3998 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
3999 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4003 event_reply
->Function
= MPI2_FUNCTION_EVENT_NOTIFICATION
;
4004 event_reply
->Event
=
4005 cpu_to_le16(MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
);
4006 event_reply
->MsgLength
= sz
/4;
4007 event_reply
->EventDataLength
=
4008 cpu_to_le16(sizeof(Mpi2EventDataSasDeviceStatusChange_t
)/4);
4009 event_data
= (Mpi2EventDataSasDeviceStatusChange_t
*)
4010 event_reply
->EventData
;
4011 event_data
->ReasonCode
= MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
;
4012 event_data
->ASC
= 0x5D;
4013 event_data
->DevHandle
= cpu_to_le16(handle
);
4014 event_data
->SASAddress
= cpu_to_le64(sas_target_priv_data
->sas_address
);
4015 mpt3sas_ctl_add_to_event_log(ioc
, event_reply
);
4020 * _scsih_io_done - scsi request callback
4021 * @ioc: per adapter object
4022 * @smid: system request message index
4023 * @msix_index: MSIX table index supplied by the OS
4024 * @reply: reply message frame(lower 32bit addr)
4026 * Callback handler when using _scsih_qcmd.
4028 * Return 1 meaning mf should be freed from _base_interrupt
4029 * 0 means the mf is freed from this function.
4032 _scsih_io_done(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
4034 Mpi2SCSIIORequest_t
*mpi_request
;
4035 Mpi2SCSIIOReply_t
*mpi_reply
;
4036 struct scsi_cmnd
*scmd
;
4042 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
4043 u32 response_code
= 0;
4045 mpi_reply
= mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
4046 scmd
= _scsih_scsi_lookup_get_clear(ioc
, smid
);
4050 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
4052 if (mpi_reply
== NULL
) {
4053 scmd
->result
= DID_OK
<< 16;
4057 sas_device_priv_data
= scmd
->device
->hostdata
;
4058 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
||
4059 sas_device_priv_data
->sas_target
->deleted
) {
4060 scmd
->result
= DID_NO_CONNECT
<< 16;
4063 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
);
4065 /* turning off TLR */
4066 scsi_state
= mpi_reply
->SCSIState
;
4067 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
)
4069 le32_to_cpu(mpi_reply
->ResponseInfo
) & 0xFF;
4070 if (!sas_device_priv_data
->tlr_snoop_check
) {
4071 sas_device_priv_data
->tlr_snoop_check
++;
4072 if ((sas_device_priv_data
->flags
& MPT_DEVICE_TLR_ON
) &&
4073 response_code
== MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
)
4074 sas_device_priv_data
->flags
&=
4078 xfer_cnt
= le32_to_cpu(mpi_reply
->TransferCount
);
4079 scsi_set_resid(scmd
, scsi_bufflen(scmd
) - xfer_cnt
);
4080 if (ioc_status
& MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE
)
4081 log_info
= le32_to_cpu(mpi_reply
->IOCLogInfo
);
4084 ioc_status
&= MPI2_IOCSTATUS_MASK
;
4085 scsi_status
= mpi_reply
->SCSIStatus
;
4087 if (ioc_status
== MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
&& xfer_cnt
== 0 &&
4088 (scsi_status
== MPI2_SCSI_STATUS_BUSY
||
4089 scsi_status
== MPI2_SCSI_STATUS_RESERVATION_CONFLICT
||
4090 scsi_status
== MPI2_SCSI_STATUS_TASK_SET_FULL
)) {
4091 ioc_status
= MPI2_IOCSTATUS_SUCCESS
;
4094 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
) {
4095 struct sense_info data
;
4096 const void *sense_data
= mpt3sas_base_get_sense_buffer(ioc
,
4098 u32 sz
= min_t(u32
, SCSI_SENSE_BUFFERSIZE
,
4099 le32_to_cpu(mpi_reply
->SenseCount
));
4100 memcpy(scmd
->sense_buffer
, sense_data
, sz
);
4101 _scsih_normalize_sense(scmd
->sense_buffer
, &data
);
4102 /* failure prediction threshold exceeded */
4103 if (data
.asc
== 0x5D)
4104 _scsih_smart_predicted_fault(ioc
,
4105 le16_to_cpu(mpi_reply
->DevHandle
));
4106 mpt3sas_trigger_scsi(ioc
, data
.skey
, data
.asc
, data
.ascq
);
4109 switch (ioc_status
) {
4110 case MPI2_IOCSTATUS_BUSY
:
4111 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES
:
4112 scmd
->result
= SAM_STAT_BUSY
;
4115 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE
:
4116 scmd
->result
= DID_NO_CONNECT
<< 16;
4119 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED
:
4120 if (sas_device_priv_data
->block
) {
4121 scmd
->result
= DID_TRANSPORT_DISRUPTED
<< 16;
4124 if (log_info
== 0x31110630) {
4125 if (scmd
->retries
> 2) {
4126 scmd
->result
= DID_NO_CONNECT
<< 16;
4127 scsi_device_set_state(scmd
->device
,
4130 scmd
->result
= DID_SOFT_ERROR
<< 16;
4131 scmd
->device
->expecting_cc_ua
= 1;
4135 scmd
->result
= DID_SOFT_ERROR
<< 16;
4137 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED
:
4138 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED
:
4139 scmd
->result
= DID_RESET
<< 16;
4142 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH
:
4143 if ((xfer_cnt
== 0) || (scmd
->underflow
> xfer_cnt
))
4144 scmd
->result
= DID_SOFT_ERROR
<< 16;
4146 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4149 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
:
4150 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4152 if ((scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
))
4155 if (xfer_cnt
< scmd
->underflow
) {
4156 if (scsi_status
== SAM_STAT_BUSY
)
4157 scmd
->result
= SAM_STAT_BUSY
;
4159 scmd
->result
= DID_SOFT_ERROR
<< 16;
4160 } else if (scsi_state
& (MPI2_SCSI_STATE_AUTOSENSE_FAILED
|
4161 MPI2_SCSI_STATE_NO_SCSI_STATUS
))
4162 scmd
->result
= DID_SOFT_ERROR
<< 16;
4163 else if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
4164 scmd
->result
= DID_RESET
<< 16;
4165 else if (!xfer_cnt
&& scmd
->cmnd
[0] == REPORT_LUNS
) {
4166 mpi_reply
->SCSIState
= MPI2_SCSI_STATE_AUTOSENSE_VALID
;
4167 mpi_reply
->SCSIStatus
= SAM_STAT_CHECK_CONDITION
;
4168 scmd
->result
= (DRIVER_SENSE
<< 24) |
4169 SAM_STAT_CHECK_CONDITION
;
4170 scmd
->sense_buffer
[0] = 0x70;
4171 scmd
->sense_buffer
[2] = ILLEGAL_REQUEST
;
4172 scmd
->sense_buffer
[12] = 0x20;
4173 scmd
->sense_buffer
[13] = 0;
4177 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN
:
4178 scsi_set_resid(scmd
, 0);
4179 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR
:
4180 case MPI2_IOCSTATUS_SUCCESS
:
4181 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4182 if (response_code
==
4183 MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
||
4184 (scsi_state
& (MPI2_SCSI_STATE_AUTOSENSE_FAILED
|
4185 MPI2_SCSI_STATE_NO_SCSI_STATUS
)))
4186 scmd
->result
= DID_SOFT_ERROR
<< 16;
4187 else if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
4188 scmd
->result
= DID_RESET
<< 16;
4191 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
4192 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
4193 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
4194 _scsih_eedp_error_handling(scmd
, ioc_status
);
4197 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR
:
4198 case MPI2_IOCSTATUS_INVALID_FUNCTION
:
4199 case MPI2_IOCSTATUS_INVALID_SGL
:
4200 case MPI2_IOCSTATUS_INTERNAL_ERROR
:
4201 case MPI2_IOCSTATUS_INVALID_FIELD
:
4202 case MPI2_IOCSTATUS_INVALID_STATE
:
4203 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR
:
4204 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED
:
4206 scmd
->result
= DID_SOFT_ERROR
<< 16;
4211 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
4212 if (scmd
->result
&& (ioc
->logging_level
& MPT_DEBUG_REPLY
))
4213 _scsih_scsi_ioc_info(ioc
, scmd
, mpi_reply
, smid
);
4218 scsi_dma_unmap(scmd
);
4220 scmd
->scsi_done(scmd
);
4225 * _scsih_sas_host_refresh - refreshing sas host object contents
4226 * @ioc: per adapter object
4229 * During port enable, fw will send topology events for every device. Its
4230 * possible that the handles may change from the previous setting, so this
4231 * code keeping handles updating if changed.
4236 _scsih_sas_host_refresh(struct MPT3SAS_ADAPTER
*ioc
)
4241 Mpi2ConfigReply_t mpi_reply
;
4242 Mpi2SasIOUnitPage0_t
*sas_iounit_pg0
= NULL
;
4243 u16 attached_handle
;
4246 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
4247 "updating handles for sas_host(0x%016llx)\n",
4248 ioc
->name
, (unsigned long long)ioc
->sas_hba
.sas_address
));
4250 sz
= offsetof(Mpi2SasIOUnitPage0_t
, PhyData
) + (ioc
->sas_hba
.num_phys
4251 * sizeof(Mpi2SasIOUnit0PhyData_t
));
4252 sas_iounit_pg0
= kzalloc(sz
, GFP_KERNEL
);
4253 if (!sas_iounit_pg0
) {
4254 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4255 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4259 if ((mpt3sas_config_get_sas_iounit_pg0(ioc
, &mpi_reply
,
4260 sas_iounit_pg0
, sz
)) != 0)
4262 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
4263 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
4265 for (i
= 0; i
< ioc
->sas_hba
.num_phys
; i
++) {
4266 link_rate
= sas_iounit_pg0
->PhyData
[i
].NegotiatedLinkRate
>> 4;
4268 ioc
->sas_hba
.handle
= le16_to_cpu(sas_iounit_pg0
->
4269 PhyData
[0].ControllerDevHandle
);
4270 ioc
->sas_hba
.phy
[i
].handle
= ioc
->sas_hba
.handle
;
4271 attached_handle
= le16_to_cpu(sas_iounit_pg0
->PhyData
[i
].
4273 if (attached_handle
&& link_rate
< MPI2_SAS_NEG_LINK_RATE_1_5
)
4274 link_rate
= MPI2_SAS_NEG_LINK_RATE_1_5
;
4275 mpt3sas_transport_update_links(ioc
, ioc
->sas_hba
.sas_address
,
4276 attached_handle
, i
, link_rate
);
4279 kfree(sas_iounit_pg0
);
4283 * _scsih_sas_host_add - create sas host object
4284 * @ioc: per adapter object
4286 * Creating host side data object, stored in ioc->sas_hba
4291 _scsih_sas_host_add(struct MPT3SAS_ADAPTER
*ioc
)
4294 Mpi2ConfigReply_t mpi_reply
;
4295 Mpi2SasIOUnitPage0_t
*sas_iounit_pg0
= NULL
;
4296 Mpi2SasIOUnitPage1_t
*sas_iounit_pg1
= NULL
;
4297 Mpi2SasPhyPage0_t phy_pg0
;
4298 Mpi2SasDevicePage0_t sas_device_pg0
;
4299 Mpi2SasEnclosurePage0_t enclosure_pg0
;
4302 u8 device_missing_delay
;
4304 mpt3sas_config_get_number_hba_phys(ioc
, &ioc
->sas_hba
.num_phys
);
4305 if (!ioc
->sas_hba
.num_phys
) {
4306 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4307 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4311 /* sas_iounit page 0 */
4312 sz
= offsetof(Mpi2SasIOUnitPage0_t
, PhyData
) + (ioc
->sas_hba
.num_phys
*
4313 sizeof(Mpi2SasIOUnit0PhyData_t
));
4314 sas_iounit_pg0
= kzalloc(sz
, GFP_KERNEL
);
4315 if (!sas_iounit_pg0
) {
4316 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4317 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4320 if ((mpt3sas_config_get_sas_iounit_pg0(ioc
, &mpi_reply
,
4321 sas_iounit_pg0
, sz
))) {
4322 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4323 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4326 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4327 MPI2_IOCSTATUS_MASK
;
4328 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4329 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4330 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4334 /* sas_iounit page 1 */
4335 sz
= offsetof(Mpi2SasIOUnitPage1_t
, PhyData
) + (ioc
->sas_hba
.num_phys
*
4336 sizeof(Mpi2SasIOUnit1PhyData_t
));
4337 sas_iounit_pg1
= kzalloc(sz
, GFP_KERNEL
);
4338 if (!sas_iounit_pg1
) {
4339 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4340 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4343 if ((mpt3sas_config_get_sas_iounit_pg1(ioc
, &mpi_reply
,
4344 sas_iounit_pg1
, sz
))) {
4345 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4346 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4349 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4350 MPI2_IOCSTATUS_MASK
;
4351 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4352 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4353 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4357 ioc
->io_missing_delay
=
4358 sas_iounit_pg1
->IODeviceMissingDelay
;
4359 device_missing_delay
=
4360 sas_iounit_pg1
->ReportDeviceMissingDelay
;
4361 if (device_missing_delay
& MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16
)
4362 ioc
->device_missing_delay
= (device_missing_delay
&
4363 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
) * 16;
4365 ioc
->device_missing_delay
= device_missing_delay
&
4366 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
;
4368 ioc
->sas_hba
.parent_dev
= &ioc
->shost
->shost_gendev
;
4369 ioc
->sas_hba
.phy
= kcalloc(ioc
->sas_hba
.num_phys
,
4370 sizeof(struct _sas_phy
), GFP_KERNEL
);
4371 if (!ioc
->sas_hba
.phy
) {
4372 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4373 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4376 for (i
= 0; i
< ioc
->sas_hba
.num_phys
; i
++) {
4377 if ((mpt3sas_config_get_phy_pg0(ioc
, &mpi_reply
, &phy_pg0
,
4379 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4380 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4383 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4384 MPI2_IOCSTATUS_MASK
;
4385 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4386 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4387 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4392 ioc
->sas_hba
.handle
= le16_to_cpu(sas_iounit_pg0
->
4393 PhyData
[0].ControllerDevHandle
);
4394 ioc
->sas_hba
.phy
[i
].handle
= ioc
->sas_hba
.handle
;
4395 ioc
->sas_hba
.phy
[i
].phy_id
= i
;
4396 mpt3sas_transport_add_host_phy(ioc
, &ioc
->sas_hba
.phy
[i
],
4397 phy_pg0
, ioc
->sas_hba
.parent_dev
);
4399 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
4400 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, ioc
->sas_hba
.handle
))) {
4401 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4402 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4405 ioc
->sas_hba
.enclosure_handle
=
4406 le16_to_cpu(sas_device_pg0
.EnclosureHandle
);
4407 ioc
->sas_hba
.sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
4409 "host_add: handle(0x%04x), sas_addr(0x%016llx), phys(%d)\n",
4410 ioc
->name
, ioc
->sas_hba
.handle
,
4411 (unsigned long long) ioc
->sas_hba
.sas_address
,
4412 ioc
->sas_hba
.num_phys
) ;
4414 if (ioc
->sas_hba
.enclosure_handle
) {
4415 if (!(mpt3sas_config_get_enclosure_pg0(ioc
, &mpi_reply
,
4416 &enclosure_pg0
, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
4417 ioc
->sas_hba
.enclosure_handle
)))
4418 ioc
->sas_hba
.enclosure_logical_id
=
4419 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
4423 kfree(sas_iounit_pg1
);
4424 kfree(sas_iounit_pg0
);
4428 * _scsih_expander_add - creating expander object
4429 * @ioc: per adapter object
4430 * @handle: expander handle
4432 * Creating expander object, stored in ioc->sas_expander_list.
4434 * Return 0 for success, else error.
4437 _scsih_expander_add(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
4439 struct _sas_node
*sas_expander
;
4440 Mpi2ConfigReply_t mpi_reply
;
4441 Mpi2ExpanderPage0_t expander_pg0
;
4442 Mpi2ExpanderPage1_t expander_pg1
;
4443 Mpi2SasEnclosurePage0_t enclosure_pg0
;
4446 u64 sas_address
, sas_address_parent
= 0;
4448 unsigned long flags
;
4449 struct _sas_port
*mpt3sas_port
= NULL
;
4456 if (ioc
->shost_recovery
|| ioc
->pci_error_recovery
)
4459 if ((mpt3sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
4460 MPI2_SAS_EXPAND_PGAD_FORM_HNDL
, handle
))) {
4461 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4462 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4466 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4467 MPI2_IOCSTATUS_MASK
;
4468 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4469 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4470 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4474 /* handle out of order topology events */
4475 parent_handle
= le16_to_cpu(expander_pg0
.ParentDevHandle
);
4476 if (_scsih_get_sas_address(ioc
, parent_handle
, &sas_address_parent
)
4478 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4479 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4482 if (sas_address_parent
!= ioc
->sas_hba
.sas_address
) {
4483 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
4484 sas_expander
= mpt3sas_scsih_expander_find_by_sas_address(ioc
,
4485 sas_address_parent
);
4486 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
4487 if (!sas_expander
) {
4488 rc
= _scsih_expander_add(ioc
, parent_handle
);
4494 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
4495 sas_address
= le64_to_cpu(expander_pg0
.SASAddress
);
4496 sas_expander
= mpt3sas_scsih_expander_find_by_sas_address(ioc
,
4498 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
4503 sas_expander
= kzalloc(sizeof(struct _sas_node
),
4505 if (!sas_expander
) {
4506 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4507 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4511 sas_expander
->handle
= handle
;
4512 sas_expander
->num_phys
= expander_pg0
.NumPhys
;
4513 sas_expander
->sas_address_parent
= sas_address_parent
;
4514 sas_expander
->sas_address
= sas_address
;
4516 pr_info(MPT3SAS_FMT
"expander_add: handle(0x%04x)," \
4517 " parent(0x%04x), sas_addr(0x%016llx), phys(%d)\n", ioc
->name
,
4518 handle
, parent_handle
, (unsigned long long)
4519 sas_expander
->sas_address
, sas_expander
->num_phys
);
4521 if (!sas_expander
->num_phys
)
4523 sas_expander
->phy
= kcalloc(sas_expander
->num_phys
,
4524 sizeof(struct _sas_phy
), GFP_KERNEL
);
4525 if (!sas_expander
->phy
) {
4526 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4527 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4532 INIT_LIST_HEAD(&sas_expander
->sas_port_list
);
4533 mpt3sas_port
= mpt3sas_transport_port_add(ioc
, handle
,
4534 sas_address_parent
);
4535 if (!mpt3sas_port
) {
4536 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4537 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4541 sas_expander
->parent_dev
= &mpt3sas_port
->rphy
->dev
;
4543 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++) {
4544 if ((mpt3sas_config_get_expander_pg1(ioc
, &mpi_reply
,
4545 &expander_pg1
, i
, handle
))) {
4546 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4547 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4551 sas_expander
->phy
[i
].handle
= handle
;
4552 sas_expander
->phy
[i
].phy_id
= i
;
4554 if ((mpt3sas_transport_add_expander_phy(ioc
,
4555 &sas_expander
->phy
[i
], expander_pg1
,
4556 sas_expander
->parent_dev
))) {
4557 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4558 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4564 if (sas_expander
->enclosure_handle
) {
4565 if (!(mpt3sas_config_get_enclosure_pg0(ioc
, &mpi_reply
,
4566 &enclosure_pg0
, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
4567 sas_expander
->enclosure_handle
)))
4568 sas_expander
->enclosure_logical_id
=
4569 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
4572 _scsih_expander_node_add(ioc
, sas_expander
);
4578 mpt3sas_transport_port_remove(ioc
, sas_expander
->sas_address
,
4579 sas_address_parent
);
4580 kfree(sas_expander
);
4585 * mpt3sas_expander_remove - removing expander object
4586 * @ioc: per adapter object
4587 * @sas_address: expander sas_address
4592 mpt3sas_expander_remove(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
)
4594 struct _sas_node
*sas_expander
;
4595 unsigned long flags
;
4597 if (ioc
->shost_recovery
)
4600 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
4601 sas_expander
= mpt3sas_scsih_expander_find_by_sas_address(ioc
,
4604 list_del(&sas_expander
->list
);
4605 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
4607 _scsih_expander_node_remove(ioc
, sas_expander
);
4611 * _scsih_done - internal SCSI_IO callback handler.
4612 * @ioc: per adapter object
4613 * @smid: system request message index
4614 * @msix_index: MSIX table index supplied by the OS
4615 * @reply: reply message frame(lower 32bit addr)
4617 * Callback handler when sending internal generated SCSI_IO.
4618 * The callback index passed is `ioc->scsih_cb_idx`
4620 * Return 1 meaning mf should be freed from _base_interrupt
4621 * 0 means the mf is freed from this function.
4624 _scsih_done(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
4626 MPI2DefaultReply_t
*mpi_reply
;
4628 mpi_reply
= mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
4629 if (ioc
->scsih_cmds
.status
== MPT3_CMD_NOT_USED
)
4631 if (ioc
->scsih_cmds
.smid
!= smid
)
4633 ioc
->scsih_cmds
.status
|= MPT3_CMD_COMPLETE
;
4635 memcpy(ioc
->scsih_cmds
.reply
, mpi_reply
,
4636 mpi_reply
->MsgLength
*4);
4637 ioc
->scsih_cmds
.status
|= MPT3_CMD_REPLY_VALID
;
4639 ioc
->scsih_cmds
.status
&= ~MPT3_CMD_PENDING
;
4640 complete(&ioc
->scsih_cmds
.done
);
4647 #define MPT3_MAX_LUNS (255)
4651 * _scsih_check_access_status - check access flags
4652 * @ioc: per adapter object
4653 * @sas_address: sas address
4654 * @handle: sas device handle
4655 * @access_flags: errors returned during discovery of the device
4657 * Return 0 for success, else failure
4660 _scsih_check_access_status(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
,
4661 u16 handle
, u8 access_status
)
4666 switch (access_status
) {
4667 case MPI2_SAS_DEVICE0_ASTATUS_NO_ERRORS
:
4668 case MPI2_SAS_DEVICE0_ASTATUS_SATA_NEEDS_INITIALIZATION
:
4671 case MPI2_SAS_DEVICE0_ASTATUS_SATA_CAPABILITY_FAILED
:
4672 desc
= "sata capability failed";
4674 case MPI2_SAS_DEVICE0_ASTATUS_SATA_AFFILIATION_CONFLICT
:
4675 desc
= "sata affiliation conflict";
4677 case MPI2_SAS_DEVICE0_ASTATUS_ROUTE_NOT_ADDRESSABLE
:
4678 desc
= "route not addressable";
4680 case MPI2_SAS_DEVICE0_ASTATUS_SMP_ERROR_NOT_ADDRESSABLE
:
4681 desc
= "smp error not addressable";
4683 case MPI2_SAS_DEVICE0_ASTATUS_DEVICE_BLOCKED
:
4684 desc
= "device blocked";
4686 case MPI2_SAS_DEVICE0_ASTATUS_SATA_INIT_FAILED
:
4687 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UNKNOWN
:
4688 case MPI2_SAS_DEVICE0_ASTATUS_SIF_AFFILIATION_CONFLICT
:
4689 case MPI2_SAS_DEVICE0_ASTATUS_SIF_DIAG
:
4690 case MPI2_SAS_DEVICE0_ASTATUS_SIF_IDENTIFICATION
:
4691 case MPI2_SAS_DEVICE0_ASTATUS_SIF_CHECK_POWER
:
4692 case MPI2_SAS_DEVICE0_ASTATUS_SIF_PIO_SN
:
4693 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MDMA_SN
:
4694 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UDMA_SN
:
4695 case MPI2_SAS_DEVICE0_ASTATUS_SIF_ZONING_VIOLATION
:
4696 case MPI2_SAS_DEVICE0_ASTATUS_SIF_NOT_ADDRESSABLE
:
4697 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MAX
:
4698 desc
= "sata initialization failed";
4709 "discovery errors(%s): sas_address(0x%016llx), handle(0x%04x)\n",
4710 ioc
->name
, desc
, (unsigned long long)sas_address
, handle
);
4715 * _scsih_check_device - checking device responsiveness
4716 * @ioc: per adapter object
4717 * @parent_sas_address: sas address of parent expander or sas host
4718 * @handle: attached device handle
4719 * @phy_numberv: phy number
4720 * @link_rate: new link rate
4725 _scsih_check_device(struct MPT3SAS_ADAPTER
*ioc
,
4726 u64 parent_sas_address
, u16 handle
, u8 phy_number
, u8 link_rate
)
4728 Mpi2ConfigReply_t mpi_reply
;
4729 Mpi2SasDevicePage0_t sas_device_pg0
;
4730 struct _sas_device
*sas_device
;
4732 unsigned long flags
;
4734 struct scsi_target
*starget
;
4735 struct MPT3SAS_TARGET
*sas_target_priv_data
;
4739 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
4740 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
)))
4743 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
4744 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
4747 /* wide port handling ~ we need only handle device once for the phy that
4748 * is matched in sas device page zero
4750 if (phy_number
!= sas_device_pg0
.PhyNum
)
4753 /* check if this is end device */
4754 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
4755 if (!(_scsih_is_end_device(device_info
)))
4758 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
4759 sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
4760 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
4764 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4768 if (unlikely(sas_device
->handle
!= handle
)) {
4769 starget
= sas_device
->starget
;
4770 sas_target_priv_data
= starget
->hostdata
;
4771 starget_printk(KERN_INFO
, starget
,
4772 "handle changed from(0x%04x) to (0x%04x)!!!\n",
4773 sas_device
->handle
, handle
);
4774 sas_target_priv_data
->handle
= handle
;
4775 sas_device
->handle
= handle
;
4778 /* check if device is present */
4779 if (!(le16_to_cpu(sas_device_pg0
.Flags
) &
4780 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT
)) {
4782 "device is not present handle(0x%04x), flags!!!\n",
4784 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4788 /* check if there were any issues with discovery */
4789 if (_scsih_check_access_status(ioc
, sas_address
, handle
,
4790 sas_device_pg0
.AccessStatus
)) {
4791 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4795 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4796 _scsih_ublock_io_device(ioc
, sas_address
);
4801 * _scsih_add_device - creating sas device object
4802 * @ioc: per adapter object
4803 * @handle: sas device handle
4804 * @phy_num: phy number end device attached to
4805 * @is_pd: is this hidden raid component
4807 * Creating end device object, stored in ioc->sas_device_list.
4809 * Returns 0 for success, non-zero for failure.
4812 _scsih_add_device(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
, u8 phy_num
,
4815 Mpi2ConfigReply_t mpi_reply
;
4816 Mpi2SasDevicePage0_t sas_device_pg0
;
4817 Mpi2SasEnclosurePage0_t enclosure_pg0
;
4818 struct _sas_device
*sas_device
;
4822 unsigned long flags
;
4824 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
4825 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
4826 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4827 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4831 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4832 MPI2_IOCSTATUS_MASK
;
4833 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4834 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4835 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4839 /* check if this is end device */
4840 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
4841 if (!(_scsih_is_end_device(device_info
)))
4843 sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
4845 /* check if device is present */
4846 if (!(le16_to_cpu(sas_device_pg0
.Flags
) &
4847 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT
)) {
4848 pr_err(MPT3SAS_FMT
"device is not present handle(0x04%x)!!!\n",
4853 /* check if there were any issues with discovery */
4854 if (_scsih_check_access_status(ioc
, sas_address
, handle
,
4855 sas_device_pg0
.AccessStatus
))
4858 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
4859 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
4861 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4866 sas_device
= kzalloc(sizeof(struct _sas_device
),
4869 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4870 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4874 sas_device
->handle
= handle
;
4875 if (_scsih_get_sas_address(ioc
,
4876 le16_to_cpu(sas_device_pg0
.ParentDevHandle
),
4877 &sas_device
->sas_address_parent
) != 0)
4878 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4879 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4880 sas_device
->enclosure_handle
=
4881 le16_to_cpu(sas_device_pg0
.EnclosureHandle
);
4883 le16_to_cpu(sas_device_pg0
.Slot
);
4884 sas_device
->device_info
= device_info
;
4885 sas_device
->sas_address
= sas_address
;
4886 sas_device
->phy
= sas_device_pg0
.PhyNum
;
4887 sas_device
->fast_path
= (le16_to_cpu(sas_device_pg0
.Flags
) &
4888 MPI25_SAS_DEVICE0_FLAGS_FAST_PATH_CAPABLE
) ? 1 : 0;
4890 /* get enclosure_logical_id */
4891 if (sas_device
->enclosure_handle
&& !(mpt3sas_config_get_enclosure_pg0(
4892 ioc
, &mpi_reply
, &enclosure_pg0
, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
4893 sas_device
->enclosure_handle
)))
4894 sas_device
->enclosure_logical_id
=
4895 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
4897 /* get device name */
4898 sas_device
->device_name
= le64_to_cpu(sas_device_pg0
.DeviceName
);
4900 if (ioc
->wait_for_discovery_to_complete
)
4901 _scsih_sas_device_init_add(ioc
, sas_device
);
4903 _scsih_sas_device_add(ioc
, sas_device
);
4909 * _scsih_remove_device - removing sas device object
4910 * @ioc: per adapter object
4911 * @sas_device_delete: the sas_device object
4916 _scsih_remove_device(struct MPT3SAS_ADAPTER
*ioc
,
4917 struct _sas_device
*sas_device
)
4919 struct MPT3SAS_TARGET
*sas_target_priv_data
;
4922 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
4923 "%s: enter: handle(0x%04x), sas_addr(0x%016llx)\n",
4924 ioc
->name
, __func__
,
4925 sas_device
->handle
, (unsigned long long)
4926 sas_device
->sas_address
));
4928 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
4929 sas_target_priv_data
= sas_device
->starget
->hostdata
;
4930 sas_target_priv_data
->deleted
= 1;
4931 _scsih_ublock_io_device(ioc
, sas_device
->sas_address
);
4932 sas_target_priv_data
->handle
=
4933 MPT3SAS_INVALID_DEVICE_HANDLE
;
4935 mpt3sas_transport_port_remove(ioc
,
4936 sas_device
->sas_address
,
4937 sas_device
->sas_address_parent
);
4940 "removing handle(0x%04x), sas_addr(0x%016llx)\n",
4941 ioc
->name
, sas_device
->handle
,
4942 (unsigned long long) sas_device
->sas_address
);
4944 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
4945 "%s: exit: handle(0x%04x), sas_addr(0x%016llx)\n",
4946 ioc
->name
, __func__
,
4947 sas_device
->handle
, (unsigned long long)
4948 sas_device
->sas_address
));
4953 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
4955 * _scsih_sas_topology_change_event_debug - debug for topology event
4956 * @ioc: per adapter object
4957 * @event_data: event data payload
4961 _scsih_sas_topology_change_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
4962 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
4968 char *status_str
= NULL
;
4969 u8 link_rate
, prev_link_rate
;
4971 switch (event_data
->ExpStatus
) {
4972 case MPI2_EVENT_SAS_TOPO_ES_ADDED
:
4975 case MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
:
4976 status_str
= "remove";
4978 case MPI2_EVENT_SAS_TOPO_ES_RESPONDING
:
4980 status_str
= "responding";
4982 case MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
:
4983 status_str
= "remove delay";
4986 status_str
= "unknown status";
4989 pr_info(MPT3SAS_FMT
"sas topology change: (%s)\n",
4990 ioc
->name
, status_str
);
4991 pr_info("\thandle(0x%04x), enclosure_handle(0x%04x) " \
4992 "start_phy(%02d), count(%d)\n",
4993 le16_to_cpu(event_data
->ExpanderDevHandle
),
4994 le16_to_cpu(event_data
->EnclosureHandle
),
4995 event_data
->StartPhyNum
, event_data
->NumEntries
);
4996 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
4997 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
5000 phy_number
= event_data
->StartPhyNum
+ i
;
5001 reason_code
= event_data
->PHY
[i
].PhyStatus
&
5002 MPI2_EVENT_SAS_TOPO_RC_MASK
;
5003 switch (reason_code
) {
5004 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED
:
5005 status_str
= "target add";
5007 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
:
5008 status_str
= "target remove";
5010 case MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING
:
5011 status_str
= "delay target remove";
5013 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED
:
5014 status_str
= "link rate change";
5016 case MPI2_EVENT_SAS_TOPO_RC_NO_CHANGE
:
5017 status_str
= "target responding";
5020 status_str
= "unknown";
5023 link_rate
= event_data
->PHY
[i
].LinkRate
>> 4;
5024 prev_link_rate
= event_data
->PHY
[i
].LinkRate
& 0xF;
5025 pr_info("\tphy(%02d), attached_handle(0x%04x): %s:" \
5026 " link rate: new(0x%02x), old(0x%02x)\n", phy_number
,
5027 handle
, status_str
, link_rate
, prev_link_rate
);
5034 * _scsih_sas_topology_change_event - handle topology changes
5035 * @ioc: per adapter object
5036 * @fw_event: The fw_event_work object
5041 _scsih_sas_topology_change_event(struct MPT3SAS_ADAPTER
*ioc
,
5042 struct fw_event_work
*fw_event
)
5045 u16 parent_handle
, handle
;
5047 u8 phy_number
, max_phys
;
5048 struct _sas_node
*sas_expander
;
5050 unsigned long flags
;
5051 u8 link_rate
, prev_link_rate
;
5052 Mpi2EventDataSasTopologyChangeList_t
*event_data
= fw_event
->event_data
;
5054 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5055 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5056 _scsih_sas_topology_change_event_debug(ioc
, event_data
);
5059 if (ioc
->shost_recovery
|| ioc
->remove_host
|| ioc
->pci_error_recovery
)
5062 if (!ioc
->sas_hba
.num_phys
)
5063 _scsih_sas_host_add(ioc
);
5065 _scsih_sas_host_refresh(ioc
);
5067 if (fw_event
->ignore
) {
5068 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5069 "ignoring expander event\n", ioc
->name
));
5073 parent_handle
= le16_to_cpu(event_data
->ExpanderDevHandle
);
5075 /* handle expander add */
5076 if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_ADDED
)
5077 if (_scsih_expander_add(ioc
, parent_handle
) != 0)
5080 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
5081 sas_expander
= mpt3sas_scsih_expander_find_by_handle(ioc
,
5084 sas_address
= sas_expander
->sas_address
;
5085 max_phys
= sas_expander
->num_phys
;
5086 } else if (parent_handle
< ioc
->sas_hba
.num_phys
) {
5087 sas_address
= ioc
->sas_hba
.sas_address
;
5088 max_phys
= ioc
->sas_hba
.num_phys
;
5090 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
5093 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
5095 /* handle siblings events */
5096 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
5097 if (fw_event
->ignore
) {
5098 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5099 "ignoring expander event\n", ioc
->name
));
5102 if (ioc
->remove_host
|| ioc
->pci_error_recovery
)
5104 phy_number
= event_data
->StartPhyNum
+ i
;
5105 if (phy_number
>= max_phys
)
5107 reason_code
= event_data
->PHY
[i
].PhyStatus
&
5108 MPI2_EVENT_SAS_TOPO_RC_MASK
;
5109 if ((event_data
->PHY
[i
].PhyStatus
&
5110 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT
) && (reason_code
!=
5111 MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
))
5113 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
5116 link_rate
= event_data
->PHY
[i
].LinkRate
>> 4;
5117 prev_link_rate
= event_data
->PHY
[i
].LinkRate
& 0xF;
5118 switch (reason_code
) {
5119 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED
:
5121 if (ioc
->shost_recovery
)
5124 if (link_rate
== prev_link_rate
)
5127 mpt3sas_transport_update_links(ioc
, sas_address
,
5128 handle
, phy_number
, link_rate
);
5130 if (link_rate
< MPI2_SAS_NEG_LINK_RATE_1_5
)
5133 _scsih_check_device(ioc
, sas_address
, handle
,
5134 phy_number
, link_rate
);
5137 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED
:
5139 if (ioc
->shost_recovery
)
5142 mpt3sas_transport_update_links(ioc
, sas_address
,
5143 handle
, phy_number
, link_rate
);
5145 _scsih_add_device(ioc
, handle
, phy_number
, 0);
5148 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
:
5150 _scsih_device_remove_by_handle(ioc
, handle
);
5155 /* handle expander removal */
5156 if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
&&
5158 mpt3sas_expander_remove(ioc
, sas_address
);
5163 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5165 * _scsih_sas_device_status_change_event_debug - debug for device event
5166 * @event_data: event data payload
5172 _scsih_sas_device_status_change_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
5173 Mpi2EventDataSasDeviceStatusChange_t
*event_data
)
5175 char *reason_str
= NULL
;
5177 switch (event_data
->ReasonCode
) {
5178 case MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
:
5179 reason_str
= "smart data";
5181 case MPI2_EVENT_SAS_DEV_STAT_RC_UNSUPPORTED
:
5182 reason_str
= "unsupported device discovered";
5184 case MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
:
5185 reason_str
= "internal device reset";
5187 case MPI2_EVENT_SAS_DEV_STAT_RC_TASK_ABORT_INTERNAL
:
5188 reason_str
= "internal task abort";
5190 case MPI2_EVENT_SAS_DEV_STAT_RC_ABORT_TASK_SET_INTERNAL
:
5191 reason_str
= "internal task abort set";
5193 case MPI2_EVENT_SAS_DEV_STAT_RC_CLEAR_TASK_SET_INTERNAL
:
5194 reason_str
= "internal clear task set";
5196 case MPI2_EVENT_SAS_DEV_STAT_RC_QUERY_TASK_INTERNAL
:
5197 reason_str
= "internal query task";
5199 case MPI2_EVENT_SAS_DEV_STAT_RC_SATA_INIT_FAILURE
:
5200 reason_str
= "sata init failure";
5202 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET
:
5203 reason_str
= "internal device reset complete";
5205 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_TASK_ABORT_INTERNAL
:
5206 reason_str
= "internal task abort complete";
5208 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION
:
5209 reason_str
= "internal async notification";
5211 case MPI2_EVENT_SAS_DEV_STAT_RC_EXPANDER_REDUCED_FUNCTIONALITY
:
5212 reason_str
= "expander reduced functionality";
5214 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_EXPANDER_REDUCED_FUNCTIONALITY
:
5215 reason_str
= "expander reduced functionality complete";
5218 reason_str
= "unknown reason";
5221 pr_info(MPT3SAS_FMT
"device status change: (%s)\n"
5222 "\thandle(0x%04x), sas address(0x%016llx), tag(%d)",
5223 ioc
->name
, reason_str
, le16_to_cpu(event_data
->DevHandle
),
5224 (unsigned long long)le64_to_cpu(event_data
->SASAddress
),
5225 le16_to_cpu(event_data
->TaskTag
));
5226 if (event_data
->ReasonCode
== MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
)
5227 pr_info(MPT3SAS_FMT
", ASC(0x%x), ASCQ(0x%x)\n", ioc
->name
,
5228 event_data
->ASC
, event_data
->ASCQ
);
5234 * _scsih_sas_device_status_change_event - handle device status change
5235 * @ioc: per adapter object
5236 * @fw_event: The fw_event_work object
5242 _scsih_sas_device_status_change_event(struct MPT3SAS_ADAPTER
*ioc
,
5243 struct fw_event_work
*fw_event
)
5245 struct MPT3SAS_TARGET
*target_priv_data
;
5246 struct _sas_device
*sas_device
;
5248 unsigned long flags
;
5249 Mpi2EventDataSasDeviceStatusChange_t
*event_data
=
5250 fw_event
->event_data
;
5252 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5253 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5254 _scsih_sas_device_status_change_event_debug(ioc
,
5258 /* In MPI Revision K (0xC), the internal device reset complete was
5259 * implemented, so avoid setting tm_busy flag for older firmware.
5261 if ((ioc
->facts
.HeaderVersion
>> 8) < 0xC)
5264 if (event_data
->ReasonCode
!=
5265 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
&&
5266 event_data
->ReasonCode
!=
5267 MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET
)
5270 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5271 sas_address
= le64_to_cpu(event_data
->SASAddress
);
5272 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
5275 if (!sas_device
|| !sas_device
->starget
) {
5276 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5280 target_priv_data
= sas_device
->starget
->hostdata
;
5281 if (!target_priv_data
) {
5282 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5286 if (event_data
->ReasonCode
==
5287 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
)
5288 target_priv_data
->tm_busy
= 1;
5290 target_priv_data
->tm_busy
= 0;
5291 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5294 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5296 * _scsih_sas_enclosure_dev_status_change_event_debug - debug for enclosure
5298 * @ioc: per adapter object
5299 * @event_data: event data payload
5305 _scsih_sas_enclosure_dev_status_change_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
5306 Mpi2EventDataSasEnclDevStatusChange_t
*event_data
)
5308 char *reason_str
= NULL
;
5310 switch (event_data
->ReasonCode
) {
5311 case MPI2_EVENT_SAS_ENCL_RC_ADDED
:
5312 reason_str
= "enclosure add";
5314 case MPI2_EVENT_SAS_ENCL_RC_NOT_RESPONDING
:
5315 reason_str
= "enclosure remove";
5318 reason_str
= "unknown reason";
5322 pr_info(MPT3SAS_FMT
"enclosure status change: (%s)\n"
5323 "\thandle(0x%04x), enclosure logical id(0x%016llx)"
5324 " number slots(%d)\n", ioc
->name
, reason_str
,
5325 le16_to_cpu(event_data
->EnclosureHandle
),
5326 (unsigned long long)le64_to_cpu(event_data
->EnclosureLogicalID
),
5327 le16_to_cpu(event_data
->StartSlot
));
5332 * _scsih_sas_enclosure_dev_status_change_event - handle enclosure events
5333 * @ioc: per adapter object
5334 * @fw_event: The fw_event_work object
5340 _scsih_sas_enclosure_dev_status_change_event(struct MPT3SAS_ADAPTER
*ioc
,
5341 struct fw_event_work
*fw_event
)
5343 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5344 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5345 _scsih_sas_enclosure_dev_status_change_event_debug(ioc
,
5346 fw_event
->event_data
);
5351 * _scsih_sas_broadcast_primitive_event - handle broadcast events
5352 * @ioc: per adapter object
5353 * @fw_event: The fw_event_work object
5359 _scsih_sas_broadcast_primitive_event(struct MPT3SAS_ADAPTER
*ioc
,
5360 struct fw_event_work
*fw_event
)
5362 struct scsi_cmnd
*scmd
;
5363 struct scsi_device
*sdev
;
5366 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
5367 u32 termination_count
;
5369 Mpi2SCSITaskManagementReply_t
*mpi_reply
;
5370 Mpi2EventDataSasBroadcastPrimitive_t
*event_data
= fw_event
->event_data
;
5372 unsigned long flags
;
5375 u8 task_abort_retries
;
5377 mutex_lock(&ioc
->tm_cmds
.mutex
);
5379 "%s: enter: phy number(%d), width(%d)\n",
5380 ioc
->name
, __func__
, event_data
->PhyNum
,
5381 event_data
->PortWidth
);
5383 _scsih_block_io_all_device(ioc
);
5385 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5386 mpi_reply
= ioc
->tm_cmds
.reply
;
5387 broadcast_aen_retry
:
5389 /* sanity checks for retrying this loop */
5390 if (max_retries
++ == 5) {
5391 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
"%s: giving up\n",
5392 ioc
->name
, __func__
));
5394 } else if (max_retries
> 1)
5395 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
"%s: %d retry\n",
5396 ioc
->name
, __func__
, max_retries
- 1));
5398 termination_count
= 0;
5400 for (smid
= 1; smid
<= ioc
->scsiio_depth
; smid
++) {
5401 if (ioc
->shost_recovery
)
5403 scmd
= _scsih_scsi_lookup_get(ioc
, smid
);
5406 sdev
= scmd
->device
;
5407 sas_device_priv_data
= sdev
->hostdata
;
5408 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
)
5410 /* skip hidden raid components */
5411 if (sas_device_priv_data
->sas_target
->flags
&
5412 MPT_TARGET_FLAGS_RAID_COMPONENT
)
5415 if (sas_device_priv_data
->sas_target
->flags
&
5416 MPT_TARGET_FLAGS_VOLUME
)
5419 handle
= sas_device_priv_data
->sas_target
->handle
;
5420 lun
= sas_device_priv_data
->lun
;
5423 if (ioc
->shost_recovery
)
5426 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
5427 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, 0, 0, lun
,
5428 MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK
, smid
, 30, 0,
5431 sdev_printk(KERN_WARNING
, sdev
,
5432 "mpt3sas_scsih_issue_tm: FAILED when sending "
5433 "QUERY_TASK: scmd(%p)\n", scmd
);
5434 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5435 goto broadcast_aen_retry
;
5437 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
)
5438 & MPI2_IOCSTATUS_MASK
;
5439 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
5440 sdev_printk(KERN_WARNING
, sdev
,
5441 "query task: FAILED with IOCSTATUS(0x%04x), scmd(%p)\n",
5443 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5444 goto broadcast_aen_retry
;
5447 /* see if IO is still owned by IOC and target */
5448 if (mpi_reply
->ResponseCode
==
5449 MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED
||
5450 mpi_reply
->ResponseCode
==
5451 MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC
) {
5452 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5455 task_abort_retries
= 0;
5457 if (task_abort_retries
++ == 60) {
5458 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5459 "%s: ABORT_TASK: giving up\n", ioc
->name
,
5461 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5462 goto broadcast_aen_retry
;
5465 if (ioc
->shost_recovery
)
5468 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, sdev
->channel
, sdev
->id
,
5469 sdev
->lun
, MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
, smid
, 30,
5470 scmd
->serial_number
, TM_MUTEX_OFF
);
5472 sdev_printk(KERN_WARNING
, sdev
,
5473 "mpt3sas_scsih_issue_tm: ABORT_TASK: FAILED : "
5474 "scmd(%p)\n", scmd
);
5478 if (task_abort_retries
> 1)
5479 sdev_printk(KERN_WARNING
, sdev
,
5480 "mpt3sas_scsih_issue_tm: ABORT_TASK: RETRIES (%d):"
5482 task_abort_retries
- 1, scmd
);
5484 termination_count
+= le32_to_cpu(mpi_reply
->TerminationCount
);
5485 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5488 if (ioc
->broadcast_aen_pending
) {
5489 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5490 "%s: loop back due to pending AEN\n",
5491 ioc
->name
, __func__
));
5492 ioc
->broadcast_aen_pending
= 0;
5493 goto broadcast_aen_retry
;
5497 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
5500 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5501 "%s - exit, query_count = %d termination_count = %d\n",
5502 ioc
->name
, __func__
, query_count
, termination_count
));
5504 ioc
->broadcast_aen_busy
= 0;
5505 if (!ioc
->shost_recovery
)
5506 _scsih_ublock_io_all_device(ioc
);
5507 mutex_unlock(&ioc
->tm_cmds
.mutex
);
5511 * _scsih_sas_discovery_event - handle discovery events
5512 * @ioc: per adapter object
5513 * @fw_event: The fw_event_work object
5519 _scsih_sas_discovery_event(struct MPT3SAS_ADAPTER
*ioc
,
5520 struct fw_event_work
*fw_event
)
5522 Mpi2EventDataSasDiscovery_t
*event_data
= fw_event
->event_data
;
5524 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5525 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
) {
5526 pr_info(MPT3SAS_FMT
"discovery event: (%s)", ioc
->name
,
5527 (event_data
->ReasonCode
== MPI2_EVENT_SAS_DISC_RC_STARTED
) ?
5529 if (event_data
->DiscoveryStatus
)
5530 pr_info("discovery_status(0x%08x)",
5531 le32_to_cpu(event_data
->DiscoveryStatus
));
5536 if (event_data
->ReasonCode
== MPI2_EVENT_SAS_DISC_RC_STARTED
&&
5537 !ioc
->sas_hba
.num_phys
) {
5538 if (disable_discovery
> 0 && ioc
->shost_recovery
) {
5539 /* Wait for the reset to complete */
5540 while (ioc
->shost_recovery
)
5543 _scsih_sas_host_add(ioc
);
5548 * _scsih_ir_fastpath - turn on fastpath for IR physdisk
5549 * @ioc: per adapter object
5550 * @handle: device handle for physical disk
5551 * @phys_disk_num: physical disk number
5553 * Return 0 for success, else failure.
5556 _scsih_ir_fastpath(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
, u8 phys_disk_num
)
5558 Mpi2RaidActionRequest_t
*mpi_request
;
5559 Mpi2RaidActionReply_t
*mpi_reply
;
5567 mutex_lock(&ioc
->scsih_cmds
.mutex
);
5569 if (ioc
->scsih_cmds
.status
!= MPT3_CMD_NOT_USED
) {
5570 pr_err(MPT3SAS_FMT
"%s: scsih_cmd in use\n",
5571 ioc
->name
, __func__
);
5575 ioc
->scsih_cmds
.status
= MPT3_CMD_PENDING
;
5577 smid
= mpt3sas_base_get_smid(ioc
, ioc
->scsih_cb_idx
);
5579 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
5580 ioc
->name
, __func__
);
5581 ioc
->scsih_cmds
.status
= MPT3_CMD_NOT_USED
;
5586 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
5587 ioc
->scsih_cmds
.smid
= smid
;
5588 memset(mpi_request
, 0, sizeof(Mpi2RaidActionRequest_t
));
5590 mpi_request
->Function
= MPI2_FUNCTION_RAID_ACTION
;
5591 mpi_request
->Action
= MPI2_RAID_ACTION_PHYSDISK_HIDDEN
;
5592 mpi_request
->PhysDiskNum
= phys_disk_num
;
5594 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
"IR RAID_ACTION: turning fast "\
5595 "path on for handle(0x%04x), phys_disk_num (0x%02x)\n", ioc
->name
,
5596 handle
, phys_disk_num
));
5598 init_completion(&ioc
->scsih_cmds
.done
);
5599 mpt3sas_base_put_smid_default(ioc
, smid
);
5600 wait_for_completion_timeout(&ioc
->scsih_cmds
.done
, 10*HZ
);
5602 if (!(ioc
->scsih_cmds
.status
& MPT3_CMD_COMPLETE
)) {
5603 pr_err(MPT3SAS_FMT
"%s: timeout\n",
5604 ioc
->name
, __func__
);
5605 if (!(ioc
->scsih_cmds
.status
& MPT3_CMD_RESET
))
5611 if (ioc
->scsih_cmds
.status
& MPT3_CMD_REPLY_VALID
) {
5613 mpi_reply
= ioc
->scsih_cmds
.reply
;
5614 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
);
5615 if (ioc_status
& MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE
)
5616 log_info
= le32_to_cpu(mpi_reply
->IOCLogInfo
);
5619 ioc_status
&= MPI2_IOCSTATUS_MASK
;
5620 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
5621 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5622 "IR RAID_ACTION: failed: ioc_status(0x%04x), "
5623 "loginfo(0x%08x)!!!\n", ioc
->name
, ioc_status
,
5627 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5628 "IR RAID_ACTION: completed successfully\n",
5633 ioc
->scsih_cmds
.status
= MPT3_CMD_NOT_USED
;
5634 mutex_unlock(&ioc
->scsih_cmds
.mutex
);
5637 mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
5643 * _scsih_reprobe_lun - reprobing lun
5644 * @sdev: scsi device struct
5645 * @no_uld_attach: sdev->no_uld_attach flag setting
5649 _scsih_reprobe_lun(struct scsi_device
*sdev
, void *no_uld_attach
)
5652 sdev
->no_uld_attach
= no_uld_attach
? 1 : 0;
5653 sdev_printk(KERN_INFO
, sdev
, "%s raid component\n",
5654 sdev
->no_uld_attach
? "hidding" : "exposing");
5655 rc
= scsi_device_reprobe(sdev
);
5659 * _scsih_sas_volume_add - add new volume
5660 * @ioc: per adapter object
5661 * @element: IR config element data
5667 _scsih_sas_volume_add(struct MPT3SAS_ADAPTER
*ioc
,
5668 Mpi2EventIrConfigElement_t
*element
)
5670 struct _raid_device
*raid_device
;
5671 unsigned long flags
;
5673 u16 handle
= le16_to_cpu(element
->VolDevHandle
);
5676 mpt3sas_config_get_volume_wwid(ioc
, handle
, &wwid
);
5679 "failure at %s:%d/%s()!\n", ioc
->name
,
5680 __FILE__
, __LINE__
, __func__
);
5684 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
5685 raid_device
= _scsih_raid_device_find_by_wwid(ioc
, wwid
);
5686 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
5691 raid_device
= kzalloc(sizeof(struct _raid_device
), GFP_KERNEL
);
5694 "failure at %s:%d/%s()!\n", ioc
->name
,
5695 __FILE__
, __LINE__
, __func__
);
5699 raid_device
->id
= ioc
->sas_id
++;
5700 raid_device
->channel
= RAID_CHANNEL
;
5701 raid_device
->handle
= handle
;
5702 raid_device
->wwid
= wwid
;
5703 _scsih_raid_device_add(ioc
, raid_device
);
5704 if (!ioc
->wait_for_discovery_to_complete
) {
5705 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
5706 raid_device
->id
, 0);
5708 _scsih_raid_device_remove(ioc
, raid_device
);
5710 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
5711 _scsih_determine_boot_device(ioc
, raid_device
, 1);
5712 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
5717 * _scsih_sas_volume_delete - delete volume
5718 * @ioc: per adapter object
5719 * @handle: volume device handle
5725 _scsih_sas_volume_delete(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
5727 struct _raid_device
*raid_device
;
5728 unsigned long flags
;
5729 struct MPT3SAS_TARGET
*sas_target_priv_data
;
5730 struct scsi_target
*starget
= NULL
;
5732 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
5733 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
5735 if (raid_device
->starget
) {
5736 starget
= raid_device
->starget
;
5737 sas_target_priv_data
= starget
->hostdata
;
5738 sas_target_priv_data
->deleted
= 1;
5740 pr_info(MPT3SAS_FMT
"removing handle(0x%04x), wwid(0x%016llx)\n",
5741 ioc
->name
, raid_device
->handle
,
5742 (unsigned long long) raid_device
->wwid
);
5743 list_del(&raid_device
->list
);
5746 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
5748 scsi_remove_target(&starget
->dev
);
5752 * _scsih_sas_pd_expose - expose pd component to /dev/sdX
5753 * @ioc: per adapter object
5754 * @element: IR config element data
5760 _scsih_sas_pd_expose(struct MPT3SAS_ADAPTER
*ioc
,
5761 Mpi2EventIrConfigElement_t
*element
)
5763 struct _sas_device
*sas_device
;
5764 struct scsi_target
*starget
= NULL
;
5765 struct MPT3SAS_TARGET
*sas_target_priv_data
;
5766 unsigned long flags
;
5767 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
5769 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5770 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
5772 sas_device
->volume_handle
= 0;
5773 sas_device
->volume_wwid
= 0;
5774 clear_bit(handle
, ioc
->pd_handles
);
5775 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
5776 starget
= sas_device
->starget
;
5777 sas_target_priv_data
= starget
->hostdata
;
5778 sas_target_priv_data
->flags
&=
5779 ~MPT_TARGET_FLAGS_RAID_COMPONENT
;
5782 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5786 /* exposing raid component */
5788 starget_for_each_device(starget
, NULL
, _scsih_reprobe_lun
);
5792 * _scsih_sas_pd_hide - hide pd component from /dev/sdX
5793 * @ioc: per adapter object
5794 * @element: IR config element data
5800 _scsih_sas_pd_hide(struct MPT3SAS_ADAPTER
*ioc
,
5801 Mpi2EventIrConfigElement_t
*element
)
5803 struct _sas_device
*sas_device
;
5804 struct scsi_target
*starget
= NULL
;
5805 struct MPT3SAS_TARGET
*sas_target_priv_data
;
5806 unsigned long flags
;
5807 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
5808 u16 volume_handle
= 0;
5809 u64 volume_wwid
= 0;
5811 mpt3sas_config_get_volume_handle(ioc
, handle
, &volume_handle
);
5813 mpt3sas_config_get_volume_wwid(ioc
, volume_handle
,
5816 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5817 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
5819 set_bit(handle
, ioc
->pd_handles
);
5820 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
5821 starget
= sas_device
->starget
;
5822 sas_target_priv_data
= starget
->hostdata
;
5823 sas_target_priv_data
->flags
|=
5824 MPT_TARGET_FLAGS_RAID_COMPONENT
;
5825 sas_device
->volume_handle
= volume_handle
;
5826 sas_device
->volume_wwid
= volume_wwid
;
5829 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5833 /* hiding raid component */
5834 _scsih_ir_fastpath(ioc
, handle
, element
->PhysDiskNum
);
5836 starget_for_each_device(starget
, (void *)1, _scsih_reprobe_lun
);
5840 * _scsih_sas_pd_delete - delete pd component
5841 * @ioc: per adapter object
5842 * @element: IR config element data
5848 _scsih_sas_pd_delete(struct MPT3SAS_ADAPTER
*ioc
,
5849 Mpi2EventIrConfigElement_t
*element
)
5851 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
5853 _scsih_device_remove_by_handle(ioc
, handle
);
5857 * _scsih_sas_pd_add - remove pd component
5858 * @ioc: per adapter object
5859 * @element: IR config element data
5865 _scsih_sas_pd_add(struct MPT3SAS_ADAPTER
*ioc
,
5866 Mpi2EventIrConfigElement_t
*element
)
5868 struct _sas_device
*sas_device
;
5869 unsigned long flags
;
5870 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
5871 Mpi2ConfigReply_t mpi_reply
;
5872 Mpi2SasDevicePage0_t sas_device_pg0
;
5877 set_bit(handle
, ioc
->pd_handles
);
5879 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5880 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
5881 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5883 _scsih_ir_fastpath(ioc
, handle
, element
->PhysDiskNum
);
5887 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
5888 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
5889 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
5890 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5894 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
5895 MPI2_IOCSTATUS_MASK
;
5896 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
5897 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
5898 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5902 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
5903 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
))
5904 mpt3sas_transport_update_links(ioc
, sas_address
, handle
,
5905 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
5907 _scsih_ir_fastpath(ioc
, handle
, element
->PhysDiskNum
);
5908 _scsih_add_device(ioc
, handle
, 0, 1);
5911 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5913 * _scsih_sas_ir_config_change_event_debug - debug for IR Config Change events
5914 * @ioc: per adapter object
5915 * @event_data: event data payload
5921 _scsih_sas_ir_config_change_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
5922 Mpi2EventDataIrConfigChangeList_t
*event_data
)
5924 Mpi2EventIrConfigElement_t
*element
;
5927 char *reason_str
= NULL
, *element_str
= NULL
;
5929 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
5931 pr_info(MPT3SAS_FMT
"raid config change: (%s), elements(%d)\n",
5932 ioc
->name
, (le32_to_cpu(event_data
->Flags
) &
5933 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
) ?
5934 "foreign" : "native", event_data
->NumElements
);
5935 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
5936 switch (element
->ReasonCode
) {
5937 case MPI2_EVENT_IR_CHANGE_RC_ADDED
:
5940 case MPI2_EVENT_IR_CHANGE_RC_REMOVED
:
5941 reason_str
= "remove";
5943 case MPI2_EVENT_IR_CHANGE_RC_NO_CHANGE
:
5944 reason_str
= "no change";
5946 case MPI2_EVENT_IR_CHANGE_RC_HIDE
:
5947 reason_str
= "hide";
5949 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE
:
5950 reason_str
= "unhide";
5952 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED
:
5953 reason_str
= "volume_created";
5955 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
:
5956 reason_str
= "volume_deleted";
5958 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED
:
5959 reason_str
= "pd_created";
5961 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED
:
5962 reason_str
= "pd_deleted";
5965 reason_str
= "unknown reason";
5968 element_type
= le16_to_cpu(element
->ElementFlags
) &
5969 MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK
;
5970 switch (element_type
) {
5971 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLUME_ELEMENT
:
5972 element_str
= "volume";
5974 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLPHYSDISK_ELEMENT
:
5975 element_str
= "phys disk";
5977 case MPI2_EVENT_IR_CHANGE_EFLAGS_HOTSPARE_ELEMENT
:
5978 element_str
= "hot spare";
5981 element_str
= "unknown element";
5984 pr_info("\t(%s:%s), vol handle(0x%04x), " \
5985 "pd handle(0x%04x), pd num(0x%02x)\n", element_str
,
5986 reason_str
, le16_to_cpu(element
->VolDevHandle
),
5987 le16_to_cpu(element
->PhysDiskDevHandle
),
5988 element
->PhysDiskNum
);
5994 * _scsih_sas_ir_config_change_event - handle ir configuration change events
5995 * @ioc: per adapter object
5996 * @fw_event: The fw_event_work object
6002 _scsih_sas_ir_config_change_event(struct MPT3SAS_ADAPTER
*ioc
,
6003 struct fw_event_work
*fw_event
)
6005 Mpi2EventIrConfigElement_t
*element
;
6008 Mpi2EventDataIrConfigChangeList_t
*event_data
= fw_event
->event_data
;
6010 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
6011 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
6012 _scsih_sas_ir_config_change_event_debug(ioc
, event_data
);
6016 foreign_config
= (le32_to_cpu(event_data
->Flags
) &
6017 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
) ? 1 : 0;
6019 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
6020 if (ioc
->shost_recovery
) {
6022 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
6023 if (element
->ReasonCode
== MPI2_EVENT_IR_CHANGE_RC_HIDE
)
6024 _scsih_ir_fastpath(ioc
,
6025 le16_to_cpu(element
->PhysDiskDevHandle
),
6026 element
->PhysDiskNum
);
6030 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
6032 switch (element
->ReasonCode
) {
6033 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED
:
6034 case MPI2_EVENT_IR_CHANGE_RC_ADDED
:
6035 if (!foreign_config
)
6036 _scsih_sas_volume_add(ioc
, element
);
6038 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
:
6039 case MPI2_EVENT_IR_CHANGE_RC_REMOVED
:
6040 if (!foreign_config
)
6041 _scsih_sas_volume_delete(ioc
,
6042 le16_to_cpu(element
->VolDevHandle
));
6044 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED
:
6045 _scsih_sas_pd_hide(ioc
, element
);
6047 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED
:
6048 _scsih_sas_pd_expose(ioc
, element
);
6050 case MPI2_EVENT_IR_CHANGE_RC_HIDE
:
6051 _scsih_sas_pd_add(ioc
, element
);
6053 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE
:
6054 _scsih_sas_pd_delete(ioc
, element
);
6061 * _scsih_sas_ir_volume_event - IR volume event
6062 * @ioc: per adapter object
6063 * @fw_event: The fw_event_work object
6069 _scsih_sas_ir_volume_event(struct MPT3SAS_ADAPTER
*ioc
,
6070 struct fw_event_work
*fw_event
)
6073 unsigned long flags
;
6074 struct _raid_device
*raid_device
;
6078 Mpi2EventDataIrVolume_t
*event_data
= fw_event
->event_data
;
6080 if (ioc
->shost_recovery
)
6083 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED
)
6086 handle
= le16_to_cpu(event_data
->VolDevHandle
);
6087 state
= le32_to_cpu(event_data
->NewValue
);
6088 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
6089 "%s: handle(0x%04x), old(0x%08x), new(0x%08x)\n",
6090 ioc
->name
, __func__
, handle
,
6091 le32_to_cpu(event_data
->PreviousValue
), state
));
6093 case MPI2_RAID_VOL_STATE_MISSING
:
6094 case MPI2_RAID_VOL_STATE_FAILED
:
6095 _scsih_sas_volume_delete(ioc
, handle
);
6098 case MPI2_RAID_VOL_STATE_ONLINE
:
6099 case MPI2_RAID_VOL_STATE_DEGRADED
:
6100 case MPI2_RAID_VOL_STATE_OPTIMAL
:
6102 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6103 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
6104 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6109 mpt3sas_config_get_volume_wwid(ioc
, handle
, &wwid
);
6112 "failure at %s:%d/%s()!\n", ioc
->name
,
6113 __FILE__
, __LINE__
, __func__
);
6117 raid_device
= kzalloc(sizeof(struct _raid_device
), GFP_KERNEL
);
6120 "failure at %s:%d/%s()!\n", ioc
->name
,
6121 __FILE__
, __LINE__
, __func__
);
6125 raid_device
->id
= ioc
->sas_id
++;
6126 raid_device
->channel
= RAID_CHANNEL
;
6127 raid_device
->handle
= handle
;
6128 raid_device
->wwid
= wwid
;
6129 _scsih_raid_device_add(ioc
, raid_device
);
6130 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
6131 raid_device
->id
, 0);
6133 _scsih_raid_device_remove(ioc
, raid_device
);
6136 case MPI2_RAID_VOL_STATE_INITIALIZING
:
6143 * _scsih_sas_ir_physical_disk_event - PD event
6144 * @ioc: per adapter object
6145 * @fw_event: The fw_event_work object
6151 _scsih_sas_ir_physical_disk_event(struct MPT3SAS_ADAPTER
*ioc
,
6152 struct fw_event_work
*fw_event
)
6154 u16 handle
, parent_handle
;
6156 struct _sas_device
*sas_device
;
6157 unsigned long flags
;
6158 Mpi2ConfigReply_t mpi_reply
;
6159 Mpi2SasDevicePage0_t sas_device_pg0
;
6161 Mpi2EventDataIrPhysicalDisk_t
*event_data
= fw_event
->event_data
;
6164 if (ioc
->shost_recovery
)
6167 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_PHYSDISK_RC_STATE_CHANGED
)
6170 handle
= le16_to_cpu(event_data
->PhysDiskDevHandle
);
6171 state
= le32_to_cpu(event_data
->NewValue
);
6173 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
6174 "%s: handle(0x%04x), old(0x%08x), new(0x%08x)\n",
6175 ioc
->name
, __func__
, handle
,
6176 le32_to_cpu(event_data
->PreviousValue
), state
));
6178 case MPI2_RAID_PD_STATE_ONLINE
:
6179 case MPI2_RAID_PD_STATE_DEGRADED
:
6180 case MPI2_RAID_PD_STATE_REBUILDING
:
6181 case MPI2_RAID_PD_STATE_OPTIMAL
:
6182 case MPI2_RAID_PD_STATE_HOT_SPARE
:
6184 set_bit(handle
, ioc
->pd_handles
);
6185 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6186 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
6187 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6192 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6193 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
6195 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
6196 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6200 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6201 MPI2_IOCSTATUS_MASK
;
6202 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6203 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
6204 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6208 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
6209 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
))
6210 mpt3sas_transport_update_links(ioc
, sas_address
, handle
,
6211 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
6213 _scsih_add_device(ioc
, handle
, 0, 1);
6217 case MPI2_RAID_PD_STATE_OFFLINE
:
6218 case MPI2_RAID_PD_STATE_NOT_CONFIGURED
:
6219 case MPI2_RAID_PD_STATE_NOT_COMPATIBLE
:
6225 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
6227 * _scsih_sas_ir_operation_status_event_debug - debug for IR op event
6228 * @ioc: per adapter object
6229 * @event_data: event data payload
6235 _scsih_sas_ir_operation_status_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
6236 Mpi2EventDataIrOperationStatus_t
*event_data
)
6238 char *reason_str
= NULL
;
6240 switch (event_data
->RAIDOperation
) {
6241 case MPI2_EVENT_IR_RAIDOP_RESYNC
:
6242 reason_str
= "resync";
6244 case MPI2_EVENT_IR_RAIDOP_ONLINE_CAP_EXPANSION
:
6245 reason_str
= "online capacity expansion";
6247 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK
:
6248 reason_str
= "consistency check";
6250 case MPI2_EVENT_IR_RAIDOP_BACKGROUND_INIT
:
6251 reason_str
= "background init";
6253 case MPI2_EVENT_IR_RAIDOP_MAKE_DATA_CONSISTENT
:
6254 reason_str
= "make data consistent";
6261 pr_info(MPT3SAS_FMT
"raid operational status: (%s)" \
6262 "\thandle(0x%04x), percent complete(%d)\n",
6263 ioc
->name
, reason_str
,
6264 le16_to_cpu(event_data
->VolDevHandle
),
6265 event_data
->PercentComplete
);
6270 * _scsih_sas_ir_operation_status_event - handle RAID operation events
6271 * @ioc: per adapter object
6272 * @fw_event: The fw_event_work object
6278 _scsih_sas_ir_operation_status_event(struct MPT3SAS_ADAPTER
*ioc
,
6279 struct fw_event_work
*fw_event
)
6281 Mpi2EventDataIrOperationStatus_t
*event_data
= fw_event
->event_data
;
6282 static struct _raid_device
*raid_device
;
6283 unsigned long flags
;
6286 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
6287 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
6288 _scsih_sas_ir_operation_status_event_debug(ioc
,
6292 /* code added for raid transport support */
6293 if (event_data
->RAIDOperation
== MPI2_EVENT_IR_RAIDOP_RESYNC
) {
6295 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6296 handle
= le16_to_cpu(event_data
->VolDevHandle
);
6297 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
6299 raid_device
->percent_complete
=
6300 event_data
->PercentComplete
;
6301 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6306 * _scsih_prep_device_scan - initialize parameters prior to device scan
6307 * @ioc: per adapter object
6309 * Set the deleted flag prior to device scan. If the device is found during
6310 * the scan, then we clear the deleted flag.
6313 _scsih_prep_device_scan(struct MPT3SAS_ADAPTER
*ioc
)
6315 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
6316 struct scsi_device
*sdev
;
6318 shost_for_each_device(sdev
, ioc
->shost
) {
6319 sas_device_priv_data
= sdev
->hostdata
;
6320 if (sas_device_priv_data
&& sas_device_priv_data
->sas_target
)
6321 sas_device_priv_data
->sas_target
->deleted
= 1;
6326 * _scsih_mark_responding_sas_device - mark a sas_devices as responding
6327 * @ioc: per adapter object
6328 * @sas_address: sas address
6329 * @slot: enclosure slot id
6330 * @handle: device handle
6332 * After host reset, find out whether devices are still responding.
6333 * Used in _scsih_remove_unresponsive_sas_devices.
6338 _scsih_mark_responding_sas_device(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
,
6339 u16 slot
, u16 handle
)
6341 struct MPT3SAS_TARGET
*sas_target_priv_data
= NULL
;
6342 struct scsi_target
*starget
;
6343 struct _sas_device
*sas_device
;
6344 unsigned long flags
;
6346 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6347 list_for_each_entry(sas_device
, &ioc
->sas_device_list
, list
) {
6348 if (sas_device
->sas_address
== sas_address
&&
6349 sas_device
->slot
== slot
) {
6350 sas_device
->responding
= 1;
6351 starget
= sas_device
->starget
;
6352 if (starget
&& starget
->hostdata
) {
6353 sas_target_priv_data
= starget
->hostdata
;
6354 sas_target_priv_data
->tm_busy
= 0;
6355 sas_target_priv_data
->deleted
= 0;
6357 sas_target_priv_data
= NULL
;
6359 starget_printk(KERN_INFO
, starget
,
6360 "handle(0x%04x), sas_addr(0x%016llx), "
6361 "enclosure logical id(0x%016llx), "
6362 "slot(%d)\n", handle
,
6363 (unsigned long long)sas_device
->sas_address
,
6364 (unsigned long long)
6365 sas_device
->enclosure_logical_id
,
6367 if (sas_device
->handle
== handle
)
6369 pr_info("\thandle changed from(0x%04x)!!!\n",
6370 sas_device
->handle
);
6371 sas_device
->handle
= handle
;
6372 if (sas_target_priv_data
)
6373 sas_target_priv_data
->handle
= handle
;
6378 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6382 * _scsih_search_responding_sas_devices -
6383 * @ioc: per adapter object
6385 * After host reset, find out whether devices are still responding.
6391 _scsih_search_responding_sas_devices(struct MPT3SAS_ADAPTER
*ioc
)
6393 Mpi2SasDevicePage0_t sas_device_pg0
;
6394 Mpi2ConfigReply_t mpi_reply
;
6399 pr_info(MPT3SAS_FMT
"search for end-devices: start\n", ioc
->name
);
6401 if (list_empty(&ioc
->sas_device_list
))
6405 while (!(mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6406 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE
,
6408 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6409 MPI2_IOCSTATUS_MASK
;
6410 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
6412 handle
= le16_to_cpu(sas_device_pg0
.DevHandle
);
6413 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
6414 if (!(_scsih_is_end_device(device_info
)))
6416 _scsih_mark_responding_sas_device(ioc
,
6417 le64_to_cpu(sas_device_pg0
.SASAddress
),
6418 le16_to_cpu(sas_device_pg0
.Slot
), handle
);
6422 pr_info(MPT3SAS_FMT
"search for end-devices: complete\n",
6427 * _scsih_mark_responding_raid_device - mark a raid_device as responding
6428 * @ioc: per adapter object
6429 * @wwid: world wide identifier for raid volume
6430 * @handle: device handle
6432 * After host reset, find out whether devices are still responding.
6433 * Used in _scsih_remove_unresponsive_raid_devices.
6438 _scsih_mark_responding_raid_device(struct MPT3SAS_ADAPTER
*ioc
, u64 wwid
,
6441 struct MPT3SAS_TARGET
*sas_target_priv_data
;
6442 struct scsi_target
*starget
;
6443 struct _raid_device
*raid_device
;
6444 unsigned long flags
;
6446 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6447 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
6448 if (raid_device
->wwid
== wwid
&& raid_device
->starget
) {
6449 starget
= raid_device
->starget
;
6450 if (starget
&& starget
->hostdata
) {
6451 sas_target_priv_data
= starget
->hostdata
;
6452 sas_target_priv_data
->deleted
= 0;
6454 sas_target_priv_data
= NULL
;
6455 raid_device
->responding
= 1;
6456 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6457 starget_printk(KERN_INFO
, raid_device
->starget
,
6458 "handle(0x%04x), wwid(0x%016llx)\n", handle
,
6459 (unsigned long long)raid_device
->wwid
);
6460 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6461 if (raid_device
->handle
== handle
) {
6462 spin_unlock_irqrestore(&ioc
->raid_device_lock
,
6466 pr_info("\thandle changed from(0x%04x)!!!\n",
6467 raid_device
->handle
);
6468 raid_device
->handle
= handle
;
6469 if (sas_target_priv_data
)
6470 sas_target_priv_data
->handle
= handle
;
6471 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6475 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6479 * _scsih_search_responding_raid_devices -
6480 * @ioc: per adapter object
6482 * After host reset, find out whether devices are still responding.
6488 _scsih_search_responding_raid_devices(struct MPT3SAS_ADAPTER
*ioc
)
6490 Mpi2RaidVolPage1_t volume_pg1
;
6491 Mpi2RaidVolPage0_t volume_pg0
;
6492 Mpi2RaidPhysDiskPage0_t pd_pg0
;
6493 Mpi2ConfigReply_t mpi_reply
;
6498 if (!ioc
->ir_firmware
)
6501 pr_info(MPT3SAS_FMT
"search for raid volumes: start\n",
6504 if (list_empty(&ioc
->raid_device_list
))
6508 while (!(mpt3sas_config_get_raid_volume_pg1(ioc
, &mpi_reply
,
6509 &volume_pg1
, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE
, handle
))) {
6510 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6511 MPI2_IOCSTATUS_MASK
;
6512 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
6514 handle
= le16_to_cpu(volume_pg1
.DevHandle
);
6516 if (mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
,
6517 &volume_pg0
, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
6518 sizeof(Mpi2RaidVolPage0_t
)))
6521 if (volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_OPTIMAL
||
6522 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_ONLINE
||
6523 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_DEGRADED
)
6524 _scsih_mark_responding_raid_device(ioc
,
6525 le64_to_cpu(volume_pg1
.WWID
), handle
);
6528 /* refresh the pd_handles */
6529 phys_disk_num
= 0xFF;
6530 memset(ioc
->pd_handles
, 0, ioc
->pd_handles_sz
);
6531 while (!(mpt3sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
6532 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM
,
6534 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6535 MPI2_IOCSTATUS_MASK
;
6536 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
6538 phys_disk_num
= pd_pg0
.PhysDiskNum
;
6539 handle
= le16_to_cpu(pd_pg0
.DevHandle
);
6540 set_bit(handle
, ioc
->pd_handles
);
6543 pr_info(MPT3SAS_FMT
"search for responding raid volumes: complete\n",
6548 * _scsih_mark_responding_expander - mark a expander as responding
6549 * @ioc: per adapter object
6550 * @sas_address: sas address
6553 * After host reset, find out whether devices are still responding.
6554 * Used in _scsih_remove_unresponsive_expanders.
6559 _scsih_mark_responding_expander(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
,
6562 struct _sas_node
*sas_expander
;
6563 unsigned long flags
;
6566 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
6567 list_for_each_entry(sas_expander
, &ioc
->sas_expander_list
, list
) {
6568 if (sas_expander
->sas_address
!= sas_address
)
6570 sas_expander
->responding
= 1;
6571 if (sas_expander
->handle
== handle
)
6573 pr_info("\texpander(0x%016llx): handle changed" \
6574 " from(0x%04x) to (0x%04x)!!!\n",
6575 (unsigned long long)sas_expander
->sas_address
,
6576 sas_expander
->handle
, handle
);
6577 sas_expander
->handle
= handle
;
6578 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++)
6579 sas_expander
->phy
[i
].handle
= handle
;
6583 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
6587 * _scsih_search_responding_expanders -
6588 * @ioc: per adapter object
6590 * After host reset, find out whether devices are still responding.
6596 _scsih_search_responding_expanders(struct MPT3SAS_ADAPTER
*ioc
)
6598 Mpi2ExpanderPage0_t expander_pg0
;
6599 Mpi2ConfigReply_t mpi_reply
;
6604 pr_info(MPT3SAS_FMT
"search for expanders: start\n", ioc
->name
);
6606 if (list_empty(&ioc
->sas_expander_list
))
6610 while (!(mpt3sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
6611 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL
, handle
))) {
6613 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6614 MPI2_IOCSTATUS_MASK
;
6615 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
6618 handle
= le16_to_cpu(expander_pg0
.DevHandle
);
6619 sas_address
= le64_to_cpu(expander_pg0
.SASAddress
);
6620 pr_info("\texpander present: handle(0x%04x), sas_addr(0x%016llx)\n",
6622 (unsigned long long)sas_address
);
6623 _scsih_mark_responding_expander(ioc
, sas_address
, handle
);
6627 pr_info(MPT3SAS_FMT
"search for expanders: complete\n", ioc
->name
);
6631 * _scsih_remove_unresponding_sas_devices - removing unresponding devices
6632 * @ioc: per adapter object
6637 _scsih_remove_unresponding_sas_devices(struct MPT3SAS_ADAPTER
*ioc
)
6639 struct _sas_device
*sas_device
, *sas_device_next
;
6640 struct _sas_node
*sas_expander
, *sas_expander_next
;
6641 struct _raid_device
*raid_device
, *raid_device_next
;
6642 struct list_head tmp_list
;
6643 unsigned long flags
;
6645 pr_info(MPT3SAS_FMT
"removing unresponding devices: start\n",
6648 /* removing unresponding end devices */
6649 pr_info(MPT3SAS_FMT
"removing unresponding devices: end-devices\n",
6651 list_for_each_entry_safe(sas_device
, sas_device_next
,
6652 &ioc
->sas_device_list
, list
) {
6653 if (!sas_device
->responding
)
6654 mpt3sas_device_remove_by_sas_address(ioc
,
6655 sas_device
->sas_address
);
6657 sas_device
->responding
= 0;
6660 /* removing unresponding volumes */
6661 if (ioc
->ir_firmware
) {
6662 pr_info(MPT3SAS_FMT
"removing unresponding devices: volumes\n",
6664 list_for_each_entry_safe(raid_device
, raid_device_next
,
6665 &ioc
->raid_device_list
, list
) {
6666 if (!raid_device
->responding
)
6667 _scsih_sas_volume_delete(ioc
,
6668 raid_device
->handle
);
6670 raid_device
->responding
= 0;
6674 /* removing unresponding expanders */
6675 pr_info(MPT3SAS_FMT
"removing unresponding devices: expanders\n",
6677 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
6678 INIT_LIST_HEAD(&tmp_list
);
6679 list_for_each_entry_safe(sas_expander
, sas_expander_next
,
6680 &ioc
->sas_expander_list
, list
) {
6681 if (!sas_expander
->responding
)
6682 list_move_tail(&sas_expander
->list
, &tmp_list
);
6684 sas_expander
->responding
= 0;
6686 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
6687 list_for_each_entry_safe(sas_expander
, sas_expander_next
, &tmp_list
,
6689 list_del(&sas_expander
->list
);
6690 _scsih_expander_node_remove(ioc
, sas_expander
);
6693 pr_info(MPT3SAS_FMT
"removing unresponding devices: complete\n",
6696 /* unblock devices */
6697 _scsih_ublock_io_all_device(ioc
);
6701 _scsih_refresh_expander_links(struct MPT3SAS_ADAPTER
*ioc
,
6702 struct _sas_node
*sas_expander
, u16 handle
)
6704 Mpi2ExpanderPage1_t expander_pg1
;
6705 Mpi2ConfigReply_t mpi_reply
;
6708 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++) {
6709 if ((mpt3sas_config_get_expander_pg1(ioc
, &mpi_reply
,
6710 &expander_pg1
, i
, handle
))) {
6711 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
6712 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6716 mpt3sas_transport_update_links(ioc
, sas_expander
->sas_address
,
6717 le16_to_cpu(expander_pg1
.AttachedDevHandle
), i
,
6718 expander_pg1
.NegotiatedLinkRate
>> 4);
6723 * _scsih_scan_for_devices_after_reset - scan for devices after host reset
6724 * @ioc: per adapter object
6729 _scsih_scan_for_devices_after_reset(struct MPT3SAS_ADAPTER
*ioc
)
6731 Mpi2ExpanderPage0_t expander_pg0
;
6732 Mpi2SasDevicePage0_t sas_device_pg0
;
6733 Mpi2RaidVolPage1_t volume_pg1
;
6734 Mpi2RaidVolPage0_t volume_pg0
;
6735 Mpi2RaidPhysDiskPage0_t pd_pg0
;
6736 Mpi2EventIrConfigElement_t element
;
6737 Mpi2ConfigReply_t mpi_reply
;
6740 u16 handle
, parent_handle
;
6742 struct _sas_device
*sas_device
;
6743 struct _sas_node
*expander_device
;
6744 static struct _raid_device
*raid_device
;
6746 unsigned long flags
;
6748 pr_info(MPT3SAS_FMT
"scan devices: start\n", ioc
->name
);
6750 _scsih_sas_host_refresh(ioc
);
6752 pr_info(MPT3SAS_FMT
"\tscan devices: expanders start\n", ioc
->name
);
6756 while (!(mpt3sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
6757 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL
, handle
))) {
6758 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6759 MPI2_IOCSTATUS_MASK
;
6760 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6761 pr_info(MPT3SAS_FMT
"\tbreak from expander scan: " \
6762 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6763 ioc
->name
, ioc_status
,
6764 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6767 handle
= le16_to_cpu(expander_pg0
.DevHandle
);
6768 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
6769 expander_device
= mpt3sas_scsih_expander_find_by_sas_address(
6770 ioc
, le64_to_cpu(expander_pg0
.SASAddress
));
6771 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
6772 if (expander_device
)
6773 _scsih_refresh_expander_links(ioc
, expander_device
,
6776 pr_info(MPT3SAS_FMT
"\tBEFORE adding expander: " \
6777 "handle (0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
6778 handle
, (unsigned long long)
6779 le64_to_cpu(expander_pg0
.SASAddress
));
6780 _scsih_expander_add(ioc
, handle
);
6781 pr_info(MPT3SAS_FMT
"\tAFTER adding expander: " \
6782 "handle (0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
6783 handle
, (unsigned long long)
6784 le64_to_cpu(expander_pg0
.SASAddress
));
6788 pr_info(MPT3SAS_FMT
"\tscan devices: expanders complete\n",
6791 if (!ioc
->ir_firmware
)
6794 pr_info(MPT3SAS_FMT
"\tscan devices: phys disk start\n", ioc
->name
);
6797 phys_disk_num
= 0xFF;
6798 while (!(mpt3sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
6799 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM
,
6801 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6802 MPI2_IOCSTATUS_MASK
;
6803 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6804 pr_info(MPT3SAS_FMT
"\tbreak from phys disk scan: "\
6805 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6806 ioc
->name
, ioc_status
,
6807 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6810 phys_disk_num
= pd_pg0
.PhysDiskNum
;
6811 handle
= le16_to_cpu(pd_pg0
.DevHandle
);
6812 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6813 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
6814 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6817 if (mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6818 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
6821 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6822 MPI2_IOCSTATUS_MASK
;
6823 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6824 pr_info(MPT3SAS_FMT
"\tbreak from phys disk scan " \
6825 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6826 ioc
->name
, ioc_status
,
6827 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6830 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
6831 if (!_scsih_get_sas_address(ioc
, parent_handle
,
6833 pr_info(MPT3SAS_FMT
"\tBEFORE adding phys disk: " \
6834 " handle (0x%04x), sas_addr(0x%016llx)\n",
6835 ioc
->name
, handle
, (unsigned long long)
6836 le64_to_cpu(sas_device_pg0
.SASAddress
));
6837 mpt3sas_transport_update_links(ioc
, sas_address
,
6838 handle
, sas_device_pg0
.PhyNum
,
6839 MPI2_SAS_NEG_LINK_RATE_1_5
);
6840 set_bit(handle
, ioc
->pd_handles
);
6842 /* This will retry adding the end device.
6843 * _scsih_add_device() will decide on retries and
6844 * return "1" when it should be retried
6846 while (_scsih_add_device(ioc
, handle
, retry_count
++,
6850 pr_info(MPT3SAS_FMT
"\tAFTER adding phys disk: " \
6851 " handle (0x%04x), sas_addr(0x%016llx)\n",
6852 ioc
->name
, handle
, (unsigned long long)
6853 le64_to_cpu(sas_device_pg0
.SASAddress
));
6857 pr_info(MPT3SAS_FMT
"\tscan devices: phys disk complete\n",
6860 pr_info(MPT3SAS_FMT
"\tscan devices: volumes start\n", ioc
->name
);
6864 while (!(mpt3sas_config_get_raid_volume_pg1(ioc
, &mpi_reply
,
6865 &volume_pg1
, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE
, handle
))) {
6866 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6867 MPI2_IOCSTATUS_MASK
;
6868 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6869 pr_info(MPT3SAS_FMT
"\tbreak from volume scan: " \
6870 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6871 ioc
->name
, ioc_status
,
6872 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6875 handle
= le16_to_cpu(volume_pg1
.DevHandle
);
6876 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6877 raid_device
= _scsih_raid_device_find_by_wwid(ioc
,
6878 le64_to_cpu(volume_pg1
.WWID
));
6879 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6882 if (mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
,
6883 &volume_pg0
, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
6884 sizeof(Mpi2RaidVolPage0_t
)))
6886 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6887 MPI2_IOCSTATUS_MASK
;
6888 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6889 pr_info(MPT3SAS_FMT
"\tbreak from volume scan: " \
6890 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6891 ioc
->name
, ioc_status
,
6892 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6895 if (volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_OPTIMAL
||
6896 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_ONLINE
||
6897 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_DEGRADED
) {
6898 memset(&element
, 0, sizeof(Mpi2EventIrConfigElement_t
));
6899 element
.ReasonCode
= MPI2_EVENT_IR_CHANGE_RC_ADDED
;
6900 element
.VolDevHandle
= volume_pg1
.DevHandle
;
6902 "\tBEFORE adding volume: handle (0x%04x)\n",
6903 ioc
->name
, volume_pg1
.DevHandle
);
6904 _scsih_sas_volume_add(ioc
, &element
);
6906 "\tAFTER adding volume: handle (0x%04x)\n",
6907 ioc
->name
, volume_pg1
.DevHandle
);
6911 pr_info(MPT3SAS_FMT
"\tscan devices: volumes complete\n",
6916 pr_info(MPT3SAS_FMT
"\tscan devices: end devices start\n",
6921 while (!(mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6922 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE
,
6924 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6925 MPI2_IOCSTATUS_MASK
;
6926 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6927 pr_info(MPT3SAS_FMT
"\tbreak from end device scan:"\
6928 " ioc_status(0x%04x), loginfo(0x%08x)\n",
6929 ioc
->name
, ioc_status
,
6930 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6933 handle
= le16_to_cpu(sas_device_pg0
.DevHandle
);
6934 if (!(_scsih_is_end_device(
6935 le32_to_cpu(sas_device_pg0
.DeviceInfo
))))
6937 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6938 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
6939 le64_to_cpu(sas_device_pg0
.SASAddress
));
6940 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6943 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
6944 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
)) {
6945 pr_info(MPT3SAS_FMT
"\tBEFORE adding end device: " \
6946 "handle (0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
6947 handle
, (unsigned long long)
6948 le64_to_cpu(sas_device_pg0
.SASAddress
));
6949 mpt3sas_transport_update_links(ioc
, sas_address
, handle
,
6950 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
6952 /* This will retry adding the end device.
6953 * _scsih_add_device() will decide on retries and
6954 * return "1" when it should be retried
6956 while (_scsih_add_device(ioc
, handle
, retry_count
++,
6960 pr_info(MPT3SAS_FMT
"\tAFTER adding end device: " \
6961 "handle (0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
6962 handle
, (unsigned long long)
6963 le64_to_cpu(sas_device_pg0
.SASAddress
));
6966 pr_info(MPT3SAS_FMT
"\tscan devices: end devices complete\n",
6969 pr_info(MPT3SAS_FMT
"scan devices: complete\n", ioc
->name
);
6972 * mpt3sas_scsih_reset_handler - reset callback handler (for scsih)
6973 * @ioc: per adapter object
6974 * @reset_phase: phase
6976 * The handler for doing any required cleanup or initialization.
6978 * The reset phase can be MPT3_IOC_PRE_RESET, MPT3_IOC_AFTER_RESET,
6979 * MPT3_IOC_DONE_RESET
6984 mpt3sas_scsih_reset_handler(struct MPT3SAS_ADAPTER
*ioc
, int reset_phase
)
6986 switch (reset_phase
) {
6987 case MPT3_IOC_PRE_RESET
:
6988 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
6989 "%s: MPT3_IOC_PRE_RESET\n", ioc
->name
, __func__
));
6991 case MPT3_IOC_AFTER_RESET
:
6992 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
6993 "%s: MPT3_IOC_AFTER_RESET\n", ioc
->name
, __func__
));
6994 if (ioc
->scsih_cmds
.status
& MPT3_CMD_PENDING
) {
6995 ioc
->scsih_cmds
.status
|= MPT3_CMD_RESET
;
6996 mpt3sas_base_free_smid(ioc
, ioc
->scsih_cmds
.smid
);
6997 complete(&ioc
->scsih_cmds
.done
);
6999 if (ioc
->tm_cmds
.status
& MPT3_CMD_PENDING
) {
7000 ioc
->tm_cmds
.status
|= MPT3_CMD_RESET
;
7001 mpt3sas_base_free_smid(ioc
, ioc
->tm_cmds
.smid
);
7002 complete(&ioc
->tm_cmds
.done
);
7005 _scsih_fw_event_cleanup_queue(ioc
);
7006 _scsih_flush_running_cmds(ioc
);
7008 case MPT3_IOC_DONE_RESET
:
7009 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
7010 "%s: MPT3_IOC_DONE_RESET\n", ioc
->name
, __func__
));
7011 if ((!ioc
->is_driver_loading
) && !(disable_discovery
> 0 &&
7012 !ioc
->sas_hba
.num_phys
)) {
7013 _scsih_prep_device_scan(ioc
);
7014 _scsih_search_responding_sas_devices(ioc
);
7015 _scsih_search_responding_raid_devices(ioc
);
7016 _scsih_search_responding_expanders(ioc
);
7017 _scsih_error_recovery_delete_devices(ioc
);
7024 * _mpt3sas_fw_work - delayed task for processing firmware events
7025 * @ioc: per adapter object
7026 * @fw_event: The fw_event_work object
7032 _mpt3sas_fw_work(struct MPT3SAS_ADAPTER
*ioc
, struct fw_event_work
*fw_event
)
7034 /* the queue is being flushed so ignore this event */
7035 if (ioc
->remove_host
|| fw_event
->cancel_pending_work
||
7036 ioc
->pci_error_recovery
) {
7037 _scsih_fw_event_free(ioc
, fw_event
);
7041 switch (fw_event
->event
) {
7042 case MPT3SAS_PROCESS_TRIGGER_DIAG
:
7043 mpt3sas_process_trigger_data(ioc
, fw_event
->event_data
);
7045 case MPT3SAS_REMOVE_UNRESPONDING_DEVICES
:
7046 while (scsi_host_in_recovery(ioc
->shost
) || ioc
->shost_recovery
)
7048 _scsih_remove_unresponding_sas_devices(ioc
);
7049 _scsih_scan_for_devices_after_reset(ioc
);
7051 case MPT3SAS_PORT_ENABLE_COMPLETE
:
7052 ioc
->start_scan
= 0;
7053 if (missing_delay
[0] != -1 && missing_delay
[1] != -1)
7054 mpt3sas_base_update_missing_delay(ioc
, missing_delay
[0],
7056 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
7057 "port enable: complete from worker thread\n",
7060 case MPT3SAS_TURN_ON_FAULT_LED
:
7061 _scsih_turn_on_fault_led(ioc
, fw_event
->device_handle
);
7063 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
:
7064 _scsih_sas_topology_change_event(ioc
, fw_event
);
7066 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
:
7067 _scsih_sas_device_status_change_event(ioc
, fw_event
);
7069 case MPI2_EVENT_SAS_DISCOVERY
:
7070 _scsih_sas_discovery_event(ioc
, fw_event
);
7072 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE
:
7073 _scsih_sas_broadcast_primitive_event(ioc
, fw_event
);
7075 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE
:
7076 _scsih_sas_enclosure_dev_status_change_event(ioc
,
7079 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST
:
7080 _scsih_sas_ir_config_change_event(ioc
, fw_event
);
7082 case MPI2_EVENT_IR_VOLUME
:
7083 _scsih_sas_ir_volume_event(ioc
, fw_event
);
7085 case MPI2_EVENT_IR_PHYSICAL_DISK
:
7086 _scsih_sas_ir_physical_disk_event(ioc
, fw_event
);
7088 case MPI2_EVENT_IR_OPERATION_STATUS
:
7089 _scsih_sas_ir_operation_status_event(ioc
, fw_event
);
7092 _scsih_fw_event_free(ioc
, fw_event
);
7096 * _firmware_event_work
7097 * @ioc: per adapter object
7098 * @work: The fw_event_work object
7101 * wrappers for the work thread handling firmware events
7107 _firmware_event_work(struct work_struct
*work
)
7109 struct fw_event_work
*fw_event
= container_of(work
,
7110 struct fw_event_work
, work
);
7112 _mpt3sas_fw_work(fw_event
->ioc
, fw_event
);
7116 * mpt3sas_scsih_event_callback - firmware event handler (called at ISR time)
7117 * @ioc: per adapter object
7118 * @msix_index: MSIX table index supplied by the OS
7119 * @reply: reply message frame(lower 32bit addr)
7120 * Context: interrupt.
7122 * This function merely adds a new work task into ioc->firmware_event_thread.
7123 * The tasks are worked from _firmware_event_work in user context.
7125 * Return 1 meaning mf should be freed from _base_interrupt
7126 * 0 means the mf is freed from this function.
7129 mpt3sas_scsih_event_callback(struct MPT3SAS_ADAPTER
*ioc
, u8 msix_index
,
7132 struct fw_event_work
*fw_event
;
7133 Mpi2EventNotificationReply_t
*mpi_reply
;
7137 /* events turned off due to host reset or driver unloading */
7138 if (ioc
->remove_host
|| ioc
->pci_error_recovery
)
7141 mpi_reply
= mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
7143 if (unlikely(!mpi_reply
)) {
7144 pr_err(MPT3SAS_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
7145 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7149 event
= le16_to_cpu(mpi_reply
->Event
);
7151 if (event
!= MPI2_EVENT_LOG_ENTRY_ADDED
)
7152 mpt3sas_trigger_event(ioc
, event
, 0);
7156 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE
:
7158 Mpi2EventDataSasBroadcastPrimitive_t
*baen_data
=
7159 (Mpi2EventDataSasBroadcastPrimitive_t
*)
7160 mpi_reply
->EventData
;
7162 if (baen_data
->Primitive
!=
7163 MPI2_EVENT_PRIMITIVE_ASYNCHRONOUS_EVENT
)
7166 if (ioc
->broadcast_aen_busy
) {
7167 ioc
->broadcast_aen_pending
++;
7170 ioc
->broadcast_aen_busy
= 1;
7174 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
:
7175 _scsih_check_topo_delete_events(ioc
,
7176 (Mpi2EventDataSasTopologyChangeList_t
*)
7177 mpi_reply
->EventData
);
7179 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST
:
7180 _scsih_check_ir_config_unhide_events(ioc
,
7181 (Mpi2EventDataIrConfigChangeList_t
*)
7182 mpi_reply
->EventData
);
7184 case MPI2_EVENT_IR_VOLUME
:
7185 _scsih_check_volume_delete_events(ioc
,
7186 (Mpi2EventDataIrVolume_t
*)
7187 mpi_reply
->EventData
);
7190 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
:
7191 case MPI2_EVENT_IR_OPERATION_STATUS
:
7192 case MPI2_EVENT_SAS_DISCOVERY
:
7193 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE
:
7194 case MPI2_EVENT_IR_PHYSICAL_DISK
:
7197 default: /* ignore the rest */
7201 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
7203 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7204 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7207 sz
= le16_to_cpu(mpi_reply
->EventDataLength
) * 4;
7208 fw_event
->event_data
= kzalloc(sz
, GFP_ATOMIC
);
7209 if (!fw_event
->event_data
) {
7210 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7211 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7216 memcpy(fw_event
->event_data
, mpi_reply
->EventData
, sz
);
7217 fw_event
->ioc
= ioc
;
7218 fw_event
->VF_ID
= mpi_reply
->VF_ID
;
7219 fw_event
->VP_ID
= mpi_reply
->VP_ID
;
7220 fw_event
->event
= event
;
7221 _scsih_fw_event_add(ioc
, fw_event
);
7225 /* shost template */
7226 static struct scsi_host_template scsih_driver_template
= {
7227 .module
= THIS_MODULE
,
7228 .name
= "Fusion MPT SAS Host",
7229 .proc_name
= MPT3SAS_DRIVER_NAME
,
7230 .queuecommand
= _scsih_qcmd
,
7231 .target_alloc
= _scsih_target_alloc
,
7232 .slave_alloc
= _scsih_slave_alloc
,
7233 .slave_configure
= _scsih_slave_configure
,
7234 .target_destroy
= _scsih_target_destroy
,
7235 .slave_destroy
= _scsih_slave_destroy
,
7236 .scan_finished
= _scsih_scan_finished
,
7237 .scan_start
= _scsih_scan_start
,
7238 .change_queue_depth
= _scsih_change_queue_depth
,
7239 .change_queue_type
= _scsih_change_queue_type
,
7240 .eh_abort_handler
= _scsih_abort
,
7241 .eh_device_reset_handler
= _scsih_dev_reset
,
7242 .eh_target_reset_handler
= _scsih_target_reset
,
7243 .eh_host_reset_handler
= _scsih_host_reset
,
7244 .bios_param
= _scsih_bios_param
,
7247 .sg_tablesize
= MPT3SAS_SG_DEPTH
,
7248 .max_sectors
= 32767,
7250 .use_clustering
= ENABLE_CLUSTERING
,
7251 .shost_attrs
= mpt3sas_host_attrs
,
7252 .sdev_attrs
= mpt3sas_dev_attrs
,
7256 * _scsih_expander_node_remove - removing expander device from list.
7257 * @ioc: per adapter object
7258 * @sas_expander: the sas_device object
7259 * Context: Calling function should acquire ioc->sas_node_lock.
7261 * Removing object and freeing associated memory from the
7262 * ioc->sas_expander_list.
7267 _scsih_expander_node_remove(struct MPT3SAS_ADAPTER
*ioc
,
7268 struct _sas_node
*sas_expander
)
7270 struct _sas_port
*mpt3sas_port
, *next
;
7272 /* remove sibling ports attached to this expander */
7273 list_for_each_entry_safe(mpt3sas_port
, next
,
7274 &sas_expander
->sas_port_list
, port_list
) {
7275 if (ioc
->shost_recovery
)
7277 if (mpt3sas_port
->remote_identify
.device_type
==
7279 mpt3sas_device_remove_by_sas_address(ioc
,
7280 mpt3sas_port
->remote_identify
.sas_address
);
7281 else if (mpt3sas_port
->remote_identify
.device_type
==
7282 SAS_EDGE_EXPANDER_DEVICE
||
7283 mpt3sas_port
->remote_identify
.device_type
==
7284 SAS_FANOUT_EXPANDER_DEVICE
)
7285 mpt3sas_expander_remove(ioc
,
7286 mpt3sas_port
->remote_identify
.sas_address
);
7289 mpt3sas_transport_port_remove(ioc
, sas_expander
->sas_address
,
7290 sas_expander
->sas_address_parent
);
7293 "expander_remove: handle(0x%04x), sas_addr(0x%016llx)\n",
7295 sas_expander
->handle
, (unsigned long long)
7296 sas_expander
->sas_address
);
7298 kfree(sas_expander
->phy
);
7299 kfree(sas_expander
);
7303 * _scsih_ir_shutdown - IR shutdown notification
7304 * @ioc: per adapter object
7306 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that
7307 * the host system is shutting down.
7312 _scsih_ir_shutdown(struct MPT3SAS_ADAPTER
*ioc
)
7314 Mpi2RaidActionRequest_t
*mpi_request
;
7315 Mpi2RaidActionReply_t
*mpi_reply
;
7318 /* is IR firmware build loaded ? */
7319 if (!ioc
->ir_firmware
)
7322 /* are there any volumes ? */
7323 if (list_empty(&ioc
->raid_device_list
))
7326 mutex_lock(&ioc
->scsih_cmds
.mutex
);
7328 if (ioc
->scsih_cmds
.status
!= MPT3_CMD_NOT_USED
) {
7329 pr_err(MPT3SAS_FMT
"%s: scsih_cmd in use\n",
7330 ioc
->name
, __func__
);
7333 ioc
->scsih_cmds
.status
= MPT3_CMD_PENDING
;
7335 smid
= mpt3sas_base_get_smid(ioc
, ioc
->scsih_cb_idx
);
7337 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
7338 ioc
->name
, __func__
);
7339 ioc
->scsih_cmds
.status
= MPT3_CMD_NOT_USED
;
7343 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
7344 ioc
->scsih_cmds
.smid
= smid
;
7345 memset(mpi_request
, 0, sizeof(Mpi2RaidActionRequest_t
));
7347 mpi_request
->Function
= MPI2_FUNCTION_RAID_ACTION
;
7348 mpi_request
->Action
= MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED
;
7350 pr_info(MPT3SAS_FMT
"IR shutdown (sending)\n", ioc
->name
);
7351 init_completion(&ioc
->scsih_cmds
.done
);
7352 mpt3sas_base_put_smid_default(ioc
, smid
);
7353 wait_for_completion_timeout(&ioc
->scsih_cmds
.done
, 10*HZ
);
7355 if (!(ioc
->scsih_cmds
.status
& MPT3_CMD_COMPLETE
)) {
7356 pr_err(MPT3SAS_FMT
"%s: timeout\n",
7357 ioc
->name
, __func__
);
7361 if (ioc
->scsih_cmds
.status
& MPT3_CMD_REPLY_VALID
) {
7362 mpi_reply
= ioc
->scsih_cmds
.reply
;
7364 "IR shutdown (complete): ioc_status(0x%04x), loginfo(0x%08x)\n",
7365 ioc
->name
, le16_to_cpu(mpi_reply
->IOCStatus
),
7366 le32_to_cpu(mpi_reply
->IOCLogInfo
));
7370 ioc
->scsih_cmds
.status
= MPT3_CMD_NOT_USED
;
7371 mutex_unlock(&ioc
->scsih_cmds
.mutex
);
7375 * _scsih_remove - detach and remove add host
7376 * @pdev: PCI device struct
7378 * Routine called when unloading the driver.
7381 static void _scsih_remove(struct pci_dev
*pdev
)
7383 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7384 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7385 struct _sas_port
*mpt3sas_port
, *next_port
;
7386 struct _raid_device
*raid_device
, *next
;
7387 struct MPT3SAS_TARGET
*sas_target_priv_data
;
7388 struct workqueue_struct
*wq
;
7389 unsigned long flags
;
7391 ioc
->remove_host
= 1;
7392 _scsih_fw_event_cleanup_queue(ioc
);
7394 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
7395 wq
= ioc
->firmware_event_thread
;
7396 ioc
->firmware_event_thread
= NULL
;
7397 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
7399 destroy_workqueue(wq
);
7401 /* release all the volumes */
7402 _scsih_ir_shutdown(ioc
);
7403 list_for_each_entry_safe(raid_device
, next
, &ioc
->raid_device_list
,
7405 if (raid_device
->starget
) {
7406 sas_target_priv_data
=
7407 raid_device
->starget
->hostdata
;
7408 sas_target_priv_data
->deleted
= 1;
7409 scsi_remove_target(&raid_device
->starget
->dev
);
7411 pr_info(MPT3SAS_FMT
"removing handle(0x%04x), wwid(0x%016llx)\n",
7412 ioc
->name
, raid_device
->handle
,
7413 (unsigned long long) raid_device
->wwid
);
7414 _scsih_raid_device_remove(ioc
, raid_device
);
7417 /* free ports attached to the sas_host */
7418 list_for_each_entry_safe(mpt3sas_port
, next_port
,
7419 &ioc
->sas_hba
.sas_port_list
, port_list
) {
7420 if (mpt3sas_port
->remote_identify
.device_type
==
7422 mpt3sas_device_remove_by_sas_address(ioc
,
7423 mpt3sas_port
->remote_identify
.sas_address
);
7424 else if (mpt3sas_port
->remote_identify
.device_type
==
7425 SAS_EDGE_EXPANDER_DEVICE
||
7426 mpt3sas_port
->remote_identify
.device_type
==
7427 SAS_FANOUT_EXPANDER_DEVICE
)
7428 mpt3sas_expander_remove(ioc
,
7429 mpt3sas_port
->remote_identify
.sas_address
);
7432 /* free phys attached to the sas_host */
7433 if (ioc
->sas_hba
.num_phys
) {
7434 kfree(ioc
->sas_hba
.phy
);
7435 ioc
->sas_hba
.phy
= NULL
;
7436 ioc
->sas_hba
.num_phys
= 0;
7439 sas_remove_host(shost
);
7440 mpt3sas_base_detach(ioc
);
7441 list_del(&ioc
->list
);
7442 scsi_remove_host(shost
);
7443 scsi_host_put(shost
);
7447 * _scsih_shutdown - routine call during system shutdown
7448 * @pdev: PCI device struct
7453 _scsih_shutdown(struct pci_dev
*pdev
)
7455 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7456 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7457 struct workqueue_struct
*wq
;
7458 unsigned long flags
;
7460 ioc
->remove_host
= 1;
7461 _scsih_fw_event_cleanup_queue(ioc
);
7463 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
7464 wq
= ioc
->firmware_event_thread
;
7465 ioc
->firmware_event_thread
= NULL
;
7466 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
7468 destroy_workqueue(wq
);
7470 _scsih_ir_shutdown(ioc
);
7471 mpt3sas_base_detach(ioc
);
7476 * _scsih_probe_boot_devices - reports 1st device
7477 * @ioc: per adapter object
7479 * If specified in bios page 2, this routine reports the 1st
7480 * device scsi-ml or sas transport for persistent boot device
7481 * purposes. Please refer to function _scsih_determine_boot_device()
7484 _scsih_probe_boot_devices(struct MPT3SAS_ADAPTER
*ioc
)
7488 struct _sas_device
*sas_device
;
7489 struct _raid_device
*raid_device
;
7491 u64 sas_address_parent
;
7493 unsigned long flags
;
7496 /* no Bios, return immediately */
7497 if (!ioc
->bios_pg3
.BiosVersion
)
7502 if (ioc
->req_boot_device
.device
) {
7503 device
= ioc
->req_boot_device
.device
;
7504 is_raid
= ioc
->req_boot_device
.is_raid
;
7505 } else if (ioc
->req_alt_boot_device
.device
) {
7506 device
= ioc
->req_alt_boot_device
.device
;
7507 is_raid
= ioc
->req_alt_boot_device
.is_raid
;
7508 } else if (ioc
->current_boot_device
.device
) {
7509 device
= ioc
->current_boot_device
.device
;
7510 is_raid
= ioc
->current_boot_device
.is_raid
;
7517 raid_device
= device
;
7518 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
7519 raid_device
->id
, 0);
7521 _scsih_raid_device_remove(ioc
, raid_device
);
7523 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
7524 sas_device
= device
;
7525 handle
= sas_device
->handle
;
7526 sas_address_parent
= sas_device
->sas_address_parent
;
7527 sas_address
= sas_device
->sas_address
;
7528 list_move_tail(&sas_device
->list
, &ioc
->sas_device_list
);
7529 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
7531 if (!mpt3sas_transport_port_add(ioc
, handle
,
7532 sas_address_parent
)) {
7533 _scsih_sas_device_remove(ioc
, sas_device
);
7534 } else if (!sas_device
->starget
) {
7535 if (!ioc
->is_driver_loading
) {
7536 mpt3sas_transport_port_remove(ioc
,
7538 sas_address_parent
);
7539 _scsih_sas_device_remove(ioc
, sas_device
);
7546 * _scsih_probe_raid - reporting raid volumes to scsi-ml
7547 * @ioc: per adapter object
7549 * Called during initial loading of the driver.
7552 _scsih_probe_raid(struct MPT3SAS_ADAPTER
*ioc
)
7554 struct _raid_device
*raid_device
, *raid_next
;
7557 list_for_each_entry_safe(raid_device
, raid_next
,
7558 &ioc
->raid_device_list
, list
) {
7559 if (raid_device
->starget
)
7561 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
7562 raid_device
->id
, 0);
7564 _scsih_raid_device_remove(ioc
, raid_device
);
7569 * _scsih_probe_sas - reporting sas devices to sas transport
7570 * @ioc: per adapter object
7572 * Called during initial loading of the driver.
7575 _scsih_probe_sas(struct MPT3SAS_ADAPTER
*ioc
)
7577 struct _sas_device
*sas_device
, *next
;
7578 unsigned long flags
;
7580 /* SAS Device List */
7581 list_for_each_entry_safe(sas_device
, next
, &ioc
->sas_device_init_list
,
7584 if (!mpt3sas_transport_port_add(ioc
, sas_device
->handle
,
7585 sas_device
->sas_address_parent
)) {
7586 list_del(&sas_device
->list
);
7589 } else if (!sas_device
->starget
) {
7591 * When asyn scanning is enabled, its not possible to
7592 * remove devices while scanning is turned on due to an
7593 * oops in scsi_sysfs_add_sdev()->add_device()->
7594 * sysfs_addrm_start()
7596 if (!ioc
->is_driver_loading
) {
7597 mpt3sas_transport_port_remove(ioc
,
7598 sas_device
->sas_address
,
7599 sas_device
->sas_address_parent
);
7600 list_del(&sas_device
->list
);
7606 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
7607 list_move_tail(&sas_device
->list
, &ioc
->sas_device_list
);
7608 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
7613 * _scsih_probe_devices - probing for devices
7614 * @ioc: per adapter object
7616 * Called during initial loading of the driver.
7619 _scsih_probe_devices(struct MPT3SAS_ADAPTER
*ioc
)
7621 u16 volume_mapping_flags
;
7623 if (!(ioc
->facts
.ProtocolFlags
& MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR
))
7624 return; /* return when IOC doesn't support initiator mode */
7626 _scsih_probe_boot_devices(ioc
);
7628 if (ioc
->ir_firmware
) {
7629 volume_mapping_flags
=
7630 le16_to_cpu(ioc
->ioc_pg8
.IRVolumeMappingFlags
) &
7631 MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE
;
7632 if (volume_mapping_flags
==
7633 MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING
) {
7634 _scsih_probe_raid(ioc
);
7635 _scsih_probe_sas(ioc
);
7637 _scsih_probe_sas(ioc
);
7638 _scsih_probe_raid(ioc
);
7641 _scsih_probe_sas(ioc
);
7645 * _scsih_scan_start - scsi lld callback for .scan_start
7646 * @shost: SCSI host pointer
7648 * The shost has the ability to discover targets on its own instead
7649 * of scanning the entire bus. In our implemention, we will kick off
7650 * firmware discovery.
7653 _scsih_scan_start(struct Scsi_Host
*shost
)
7655 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7657 if (diag_buffer_enable
!= -1 && diag_buffer_enable
!= 0)
7658 mpt3sas_enable_diag_buffer(ioc
, diag_buffer_enable
);
7660 if (disable_discovery
> 0)
7663 ioc
->start_scan
= 1;
7664 rc
= mpt3sas_port_enable(ioc
);
7667 pr_info(MPT3SAS_FMT
"port enable: FAILED\n", ioc
->name
);
7671 * _scsih_scan_finished - scsi lld callback for .scan_finished
7672 * @shost: SCSI host pointer
7673 * @time: elapsed time of the scan in jiffies
7675 * This function will be called periodicallyn until it returns 1 with the
7676 * scsi_host and the elapsed time of the scan in jiffies. In our implemention,
7677 * we wait for firmware discovery to complete, then return 1.
7680 _scsih_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
7682 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7684 if (disable_discovery
> 0) {
7685 ioc
->is_driver_loading
= 0;
7686 ioc
->wait_for_discovery_to_complete
= 0;
7690 if (time
>= (300 * HZ
)) {
7691 ioc
->base_cmds
.status
= MPT3_CMD_NOT_USED
;
7693 "port enable: FAILED with timeout (timeout=300s)\n",
7695 ioc
->is_driver_loading
= 0;
7699 if (ioc
->start_scan
)
7702 if (ioc
->start_scan_failed
) {
7704 "port enable: FAILED with (ioc_status=0x%08x)\n",
7705 ioc
->name
, ioc
->start_scan_failed
);
7706 ioc
->is_driver_loading
= 0;
7707 ioc
->wait_for_discovery_to_complete
= 0;
7708 ioc
->remove_host
= 1;
7712 pr_info(MPT3SAS_FMT
"port enable: SUCCESS\n", ioc
->name
);
7713 ioc
->base_cmds
.status
= MPT3_CMD_NOT_USED
;
7715 if (ioc
->wait_for_discovery_to_complete
) {
7716 ioc
->wait_for_discovery_to_complete
= 0;
7717 _scsih_probe_devices(ioc
);
7719 mpt3sas_base_start_watchdog(ioc
);
7720 ioc
->is_driver_loading
= 0;
7725 * _scsih_probe - attach and add scsi host
7726 * @pdev: PCI device struct
7727 * @id: pci device id
7729 * Returns 0 success, anything else error.
7732 _scsih_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
7734 struct MPT3SAS_ADAPTER
*ioc
;
7735 struct Scsi_Host
*shost
;
7737 shost
= scsi_host_alloc(&scsih_driver_template
,
7738 sizeof(struct MPT3SAS_ADAPTER
));
7742 /* init local params */
7743 ioc
= shost_priv(shost
);
7744 memset(ioc
, 0, sizeof(struct MPT3SAS_ADAPTER
));
7745 INIT_LIST_HEAD(&ioc
->list
);
7746 list_add_tail(&ioc
->list
, &mpt3sas_ioc_list
);
7748 ioc
->id
= mpt_ids
++;
7749 sprintf(ioc
->name
, "%s%d", MPT3SAS_DRIVER_NAME
, ioc
->id
);
7751 ioc
->scsi_io_cb_idx
= scsi_io_cb_idx
;
7752 ioc
->tm_cb_idx
= tm_cb_idx
;
7753 ioc
->ctl_cb_idx
= ctl_cb_idx
;
7754 ioc
->base_cb_idx
= base_cb_idx
;
7755 ioc
->port_enable_cb_idx
= port_enable_cb_idx
;
7756 ioc
->transport_cb_idx
= transport_cb_idx
;
7757 ioc
->scsih_cb_idx
= scsih_cb_idx
;
7758 ioc
->config_cb_idx
= config_cb_idx
;
7759 ioc
->tm_tr_cb_idx
= tm_tr_cb_idx
;
7760 ioc
->tm_tr_volume_cb_idx
= tm_tr_volume_cb_idx
;
7761 ioc
->tm_sas_control_cb_idx
= tm_sas_control_cb_idx
;
7762 ioc
->logging_level
= logging_level
;
7763 ioc
->schedule_dead_ioc_flush_running_cmds
= &_scsih_flush_running_cmds
;
7764 /* misc semaphores and spin locks */
7765 mutex_init(&ioc
->reset_in_progress_mutex
);
7766 spin_lock_init(&ioc
->ioc_reset_in_progress_lock
);
7767 spin_lock_init(&ioc
->scsi_lookup_lock
);
7768 spin_lock_init(&ioc
->sas_device_lock
);
7769 spin_lock_init(&ioc
->sas_node_lock
);
7770 spin_lock_init(&ioc
->fw_event_lock
);
7771 spin_lock_init(&ioc
->raid_device_lock
);
7772 spin_lock_init(&ioc
->diag_trigger_lock
);
7774 INIT_LIST_HEAD(&ioc
->sas_device_list
);
7775 INIT_LIST_HEAD(&ioc
->sas_device_init_list
);
7776 INIT_LIST_HEAD(&ioc
->sas_expander_list
);
7777 INIT_LIST_HEAD(&ioc
->fw_event_list
);
7778 INIT_LIST_HEAD(&ioc
->raid_device_list
);
7779 INIT_LIST_HEAD(&ioc
->sas_hba
.sas_port_list
);
7780 INIT_LIST_HEAD(&ioc
->delayed_tr_list
);
7781 INIT_LIST_HEAD(&ioc
->delayed_tr_volume_list
);
7782 INIT_LIST_HEAD(&ioc
->reply_queue_list
);
7784 /* init shost parameters */
7785 shost
->max_cmd_len
= 32;
7786 shost
->max_lun
= max_lun
;
7787 shost
->transportt
= mpt3sas_transport_template
;
7788 shost
->unique_id
= ioc
->id
;
7790 if (max_sectors
!= 0xFFFF) {
7791 if (max_sectors
< 64) {
7792 shost
->max_sectors
= 64;
7793 pr_warn(MPT3SAS_FMT
"Invalid value %d passed " \
7794 "for max_sectors, range is 64 to 32767. Assigning "
7795 "value of 64.\n", ioc
->name
, max_sectors
);
7796 } else if (max_sectors
> 32767) {
7797 shost
->max_sectors
= 32767;
7798 pr_warn(MPT3SAS_FMT
"Invalid value %d passed " \
7799 "for max_sectors, range is 64 to 32767. Assigning "
7800 "default value of 32767.\n", ioc
->name
,
7803 shost
->max_sectors
= max_sectors
& 0xFFFE;
7805 "The max_sectors value is set to %d\n",
7806 ioc
->name
, shost
->max_sectors
);
7810 if ((scsi_add_host(shost
, &pdev
->dev
))) {
7811 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7812 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7813 list_del(&ioc
->list
);
7814 goto out_add_shost_fail
;
7817 /* register EEDP capabilities with SCSI layer */
7819 scsi_host_set_prot(shost
, prot_mask
);
7821 scsi_host_set_prot(shost
, SHOST_DIF_TYPE1_PROTECTION
7822 | SHOST_DIF_TYPE2_PROTECTION
7823 | SHOST_DIF_TYPE3_PROTECTION
);
7825 scsi_host_set_guard(shost
, SHOST_DIX_GUARD_CRC
);
7828 snprintf(ioc
->firmware_event_name
, sizeof(ioc
->firmware_event_name
),
7829 "fw_event%d", ioc
->id
);
7830 ioc
->firmware_event_thread
= create_singlethread_workqueue(
7831 ioc
->firmware_event_name
);
7832 if (!ioc
->firmware_event_thread
) {
7833 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7834 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7835 goto out_thread_fail
;
7838 ioc
->is_driver_loading
= 1;
7839 if ((mpt3sas_base_attach(ioc
))) {
7840 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7841 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7842 goto out_attach_fail
;
7844 scsi_scan_host(shost
);
7848 destroy_workqueue(ioc
->firmware_event_thread
);
7850 list_del(&ioc
->list
);
7851 scsi_remove_host(shost
);
7853 scsi_host_put(shost
);
7859 * _scsih_suspend - power management suspend main entry point
7860 * @pdev: PCI device struct
7861 * @state: PM state change to (usually PCI_D3)
7863 * Returns 0 success, anything else error.
7866 _scsih_suspend(struct pci_dev
*pdev
, pm_message_t state
)
7868 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7869 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7870 pci_power_t device_state
;
7872 mpt3sas_base_stop_watchdog(ioc
);
7873 flush_scheduled_work();
7874 scsi_block_requests(shost
);
7875 device_state
= pci_choose_state(pdev
, state
);
7877 "pdev=0x%p, slot=%s, entering operating state [D%d]\n",
7878 ioc
->name
, pdev
, pci_name(pdev
), device_state
);
7880 pci_save_state(pdev
);
7881 mpt3sas_base_free_resources(ioc
);
7882 pci_set_power_state(pdev
, device_state
);
7887 * _scsih_resume - power management resume main entry point
7888 * @pdev: PCI device struct
7890 * Returns 0 success, anything else error.
7893 _scsih_resume(struct pci_dev
*pdev
)
7895 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7896 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7897 pci_power_t device_state
= pdev
->current_state
;
7901 "pdev=0x%p, slot=%s, previous operating state [D%d]\n",
7902 ioc
->name
, pdev
, pci_name(pdev
), device_state
);
7904 pci_set_power_state(pdev
, PCI_D0
);
7905 pci_enable_wake(pdev
, PCI_D0
, 0);
7906 pci_restore_state(pdev
);
7908 r
= mpt3sas_base_map_resources(ioc
);
7912 mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
, SOFT_RESET
);
7913 scsi_unblock_requests(shost
);
7914 mpt3sas_base_start_watchdog(ioc
);
7917 #endif /* CONFIG_PM */
7920 * _scsih_pci_error_detected - Called when a PCI error is detected.
7921 * @pdev: PCI device struct
7922 * @state: PCI channel state
7924 * Description: Called when a PCI error is detected.
7927 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
7929 static pci_ers_result_t
7930 _scsih_pci_error_detected(struct pci_dev
*pdev
, pci_channel_state_t state
)
7932 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7933 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7935 pr_info(MPT3SAS_FMT
"PCI error: detected callback, state(%d)!!\n",
7939 case pci_channel_io_normal
:
7940 return PCI_ERS_RESULT_CAN_RECOVER
;
7941 case pci_channel_io_frozen
:
7942 /* Fatal error, prepare for slot reset */
7943 ioc
->pci_error_recovery
= 1;
7944 scsi_block_requests(ioc
->shost
);
7945 mpt3sas_base_stop_watchdog(ioc
);
7946 mpt3sas_base_free_resources(ioc
);
7947 return PCI_ERS_RESULT_NEED_RESET
;
7948 case pci_channel_io_perm_failure
:
7949 /* Permanent error, prepare for device removal */
7950 ioc
->pci_error_recovery
= 1;
7951 mpt3sas_base_stop_watchdog(ioc
);
7952 _scsih_flush_running_cmds(ioc
);
7953 return PCI_ERS_RESULT_DISCONNECT
;
7955 return PCI_ERS_RESULT_NEED_RESET
;
7959 * _scsih_pci_slot_reset - Called when PCI slot has been reset.
7960 * @pdev: PCI device struct
7962 * Description: This routine is called by the pci error recovery
7963 * code after the PCI slot has been reset, just before we
7964 * should resume normal operations.
7966 static pci_ers_result_t
7967 _scsih_pci_slot_reset(struct pci_dev
*pdev
)
7969 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7970 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7973 pr_info(MPT3SAS_FMT
"PCI error: slot reset callback!!\n",
7976 ioc
->pci_error_recovery
= 0;
7978 pci_restore_state(pdev
);
7979 rc
= mpt3sas_base_map_resources(ioc
);
7981 return PCI_ERS_RESULT_DISCONNECT
;
7983 rc
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
7986 pr_warn(MPT3SAS_FMT
"hard reset: %s\n", ioc
->name
,
7987 (rc
== 0) ? "success" : "failed");
7990 return PCI_ERS_RESULT_RECOVERED
;
7992 return PCI_ERS_RESULT_DISCONNECT
;
7996 * _scsih_pci_resume() - resume normal ops after PCI reset
7997 * @pdev: pointer to PCI device
7999 * Called when the error recovery driver tells us that its
8000 * OK to resume normal operation. Use completion to allow
8001 * halted scsi ops to resume.
8004 _scsih_pci_resume(struct pci_dev
*pdev
)
8006 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8007 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
8009 pr_info(MPT3SAS_FMT
"PCI error: resume callback!!\n", ioc
->name
);
8011 pci_cleanup_aer_uncorrect_error_status(pdev
);
8012 mpt3sas_base_start_watchdog(ioc
);
8013 scsi_unblock_requests(ioc
->shost
);
8017 * _scsih_pci_mmio_enabled - Enable MMIO and dump debug registers
8018 * @pdev: pointer to PCI device
8020 static pci_ers_result_t
8021 _scsih_pci_mmio_enabled(struct pci_dev
*pdev
)
8023 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8024 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
8026 pr_info(MPT3SAS_FMT
"PCI error: mmio enabled callback!!\n",
8029 /* TODO - dump whatever for debugging purposes */
8031 /* Request a slot reset. */
8032 return PCI_ERS_RESULT_NEED_RESET
;
8035 /* raid transport support */
8036 static struct raid_function_template mpt3sas_raid_functions
= {
8037 .cookie
= &scsih_driver_template
,
8038 .is_raid
= _scsih_is_raid
,
8039 .get_resync
= _scsih_get_resync
,
8040 .get_state
= _scsih_get_state
,
8043 static struct pci_error_handlers _scsih_err_handler
= {
8044 .error_detected
= _scsih_pci_error_detected
,
8045 .mmio_enabled
= _scsih_pci_mmio_enabled
,
8046 .slot_reset
= _scsih_pci_slot_reset
,
8047 .resume
= _scsih_pci_resume
,
8050 static struct pci_driver scsih_driver
= {
8051 .name
= MPT3SAS_DRIVER_NAME
,
8052 .id_table
= scsih_pci_table
,
8053 .probe
= _scsih_probe
,
8054 .remove
= _scsih_remove
,
8055 .shutdown
= _scsih_shutdown
,
8056 .err_handler
= &_scsih_err_handler
,
8058 .suspend
= _scsih_suspend
,
8059 .resume
= _scsih_resume
,
8065 * _scsih_init - main entry point for this driver.
8067 * Returns 0 success, anything else error.
8076 pr_info("%s version %s loaded\n", MPT3SAS_DRIVER_NAME
,
8077 MPT3SAS_DRIVER_VERSION
);
8079 mpt3sas_transport_template
=
8080 sas_attach_transport(&mpt3sas_transport_functions
);
8081 if (!mpt3sas_transport_template
)
8084 /* raid transport support */
8085 mpt3sas_raid_template
= raid_class_attach(&mpt3sas_raid_functions
);
8086 if (!mpt3sas_raid_template
) {
8087 sas_release_transport(mpt3sas_transport_template
);
8091 mpt3sas_base_initialize_callback_handler();
8093 /* queuecommand callback hander */
8094 scsi_io_cb_idx
= mpt3sas_base_register_callback_handler(_scsih_io_done
);
8096 /* task managment callback handler */
8097 tm_cb_idx
= mpt3sas_base_register_callback_handler(_scsih_tm_done
);
8099 /* base internal commands callback handler */
8100 base_cb_idx
= mpt3sas_base_register_callback_handler(mpt3sas_base_done
);
8101 port_enable_cb_idx
= mpt3sas_base_register_callback_handler(
8102 mpt3sas_port_enable_done
);
8104 /* transport internal commands callback handler */
8105 transport_cb_idx
= mpt3sas_base_register_callback_handler(
8106 mpt3sas_transport_done
);
8108 /* scsih internal commands callback handler */
8109 scsih_cb_idx
= mpt3sas_base_register_callback_handler(_scsih_done
);
8111 /* configuration page API internal commands callback handler */
8112 config_cb_idx
= mpt3sas_base_register_callback_handler(
8113 mpt3sas_config_done
);
8115 /* ctl module callback handler */
8116 ctl_cb_idx
= mpt3sas_base_register_callback_handler(mpt3sas_ctl_done
);
8118 tm_tr_cb_idx
= mpt3sas_base_register_callback_handler(
8119 _scsih_tm_tr_complete
);
8121 tm_tr_volume_cb_idx
= mpt3sas_base_register_callback_handler(
8122 _scsih_tm_volume_tr_complete
);
8124 tm_sas_control_cb_idx
= mpt3sas_base_register_callback_handler(
8125 _scsih_sas_control_complete
);
8129 error
= pci_register_driver(&scsih_driver
);
8131 /* raid transport support */
8132 raid_class_release(mpt3sas_raid_template
);
8133 sas_release_transport(mpt3sas_transport_template
);
8140 * _scsih_exit - exit point for this driver (when it is a module).
8142 * Returns 0 success, anything else error.
8147 pr_info("mpt3sas version %s unloading\n",
8148 MPT3SAS_DRIVER_VERSION
);
8152 pci_unregister_driver(&scsih_driver
);
8155 mpt3sas_base_release_callback_handler(scsi_io_cb_idx
);
8156 mpt3sas_base_release_callback_handler(tm_cb_idx
);
8157 mpt3sas_base_release_callback_handler(base_cb_idx
);
8158 mpt3sas_base_release_callback_handler(port_enable_cb_idx
);
8159 mpt3sas_base_release_callback_handler(transport_cb_idx
);
8160 mpt3sas_base_release_callback_handler(scsih_cb_idx
);
8161 mpt3sas_base_release_callback_handler(config_cb_idx
);
8162 mpt3sas_base_release_callback_handler(ctl_cb_idx
);
8164 mpt3sas_base_release_callback_handler(tm_tr_cb_idx
);
8165 mpt3sas_base_release_callback_handler(tm_tr_volume_cb_idx
);
8166 mpt3sas_base_release_callback_handler(tm_sas_control_cb_idx
);
8168 /* raid transport support */
8169 raid_class_release(mpt3sas_raid_template
);
8170 sas_release_transport(mpt3sas_transport_template
);
8173 module_init(_scsih_init
);
8174 module_exit(_scsih_exit
);