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-2014 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 u64 max_lun
= MPT3SAS_MAX_LUN
;
116 module_param(max_lun
, ullong
, 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_PFA_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
;
193 char event_data
[0] __aligned(4);
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 const struct pci_device_id 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
);
1057 * _scsih_change_queue_depth - setting device queue depth
1058 * @sdev: scsi device struct
1059 * @qdepth: requested queue depth
1061 * Returns queue depth.
1064 _scsih_change_queue_depth(struct scsi_device
*sdev
, int qdepth
)
1066 struct Scsi_Host
*shost
= sdev
->host
;
1068 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
1069 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1070 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1071 struct _sas_device
*sas_device
;
1072 unsigned long flags
;
1074 max_depth
= shost
->can_queue
;
1076 /* limit max device queue for SATA to 32 */
1077 sas_device_priv_data
= sdev
->hostdata
;
1078 if (!sas_device_priv_data
)
1080 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
1081 if (!sas_target_priv_data
)
1083 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
))
1085 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1086 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1087 sas_device_priv_data
->sas_target
->sas_address
);
1088 if (sas_device
&& sas_device
->device_info
&
1089 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
1090 max_depth
= MPT3SAS_SATA_QUEUE_DEPTH
;
1091 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1095 if (!sdev
->tagged_supported
)
1097 if (qdepth
> max_depth
)
1099 return scsi_change_queue_depth(sdev
, qdepth
);
1103 * _scsih_target_alloc - target add routine
1104 * @starget: scsi target struct
1106 * Returns 0 if ok. Any other return is assumed to be an error and
1107 * the device is ignored.
1110 _scsih_target_alloc(struct scsi_target
*starget
)
1112 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
1113 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
1114 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1115 struct _sas_device
*sas_device
;
1116 struct _raid_device
*raid_device
;
1117 unsigned long flags
;
1118 struct sas_rphy
*rphy
;
1120 sas_target_priv_data
= kzalloc(sizeof(*sas_target_priv_data
),
1122 if (!sas_target_priv_data
)
1125 starget
->hostdata
= sas_target_priv_data
;
1126 sas_target_priv_data
->starget
= starget
;
1127 sas_target_priv_data
->handle
= MPT3SAS_INVALID_DEVICE_HANDLE
;
1130 if (starget
->channel
== RAID_CHANNEL
) {
1131 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1132 raid_device
= _scsih_raid_device_find_by_id(ioc
, starget
->id
,
1135 sas_target_priv_data
->handle
= raid_device
->handle
;
1136 sas_target_priv_data
->sas_address
= raid_device
->wwid
;
1137 sas_target_priv_data
->flags
|= MPT_TARGET_FLAGS_VOLUME
;
1138 raid_device
->starget
= starget
;
1140 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1144 /* sas/sata devices */
1145 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1146 rphy
= dev_to_rphy(starget
->dev
.parent
);
1147 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1148 rphy
->identify
.sas_address
);
1151 sas_target_priv_data
->handle
= sas_device
->handle
;
1152 sas_target_priv_data
->sas_address
= sas_device
->sas_address
;
1153 sas_device
->starget
= starget
;
1154 sas_device
->id
= starget
->id
;
1155 sas_device
->channel
= starget
->channel
;
1156 if (test_bit(sas_device
->handle
, ioc
->pd_handles
))
1157 sas_target_priv_data
->flags
|=
1158 MPT_TARGET_FLAGS_RAID_COMPONENT
;
1159 if (sas_device
->fast_path
)
1160 sas_target_priv_data
->flags
|= MPT_TARGET_FASTPATH_IO
;
1162 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1168 * _scsih_target_destroy - target destroy routine
1169 * @starget: scsi target struct
1174 _scsih_target_destroy(struct scsi_target
*starget
)
1176 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
1177 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
1178 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1179 struct _sas_device
*sas_device
;
1180 struct _raid_device
*raid_device
;
1181 unsigned long flags
;
1182 struct sas_rphy
*rphy
;
1184 sas_target_priv_data
= starget
->hostdata
;
1185 if (!sas_target_priv_data
)
1188 if (starget
->channel
== RAID_CHANNEL
) {
1189 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1190 raid_device
= _scsih_raid_device_find_by_id(ioc
, starget
->id
,
1193 raid_device
->starget
= NULL
;
1194 raid_device
->sdev
= NULL
;
1196 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1200 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1201 rphy
= dev_to_rphy(starget
->dev
.parent
);
1202 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1203 rphy
->identify
.sas_address
);
1204 if (sas_device
&& (sas_device
->starget
== starget
) &&
1205 (sas_device
->id
== starget
->id
) &&
1206 (sas_device
->channel
== starget
->channel
))
1207 sas_device
->starget
= NULL
;
1209 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1212 kfree(sas_target_priv_data
);
1213 starget
->hostdata
= NULL
;
1217 * _scsih_slave_alloc - device add routine
1218 * @sdev: scsi device struct
1220 * Returns 0 if ok. Any other return is assumed to be an error and
1221 * the device is ignored.
1224 _scsih_slave_alloc(struct scsi_device
*sdev
)
1226 struct Scsi_Host
*shost
;
1227 struct MPT3SAS_ADAPTER
*ioc
;
1228 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1229 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1230 struct scsi_target
*starget
;
1231 struct _raid_device
*raid_device
;
1232 struct _sas_device
*sas_device
;
1233 unsigned long flags
;
1235 sas_device_priv_data
= kzalloc(sizeof(*sas_device_priv_data
),
1237 if (!sas_device_priv_data
)
1240 sas_device_priv_data
->lun
= sdev
->lun
;
1241 sas_device_priv_data
->flags
= MPT_DEVICE_FLAGS_INIT
;
1243 starget
= scsi_target(sdev
);
1244 sas_target_priv_data
= starget
->hostdata
;
1245 sas_target_priv_data
->num_luns
++;
1246 sas_device_priv_data
->sas_target
= sas_target_priv_data
;
1247 sdev
->hostdata
= sas_device_priv_data
;
1248 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
))
1249 sdev
->no_uld_attach
= 1;
1251 shost
= dev_to_shost(&starget
->dev
);
1252 ioc
= shost_priv(shost
);
1253 if (starget
->channel
== RAID_CHANNEL
) {
1254 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1255 raid_device
= _scsih_raid_device_find_by_id(ioc
,
1256 starget
->id
, starget
->channel
);
1258 raid_device
->sdev
= sdev
; /* raid is single lun */
1259 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1262 if (!(sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
)) {
1263 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1264 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1265 sas_target_priv_data
->sas_address
);
1266 if (sas_device
&& (sas_device
->starget
== NULL
)) {
1267 sdev_printk(KERN_INFO
, sdev
,
1268 "%s : sas_device->starget set to starget @ %d\n",
1269 __func__
, __LINE__
);
1270 sas_device
->starget
= starget
;
1272 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1279 * _scsih_slave_destroy - device destroy routine
1280 * @sdev: scsi device struct
1285 _scsih_slave_destroy(struct scsi_device
*sdev
)
1287 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1288 struct scsi_target
*starget
;
1289 struct Scsi_Host
*shost
;
1290 struct MPT3SAS_ADAPTER
*ioc
;
1291 struct _sas_device
*sas_device
;
1292 unsigned long flags
;
1294 if (!sdev
->hostdata
)
1297 starget
= scsi_target(sdev
);
1298 sas_target_priv_data
= starget
->hostdata
;
1299 sas_target_priv_data
->num_luns
--;
1301 shost
= dev_to_shost(&starget
->dev
);
1302 ioc
= shost_priv(shost
);
1304 if (!(sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
)) {
1305 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1306 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1307 sas_target_priv_data
->sas_address
);
1308 if (sas_device
&& !sas_target_priv_data
->num_luns
)
1309 sas_device
->starget
= NULL
;
1310 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1313 kfree(sdev
->hostdata
);
1314 sdev
->hostdata
= NULL
;
1318 * _scsih_display_sata_capabilities - sata capabilities
1319 * @ioc: per adapter object
1320 * @handle: device handle
1321 * @sdev: scsi device struct
1324 _scsih_display_sata_capabilities(struct MPT3SAS_ADAPTER
*ioc
,
1325 u16 handle
, struct scsi_device
*sdev
)
1327 Mpi2ConfigReply_t mpi_reply
;
1328 Mpi2SasDevicePage0_t sas_device_pg0
;
1333 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
1334 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
1335 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
1336 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1340 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
1341 MPI2_IOCSTATUS_MASK
;
1342 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
1343 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
1344 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1348 flags
= le16_to_cpu(sas_device_pg0
.Flags
);
1349 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
1351 sdev_printk(KERN_INFO
, sdev
,
1352 "atapi(%s), ncq(%s), asyn_notify(%s), smart(%s), fua(%s), "
1353 "sw_preserve(%s)\n",
1354 (device_info
& MPI2_SAS_DEVICE_INFO_ATAPI_DEVICE
) ? "y" : "n",
1355 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_NCQ_SUPPORTED
) ? "y" : "n",
1356 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_ASYNCHRONOUS_NOTIFY
) ? "y" :
1358 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_SMART_SUPPORTED
) ? "y" : "n",
1359 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_FUA_SUPPORTED
) ? "y" : "n",
1360 (flags
& MPI2_SAS_DEVICE0_FLAGS_SATA_SW_PRESERVE
) ? "y" : "n");
1364 * raid transport support -
1365 * Enabled for SLES11 and newer, in older kernels the driver will panic when
1366 * unloading the driver followed by a load - I beleive that the subroutine
1367 * raid_class_release() is not cleaning up properly.
1371 * _scsih_is_raid - return boolean indicating device is raid volume
1372 * @dev the device struct object
1375 _scsih_is_raid(struct device
*dev
)
1377 struct scsi_device
*sdev
= to_scsi_device(dev
);
1379 return (sdev
->channel
== RAID_CHANNEL
) ? 1 : 0;
1383 * _scsih_get_resync - get raid volume resync percent complete
1384 * @dev the device struct object
1387 _scsih_get_resync(struct device
*dev
)
1389 struct scsi_device
*sdev
= to_scsi_device(dev
);
1390 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(sdev
->host
);
1391 static struct _raid_device
*raid_device
;
1392 unsigned long flags
;
1393 Mpi2RaidVolPage0_t vol_pg0
;
1394 Mpi2ConfigReply_t mpi_reply
;
1395 u32 volume_status_flags
;
1396 u8 percent_complete
;
1399 percent_complete
= 0;
1401 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1402 raid_device
= _scsih_raid_device_find_by_id(ioc
, sdev
->id
,
1405 handle
= raid_device
->handle
;
1406 percent_complete
= raid_device
->percent_complete
;
1408 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1413 if (mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, &vol_pg0
,
1414 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
1415 sizeof(Mpi2RaidVolPage0_t
))) {
1416 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
1417 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1418 percent_complete
= 0;
1422 volume_status_flags
= le32_to_cpu(vol_pg0
.VolumeStatusFlags
);
1423 if (!(volume_status_flags
&
1424 MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS
))
1425 percent_complete
= 0;
1428 raid_set_resync(mpt3sas_raid_template
, dev
, percent_complete
);
1432 * _scsih_get_state - get raid volume level
1433 * @dev the device struct object
1436 _scsih_get_state(struct device
*dev
)
1438 struct scsi_device
*sdev
= to_scsi_device(dev
);
1439 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(sdev
->host
);
1440 static struct _raid_device
*raid_device
;
1441 unsigned long flags
;
1442 Mpi2RaidVolPage0_t vol_pg0
;
1443 Mpi2ConfigReply_t mpi_reply
;
1445 enum raid_state state
= RAID_STATE_UNKNOWN
;
1448 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1449 raid_device
= _scsih_raid_device_find_by_id(ioc
, sdev
->id
,
1452 handle
= raid_device
->handle
;
1453 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1458 if (mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, &vol_pg0
,
1459 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
1460 sizeof(Mpi2RaidVolPage0_t
))) {
1461 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
1462 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1466 volstate
= le32_to_cpu(vol_pg0
.VolumeStatusFlags
);
1467 if (volstate
& MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS
) {
1468 state
= RAID_STATE_RESYNCING
;
1472 switch (vol_pg0
.VolumeState
) {
1473 case MPI2_RAID_VOL_STATE_OPTIMAL
:
1474 case MPI2_RAID_VOL_STATE_ONLINE
:
1475 state
= RAID_STATE_ACTIVE
;
1477 case MPI2_RAID_VOL_STATE_DEGRADED
:
1478 state
= RAID_STATE_DEGRADED
;
1480 case MPI2_RAID_VOL_STATE_FAILED
:
1481 case MPI2_RAID_VOL_STATE_MISSING
:
1482 state
= RAID_STATE_OFFLINE
;
1486 raid_set_state(mpt3sas_raid_template
, dev
, state
);
1490 * _scsih_set_level - set raid level
1491 * @sdev: scsi device struct
1492 * @volume_type: volume type
1495 _scsih_set_level(struct scsi_device
*sdev
, u8 volume_type
)
1497 enum raid_level level
= RAID_LEVEL_UNKNOWN
;
1499 switch (volume_type
) {
1500 case MPI2_RAID_VOL_TYPE_RAID0
:
1501 level
= RAID_LEVEL_0
;
1503 case MPI2_RAID_VOL_TYPE_RAID10
:
1504 level
= RAID_LEVEL_10
;
1506 case MPI2_RAID_VOL_TYPE_RAID1E
:
1507 level
= RAID_LEVEL_1E
;
1509 case MPI2_RAID_VOL_TYPE_RAID1
:
1510 level
= RAID_LEVEL_1
;
1514 raid_set_level(mpt3sas_raid_template
, &sdev
->sdev_gendev
, level
);
1519 * _scsih_get_volume_capabilities - volume capabilities
1520 * @ioc: per adapter object
1521 * @sas_device: the raid_device object
1523 * Returns 0 for success, else 1
1526 _scsih_get_volume_capabilities(struct MPT3SAS_ADAPTER
*ioc
,
1527 struct _raid_device
*raid_device
)
1529 Mpi2RaidVolPage0_t
*vol_pg0
;
1530 Mpi2RaidPhysDiskPage0_t pd_pg0
;
1531 Mpi2SasDevicePage0_t sas_device_pg0
;
1532 Mpi2ConfigReply_t mpi_reply
;
1536 if ((mpt3sas_config_get_number_pds(ioc
, raid_device
->handle
,
1537 &num_pds
)) || !num_pds
) {
1538 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1539 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1544 raid_device
->num_pds
= num_pds
;
1545 sz
= offsetof(Mpi2RaidVolPage0_t
, PhysDisk
) + (num_pds
*
1546 sizeof(Mpi2RaidVol0PhysDisk_t
));
1547 vol_pg0
= kzalloc(sz
, GFP_KERNEL
);
1549 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1550 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1555 if ((mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
, vol_pg0
,
1556 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, raid_device
->handle
, sz
))) {
1557 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1558 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1564 raid_device
->volume_type
= vol_pg0
->VolumeType
;
1566 /* figure out what the underlying devices are by
1567 * obtaining the device_info bits for the 1st device
1569 if (!(mpt3sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
1570 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM
,
1571 vol_pg0
->PhysDisk
[0].PhysDiskNum
))) {
1572 if (!(mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
1573 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
1574 le16_to_cpu(pd_pg0
.DevHandle
)))) {
1575 raid_device
->device_info
=
1576 le32_to_cpu(sas_device_pg0
.DeviceInfo
);
1587 * _scsih_enable_tlr - setting TLR flags
1588 * @ioc: per adapter object
1589 * @sdev: scsi device struct
1591 * Enabling Transaction Layer Retries for tape devices when
1592 * vpd page 0x90 is present
1596 _scsih_enable_tlr(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_device
*sdev
)
1600 if (sdev
->type
!= TYPE_TAPE
)
1603 if (!(ioc
->facts
.IOCCapabilities
& MPI2_IOCFACTS_CAPABILITY_TLR
))
1606 sas_enable_tlr(sdev
);
1607 sdev_printk(KERN_INFO
, sdev
, "TLR %s\n",
1608 sas_is_tlr_enabled(sdev
) ? "Enabled" : "Disabled");
1614 * _scsih_slave_configure - device configure routine.
1615 * @sdev: scsi device struct
1617 * Returns 0 if ok. Any other return is assumed to be an error and
1618 * the device is ignored.
1621 _scsih_slave_configure(struct scsi_device
*sdev
)
1623 struct Scsi_Host
*shost
= sdev
->host
;
1624 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
1625 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1626 struct MPT3SAS_TARGET
*sas_target_priv_data
;
1627 struct _sas_device
*sas_device
;
1628 struct _raid_device
*raid_device
;
1629 unsigned long flags
;
1634 u16 handle
, volume_handle
= 0;
1635 u64 volume_wwid
= 0;
1638 sas_device_priv_data
= sdev
->hostdata
;
1639 sas_device_priv_data
->configured_lun
= 1;
1640 sas_device_priv_data
->flags
&= ~MPT_DEVICE_FLAGS_INIT
;
1641 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
1642 handle
= sas_target_priv_data
->handle
;
1644 /* raid volume handling */
1645 if (sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
1647 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
1648 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
1649 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
1651 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1652 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
,
1653 __LINE__
, __func__
));
1657 if (_scsih_get_volume_capabilities(ioc
, raid_device
)) {
1658 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1659 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
,
1660 __LINE__
, __func__
));
1665 /* RAID Queue Depth Support
1666 * IS volume = underlying qdepth of drive type, either
1667 * MPT3SAS_SAS_QUEUE_DEPTH or MPT3SAS_SATA_QUEUE_DEPTH
1668 * IM/IME/R10 = 128 (MPT3SAS_RAID_QUEUE_DEPTH)
1670 if (raid_device
->device_info
&
1671 MPI2_SAS_DEVICE_INFO_SSP_TARGET
) {
1672 qdepth
= MPT3SAS_SAS_QUEUE_DEPTH
;
1675 qdepth
= MPT3SAS_SATA_QUEUE_DEPTH
;
1676 if (raid_device
->device_info
&
1677 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
1683 switch (raid_device
->volume_type
) {
1684 case MPI2_RAID_VOL_TYPE_RAID0
:
1687 case MPI2_RAID_VOL_TYPE_RAID1E
:
1688 qdepth
= MPT3SAS_RAID_QUEUE_DEPTH
;
1689 if (ioc
->manu_pg10
.OEMIdentifier
&&
1690 (le32_to_cpu(ioc
->manu_pg10
.GenericFlags0
) &
1691 MFG10_GF0_R10_DISPLAY
) &&
1692 !(raid_device
->num_pds
% 2))
1697 case MPI2_RAID_VOL_TYPE_RAID1
:
1698 qdepth
= MPT3SAS_RAID_QUEUE_DEPTH
;
1701 case MPI2_RAID_VOL_TYPE_RAID10
:
1702 qdepth
= MPT3SAS_RAID_QUEUE_DEPTH
;
1705 case MPI2_RAID_VOL_TYPE_UNKNOWN
:
1707 qdepth
= MPT3SAS_RAID_QUEUE_DEPTH
;
1712 sdev_printk(KERN_INFO
, sdev
,
1713 "%s: handle(0x%04x), wwid(0x%016llx), pd_count(%d), type(%s)\n",
1714 r_level
, raid_device
->handle
,
1715 (unsigned long long)raid_device
->wwid
,
1716 raid_device
->num_pds
, ds
);
1719 _scsih_change_queue_depth(sdev
, qdepth
);
1721 /* raid transport support */
1722 _scsih_set_level(sdev
, raid_device
->volume_type
);
1726 /* non-raid handling */
1727 if (sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
) {
1728 if (mpt3sas_config_get_volume_handle(ioc
, handle
,
1730 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1731 "failure at %s:%d/%s()!\n", ioc
->name
,
1732 __FILE__
, __LINE__
, __func__
));
1735 if (volume_handle
&& mpt3sas_config_get_volume_wwid(ioc
,
1736 volume_handle
, &volume_wwid
)) {
1737 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1738 "failure at %s:%d/%s()!\n", ioc
->name
,
1739 __FILE__
, __LINE__
, __func__
));
1744 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
1745 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
1746 sas_device_priv_data
->sas_target
->sas_address
);
1748 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1749 dfailprintk(ioc
, pr_warn(MPT3SAS_FMT
1750 "failure at %s:%d/%s()!\n", ioc
->name
, __FILE__
, __LINE__
,
1755 sas_device
->volume_handle
= volume_handle
;
1756 sas_device
->volume_wwid
= volume_wwid
;
1757 if (sas_device
->device_info
& MPI2_SAS_DEVICE_INFO_SSP_TARGET
) {
1758 qdepth
= MPT3SAS_SAS_QUEUE_DEPTH
;
1762 qdepth
= MPT3SAS_SATA_QUEUE_DEPTH
;
1763 if (sas_device
->device_info
& MPI2_SAS_DEVICE_INFO_STP_TARGET
)
1765 else if (sas_device
->device_info
&
1766 MPI2_SAS_DEVICE_INFO_SATA_DEVICE
)
1770 sdev_printk(KERN_INFO
, sdev
, "%s: handle(0x%04x), " \
1771 "sas_addr(0x%016llx), phy(%d), device_name(0x%016llx)\n",
1772 ds
, handle
, (unsigned long long)sas_device
->sas_address
,
1773 sas_device
->phy
, (unsigned long long)sas_device
->device_name
);
1774 sdev_printk(KERN_INFO
, sdev
,
1775 "%s: enclosure_logical_id(0x%016llx), slot(%d)\n",
1776 ds
, (unsigned long long)
1777 sas_device
->enclosure_logical_id
, sas_device
->slot
);
1779 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
1782 _scsih_display_sata_capabilities(ioc
, handle
, sdev
);
1785 _scsih_change_queue_depth(sdev
, qdepth
);
1788 sas_read_port_mode_page(sdev
);
1789 _scsih_enable_tlr(ioc
, sdev
);
1796 * _scsih_bios_param - fetch head, sector, cylinder info for a disk
1797 * @sdev: scsi device struct
1798 * @bdev: pointer to block device context
1799 * @capacity: device size (in 512 byte sectors)
1800 * @params: three element array to place output:
1801 * params[0] number of heads (max 255)
1802 * params[1] number of sectors (max 63)
1803 * params[2] number of cylinders
1808 _scsih_bios_param(struct scsi_device
*sdev
, struct block_device
*bdev
,
1809 sector_t capacity
, int params
[])
1819 dummy
= heads
* sectors
;
1820 cylinders
= capacity
;
1821 sector_div(cylinders
, dummy
);
1824 * Handle extended translation size for logical drives
1827 if ((ulong
)capacity
>= 0x200000) {
1830 dummy
= heads
* sectors
;
1831 cylinders
= capacity
;
1832 sector_div(cylinders
, dummy
);
1837 params
[1] = sectors
;
1838 params
[2] = cylinders
;
1844 * _scsih_response_code - translation of device response code
1845 * @ioc: per adapter object
1846 * @response_code: response code returned by the device
1851 _scsih_response_code(struct MPT3SAS_ADAPTER
*ioc
, u8 response_code
)
1855 switch (response_code
) {
1856 case MPI2_SCSITASKMGMT_RSP_TM_COMPLETE
:
1857 desc
= "task management request completed";
1859 case MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
:
1860 desc
= "invalid frame";
1862 case MPI2_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED
:
1863 desc
= "task management request not supported";
1865 case MPI2_SCSITASKMGMT_RSP_TM_FAILED
:
1866 desc
= "task management request failed";
1868 case MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED
:
1869 desc
= "task management request succeeded";
1871 case MPI2_SCSITASKMGMT_RSP_TM_INVALID_LUN
:
1872 desc
= "invalid lun";
1875 desc
= "overlapped tag attempted";
1877 case MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC
:
1878 desc
= "task queued, however not sent to target";
1884 pr_warn(MPT3SAS_FMT
"response_code(0x%01x): %s\n",
1885 ioc
->name
, response_code
, desc
);
1889 * _scsih_tm_done - tm completion routine
1890 * @ioc: per adapter object
1891 * @smid: system request message index
1892 * @msix_index: MSIX table index supplied by the OS
1893 * @reply: reply message frame(lower 32bit addr)
1896 * The callback handler when using scsih_issue_tm.
1898 * Return 1 meaning mf should be freed from _base_interrupt
1899 * 0 means the mf is freed from this function.
1902 _scsih_tm_done(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
1904 MPI2DefaultReply_t
*mpi_reply
;
1906 if (ioc
->tm_cmds
.status
== MPT3_CMD_NOT_USED
)
1908 if (ioc
->tm_cmds
.smid
!= smid
)
1910 mpt3sas_base_flush_reply_queues(ioc
);
1911 ioc
->tm_cmds
.status
|= MPT3_CMD_COMPLETE
;
1912 mpi_reply
= mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
1914 memcpy(ioc
->tm_cmds
.reply
, mpi_reply
, mpi_reply
->MsgLength
*4);
1915 ioc
->tm_cmds
.status
|= MPT3_CMD_REPLY_VALID
;
1917 ioc
->tm_cmds
.status
&= ~MPT3_CMD_PENDING
;
1918 complete(&ioc
->tm_cmds
.done
);
1923 * mpt3sas_scsih_set_tm_flag - set per target tm_busy
1924 * @ioc: per adapter object
1925 * @handle: device handle
1927 * During taskmangement request, we need to freeze the device queue.
1930 mpt3sas_scsih_set_tm_flag(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
1932 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1933 struct scsi_device
*sdev
;
1936 shost_for_each_device(sdev
, ioc
->shost
) {
1939 sas_device_priv_data
= sdev
->hostdata
;
1940 if (!sas_device_priv_data
)
1942 if (sas_device_priv_data
->sas_target
->handle
== handle
) {
1943 sas_device_priv_data
->sas_target
->tm_busy
= 1;
1945 ioc
->ignore_loginfos
= 1;
1951 * mpt3sas_scsih_clear_tm_flag - clear per target tm_busy
1952 * @ioc: per adapter object
1953 * @handle: device handle
1955 * During taskmangement request, we need to freeze the device queue.
1958 mpt3sas_scsih_clear_tm_flag(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
1960 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
1961 struct scsi_device
*sdev
;
1964 shost_for_each_device(sdev
, ioc
->shost
) {
1967 sas_device_priv_data
= sdev
->hostdata
;
1968 if (!sas_device_priv_data
)
1970 if (sas_device_priv_data
->sas_target
->handle
== handle
) {
1971 sas_device_priv_data
->sas_target
->tm_busy
= 0;
1973 ioc
->ignore_loginfos
= 0;
1979 * mpt3sas_scsih_issue_tm - main routine for sending tm requests
1980 * @ioc: per adapter struct
1981 * @device_handle: device handle
1982 * @channel: the channel assigned by the OS
1983 * @id: the id assigned by the OS
1985 * @type: MPI2_SCSITASKMGMT_TASKTYPE__XXX (defined in mpi2_init.h)
1986 * @smid_task: smid assigned to the task
1987 * @timeout: timeout in seconds
1988 * @m_type: TM_MUTEX_ON or TM_MUTEX_OFF
1991 * A generic API for sending task management requests to firmware.
1993 * The callback index is set inside `ioc->tm_cb_idx`.
1995 * Return SUCCESS or FAILED.
1998 mpt3sas_scsih_issue_tm(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
, uint channel
,
1999 uint id
, uint lun
, u8 type
, u16 smid_task
, ulong timeout
,
2000 enum mutex_type m_type
)
2002 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
2003 Mpi2SCSITaskManagementReply_t
*mpi_reply
;
2006 unsigned long timeleft
;
2007 struct scsiio_tracker
*scsi_lookup
= NULL
;
2010 if (m_type
== TM_MUTEX_ON
)
2011 mutex_lock(&ioc
->tm_cmds
.mutex
);
2012 if (ioc
->tm_cmds
.status
!= MPT3_CMD_NOT_USED
) {
2013 pr_info(MPT3SAS_FMT
"%s: tm_cmd busy!!!\n",
2014 __func__
, ioc
->name
);
2019 if (ioc
->shost_recovery
|| ioc
->remove_host
||
2020 ioc
->pci_error_recovery
) {
2021 pr_info(MPT3SAS_FMT
"%s: host reset in progress!\n",
2022 __func__
, ioc
->name
);
2027 ioc_state
= mpt3sas_base_get_iocstate(ioc
, 0);
2028 if (ioc_state
& MPI2_DOORBELL_USED
) {
2029 dhsprintk(ioc
, pr_info(MPT3SAS_FMT
2030 "unexpected doorbell active!\n", ioc
->name
));
2031 rc
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2033 rc
= (!rc
) ? SUCCESS
: FAILED
;
2037 if ((ioc_state
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_FAULT
) {
2038 mpt3sas_base_fault_info(ioc
, ioc_state
&
2039 MPI2_DOORBELL_DATA_MASK
);
2040 rc
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2042 rc
= (!rc
) ? SUCCESS
: FAILED
;
2046 smid
= mpt3sas_base_get_smid_hpr(ioc
, ioc
->tm_cb_idx
);
2048 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
2049 ioc
->name
, __func__
);
2054 if (type
== MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
)
2055 scsi_lookup
= &ioc
->scsi_lookup
[smid_task
- 1];
2057 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
2058 "sending tm: handle(0x%04x), task_type(0x%02x), smid(%d)\n",
2059 ioc
->name
, handle
, type
, smid_task
));
2060 ioc
->tm_cmds
.status
= MPT3_CMD_PENDING
;
2061 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
2062 ioc
->tm_cmds
.smid
= smid
;
2063 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
2064 memset(ioc
->tm_cmds
.reply
, 0, sizeof(Mpi2SCSITaskManagementReply_t
));
2065 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
2066 mpi_request
->DevHandle
= cpu_to_le16(handle
);
2067 mpi_request
->TaskType
= type
;
2068 mpi_request
->TaskMID
= cpu_to_le16(smid_task
);
2069 int_to_scsilun(lun
, (struct scsi_lun
*)mpi_request
->LUN
);
2070 mpt3sas_scsih_set_tm_flag(ioc
, handle
);
2071 init_completion(&ioc
->tm_cmds
.done
);
2072 mpt3sas_base_put_smid_hi_priority(ioc
, smid
);
2073 timeleft
= wait_for_completion_timeout(&ioc
->tm_cmds
.done
, timeout
*HZ
);
2074 if (!(ioc
->tm_cmds
.status
& MPT3_CMD_COMPLETE
)) {
2075 pr_err(MPT3SAS_FMT
"%s: timeout\n",
2076 ioc
->name
, __func__
);
2077 _debug_dump_mf(mpi_request
,
2078 sizeof(Mpi2SCSITaskManagementRequest_t
)/4);
2079 if (!(ioc
->tm_cmds
.status
& MPT3_CMD_RESET
)) {
2080 rc
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2082 rc
= (!rc
) ? SUCCESS
: FAILED
;
2083 ioc
->tm_cmds
.status
= MPT3_CMD_NOT_USED
;
2084 mpt3sas_scsih_clear_tm_flag(ioc
, handle
);
2089 if (ioc
->tm_cmds
.status
& MPT3_CMD_REPLY_VALID
) {
2090 mpt3sas_trigger_master(ioc
, MASTER_TRIGGER_TASK_MANAGMENT
);
2091 mpi_reply
= ioc
->tm_cmds
.reply
;
2092 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
"complete tm: " \
2093 "ioc_status(0x%04x), loginfo(0x%08x), term_count(0x%08x)\n",
2094 ioc
->name
, le16_to_cpu(mpi_reply
->IOCStatus
),
2095 le32_to_cpu(mpi_reply
->IOCLogInfo
),
2096 le32_to_cpu(mpi_reply
->TerminationCount
)));
2097 if (ioc
->logging_level
& MPT_DEBUG_TM
) {
2098 _scsih_response_code(ioc
, mpi_reply
->ResponseCode
);
2099 if (mpi_reply
->IOCStatus
)
2100 _debug_dump_mf(mpi_request
,
2101 sizeof(Mpi2SCSITaskManagementRequest_t
)/4);
2106 case MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
:
2108 if (scsi_lookup
->scmd
== NULL
)
2113 case MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
:
2114 if (_scsih_scsi_lookup_find_by_target(ioc
, id
, channel
))
2119 case MPI2_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET
:
2120 case MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET
:
2121 if (_scsih_scsi_lookup_find_by_lun(ioc
, id
, lun
, channel
))
2126 case MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK
:
2134 mpt3sas_scsih_clear_tm_flag(ioc
, handle
);
2135 ioc
->tm_cmds
.status
= MPT3_CMD_NOT_USED
;
2136 if (m_type
== TM_MUTEX_ON
)
2137 mutex_unlock(&ioc
->tm_cmds
.mutex
);
2142 if (m_type
== TM_MUTEX_ON
)
2143 mutex_unlock(&ioc
->tm_cmds
.mutex
);
2148 * _scsih_tm_display_info - displays info about the device
2149 * @ioc: per adapter struct
2150 * @scmd: pointer to scsi command object
2152 * Called by task management callback handlers.
2155 _scsih_tm_display_info(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
)
2157 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
2158 struct MPT3SAS_TARGET
*priv_target
= starget
->hostdata
;
2159 struct _sas_device
*sas_device
= NULL
;
2160 unsigned long flags
;
2161 char *device_str
= NULL
;
2165 device_str
= "volume";
2167 scsi_print_command(scmd
);
2168 if (priv_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
2169 starget_printk(KERN_INFO
, starget
,
2170 "%s handle(0x%04x), %s wwid(0x%016llx)\n",
2171 device_str
, priv_target
->handle
,
2172 device_str
, (unsigned long long)priv_target
->sas_address
);
2174 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2175 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
2176 priv_target
->sas_address
);
2178 if (priv_target
->flags
&
2179 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2180 starget_printk(KERN_INFO
, starget
,
2181 "volume handle(0x%04x), "
2182 "volume wwid(0x%016llx)\n",
2183 sas_device
->volume_handle
,
2184 (unsigned long long)sas_device
->volume_wwid
);
2186 starget_printk(KERN_INFO
, starget
,
2187 "handle(0x%04x), sas_address(0x%016llx), phy(%d)\n",
2189 (unsigned long long)sas_device
->sas_address
,
2191 starget_printk(KERN_INFO
, starget
,
2192 "enclosure_logical_id(0x%016llx), slot(%d)\n",
2193 (unsigned long long)sas_device
->enclosure_logical_id
,
2196 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2201 * _scsih_abort - eh threads main abort routine
2202 * @scmd: pointer to scsi command object
2204 * Returns SUCCESS if command aborted else FAILED
2207 _scsih_abort(struct scsi_cmnd
*scmd
)
2209 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2210 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2215 sdev_printk(KERN_INFO
, scmd
->device
,
2216 "attempting task abort! scmd(%p)\n", scmd
);
2217 _scsih_tm_display_info(ioc
, scmd
);
2219 sas_device_priv_data
= scmd
->device
->hostdata
;
2220 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2221 sdev_printk(KERN_INFO
, scmd
->device
,
2222 "device been deleted! scmd(%p)\n", scmd
);
2223 scmd
->result
= DID_NO_CONNECT
<< 16;
2224 scmd
->scsi_done(scmd
);
2229 /* search for the command */
2230 smid
= _scsih_scsi_lookup_find_by_scmd(ioc
, scmd
);
2232 scmd
->result
= DID_RESET
<< 16;
2237 /* for hidden raid components and volumes this is not supported */
2238 if (sas_device_priv_data
->sas_target
->flags
&
2239 MPT_TARGET_FLAGS_RAID_COMPONENT
||
2240 sas_device_priv_data
->sas_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
2241 scmd
->result
= DID_RESET
<< 16;
2246 mpt3sas_halt_firmware(ioc
);
2248 handle
= sas_device_priv_data
->sas_target
->handle
;
2249 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2250 scmd
->device
->id
, scmd
->device
->lun
,
2251 MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
, smid
, 30, TM_MUTEX_ON
);
2254 sdev_printk(KERN_INFO
, scmd
->device
, "task abort: %s scmd(%p)\n",
2255 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2260 * _scsih_dev_reset - eh threads main device reset routine
2261 * @scmd: pointer to scsi command object
2263 * Returns SUCCESS if command aborted else FAILED
2266 _scsih_dev_reset(struct scsi_cmnd
*scmd
)
2268 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2269 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2270 struct _sas_device
*sas_device
;
2271 unsigned long flags
;
2275 sdev_printk(KERN_INFO
, scmd
->device
,
2276 "attempting device reset! scmd(%p)\n", scmd
);
2277 _scsih_tm_display_info(ioc
, scmd
);
2279 sas_device_priv_data
= scmd
->device
->hostdata
;
2280 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2281 sdev_printk(KERN_INFO
, scmd
->device
,
2282 "device been deleted! scmd(%p)\n", scmd
);
2283 scmd
->result
= DID_NO_CONNECT
<< 16;
2284 scmd
->scsi_done(scmd
);
2289 /* for hidden raid components obtain the volume_handle */
2291 if (sas_device_priv_data
->sas_target
->flags
&
2292 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2293 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2294 sas_device
= _scsih_sas_device_find_by_handle(ioc
,
2295 sas_device_priv_data
->sas_target
->handle
);
2297 handle
= sas_device
->volume_handle
;
2298 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2300 handle
= sas_device_priv_data
->sas_target
->handle
;
2303 scmd
->result
= DID_RESET
<< 16;
2308 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2309 scmd
->device
->id
, scmd
->device
->lun
,
2310 MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET
, 0, 30, TM_MUTEX_ON
);
2313 sdev_printk(KERN_INFO
, scmd
->device
, "device reset: %s scmd(%p)\n",
2314 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2319 * _scsih_target_reset - eh threads main target reset routine
2320 * @scmd: pointer to scsi command object
2322 * Returns SUCCESS if command aborted else FAILED
2325 _scsih_target_reset(struct scsi_cmnd
*scmd
)
2327 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2328 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2329 struct _sas_device
*sas_device
;
2330 unsigned long flags
;
2333 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
2335 starget_printk(KERN_INFO
, starget
, "attempting target reset! scmd(%p)\n",
2337 _scsih_tm_display_info(ioc
, scmd
);
2339 sas_device_priv_data
= scmd
->device
->hostdata
;
2340 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
2341 starget_printk(KERN_INFO
, starget
, "target been deleted! scmd(%p)\n",
2343 scmd
->result
= DID_NO_CONNECT
<< 16;
2344 scmd
->scsi_done(scmd
);
2349 /* for hidden raid components obtain the volume_handle */
2351 if (sas_device_priv_data
->sas_target
->flags
&
2352 MPT_TARGET_FLAGS_RAID_COMPONENT
) {
2353 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2354 sas_device
= _scsih_sas_device_find_by_handle(ioc
,
2355 sas_device_priv_data
->sas_target
->handle
);
2357 handle
= sas_device
->volume_handle
;
2358 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2360 handle
= sas_device_priv_data
->sas_target
->handle
;
2363 scmd
->result
= DID_RESET
<< 16;
2368 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, scmd
->device
->channel
,
2369 scmd
->device
->id
, 0, MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
, 0,
2373 starget_printk(KERN_INFO
, starget
, "target reset: %s scmd(%p)\n",
2374 ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2380 * _scsih_host_reset - eh threads main host reset routine
2381 * @scmd: pointer to scsi command object
2383 * Returns SUCCESS if command aborted else FAILED
2386 _scsih_host_reset(struct scsi_cmnd
*scmd
)
2388 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(scmd
->device
->host
);
2391 pr_info(MPT3SAS_FMT
"attempting host reset! scmd(%p)\n",
2393 scsi_print_command(scmd
);
2395 retval
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2397 r
= (retval
< 0) ? FAILED
: SUCCESS
;
2398 pr_info(MPT3SAS_FMT
"host reset: %s scmd(%p)\n",
2399 ioc
->name
, ((r
== SUCCESS
) ? "SUCCESS" : "FAILED"), scmd
);
2405 * _scsih_fw_event_add - insert and queue up fw_event
2406 * @ioc: per adapter object
2407 * @fw_event: object describing the event
2408 * Context: This function will acquire ioc->fw_event_lock.
2410 * This adds the firmware event object into link list, then queues it up to
2411 * be processed from user context.
2416 _scsih_fw_event_add(struct MPT3SAS_ADAPTER
*ioc
, struct fw_event_work
*fw_event
)
2418 unsigned long flags
;
2420 if (ioc
->firmware_event_thread
== NULL
)
2423 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
2424 INIT_LIST_HEAD(&fw_event
->list
);
2425 list_add_tail(&fw_event
->list
, &ioc
->fw_event_list
);
2426 INIT_WORK(&fw_event
->work
, _firmware_event_work
);
2427 queue_work(ioc
->firmware_event_thread
, &fw_event
->work
);
2428 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
2432 * _scsih_fw_event_free - delete fw_event
2433 * @ioc: per adapter object
2434 * @fw_event: object describing the event
2435 * Context: This function will acquire ioc->fw_event_lock.
2437 * This removes firmware event object from link list, frees associated memory.
2442 _scsih_fw_event_free(struct MPT3SAS_ADAPTER
*ioc
, struct fw_event_work
2445 unsigned long flags
;
2447 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
2448 list_del(&fw_event
->list
);
2450 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
2455 * mpt3sas_send_trigger_data_event - send event for processing trigger data
2456 * @ioc: per adapter object
2457 * @event_data: trigger event data
2462 mpt3sas_send_trigger_data_event(struct MPT3SAS_ADAPTER
*ioc
,
2463 struct SL_WH_TRIGGERS_EVENT_DATA_T
*event_data
)
2465 struct fw_event_work
*fw_event
;
2467 if (ioc
->is_driver_loading
)
2469 fw_event
= kzalloc(sizeof(*fw_event
) + sizeof(*event_data
),
2473 fw_event
->event
= MPT3SAS_PROCESS_TRIGGER_DIAG
;
2474 fw_event
->ioc
= ioc
;
2475 memcpy(fw_event
->event_data
, event_data
, sizeof(*event_data
));
2476 _scsih_fw_event_add(ioc
, fw_event
);
2480 * _scsih_error_recovery_delete_devices - remove devices not responding
2481 * @ioc: per adapter object
2486 _scsih_error_recovery_delete_devices(struct MPT3SAS_ADAPTER
*ioc
)
2488 struct fw_event_work
*fw_event
;
2490 if (ioc
->is_driver_loading
)
2492 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
2495 fw_event
->event
= MPT3SAS_REMOVE_UNRESPONDING_DEVICES
;
2496 fw_event
->ioc
= ioc
;
2497 _scsih_fw_event_add(ioc
, fw_event
);
2501 * mpt3sas_port_enable_complete - port enable completed (fake event)
2502 * @ioc: per adapter object
2507 mpt3sas_port_enable_complete(struct MPT3SAS_ADAPTER
*ioc
)
2509 struct fw_event_work
*fw_event
;
2511 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
2514 fw_event
->event
= MPT3SAS_PORT_ENABLE_COMPLETE
;
2515 fw_event
->ioc
= ioc
;
2516 _scsih_fw_event_add(ioc
, fw_event
);
2520 * _scsih_fw_event_cleanup_queue - cleanup event queue
2521 * @ioc: per adapter object
2523 * Walk the firmware event queue, either killing timers, or waiting
2524 * for outstanding events to complete
2529 _scsih_fw_event_cleanup_queue(struct MPT3SAS_ADAPTER
*ioc
)
2531 struct fw_event_work
*fw_event
, *next
;
2533 if (list_empty(&ioc
->fw_event_list
) ||
2534 !ioc
->firmware_event_thread
|| in_interrupt())
2537 list_for_each_entry_safe(fw_event
, next
, &ioc
->fw_event_list
, list
) {
2538 if (cancel_delayed_work_sync(&fw_event
->delayed_work
)) {
2539 _scsih_fw_event_free(ioc
, fw_event
);
2546 * _scsih_ublock_io_all_device - unblock every device
2547 * @ioc: per adapter object
2549 * change the device state from block to running
2552 _scsih_ublock_io_all_device(struct MPT3SAS_ADAPTER
*ioc
)
2554 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2555 struct scsi_device
*sdev
;
2557 shost_for_each_device(sdev
, ioc
->shost
) {
2558 sas_device_priv_data
= sdev
->hostdata
;
2559 if (!sas_device_priv_data
)
2561 if (!sas_device_priv_data
->block
)
2564 sas_device_priv_data
->block
= 0;
2565 dewtprintk(ioc
, sdev_printk(KERN_INFO
, sdev
,
2566 "device_running, handle(0x%04x)\n",
2567 sas_device_priv_data
->sas_target
->handle
));
2568 scsi_internal_device_unblock(sdev
, SDEV_RUNNING
);
2574 * _scsih_ublock_io_device - prepare device to be deleted
2575 * @ioc: per adapter object
2576 * @sas_addr: sas address
2578 * unblock then put device in offline state
2581 _scsih_ublock_io_device(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
)
2583 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2584 struct scsi_device
*sdev
;
2586 shost_for_each_device(sdev
, ioc
->shost
) {
2587 sas_device_priv_data
= sdev
->hostdata
;
2588 if (!sas_device_priv_data
)
2590 if (sas_device_priv_data
->sas_target
->sas_address
2593 if (sas_device_priv_data
->block
) {
2594 sas_device_priv_data
->block
= 0;
2595 scsi_internal_device_unblock(sdev
, SDEV_RUNNING
);
2601 * _scsih_block_io_all_device - set the device state to SDEV_BLOCK
2602 * @ioc: per adapter object
2603 * @handle: device handle
2605 * During device pull we need to appropiately set the sdev state.
2608 _scsih_block_io_all_device(struct MPT3SAS_ADAPTER
*ioc
)
2610 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2611 struct scsi_device
*sdev
;
2613 shost_for_each_device(sdev
, ioc
->shost
) {
2614 sas_device_priv_data
= sdev
->hostdata
;
2615 if (!sas_device_priv_data
)
2617 if (sas_device_priv_data
->block
)
2619 sas_device_priv_data
->block
= 1;
2620 scsi_internal_device_block(sdev
);
2621 sdev_printk(KERN_INFO
, sdev
, "device_blocked, handle(0x%04x)\n",
2622 sas_device_priv_data
->sas_target
->handle
);
2627 * _scsih_block_io_device - set the device state to SDEV_BLOCK
2628 * @ioc: per adapter object
2629 * @handle: device handle
2631 * During device pull we need to appropiately set the sdev state.
2634 _scsih_block_io_device(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
2636 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
2637 struct scsi_device
*sdev
;
2639 shost_for_each_device(sdev
, ioc
->shost
) {
2640 sas_device_priv_data
= sdev
->hostdata
;
2641 if (!sas_device_priv_data
)
2643 if (sas_device_priv_data
->sas_target
->handle
!= handle
)
2645 if (sas_device_priv_data
->block
)
2647 sas_device_priv_data
->block
= 1;
2648 scsi_internal_device_block(sdev
);
2649 sdev_printk(KERN_INFO
, sdev
,
2650 "device_blocked, handle(0x%04x)\n", handle
);
2655 * _scsih_block_io_to_children_attached_to_ex
2656 * @ioc: per adapter object
2657 * @sas_expander: the sas_device object
2659 * This routine set sdev state to SDEV_BLOCK for all devices
2660 * attached to this expander. This function called when expander is
2664 _scsih_block_io_to_children_attached_to_ex(struct MPT3SAS_ADAPTER
*ioc
,
2665 struct _sas_node
*sas_expander
)
2667 struct _sas_port
*mpt3sas_port
;
2668 struct _sas_device
*sas_device
;
2669 struct _sas_node
*expander_sibling
;
2670 unsigned long flags
;
2675 list_for_each_entry(mpt3sas_port
,
2676 &sas_expander
->sas_port_list
, port_list
) {
2677 if (mpt3sas_port
->remote_identify
.device_type
==
2679 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2681 mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
2682 mpt3sas_port
->remote_identify
.sas_address
);
2684 set_bit(sas_device
->handle
,
2685 ioc
->blocking_handles
);
2686 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2690 list_for_each_entry(mpt3sas_port
,
2691 &sas_expander
->sas_port_list
, port_list
) {
2693 if (mpt3sas_port
->remote_identify
.device_type
==
2694 SAS_EDGE_EXPANDER_DEVICE
||
2695 mpt3sas_port
->remote_identify
.device_type
==
2696 SAS_FANOUT_EXPANDER_DEVICE
) {
2698 mpt3sas_scsih_expander_find_by_sas_address(
2699 ioc
, mpt3sas_port
->remote_identify
.sas_address
);
2700 _scsih_block_io_to_children_attached_to_ex(ioc
,
2707 * _scsih_block_io_to_children_attached_directly
2708 * @ioc: per adapter object
2709 * @event_data: topology change event data
2711 * This routine set sdev state to SDEV_BLOCK for all devices
2712 * direct attached during device pull.
2715 _scsih_block_io_to_children_attached_directly(struct MPT3SAS_ADAPTER
*ioc
,
2716 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
2722 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
2723 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
2726 reason_code
= event_data
->PHY
[i
].PhyStatus
&
2727 MPI2_EVENT_SAS_TOPO_RC_MASK
;
2728 if (reason_code
== MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING
)
2729 _scsih_block_io_device(ioc
, handle
);
2734 * _scsih_tm_tr_send - send task management request
2735 * @ioc: per adapter object
2736 * @handle: device handle
2737 * Context: interrupt time.
2739 * This code is to initiate the device removal handshake protocol
2740 * with controller firmware. This function will issue target reset
2741 * using high priority request queue. It will send a sas iounit
2742 * control request (MPI2_SAS_OP_REMOVE_DEVICE) from this completion.
2744 * This is designed to send muliple task management request at the same
2745 * time to the fifo. If the fifo is full, we will append the request,
2746 * and process it in a future completion.
2749 _scsih_tm_tr_send(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
2751 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
2753 struct _sas_device
*sas_device
;
2754 struct MPT3SAS_TARGET
*sas_target_priv_data
= NULL
;
2755 u64 sas_address
= 0;
2756 unsigned long flags
;
2757 struct _tr_list
*delayed_tr
;
2760 if (ioc
->remove_host
) {
2761 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2762 "%s: host has been removed: handle(0x%04x)\n",
2763 __func__
, ioc
->name
, handle
));
2765 } else if (ioc
->pci_error_recovery
) {
2766 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2767 "%s: host in pci error recovery: handle(0x%04x)\n",
2768 __func__
, ioc
->name
,
2772 ioc_state
= mpt3sas_base_get_iocstate(ioc
, 1);
2773 if (ioc_state
!= MPI2_IOC_STATE_OPERATIONAL
) {
2774 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2775 "%s: host is not operational: handle(0x%04x)\n",
2776 __func__
, ioc
->name
,
2781 /* if PD, then return */
2782 if (test_bit(handle
, ioc
->pd_handles
))
2785 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
2786 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
2787 if (sas_device
&& sas_device
->starget
&&
2788 sas_device
->starget
->hostdata
) {
2789 sas_target_priv_data
= sas_device
->starget
->hostdata
;
2790 sas_target_priv_data
->deleted
= 1;
2791 sas_address
= sas_device
->sas_address
;
2793 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
2795 if (sas_target_priv_data
) {
2796 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2797 "setting delete flag: handle(0x%04x), sas_addr(0x%016llx)\n",
2799 (unsigned long long)sas_address
));
2800 _scsih_ublock_io_device(ioc
, sas_address
);
2801 sas_target_priv_data
->handle
= MPT3SAS_INVALID_DEVICE_HANDLE
;
2804 smid
= mpt3sas_base_get_smid_hpr(ioc
, ioc
->tm_tr_cb_idx
);
2806 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
2809 INIT_LIST_HEAD(&delayed_tr
->list
);
2810 delayed_tr
->handle
= handle
;
2811 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_list
);
2812 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2813 "DELAYED:tr:handle(0x%04x), (open)\n",
2814 ioc
->name
, handle
));
2818 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2819 "tr_send:handle(0x%04x), (open), smid(%d), cb(%d)\n",
2820 ioc
->name
, handle
, smid
,
2821 ioc
->tm_tr_cb_idx
));
2822 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
2823 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
2824 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
2825 mpi_request
->DevHandle
= cpu_to_le16(handle
);
2826 mpi_request
->TaskType
= MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
;
2827 mpt3sas_base_put_smid_hi_priority(ioc
, smid
);
2828 mpt3sas_trigger_master(ioc
, MASTER_TRIGGER_DEVICE_REMOVAL
);
2832 * _scsih_tm_tr_complete -
2833 * @ioc: per adapter object
2834 * @smid: system request message index
2835 * @msix_index: MSIX table index supplied by the OS
2836 * @reply: reply message frame(lower 32bit addr)
2837 * Context: interrupt time.
2839 * This is the target reset completion routine.
2840 * This code is part of the code to initiate the device removal
2841 * handshake protocol with controller firmware.
2842 * It will send a sas iounit control request (MPI2_SAS_OP_REMOVE_DEVICE)
2844 * Return 1 meaning mf should be freed from _base_interrupt
2845 * 0 means the mf is freed from this function.
2848 _scsih_tm_tr_complete(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
,
2852 Mpi2SCSITaskManagementRequest_t
*mpi_request_tm
;
2853 Mpi2SCSITaskManagementReply_t
*mpi_reply
=
2854 mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
2855 Mpi2SasIoUnitControlRequest_t
*mpi_request
;
2859 if (ioc
->remove_host
) {
2860 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2861 "%s: host has been removed\n", __func__
, ioc
->name
));
2863 } else if (ioc
->pci_error_recovery
) {
2864 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2865 "%s: host in pci error recovery\n", __func__
,
2869 ioc_state
= mpt3sas_base_get_iocstate(ioc
, 1);
2870 if (ioc_state
!= MPI2_IOC_STATE_OPERATIONAL
) {
2871 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2872 "%s: host is not operational\n", __func__
, ioc
->name
));
2875 if (unlikely(!mpi_reply
)) {
2876 pr_err(MPT3SAS_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
2877 ioc
->name
, __FILE__
, __LINE__
, __func__
);
2880 mpi_request_tm
= mpt3sas_base_get_msg_frame(ioc
, smid
);
2881 handle
= le16_to_cpu(mpi_request_tm
->DevHandle
);
2882 if (handle
!= le16_to_cpu(mpi_reply
->DevHandle
)) {
2883 dewtprintk(ioc
, pr_err(MPT3SAS_FMT
2884 "spurious interrupt: handle(0x%04x:0x%04x), smid(%d)!!!\n",
2886 le16_to_cpu(mpi_reply
->DevHandle
), smid
));
2890 mpt3sas_trigger_master(ioc
, MASTER_TRIGGER_TASK_MANAGMENT
);
2891 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2892 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
2893 "loginfo(0x%08x), completed(%d)\n", ioc
->name
,
2894 handle
, smid
, le16_to_cpu(mpi_reply
->IOCStatus
),
2895 le32_to_cpu(mpi_reply
->IOCLogInfo
),
2896 le32_to_cpu(mpi_reply
->TerminationCount
)));
2898 smid_sas_ctrl
= mpt3sas_base_get_smid(ioc
, ioc
->tm_sas_control_cb_idx
);
2899 if (!smid_sas_ctrl
) {
2900 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
2901 ioc
->name
, __func__
);
2905 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2906 "sc_send:handle(0x%04x), (open), smid(%d), cb(%d)\n",
2907 ioc
->name
, handle
, smid_sas_ctrl
,
2908 ioc
->tm_sas_control_cb_idx
));
2909 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid_sas_ctrl
);
2910 memset(mpi_request
, 0, sizeof(Mpi2SasIoUnitControlRequest_t
));
2911 mpi_request
->Function
= MPI2_FUNCTION_SAS_IO_UNIT_CONTROL
;
2912 mpi_request
->Operation
= MPI2_SAS_OP_REMOVE_DEVICE
;
2913 mpi_request
->DevHandle
= mpi_request_tm
->DevHandle
;
2914 mpt3sas_base_put_smid_default(ioc
, smid_sas_ctrl
);
2916 return _scsih_check_for_pending_tm(ioc
, smid
);
2921 * _scsih_sas_control_complete - completion routine
2922 * @ioc: per adapter object
2923 * @smid: system request message index
2924 * @msix_index: MSIX table index supplied by the OS
2925 * @reply: reply message frame(lower 32bit addr)
2926 * Context: interrupt time.
2928 * This is the sas iounit control completion routine.
2929 * This code is part of the code to initiate the device removal
2930 * handshake protocol with controller firmware.
2932 * Return 1 meaning mf should be freed from _base_interrupt
2933 * 0 means the mf is freed from this function.
2936 _scsih_sas_control_complete(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
,
2937 u8 msix_index
, u32 reply
)
2939 Mpi2SasIoUnitControlReply_t
*mpi_reply
=
2940 mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
2942 if (likely(mpi_reply
)) {
2943 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2944 "sc_complete:handle(0x%04x), (open) "
2945 "smid(%d), ioc_status(0x%04x), loginfo(0x%08x)\n",
2946 ioc
->name
, le16_to_cpu(mpi_reply
->DevHandle
), smid
,
2947 le16_to_cpu(mpi_reply
->IOCStatus
),
2948 le32_to_cpu(mpi_reply
->IOCLogInfo
)));
2950 pr_err(MPT3SAS_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
2951 ioc
->name
, __FILE__
, __LINE__
, __func__
);
2957 * _scsih_tm_tr_volume_send - send target reset request for volumes
2958 * @ioc: per adapter object
2959 * @handle: device handle
2960 * Context: interrupt time.
2962 * This is designed to send muliple task management request at the same
2963 * time to the fifo. If the fifo is full, we will append the request,
2964 * and process it in a future completion.
2967 _scsih_tm_tr_volume_send(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
2969 Mpi2SCSITaskManagementRequest_t
*mpi_request
;
2971 struct _tr_list
*delayed_tr
;
2973 if (ioc
->shost_recovery
|| ioc
->remove_host
||
2974 ioc
->pci_error_recovery
) {
2975 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2976 "%s: host reset in progress!\n",
2977 __func__
, ioc
->name
));
2981 smid
= mpt3sas_base_get_smid_hpr(ioc
, ioc
->tm_tr_volume_cb_idx
);
2983 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
2986 INIT_LIST_HEAD(&delayed_tr
->list
);
2987 delayed_tr
->handle
= handle
;
2988 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_volume_list
);
2989 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2990 "DELAYED:tr:handle(0x%04x), (open)\n",
2991 ioc
->name
, handle
));
2995 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
2996 "tr_send:handle(0x%04x), (open), smid(%d), cb(%d)\n",
2997 ioc
->name
, handle
, smid
,
2998 ioc
->tm_tr_volume_cb_idx
));
2999 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
3000 memset(mpi_request
, 0, sizeof(Mpi2SCSITaskManagementRequest_t
));
3001 mpi_request
->Function
= MPI2_FUNCTION_SCSI_TASK_MGMT
;
3002 mpi_request
->DevHandle
= cpu_to_le16(handle
);
3003 mpi_request
->TaskType
= MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET
;
3004 mpt3sas_base_put_smid_hi_priority(ioc
, smid
);
3008 * _scsih_tm_volume_tr_complete - target reset completion
3009 * @ioc: per adapter object
3010 * @smid: system request message index
3011 * @msix_index: MSIX table index supplied by the OS
3012 * @reply: reply message frame(lower 32bit addr)
3013 * Context: interrupt time.
3015 * Return 1 meaning mf should be freed from _base_interrupt
3016 * 0 means the mf is freed from this function.
3019 _scsih_tm_volume_tr_complete(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
,
3020 u8 msix_index
, u32 reply
)
3023 Mpi2SCSITaskManagementRequest_t
*mpi_request_tm
;
3024 Mpi2SCSITaskManagementReply_t
*mpi_reply
=
3025 mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
3027 if (ioc
->shost_recovery
|| ioc
->remove_host
||
3028 ioc
->pci_error_recovery
) {
3029 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3030 "%s: host reset in progress!\n",
3031 __func__
, ioc
->name
));
3034 if (unlikely(!mpi_reply
)) {
3035 pr_err(MPT3SAS_FMT
"mpi_reply not valid at %s:%d/%s()!\n",
3036 ioc
->name
, __FILE__
, __LINE__
, __func__
);
3040 mpi_request_tm
= mpt3sas_base_get_msg_frame(ioc
, smid
);
3041 handle
= le16_to_cpu(mpi_request_tm
->DevHandle
);
3042 if (handle
!= le16_to_cpu(mpi_reply
->DevHandle
)) {
3043 dewtprintk(ioc
, pr_err(MPT3SAS_FMT
3044 "spurious interrupt: handle(0x%04x:0x%04x), smid(%d)!!!\n",
3046 le16_to_cpu(mpi_reply
->DevHandle
), smid
));
3050 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3051 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
3052 "loginfo(0x%08x), completed(%d)\n", ioc
->name
,
3053 handle
, smid
, le16_to_cpu(mpi_reply
->IOCStatus
),
3054 le32_to_cpu(mpi_reply
->IOCLogInfo
),
3055 le32_to_cpu(mpi_reply
->TerminationCount
)));
3057 return _scsih_check_for_pending_tm(ioc
, smid
);
3062 * _scsih_check_for_pending_tm - check for pending task management
3063 * @ioc: per adapter object
3064 * @smid: system request message index
3066 * This will check delayed target reset list, and feed the
3069 * Return 1 meaning mf should be freed from _base_interrupt
3070 * 0 means the mf is freed from this function.
3073 _scsih_check_for_pending_tm(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
)
3075 struct _tr_list
*delayed_tr
;
3077 if (!list_empty(&ioc
->delayed_tr_volume_list
)) {
3078 delayed_tr
= list_entry(ioc
->delayed_tr_volume_list
.next
,
3079 struct _tr_list
, list
);
3080 mpt3sas_base_free_smid(ioc
, smid
);
3081 _scsih_tm_tr_volume_send(ioc
, delayed_tr
->handle
);
3082 list_del(&delayed_tr
->list
);
3087 if (!list_empty(&ioc
->delayed_tr_list
)) {
3088 delayed_tr
= list_entry(ioc
->delayed_tr_list
.next
,
3089 struct _tr_list
, list
);
3090 mpt3sas_base_free_smid(ioc
, smid
);
3091 _scsih_tm_tr_send(ioc
, delayed_tr
->handle
);
3092 list_del(&delayed_tr
->list
);
3101 * _scsih_check_topo_delete_events - sanity check on topo events
3102 * @ioc: per adapter object
3103 * @event_data: the event data payload
3105 * This routine added to better handle cable breaker.
3107 * This handles the case where driver receives multiple expander
3108 * add and delete events in a single shot. When there is a delete event
3109 * the routine will void any pending add events waiting in the event queue.
3114 _scsih_check_topo_delete_events(struct MPT3SAS_ADAPTER
*ioc
,
3115 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
3117 struct fw_event_work
*fw_event
;
3118 Mpi2EventDataSasTopologyChangeList_t
*local_event_data
;
3119 u16 expander_handle
;
3120 struct _sas_node
*sas_expander
;
3121 unsigned long flags
;
3125 for (i
= 0 ; i
< event_data
->NumEntries
; i
++) {
3126 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
3129 reason_code
= event_data
->PHY
[i
].PhyStatus
&
3130 MPI2_EVENT_SAS_TOPO_RC_MASK
;
3131 if (reason_code
== MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
)
3132 _scsih_tm_tr_send(ioc
, handle
);
3135 expander_handle
= le16_to_cpu(event_data
->ExpanderDevHandle
);
3136 if (expander_handle
< ioc
->sas_hba
.num_phys
) {
3137 _scsih_block_io_to_children_attached_directly(ioc
, event_data
);
3140 if (event_data
->ExpStatus
==
3141 MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
) {
3142 /* put expander attached devices into blocking state */
3143 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
3144 sas_expander
= mpt3sas_scsih_expander_find_by_handle(ioc
,
3146 _scsih_block_io_to_children_attached_to_ex(ioc
, sas_expander
);
3147 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
3149 handle
= find_first_bit(ioc
->blocking_handles
,
3150 ioc
->facts
.MaxDevHandle
);
3151 if (handle
< ioc
->facts
.MaxDevHandle
)
3152 _scsih_block_io_device(ioc
, handle
);
3153 } while (test_and_clear_bit(handle
, ioc
->blocking_handles
));
3154 } else if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_RESPONDING
)
3155 _scsih_block_io_to_children_attached_directly(ioc
, event_data
);
3157 if (event_data
->ExpStatus
!= MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
)
3160 /* mark ignore flag for pending events */
3161 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
3162 list_for_each_entry(fw_event
, &ioc
->fw_event_list
, list
) {
3163 if (fw_event
->event
!= MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
||
3166 local_event_data
= (Mpi2EventDataSasTopologyChangeList_t
*)
3167 fw_event
->event_data
;
3168 if (local_event_data
->ExpStatus
==
3169 MPI2_EVENT_SAS_TOPO_ES_ADDED
||
3170 local_event_data
->ExpStatus
==
3171 MPI2_EVENT_SAS_TOPO_ES_RESPONDING
) {
3172 if (le16_to_cpu(local_event_data
->ExpanderDevHandle
) ==
3174 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3175 "setting ignoring flag\n", ioc
->name
));
3176 fw_event
->ignore
= 1;
3180 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
3184 * _scsih_set_volume_delete_flag - setting volume delete flag
3185 * @ioc: per adapter object
3186 * @handle: device handle
3188 * This returns nothing.
3191 _scsih_set_volume_delete_flag(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3193 struct _raid_device
*raid_device
;
3194 struct MPT3SAS_TARGET
*sas_target_priv_data
;
3195 unsigned long flags
;
3197 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
3198 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
3199 if (raid_device
&& raid_device
->starget
&&
3200 raid_device
->starget
->hostdata
) {
3201 sas_target_priv_data
=
3202 raid_device
->starget
->hostdata
;
3203 sas_target_priv_data
->deleted
= 1;
3204 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3205 "setting delete flag: handle(0x%04x), "
3206 "wwid(0x%016llx)\n", ioc
->name
, handle
,
3207 (unsigned long long) raid_device
->wwid
));
3209 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
3213 * _scsih_set_volume_handle_for_tr - set handle for target reset to volume
3214 * @handle: input handle
3215 * @a: handle for volume a
3216 * @b: handle for volume b
3218 * IR firmware only supports two raid volumes. The purpose of this
3219 * routine is to set the volume handle in either a or b. When the given
3220 * input handle is non-zero, or when a and b have not been set before.
3223 _scsih_set_volume_handle_for_tr(u16 handle
, u16
*a
, u16
*b
)
3225 if (!handle
|| handle
== *a
|| handle
== *b
)
3234 * _scsih_check_ir_config_unhide_events - check for UNHIDE events
3235 * @ioc: per adapter object
3236 * @event_data: the event data payload
3237 * Context: interrupt time.
3239 * This routine will send target reset to volume, followed by target
3240 * resets to the PDs. This is called when a PD has been removed, or
3241 * volume has been deleted or removed. When the target reset is sent
3242 * to volume, the PD target resets need to be queued to start upon
3243 * completion of the volume target reset.
3248 _scsih_check_ir_config_unhide_events(struct MPT3SAS_ADAPTER
*ioc
,
3249 Mpi2EventDataIrConfigChangeList_t
*event_data
)
3251 Mpi2EventIrConfigElement_t
*element
;
3253 u16 handle
, volume_handle
, a
, b
;
3254 struct _tr_list
*delayed_tr
;
3259 /* Volume Resets for Deleted or Removed */
3260 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3261 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3262 if (le32_to_cpu(event_data
->Flags
) &
3263 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
)
3265 if (element
->ReasonCode
==
3266 MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
||
3267 element
->ReasonCode
==
3268 MPI2_EVENT_IR_CHANGE_RC_REMOVED
) {
3269 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3270 _scsih_set_volume_delete_flag(ioc
, volume_handle
);
3271 _scsih_set_volume_handle_for_tr(volume_handle
, &a
, &b
);
3275 /* Volume Resets for UNHIDE events */
3276 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3277 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3278 if (le32_to_cpu(event_data
->Flags
) &
3279 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
)
3281 if (element
->ReasonCode
== MPI2_EVENT_IR_CHANGE_RC_UNHIDE
) {
3282 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3283 _scsih_set_volume_handle_for_tr(volume_handle
, &a
, &b
);
3288 _scsih_tm_tr_volume_send(ioc
, a
);
3290 _scsih_tm_tr_volume_send(ioc
, b
);
3292 /* PD target resets */
3293 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
3294 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
3295 if (element
->ReasonCode
!= MPI2_EVENT_IR_CHANGE_RC_UNHIDE
)
3297 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
3298 volume_handle
= le16_to_cpu(element
->VolDevHandle
);
3299 clear_bit(handle
, ioc
->pd_handles
);
3301 _scsih_tm_tr_send(ioc
, handle
);
3302 else if (volume_handle
== a
|| volume_handle
== b
) {
3303 delayed_tr
= kzalloc(sizeof(*delayed_tr
), GFP_ATOMIC
);
3304 BUG_ON(!delayed_tr
);
3305 INIT_LIST_HEAD(&delayed_tr
->list
);
3306 delayed_tr
->handle
= handle
;
3307 list_add_tail(&delayed_tr
->list
, &ioc
->delayed_tr_list
);
3308 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3309 "DELAYED:tr:handle(0x%04x), (open)\n", ioc
->name
,
3312 _scsih_tm_tr_send(ioc
, handle
);
3318 * _scsih_check_volume_delete_events - set delete flag for volumes
3319 * @ioc: per adapter object
3320 * @event_data: the event data payload
3321 * Context: interrupt time.
3323 * This will handle the case when the cable connected to entire volume is
3324 * pulled. We will take care of setting the deleted flag so normal IO will
3330 _scsih_check_volume_delete_events(struct MPT3SAS_ADAPTER
*ioc
,
3331 Mpi2EventDataIrVolume_t
*event_data
)
3335 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED
)
3337 state
= le32_to_cpu(event_data
->NewValue
);
3338 if (state
== MPI2_RAID_VOL_STATE_MISSING
|| state
==
3339 MPI2_RAID_VOL_STATE_FAILED
)
3340 _scsih_set_volume_delete_flag(ioc
,
3341 le16_to_cpu(event_data
->VolDevHandle
));
3345 * _scsih_flush_running_cmds - completing outstanding commands.
3346 * @ioc: per adapter object
3348 * The flushing out of all pending scmd commands following host reset,
3349 * where all IO is dropped to the floor.
3354 _scsih_flush_running_cmds(struct MPT3SAS_ADAPTER
*ioc
)
3356 struct scsi_cmnd
*scmd
;
3360 for (smid
= 1; smid
<= ioc
->scsiio_depth
; smid
++) {
3361 scmd
= _scsih_scsi_lookup_get_clear(ioc
, smid
);
3365 mpt3sas_base_free_smid(ioc
, smid
);
3366 scsi_dma_unmap(scmd
);
3367 if (ioc
->pci_error_recovery
)
3368 scmd
->result
= DID_NO_CONNECT
<< 16;
3370 scmd
->result
= DID_RESET
<< 16;
3371 scmd
->scsi_done(scmd
);
3373 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
"completing %d cmds\n",
3378 * _scsih_setup_eedp - setup MPI request for EEDP transfer
3379 * @ioc: per adapter object
3380 * @scmd: pointer to scsi command object
3381 * @mpi_request: pointer to the SCSI_IO reqest message frame
3383 * Supporting protection 1 and 3.
3388 _scsih_setup_eedp(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
,
3389 Mpi2SCSIIORequest_t
*mpi_request
)
3392 unsigned char prot_op
= scsi_get_prot_op(scmd
);
3393 unsigned char prot_type
= scsi_get_prot_type(scmd
);
3394 Mpi25SCSIIORequest_t
*mpi_request_3v
=
3395 (Mpi25SCSIIORequest_t
*)mpi_request
;
3397 if (prot_type
== SCSI_PROT_DIF_TYPE0
|| prot_op
== SCSI_PROT_NORMAL
)
3400 if (prot_op
== SCSI_PROT_READ_STRIP
)
3401 eedp_flags
= MPI2_SCSIIO_EEDPFLAGS_CHECK_REMOVE_OP
;
3402 else if (prot_op
== SCSI_PROT_WRITE_INSERT
)
3403 eedp_flags
= MPI2_SCSIIO_EEDPFLAGS_INSERT_OP
;
3407 switch (prot_type
) {
3408 case SCSI_PROT_DIF_TYPE1
:
3409 case SCSI_PROT_DIF_TYPE2
:
3412 * enable ref/guard checking
3413 * auto increment ref tag
3415 eedp_flags
|= MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG
|
3416 MPI2_SCSIIO_EEDPFLAGS_CHECK_REFTAG
|
3417 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD
;
3418 mpi_request
->CDB
.EEDP32
.PrimaryReferenceTag
=
3419 cpu_to_be32(scsi_get_lba(scmd
));
3422 case SCSI_PROT_DIF_TYPE3
:
3425 * enable guard checking
3427 eedp_flags
|= MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD
;
3432 mpi_request_3v
->EEDPBlockSize
=
3433 cpu_to_le16(scmd
->device
->sector_size
);
3434 mpi_request
->EEDPFlags
= cpu_to_le16(eedp_flags
);
3438 * _scsih_eedp_error_handling - return sense code for EEDP errors
3439 * @scmd: pointer to scsi command object
3440 * @ioc_status: ioc status
3445 _scsih_eedp_error_handling(struct scsi_cmnd
*scmd
, u16 ioc_status
)
3449 switch (ioc_status
) {
3450 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
3453 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
3456 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
3463 scsi_build_sense_buffer(0, scmd
->sense_buffer
, ILLEGAL_REQUEST
, 0x10,
3465 scmd
->result
= DRIVER_SENSE
<< 24 | (DID_ABORT
<< 16) |
3466 SAM_STAT_CHECK_CONDITION
;
3471 * _scsih_qcmd - main scsi request entry point
3472 * @scmd: pointer to scsi command object
3473 * @done: function pointer to be invoked on completion
3475 * The callback index is set inside `ioc->scsi_io_cb_idx`.
3477 * Returns 0 on success. If there's a failure, return either:
3478 * SCSI_MLQUEUE_DEVICE_BUSY if the device queue is full, or
3479 * SCSI_MLQUEUE_HOST_BUSY if the entire host queue is full
3482 _scsih_qcmd(struct Scsi_Host
*shost
, struct scsi_cmnd
*scmd
)
3484 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
3485 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
3486 struct MPT3SAS_TARGET
*sas_target_priv_data
;
3487 Mpi2SCSIIORequest_t
*mpi_request
;
3492 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
3493 if (ioc
->logging_level
& MPT_DEBUG_SCSI
)
3494 scsi_print_command(scmd
);
3497 sas_device_priv_data
= scmd
->device
->hostdata
;
3498 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
) {
3499 scmd
->result
= DID_NO_CONNECT
<< 16;
3500 scmd
->scsi_done(scmd
);
3504 if (ioc
->pci_error_recovery
|| ioc
->remove_host
) {
3505 scmd
->result
= DID_NO_CONNECT
<< 16;
3506 scmd
->scsi_done(scmd
);
3510 sas_target_priv_data
= sas_device_priv_data
->sas_target
;
3512 /* invalid device handle */
3513 handle
= sas_target_priv_data
->handle
;
3514 if (handle
== MPT3SAS_INVALID_DEVICE_HANDLE
) {
3515 scmd
->result
= DID_NO_CONNECT
<< 16;
3516 scmd
->scsi_done(scmd
);
3521 /* host recovery or link resets sent via IOCTLs */
3522 if (ioc
->shost_recovery
|| ioc
->ioc_link_reset_in_progress
)
3523 return SCSI_MLQUEUE_HOST_BUSY
;
3525 /* device has been deleted */
3526 else if (sas_target_priv_data
->deleted
) {
3527 scmd
->result
= DID_NO_CONNECT
<< 16;
3528 scmd
->scsi_done(scmd
);
3530 /* device busy with task managment */
3531 } else if (sas_target_priv_data
->tm_busy
||
3532 sas_device_priv_data
->block
)
3533 return SCSI_MLQUEUE_DEVICE_BUSY
;
3535 if (scmd
->sc_data_direction
== DMA_FROM_DEVICE
)
3536 mpi_control
= MPI2_SCSIIO_CONTROL_READ
;
3537 else if (scmd
->sc_data_direction
== DMA_TO_DEVICE
)
3538 mpi_control
= MPI2_SCSIIO_CONTROL_WRITE
;
3540 mpi_control
= MPI2_SCSIIO_CONTROL_NODATATRANSFER
;
3543 mpi_control
|= MPI2_SCSIIO_CONTROL_SIMPLEQ
;
3545 if ((sas_device_priv_data
->flags
& MPT_DEVICE_TLR_ON
) &&
3546 scmd
->cmd_len
!= 32)
3547 mpi_control
|= MPI2_SCSIIO_CONTROL_TLR_ON
;
3549 smid
= mpt3sas_base_get_smid_scsiio(ioc
, ioc
->scsi_io_cb_idx
, scmd
);
3551 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
3552 ioc
->name
, __func__
);
3555 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
3556 memset(mpi_request
, 0, sizeof(Mpi2SCSIIORequest_t
));
3557 _scsih_setup_eedp(ioc
, scmd
, mpi_request
);
3559 if (scmd
->cmd_len
== 32)
3560 mpi_control
|= 4 << MPI2_SCSIIO_CONTROL_ADDCDBLEN_SHIFT
;
3561 mpi_request
->Function
= MPI2_FUNCTION_SCSI_IO_REQUEST
;
3562 if (sas_device_priv_data
->sas_target
->flags
&
3563 MPT_TARGET_FLAGS_RAID_COMPONENT
)
3564 mpi_request
->Function
= MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH
;
3566 mpi_request
->Function
= MPI2_FUNCTION_SCSI_IO_REQUEST
;
3567 mpi_request
->DevHandle
= cpu_to_le16(handle
);
3568 mpi_request
->DataLength
= cpu_to_le32(scsi_bufflen(scmd
));
3569 mpi_request
->Control
= cpu_to_le32(mpi_control
);
3570 mpi_request
->IoFlags
= cpu_to_le16(scmd
->cmd_len
);
3571 mpi_request
->MsgFlags
= MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR
;
3572 mpi_request
->SenseBufferLength
= SCSI_SENSE_BUFFERSIZE
;
3573 mpi_request
->SenseBufferLowAddress
=
3574 mpt3sas_base_get_sense_buffer_dma(ioc
, smid
);
3575 mpi_request
->SGLOffset0
= offsetof(Mpi2SCSIIORequest_t
, SGL
) / 4;
3576 int_to_scsilun(sas_device_priv_data
->lun
, (struct scsi_lun
*)
3578 memcpy(mpi_request
->CDB
.CDB32
, scmd
->cmnd
, scmd
->cmd_len
);
3580 if (mpi_request
->DataLength
) {
3581 if (ioc
->build_sg_scmd(ioc
, scmd
, smid
)) {
3582 mpt3sas_base_free_smid(ioc
, smid
);
3586 ioc
->build_zero_len_sge(ioc
, &mpi_request
->SGL
);
3588 if (likely(mpi_request
->Function
== MPI2_FUNCTION_SCSI_IO_REQUEST
)) {
3589 if (sas_target_priv_data
->flags
& MPT_TARGET_FASTPATH_IO
) {
3590 mpi_request
->IoFlags
= cpu_to_le16(scmd
->cmd_len
|
3591 MPI25_SCSIIO_IOFLAGS_FAST_PATH
);
3592 mpt3sas_base_put_smid_fast_path(ioc
, smid
, handle
);
3594 mpt3sas_base_put_smid_scsi_io(ioc
, smid
, handle
);
3596 mpt3sas_base_put_smid_default(ioc
, smid
);
3600 return SCSI_MLQUEUE_HOST_BUSY
;
3604 * _scsih_normalize_sense - normalize descriptor and fixed format sense data
3605 * @sense_buffer: sense data returned by target
3606 * @data: normalized skey/asc/ascq
3611 _scsih_normalize_sense(char *sense_buffer
, struct sense_info
*data
)
3613 if ((sense_buffer
[0] & 0x7F) >= 0x72) {
3614 /* descriptor format */
3615 data
->skey
= sense_buffer
[1] & 0x0F;
3616 data
->asc
= sense_buffer
[2];
3617 data
->ascq
= sense_buffer
[3];
3620 data
->skey
= sense_buffer
[2] & 0x0F;
3621 data
->asc
= sense_buffer
[12];
3622 data
->ascq
= sense_buffer
[13];
3626 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
3628 * _scsih_scsi_ioc_info - translated non-succesfull SCSI_IO request
3629 * @ioc: per adapter object
3630 * @scmd: pointer to scsi command object
3631 * @mpi_reply: reply mf payload returned from firmware
3633 * scsi_status - SCSI Status code returned from target device
3634 * scsi_state - state info associated with SCSI_IO determined by ioc
3635 * ioc_status - ioc supplied status info
3640 _scsih_scsi_ioc_info(struct MPT3SAS_ADAPTER
*ioc
, struct scsi_cmnd
*scmd
,
3641 Mpi2SCSIIOReply_t
*mpi_reply
, u16 smid
)
3645 u16 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
) &
3646 MPI2_IOCSTATUS_MASK
;
3647 u8 scsi_state
= mpi_reply
->SCSIState
;
3648 u8 scsi_status
= mpi_reply
->SCSIStatus
;
3649 char *desc_ioc_state
= NULL
;
3650 char *desc_scsi_status
= NULL
;
3651 char *desc_scsi_state
= ioc
->tmp_string
;
3652 u32 log_info
= le32_to_cpu(mpi_reply
->IOCLogInfo
);
3653 struct _sas_device
*sas_device
= NULL
;
3654 unsigned long flags
;
3655 struct scsi_target
*starget
= scmd
->device
->sdev_target
;
3656 struct MPT3SAS_TARGET
*priv_target
= starget
->hostdata
;
3657 char *device_str
= NULL
;
3661 device_str
= "volume";
3663 if (log_info
== 0x31170000)
3666 switch (ioc_status
) {
3667 case MPI2_IOCSTATUS_SUCCESS
:
3668 desc_ioc_state
= "success";
3670 case MPI2_IOCSTATUS_INVALID_FUNCTION
:
3671 desc_ioc_state
= "invalid function";
3673 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR
:
3674 desc_ioc_state
= "scsi recovered error";
3676 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE
:
3677 desc_ioc_state
= "scsi invalid dev handle";
3679 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE
:
3680 desc_ioc_state
= "scsi device not there";
3682 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN
:
3683 desc_ioc_state
= "scsi data overrun";
3685 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
:
3686 desc_ioc_state
= "scsi data underrun";
3688 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR
:
3689 desc_ioc_state
= "scsi io data error";
3691 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR
:
3692 desc_ioc_state
= "scsi protocol error";
3694 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED
:
3695 desc_ioc_state
= "scsi task terminated";
3697 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH
:
3698 desc_ioc_state
= "scsi residual mismatch";
3700 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED
:
3701 desc_ioc_state
= "scsi task mgmt failed";
3703 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED
:
3704 desc_ioc_state
= "scsi ioc terminated";
3706 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED
:
3707 desc_ioc_state
= "scsi ext terminated";
3709 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
3710 desc_ioc_state
= "eedp guard error";
3712 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
3713 desc_ioc_state
= "eedp ref tag error";
3715 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
3716 desc_ioc_state
= "eedp app tag error";
3719 desc_ioc_state
= "unknown";
3723 switch (scsi_status
) {
3724 case MPI2_SCSI_STATUS_GOOD
:
3725 desc_scsi_status
= "good";
3727 case MPI2_SCSI_STATUS_CHECK_CONDITION
:
3728 desc_scsi_status
= "check condition";
3730 case MPI2_SCSI_STATUS_CONDITION_MET
:
3731 desc_scsi_status
= "condition met";
3733 case MPI2_SCSI_STATUS_BUSY
:
3734 desc_scsi_status
= "busy";
3736 case MPI2_SCSI_STATUS_INTERMEDIATE
:
3737 desc_scsi_status
= "intermediate";
3739 case MPI2_SCSI_STATUS_INTERMEDIATE_CONDMET
:
3740 desc_scsi_status
= "intermediate condmet";
3742 case MPI2_SCSI_STATUS_RESERVATION_CONFLICT
:
3743 desc_scsi_status
= "reservation conflict";
3745 case MPI2_SCSI_STATUS_COMMAND_TERMINATED
:
3746 desc_scsi_status
= "command terminated";
3748 case MPI2_SCSI_STATUS_TASK_SET_FULL
:
3749 desc_scsi_status
= "task set full";
3751 case MPI2_SCSI_STATUS_ACA_ACTIVE
:
3752 desc_scsi_status
= "aca active";
3754 case MPI2_SCSI_STATUS_TASK_ABORTED
:
3755 desc_scsi_status
= "task aborted";
3758 desc_scsi_status
= "unknown";
3762 desc_scsi_state
[0] = '\0';
3764 desc_scsi_state
= " ";
3765 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
)
3766 strcat(desc_scsi_state
, "response info ");
3767 if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
3768 strcat(desc_scsi_state
, "state terminated ");
3769 if (scsi_state
& MPI2_SCSI_STATE_NO_SCSI_STATUS
)
3770 strcat(desc_scsi_state
, "no status ");
3771 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_FAILED
)
3772 strcat(desc_scsi_state
, "autosense failed ");
3773 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
)
3774 strcat(desc_scsi_state
, "autosense valid ");
3776 scsi_print_command(scmd
);
3778 if (priv_target
->flags
& MPT_TARGET_FLAGS_VOLUME
) {
3779 pr_warn(MPT3SAS_FMT
"\t%s wwid(0x%016llx)\n", ioc
->name
,
3780 device_str
, (unsigned long long)priv_target
->sas_address
);
3782 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
3783 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
3784 priv_target
->sas_address
);
3787 "\tsas_address(0x%016llx), phy(%d)\n",
3788 ioc
->name
, (unsigned long long)
3789 sas_device
->sas_address
, sas_device
->phy
);
3791 "\tenclosure_logical_id(0x%016llx), slot(%d)\n",
3792 ioc
->name
, (unsigned long long)
3793 sas_device
->enclosure_logical_id
, sas_device
->slot
);
3795 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3799 "\thandle(0x%04x), ioc_status(%s)(0x%04x), smid(%d)\n",
3800 ioc
->name
, le16_to_cpu(mpi_reply
->DevHandle
),
3801 desc_ioc_state
, ioc_status
, smid
);
3803 "\trequest_len(%d), underflow(%d), resid(%d)\n",
3804 ioc
->name
, scsi_bufflen(scmd
), scmd
->underflow
,
3805 scsi_get_resid(scmd
));
3807 "\ttag(%d), transfer_count(%d), sc->result(0x%08x)\n",
3808 ioc
->name
, le16_to_cpu(mpi_reply
->TaskTag
),
3809 le32_to_cpu(mpi_reply
->TransferCount
), scmd
->result
);
3811 "\tscsi_status(%s)(0x%02x), scsi_state(%s)(0x%02x)\n",
3812 ioc
->name
, desc_scsi_status
,
3813 scsi_status
, desc_scsi_state
, scsi_state
);
3815 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
) {
3816 struct sense_info data
;
3817 _scsih_normalize_sense(scmd
->sense_buffer
, &data
);
3819 "\t[sense_key,asc,ascq]: [0x%02x,0x%02x,0x%02x], count(%d)\n",
3820 ioc
->name
, data
.skey
,
3821 data
.asc
, data
.ascq
, le32_to_cpu(mpi_reply
->SenseCount
));
3824 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
) {
3825 response_info
= le32_to_cpu(mpi_reply
->ResponseInfo
);
3826 response_bytes
= (u8
*)&response_info
;
3827 _scsih_response_code(ioc
, response_bytes
[0]);
3833 * _scsih_turn_on_pfa_led - illuminate PFA LED
3834 * @ioc: per adapter object
3835 * @handle: device handle
3841 _scsih_turn_on_pfa_led(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3843 Mpi2SepReply_t mpi_reply
;
3844 Mpi2SepRequest_t mpi_request
;
3845 struct _sas_device
*sas_device
;
3847 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
3851 memset(&mpi_request
, 0, sizeof(Mpi2SepRequest_t
));
3852 mpi_request
.Function
= MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR
;
3853 mpi_request
.Action
= MPI2_SEP_REQ_ACTION_WRITE_STATUS
;
3854 mpi_request
.SlotStatus
=
3855 cpu_to_le32(MPI2_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT
);
3856 mpi_request
.DevHandle
= cpu_to_le16(handle
);
3857 mpi_request
.Flags
= MPI2_SEP_REQ_FLAGS_DEVHANDLE_ADDRESS
;
3858 if ((mpt3sas_base_scsi_enclosure_processor(ioc
, &mpi_reply
,
3859 &mpi_request
)) != 0) {
3860 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n", ioc
->name
,
3861 __FILE__
, __LINE__
, __func__
);
3864 sas_device
->pfa_led_on
= 1;
3866 if (mpi_reply
.IOCStatus
|| mpi_reply
.IOCLogInfo
) {
3867 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
3868 "enclosure_processor: ioc_status (0x%04x), loginfo(0x%08x)\n",
3869 ioc
->name
, le16_to_cpu(mpi_reply
.IOCStatus
),
3870 le32_to_cpu(mpi_reply
.IOCLogInfo
)));
3875 * _scsih_turn_off_pfa_led - turn off Fault LED
3876 * @ioc: per adapter object
3877 * @sas_device: sas device whose PFA LED has to turned off
3883 _scsih_turn_off_pfa_led(struct MPT3SAS_ADAPTER
*ioc
,
3884 struct _sas_device
*sas_device
)
3886 Mpi2SepReply_t mpi_reply
;
3887 Mpi2SepRequest_t mpi_request
;
3889 memset(&mpi_request
, 0, sizeof(Mpi2SepRequest_t
));
3890 mpi_request
.Function
= MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR
;
3891 mpi_request
.Action
= MPI2_SEP_REQ_ACTION_WRITE_STATUS
;
3892 mpi_request
.SlotStatus
= 0;
3893 mpi_request
.Slot
= cpu_to_le16(sas_device
->slot
);
3894 mpi_request
.DevHandle
= 0;
3895 mpi_request
.EnclosureHandle
= cpu_to_le16(sas_device
->enclosure_handle
);
3896 mpi_request
.Flags
= MPI2_SEP_REQ_FLAGS_ENCLOSURE_SLOT_ADDRESS
;
3897 if ((mpt3sas_base_scsi_enclosure_processor(ioc
, &mpi_reply
,
3898 &mpi_request
)) != 0) {
3899 printk(MPT3SAS_FMT
"failure at %s:%d/%s()!\n", ioc
->name
,
3900 __FILE__
, __LINE__
, __func__
);
3904 if (mpi_reply
.IOCStatus
|| mpi_reply
.IOCLogInfo
) {
3905 dewtprintk(ioc
, printk(MPT3SAS_FMT
3906 "enclosure_processor: ioc_status (0x%04x), loginfo(0x%08x)\n",
3907 ioc
->name
, le16_to_cpu(mpi_reply
.IOCStatus
),
3908 le32_to_cpu(mpi_reply
.IOCLogInfo
)));
3913 * _scsih_send_event_to_turn_on_pfa_led - fire delayed event
3914 * @ioc: per adapter object
3915 * @handle: device handle
3916 * Context: interrupt.
3921 _scsih_send_event_to_turn_on_pfa_led(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3923 struct fw_event_work
*fw_event
;
3925 fw_event
= kzalloc(sizeof(struct fw_event_work
), GFP_ATOMIC
);
3928 fw_event
->event
= MPT3SAS_TURN_ON_PFA_LED
;
3929 fw_event
->device_handle
= handle
;
3930 fw_event
->ioc
= ioc
;
3931 _scsih_fw_event_add(ioc
, fw_event
);
3935 * _scsih_smart_predicted_fault - process smart errors
3936 * @ioc: per adapter object
3937 * @handle: device handle
3938 * Context: interrupt.
3943 _scsih_smart_predicted_fault(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
3945 struct scsi_target
*starget
;
3946 struct MPT3SAS_TARGET
*sas_target_priv_data
;
3947 Mpi2EventNotificationReply_t
*event_reply
;
3948 Mpi2EventDataSasDeviceStatusChange_t
*event_data
;
3949 struct _sas_device
*sas_device
;
3951 unsigned long flags
;
3953 /* only handle non-raid devices */
3954 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
3955 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
3957 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3960 starget
= sas_device
->starget
;
3961 sas_target_priv_data
= starget
->hostdata
;
3963 if ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_RAID_COMPONENT
) ||
3964 ((sas_target_priv_data
->flags
& MPT_TARGET_FLAGS_VOLUME
))) {
3965 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3968 starget_printk(KERN_WARNING
, starget
, "predicted fault\n");
3969 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
3971 if (ioc
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_IBM
)
3972 _scsih_send_event_to_turn_on_pfa_led(ioc
, handle
);
3974 /* insert into event log */
3975 sz
= offsetof(Mpi2EventNotificationReply_t
, EventData
) +
3976 sizeof(Mpi2EventDataSasDeviceStatusChange_t
);
3977 event_reply
= kzalloc(sz
, GFP_KERNEL
);
3979 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
3980 ioc
->name
, __FILE__
, __LINE__
, __func__
);
3984 event_reply
->Function
= MPI2_FUNCTION_EVENT_NOTIFICATION
;
3985 event_reply
->Event
=
3986 cpu_to_le16(MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
);
3987 event_reply
->MsgLength
= sz
/4;
3988 event_reply
->EventDataLength
=
3989 cpu_to_le16(sizeof(Mpi2EventDataSasDeviceStatusChange_t
)/4);
3990 event_data
= (Mpi2EventDataSasDeviceStatusChange_t
*)
3991 event_reply
->EventData
;
3992 event_data
->ReasonCode
= MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
;
3993 event_data
->ASC
= 0x5D;
3994 event_data
->DevHandle
= cpu_to_le16(handle
);
3995 event_data
->SASAddress
= cpu_to_le64(sas_target_priv_data
->sas_address
);
3996 mpt3sas_ctl_add_to_event_log(ioc
, event_reply
);
4001 * _scsih_io_done - scsi request callback
4002 * @ioc: per adapter object
4003 * @smid: system request message index
4004 * @msix_index: MSIX table index supplied by the OS
4005 * @reply: reply message frame(lower 32bit addr)
4007 * Callback handler when using _scsih_qcmd.
4009 * Return 1 meaning mf should be freed from _base_interrupt
4010 * 0 means the mf is freed from this function.
4013 _scsih_io_done(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
4015 Mpi2SCSIIORequest_t
*mpi_request
;
4016 Mpi2SCSIIOReply_t
*mpi_reply
;
4017 struct scsi_cmnd
*scmd
;
4023 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
4024 u32 response_code
= 0;
4026 mpi_reply
= mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
4027 scmd
= _scsih_scsi_lookup_get_clear(ioc
, smid
);
4031 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
4033 if (mpi_reply
== NULL
) {
4034 scmd
->result
= DID_OK
<< 16;
4038 sas_device_priv_data
= scmd
->device
->hostdata
;
4039 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
||
4040 sas_device_priv_data
->sas_target
->deleted
) {
4041 scmd
->result
= DID_NO_CONNECT
<< 16;
4044 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
);
4046 /* turning off TLR */
4047 scsi_state
= mpi_reply
->SCSIState
;
4048 if (scsi_state
& MPI2_SCSI_STATE_RESPONSE_INFO_VALID
)
4050 le32_to_cpu(mpi_reply
->ResponseInfo
) & 0xFF;
4051 if (!sas_device_priv_data
->tlr_snoop_check
) {
4052 sas_device_priv_data
->tlr_snoop_check
++;
4053 if ((sas_device_priv_data
->flags
& MPT_DEVICE_TLR_ON
) &&
4054 response_code
== MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
)
4055 sas_device_priv_data
->flags
&=
4059 xfer_cnt
= le32_to_cpu(mpi_reply
->TransferCount
);
4060 scsi_set_resid(scmd
, scsi_bufflen(scmd
) - xfer_cnt
);
4061 if (ioc_status
& MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE
)
4062 log_info
= le32_to_cpu(mpi_reply
->IOCLogInfo
);
4065 ioc_status
&= MPI2_IOCSTATUS_MASK
;
4066 scsi_status
= mpi_reply
->SCSIStatus
;
4068 if (ioc_status
== MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
&& xfer_cnt
== 0 &&
4069 (scsi_status
== MPI2_SCSI_STATUS_BUSY
||
4070 scsi_status
== MPI2_SCSI_STATUS_RESERVATION_CONFLICT
||
4071 scsi_status
== MPI2_SCSI_STATUS_TASK_SET_FULL
)) {
4072 ioc_status
= MPI2_IOCSTATUS_SUCCESS
;
4075 if (scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
) {
4076 struct sense_info data
;
4077 const void *sense_data
= mpt3sas_base_get_sense_buffer(ioc
,
4079 u32 sz
= min_t(u32
, SCSI_SENSE_BUFFERSIZE
,
4080 le32_to_cpu(mpi_reply
->SenseCount
));
4081 memcpy(scmd
->sense_buffer
, sense_data
, sz
);
4082 _scsih_normalize_sense(scmd
->sense_buffer
, &data
);
4083 /* failure prediction threshold exceeded */
4084 if (data
.asc
== 0x5D)
4085 _scsih_smart_predicted_fault(ioc
,
4086 le16_to_cpu(mpi_reply
->DevHandle
));
4087 mpt3sas_trigger_scsi(ioc
, data
.skey
, data
.asc
, data
.ascq
);
4090 switch (ioc_status
) {
4091 case MPI2_IOCSTATUS_BUSY
:
4092 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES
:
4093 scmd
->result
= SAM_STAT_BUSY
;
4096 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE
:
4097 scmd
->result
= DID_NO_CONNECT
<< 16;
4100 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED
:
4101 if (sas_device_priv_data
->block
) {
4102 scmd
->result
= DID_TRANSPORT_DISRUPTED
<< 16;
4105 if (log_info
== 0x31110630) {
4106 if (scmd
->retries
> 2) {
4107 scmd
->result
= DID_NO_CONNECT
<< 16;
4108 scsi_device_set_state(scmd
->device
,
4111 scmd
->result
= DID_SOFT_ERROR
<< 16;
4112 scmd
->device
->expecting_cc_ua
= 1;
4116 scmd
->result
= DID_SOFT_ERROR
<< 16;
4118 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED
:
4119 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED
:
4120 scmd
->result
= DID_RESET
<< 16;
4123 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH
:
4124 if ((xfer_cnt
== 0) || (scmd
->underflow
> xfer_cnt
))
4125 scmd
->result
= DID_SOFT_ERROR
<< 16;
4127 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4130 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
:
4131 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4133 if ((scsi_state
& MPI2_SCSI_STATE_AUTOSENSE_VALID
))
4136 if (xfer_cnt
< scmd
->underflow
) {
4137 if (scsi_status
== SAM_STAT_BUSY
)
4138 scmd
->result
= SAM_STAT_BUSY
;
4140 scmd
->result
= DID_SOFT_ERROR
<< 16;
4141 } else if (scsi_state
& (MPI2_SCSI_STATE_AUTOSENSE_FAILED
|
4142 MPI2_SCSI_STATE_NO_SCSI_STATUS
))
4143 scmd
->result
= DID_SOFT_ERROR
<< 16;
4144 else if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
4145 scmd
->result
= DID_RESET
<< 16;
4146 else if (!xfer_cnt
&& scmd
->cmnd
[0] == REPORT_LUNS
) {
4147 mpi_reply
->SCSIState
= MPI2_SCSI_STATE_AUTOSENSE_VALID
;
4148 mpi_reply
->SCSIStatus
= SAM_STAT_CHECK_CONDITION
;
4149 scmd
->result
= (DRIVER_SENSE
<< 24) |
4150 SAM_STAT_CHECK_CONDITION
;
4151 scmd
->sense_buffer
[0] = 0x70;
4152 scmd
->sense_buffer
[2] = ILLEGAL_REQUEST
;
4153 scmd
->sense_buffer
[12] = 0x20;
4154 scmd
->sense_buffer
[13] = 0;
4158 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN
:
4159 scsi_set_resid(scmd
, 0);
4160 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR
:
4161 case MPI2_IOCSTATUS_SUCCESS
:
4162 scmd
->result
= (DID_OK
<< 16) | scsi_status
;
4163 if (response_code
==
4164 MPI2_SCSITASKMGMT_RSP_INVALID_FRAME
||
4165 (scsi_state
& (MPI2_SCSI_STATE_AUTOSENSE_FAILED
|
4166 MPI2_SCSI_STATE_NO_SCSI_STATUS
)))
4167 scmd
->result
= DID_SOFT_ERROR
<< 16;
4168 else if (scsi_state
& MPI2_SCSI_STATE_TERMINATED
)
4169 scmd
->result
= DID_RESET
<< 16;
4172 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
4173 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
4174 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
4175 _scsih_eedp_error_handling(scmd
, ioc_status
);
4178 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR
:
4179 case MPI2_IOCSTATUS_INVALID_FUNCTION
:
4180 case MPI2_IOCSTATUS_INVALID_SGL
:
4181 case MPI2_IOCSTATUS_INTERNAL_ERROR
:
4182 case MPI2_IOCSTATUS_INVALID_FIELD
:
4183 case MPI2_IOCSTATUS_INVALID_STATE
:
4184 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR
:
4185 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED
:
4187 scmd
->result
= DID_SOFT_ERROR
<< 16;
4192 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
4193 if (scmd
->result
&& (ioc
->logging_level
& MPT_DEBUG_REPLY
))
4194 _scsih_scsi_ioc_info(ioc
, scmd
, mpi_reply
, smid
);
4199 scsi_dma_unmap(scmd
);
4201 scmd
->scsi_done(scmd
);
4206 * _scsih_sas_host_refresh - refreshing sas host object contents
4207 * @ioc: per adapter object
4210 * During port enable, fw will send topology events for every device. Its
4211 * possible that the handles may change from the previous setting, so this
4212 * code keeping handles updating if changed.
4217 _scsih_sas_host_refresh(struct MPT3SAS_ADAPTER
*ioc
)
4222 Mpi2ConfigReply_t mpi_reply
;
4223 Mpi2SasIOUnitPage0_t
*sas_iounit_pg0
= NULL
;
4224 u16 attached_handle
;
4227 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
4228 "updating handles for sas_host(0x%016llx)\n",
4229 ioc
->name
, (unsigned long long)ioc
->sas_hba
.sas_address
));
4231 sz
= offsetof(Mpi2SasIOUnitPage0_t
, PhyData
) + (ioc
->sas_hba
.num_phys
4232 * sizeof(Mpi2SasIOUnit0PhyData_t
));
4233 sas_iounit_pg0
= kzalloc(sz
, GFP_KERNEL
);
4234 if (!sas_iounit_pg0
) {
4235 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4236 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4240 if ((mpt3sas_config_get_sas_iounit_pg0(ioc
, &mpi_reply
,
4241 sas_iounit_pg0
, sz
)) != 0)
4243 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
4244 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
4246 for (i
= 0; i
< ioc
->sas_hba
.num_phys
; i
++) {
4247 link_rate
= sas_iounit_pg0
->PhyData
[i
].NegotiatedLinkRate
>> 4;
4249 ioc
->sas_hba
.handle
= le16_to_cpu(sas_iounit_pg0
->
4250 PhyData
[0].ControllerDevHandle
);
4251 ioc
->sas_hba
.phy
[i
].handle
= ioc
->sas_hba
.handle
;
4252 attached_handle
= le16_to_cpu(sas_iounit_pg0
->PhyData
[i
].
4254 if (attached_handle
&& link_rate
< MPI2_SAS_NEG_LINK_RATE_1_5
)
4255 link_rate
= MPI2_SAS_NEG_LINK_RATE_1_5
;
4256 mpt3sas_transport_update_links(ioc
, ioc
->sas_hba
.sas_address
,
4257 attached_handle
, i
, link_rate
);
4260 kfree(sas_iounit_pg0
);
4264 * _scsih_sas_host_add - create sas host object
4265 * @ioc: per adapter object
4267 * Creating host side data object, stored in ioc->sas_hba
4272 _scsih_sas_host_add(struct MPT3SAS_ADAPTER
*ioc
)
4275 Mpi2ConfigReply_t mpi_reply
;
4276 Mpi2SasIOUnitPage0_t
*sas_iounit_pg0
= NULL
;
4277 Mpi2SasIOUnitPage1_t
*sas_iounit_pg1
= NULL
;
4278 Mpi2SasPhyPage0_t phy_pg0
;
4279 Mpi2SasDevicePage0_t sas_device_pg0
;
4280 Mpi2SasEnclosurePage0_t enclosure_pg0
;
4283 u8 device_missing_delay
;
4285 mpt3sas_config_get_number_hba_phys(ioc
, &ioc
->sas_hba
.num_phys
);
4286 if (!ioc
->sas_hba
.num_phys
) {
4287 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4288 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4292 /* sas_iounit page 0 */
4293 sz
= offsetof(Mpi2SasIOUnitPage0_t
, PhyData
) + (ioc
->sas_hba
.num_phys
*
4294 sizeof(Mpi2SasIOUnit0PhyData_t
));
4295 sas_iounit_pg0
= kzalloc(sz
, GFP_KERNEL
);
4296 if (!sas_iounit_pg0
) {
4297 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4298 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4301 if ((mpt3sas_config_get_sas_iounit_pg0(ioc
, &mpi_reply
,
4302 sas_iounit_pg0
, sz
))) {
4303 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4304 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4307 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4308 MPI2_IOCSTATUS_MASK
;
4309 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4310 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4311 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4315 /* sas_iounit page 1 */
4316 sz
= offsetof(Mpi2SasIOUnitPage1_t
, PhyData
) + (ioc
->sas_hba
.num_phys
*
4317 sizeof(Mpi2SasIOUnit1PhyData_t
));
4318 sas_iounit_pg1
= kzalloc(sz
, GFP_KERNEL
);
4319 if (!sas_iounit_pg1
) {
4320 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4321 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4324 if ((mpt3sas_config_get_sas_iounit_pg1(ioc
, &mpi_reply
,
4325 sas_iounit_pg1
, sz
))) {
4326 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4327 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4330 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4331 MPI2_IOCSTATUS_MASK
;
4332 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4333 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4334 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4338 ioc
->io_missing_delay
=
4339 sas_iounit_pg1
->IODeviceMissingDelay
;
4340 device_missing_delay
=
4341 sas_iounit_pg1
->ReportDeviceMissingDelay
;
4342 if (device_missing_delay
& MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16
)
4343 ioc
->device_missing_delay
= (device_missing_delay
&
4344 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
) * 16;
4346 ioc
->device_missing_delay
= device_missing_delay
&
4347 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
;
4349 ioc
->sas_hba
.parent_dev
= &ioc
->shost
->shost_gendev
;
4350 ioc
->sas_hba
.phy
= kcalloc(ioc
->sas_hba
.num_phys
,
4351 sizeof(struct _sas_phy
), GFP_KERNEL
);
4352 if (!ioc
->sas_hba
.phy
) {
4353 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4354 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4357 for (i
= 0; i
< ioc
->sas_hba
.num_phys
; i
++) {
4358 if ((mpt3sas_config_get_phy_pg0(ioc
, &mpi_reply
, &phy_pg0
,
4360 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4361 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4364 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4365 MPI2_IOCSTATUS_MASK
;
4366 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4367 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4368 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4373 ioc
->sas_hba
.handle
= le16_to_cpu(sas_iounit_pg0
->
4374 PhyData
[0].ControllerDevHandle
);
4375 ioc
->sas_hba
.phy
[i
].handle
= ioc
->sas_hba
.handle
;
4376 ioc
->sas_hba
.phy
[i
].phy_id
= i
;
4377 mpt3sas_transport_add_host_phy(ioc
, &ioc
->sas_hba
.phy
[i
],
4378 phy_pg0
, ioc
->sas_hba
.parent_dev
);
4380 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
4381 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, ioc
->sas_hba
.handle
))) {
4382 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4383 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4386 ioc
->sas_hba
.enclosure_handle
=
4387 le16_to_cpu(sas_device_pg0
.EnclosureHandle
);
4388 ioc
->sas_hba
.sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
4390 "host_add: handle(0x%04x), sas_addr(0x%016llx), phys(%d)\n",
4391 ioc
->name
, ioc
->sas_hba
.handle
,
4392 (unsigned long long) ioc
->sas_hba
.sas_address
,
4393 ioc
->sas_hba
.num_phys
) ;
4395 if (ioc
->sas_hba
.enclosure_handle
) {
4396 if (!(mpt3sas_config_get_enclosure_pg0(ioc
, &mpi_reply
,
4397 &enclosure_pg0
, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
4398 ioc
->sas_hba
.enclosure_handle
)))
4399 ioc
->sas_hba
.enclosure_logical_id
=
4400 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
4404 kfree(sas_iounit_pg1
);
4405 kfree(sas_iounit_pg0
);
4409 * _scsih_expander_add - creating expander object
4410 * @ioc: per adapter object
4411 * @handle: expander handle
4413 * Creating expander object, stored in ioc->sas_expander_list.
4415 * Return 0 for success, else error.
4418 _scsih_expander_add(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
4420 struct _sas_node
*sas_expander
;
4421 Mpi2ConfigReply_t mpi_reply
;
4422 Mpi2ExpanderPage0_t expander_pg0
;
4423 Mpi2ExpanderPage1_t expander_pg1
;
4424 Mpi2SasEnclosurePage0_t enclosure_pg0
;
4427 u64 sas_address
, sas_address_parent
= 0;
4429 unsigned long flags
;
4430 struct _sas_port
*mpt3sas_port
= NULL
;
4437 if (ioc
->shost_recovery
|| ioc
->pci_error_recovery
)
4440 if ((mpt3sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
4441 MPI2_SAS_EXPAND_PGAD_FORM_HNDL
, handle
))) {
4442 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4443 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4447 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4448 MPI2_IOCSTATUS_MASK
;
4449 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4450 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4451 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4455 /* handle out of order topology events */
4456 parent_handle
= le16_to_cpu(expander_pg0
.ParentDevHandle
);
4457 if (_scsih_get_sas_address(ioc
, parent_handle
, &sas_address_parent
)
4459 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4460 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4463 if (sas_address_parent
!= ioc
->sas_hba
.sas_address
) {
4464 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
4465 sas_expander
= mpt3sas_scsih_expander_find_by_sas_address(ioc
,
4466 sas_address_parent
);
4467 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
4468 if (!sas_expander
) {
4469 rc
= _scsih_expander_add(ioc
, parent_handle
);
4475 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
4476 sas_address
= le64_to_cpu(expander_pg0
.SASAddress
);
4477 sas_expander
= mpt3sas_scsih_expander_find_by_sas_address(ioc
,
4479 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
4484 sas_expander
= kzalloc(sizeof(struct _sas_node
),
4486 if (!sas_expander
) {
4487 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4488 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4492 sas_expander
->handle
= handle
;
4493 sas_expander
->num_phys
= expander_pg0
.NumPhys
;
4494 sas_expander
->sas_address_parent
= sas_address_parent
;
4495 sas_expander
->sas_address
= sas_address
;
4497 pr_info(MPT3SAS_FMT
"expander_add: handle(0x%04x)," \
4498 " parent(0x%04x), sas_addr(0x%016llx), phys(%d)\n", ioc
->name
,
4499 handle
, parent_handle
, (unsigned long long)
4500 sas_expander
->sas_address
, sas_expander
->num_phys
);
4502 if (!sas_expander
->num_phys
)
4504 sas_expander
->phy
= kcalloc(sas_expander
->num_phys
,
4505 sizeof(struct _sas_phy
), GFP_KERNEL
);
4506 if (!sas_expander
->phy
) {
4507 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4508 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4513 INIT_LIST_HEAD(&sas_expander
->sas_port_list
);
4514 mpt3sas_port
= mpt3sas_transport_port_add(ioc
, handle
,
4515 sas_address_parent
);
4516 if (!mpt3sas_port
) {
4517 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4518 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4522 sas_expander
->parent_dev
= &mpt3sas_port
->rphy
->dev
;
4524 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++) {
4525 if ((mpt3sas_config_get_expander_pg1(ioc
, &mpi_reply
,
4526 &expander_pg1
, i
, handle
))) {
4527 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4528 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4532 sas_expander
->phy
[i
].handle
= handle
;
4533 sas_expander
->phy
[i
].phy_id
= i
;
4535 if ((mpt3sas_transport_add_expander_phy(ioc
,
4536 &sas_expander
->phy
[i
], expander_pg1
,
4537 sas_expander
->parent_dev
))) {
4538 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4539 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4545 if (sas_expander
->enclosure_handle
) {
4546 if (!(mpt3sas_config_get_enclosure_pg0(ioc
, &mpi_reply
,
4547 &enclosure_pg0
, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
4548 sas_expander
->enclosure_handle
)))
4549 sas_expander
->enclosure_logical_id
=
4550 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
4553 _scsih_expander_node_add(ioc
, sas_expander
);
4559 mpt3sas_transport_port_remove(ioc
, sas_expander
->sas_address
,
4560 sas_address_parent
);
4561 kfree(sas_expander
);
4566 * mpt3sas_expander_remove - removing expander object
4567 * @ioc: per adapter object
4568 * @sas_address: expander sas_address
4573 mpt3sas_expander_remove(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
)
4575 struct _sas_node
*sas_expander
;
4576 unsigned long flags
;
4578 if (ioc
->shost_recovery
)
4581 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
4582 sas_expander
= mpt3sas_scsih_expander_find_by_sas_address(ioc
,
4585 list_del(&sas_expander
->list
);
4586 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
4588 _scsih_expander_node_remove(ioc
, sas_expander
);
4592 * _scsih_done - internal SCSI_IO callback handler.
4593 * @ioc: per adapter object
4594 * @smid: system request message index
4595 * @msix_index: MSIX table index supplied by the OS
4596 * @reply: reply message frame(lower 32bit addr)
4598 * Callback handler when sending internal generated SCSI_IO.
4599 * The callback index passed is `ioc->scsih_cb_idx`
4601 * Return 1 meaning mf should be freed from _base_interrupt
4602 * 0 means the mf is freed from this function.
4605 _scsih_done(struct MPT3SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
, u32 reply
)
4607 MPI2DefaultReply_t
*mpi_reply
;
4609 mpi_reply
= mpt3sas_base_get_reply_virt_addr(ioc
, reply
);
4610 if (ioc
->scsih_cmds
.status
== MPT3_CMD_NOT_USED
)
4612 if (ioc
->scsih_cmds
.smid
!= smid
)
4614 ioc
->scsih_cmds
.status
|= MPT3_CMD_COMPLETE
;
4616 memcpy(ioc
->scsih_cmds
.reply
, mpi_reply
,
4617 mpi_reply
->MsgLength
*4);
4618 ioc
->scsih_cmds
.status
|= MPT3_CMD_REPLY_VALID
;
4620 ioc
->scsih_cmds
.status
&= ~MPT3_CMD_PENDING
;
4621 complete(&ioc
->scsih_cmds
.done
);
4628 #define MPT3_MAX_LUNS (255)
4632 * _scsih_check_access_status - check access flags
4633 * @ioc: per adapter object
4634 * @sas_address: sas address
4635 * @handle: sas device handle
4636 * @access_flags: errors returned during discovery of the device
4638 * Return 0 for success, else failure
4641 _scsih_check_access_status(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
,
4642 u16 handle
, u8 access_status
)
4647 switch (access_status
) {
4648 case MPI2_SAS_DEVICE0_ASTATUS_NO_ERRORS
:
4649 case MPI2_SAS_DEVICE0_ASTATUS_SATA_NEEDS_INITIALIZATION
:
4652 case MPI2_SAS_DEVICE0_ASTATUS_SATA_CAPABILITY_FAILED
:
4653 desc
= "sata capability failed";
4655 case MPI2_SAS_DEVICE0_ASTATUS_SATA_AFFILIATION_CONFLICT
:
4656 desc
= "sata affiliation conflict";
4658 case MPI2_SAS_DEVICE0_ASTATUS_ROUTE_NOT_ADDRESSABLE
:
4659 desc
= "route not addressable";
4661 case MPI2_SAS_DEVICE0_ASTATUS_SMP_ERROR_NOT_ADDRESSABLE
:
4662 desc
= "smp error not addressable";
4664 case MPI2_SAS_DEVICE0_ASTATUS_DEVICE_BLOCKED
:
4665 desc
= "device blocked";
4667 case MPI2_SAS_DEVICE0_ASTATUS_SATA_INIT_FAILED
:
4668 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UNKNOWN
:
4669 case MPI2_SAS_DEVICE0_ASTATUS_SIF_AFFILIATION_CONFLICT
:
4670 case MPI2_SAS_DEVICE0_ASTATUS_SIF_DIAG
:
4671 case MPI2_SAS_DEVICE0_ASTATUS_SIF_IDENTIFICATION
:
4672 case MPI2_SAS_DEVICE0_ASTATUS_SIF_CHECK_POWER
:
4673 case MPI2_SAS_DEVICE0_ASTATUS_SIF_PIO_SN
:
4674 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MDMA_SN
:
4675 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UDMA_SN
:
4676 case MPI2_SAS_DEVICE0_ASTATUS_SIF_ZONING_VIOLATION
:
4677 case MPI2_SAS_DEVICE0_ASTATUS_SIF_NOT_ADDRESSABLE
:
4678 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MAX
:
4679 desc
= "sata initialization failed";
4690 "discovery errors(%s): sas_address(0x%016llx), handle(0x%04x)\n",
4691 ioc
->name
, desc
, (unsigned long long)sas_address
, handle
);
4696 * _scsih_check_device - checking device responsiveness
4697 * @ioc: per adapter object
4698 * @parent_sas_address: sas address of parent expander or sas host
4699 * @handle: attached device handle
4700 * @phy_numberv: phy number
4701 * @link_rate: new link rate
4706 _scsih_check_device(struct MPT3SAS_ADAPTER
*ioc
,
4707 u64 parent_sas_address
, u16 handle
, u8 phy_number
, u8 link_rate
)
4709 Mpi2ConfigReply_t mpi_reply
;
4710 Mpi2SasDevicePage0_t sas_device_pg0
;
4711 struct _sas_device
*sas_device
;
4713 unsigned long flags
;
4715 struct scsi_target
*starget
;
4716 struct MPT3SAS_TARGET
*sas_target_priv_data
;
4720 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
4721 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
)))
4724 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
4725 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
4728 /* wide port handling ~ we need only handle device once for the phy that
4729 * is matched in sas device page zero
4731 if (phy_number
!= sas_device_pg0
.PhyNum
)
4734 /* check if this is end device */
4735 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
4736 if (!(_scsih_is_end_device(device_info
)))
4739 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
4740 sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
4741 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
4745 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4749 if (unlikely(sas_device
->handle
!= handle
)) {
4750 starget
= sas_device
->starget
;
4751 sas_target_priv_data
= starget
->hostdata
;
4752 starget_printk(KERN_INFO
, starget
,
4753 "handle changed from(0x%04x) to (0x%04x)!!!\n",
4754 sas_device
->handle
, handle
);
4755 sas_target_priv_data
->handle
= handle
;
4756 sas_device
->handle
= handle
;
4759 /* check if device is present */
4760 if (!(le16_to_cpu(sas_device_pg0
.Flags
) &
4761 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT
)) {
4763 "device is not present handle(0x%04x), flags!!!\n",
4765 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4769 /* check if there were any issues with discovery */
4770 if (_scsih_check_access_status(ioc
, sas_address
, handle
,
4771 sas_device_pg0
.AccessStatus
)) {
4772 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4776 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4777 _scsih_ublock_io_device(ioc
, sas_address
);
4782 * _scsih_add_device - creating sas device object
4783 * @ioc: per adapter object
4784 * @handle: sas device handle
4785 * @phy_num: phy number end device attached to
4786 * @is_pd: is this hidden raid component
4788 * Creating end device object, stored in ioc->sas_device_list.
4790 * Returns 0 for success, non-zero for failure.
4793 _scsih_add_device(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
, u8 phy_num
,
4796 Mpi2ConfigReply_t mpi_reply
;
4797 Mpi2SasDevicePage0_t sas_device_pg0
;
4798 Mpi2SasEnclosurePage0_t enclosure_pg0
;
4799 struct _sas_device
*sas_device
;
4803 unsigned long flags
;
4805 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
4806 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
4807 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4808 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4812 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
4813 MPI2_IOCSTATUS_MASK
;
4814 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
4815 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4816 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4820 /* check if this is end device */
4821 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
4822 if (!(_scsih_is_end_device(device_info
)))
4824 sas_address
= le64_to_cpu(sas_device_pg0
.SASAddress
);
4826 /* check if device is present */
4827 if (!(le16_to_cpu(sas_device_pg0
.Flags
) &
4828 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT
)) {
4829 pr_err(MPT3SAS_FMT
"device is not present handle(0x04%x)!!!\n",
4834 /* check if there were any issues with discovery */
4835 if (_scsih_check_access_status(ioc
, sas_address
, handle
,
4836 sas_device_pg0
.AccessStatus
))
4839 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
4840 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
4842 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
4847 sas_device
= kzalloc(sizeof(struct _sas_device
),
4850 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4851 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4855 sas_device
->handle
= handle
;
4856 if (_scsih_get_sas_address(ioc
,
4857 le16_to_cpu(sas_device_pg0
.ParentDevHandle
),
4858 &sas_device
->sas_address_parent
) != 0)
4859 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
4860 ioc
->name
, __FILE__
, __LINE__
, __func__
);
4861 sas_device
->enclosure_handle
=
4862 le16_to_cpu(sas_device_pg0
.EnclosureHandle
);
4864 le16_to_cpu(sas_device_pg0
.Slot
);
4865 sas_device
->device_info
= device_info
;
4866 sas_device
->sas_address
= sas_address
;
4867 sas_device
->phy
= sas_device_pg0
.PhyNum
;
4868 sas_device
->fast_path
= (le16_to_cpu(sas_device_pg0
.Flags
) &
4869 MPI25_SAS_DEVICE0_FLAGS_FAST_PATH_CAPABLE
) ? 1 : 0;
4871 /* get enclosure_logical_id */
4872 if (sas_device
->enclosure_handle
&& !(mpt3sas_config_get_enclosure_pg0(
4873 ioc
, &mpi_reply
, &enclosure_pg0
, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE
,
4874 sas_device
->enclosure_handle
)))
4875 sas_device
->enclosure_logical_id
=
4876 le64_to_cpu(enclosure_pg0
.EnclosureLogicalID
);
4878 /* get device name */
4879 sas_device
->device_name
= le64_to_cpu(sas_device_pg0
.DeviceName
);
4881 if (ioc
->wait_for_discovery_to_complete
)
4882 _scsih_sas_device_init_add(ioc
, sas_device
);
4884 _scsih_sas_device_add(ioc
, sas_device
);
4890 * _scsih_remove_device - removing sas device object
4891 * @ioc: per adapter object
4892 * @sas_device_delete: the sas_device object
4897 _scsih_remove_device(struct MPT3SAS_ADAPTER
*ioc
,
4898 struct _sas_device
*sas_device
)
4900 struct MPT3SAS_TARGET
*sas_target_priv_data
;
4902 if ((ioc
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_IBM
) &&
4903 (sas_device
->pfa_led_on
)) {
4904 _scsih_turn_off_pfa_led(ioc
, sas_device
);
4905 sas_device
->pfa_led_on
= 0;
4907 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
4908 "%s: enter: handle(0x%04x), sas_addr(0x%016llx)\n",
4909 ioc
->name
, __func__
,
4910 sas_device
->handle
, (unsigned long long)
4911 sas_device
->sas_address
));
4913 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
4914 sas_target_priv_data
= sas_device
->starget
->hostdata
;
4915 sas_target_priv_data
->deleted
= 1;
4916 _scsih_ublock_io_device(ioc
, sas_device
->sas_address
);
4917 sas_target_priv_data
->handle
=
4918 MPT3SAS_INVALID_DEVICE_HANDLE
;
4920 mpt3sas_transport_port_remove(ioc
,
4921 sas_device
->sas_address
,
4922 sas_device
->sas_address_parent
);
4925 "removing handle(0x%04x), sas_addr(0x%016llx)\n",
4926 ioc
->name
, sas_device
->handle
,
4927 (unsigned long long) sas_device
->sas_address
);
4929 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
4930 "%s: exit: handle(0x%04x), sas_addr(0x%016llx)\n",
4931 ioc
->name
, __func__
,
4932 sas_device
->handle
, (unsigned long long)
4933 sas_device
->sas_address
));
4938 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
4940 * _scsih_sas_topology_change_event_debug - debug for topology event
4941 * @ioc: per adapter object
4942 * @event_data: event data payload
4946 _scsih_sas_topology_change_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
4947 Mpi2EventDataSasTopologyChangeList_t
*event_data
)
4953 char *status_str
= NULL
;
4954 u8 link_rate
, prev_link_rate
;
4956 switch (event_data
->ExpStatus
) {
4957 case MPI2_EVENT_SAS_TOPO_ES_ADDED
:
4960 case MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
:
4961 status_str
= "remove";
4963 case MPI2_EVENT_SAS_TOPO_ES_RESPONDING
:
4965 status_str
= "responding";
4967 case MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
:
4968 status_str
= "remove delay";
4971 status_str
= "unknown status";
4974 pr_info(MPT3SAS_FMT
"sas topology change: (%s)\n",
4975 ioc
->name
, status_str
);
4976 pr_info("\thandle(0x%04x), enclosure_handle(0x%04x) " \
4977 "start_phy(%02d), count(%d)\n",
4978 le16_to_cpu(event_data
->ExpanderDevHandle
),
4979 le16_to_cpu(event_data
->EnclosureHandle
),
4980 event_data
->StartPhyNum
, event_data
->NumEntries
);
4981 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
4982 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
4985 phy_number
= event_data
->StartPhyNum
+ i
;
4986 reason_code
= event_data
->PHY
[i
].PhyStatus
&
4987 MPI2_EVENT_SAS_TOPO_RC_MASK
;
4988 switch (reason_code
) {
4989 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED
:
4990 status_str
= "target add";
4992 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
:
4993 status_str
= "target remove";
4995 case MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING
:
4996 status_str
= "delay target remove";
4998 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED
:
4999 status_str
= "link rate change";
5001 case MPI2_EVENT_SAS_TOPO_RC_NO_CHANGE
:
5002 status_str
= "target responding";
5005 status_str
= "unknown";
5008 link_rate
= event_data
->PHY
[i
].LinkRate
>> 4;
5009 prev_link_rate
= event_data
->PHY
[i
].LinkRate
& 0xF;
5010 pr_info("\tphy(%02d), attached_handle(0x%04x): %s:" \
5011 " link rate: new(0x%02x), old(0x%02x)\n", phy_number
,
5012 handle
, status_str
, link_rate
, prev_link_rate
);
5019 * _scsih_sas_topology_change_event - handle topology changes
5020 * @ioc: per adapter object
5021 * @fw_event: The fw_event_work object
5026 _scsih_sas_topology_change_event(struct MPT3SAS_ADAPTER
*ioc
,
5027 struct fw_event_work
*fw_event
)
5030 u16 parent_handle
, handle
;
5032 u8 phy_number
, max_phys
;
5033 struct _sas_node
*sas_expander
;
5035 unsigned long flags
;
5036 u8 link_rate
, prev_link_rate
;
5037 Mpi2EventDataSasTopologyChangeList_t
*event_data
=
5038 (Mpi2EventDataSasTopologyChangeList_t
*)
5039 fw_event
->event_data
;
5041 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5042 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5043 _scsih_sas_topology_change_event_debug(ioc
, event_data
);
5046 if (ioc
->shost_recovery
|| ioc
->remove_host
|| ioc
->pci_error_recovery
)
5049 if (!ioc
->sas_hba
.num_phys
)
5050 _scsih_sas_host_add(ioc
);
5052 _scsih_sas_host_refresh(ioc
);
5054 if (fw_event
->ignore
) {
5055 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5056 "ignoring expander event\n", ioc
->name
));
5060 parent_handle
= le16_to_cpu(event_data
->ExpanderDevHandle
);
5062 /* handle expander add */
5063 if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_ADDED
)
5064 if (_scsih_expander_add(ioc
, parent_handle
) != 0)
5067 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
5068 sas_expander
= mpt3sas_scsih_expander_find_by_handle(ioc
,
5071 sas_address
= sas_expander
->sas_address
;
5072 max_phys
= sas_expander
->num_phys
;
5073 } else if (parent_handle
< ioc
->sas_hba
.num_phys
) {
5074 sas_address
= ioc
->sas_hba
.sas_address
;
5075 max_phys
= ioc
->sas_hba
.num_phys
;
5077 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
5080 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
5082 /* handle siblings events */
5083 for (i
= 0; i
< event_data
->NumEntries
; i
++) {
5084 if (fw_event
->ignore
) {
5085 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5086 "ignoring expander event\n", ioc
->name
));
5089 if (ioc
->remove_host
|| ioc
->pci_error_recovery
)
5091 phy_number
= event_data
->StartPhyNum
+ i
;
5092 if (phy_number
>= max_phys
)
5094 reason_code
= event_data
->PHY
[i
].PhyStatus
&
5095 MPI2_EVENT_SAS_TOPO_RC_MASK
;
5096 if ((event_data
->PHY
[i
].PhyStatus
&
5097 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT
) && (reason_code
!=
5098 MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
))
5100 handle
= le16_to_cpu(event_data
->PHY
[i
].AttachedDevHandle
);
5103 link_rate
= event_data
->PHY
[i
].LinkRate
>> 4;
5104 prev_link_rate
= event_data
->PHY
[i
].LinkRate
& 0xF;
5105 switch (reason_code
) {
5106 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED
:
5108 if (ioc
->shost_recovery
)
5111 if (link_rate
== prev_link_rate
)
5114 mpt3sas_transport_update_links(ioc
, sas_address
,
5115 handle
, phy_number
, link_rate
);
5117 if (link_rate
< MPI2_SAS_NEG_LINK_RATE_1_5
)
5120 _scsih_check_device(ioc
, sas_address
, handle
,
5121 phy_number
, link_rate
);
5124 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED
:
5126 if (ioc
->shost_recovery
)
5129 mpt3sas_transport_update_links(ioc
, sas_address
,
5130 handle
, phy_number
, link_rate
);
5132 _scsih_add_device(ioc
, handle
, phy_number
, 0);
5135 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING
:
5137 _scsih_device_remove_by_handle(ioc
, handle
);
5142 /* handle expander removal */
5143 if (event_data
->ExpStatus
== MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING
&&
5145 mpt3sas_expander_remove(ioc
, sas_address
);
5150 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5152 * _scsih_sas_device_status_change_event_debug - debug for device event
5153 * @event_data: event data payload
5159 _scsih_sas_device_status_change_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
5160 Mpi2EventDataSasDeviceStatusChange_t
*event_data
)
5162 char *reason_str
= NULL
;
5164 switch (event_data
->ReasonCode
) {
5165 case MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
:
5166 reason_str
= "smart data";
5168 case MPI2_EVENT_SAS_DEV_STAT_RC_UNSUPPORTED
:
5169 reason_str
= "unsupported device discovered";
5171 case MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
:
5172 reason_str
= "internal device reset";
5174 case MPI2_EVENT_SAS_DEV_STAT_RC_TASK_ABORT_INTERNAL
:
5175 reason_str
= "internal task abort";
5177 case MPI2_EVENT_SAS_DEV_STAT_RC_ABORT_TASK_SET_INTERNAL
:
5178 reason_str
= "internal task abort set";
5180 case MPI2_EVENT_SAS_DEV_STAT_RC_CLEAR_TASK_SET_INTERNAL
:
5181 reason_str
= "internal clear task set";
5183 case MPI2_EVENT_SAS_DEV_STAT_RC_QUERY_TASK_INTERNAL
:
5184 reason_str
= "internal query task";
5186 case MPI2_EVENT_SAS_DEV_STAT_RC_SATA_INIT_FAILURE
:
5187 reason_str
= "sata init failure";
5189 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET
:
5190 reason_str
= "internal device reset complete";
5192 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_TASK_ABORT_INTERNAL
:
5193 reason_str
= "internal task abort complete";
5195 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION
:
5196 reason_str
= "internal async notification";
5198 case MPI2_EVENT_SAS_DEV_STAT_RC_EXPANDER_REDUCED_FUNCTIONALITY
:
5199 reason_str
= "expander reduced functionality";
5201 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_EXPANDER_REDUCED_FUNCTIONALITY
:
5202 reason_str
= "expander reduced functionality complete";
5205 reason_str
= "unknown reason";
5208 pr_info(MPT3SAS_FMT
"device status change: (%s)\n"
5209 "\thandle(0x%04x), sas address(0x%016llx), tag(%d)",
5210 ioc
->name
, reason_str
, le16_to_cpu(event_data
->DevHandle
),
5211 (unsigned long long)le64_to_cpu(event_data
->SASAddress
),
5212 le16_to_cpu(event_data
->TaskTag
));
5213 if (event_data
->ReasonCode
== MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA
)
5214 pr_info(MPT3SAS_FMT
", ASC(0x%x), ASCQ(0x%x)\n", ioc
->name
,
5215 event_data
->ASC
, event_data
->ASCQ
);
5221 * _scsih_sas_device_status_change_event - handle device status change
5222 * @ioc: per adapter object
5223 * @fw_event: The fw_event_work object
5229 _scsih_sas_device_status_change_event(struct MPT3SAS_ADAPTER
*ioc
,
5230 struct fw_event_work
*fw_event
)
5232 struct MPT3SAS_TARGET
*target_priv_data
;
5233 struct _sas_device
*sas_device
;
5235 unsigned long flags
;
5236 Mpi2EventDataSasDeviceStatusChange_t
*event_data
=
5237 (Mpi2EventDataSasDeviceStatusChange_t
*)
5238 fw_event
->event_data
;
5240 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5241 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5242 _scsih_sas_device_status_change_event_debug(ioc
,
5246 /* In MPI Revision K (0xC), the internal device reset complete was
5247 * implemented, so avoid setting tm_busy flag for older firmware.
5249 if ((ioc
->facts
.HeaderVersion
>> 8) < 0xC)
5252 if (event_data
->ReasonCode
!=
5253 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
&&
5254 event_data
->ReasonCode
!=
5255 MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET
)
5258 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5259 sas_address
= le64_to_cpu(event_data
->SASAddress
);
5260 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
5263 if (!sas_device
|| !sas_device
->starget
) {
5264 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5268 target_priv_data
= sas_device
->starget
->hostdata
;
5269 if (!target_priv_data
) {
5270 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5274 if (event_data
->ReasonCode
==
5275 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET
)
5276 target_priv_data
->tm_busy
= 1;
5278 target_priv_data
->tm_busy
= 0;
5279 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5282 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5284 * _scsih_sas_enclosure_dev_status_change_event_debug - debug for enclosure
5286 * @ioc: per adapter object
5287 * @event_data: event data payload
5293 _scsih_sas_enclosure_dev_status_change_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
5294 Mpi2EventDataSasEnclDevStatusChange_t
*event_data
)
5296 char *reason_str
= NULL
;
5298 switch (event_data
->ReasonCode
) {
5299 case MPI2_EVENT_SAS_ENCL_RC_ADDED
:
5300 reason_str
= "enclosure add";
5302 case MPI2_EVENT_SAS_ENCL_RC_NOT_RESPONDING
:
5303 reason_str
= "enclosure remove";
5306 reason_str
= "unknown reason";
5310 pr_info(MPT3SAS_FMT
"enclosure status change: (%s)\n"
5311 "\thandle(0x%04x), enclosure logical id(0x%016llx)"
5312 " number slots(%d)\n", ioc
->name
, reason_str
,
5313 le16_to_cpu(event_data
->EnclosureHandle
),
5314 (unsigned long long)le64_to_cpu(event_data
->EnclosureLogicalID
),
5315 le16_to_cpu(event_data
->StartSlot
));
5320 * _scsih_sas_enclosure_dev_status_change_event - handle enclosure events
5321 * @ioc: per adapter object
5322 * @fw_event: The fw_event_work object
5328 _scsih_sas_enclosure_dev_status_change_event(struct MPT3SAS_ADAPTER
*ioc
,
5329 struct fw_event_work
*fw_event
)
5331 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5332 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
5333 _scsih_sas_enclosure_dev_status_change_event_debug(ioc
,
5334 (Mpi2EventDataSasEnclDevStatusChange_t
*)
5335 fw_event
->event_data
);
5340 * _scsih_sas_broadcast_primitive_event - handle broadcast events
5341 * @ioc: per adapter object
5342 * @fw_event: The fw_event_work object
5348 _scsih_sas_broadcast_primitive_event(struct MPT3SAS_ADAPTER
*ioc
,
5349 struct fw_event_work
*fw_event
)
5351 struct scsi_cmnd
*scmd
;
5352 struct scsi_device
*sdev
;
5355 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
5356 u32 termination_count
;
5358 Mpi2SCSITaskManagementReply_t
*mpi_reply
;
5359 Mpi2EventDataSasBroadcastPrimitive_t
*event_data
=
5360 (Mpi2EventDataSasBroadcastPrimitive_t
*)
5361 fw_event
->event_data
;
5363 unsigned long flags
;
5366 u8 task_abort_retries
;
5368 mutex_lock(&ioc
->tm_cmds
.mutex
);
5370 "%s: enter: phy number(%d), width(%d)\n",
5371 ioc
->name
, __func__
, event_data
->PhyNum
,
5372 event_data
->PortWidth
);
5374 _scsih_block_io_all_device(ioc
);
5376 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5377 mpi_reply
= ioc
->tm_cmds
.reply
;
5378 broadcast_aen_retry
:
5380 /* sanity checks for retrying this loop */
5381 if (max_retries
++ == 5) {
5382 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
"%s: giving up\n",
5383 ioc
->name
, __func__
));
5385 } else if (max_retries
> 1)
5386 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
"%s: %d retry\n",
5387 ioc
->name
, __func__
, max_retries
- 1));
5389 termination_count
= 0;
5391 for (smid
= 1; smid
<= ioc
->scsiio_depth
; smid
++) {
5392 if (ioc
->shost_recovery
)
5394 scmd
= _scsih_scsi_lookup_get(ioc
, smid
);
5397 sdev
= scmd
->device
;
5398 sas_device_priv_data
= sdev
->hostdata
;
5399 if (!sas_device_priv_data
|| !sas_device_priv_data
->sas_target
)
5401 /* skip hidden raid components */
5402 if (sas_device_priv_data
->sas_target
->flags
&
5403 MPT_TARGET_FLAGS_RAID_COMPONENT
)
5406 if (sas_device_priv_data
->sas_target
->flags
&
5407 MPT_TARGET_FLAGS_VOLUME
)
5410 handle
= sas_device_priv_data
->sas_target
->handle
;
5411 lun
= sas_device_priv_data
->lun
;
5414 if (ioc
->shost_recovery
)
5417 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
5418 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, 0, 0, lun
,
5419 MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK
, smid
, 30,
5422 sdev_printk(KERN_WARNING
, sdev
,
5423 "mpt3sas_scsih_issue_tm: FAILED when sending "
5424 "QUERY_TASK: scmd(%p)\n", scmd
);
5425 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5426 goto broadcast_aen_retry
;
5428 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
)
5429 & MPI2_IOCSTATUS_MASK
;
5430 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
5431 sdev_printk(KERN_WARNING
, sdev
,
5432 "query task: FAILED with IOCSTATUS(0x%04x), scmd(%p)\n",
5434 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5435 goto broadcast_aen_retry
;
5438 /* see if IO is still owned by IOC and target */
5439 if (mpi_reply
->ResponseCode
==
5440 MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED
||
5441 mpi_reply
->ResponseCode
==
5442 MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC
) {
5443 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5446 task_abort_retries
= 0;
5448 if (task_abort_retries
++ == 60) {
5449 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5450 "%s: ABORT_TASK: giving up\n", ioc
->name
,
5452 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5453 goto broadcast_aen_retry
;
5456 if (ioc
->shost_recovery
)
5459 r
= mpt3sas_scsih_issue_tm(ioc
, handle
, sdev
->channel
, sdev
->id
,
5460 sdev
->lun
, MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK
, smid
, 30,
5463 sdev_printk(KERN_WARNING
, sdev
,
5464 "mpt3sas_scsih_issue_tm: ABORT_TASK: FAILED : "
5465 "scmd(%p)\n", scmd
);
5469 if (task_abort_retries
> 1)
5470 sdev_printk(KERN_WARNING
, sdev
,
5471 "mpt3sas_scsih_issue_tm: ABORT_TASK: RETRIES (%d):"
5473 task_abort_retries
- 1, scmd
);
5475 termination_count
+= le32_to_cpu(mpi_reply
->TerminationCount
);
5476 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
5479 if (ioc
->broadcast_aen_pending
) {
5480 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5481 "%s: loop back due to pending AEN\n",
5482 ioc
->name
, __func__
));
5483 ioc
->broadcast_aen_pending
= 0;
5484 goto broadcast_aen_retry
;
5488 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
5491 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5492 "%s - exit, query_count = %d termination_count = %d\n",
5493 ioc
->name
, __func__
, query_count
, termination_count
));
5495 ioc
->broadcast_aen_busy
= 0;
5496 if (!ioc
->shost_recovery
)
5497 _scsih_ublock_io_all_device(ioc
);
5498 mutex_unlock(&ioc
->tm_cmds
.mutex
);
5502 * _scsih_sas_discovery_event - handle discovery events
5503 * @ioc: per adapter object
5504 * @fw_event: The fw_event_work object
5510 _scsih_sas_discovery_event(struct MPT3SAS_ADAPTER
*ioc
,
5511 struct fw_event_work
*fw_event
)
5513 Mpi2EventDataSasDiscovery_t
*event_data
=
5514 (Mpi2EventDataSasDiscovery_t
*) fw_event
->event_data
;
5516 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5517 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
) {
5518 pr_info(MPT3SAS_FMT
"discovery event: (%s)", ioc
->name
,
5519 (event_data
->ReasonCode
== MPI2_EVENT_SAS_DISC_RC_STARTED
) ?
5521 if (event_data
->DiscoveryStatus
)
5522 pr_info("discovery_status(0x%08x)",
5523 le32_to_cpu(event_data
->DiscoveryStatus
));
5528 if (event_data
->ReasonCode
== MPI2_EVENT_SAS_DISC_RC_STARTED
&&
5529 !ioc
->sas_hba
.num_phys
) {
5530 if (disable_discovery
> 0 && ioc
->shost_recovery
) {
5531 /* Wait for the reset to complete */
5532 while (ioc
->shost_recovery
)
5535 _scsih_sas_host_add(ioc
);
5540 * _scsih_ir_fastpath - turn on fastpath for IR physdisk
5541 * @ioc: per adapter object
5542 * @handle: device handle for physical disk
5543 * @phys_disk_num: physical disk number
5545 * Return 0 for success, else failure.
5548 _scsih_ir_fastpath(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
, u8 phys_disk_num
)
5550 Mpi2RaidActionRequest_t
*mpi_request
;
5551 Mpi2RaidActionReply_t
*mpi_reply
;
5559 mutex_lock(&ioc
->scsih_cmds
.mutex
);
5561 if (ioc
->scsih_cmds
.status
!= MPT3_CMD_NOT_USED
) {
5562 pr_err(MPT3SAS_FMT
"%s: scsih_cmd in use\n",
5563 ioc
->name
, __func__
);
5567 ioc
->scsih_cmds
.status
= MPT3_CMD_PENDING
;
5569 smid
= mpt3sas_base_get_smid(ioc
, ioc
->scsih_cb_idx
);
5571 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
5572 ioc
->name
, __func__
);
5573 ioc
->scsih_cmds
.status
= MPT3_CMD_NOT_USED
;
5578 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
5579 ioc
->scsih_cmds
.smid
= smid
;
5580 memset(mpi_request
, 0, sizeof(Mpi2RaidActionRequest_t
));
5582 mpi_request
->Function
= MPI2_FUNCTION_RAID_ACTION
;
5583 mpi_request
->Action
= MPI2_RAID_ACTION_PHYSDISK_HIDDEN
;
5584 mpi_request
->PhysDiskNum
= phys_disk_num
;
5586 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
"IR RAID_ACTION: turning fast "\
5587 "path on for handle(0x%04x), phys_disk_num (0x%02x)\n", ioc
->name
,
5588 handle
, phys_disk_num
));
5590 init_completion(&ioc
->scsih_cmds
.done
);
5591 mpt3sas_base_put_smid_default(ioc
, smid
);
5592 wait_for_completion_timeout(&ioc
->scsih_cmds
.done
, 10*HZ
);
5594 if (!(ioc
->scsih_cmds
.status
& MPT3_CMD_COMPLETE
)) {
5595 pr_err(MPT3SAS_FMT
"%s: timeout\n",
5596 ioc
->name
, __func__
);
5597 if (!(ioc
->scsih_cmds
.status
& MPT3_CMD_RESET
))
5603 if (ioc
->scsih_cmds
.status
& MPT3_CMD_REPLY_VALID
) {
5605 mpi_reply
= ioc
->scsih_cmds
.reply
;
5606 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
);
5607 if (ioc_status
& MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE
)
5608 log_info
= le32_to_cpu(mpi_reply
->IOCLogInfo
);
5611 ioc_status
&= MPI2_IOCSTATUS_MASK
;
5612 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
5613 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5614 "IR RAID_ACTION: failed: ioc_status(0x%04x), "
5615 "loginfo(0x%08x)!!!\n", ioc
->name
, ioc_status
,
5619 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
5620 "IR RAID_ACTION: completed successfully\n",
5625 ioc
->scsih_cmds
.status
= MPT3_CMD_NOT_USED
;
5626 mutex_unlock(&ioc
->scsih_cmds
.mutex
);
5629 mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
5635 * _scsih_reprobe_lun - reprobing lun
5636 * @sdev: scsi device struct
5637 * @no_uld_attach: sdev->no_uld_attach flag setting
5641 _scsih_reprobe_lun(struct scsi_device
*sdev
, void *no_uld_attach
)
5644 sdev
->no_uld_attach
= no_uld_attach
? 1 : 0;
5645 sdev_printk(KERN_INFO
, sdev
, "%s raid component\n",
5646 sdev
->no_uld_attach
? "hidding" : "exposing");
5647 rc
= scsi_device_reprobe(sdev
);
5651 * _scsih_sas_volume_add - add new volume
5652 * @ioc: per adapter object
5653 * @element: IR config element data
5659 _scsih_sas_volume_add(struct MPT3SAS_ADAPTER
*ioc
,
5660 Mpi2EventIrConfigElement_t
*element
)
5662 struct _raid_device
*raid_device
;
5663 unsigned long flags
;
5665 u16 handle
= le16_to_cpu(element
->VolDevHandle
);
5668 mpt3sas_config_get_volume_wwid(ioc
, handle
, &wwid
);
5671 "failure at %s:%d/%s()!\n", ioc
->name
,
5672 __FILE__
, __LINE__
, __func__
);
5676 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
5677 raid_device
= _scsih_raid_device_find_by_wwid(ioc
, wwid
);
5678 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
5683 raid_device
= kzalloc(sizeof(struct _raid_device
), GFP_KERNEL
);
5686 "failure at %s:%d/%s()!\n", ioc
->name
,
5687 __FILE__
, __LINE__
, __func__
);
5691 raid_device
->id
= ioc
->sas_id
++;
5692 raid_device
->channel
= RAID_CHANNEL
;
5693 raid_device
->handle
= handle
;
5694 raid_device
->wwid
= wwid
;
5695 _scsih_raid_device_add(ioc
, raid_device
);
5696 if (!ioc
->wait_for_discovery_to_complete
) {
5697 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
5698 raid_device
->id
, 0);
5700 _scsih_raid_device_remove(ioc
, raid_device
);
5702 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
5703 _scsih_determine_boot_device(ioc
, raid_device
, 1);
5704 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
5709 * _scsih_sas_volume_delete - delete volume
5710 * @ioc: per adapter object
5711 * @handle: volume device handle
5717 _scsih_sas_volume_delete(struct MPT3SAS_ADAPTER
*ioc
, u16 handle
)
5719 struct _raid_device
*raid_device
;
5720 unsigned long flags
;
5721 struct MPT3SAS_TARGET
*sas_target_priv_data
;
5722 struct scsi_target
*starget
= NULL
;
5724 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
5725 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
5727 if (raid_device
->starget
) {
5728 starget
= raid_device
->starget
;
5729 sas_target_priv_data
= starget
->hostdata
;
5730 sas_target_priv_data
->deleted
= 1;
5732 pr_info(MPT3SAS_FMT
"removing handle(0x%04x), wwid(0x%016llx)\n",
5733 ioc
->name
, raid_device
->handle
,
5734 (unsigned long long) raid_device
->wwid
);
5735 list_del(&raid_device
->list
);
5738 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
5740 scsi_remove_target(&starget
->dev
);
5744 * _scsih_sas_pd_expose - expose pd component to /dev/sdX
5745 * @ioc: per adapter object
5746 * @element: IR config element data
5752 _scsih_sas_pd_expose(struct MPT3SAS_ADAPTER
*ioc
,
5753 Mpi2EventIrConfigElement_t
*element
)
5755 struct _sas_device
*sas_device
;
5756 struct scsi_target
*starget
= NULL
;
5757 struct MPT3SAS_TARGET
*sas_target_priv_data
;
5758 unsigned long flags
;
5759 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
5761 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5762 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
5764 sas_device
->volume_handle
= 0;
5765 sas_device
->volume_wwid
= 0;
5766 clear_bit(handle
, ioc
->pd_handles
);
5767 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
5768 starget
= sas_device
->starget
;
5769 sas_target_priv_data
= starget
->hostdata
;
5770 sas_target_priv_data
->flags
&=
5771 ~MPT_TARGET_FLAGS_RAID_COMPONENT
;
5774 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5778 /* exposing raid component */
5780 starget_for_each_device(starget
, NULL
, _scsih_reprobe_lun
);
5784 * _scsih_sas_pd_hide - hide pd component from /dev/sdX
5785 * @ioc: per adapter object
5786 * @element: IR config element data
5792 _scsih_sas_pd_hide(struct MPT3SAS_ADAPTER
*ioc
,
5793 Mpi2EventIrConfigElement_t
*element
)
5795 struct _sas_device
*sas_device
;
5796 struct scsi_target
*starget
= NULL
;
5797 struct MPT3SAS_TARGET
*sas_target_priv_data
;
5798 unsigned long flags
;
5799 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
5800 u16 volume_handle
= 0;
5801 u64 volume_wwid
= 0;
5803 mpt3sas_config_get_volume_handle(ioc
, handle
, &volume_handle
);
5805 mpt3sas_config_get_volume_wwid(ioc
, volume_handle
,
5808 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5809 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
5811 set_bit(handle
, ioc
->pd_handles
);
5812 if (sas_device
->starget
&& sas_device
->starget
->hostdata
) {
5813 starget
= sas_device
->starget
;
5814 sas_target_priv_data
= starget
->hostdata
;
5815 sas_target_priv_data
->flags
|=
5816 MPT_TARGET_FLAGS_RAID_COMPONENT
;
5817 sas_device
->volume_handle
= volume_handle
;
5818 sas_device
->volume_wwid
= volume_wwid
;
5821 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5825 /* hiding raid component */
5826 _scsih_ir_fastpath(ioc
, handle
, element
->PhysDiskNum
);
5828 starget_for_each_device(starget
, (void *)1, _scsih_reprobe_lun
);
5832 * _scsih_sas_pd_delete - delete pd component
5833 * @ioc: per adapter object
5834 * @element: IR config element data
5840 _scsih_sas_pd_delete(struct MPT3SAS_ADAPTER
*ioc
,
5841 Mpi2EventIrConfigElement_t
*element
)
5843 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
5845 _scsih_device_remove_by_handle(ioc
, handle
);
5849 * _scsih_sas_pd_add - remove pd component
5850 * @ioc: per adapter object
5851 * @element: IR config element data
5857 _scsih_sas_pd_add(struct MPT3SAS_ADAPTER
*ioc
,
5858 Mpi2EventIrConfigElement_t
*element
)
5860 struct _sas_device
*sas_device
;
5861 unsigned long flags
;
5862 u16 handle
= le16_to_cpu(element
->PhysDiskDevHandle
);
5863 Mpi2ConfigReply_t mpi_reply
;
5864 Mpi2SasDevicePage0_t sas_device_pg0
;
5869 set_bit(handle
, ioc
->pd_handles
);
5871 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
5872 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
5873 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
5875 _scsih_ir_fastpath(ioc
, handle
, element
->PhysDiskNum
);
5879 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
, &sas_device_pg0
,
5880 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
, handle
))) {
5881 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
5882 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5886 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
5887 MPI2_IOCSTATUS_MASK
;
5888 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
5889 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
5890 ioc
->name
, __FILE__
, __LINE__
, __func__
);
5894 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
5895 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
))
5896 mpt3sas_transport_update_links(ioc
, sas_address
, handle
,
5897 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
5899 _scsih_ir_fastpath(ioc
, handle
, element
->PhysDiskNum
);
5900 _scsih_add_device(ioc
, handle
, 0, 1);
5903 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
5905 * _scsih_sas_ir_config_change_event_debug - debug for IR Config Change events
5906 * @ioc: per adapter object
5907 * @event_data: event data payload
5913 _scsih_sas_ir_config_change_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
5914 Mpi2EventDataIrConfigChangeList_t
*event_data
)
5916 Mpi2EventIrConfigElement_t
*element
;
5919 char *reason_str
= NULL
, *element_str
= NULL
;
5921 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
5923 pr_info(MPT3SAS_FMT
"raid config change: (%s), elements(%d)\n",
5924 ioc
->name
, (le32_to_cpu(event_data
->Flags
) &
5925 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
) ?
5926 "foreign" : "native", event_data
->NumElements
);
5927 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
5928 switch (element
->ReasonCode
) {
5929 case MPI2_EVENT_IR_CHANGE_RC_ADDED
:
5932 case MPI2_EVENT_IR_CHANGE_RC_REMOVED
:
5933 reason_str
= "remove";
5935 case MPI2_EVENT_IR_CHANGE_RC_NO_CHANGE
:
5936 reason_str
= "no change";
5938 case MPI2_EVENT_IR_CHANGE_RC_HIDE
:
5939 reason_str
= "hide";
5941 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE
:
5942 reason_str
= "unhide";
5944 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED
:
5945 reason_str
= "volume_created";
5947 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
:
5948 reason_str
= "volume_deleted";
5950 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED
:
5951 reason_str
= "pd_created";
5953 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED
:
5954 reason_str
= "pd_deleted";
5957 reason_str
= "unknown reason";
5960 element_type
= le16_to_cpu(element
->ElementFlags
) &
5961 MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK
;
5962 switch (element_type
) {
5963 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLUME_ELEMENT
:
5964 element_str
= "volume";
5966 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLPHYSDISK_ELEMENT
:
5967 element_str
= "phys disk";
5969 case MPI2_EVENT_IR_CHANGE_EFLAGS_HOTSPARE_ELEMENT
:
5970 element_str
= "hot spare";
5973 element_str
= "unknown element";
5976 pr_info("\t(%s:%s), vol handle(0x%04x), " \
5977 "pd handle(0x%04x), pd num(0x%02x)\n", element_str
,
5978 reason_str
, le16_to_cpu(element
->VolDevHandle
),
5979 le16_to_cpu(element
->PhysDiskDevHandle
),
5980 element
->PhysDiskNum
);
5986 * _scsih_sas_ir_config_change_event - handle ir configuration change events
5987 * @ioc: per adapter object
5988 * @fw_event: The fw_event_work object
5994 _scsih_sas_ir_config_change_event(struct MPT3SAS_ADAPTER
*ioc
,
5995 struct fw_event_work
*fw_event
)
5997 Mpi2EventIrConfigElement_t
*element
;
6000 Mpi2EventDataIrConfigChangeList_t
*event_data
=
6001 (Mpi2EventDataIrConfigChangeList_t
*)
6002 fw_event
->event_data
;
6004 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
6005 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
6006 _scsih_sas_ir_config_change_event_debug(ioc
, event_data
);
6010 foreign_config
= (le32_to_cpu(event_data
->Flags
) &
6011 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG
) ? 1 : 0;
6013 element
= (Mpi2EventIrConfigElement_t
*)&event_data
->ConfigElement
[0];
6014 if (ioc
->shost_recovery
) {
6016 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
6017 if (element
->ReasonCode
== MPI2_EVENT_IR_CHANGE_RC_HIDE
)
6018 _scsih_ir_fastpath(ioc
,
6019 le16_to_cpu(element
->PhysDiskDevHandle
),
6020 element
->PhysDiskNum
);
6024 for (i
= 0; i
< event_data
->NumElements
; i
++, element
++) {
6026 switch (element
->ReasonCode
) {
6027 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED
:
6028 case MPI2_EVENT_IR_CHANGE_RC_ADDED
:
6029 if (!foreign_config
)
6030 _scsih_sas_volume_add(ioc
, element
);
6032 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED
:
6033 case MPI2_EVENT_IR_CHANGE_RC_REMOVED
:
6034 if (!foreign_config
)
6035 _scsih_sas_volume_delete(ioc
,
6036 le16_to_cpu(element
->VolDevHandle
));
6038 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED
:
6039 _scsih_sas_pd_hide(ioc
, element
);
6041 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED
:
6042 _scsih_sas_pd_expose(ioc
, element
);
6044 case MPI2_EVENT_IR_CHANGE_RC_HIDE
:
6045 _scsih_sas_pd_add(ioc
, element
);
6047 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE
:
6048 _scsih_sas_pd_delete(ioc
, element
);
6055 * _scsih_sas_ir_volume_event - IR volume event
6056 * @ioc: per adapter object
6057 * @fw_event: The fw_event_work object
6063 _scsih_sas_ir_volume_event(struct MPT3SAS_ADAPTER
*ioc
,
6064 struct fw_event_work
*fw_event
)
6067 unsigned long flags
;
6068 struct _raid_device
*raid_device
;
6072 Mpi2EventDataIrVolume_t
*event_data
=
6073 (Mpi2EventDataIrVolume_t
*) fw_event
->event_data
;
6075 if (ioc
->shost_recovery
)
6078 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED
)
6081 handle
= le16_to_cpu(event_data
->VolDevHandle
);
6082 state
= le32_to_cpu(event_data
->NewValue
);
6083 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
6084 "%s: handle(0x%04x), old(0x%08x), new(0x%08x)\n",
6085 ioc
->name
, __func__
, handle
,
6086 le32_to_cpu(event_data
->PreviousValue
), state
));
6088 case MPI2_RAID_VOL_STATE_MISSING
:
6089 case MPI2_RAID_VOL_STATE_FAILED
:
6090 _scsih_sas_volume_delete(ioc
, handle
);
6093 case MPI2_RAID_VOL_STATE_ONLINE
:
6094 case MPI2_RAID_VOL_STATE_DEGRADED
:
6095 case MPI2_RAID_VOL_STATE_OPTIMAL
:
6097 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6098 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
6099 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6104 mpt3sas_config_get_volume_wwid(ioc
, handle
, &wwid
);
6107 "failure at %s:%d/%s()!\n", ioc
->name
,
6108 __FILE__
, __LINE__
, __func__
);
6112 raid_device
= kzalloc(sizeof(struct _raid_device
), GFP_KERNEL
);
6115 "failure at %s:%d/%s()!\n", ioc
->name
,
6116 __FILE__
, __LINE__
, __func__
);
6120 raid_device
->id
= ioc
->sas_id
++;
6121 raid_device
->channel
= RAID_CHANNEL
;
6122 raid_device
->handle
= handle
;
6123 raid_device
->wwid
= wwid
;
6124 _scsih_raid_device_add(ioc
, raid_device
);
6125 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
6126 raid_device
->id
, 0);
6128 _scsih_raid_device_remove(ioc
, raid_device
);
6131 case MPI2_RAID_VOL_STATE_INITIALIZING
:
6138 * _scsih_sas_ir_physical_disk_event - PD event
6139 * @ioc: per adapter object
6140 * @fw_event: The fw_event_work object
6146 _scsih_sas_ir_physical_disk_event(struct MPT3SAS_ADAPTER
*ioc
,
6147 struct fw_event_work
*fw_event
)
6149 u16 handle
, parent_handle
;
6151 struct _sas_device
*sas_device
;
6152 unsigned long flags
;
6153 Mpi2ConfigReply_t mpi_reply
;
6154 Mpi2SasDevicePage0_t sas_device_pg0
;
6156 Mpi2EventDataIrPhysicalDisk_t
*event_data
=
6157 (Mpi2EventDataIrPhysicalDisk_t
*) fw_event
->event_data
;
6160 if (ioc
->shost_recovery
)
6163 if (event_data
->ReasonCode
!= MPI2_EVENT_IR_PHYSDISK_RC_STATE_CHANGED
)
6166 handle
= le16_to_cpu(event_data
->PhysDiskDevHandle
);
6167 state
= le32_to_cpu(event_data
->NewValue
);
6169 dewtprintk(ioc
, pr_info(MPT3SAS_FMT
6170 "%s: handle(0x%04x), old(0x%08x), new(0x%08x)\n",
6171 ioc
->name
, __func__
, handle
,
6172 le32_to_cpu(event_data
->PreviousValue
), state
));
6174 case MPI2_RAID_PD_STATE_ONLINE
:
6175 case MPI2_RAID_PD_STATE_DEGRADED
:
6176 case MPI2_RAID_PD_STATE_REBUILDING
:
6177 case MPI2_RAID_PD_STATE_OPTIMAL
:
6178 case MPI2_RAID_PD_STATE_HOT_SPARE
:
6180 set_bit(handle
, ioc
->pd_handles
);
6181 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6182 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
6183 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6188 if ((mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6189 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
6191 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
6192 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6196 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6197 MPI2_IOCSTATUS_MASK
;
6198 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6199 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
6200 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6204 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
6205 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
))
6206 mpt3sas_transport_update_links(ioc
, sas_address
, handle
,
6207 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
6209 _scsih_add_device(ioc
, handle
, 0, 1);
6213 case MPI2_RAID_PD_STATE_OFFLINE
:
6214 case MPI2_RAID_PD_STATE_NOT_CONFIGURED
:
6215 case MPI2_RAID_PD_STATE_NOT_COMPATIBLE
:
6221 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
6223 * _scsih_sas_ir_operation_status_event_debug - debug for IR op event
6224 * @ioc: per adapter object
6225 * @event_data: event data payload
6231 _scsih_sas_ir_operation_status_event_debug(struct MPT3SAS_ADAPTER
*ioc
,
6232 Mpi2EventDataIrOperationStatus_t
*event_data
)
6234 char *reason_str
= NULL
;
6236 switch (event_data
->RAIDOperation
) {
6237 case MPI2_EVENT_IR_RAIDOP_RESYNC
:
6238 reason_str
= "resync";
6240 case MPI2_EVENT_IR_RAIDOP_ONLINE_CAP_EXPANSION
:
6241 reason_str
= "online capacity expansion";
6243 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK
:
6244 reason_str
= "consistency check";
6246 case MPI2_EVENT_IR_RAIDOP_BACKGROUND_INIT
:
6247 reason_str
= "background init";
6249 case MPI2_EVENT_IR_RAIDOP_MAKE_DATA_CONSISTENT
:
6250 reason_str
= "make data consistent";
6257 pr_info(MPT3SAS_FMT
"raid operational status: (%s)" \
6258 "\thandle(0x%04x), percent complete(%d)\n",
6259 ioc
->name
, reason_str
,
6260 le16_to_cpu(event_data
->VolDevHandle
),
6261 event_data
->PercentComplete
);
6266 * _scsih_sas_ir_operation_status_event - handle RAID operation events
6267 * @ioc: per adapter object
6268 * @fw_event: The fw_event_work object
6274 _scsih_sas_ir_operation_status_event(struct MPT3SAS_ADAPTER
*ioc
,
6275 struct fw_event_work
*fw_event
)
6277 Mpi2EventDataIrOperationStatus_t
*event_data
=
6278 (Mpi2EventDataIrOperationStatus_t
*)
6279 fw_event
->event_data
;
6280 static struct _raid_device
*raid_device
;
6281 unsigned long flags
;
6284 #ifdef CONFIG_SCSI_MPT3SAS_LOGGING
6285 if (ioc
->logging_level
& MPT_DEBUG_EVENT_WORK_TASK
)
6286 _scsih_sas_ir_operation_status_event_debug(ioc
,
6290 /* code added for raid transport support */
6291 if (event_data
->RAIDOperation
== MPI2_EVENT_IR_RAIDOP_RESYNC
) {
6293 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6294 handle
= le16_to_cpu(event_data
->VolDevHandle
);
6295 raid_device
= _scsih_raid_device_find_by_handle(ioc
, handle
);
6297 raid_device
->percent_complete
=
6298 event_data
->PercentComplete
;
6299 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6304 * _scsih_prep_device_scan - initialize parameters prior to device scan
6305 * @ioc: per adapter object
6307 * Set the deleted flag prior to device scan. If the device is found during
6308 * the scan, then we clear the deleted flag.
6311 _scsih_prep_device_scan(struct MPT3SAS_ADAPTER
*ioc
)
6313 struct MPT3SAS_DEVICE
*sas_device_priv_data
;
6314 struct scsi_device
*sdev
;
6316 shost_for_each_device(sdev
, ioc
->shost
) {
6317 sas_device_priv_data
= sdev
->hostdata
;
6318 if (sas_device_priv_data
&& sas_device_priv_data
->sas_target
)
6319 sas_device_priv_data
->sas_target
->deleted
= 1;
6324 * _scsih_mark_responding_sas_device - mark a sas_devices as responding
6325 * @ioc: per adapter object
6326 * @sas_address: sas address
6327 * @slot: enclosure slot id
6328 * @handle: device handle
6330 * After host reset, find out whether devices are still responding.
6331 * Used in _scsih_remove_unresponsive_sas_devices.
6336 _scsih_mark_responding_sas_device(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
,
6337 u16 slot
, u16 handle
)
6339 struct MPT3SAS_TARGET
*sas_target_priv_data
= NULL
;
6340 struct scsi_target
*starget
;
6341 struct _sas_device
*sas_device
;
6342 unsigned long flags
;
6344 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6345 list_for_each_entry(sas_device
, &ioc
->sas_device_list
, list
) {
6346 if (sas_device
->sas_address
== sas_address
&&
6347 sas_device
->slot
== slot
) {
6348 sas_device
->responding
= 1;
6349 starget
= sas_device
->starget
;
6350 if (starget
&& starget
->hostdata
) {
6351 sas_target_priv_data
= starget
->hostdata
;
6352 sas_target_priv_data
->tm_busy
= 0;
6353 sas_target_priv_data
->deleted
= 0;
6355 sas_target_priv_data
= NULL
;
6357 starget_printk(KERN_INFO
, starget
,
6358 "handle(0x%04x), sas_addr(0x%016llx), "
6359 "enclosure logical id(0x%016llx), "
6360 "slot(%d)\n", handle
,
6361 (unsigned long long)sas_device
->sas_address
,
6362 (unsigned long long)
6363 sas_device
->enclosure_logical_id
,
6365 if (sas_device
->handle
== handle
)
6367 pr_info("\thandle changed from(0x%04x)!!!\n",
6368 sas_device
->handle
);
6369 sas_device
->handle
= handle
;
6370 if (sas_target_priv_data
)
6371 sas_target_priv_data
->handle
= handle
;
6376 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6380 * _scsih_search_responding_sas_devices -
6381 * @ioc: per adapter object
6383 * After host reset, find out whether devices are still responding.
6389 _scsih_search_responding_sas_devices(struct MPT3SAS_ADAPTER
*ioc
)
6391 Mpi2SasDevicePage0_t sas_device_pg0
;
6392 Mpi2ConfigReply_t mpi_reply
;
6397 pr_info(MPT3SAS_FMT
"search for end-devices: start\n", ioc
->name
);
6399 if (list_empty(&ioc
->sas_device_list
))
6403 while (!(mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6404 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE
,
6406 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6407 MPI2_IOCSTATUS_MASK
;
6408 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
6410 handle
= le16_to_cpu(sas_device_pg0
.DevHandle
);
6411 device_info
= le32_to_cpu(sas_device_pg0
.DeviceInfo
);
6412 if (!(_scsih_is_end_device(device_info
)))
6414 _scsih_mark_responding_sas_device(ioc
,
6415 le64_to_cpu(sas_device_pg0
.SASAddress
),
6416 le16_to_cpu(sas_device_pg0
.Slot
), handle
);
6420 pr_info(MPT3SAS_FMT
"search for end-devices: complete\n",
6425 * _scsih_mark_responding_raid_device - mark a raid_device as responding
6426 * @ioc: per adapter object
6427 * @wwid: world wide identifier for raid volume
6428 * @handle: device handle
6430 * After host reset, find out whether devices are still responding.
6431 * Used in _scsih_remove_unresponsive_raid_devices.
6436 _scsih_mark_responding_raid_device(struct MPT3SAS_ADAPTER
*ioc
, u64 wwid
,
6439 struct MPT3SAS_TARGET
*sas_target_priv_data
;
6440 struct scsi_target
*starget
;
6441 struct _raid_device
*raid_device
;
6442 unsigned long flags
;
6444 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6445 list_for_each_entry(raid_device
, &ioc
->raid_device_list
, list
) {
6446 if (raid_device
->wwid
== wwid
&& raid_device
->starget
) {
6447 starget
= raid_device
->starget
;
6448 if (starget
&& starget
->hostdata
) {
6449 sas_target_priv_data
= starget
->hostdata
;
6450 sas_target_priv_data
->deleted
= 0;
6452 sas_target_priv_data
= NULL
;
6453 raid_device
->responding
= 1;
6454 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6455 starget_printk(KERN_INFO
, raid_device
->starget
,
6456 "handle(0x%04x), wwid(0x%016llx)\n", handle
,
6457 (unsigned long long)raid_device
->wwid
);
6458 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6459 if (raid_device
->handle
== handle
) {
6460 spin_unlock_irqrestore(&ioc
->raid_device_lock
,
6464 pr_info("\thandle changed from(0x%04x)!!!\n",
6465 raid_device
->handle
);
6466 raid_device
->handle
= handle
;
6467 if (sas_target_priv_data
)
6468 sas_target_priv_data
->handle
= handle
;
6469 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6473 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6477 * _scsih_search_responding_raid_devices -
6478 * @ioc: per adapter object
6480 * After host reset, find out whether devices are still responding.
6486 _scsih_search_responding_raid_devices(struct MPT3SAS_ADAPTER
*ioc
)
6488 Mpi2RaidVolPage1_t volume_pg1
;
6489 Mpi2RaidVolPage0_t volume_pg0
;
6490 Mpi2RaidPhysDiskPage0_t pd_pg0
;
6491 Mpi2ConfigReply_t mpi_reply
;
6496 if (!ioc
->ir_firmware
)
6499 pr_info(MPT3SAS_FMT
"search for raid volumes: start\n",
6502 if (list_empty(&ioc
->raid_device_list
))
6506 while (!(mpt3sas_config_get_raid_volume_pg1(ioc
, &mpi_reply
,
6507 &volume_pg1
, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE
, handle
))) {
6508 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6509 MPI2_IOCSTATUS_MASK
;
6510 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
6512 handle
= le16_to_cpu(volume_pg1
.DevHandle
);
6514 if (mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
,
6515 &volume_pg0
, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
6516 sizeof(Mpi2RaidVolPage0_t
)))
6519 if (volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_OPTIMAL
||
6520 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_ONLINE
||
6521 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_DEGRADED
)
6522 _scsih_mark_responding_raid_device(ioc
,
6523 le64_to_cpu(volume_pg1
.WWID
), handle
);
6526 /* refresh the pd_handles */
6527 phys_disk_num
= 0xFF;
6528 memset(ioc
->pd_handles
, 0, ioc
->pd_handles_sz
);
6529 while (!(mpt3sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
6530 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM
,
6532 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6533 MPI2_IOCSTATUS_MASK
;
6534 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
6536 phys_disk_num
= pd_pg0
.PhysDiskNum
;
6537 handle
= le16_to_cpu(pd_pg0
.DevHandle
);
6538 set_bit(handle
, ioc
->pd_handles
);
6541 pr_info(MPT3SAS_FMT
"search for responding raid volumes: complete\n",
6546 * _scsih_mark_responding_expander - mark a expander as responding
6547 * @ioc: per adapter object
6548 * @sas_address: sas address
6551 * After host reset, find out whether devices are still responding.
6552 * Used in _scsih_remove_unresponsive_expanders.
6557 _scsih_mark_responding_expander(struct MPT3SAS_ADAPTER
*ioc
, u64 sas_address
,
6560 struct _sas_node
*sas_expander
;
6561 unsigned long flags
;
6564 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
6565 list_for_each_entry(sas_expander
, &ioc
->sas_expander_list
, list
) {
6566 if (sas_expander
->sas_address
!= sas_address
)
6568 sas_expander
->responding
= 1;
6569 if (sas_expander
->handle
== handle
)
6571 pr_info("\texpander(0x%016llx): handle changed" \
6572 " from(0x%04x) to (0x%04x)!!!\n",
6573 (unsigned long long)sas_expander
->sas_address
,
6574 sas_expander
->handle
, handle
);
6575 sas_expander
->handle
= handle
;
6576 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++)
6577 sas_expander
->phy
[i
].handle
= handle
;
6581 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
6585 * _scsih_search_responding_expanders -
6586 * @ioc: per adapter object
6588 * After host reset, find out whether devices are still responding.
6594 _scsih_search_responding_expanders(struct MPT3SAS_ADAPTER
*ioc
)
6596 Mpi2ExpanderPage0_t expander_pg0
;
6597 Mpi2ConfigReply_t mpi_reply
;
6602 pr_info(MPT3SAS_FMT
"search for expanders: start\n", ioc
->name
);
6604 if (list_empty(&ioc
->sas_expander_list
))
6608 while (!(mpt3sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
6609 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL
, handle
))) {
6611 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6612 MPI2_IOCSTATUS_MASK
;
6613 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
)
6616 handle
= le16_to_cpu(expander_pg0
.DevHandle
);
6617 sas_address
= le64_to_cpu(expander_pg0
.SASAddress
);
6618 pr_info("\texpander present: handle(0x%04x), sas_addr(0x%016llx)\n",
6620 (unsigned long long)sas_address
);
6621 _scsih_mark_responding_expander(ioc
, sas_address
, handle
);
6625 pr_info(MPT3SAS_FMT
"search for expanders: complete\n", ioc
->name
);
6629 * _scsih_remove_unresponding_sas_devices - removing unresponding devices
6630 * @ioc: per adapter object
6635 _scsih_remove_unresponding_sas_devices(struct MPT3SAS_ADAPTER
*ioc
)
6637 struct _sas_device
*sas_device
, *sas_device_next
;
6638 struct _sas_node
*sas_expander
, *sas_expander_next
;
6639 struct _raid_device
*raid_device
, *raid_device_next
;
6640 struct list_head tmp_list
;
6641 unsigned long flags
;
6643 pr_info(MPT3SAS_FMT
"removing unresponding devices: start\n",
6646 /* removing unresponding end devices */
6647 pr_info(MPT3SAS_FMT
"removing unresponding devices: end-devices\n",
6649 list_for_each_entry_safe(sas_device
, sas_device_next
,
6650 &ioc
->sas_device_list
, list
) {
6651 if (!sas_device
->responding
)
6652 mpt3sas_device_remove_by_sas_address(ioc
,
6653 sas_device
->sas_address
);
6655 sas_device
->responding
= 0;
6658 /* removing unresponding volumes */
6659 if (ioc
->ir_firmware
) {
6660 pr_info(MPT3SAS_FMT
"removing unresponding devices: volumes\n",
6662 list_for_each_entry_safe(raid_device
, raid_device_next
,
6663 &ioc
->raid_device_list
, list
) {
6664 if (!raid_device
->responding
)
6665 _scsih_sas_volume_delete(ioc
,
6666 raid_device
->handle
);
6668 raid_device
->responding
= 0;
6672 /* removing unresponding expanders */
6673 pr_info(MPT3SAS_FMT
"removing unresponding devices: expanders\n",
6675 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
6676 INIT_LIST_HEAD(&tmp_list
);
6677 list_for_each_entry_safe(sas_expander
, sas_expander_next
,
6678 &ioc
->sas_expander_list
, list
) {
6679 if (!sas_expander
->responding
)
6680 list_move_tail(&sas_expander
->list
, &tmp_list
);
6682 sas_expander
->responding
= 0;
6684 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
6685 list_for_each_entry_safe(sas_expander
, sas_expander_next
, &tmp_list
,
6687 list_del(&sas_expander
->list
);
6688 _scsih_expander_node_remove(ioc
, sas_expander
);
6691 pr_info(MPT3SAS_FMT
"removing unresponding devices: complete\n",
6694 /* unblock devices */
6695 _scsih_ublock_io_all_device(ioc
);
6699 _scsih_refresh_expander_links(struct MPT3SAS_ADAPTER
*ioc
,
6700 struct _sas_node
*sas_expander
, u16 handle
)
6702 Mpi2ExpanderPage1_t expander_pg1
;
6703 Mpi2ConfigReply_t mpi_reply
;
6706 for (i
= 0 ; i
< sas_expander
->num_phys
; i
++) {
6707 if ((mpt3sas_config_get_expander_pg1(ioc
, &mpi_reply
,
6708 &expander_pg1
, i
, handle
))) {
6709 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
6710 ioc
->name
, __FILE__
, __LINE__
, __func__
);
6714 mpt3sas_transport_update_links(ioc
, sas_expander
->sas_address
,
6715 le16_to_cpu(expander_pg1
.AttachedDevHandle
), i
,
6716 expander_pg1
.NegotiatedLinkRate
>> 4);
6721 * _scsih_scan_for_devices_after_reset - scan for devices after host reset
6722 * @ioc: per adapter object
6727 _scsih_scan_for_devices_after_reset(struct MPT3SAS_ADAPTER
*ioc
)
6729 Mpi2ExpanderPage0_t expander_pg0
;
6730 Mpi2SasDevicePage0_t sas_device_pg0
;
6731 Mpi2RaidVolPage1_t volume_pg1
;
6732 Mpi2RaidVolPage0_t volume_pg0
;
6733 Mpi2RaidPhysDiskPage0_t pd_pg0
;
6734 Mpi2EventIrConfigElement_t element
;
6735 Mpi2ConfigReply_t mpi_reply
;
6738 u16 handle
, parent_handle
;
6740 struct _sas_device
*sas_device
;
6741 struct _sas_node
*expander_device
;
6742 static struct _raid_device
*raid_device
;
6744 unsigned long flags
;
6746 pr_info(MPT3SAS_FMT
"scan devices: start\n", ioc
->name
);
6748 _scsih_sas_host_refresh(ioc
);
6750 pr_info(MPT3SAS_FMT
"\tscan devices: expanders start\n", ioc
->name
);
6754 while (!(mpt3sas_config_get_expander_pg0(ioc
, &mpi_reply
, &expander_pg0
,
6755 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL
, handle
))) {
6756 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6757 MPI2_IOCSTATUS_MASK
;
6758 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6759 pr_info(MPT3SAS_FMT
"\tbreak from expander scan: " \
6760 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6761 ioc
->name
, ioc_status
,
6762 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6765 handle
= le16_to_cpu(expander_pg0
.DevHandle
);
6766 spin_lock_irqsave(&ioc
->sas_node_lock
, flags
);
6767 expander_device
= mpt3sas_scsih_expander_find_by_sas_address(
6768 ioc
, le64_to_cpu(expander_pg0
.SASAddress
));
6769 spin_unlock_irqrestore(&ioc
->sas_node_lock
, flags
);
6770 if (expander_device
)
6771 _scsih_refresh_expander_links(ioc
, expander_device
,
6774 pr_info(MPT3SAS_FMT
"\tBEFORE adding expander: " \
6775 "handle (0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
6776 handle
, (unsigned long long)
6777 le64_to_cpu(expander_pg0
.SASAddress
));
6778 _scsih_expander_add(ioc
, handle
);
6779 pr_info(MPT3SAS_FMT
"\tAFTER adding expander: " \
6780 "handle (0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
6781 handle
, (unsigned long long)
6782 le64_to_cpu(expander_pg0
.SASAddress
));
6786 pr_info(MPT3SAS_FMT
"\tscan devices: expanders complete\n",
6789 if (!ioc
->ir_firmware
)
6792 pr_info(MPT3SAS_FMT
"\tscan devices: phys disk start\n", ioc
->name
);
6795 phys_disk_num
= 0xFF;
6796 while (!(mpt3sas_config_get_phys_disk_pg0(ioc
, &mpi_reply
,
6797 &pd_pg0
, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM
,
6799 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6800 MPI2_IOCSTATUS_MASK
;
6801 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6802 pr_info(MPT3SAS_FMT
"\tbreak from phys disk scan: "\
6803 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6804 ioc
->name
, ioc_status
,
6805 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6808 phys_disk_num
= pd_pg0
.PhysDiskNum
;
6809 handle
= le16_to_cpu(pd_pg0
.DevHandle
);
6810 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6811 sas_device
= _scsih_sas_device_find_by_handle(ioc
, handle
);
6812 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6815 if (mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6816 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE
,
6819 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6820 MPI2_IOCSTATUS_MASK
;
6821 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6822 pr_info(MPT3SAS_FMT
"\tbreak from phys disk scan " \
6823 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6824 ioc
->name
, ioc_status
,
6825 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6828 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
6829 if (!_scsih_get_sas_address(ioc
, parent_handle
,
6831 pr_info(MPT3SAS_FMT
"\tBEFORE adding phys disk: " \
6832 " handle (0x%04x), sas_addr(0x%016llx)\n",
6833 ioc
->name
, handle
, (unsigned long long)
6834 le64_to_cpu(sas_device_pg0
.SASAddress
));
6835 mpt3sas_transport_update_links(ioc
, sas_address
,
6836 handle
, sas_device_pg0
.PhyNum
,
6837 MPI2_SAS_NEG_LINK_RATE_1_5
);
6838 set_bit(handle
, ioc
->pd_handles
);
6840 /* This will retry adding the end device.
6841 * _scsih_add_device() will decide on retries and
6842 * return "1" when it should be retried
6844 while (_scsih_add_device(ioc
, handle
, retry_count
++,
6848 pr_info(MPT3SAS_FMT
"\tAFTER adding phys disk: " \
6849 " handle (0x%04x), sas_addr(0x%016llx)\n",
6850 ioc
->name
, handle
, (unsigned long long)
6851 le64_to_cpu(sas_device_pg0
.SASAddress
));
6855 pr_info(MPT3SAS_FMT
"\tscan devices: phys disk complete\n",
6858 pr_info(MPT3SAS_FMT
"\tscan devices: volumes start\n", ioc
->name
);
6862 while (!(mpt3sas_config_get_raid_volume_pg1(ioc
, &mpi_reply
,
6863 &volume_pg1
, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE
, handle
))) {
6864 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6865 MPI2_IOCSTATUS_MASK
;
6866 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6867 pr_info(MPT3SAS_FMT
"\tbreak from volume scan: " \
6868 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6869 ioc
->name
, ioc_status
,
6870 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6873 handle
= le16_to_cpu(volume_pg1
.DevHandle
);
6874 spin_lock_irqsave(&ioc
->raid_device_lock
, flags
);
6875 raid_device
= _scsih_raid_device_find_by_wwid(ioc
,
6876 le64_to_cpu(volume_pg1
.WWID
));
6877 spin_unlock_irqrestore(&ioc
->raid_device_lock
, flags
);
6880 if (mpt3sas_config_get_raid_volume_pg0(ioc
, &mpi_reply
,
6881 &volume_pg0
, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE
, handle
,
6882 sizeof(Mpi2RaidVolPage0_t
)))
6884 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6885 MPI2_IOCSTATUS_MASK
;
6886 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6887 pr_info(MPT3SAS_FMT
"\tbreak from volume scan: " \
6888 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6889 ioc
->name
, ioc_status
,
6890 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6893 if (volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_OPTIMAL
||
6894 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_ONLINE
||
6895 volume_pg0
.VolumeState
== MPI2_RAID_VOL_STATE_DEGRADED
) {
6896 memset(&element
, 0, sizeof(Mpi2EventIrConfigElement_t
));
6897 element
.ReasonCode
= MPI2_EVENT_IR_CHANGE_RC_ADDED
;
6898 element
.VolDevHandle
= volume_pg1
.DevHandle
;
6900 "\tBEFORE adding volume: handle (0x%04x)\n",
6901 ioc
->name
, volume_pg1
.DevHandle
);
6902 _scsih_sas_volume_add(ioc
, &element
);
6904 "\tAFTER adding volume: handle (0x%04x)\n",
6905 ioc
->name
, volume_pg1
.DevHandle
);
6909 pr_info(MPT3SAS_FMT
"\tscan devices: volumes complete\n",
6914 pr_info(MPT3SAS_FMT
"\tscan devices: end devices start\n",
6919 while (!(mpt3sas_config_get_sas_device_pg0(ioc
, &mpi_reply
,
6920 &sas_device_pg0
, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE
,
6922 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
6923 MPI2_IOCSTATUS_MASK
;
6924 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
6925 pr_info(MPT3SAS_FMT
"\tbreak from end device scan:"\
6926 " ioc_status(0x%04x), loginfo(0x%08x)\n",
6927 ioc
->name
, ioc_status
,
6928 le32_to_cpu(mpi_reply
.IOCLogInfo
));
6931 handle
= le16_to_cpu(sas_device_pg0
.DevHandle
);
6932 if (!(_scsih_is_end_device(
6933 le32_to_cpu(sas_device_pg0
.DeviceInfo
))))
6935 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
6936 sas_device
= mpt3sas_scsih_sas_device_find_by_sas_address(ioc
,
6937 le64_to_cpu(sas_device_pg0
.SASAddress
));
6938 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
6941 parent_handle
= le16_to_cpu(sas_device_pg0
.ParentDevHandle
);
6942 if (!_scsih_get_sas_address(ioc
, parent_handle
, &sas_address
)) {
6943 pr_info(MPT3SAS_FMT
"\tBEFORE adding end device: " \
6944 "handle (0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
6945 handle
, (unsigned long long)
6946 le64_to_cpu(sas_device_pg0
.SASAddress
));
6947 mpt3sas_transport_update_links(ioc
, sas_address
, handle
,
6948 sas_device_pg0
.PhyNum
, MPI2_SAS_NEG_LINK_RATE_1_5
);
6950 /* This will retry adding the end device.
6951 * _scsih_add_device() will decide on retries and
6952 * return "1" when it should be retried
6954 while (_scsih_add_device(ioc
, handle
, retry_count
++,
6958 pr_info(MPT3SAS_FMT
"\tAFTER adding end device: " \
6959 "handle (0x%04x), sas_addr(0x%016llx)\n", ioc
->name
,
6960 handle
, (unsigned long long)
6961 le64_to_cpu(sas_device_pg0
.SASAddress
));
6964 pr_info(MPT3SAS_FMT
"\tscan devices: end devices complete\n",
6967 pr_info(MPT3SAS_FMT
"scan devices: complete\n", ioc
->name
);
6970 * mpt3sas_scsih_reset_handler - reset callback handler (for scsih)
6971 * @ioc: per adapter object
6972 * @reset_phase: phase
6974 * The handler for doing any required cleanup or initialization.
6976 * The reset phase can be MPT3_IOC_PRE_RESET, MPT3_IOC_AFTER_RESET,
6977 * MPT3_IOC_DONE_RESET
6982 mpt3sas_scsih_reset_handler(struct MPT3SAS_ADAPTER
*ioc
, int reset_phase
)
6984 switch (reset_phase
) {
6985 case MPT3_IOC_PRE_RESET
:
6986 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
6987 "%s: MPT3_IOC_PRE_RESET\n", ioc
->name
, __func__
));
6989 case MPT3_IOC_AFTER_RESET
:
6990 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
6991 "%s: MPT3_IOC_AFTER_RESET\n", ioc
->name
, __func__
));
6992 if (ioc
->scsih_cmds
.status
& MPT3_CMD_PENDING
) {
6993 ioc
->scsih_cmds
.status
|= MPT3_CMD_RESET
;
6994 mpt3sas_base_free_smid(ioc
, ioc
->scsih_cmds
.smid
);
6995 complete(&ioc
->scsih_cmds
.done
);
6997 if (ioc
->tm_cmds
.status
& MPT3_CMD_PENDING
) {
6998 ioc
->tm_cmds
.status
|= MPT3_CMD_RESET
;
6999 mpt3sas_base_free_smid(ioc
, ioc
->tm_cmds
.smid
);
7000 complete(&ioc
->tm_cmds
.done
);
7003 _scsih_fw_event_cleanup_queue(ioc
);
7004 _scsih_flush_running_cmds(ioc
);
7006 case MPT3_IOC_DONE_RESET
:
7007 dtmprintk(ioc
, pr_info(MPT3SAS_FMT
7008 "%s: MPT3_IOC_DONE_RESET\n", ioc
->name
, __func__
));
7009 if ((!ioc
->is_driver_loading
) && !(disable_discovery
> 0 &&
7010 !ioc
->sas_hba
.num_phys
)) {
7011 _scsih_prep_device_scan(ioc
);
7012 _scsih_search_responding_sas_devices(ioc
);
7013 _scsih_search_responding_raid_devices(ioc
);
7014 _scsih_search_responding_expanders(ioc
);
7015 _scsih_error_recovery_delete_devices(ioc
);
7022 * _mpt3sas_fw_work - delayed task for processing firmware events
7023 * @ioc: per adapter object
7024 * @fw_event: The fw_event_work object
7030 _mpt3sas_fw_work(struct MPT3SAS_ADAPTER
*ioc
, struct fw_event_work
*fw_event
)
7032 /* the queue is being flushed so ignore this event */
7033 if (ioc
->remove_host
||
7034 ioc
->pci_error_recovery
) {
7035 _scsih_fw_event_free(ioc
, fw_event
);
7039 switch (fw_event
->event
) {
7040 case MPT3SAS_PROCESS_TRIGGER_DIAG
:
7041 mpt3sas_process_trigger_data(ioc
,
7042 (struct SL_WH_TRIGGERS_EVENT_DATA_T
*)
7043 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_PFA_LED
:
7061 _scsih_turn_on_pfa_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 sz
= le16_to_cpu(mpi_reply
->EventDataLength
) * 4;
7202 fw_event
= kzalloc(sizeof(*fw_event
) + sz
, GFP_ATOMIC
);
7204 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7205 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7209 memcpy(fw_event
->event_data
, mpi_reply
->EventData
, sz
);
7210 fw_event
->ioc
= ioc
;
7211 fw_event
->VF_ID
= mpi_reply
->VF_ID
;
7212 fw_event
->VP_ID
= mpi_reply
->VP_ID
;
7213 fw_event
->event
= event
;
7214 _scsih_fw_event_add(ioc
, fw_event
);
7218 /* shost template */
7219 static struct scsi_host_template scsih_driver_template
= {
7220 .module
= THIS_MODULE
,
7221 .name
= "Fusion MPT SAS Host",
7222 .proc_name
= MPT3SAS_DRIVER_NAME
,
7223 .queuecommand
= _scsih_qcmd
,
7224 .target_alloc
= _scsih_target_alloc
,
7225 .slave_alloc
= _scsih_slave_alloc
,
7226 .slave_configure
= _scsih_slave_configure
,
7227 .target_destroy
= _scsih_target_destroy
,
7228 .slave_destroy
= _scsih_slave_destroy
,
7229 .scan_finished
= _scsih_scan_finished
,
7230 .scan_start
= _scsih_scan_start
,
7231 .change_queue_depth
= _scsih_change_queue_depth
,
7232 .change_queue_type
= scsi_change_queue_type
,
7233 .eh_abort_handler
= _scsih_abort
,
7234 .eh_device_reset_handler
= _scsih_dev_reset
,
7235 .eh_target_reset_handler
= _scsih_target_reset
,
7236 .eh_host_reset_handler
= _scsih_host_reset
,
7237 .bios_param
= _scsih_bios_param
,
7240 .sg_tablesize
= MPT3SAS_SG_DEPTH
,
7241 .max_sectors
= 32767,
7243 .use_clustering
= ENABLE_CLUSTERING
,
7244 .shost_attrs
= mpt3sas_host_attrs
,
7245 .sdev_attrs
= mpt3sas_dev_attrs
,
7246 .track_queue_depth
= 1,
7250 * _scsih_expander_node_remove - removing expander device from list.
7251 * @ioc: per adapter object
7252 * @sas_expander: the sas_device object
7253 * Context: Calling function should acquire ioc->sas_node_lock.
7255 * Removing object and freeing associated memory from the
7256 * ioc->sas_expander_list.
7261 _scsih_expander_node_remove(struct MPT3SAS_ADAPTER
*ioc
,
7262 struct _sas_node
*sas_expander
)
7264 struct _sas_port
*mpt3sas_port
, *next
;
7266 /* remove sibling ports attached to this expander */
7267 list_for_each_entry_safe(mpt3sas_port
, next
,
7268 &sas_expander
->sas_port_list
, port_list
) {
7269 if (ioc
->shost_recovery
)
7271 if (mpt3sas_port
->remote_identify
.device_type
==
7273 mpt3sas_device_remove_by_sas_address(ioc
,
7274 mpt3sas_port
->remote_identify
.sas_address
);
7275 else if (mpt3sas_port
->remote_identify
.device_type
==
7276 SAS_EDGE_EXPANDER_DEVICE
||
7277 mpt3sas_port
->remote_identify
.device_type
==
7278 SAS_FANOUT_EXPANDER_DEVICE
)
7279 mpt3sas_expander_remove(ioc
,
7280 mpt3sas_port
->remote_identify
.sas_address
);
7283 mpt3sas_transport_port_remove(ioc
, sas_expander
->sas_address
,
7284 sas_expander
->sas_address_parent
);
7287 "expander_remove: handle(0x%04x), sas_addr(0x%016llx)\n",
7289 sas_expander
->handle
, (unsigned long long)
7290 sas_expander
->sas_address
);
7292 kfree(sas_expander
->phy
);
7293 kfree(sas_expander
);
7297 * _scsih_ir_shutdown - IR shutdown notification
7298 * @ioc: per adapter object
7300 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that
7301 * the host system is shutting down.
7306 _scsih_ir_shutdown(struct MPT3SAS_ADAPTER
*ioc
)
7308 Mpi2RaidActionRequest_t
*mpi_request
;
7309 Mpi2RaidActionReply_t
*mpi_reply
;
7312 /* is IR firmware build loaded ? */
7313 if (!ioc
->ir_firmware
)
7316 /* are there any volumes ? */
7317 if (list_empty(&ioc
->raid_device_list
))
7320 mutex_lock(&ioc
->scsih_cmds
.mutex
);
7322 if (ioc
->scsih_cmds
.status
!= MPT3_CMD_NOT_USED
) {
7323 pr_err(MPT3SAS_FMT
"%s: scsih_cmd in use\n",
7324 ioc
->name
, __func__
);
7327 ioc
->scsih_cmds
.status
= MPT3_CMD_PENDING
;
7329 smid
= mpt3sas_base_get_smid(ioc
, ioc
->scsih_cb_idx
);
7331 pr_err(MPT3SAS_FMT
"%s: failed obtaining a smid\n",
7332 ioc
->name
, __func__
);
7333 ioc
->scsih_cmds
.status
= MPT3_CMD_NOT_USED
;
7337 mpi_request
= mpt3sas_base_get_msg_frame(ioc
, smid
);
7338 ioc
->scsih_cmds
.smid
= smid
;
7339 memset(mpi_request
, 0, sizeof(Mpi2RaidActionRequest_t
));
7341 mpi_request
->Function
= MPI2_FUNCTION_RAID_ACTION
;
7342 mpi_request
->Action
= MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED
;
7344 pr_info(MPT3SAS_FMT
"IR shutdown (sending)\n", ioc
->name
);
7345 init_completion(&ioc
->scsih_cmds
.done
);
7346 mpt3sas_base_put_smid_default(ioc
, smid
);
7347 wait_for_completion_timeout(&ioc
->scsih_cmds
.done
, 10*HZ
);
7349 if (!(ioc
->scsih_cmds
.status
& MPT3_CMD_COMPLETE
)) {
7350 pr_err(MPT3SAS_FMT
"%s: timeout\n",
7351 ioc
->name
, __func__
);
7355 if (ioc
->scsih_cmds
.status
& MPT3_CMD_REPLY_VALID
) {
7356 mpi_reply
= ioc
->scsih_cmds
.reply
;
7358 "IR shutdown (complete): ioc_status(0x%04x), loginfo(0x%08x)\n",
7359 ioc
->name
, le16_to_cpu(mpi_reply
->IOCStatus
),
7360 le32_to_cpu(mpi_reply
->IOCLogInfo
));
7364 ioc
->scsih_cmds
.status
= MPT3_CMD_NOT_USED
;
7365 mutex_unlock(&ioc
->scsih_cmds
.mutex
);
7369 * _scsih_remove - detach and remove add host
7370 * @pdev: PCI device struct
7372 * Routine called when unloading the driver.
7375 static void _scsih_remove(struct pci_dev
*pdev
)
7377 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7378 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7379 struct _sas_port
*mpt3sas_port
, *next_port
;
7380 struct _raid_device
*raid_device
, *next
;
7381 struct MPT3SAS_TARGET
*sas_target_priv_data
;
7382 struct workqueue_struct
*wq
;
7383 unsigned long flags
;
7385 ioc
->remove_host
= 1;
7386 _scsih_fw_event_cleanup_queue(ioc
);
7388 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
7389 wq
= ioc
->firmware_event_thread
;
7390 ioc
->firmware_event_thread
= NULL
;
7391 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
7393 destroy_workqueue(wq
);
7395 /* release all the volumes */
7396 _scsih_ir_shutdown(ioc
);
7397 list_for_each_entry_safe(raid_device
, next
, &ioc
->raid_device_list
,
7399 if (raid_device
->starget
) {
7400 sas_target_priv_data
=
7401 raid_device
->starget
->hostdata
;
7402 sas_target_priv_data
->deleted
= 1;
7403 scsi_remove_target(&raid_device
->starget
->dev
);
7405 pr_info(MPT3SAS_FMT
"removing handle(0x%04x), wwid(0x%016llx)\n",
7406 ioc
->name
, raid_device
->handle
,
7407 (unsigned long long) raid_device
->wwid
);
7408 _scsih_raid_device_remove(ioc
, raid_device
);
7411 /* free ports attached to the sas_host */
7412 list_for_each_entry_safe(mpt3sas_port
, next_port
,
7413 &ioc
->sas_hba
.sas_port_list
, port_list
) {
7414 if (mpt3sas_port
->remote_identify
.device_type
==
7416 mpt3sas_device_remove_by_sas_address(ioc
,
7417 mpt3sas_port
->remote_identify
.sas_address
);
7418 else if (mpt3sas_port
->remote_identify
.device_type
==
7419 SAS_EDGE_EXPANDER_DEVICE
||
7420 mpt3sas_port
->remote_identify
.device_type
==
7421 SAS_FANOUT_EXPANDER_DEVICE
)
7422 mpt3sas_expander_remove(ioc
,
7423 mpt3sas_port
->remote_identify
.sas_address
);
7426 /* free phys attached to the sas_host */
7427 if (ioc
->sas_hba
.num_phys
) {
7428 kfree(ioc
->sas_hba
.phy
);
7429 ioc
->sas_hba
.phy
= NULL
;
7430 ioc
->sas_hba
.num_phys
= 0;
7433 sas_remove_host(shost
);
7434 scsi_remove_host(shost
);
7435 mpt3sas_base_detach(ioc
);
7436 list_del(&ioc
->list
);
7437 scsi_host_put(shost
);
7441 * _scsih_shutdown - routine call during system shutdown
7442 * @pdev: PCI device struct
7447 _scsih_shutdown(struct pci_dev
*pdev
)
7449 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7450 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7451 struct workqueue_struct
*wq
;
7452 unsigned long flags
;
7454 ioc
->remove_host
= 1;
7455 _scsih_fw_event_cleanup_queue(ioc
);
7457 spin_lock_irqsave(&ioc
->fw_event_lock
, flags
);
7458 wq
= ioc
->firmware_event_thread
;
7459 ioc
->firmware_event_thread
= NULL
;
7460 spin_unlock_irqrestore(&ioc
->fw_event_lock
, flags
);
7462 destroy_workqueue(wq
);
7464 _scsih_ir_shutdown(ioc
);
7465 mpt3sas_base_detach(ioc
);
7470 * _scsih_probe_boot_devices - reports 1st device
7471 * @ioc: per adapter object
7473 * If specified in bios page 2, this routine reports the 1st
7474 * device scsi-ml or sas transport for persistent boot device
7475 * purposes. Please refer to function _scsih_determine_boot_device()
7478 _scsih_probe_boot_devices(struct MPT3SAS_ADAPTER
*ioc
)
7482 struct _sas_device
*sas_device
;
7483 struct _raid_device
*raid_device
;
7485 u64 sas_address_parent
;
7487 unsigned long flags
;
7490 /* no Bios, return immediately */
7491 if (!ioc
->bios_pg3
.BiosVersion
)
7496 if (ioc
->req_boot_device
.device
) {
7497 device
= ioc
->req_boot_device
.device
;
7498 is_raid
= ioc
->req_boot_device
.is_raid
;
7499 } else if (ioc
->req_alt_boot_device
.device
) {
7500 device
= ioc
->req_alt_boot_device
.device
;
7501 is_raid
= ioc
->req_alt_boot_device
.is_raid
;
7502 } else if (ioc
->current_boot_device
.device
) {
7503 device
= ioc
->current_boot_device
.device
;
7504 is_raid
= ioc
->current_boot_device
.is_raid
;
7511 raid_device
= device
;
7512 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
7513 raid_device
->id
, 0);
7515 _scsih_raid_device_remove(ioc
, raid_device
);
7517 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
7518 sas_device
= device
;
7519 handle
= sas_device
->handle
;
7520 sas_address_parent
= sas_device
->sas_address_parent
;
7521 sas_address
= sas_device
->sas_address
;
7522 list_move_tail(&sas_device
->list
, &ioc
->sas_device_list
);
7523 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
7525 if (!mpt3sas_transport_port_add(ioc
, handle
,
7526 sas_address_parent
)) {
7527 _scsih_sas_device_remove(ioc
, sas_device
);
7528 } else if (!sas_device
->starget
) {
7529 if (!ioc
->is_driver_loading
) {
7530 mpt3sas_transport_port_remove(ioc
,
7532 sas_address_parent
);
7533 _scsih_sas_device_remove(ioc
, sas_device
);
7540 * _scsih_probe_raid - reporting raid volumes to scsi-ml
7541 * @ioc: per adapter object
7543 * Called during initial loading of the driver.
7546 _scsih_probe_raid(struct MPT3SAS_ADAPTER
*ioc
)
7548 struct _raid_device
*raid_device
, *raid_next
;
7551 list_for_each_entry_safe(raid_device
, raid_next
,
7552 &ioc
->raid_device_list
, list
) {
7553 if (raid_device
->starget
)
7555 rc
= scsi_add_device(ioc
->shost
, RAID_CHANNEL
,
7556 raid_device
->id
, 0);
7558 _scsih_raid_device_remove(ioc
, raid_device
);
7563 * _scsih_probe_sas - reporting sas devices to sas transport
7564 * @ioc: per adapter object
7566 * Called during initial loading of the driver.
7569 _scsih_probe_sas(struct MPT3SAS_ADAPTER
*ioc
)
7571 struct _sas_device
*sas_device
, *next
;
7572 unsigned long flags
;
7574 /* SAS Device List */
7575 list_for_each_entry_safe(sas_device
, next
, &ioc
->sas_device_init_list
,
7578 if (!mpt3sas_transport_port_add(ioc
, sas_device
->handle
,
7579 sas_device
->sas_address_parent
)) {
7580 list_del(&sas_device
->list
);
7583 } else if (!sas_device
->starget
) {
7585 * When asyn scanning is enabled, its not possible to
7586 * remove devices while scanning is turned on due to an
7587 * oops in scsi_sysfs_add_sdev()->add_device()->
7588 * sysfs_addrm_start()
7590 if (!ioc
->is_driver_loading
) {
7591 mpt3sas_transport_port_remove(ioc
,
7592 sas_device
->sas_address
,
7593 sas_device
->sas_address_parent
);
7594 list_del(&sas_device
->list
);
7600 spin_lock_irqsave(&ioc
->sas_device_lock
, flags
);
7601 list_move_tail(&sas_device
->list
, &ioc
->sas_device_list
);
7602 spin_unlock_irqrestore(&ioc
->sas_device_lock
, flags
);
7607 * _scsih_probe_devices - probing for devices
7608 * @ioc: per adapter object
7610 * Called during initial loading of the driver.
7613 _scsih_probe_devices(struct MPT3SAS_ADAPTER
*ioc
)
7615 u16 volume_mapping_flags
;
7617 if (!(ioc
->facts
.ProtocolFlags
& MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR
))
7618 return; /* return when IOC doesn't support initiator mode */
7620 _scsih_probe_boot_devices(ioc
);
7622 if (ioc
->ir_firmware
) {
7623 volume_mapping_flags
=
7624 le16_to_cpu(ioc
->ioc_pg8
.IRVolumeMappingFlags
) &
7625 MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE
;
7626 if (volume_mapping_flags
==
7627 MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING
) {
7628 _scsih_probe_raid(ioc
);
7629 _scsih_probe_sas(ioc
);
7631 _scsih_probe_sas(ioc
);
7632 _scsih_probe_raid(ioc
);
7635 _scsih_probe_sas(ioc
);
7639 * _scsih_scan_start - scsi lld callback for .scan_start
7640 * @shost: SCSI host pointer
7642 * The shost has the ability to discover targets on its own instead
7643 * of scanning the entire bus. In our implemention, we will kick off
7644 * firmware discovery.
7647 _scsih_scan_start(struct Scsi_Host
*shost
)
7649 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7651 if (diag_buffer_enable
!= -1 && diag_buffer_enable
!= 0)
7652 mpt3sas_enable_diag_buffer(ioc
, diag_buffer_enable
);
7654 if (disable_discovery
> 0)
7657 ioc
->start_scan
= 1;
7658 rc
= mpt3sas_port_enable(ioc
);
7661 pr_info(MPT3SAS_FMT
"port enable: FAILED\n", ioc
->name
);
7665 * _scsih_scan_finished - scsi lld callback for .scan_finished
7666 * @shost: SCSI host pointer
7667 * @time: elapsed time of the scan in jiffies
7669 * This function will be called periodicallyn until it returns 1 with the
7670 * scsi_host and the elapsed time of the scan in jiffies. In our implemention,
7671 * we wait for firmware discovery to complete, then return 1.
7674 _scsih_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
7676 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7678 if (disable_discovery
> 0) {
7679 ioc
->is_driver_loading
= 0;
7680 ioc
->wait_for_discovery_to_complete
= 0;
7684 if (time
>= (300 * HZ
)) {
7685 ioc
->base_cmds
.status
= MPT3_CMD_NOT_USED
;
7687 "port enable: FAILED with timeout (timeout=300s)\n",
7689 ioc
->is_driver_loading
= 0;
7693 if (ioc
->start_scan
)
7696 if (ioc
->start_scan_failed
) {
7698 "port enable: FAILED with (ioc_status=0x%08x)\n",
7699 ioc
->name
, ioc
->start_scan_failed
);
7700 ioc
->is_driver_loading
= 0;
7701 ioc
->wait_for_discovery_to_complete
= 0;
7702 ioc
->remove_host
= 1;
7706 pr_info(MPT3SAS_FMT
"port enable: SUCCESS\n", ioc
->name
);
7707 ioc
->base_cmds
.status
= MPT3_CMD_NOT_USED
;
7709 if (ioc
->wait_for_discovery_to_complete
) {
7710 ioc
->wait_for_discovery_to_complete
= 0;
7711 _scsih_probe_devices(ioc
);
7713 mpt3sas_base_start_watchdog(ioc
);
7714 ioc
->is_driver_loading
= 0;
7719 * _scsih_probe - attach and add scsi host
7720 * @pdev: PCI device struct
7721 * @id: pci device id
7723 * Returns 0 success, anything else error.
7726 _scsih_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
7728 struct MPT3SAS_ADAPTER
*ioc
;
7729 struct Scsi_Host
*shost
;
7732 shost
= scsi_host_alloc(&scsih_driver_template
,
7733 sizeof(struct MPT3SAS_ADAPTER
));
7737 /* init local params */
7738 ioc
= shost_priv(shost
);
7739 memset(ioc
, 0, sizeof(struct MPT3SAS_ADAPTER
));
7740 INIT_LIST_HEAD(&ioc
->list
);
7741 list_add_tail(&ioc
->list
, &mpt3sas_ioc_list
);
7743 ioc
->id
= mpt_ids
++;
7744 sprintf(ioc
->name
, "%s%d", MPT3SAS_DRIVER_NAME
, ioc
->id
);
7746 ioc
->scsi_io_cb_idx
= scsi_io_cb_idx
;
7747 ioc
->tm_cb_idx
= tm_cb_idx
;
7748 ioc
->ctl_cb_idx
= ctl_cb_idx
;
7749 ioc
->base_cb_idx
= base_cb_idx
;
7750 ioc
->port_enable_cb_idx
= port_enable_cb_idx
;
7751 ioc
->transport_cb_idx
= transport_cb_idx
;
7752 ioc
->scsih_cb_idx
= scsih_cb_idx
;
7753 ioc
->config_cb_idx
= config_cb_idx
;
7754 ioc
->tm_tr_cb_idx
= tm_tr_cb_idx
;
7755 ioc
->tm_tr_volume_cb_idx
= tm_tr_volume_cb_idx
;
7756 ioc
->tm_sas_control_cb_idx
= tm_sas_control_cb_idx
;
7757 ioc
->logging_level
= logging_level
;
7758 ioc
->schedule_dead_ioc_flush_running_cmds
= &_scsih_flush_running_cmds
;
7759 /* misc semaphores and spin locks */
7760 mutex_init(&ioc
->reset_in_progress_mutex
);
7761 spin_lock_init(&ioc
->ioc_reset_in_progress_lock
);
7762 spin_lock_init(&ioc
->scsi_lookup_lock
);
7763 spin_lock_init(&ioc
->sas_device_lock
);
7764 spin_lock_init(&ioc
->sas_node_lock
);
7765 spin_lock_init(&ioc
->fw_event_lock
);
7766 spin_lock_init(&ioc
->raid_device_lock
);
7767 spin_lock_init(&ioc
->diag_trigger_lock
);
7769 INIT_LIST_HEAD(&ioc
->sas_device_list
);
7770 INIT_LIST_HEAD(&ioc
->sas_device_init_list
);
7771 INIT_LIST_HEAD(&ioc
->sas_expander_list
);
7772 INIT_LIST_HEAD(&ioc
->fw_event_list
);
7773 INIT_LIST_HEAD(&ioc
->raid_device_list
);
7774 INIT_LIST_HEAD(&ioc
->sas_hba
.sas_port_list
);
7775 INIT_LIST_HEAD(&ioc
->delayed_tr_list
);
7776 INIT_LIST_HEAD(&ioc
->delayed_tr_volume_list
);
7777 INIT_LIST_HEAD(&ioc
->reply_queue_list
);
7779 /* init shost parameters */
7780 shost
->max_cmd_len
= 32;
7781 shost
->max_lun
= max_lun
;
7782 shost
->transportt
= mpt3sas_transport_template
;
7783 shost
->unique_id
= ioc
->id
;
7785 if (max_sectors
!= 0xFFFF) {
7786 if (max_sectors
< 64) {
7787 shost
->max_sectors
= 64;
7788 pr_warn(MPT3SAS_FMT
"Invalid value %d passed " \
7789 "for max_sectors, range is 64 to 32767. Assigning "
7790 "value of 64.\n", ioc
->name
, max_sectors
);
7791 } else if (max_sectors
> 32767) {
7792 shost
->max_sectors
= 32767;
7793 pr_warn(MPT3SAS_FMT
"Invalid value %d passed " \
7794 "for max_sectors, range is 64 to 32767. Assigning "
7795 "default value of 32767.\n", ioc
->name
,
7798 shost
->max_sectors
= max_sectors
& 0xFFFE;
7800 "The max_sectors value is set to %d\n",
7801 ioc
->name
, shost
->max_sectors
);
7805 /* register EEDP capabilities with SCSI layer */
7807 scsi_host_set_prot(shost
, prot_mask
);
7809 scsi_host_set_prot(shost
, SHOST_DIF_TYPE1_PROTECTION
7810 | SHOST_DIF_TYPE2_PROTECTION
7811 | SHOST_DIF_TYPE3_PROTECTION
);
7813 scsi_host_set_guard(shost
, SHOST_DIX_GUARD_CRC
);
7816 snprintf(ioc
->firmware_event_name
, sizeof(ioc
->firmware_event_name
),
7817 "fw_event%d", ioc
->id
);
7818 ioc
->firmware_event_thread
= create_singlethread_workqueue(
7819 ioc
->firmware_event_name
);
7820 if (!ioc
->firmware_event_thread
) {
7821 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7822 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7824 goto out_thread_fail
;
7827 ioc
->is_driver_loading
= 1;
7828 if ((mpt3sas_base_attach(ioc
))) {
7829 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7830 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7832 goto out_attach_fail
;
7834 rv
= scsi_add_host(shost
, &pdev
->dev
);
7836 pr_err(MPT3SAS_FMT
"failure at %s:%d/%s()!\n",
7837 ioc
->name
, __FILE__
, __LINE__
, __func__
);
7838 goto out_add_shost_fail
;
7841 scsi_scan_host(shost
);
7844 mpt3sas_base_detach(ioc
);
7846 destroy_workqueue(ioc
->firmware_event_thread
);
7848 list_del(&ioc
->list
);
7849 scsi_host_put(shost
);
7855 * _scsih_suspend - power management suspend main entry point
7856 * @pdev: PCI device struct
7857 * @state: PM state change to (usually PCI_D3)
7859 * Returns 0 success, anything else error.
7862 _scsih_suspend(struct pci_dev
*pdev
, pm_message_t state
)
7864 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7865 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7866 pci_power_t device_state
;
7868 mpt3sas_base_stop_watchdog(ioc
);
7869 flush_scheduled_work();
7870 scsi_block_requests(shost
);
7871 device_state
= pci_choose_state(pdev
, state
);
7873 "pdev=0x%p, slot=%s, entering operating state [D%d]\n",
7874 ioc
->name
, pdev
, pci_name(pdev
), device_state
);
7876 pci_save_state(pdev
);
7877 mpt3sas_base_free_resources(ioc
);
7878 pci_set_power_state(pdev
, device_state
);
7883 * _scsih_resume - power management resume main entry point
7884 * @pdev: PCI device struct
7886 * Returns 0 success, anything else error.
7889 _scsih_resume(struct pci_dev
*pdev
)
7891 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7892 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7893 pci_power_t device_state
= pdev
->current_state
;
7897 "pdev=0x%p, slot=%s, previous operating state [D%d]\n",
7898 ioc
->name
, pdev
, pci_name(pdev
), device_state
);
7900 pci_set_power_state(pdev
, PCI_D0
);
7901 pci_enable_wake(pdev
, PCI_D0
, 0);
7902 pci_restore_state(pdev
);
7904 r
= mpt3sas_base_map_resources(ioc
);
7908 mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
, SOFT_RESET
);
7909 scsi_unblock_requests(shost
);
7910 mpt3sas_base_start_watchdog(ioc
);
7913 #endif /* CONFIG_PM */
7916 * _scsih_pci_error_detected - Called when a PCI error is detected.
7917 * @pdev: PCI device struct
7918 * @state: PCI channel state
7920 * Description: Called when a PCI error is detected.
7923 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
7925 static pci_ers_result_t
7926 _scsih_pci_error_detected(struct pci_dev
*pdev
, pci_channel_state_t state
)
7928 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7929 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7931 pr_info(MPT3SAS_FMT
"PCI error: detected callback, state(%d)!!\n",
7935 case pci_channel_io_normal
:
7936 return PCI_ERS_RESULT_CAN_RECOVER
;
7937 case pci_channel_io_frozen
:
7938 /* Fatal error, prepare for slot reset */
7939 ioc
->pci_error_recovery
= 1;
7940 scsi_block_requests(ioc
->shost
);
7941 mpt3sas_base_stop_watchdog(ioc
);
7942 mpt3sas_base_free_resources(ioc
);
7943 return PCI_ERS_RESULT_NEED_RESET
;
7944 case pci_channel_io_perm_failure
:
7945 /* Permanent error, prepare for device removal */
7946 ioc
->pci_error_recovery
= 1;
7947 mpt3sas_base_stop_watchdog(ioc
);
7948 _scsih_flush_running_cmds(ioc
);
7949 return PCI_ERS_RESULT_DISCONNECT
;
7951 return PCI_ERS_RESULT_NEED_RESET
;
7955 * _scsih_pci_slot_reset - Called when PCI slot has been reset.
7956 * @pdev: PCI device struct
7958 * Description: This routine is called by the pci error recovery
7959 * code after the PCI slot has been reset, just before we
7960 * should resume normal operations.
7962 static pci_ers_result_t
7963 _scsih_pci_slot_reset(struct pci_dev
*pdev
)
7965 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7966 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
7969 pr_info(MPT3SAS_FMT
"PCI error: slot reset callback!!\n",
7972 ioc
->pci_error_recovery
= 0;
7974 pci_restore_state(pdev
);
7975 rc
= mpt3sas_base_map_resources(ioc
);
7977 return PCI_ERS_RESULT_DISCONNECT
;
7979 rc
= mpt3sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
7982 pr_warn(MPT3SAS_FMT
"hard reset: %s\n", ioc
->name
,
7983 (rc
== 0) ? "success" : "failed");
7986 return PCI_ERS_RESULT_RECOVERED
;
7988 return PCI_ERS_RESULT_DISCONNECT
;
7992 * _scsih_pci_resume() - resume normal ops after PCI reset
7993 * @pdev: pointer to PCI device
7995 * Called when the error recovery driver tells us that its
7996 * OK to resume normal operation. Use completion to allow
7997 * halted scsi ops to resume.
8000 _scsih_pci_resume(struct pci_dev
*pdev
)
8002 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8003 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
8005 pr_info(MPT3SAS_FMT
"PCI error: resume callback!!\n", ioc
->name
);
8007 pci_cleanup_aer_uncorrect_error_status(pdev
);
8008 mpt3sas_base_start_watchdog(ioc
);
8009 scsi_unblock_requests(ioc
->shost
);
8013 * _scsih_pci_mmio_enabled - Enable MMIO and dump debug registers
8014 * @pdev: pointer to PCI device
8016 static pci_ers_result_t
8017 _scsih_pci_mmio_enabled(struct pci_dev
*pdev
)
8019 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
8020 struct MPT3SAS_ADAPTER
*ioc
= shost_priv(shost
);
8022 pr_info(MPT3SAS_FMT
"PCI error: mmio enabled callback!!\n",
8025 /* TODO - dump whatever for debugging purposes */
8027 /* Request a slot reset. */
8028 return PCI_ERS_RESULT_NEED_RESET
;
8031 /* raid transport support */
8032 static struct raid_function_template mpt3sas_raid_functions
= {
8033 .cookie
= &scsih_driver_template
,
8034 .is_raid
= _scsih_is_raid
,
8035 .get_resync
= _scsih_get_resync
,
8036 .get_state
= _scsih_get_state
,
8039 static struct pci_error_handlers _scsih_err_handler
= {
8040 .error_detected
= _scsih_pci_error_detected
,
8041 .mmio_enabled
= _scsih_pci_mmio_enabled
,
8042 .slot_reset
= _scsih_pci_slot_reset
,
8043 .resume
= _scsih_pci_resume
,
8046 static struct pci_driver scsih_driver
= {
8047 .name
= MPT3SAS_DRIVER_NAME
,
8048 .id_table
= scsih_pci_table
,
8049 .probe
= _scsih_probe
,
8050 .remove
= _scsih_remove
,
8051 .shutdown
= _scsih_shutdown
,
8052 .err_handler
= &_scsih_err_handler
,
8054 .suspend
= _scsih_suspend
,
8055 .resume
= _scsih_resume
,
8061 * _scsih_init - main entry point for this driver.
8063 * Returns 0 success, anything else error.
8072 pr_info("%s version %s loaded\n", MPT3SAS_DRIVER_NAME
,
8073 MPT3SAS_DRIVER_VERSION
);
8075 mpt3sas_transport_template
=
8076 sas_attach_transport(&mpt3sas_transport_functions
);
8077 if (!mpt3sas_transport_template
)
8080 /* raid transport support */
8081 mpt3sas_raid_template
= raid_class_attach(&mpt3sas_raid_functions
);
8082 if (!mpt3sas_raid_template
) {
8083 sas_release_transport(mpt3sas_transport_template
);
8087 mpt3sas_base_initialize_callback_handler();
8089 /* queuecommand callback hander */
8090 scsi_io_cb_idx
= mpt3sas_base_register_callback_handler(_scsih_io_done
);
8092 /* task managment callback handler */
8093 tm_cb_idx
= mpt3sas_base_register_callback_handler(_scsih_tm_done
);
8095 /* base internal commands callback handler */
8096 base_cb_idx
= mpt3sas_base_register_callback_handler(mpt3sas_base_done
);
8097 port_enable_cb_idx
= mpt3sas_base_register_callback_handler(
8098 mpt3sas_port_enable_done
);
8100 /* transport internal commands callback handler */
8101 transport_cb_idx
= mpt3sas_base_register_callback_handler(
8102 mpt3sas_transport_done
);
8104 /* scsih internal commands callback handler */
8105 scsih_cb_idx
= mpt3sas_base_register_callback_handler(_scsih_done
);
8107 /* configuration page API internal commands callback handler */
8108 config_cb_idx
= mpt3sas_base_register_callback_handler(
8109 mpt3sas_config_done
);
8111 /* ctl module callback handler */
8112 ctl_cb_idx
= mpt3sas_base_register_callback_handler(mpt3sas_ctl_done
);
8114 tm_tr_cb_idx
= mpt3sas_base_register_callback_handler(
8115 _scsih_tm_tr_complete
);
8117 tm_tr_volume_cb_idx
= mpt3sas_base_register_callback_handler(
8118 _scsih_tm_volume_tr_complete
);
8120 tm_sas_control_cb_idx
= mpt3sas_base_register_callback_handler(
8121 _scsih_sas_control_complete
);
8125 error
= pci_register_driver(&scsih_driver
);
8127 /* raid transport support */
8128 raid_class_release(mpt3sas_raid_template
);
8129 sas_release_transport(mpt3sas_transport_template
);
8136 * _scsih_exit - exit point for this driver (when it is a module).
8138 * Returns 0 success, anything else error.
8143 pr_info("mpt3sas version %s unloading\n",
8144 MPT3SAS_DRIVER_VERSION
);
8148 pci_unregister_driver(&scsih_driver
);
8151 mpt3sas_base_release_callback_handler(scsi_io_cb_idx
);
8152 mpt3sas_base_release_callback_handler(tm_cb_idx
);
8153 mpt3sas_base_release_callback_handler(base_cb_idx
);
8154 mpt3sas_base_release_callback_handler(port_enable_cb_idx
);
8155 mpt3sas_base_release_callback_handler(transport_cb_idx
);
8156 mpt3sas_base_release_callback_handler(scsih_cb_idx
);
8157 mpt3sas_base_release_callback_handler(config_cb_idx
);
8158 mpt3sas_base_release_callback_handler(ctl_cb_idx
);
8160 mpt3sas_base_release_callback_handler(tm_tr_cb_idx
);
8161 mpt3sas_base_release_callback_handler(tm_tr_volume_cb_idx
);
8162 mpt3sas_base_release_callback_handler(tm_sas_control_cb_idx
);
8164 /* raid transport support */
8165 raid_class_release(mpt3sas_raid_template
);
8166 sas_release_transport(mpt3sas_transport_template
);
8169 module_init(_scsih_init
);
8170 module_exit(_scsih_exit
);