blob: 6f5e2e471b483784de9c1e4cec85e6da8b921045 [file] [log] [blame]
Eric Moore635374e2009-03-09 01:21:12 -06001/*
2 * Scsi Host Layer for MPT (Message Passing Technology) based controllers
3 *
4 * This code is based on drivers/scsi/mpt2sas/mpt2_scsih.c
Kashyap, Desai19d3ebe2009-09-14 11:01:36 +05305 * Copyright (C) 2007-2009 LSI Corporation
Eric Moore635374e2009-03-09 01:21:12 -06006 * (mailto:DL-MPTFusionLinux@lsi.com)
7 *
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.
12 *
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.
17 *
18 * NO WARRANTY
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.
28
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
37
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,
41 * USA.
42 */
43
44#include <linux/version.h>
45#include <linux/module.h>
46#include <linux/kernel.h>
47#include <linux/init.h>
48#include <linux/errno.h>
49#include <linux/blkdev.h>
50#include <linux/sched.h>
51#include <linux/workqueue.h>
52#include <linux/delay.h>
53#include <linux/pci.h>
54#include <linux/interrupt.h>
55
56#include "mpt2sas_base.h"
57
58MODULE_AUTHOR(MPT2SAS_AUTHOR);
59MODULE_DESCRIPTION(MPT2SAS_DESCRIPTION);
60MODULE_LICENSE("GPL");
61MODULE_VERSION(MPT2SAS_DRIVER_VERSION);
62
63#define RAID_CHANNEL 1
64
65/* forward proto's */
66static void _scsih_expander_node_remove(struct MPT2SAS_ADAPTER *ioc,
67 struct _sas_node *sas_expander);
68static void _firmware_event_work(struct work_struct *work);
69
70/* global parameters */
Eric Mooreba33fad2009-03-15 21:37:18 -060071LIST_HEAD(mpt2sas_ioc_list);
Eric Moore635374e2009-03-09 01:21:12 -060072
73/* local parameters */
Eric Moore635374e2009-03-09 01:21:12 -060074static u8 scsi_io_cb_idx = -1;
75static u8 tm_cb_idx = -1;
76static u8 ctl_cb_idx = -1;
77static u8 base_cb_idx = -1;
78static u8 transport_cb_idx = -1;
79static u8 config_cb_idx = -1;
80static int mpt_ids;
81
Kashyap, Desai77e63ed2009-09-14 11:04:23 +053082static u8 tm_tr_cb_idx = -1 ;
83static u8 tm_sas_control_cb_idx = -1;
84
Eric Moore635374e2009-03-09 01:21:12 -060085/* command line options */
Eric Mooreba33fad2009-03-15 21:37:18 -060086static u32 logging_level;
Eric Moore635374e2009-03-09 01:21:12 -060087MODULE_PARM_DESC(logging_level, " bits for enabling additional logging info "
88 "(default=0)");
89
90/* scsi-mid layer global parmeter is max_report_luns, which is 511 */
91#define MPT2SAS_MAX_LUN (16895)
92static int max_lun = MPT2SAS_MAX_LUN;
93module_param(max_lun, int, 0);
94MODULE_PARM_DESC(max_lun, " max lun, default=16895 ");
95
96/**
97 * struct sense_info - common structure for obtaining sense keys
98 * @skey: sense key
99 * @asc: additional sense code
100 * @ascq: additional sense code qualifier
101 */
102struct sense_info {
103 u8 skey;
104 u8 asc;
105 u8 ascq;
106};
107
108
Eric Moore635374e2009-03-09 01:21:12 -0600109/**
110 * struct fw_event_work - firmware event struct
111 * @list: link list framework
112 * @work: work object (ioc->fault_reset_work_q)
113 * @ioc: per adapter object
114 * @VF_ID: virtual function id
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530115 * @VP_ID: virtual port id
Eric Moore635374e2009-03-09 01:21:12 -0600116 * @host_reset_handling: handling events during host reset
117 * @ignore: flag meaning this event has been marked to ignore
118 * @event: firmware event MPI2_EVENT_XXX defined in mpt2_ioc.h
119 * @event_data: reply event data payload follows
120 *
121 * This object stored on ioc->fw_event_list.
122 */
123struct fw_event_work {
124 struct list_head list;
Eric Moore6f92a7a2009-04-21 15:43:33 -0600125 struct work_struct work;
Eric Moore635374e2009-03-09 01:21:12 -0600126 struct MPT2SAS_ADAPTER *ioc;
127 u8 VF_ID;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530128 u8 VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -0600129 u8 host_reset_handling;
130 u8 ignore;
131 u16 event;
132 void *event_data;
133};
134
135/**
136 * struct _scsi_io_transfer - scsi io transfer
137 * @handle: sas device handle (assigned by firmware)
138 * @is_raid: flag set for hidden raid components
139 * @dir: DMA_TO_DEVICE, DMA_FROM_DEVICE,
140 * @data_length: data transfer length
141 * @data_dma: dma pointer to data
142 * @sense: sense data
143 * @lun: lun number
144 * @cdb_length: cdb length
145 * @cdb: cdb contents
Eric Moore635374e2009-03-09 01:21:12 -0600146 * @timeout: timeout for this command
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530147 * @VF_ID: virtual function id
148 * @VP_ID: virtual port id
149 * @valid_reply: flag set for reply message
Eric Moore635374e2009-03-09 01:21:12 -0600150 * @sense_length: sense length
151 * @ioc_status: ioc status
152 * @scsi_state: scsi state
153 * @scsi_status: scsi staus
154 * @log_info: log information
155 * @transfer_length: data length transfer when there is a reply message
156 *
157 * Used for sending internal scsi commands to devices within this module.
158 * Refer to _scsi_send_scsi_io().
159 */
160struct _scsi_io_transfer {
161 u16 handle;
162 u8 is_raid;
163 enum dma_data_direction dir;
164 u32 data_length;
165 dma_addr_t data_dma;
166 u8 sense[SCSI_SENSE_BUFFERSIZE];
167 u32 lun;
168 u8 cdb_length;
169 u8 cdb[32];
170 u8 timeout;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530171 u8 VF_ID;
172 u8 VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -0600173 u8 valid_reply;
174 /* the following bits are only valid when 'valid_reply = 1' */
175 u32 sense_length;
176 u16 ioc_status;
177 u8 scsi_state;
178 u8 scsi_status;
179 u32 log_info;
180 u32 transfer_length;
181};
182
183/*
184 * The pci device ids are defined in mpi/mpi2_cnfg.h.
185 */
186static struct pci_device_id scsih_pci_table[] = {
187 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2004,
188 PCI_ANY_ID, PCI_ANY_ID },
189 /* Falcon ~ 2008*/
190 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2008,
191 PCI_ANY_ID, PCI_ANY_ID },
192 /* Liberator ~ 2108 */
193 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_1,
194 PCI_ANY_ID, PCI_ANY_ID },
195 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_2,
196 PCI_ANY_ID, PCI_ANY_ID },
197 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_3,
198 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desaidb271362009-09-23 17:24:27 +0530199 /* Meteor ~ 2116 */
Eric Moore635374e2009-03-09 01:21:12 -0600200 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2116_1,
201 PCI_ANY_ID, PCI_ANY_ID },
202 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2116_2,
203 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desaidb271362009-09-23 17:24:27 +0530204 /* Thunderbolt ~ 2208 */
205 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_1,
206 PCI_ANY_ID, PCI_ANY_ID },
207 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_2,
208 PCI_ANY_ID, PCI_ANY_ID },
209 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_3,
210 PCI_ANY_ID, PCI_ANY_ID },
211 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_4,
212 PCI_ANY_ID, PCI_ANY_ID },
213 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_5,
214 PCI_ANY_ID, PCI_ANY_ID },
215 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_6,
216 PCI_ANY_ID, PCI_ANY_ID },
217 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_7,
218 PCI_ANY_ID, PCI_ANY_ID },
219 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_8,
220 PCI_ANY_ID, PCI_ANY_ID },
Eric Moore635374e2009-03-09 01:21:12 -0600221 {0} /* Terminating entry */
222};
223MODULE_DEVICE_TABLE(pci, scsih_pci_table);
224
225/**
Eric Moored5d135b2009-05-18 13:02:08 -0600226 * _scsih_set_debug_level - global setting of ioc->logging_level.
Eric Moore635374e2009-03-09 01:21:12 -0600227 *
228 * Note: The logging levels are defined in mpt2sas_debug.h.
229 */
230static int
Eric Moored5d135b2009-05-18 13:02:08 -0600231_scsih_set_debug_level(const char *val, struct kernel_param *kp)
Eric Moore635374e2009-03-09 01:21:12 -0600232{
233 int ret = param_set_int(val, kp);
234 struct MPT2SAS_ADAPTER *ioc;
235
236 if (ret)
237 return ret;
238
239 printk(KERN_INFO "setting logging_level(0x%08x)\n", logging_level);
Eric Mooreba33fad2009-03-15 21:37:18 -0600240 list_for_each_entry(ioc, &mpt2sas_ioc_list, list)
Eric Moore635374e2009-03-09 01:21:12 -0600241 ioc->logging_level = logging_level;
242 return 0;
243}
Eric Moored5d135b2009-05-18 13:02:08 -0600244module_param_call(logging_level, _scsih_set_debug_level, param_get_int,
Eric Moore635374e2009-03-09 01:21:12 -0600245 &logging_level, 0644);
246
247/**
248 * _scsih_srch_boot_sas_address - search based on sas_address
249 * @sas_address: sas address
250 * @boot_device: boot device object from bios page 2
251 *
252 * Returns 1 when there's a match, 0 means no match.
253 */
254static inline int
255_scsih_srch_boot_sas_address(u64 sas_address,
256 Mpi2BootDeviceSasWwid_t *boot_device)
257{
258 return (sas_address == le64_to_cpu(boot_device->SASAddress)) ? 1 : 0;
259}
260
261/**
262 * _scsih_srch_boot_device_name - search based on device name
263 * @device_name: device name specified in INDENTIFY fram
264 * @boot_device: boot device object from bios page 2
265 *
266 * Returns 1 when there's a match, 0 means no match.
267 */
268static inline int
269_scsih_srch_boot_device_name(u64 device_name,
270 Mpi2BootDeviceDeviceName_t *boot_device)
271{
272 return (device_name == le64_to_cpu(boot_device->DeviceName)) ? 1 : 0;
273}
274
275/**
276 * _scsih_srch_boot_encl_slot - search based on enclosure_logical_id/slot
277 * @enclosure_logical_id: enclosure logical id
278 * @slot_number: slot number
279 * @boot_device: boot device object from bios page 2
280 *
281 * Returns 1 when there's a match, 0 means no match.
282 */
283static inline int
284_scsih_srch_boot_encl_slot(u64 enclosure_logical_id, u16 slot_number,
285 Mpi2BootDeviceEnclosureSlot_t *boot_device)
286{
287 return (enclosure_logical_id == le64_to_cpu(boot_device->
288 EnclosureLogicalID) && slot_number == le16_to_cpu(boot_device->
289 SlotNumber)) ? 1 : 0;
290}
291
292/**
293 * _scsih_is_boot_device - search for matching boot device.
294 * @sas_address: sas address
295 * @device_name: device name specified in INDENTIFY fram
296 * @enclosure_logical_id: enclosure logical id
297 * @slot_number: slot number
298 * @form: specifies boot device form
299 * @boot_device: boot device object from bios page 2
300 *
301 * Returns 1 when there's a match, 0 means no match.
302 */
303static int
304_scsih_is_boot_device(u64 sas_address, u64 device_name,
305 u64 enclosure_logical_id, u16 slot, u8 form,
306 Mpi2BiosPage2BootDevice_t *boot_device)
307{
308 int rc = 0;
309
310 switch (form) {
311 case MPI2_BIOSPAGE2_FORM_SAS_WWID:
312 if (!sas_address)
313 break;
314 rc = _scsih_srch_boot_sas_address(
315 sas_address, &boot_device->SasWwid);
316 break;
317 case MPI2_BIOSPAGE2_FORM_ENCLOSURE_SLOT:
318 if (!enclosure_logical_id)
319 break;
320 rc = _scsih_srch_boot_encl_slot(
321 enclosure_logical_id,
322 slot, &boot_device->EnclosureSlot);
323 break;
324 case MPI2_BIOSPAGE2_FORM_DEVICE_NAME:
325 if (!device_name)
326 break;
327 rc = _scsih_srch_boot_device_name(
328 device_name, &boot_device->DeviceName);
329 break;
330 case MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED:
331 break;
332 }
333
334 return rc;
335}
336
337/**
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530338 * _scsih_get_sas_address - set the sas_address for given device handle
339 * @handle: device handle
340 * @sas_address: sas address
341 *
342 * Returns 0 success, non-zero when failure
343 */
344static int
345_scsih_get_sas_address(struct MPT2SAS_ADAPTER *ioc, u16 handle,
346 u64 *sas_address)
347{
348 Mpi2SasDevicePage0_t sas_device_pg0;
349 Mpi2ConfigReply_t mpi_reply;
350 u32 ioc_status;
351
352 if (handle <= ioc->sas_hba.num_phys) {
353 *sas_address = ioc->sas_hba.sas_address;
354 return 0;
355 } else
356 *sas_address = 0;
357
358 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
359 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
360 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
361 ioc->name, __FILE__, __LINE__, __func__);
362 return -ENXIO;
363 }
364
365 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
366 MPI2_IOCSTATUS_MASK;
367 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
368 printk(MPT2SAS_ERR_FMT "handle(0x%04x), ioc_status(0x%04x)"
369 "\nfailure at %s:%d/%s()!\n", ioc->name, handle, ioc_status,
370 __FILE__, __LINE__, __func__);
371 return -EIO;
372 }
373
374 *sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
375 return 0;
376}
377
378/**
Eric Moore635374e2009-03-09 01:21:12 -0600379 * _scsih_determine_boot_device - determine boot device.
380 * @ioc: per adapter object
381 * @device: either sas_device or raid_device object
382 * @is_raid: [flag] 1 = raid object, 0 = sas object
383 *
384 * Determines whether this device should be first reported device to
385 * to scsi-ml or sas transport, this purpose is for persistant boot device.
386 * There are primary, alternate, and current entries in bios page 2. The order
387 * priority is primary, alternate, then current. This routine saves
388 * the corresponding device object and is_raid flag in the ioc object.
389 * The saved data to be used later in _scsih_probe_boot_devices().
390 */
391static void
392_scsih_determine_boot_device(struct MPT2SAS_ADAPTER *ioc,
393 void *device, u8 is_raid)
394{
395 struct _sas_device *sas_device;
396 struct _raid_device *raid_device;
397 u64 sas_address;
398 u64 device_name;
399 u64 enclosure_logical_id;
400 u16 slot;
401
402 /* only process this function when driver loads */
403 if (!ioc->wait_for_port_enable_to_complete)
404 return;
405
406 if (!is_raid) {
407 sas_device = device;
408 sas_address = sas_device->sas_address;
409 device_name = sas_device->device_name;
410 enclosure_logical_id = sas_device->enclosure_logical_id;
411 slot = sas_device->slot;
412 } else {
413 raid_device = device;
414 sas_address = raid_device->wwid;
415 device_name = 0;
416 enclosure_logical_id = 0;
417 slot = 0;
418 }
419
420 if (!ioc->req_boot_device.device) {
421 if (_scsih_is_boot_device(sas_address, device_name,
422 enclosure_logical_id, slot,
423 (ioc->bios_pg2.ReqBootDeviceForm &
424 MPI2_BIOSPAGE2_FORM_MASK),
425 &ioc->bios_pg2.RequestedBootDevice)) {
426 dinitprintk(ioc, printk(MPT2SAS_DEBUG_FMT
427 "%s: req_boot_device(0x%016llx)\n",
428 ioc->name, __func__,
429 (unsigned long long)sas_address));
430 ioc->req_boot_device.device = device;
431 ioc->req_boot_device.is_raid = is_raid;
432 }
433 }
434
435 if (!ioc->req_alt_boot_device.device) {
436 if (_scsih_is_boot_device(sas_address, device_name,
437 enclosure_logical_id, slot,
438 (ioc->bios_pg2.ReqAltBootDeviceForm &
439 MPI2_BIOSPAGE2_FORM_MASK),
440 &ioc->bios_pg2.RequestedAltBootDevice)) {
441 dinitprintk(ioc, printk(MPT2SAS_DEBUG_FMT
442 "%s: req_alt_boot_device(0x%016llx)\n",
443 ioc->name, __func__,
444 (unsigned long long)sas_address));
445 ioc->req_alt_boot_device.device = device;
446 ioc->req_alt_boot_device.is_raid = is_raid;
447 }
448 }
449
450 if (!ioc->current_boot_device.device) {
451 if (_scsih_is_boot_device(sas_address, device_name,
452 enclosure_logical_id, slot,
453 (ioc->bios_pg2.CurrentBootDeviceForm &
454 MPI2_BIOSPAGE2_FORM_MASK),
455 &ioc->bios_pg2.CurrentBootDevice)) {
456 dinitprintk(ioc, printk(MPT2SAS_DEBUG_FMT
457 "%s: current_boot_device(0x%016llx)\n",
458 ioc->name, __func__,
459 (unsigned long long)sas_address));
460 ioc->current_boot_device.device = device;
461 ioc->current_boot_device.is_raid = is_raid;
462 }
463 }
464}
465
466/**
467 * mpt2sas_scsih_sas_device_find_by_sas_address - sas device search
468 * @ioc: per adapter object
469 * @sas_address: sas address
470 * Context: Calling function should acquire ioc->sas_device_lock
471 *
472 * This searches for sas_device based on sas_address, then return sas_device
473 * object.
474 */
475struct _sas_device *
476mpt2sas_scsih_sas_device_find_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
477 u64 sas_address)
478{
479 struct _sas_device *sas_device, *r;
480
481 r = NULL;
482 /* check the sas_device_init_list */
483 list_for_each_entry(sas_device, &ioc->sas_device_init_list,
484 list) {
485 if (sas_device->sas_address != sas_address)
486 continue;
487 r = sas_device;
488 goto out;
489 }
490
491 /* then check the sas_device_list */
492 list_for_each_entry(sas_device, &ioc->sas_device_list, list) {
493 if (sas_device->sas_address != sas_address)
494 continue;
495 r = sas_device;
496 goto out;
497 }
498 out:
499 return r;
500}
501
502/**
503 * _scsih_sas_device_find_by_handle - sas device search
504 * @ioc: per adapter object
505 * @handle: sas device handle (assigned by firmware)
506 * Context: Calling function should acquire ioc->sas_device_lock
507 *
508 * This searches for sas_device based on sas_address, then return sas_device
509 * object.
510 */
511static struct _sas_device *
512_scsih_sas_device_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
513{
514 struct _sas_device *sas_device, *r;
515
516 r = NULL;
517 if (ioc->wait_for_port_enable_to_complete) {
518 list_for_each_entry(sas_device, &ioc->sas_device_init_list,
519 list) {
520 if (sas_device->handle != handle)
521 continue;
522 r = sas_device;
523 goto out;
524 }
525 } else {
526 list_for_each_entry(sas_device, &ioc->sas_device_list, list) {
527 if (sas_device->handle != handle)
528 continue;
529 r = sas_device;
530 goto out;
531 }
532 }
533
534 out:
535 return r;
536}
537
538/**
539 * _scsih_sas_device_remove - remove sas_device from list.
540 * @ioc: per adapter object
541 * @sas_device: the sas_device object
542 * Context: This function will acquire ioc->sas_device_lock.
543 *
544 * Removing object and freeing associated memory from the ioc->sas_device_list.
545 */
546static void
547_scsih_sas_device_remove(struct MPT2SAS_ADAPTER *ioc,
548 struct _sas_device *sas_device)
549{
550 unsigned long flags;
551
552 spin_lock_irqsave(&ioc->sas_device_lock, flags);
553 list_del(&sas_device->list);
554 memset(sas_device, 0, sizeof(struct _sas_device));
555 kfree(sas_device);
556 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
557}
558
559/**
560 * _scsih_sas_device_add - insert sas_device to the list.
561 * @ioc: per adapter object
562 * @sas_device: the sas_device object
563 * Context: This function will acquire ioc->sas_device_lock.
564 *
565 * Adding new object to the ioc->sas_device_list.
566 */
567static void
568_scsih_sas_device_add(struct MPT2SAS_ADAPTER *ioc,
569 struct _sas_device *sas_device)
570{
571 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -0600572
573 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle"
574 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
575 sas_device->handle, (unsigned long long)sas_device->sas_address));
576
577 spin_lock_irqsave(&ioc->sas_device_lock, flags);
578 list_add_tail(&sas_device->list, &ioc->sas_device_list);
579 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
580
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530581 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
582 sas_device->sas_address_parent))
Eric Moore635374e2009-03-09 01:21:12 -0600583 _scsih_sas_device_remove(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -0600584}
585
586/**
587 * _scsih_sas_device_init_add - insert sas_device to the list.
588 * @ioc: per adapter object
589 * @sas_device: the sas_device object
590 * Context: This function will acquire ioc->sas_device_lock.
591 *
592 * Adding new object at driver load time to the ioc->sas_device_init_list.
593 */
594static void
595_scsih_sas_device_init_add(struct MPT2SAS_ADAPTER *ioc,
596 struct _sas_device *sas_device)
597{
598 unsigned long flags;
599
600 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle"
601 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
602 sas_device->handle, (unsigned long long)sas_device->sas_address));
603
604 spin_lock_irqsave(&ioc->sas_device_lock, flags);
605 list_add_tail(&sas_device->list, &ioc->sas_device_init_list);
606 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
607 _scsih_determine_boot_device(ioc, sas_device, 0);
608}
609
610/**
Eric Moore635374e2009-03-09 01:21:12 -0600611 * _scsih_raid_device_find_by_id - raid device search
612 * @ioc: per adapter object
613 * @id: sas device target id
614 * @channel: sas device channel
615 * Context: Calling function should acquire ioc->raid_device_lock
616 *
617 * This searches for raid_device based on target id, then return raid_device
618 * object.
619 */
620static struct _raid_device *
621_scsih_raid_device_find_by_id(struct MPT2SAS_ADAPTER *ioc, int id, int channel)
622{
623 struct _raid_device *raid_device, *r;
624
625 r = NULL;
626 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
627 if (raid_device->id == id && raid_device->channel == channel) {
628 r = raid_device;
629 goto out;
630 }
631 }
632
633 out:
634 return r;
635}
636
637/**
638 * _scsih_raid_device_find_by_handle - raid device search
639 * @ioc: per adapter object
640 * @handle: sas device handle (assigned by firmware)
641 * Context: Calling function should acquire ioc->raid_device_lock
642 *
643 * This searches for raid_device based on handle, then return raid_device
644 * object.
645 */
646static struct _raid_device *
647_scsih_raid_device_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
648{
649 struct _raid_device *raid_device, *r;
650
651 r = NULL;
652 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
653 if (raid_device->handle != handle)
654 continue;
655 r = raid_device;
656 goto out;
657 }
658
659 out:
660 return r;
661}
662
663/**
664 * _scsih_raid_device_find_by_wwid - raid device search
665 * @ioc: per adapter object
666 * @handle: sas device handle (assigned by firmware)
667 * Context: Calling function should acquire ioc->raid_device_lock
668 *
669 * This searches for raid_device based on wwid, then return raid_device
670 * object.
671 */
672static struct _raid_device *
673_scsih_raid_device_find_by_wwid(struct MPT2SAS_ADAPTER *ioc, u64 wwid)
674{
675 struct _raid_device *raid_device, *r;
676
677 r = NULL;
678 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
679 if (raid_device->wwid != wwid)
680 continue;
681 r = raid_device;
682 goto out;
683 }
684
685 out:
686 return r;
687}
688
689/**
690 * _scsih_raid_device_add - add raid_device object
691 * @ioc: per adapter object
692 * @raid_device: raid_device object
693 *
694 * This is added to the raid_device_list link list.
695 */
696static void
697_scsih_raid_device_add(struct MPT2SAS_ADAPTER *ioc,
698 struct _raid_device *raid_device)
699{
700 unsigned long flags;
701
702 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle"
703 "(0x%04x), wwid(0x%016llx)\n", ioc->name, __func__,
704 raid_device->handle, (unsigned long long)raid_device->wwid));
705
706 spin_lock_irqsave(&ioc->raid_device_lock, flags);
707 list_add_tail(&raid_device->list, &ioc->raid_device_list);
708 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
709}
710
711/**
712 * _scsih_raid_device_remove - delete raid_device object
713 * @ioc: per adapter object
714 * @raid_device: raid_device object
715 *
716 * This is removed from the raid_device_list link list.
717 */
718static void
719_scsih_raid_device_remove(struct MPT2SAS_ADAPTER *ioc,
720 struct _raid_device *raid_device)
721{
722 unsigned long flags;
723
724 spin_lock_irqsave(&ioc->raid_device_lock, flags);
725 list_del(&raid_device->list);
726 memset(raid_device, 0, sizeof(struct _raid_device));
727 kfree(raid_device);
728 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
729}
730
731/**
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530732 * mpt2sas_scsih_expander_find_by_handle - expander device search
733 * @ioc: per adapter object
734 * @handle: expander handle (assigned by firmware)
735 * Context: Calling function should acquire ioc->sas_device_lock
736 *
737 * This searches for expander device based on handle, then returns the
738 * sas_node object.
739 */
740struct _sas_node *
741mpt2sas_scsih_expander_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
742{
743 struct _sas_node *sas_expander, *r;
744
745 r = NULL;
746 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
747 if (sas_expander->handle != handle)
748 continue;
749 r = sas_expander;
750 goto out;
751 }
752 out:
753 return r;
754}
755
756/**
Eric Moore635374e2009-03-09 01:21:12 -0600757 * mpt2sas_scsih_expander_find_by_sas_address - expander device search
758 * @ioc: per adapter object
759 * @sas_address: sas address
760 * Context: Calling function should acquire ioc->sas_node_lock.
761 *
762 * This searches for expander device based on sas_address, then returns the
763 * sas_node object.
764 */
765struct _sas_node *
766mpt2sas_scsih_expander_find_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
767 u64 sas_address)
768{
769 struct _sas_node *sas_expander, *r;
770
771 r = NULL;
772 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
773 if (sas_expander->sas_address != sas_address)
774 continue;
775 r = sas_expander;
776 goto out;
777 }
778 out:
779 return r;
780}
781
782/**
783 * _scsih_expander_node_add - insert expander device to the list.
784 * @ioc: per adapter object
785 * @sas_expander: the sas_device object
786 * Context: This function will acquire ioc->sas_node_lock.
787 *
788 * Adding new object to the ioc->sas_expander_list.
789 *
790 * Return nothing.
791 */
792static void
793_scsih_expander_node_add(struct MPT2SAS_ADAPTER *ioc,
794 struct _sas_node *sas_expander)
795{
796 unsigned long flags;
797
798 spin_lock_irqsave(&ioc->sas_node_lock, flags);
799 list_add_tail(&sas_expander->list, &ioc->sas_expander_list);
800 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
801}
802
803/**
804 * _scsih_is_end_device - determines if device is an end device
805 * @device_info: bitfield providing information about the device.
806 * Context: none
807 *
808 * Returns 1 if end device.
809 */
810static int
811_scsih_is_end_device(u32 device_info)
812{
813 if (device_info & MPI2_SAS_DEVICE_INFO_END_DEVICE &&
814 ((device_info & MPI2_SAS_DEVICE_INFO_SSP_TARGET) |
815 (device_info & MPI2_SAS_DEVICE_INFO_STP_TARGET) |
816 (device_info & MPI2_SAS_DEVICE_INFO_SATA_DEVICE)))
817 return 1;
818 else
819 return 0;
820}
821
822/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530823 * mptscsih_get_scsi_lookup - returns scmd entry
Eric Moore635374e2009-03-09 01:21:12 -0600824 * @ioc: per adapter object
825 * @smid: system request message index
Eric Moore635374e2009-03-09 01:21:12 -0600826 *
827 * Returns the smid stored scmd pointer.
828 */
829static struct scsi_cmnd *
830_scsih_scsi_lookup_get(struct MPT2SAS_ADAPTER *ioc, u16 smid)
831{
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530832 return ioc->scsi_lookup[smid - 1].scmd;
Eric Moore635374e2009-03-09 01:21:12 -0600833}
834
835/**
836 * _scsih_scsi_lookup_find_by_scmd - scmd lookup
837 * @ioc: per adapter object
838 * @smid: system request message index
839 * @scmd: pointer to scsi command object
840 * Context: This function will acquire ioc->scsi_lookup_lock.
841 *
842 * This will search for a scmd pointer in the scsi_lookup array,
843 * returning the revelent smid. A returned value of zero means invalid.
844 */
845static u16
846_scsih_scsi_lookup_find_by_scmd(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd
847 *scmd)
848{
849 u16 smid;
850 unsigned long flags;
851 int i;
852
853 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
854 smid = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530855 for (i = 0; i < ioc->scsiio_depth; i++) {
Eric Moore635374e2009-03-09 01:21:12 -0600856 if (ioc->scsi_lookup[i].scmd == scmd) {
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530857 smid = ioc->scsi_lookup[i].smid;
Eric Moore635374e2009-03-09 01:21:12 -0600858 goto out;
859 }
860 }
861 out:
862 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
863 return smid;
864}
865
866/**
867 * _scsih_scsi_lookup_find_by_target - search for matching channel:id
868 * @ioc: per adapter object
869 * @id: target id
870 * @channel: channel
871 * Context: This function will acquire ioc->scsi_lookup_lock.
872 *
873 * This will search for a matching channel:id in the scsi_lookup array,
874 * returning 1 if found.
875 */
876static u8
877_scsih_scsi_lookup_find_by_target(struct MPT2SAS_ADAPTER *ioc, int id,
878 int channel)
879{
880 u8 found;
881 unsigned long flags;
882 int i;
883
884 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
885 found = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530886 for (i = 0 ; i < ioc->scsiio_depth; i++) {
Eric Moore635374e2009-03-09 01:21:12 -0600887 if (ioc->scsi_lookup[i].scmd &&
888 (ioc->scsi_lookup[i].scmd->device->id == id &&
889 ioc->scsi_lookup[i].scmd->device->channel == channel)) {
890 found = 1;
891 goto out;
892 }
893 }
894 out:
895 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
896 return found;
897}
898
899/**
Eric Moore993e0da2009-05-18 13:00:45 -0600900 * _scsih_scsi_lookup_find_by_lun - search for matching channel:id:lun
901 * @ioc: per adapter object
902 * @id: target id
903 * @lun: lun number
904 * @channel: channel
905 * Context: This function will acquire ioc->scsi_lookup_lock.
906 *
907 * This will search for a matching channel:id:lun in the scsi_lookup array,
908 * returning 1 if found.
909 */
910static u8
911_scsih_scsi_lookup_find_by_lun(struct MPT2SAS_ADAPTER *ioc, int id,
912 unsigned int lun, int channel)
913{
914 u8 found;
915 unsigned long flags;
916 int i;
917
918 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
919 found = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530920 for (i = 0 ; i < ioc->scsiio_depth; i++) {
Eric Moore993e0da2009-05-18 13:00:45 -0600921 if (ioc->scsi_lookup[i].scmd &&
922 (ioc->scsi_lookup[i].scmd->device->id == id &&
923 ioc->scsi_lookup[i].scmd->device->channel == channel &&
924 ioc->scsi_lookup[i].scmd->device->lun == lun)) {
925 found = 1;
926 goto out;
927 }
928 }
929 out:
930 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
931 return found;
932}
933
934/**
Eric Moore635374e2009-03-09 01:21:12 -0600935 * _scsih_get_chain_buffer_dma - obtain block of chains (dma address)
936 * @ioc: per adapter object
937 * @smid: system request message index
938 *
939 * Returns phys pointer to chain buffer.
940 */
941static dma_addr_t
942_scsih_get_chain_buffer_dma(struct MPT2SAS_ADAPTER *ioc, u16 smid)
943{
944 return ioc->chain_dma + ((smid - 1) * (ioc->request_sz *
945 ioc->chains_needed_per_io));
946}
947
948/**
949 * _scsih_get_chain_buffer - obtain block of chains assigned to a mf request
950 * @ioc: per adapter object
951 * @smid: system request message index
952 *
953 * Returns virt pointer to chain buffer.
954 */
955static void *
956_scsih_get_chain_buffer(struct MPT2SAS_ADAPTER *ioc, u16 smid)
957{
958 return (void *)(ioc->chain + ((smid - 1) * (ioc->request_sz *
959 ioc->chains_needed_per_io)));
960}
961
962/**
963 * _scsih_build_scatter_gather - main sg creation routine
964 * @ioc: per adapter object
965 * @scmd: scsi command
966 * @smid: system request message index
967 * Context: none.
968 *
969 * The main routine that builds scatter gather table from a given
970 * scsi request sent via the .queuecommand main handler.
971 *
972 * Returns 0 success, anything else error
973 */
974static int
975_scsih_build_scatter_gather(struct MPT2SAS_ADAPTER *ioc,
976 struct scsi_cmnd *scmd, u16 smid)
977{
978 Mpi2SCSIIORequest_t *mpi_request;
979 dma_addr_t chain_dma;
980 struct scatterlist *sg_scmd;
981 void *sg_local, *chain;
982 u32 chain_offset;
983 u32 chain_length;
984 u32 chain_flags;
985 u32 sges_left;
986 u32 sges_in_segment;
987 u32 sgl_flags;
988 u32 sgl_flags_last_element;
989 u32 sgl_flags_end_buffer;
990
991 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
992
993 /* init scatter gather flags */
994 sgl_flags = MPI2_SGE_FLAGS_SIMPLE_ELEMENT;
995 if (scmd->sc_data_direction == DMA_TO_DEVICE)
996 sgl_flags |= MPI2_SGE_FLAGS_HOST_TO_IOC;
997 sgl_flags_last_element = (sgl_flags | MPI2_SGE_FLAGS_LAST_ELEMENT)
998 << MPI2_SGE_FLAGS_SHIFT;
999 sgl_flags_end_buffer = (sgl_flags | MPI2_SGE_FLAGS_LAST_ELEMENT |
1000 MPI2_SGE_FLAGS_END_OF_BUFFER | MPI2_SGE_FLAGS_END_OF_LIST)
1001 << MPI2_SGE_FLAGS_SHIFT;
1002 sgl_flags = sgl_flags << MPI2_SGE_FLAGS_SHIFT;
1003
1004 sg_scmd = scsi_sglist(scmd);
1005 sges_left = scsi_dma_map(scmd);
1006 if (!sges_left) {
1007 sdev_printk(KERN_ERR, scmd->device, "pci_map_sg"
1008 " failed: request for %d bytes!\n", scsi_bufflen(scmd));
1009 return -ENOMEM;
1010 }
1011
1012 sg_local = &mpi_request->SGL;
1013 sges_in_segment = ioc->max_sges_in_main_message;
1014 if (sges_left <= sges_in_segment)
1015 goto fill_in_last_segment;
1016
1017 mpi_request->ChainOffset = (offsetof(Mpi2SCSIIORequest_t, SGL) +
1018 (sges_in_segment * ioc->sge_size))/4;
1019
1020 /* fill in main message segment when there is a chain following */
1021 while (sges_in_segment) {
1022 if (sges_in_segment == 1)
1023 ioc->base_add_sg_single(sg_local,
1024 sgl_flags_last_element | sg_dma_len(sg_scmd),
1025 sg_dma_address(sg_scmd));
1026 else
1027 ioc->base_add_sg_single(sg_local, sgl_flags |
1028 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1029 sg_scmd = sg_next(sg_scmd);
1030 sg_local += ioc->sge_size;
1031 sges_left--;
1032 sges_in_segment--;
1033 }
1034
1035 /* initializing the chain flags and pointers */
1036 chain_flags = MPI2_SGE_FLAGS_CHAIN_ELEMENT << MPI2_SGE_FLAGS_SHIFT;
1037 chain = _scsih_get_chain_buffer(ioc, smid);
1038 chain_dma = _scsih_get_chain_buffer_dma(ioc, smid);
1039 do {
1040 sges_in_segment = (sges_left <=
1041 ioc->max_sges_in_chain_message) ? sges_left :
1042 ioc->max_sges_in_chain_message;
1043 chain_offset = (sges_left == sges_in_segment) ?
1044 0 : (sges_in_segment * ioc->sge_size)/4;
1045 chain_length = sges_in_segment * ioc->sge_size;
1046 if (chain_offset) {
1047 chain_offset = chain_offset <<
1048 MPI2_SGE_CHAIN_OFFSET_SHIFT;
1049 chain_length += ioc->sge_size;
1050 }
1051 ioc->base_add_sg_single(sg_local, chain_flags | chain_offset |
1052 chain_length, chain_dma);
1053 sg_local = chain;
1054 if (!chain_offset)
1055 goto fill_in_last_segment;
1056
1057 /* fill in chain segments */
1058 while (sges_in_segment) {
1059 if (sges_in_segment == 1)
1060 ioc->base_add_sg_single(sg_local,
1061 sgl_flags_last_element |
1062 sg_dma_len(sg_scmd),
1063 sg_dma_address(sg_scmd));
1064 else
1065 ioc->base_add_sg_single(sg_local, sgl_flags |
1066 sg_dma_len(sg_scmd),
1067 sg_dma_address(sg_scmd));
1068 sg_scmd = sg_next(sg_scmd);
1069 sg_local += ioc->sge_size;
1070 sges_left--;
1071 sges_in_segment--;
1072 }
1073
1074 chain_dma += ioc->request_sz;
1075 chain += ioc->request_sz;
1076 } while (1);
1077
1078
1079 fill_in_last_segment:
1080
1081 /* fill the last segment */
1082 while (sges_left) {
1083 if (sges_left == 1)
1084 ioc->base_add_sg_single(sg_local, sgl_flags_end_buffer |
1085 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1086 else
1087 ioc->base_add_sg_single(sg_local, sgl_flags |
1088 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1089 sg_scmd = sg_next(sg_scmd);
1090 sg_local += ioc->sge_size;
1091 sges_left--;
1092 }
1093
1094 return 0;
1095}
1096
1097/**
Eric Moored5d135b2009-05-18 13:02:08 -06001098 * _scsih_change_queue_depth - setting device queue depth
Eric Moore635374e2009-03-09 01:21:12 -06001099 * @sdev: scsi device struct
1100 * @qdepth: requested queue depth
1101 *
1102 * Returns queue depth.
1103 */
1104static int
Eric Moored5d135b2009-05-18 13:02:08 -06001105_scsih_change_queue_depth(struct scsi_device *sdev, int qdepth)
Eric Moore635374e2009-03-09 01:21:12 -06001106{
1107 struct Scsi_Host *shost = sdev->host;
1108 int max_depth;
1109 int tag_type;
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301110 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1111 struct MPT2SAS_DEVICE *sas_device_priv_data;
1112 struct MPT2SAS_TARGET *sas_target_priv_data;
1113 struct _sas_device *sas_device;
1114 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06001115
1116 max_depth = shost->can_queue;
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301117
1118 /* limit max device queue for SATA to 32 */
1119 sas_device_priv_data = sdev->hostdata;
1120 if (!sas_device_priv_data)
1121 goto not_sata;
1122 sas_target_priv_data = sas_device_priv_data->sas_target;
1123 if (!sas_target_priv_data)
1124 goto not_sata;
1125 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME))
1126 goto not_sata;
1127 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1128 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1129 sas_device_priv_data->sas_target->sas_address);
1130 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1131 if (sas_device && sas_device->device_info &
1132 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1133 max_depth = MPT2SAS_SATA_QUEUE_DEPTH;
1134
1135 not_sata:
1136
Eric Moore635374e2009-03-09 01:21:12 -06001137 if (!sdev->tagged_supported)
1138 max_depth = 1;
1139 if (qdepth > max_depth)
1140 qdepth = max_depth;
1141 tag_type = (qdepth == 1) ? 0 : MSG_SIMPLE_TAG;
1142 scsi_adjust_queue_depth(sdev, tag_type, qdepth);
1143
1144 if (sdev->inquiry_len > 7)
1145 sdev_printk(KERN_INFO, sdev, "qdepth(%d), tagged(%d), "
1146 "simple(%d), ordered(%d), scsi_level(%d), cmd_que(%d)\n",
1147 sdev->queue_depth, sdev->tagged_supported, sdev->simple_tags,
1148 sdev->ordered_tags, sdev->scsi_level,
1149 (sdev->inquiry[7] & 2) >> 1);
1150
1151 return sdev->queue_depth;
1152}
1153
1154/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301155 * _scsih_change_queue_type - changing device queue tag type
Eric Moore635374e2009-03-09 01:21:12 -06001156 * @sdev: scsi device struct
1157 * @tag_type: requested tag type
1158 *
1159 * Returns queue tag type.
1160 */
1161static int
Eric Moored5d135b2009-05-18 13:02:08 -06001162_scsih_change_queue_type(struct scsi_device *sdev, int tag_type)
Eric Moore635374e2009-03-09 01:21:12 -06001163{
1164 if (sdev->tagged_supported) {
1165 scsi_set_tag_type(sdev, tag_type);
1166 if (tag_type)
1167 scsi_activate_tcq(sdev, sdev->queue_depth);
1168 else
1169 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1170 } else
1171 tag_type = 0;
1172
1173 return tag_type;
1174}
1175
1176/**
Eric Moored5d135b2009-05-18 13:02:08 -06001177 * _scsih_target_alloc - target add routine
Eric Moore635374e2009-03-09 01:21:12 -06001178 * @starget: scsi target struct
1179 *
1180 * Returns 0 if ok. Any other return is assumed to be an error and
1181 * the device is ignored.
1182 */
1183static int
Eric Moored5d135b2009-05-18 13:02:08 -06001184_scsih_target_alloc(struct scsi_target *starget)
Eric Moore635374e2009-03-09 01:21:12 -06001185{
1186 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1187 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1188 struct MPT2SAS_TARGET *sas_target_priv_data;
1189 struct _sas_device *sas_device;
1190 struct _raid_device *raid_device;
1191 unsigned long flags;
1192 struct sas_rphy *rphy;
1193
1194 sas_target_priv_data = kzalloc(sizeof(struct scsi_target), GFP_KERNEL);
1195 if (!sas_target_priv_data)
1196 return -ENOMEM;
1197
1198 starget->hostdata = sas_target_priv_data;
1199 sas_target_priv_data->starget = starget;
1200 sas_target_priv_data->handle = MPT2SAS_INVALID_DEVICE_HANDLE;
1201
1202 /* RAID volumes */
1203 if (starget->channel == RAID_CHANNEL) {
1204 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1205 raid_device = _scsih_raid_device_find_by_id(ioc, starget->id,
1206 starget->channel);
1207 if (raid_device) {
1208 sas_target_priv_data->handle = raid_device->handle;
1209 sas_target_priv_data->sas_address = raid_device->wwid;
1210 sas_target_priv_data->flags |= MPT_TARGET_FLAGS_VOLUME;
1211 raid_device->starget = starget;
1212 }
1213 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1214 return 0;
1215 }
1216
1217 /* sas/sata devices */
1218 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1219 rphy = dev_to_rphy(starget->dev.parent);
1220 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1221 rphy->identify.sas_address);
1222
1223 if (sas_device) {
1224 sas_target_priv_data->handle = sas_device->handle;
1225 sas_target_priv_data->sas_address = sas_device->sas_address;
1226 sas_device->starget = starget;
1227 sas_device->id = starget->id;
1228 sas_device->channel = starget->channel;
1229 if (sas_device->hidden_raid_component)
1230 sas_target_priv_data->flags |=
1231 MPT_TARGET_FLAGS_RAID_COMPONENT;
1232 }
1233 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1234
1235 return 0;
1236}
1237
1238/**
Eric Moored5d135b2009-05-18 13:02:08 -06001239 * _scsih_target_destroy - target destroy routine
Eric Moore635374e2009-03-09 01:21:12 -06001240 * @starget: scsi target struct
1241 *
1242 * Returns nothing.
1243 */
1244static void
Eric Moored5d135b2009-05-18 13:02:08 -06001245_scsih_target_destroy(struct scsi_target *starget)
Eric Moore635374e2009-03-09 01:21:12 -06001246{
1247 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1248 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1249 struct MPT2SAS_TARGET *sas_target_priv_data;
1250 struct _sas_device *sas_device;
1251 struct _raid_device *raid_device;
1252 unsigned long flags;
1253 struct sas_rphy *rphy;
1254
1255 sas_target_priv_data = starget->hostdata;
1256 if (!sas_target_priv_data)
1257 return;
1258
1259 if (starget->channel == RAID_CHANNEL) {
1260 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1261 raid_device = _scsih_raid_device_find_by_id(ioc, starget->id,
1262 starget->channel);
1263 if (raid_device) {
1264 raid_device->starget = NULL;
1265 raid_device->sdev = NULL;
1266 }
1267 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1268 goto out;
1269 }
1270
1271 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1272 rphy = dev_to_rphy(starget->dev.parent);
1273 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1274 rphy->identify.sas_address);
Eric Moore8901cbb2009-04-21 15:41:32 -06001275 if (sas_device && (sas_device->starget == starget) &&
1276 (sas_device->id == starget->id) &&
1277 (sas_device->channel == starget->channel))
Eric Moore635374e2009-03-09 01:21:12 -06001278 sas_device->starget = NULL;
1279
1280 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1281
1282 out:
1283 kfree(sas_target_priv_data);
1284 starget->hostdata = NULL;
1285}
1286
1287/**
Eric Moored5d135b2009-05-18 13:02:08 -06001288 * _scsih_slave_alloc - device add routine
Eric Moore635374e2009-03-09 01:21:12 -06001289 * @sdev: scsi device struct
1290 *
1291 * Returns 0 if ok. Any other return is assumed to be an error and
1292 * the device is ignored.
1293 */
1294static int
Eric Moored5d135b2009-05-18 13:02:08 -06001295_scsih_slave_alloc(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001296{
1297 struct Scsi_Host *shost;
1298 struct MPT2SAS_ADAPTER *ioc;
1299 struct MPT2SAS_TARGET *sas_target_priv_data;
1300 struct MPT2SAS_DEVICE *sas_device_priv_data;
1301 struct scsi_target *starget;
1302 struct _raid_device *raid_device;
1303 struct _sas_device *sas_device;
1304 unsigned long flags;
1305
1306 sas_device_priv_data = kzalloc(sizeof(struct scsi_device), GFP_KERNEL);
1307 if (!sas_device_priv_data)
1308 return -ENOMEM;
1309
1310 sas_device_priv_data->lun = sdev->lun;
1311 sas_device_priv_data->flags = MPT_DEVICE_FLAGS_INIT;
1312
1313 starget = scsi_target(sdev);
1314 sas_target_priv_data = starget->hostdata;
1315 sas_target_priv_data->num_luns++;
1316 sas_device_priv_data->sas_target = sas_target_priv_data;
1317 sdev->hostdata = sas_device_priv_data;
1318 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT))
1319 sdev->no_uld_attach = 1;
1320
1321 shost = dev_to_shost(&starget->dev);
1322 ioc = shost_priv(shost);
1323 if (starget->channel == RAID_CHANNEL) {
1324 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1325 raid_device = _scsih_raid_device_find_by_id(ioc,
1326 starget->id, starget->channel);
1327 if (raid_device)
1328 raid_device->sdev = sdev; /* raid is single lun */
1329 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1330 } else {
1331 /* set TLR bit for SSP devices */
1332 if (!(ioc->facts.IOCCapabilities &
1333 MPI2_IOCFACTS_CAPABILITY_TLR))
1334 goto out;
1335 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1336 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1337 sas_device_priv_data->sas_target->sas_address);
1338 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1339 if (sas_device && sas_device->device_info &
1340 MPI2_SAS_DEVICE_INFO_SSP_TARGET)
1341 sas_device_priv_data->flags |= MPT_DEVICE_TLR_ON;
1342 }
1343
1344 out:
1345 return 0;
1346}
1347
1348/**
Eric Moored5d135b2009-05-18 13:02:08 -06001349 * _scsih_slave_destroy - device destroy routine
Eric Moore635374e2009-03-09 01:21:12 -06001350 * @sdev: scsi device struct
1351 *
1352 * Returns nothing.
1353 */
1354static void
Eric Moored5d135b2009-05-18 13:02:08 -06001355_scsih_slave_destroy(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001356{
1357 struct MPT2SAS_TARGET *sas_target_priv_data;
1358 struct scsi_target *starget;
1359
1360 if (!sdev->hostdata)
1361 return;
1362
1363 starget = scsi_target(sdev);
1364 sas_target_priv_data = starget->hostdata;
1365 sas_target_priv_data->num_luns--;
1366 kfree(sdev->hostdata);
1367 sdev->hostdata = NULL;
1368}
1369
1370/**
Eric Moored5d135b2009-05-18 13:02:08 -06001371 * _scsih_display_sata_capabilities - sata capabilities
Eric Moore635374e2009-03-09 01:21:12 -06001372 * @ioc: per adapter object
1373 * @sas_device: the sas_device object
1374 * @sdev: scsi device struct
1375 */
1376static void
Eric Moored5d135b2009-05-18 13:02:08 -06001377_scsih_display_sata_capabilities(struct MPT2SAS_ADAPTER *ioc,
Eric Moore635374e2009-03-09 01:21:12 -06001378 struct _sas_device *sas_device, struct scsi_device *sdev)
1379{
1380 Mpi2ConfigReply_t mpi_reply;
1381 Mpi2SasDevicePage0_t sas_device_pg0;
1382 u32 ioc_status;
1383 u16 flags;
1384 u32 device_info;
1385
1386 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
1387 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, sas_device->handle))) {
1388 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1389 ioc->name, __FILE__, __LINE__, __func__);
1390 return;
1391 }
1392
1393 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1394 MPI2_IOCSTATUS_MASK;
1395 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
1396 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1397 ioc->name, __FILE__, __LINE__, __func__);
1398 return;
1399 }
1400
1401 flags = le16_to_cpu(sas_device_pg0.Flags);
1402 device_info = le16_to_cpu(sas_device_pg0.DeviceInfo);
1403
1404 sdev_printk(KERN_INFO, sdev,
1405 "atapi(%s), ncq(%s), asyn_notify(%s), smart(%s), fua(%s), "
1406 "sw_preserve(%s)\n",
1407 (device_info & MPI2_SAS_DEVICE_INFO_ATAPI_DEVICE) ? "y" : "n",
1408 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_NCQ_SUPPORTED) ? "y" : "n",
1409 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_ASYNCHRONOUS_NOTIFY) ? "y" :
1410 "n",
1411 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_SMART_SUPPORTED) ? "y" : "n",
1412 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_FUA_SUPPORTED) ? "y" : "n",
1413 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_SW_PRESERVE) ? "y" : "n");
1414}
1415
1416/**
1417 * _scsih_get_volume_capabilities - volume capabilities
1418 * @ioc: per adapter object
1419 * @sas_device: the raid_device object
1420 */
1421static void
1422_scsih_get_volume_capabilities(struct MPT2SAS_ADAPTER *ioc,
1423 struct _raid_device *raid_device)
1424{
1425 Mpi2RaidVolPage0_t *vol_pg0;
1426 Mpi2RaidPhysDiskPage0_t pd_pg0;
1427 Mpi2SasDevicePage0_t sas_device_pg0;
1428 Mpi2ConfigReply_t mpi_reply;
1429 u16 sz;
1430 u8 num_pds;
1431
1432 if ((mpt2sas_config_get_number_pds(ioc, raid_device->handle,
1433 &num_pds)) || !num_pds) {
1434 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1435 ioc->name, __FILE__, __LINE__, __func__);
1436 return;
1437 }
1438
1439 raid_device->num_pds = num_pds;
1440 sz = offsetof(Mpi2RaidVolPage0_t, PhysDisk) + (num_pds *
1441 sizeof(Mpi2RaidVol0PhysDisk_t));
1442 vol_pg0 = kzalloc(sz, GFP_KERNEL);
1443 if (!vol_pg0) {
1444 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1445 ioc->name, __FILE__, __LINE__, __func__);
1446 return;
1447 }
1448
1449 if ((mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, vol_pg0,
1450 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle, sz))) {
1451 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1452 ioc->name, __FILE__, __LINE__, __func__);
1453 kfree(vol_pg0);
1454 return;
1455 }
1456
1457 raid_device->volume_type = vol_pg0->VolumeType;
1458
1459 /* figure out what the underlying devices are by
1460 * obtaining the device_info bits for the 1st device
1461 */
1462 if (!(mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
1463 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM,
1464 vol_pg0->PhysDisk[0].PhysDiskNum))) {
1465 if (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
1466 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
1467 le16_to_cpu(pd_pg0.DevHandle)))) {
1468 raid_device->device_info =
1469 le32_to_cpu(sas_device_pg0.DeviceInfo);
1470 }
1471 }
1472
1473 kfree(vol_pg0);
1474}
1475
1476/**
Eric Moored5d135b2009-05-18 13:02:08 -06001477 * _scsih_slave_configure - device configure routine.
Eric Moore635374e2009-03-09 01:21:12 -06001478 * @sdev: scsi device struct
1479 *
1480 * Returns 0 if ok. Any other return is assumed to be an error and
1481 * the device is ignored.
1482 */
1483static int
Eric Moored5d135b2009-05-18 13:02:08 -06001484_scsih_slave_configure(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001485{
1486 struct Scsi_Host *shost = sdev->host;
1487 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1488 struct MPT2SAS_DEVICE *sas_device_priv_data;
1489 struct MPT2SAS_TARGET *sas_target_priv_data;
1490 struct _sas_device *sas_device;
1491 struct _raid_device *raid_device;
1492 unsigned long flags;
1493 int qdepth;
1494 u8 ssp_target = 0;
1495 char *ds = "";
1496 char *r_level = "";
1497
1498 qdepth = 1;
1499 sas_device_priv_data = sdev->hostdata;
1500 sas_device_priv_data->configured_lun = 1;
1501 sas_device_priv_data->flags &= ~MPT_DEVICE_FLAGS_INIT;
1502 sas_target_priv_data = sas_device_priv_data->sas_target;
1503
1504 /* raid volume handling */
1505 if (sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME) {
1506
1507 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1508 raid_device = _scsih_raid_device_find_by_handle(ioc,
1509 sas_target_priv_data->handle);
1510 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1511 if (!raid_device) {
1512 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1513 ioc->name, __FILE__, __LINE__, __func__);
1514 return 0;
1515 }
1516
1517 _scsih_get_volume_capabilities(ioc, raid_device);
1518
1519 /* RAID Queue Depth Support
1520 * IS volume = underlying qdepth of drive type, either
1521 * MPT2SAS_SAS_QUEUE_DEPTH or MPT2SAS_SATA_QUEUE_DEPTH
1522 * IM/IME/R10 = 128 (MPT2SAS_RAID_QUEUE_DEPTH)
1523 */
1524 if (raid_device->device_info &
1525 MPI2_SAS_DEVICE_INFO_SSP_TARGET) {
1526 qdepth = MPT2SAS_SAS_QUEUE_DEPTH;
1527 ds = "SSP";
1528 } else {
1529 qdepth = MPT2SAS_SATA_QUEUE_DEPTH;
1530 if (raid_device->device_info &
1531 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1532 ds = "SATA";
1533 else
1534 ds = "STP";
1535 }
1536
1537 switch (raid_device->volume_type) {
1538 case MPI2_RAID_VOL_TYPE_RAID0:
1539 r_level = "RAID0";
1540 break;
1541 case MPI2_RAID_VOL_TYPE_RAID1E:
1542 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
Kashyap, Desaied79f122009-08-20 13:23:49 +05301543 if (ioc->manu_pg10.OEMIdentifier &&
1544 (ioc->manu_pg10.GenericFlags0 &
1545 MFG10_GF0_R10_DISPLAY) &&
1546 !(raid_device->num_pds % 2))
1547 r_level = "RAID10";
1548 else
1549 r_level = "RAID1E";
Eric Moore635374e2009-03-09 01:21:12 -06001550 break;
1551 case MPI2_RAID_VOL_TYPE_RAID1:
1552 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
1553 r_level = "RAID1";
1554 break;
1555 case MPI2_RAID_VOL_TYPE_RAID10:
1556 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
1557 r_level = "RAID10";
1558 break;
1559 case MPI2_RAID_VOL_TYPE_UNKNOWN:
1560 default:
1561 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
1562 r_level = "RAIDX";
1563 break;
1564 }
1565
1566 sdev_printk(KERN_INFO, sdev, "%s: "
1567 "handle(0x%04x), wwid(0x%016llx), pd_count(%d), type(%s)\n",
1568 r_level, raid_device->handle,
1569 (unsigned long long)raid_device->wwid,
1570 raid_device->num_pds, ds);
Eric Moored5d135b2009-05-18 13:02:08 -06001571 _scsih_change_queue_depth(sdev, qdepth);
Eric Moore635374e2009-03-09 01:21:12 -06001572 return 0;
1573 }
1574
1575 /* non-raid handling */
1576 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1577 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1578 sas_device_priv_data->sas_target->sas_address);
1579 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1580 if (sas_device) {
1581 if (sas_target_priv_data->flags &
1582 MPT_TARGET_FLAGS_RAID_COMPONENT) {
1583 mpt2sas_config_get_volume_handle(ioc,
1584 sas_device->handle, &sas_device->volume_handle);
1585 mpt2sas_config_get_volume_wwid(ioc,
1586 sas_device->volume_handle,
1587 &sas_device->volume_wwid);
1588 }
1589 if (sas_device->device_info & MPI2_SAS_DEVICE_INFO_SSP_TARGET) {
1590 qdepth = MPT2SAS_SAS_QUEUE_DEPTH;
1591 ssp_target = 1;
1592 ds = "SSP";
1593 } else {
1594 qdepth = MPT2SAS_SATA_QUEUE_DEPTH;
1595 if (sas_device->device_info &
1596 MPI2_SAS_DEVICE_INFO_STP_TARGET)
1597 ds = "STP";
1598 else if (sas_device->device_info &
1599 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1600 ds = "SATA";
1601 }
1602
1603 sdev_printk(KERN_INFO, sdev, "%s: handle(0x%04x), "
1604 "sas_addr(0x%016llx), device_name(0x%016llx)\n",
1605 ds, sas_device->handle,
1606 (unsigned long long)sas_device->sas_address,
1607 (unsigned long long)sas_device->device_name);
1608 sdev_printk(KERN_INFO, sdev, "%s: "
1609 "enclosure_logical_id(0x%016llx), slot(%d)\n", ds,
1610 (unsigned long long) sas_device->enclosure_logical_id,
1611 sas_device->slot);
1612
1613 if (!ssp_target)
Eric Moored5d135b2009-05-18 13:02:08 -06001614 _scsih_display_sata_capabilities(ioc, sas_device, sdev);
Eric Moore635374e2009-03-09 01:21:12 -06001615 }
1616
Eric Moored5d135b2009-05-18 13:02:08 -06001617 _scsih_change_queue_depth(sdev, qdepth);
Eric Moore635374e2009-03-09 01:21:12 -06001618
1619 if (ssp_target)
1620 sas_read_port_mode_page(sdev);
1621 return 0;
1622}
1623
1624/**
Eric Moored5d135b2009-05-18 13:02:08 -06001625 * _scsih_bios_param - fetch head, sector, cylinder info for a disk
Eric Moore635374e2009-03-09 01:21:12 -06001626 * @sdev: scsi device struct
1627 * @bdev: pointer to block device context
1628 * @capacity: device size (in 512 byte sectors)
1629 * @params: three element array to place output:
1630 * params[0] number of heads (max 255)
1631 * params[1] number of sectors (max 63)
1632 * params[2] number of cylinders
1633 *
1634 * Return nothing.
1635 */
1636static int
Eric Moored5d135b2009-05-18 13:02:08 -06001637_scsih_bios_param(struct scsi_device *sdev, struct block_device *bdev,
Eric Moore635374e2009-03-09 01:21:12 -06001638 sector_t capacity, int params[])
1639{
1640 int heads;
1641 int sectors;
1642 sector_t cylinders;
1643 ulong dummy;
1644
1645 heads = 64;
1646 sectors = 32;
1647
1648 dummy = heads * sectors;
1649 cylinders = capacity;
1650 sector_div(cylinders, dummy);
1651
1652 /*
1653 * Handle extended translation size for logical drives
1654 * > 1Gb
1655 */
1656 if ((ulong)capacity >= 0x200000) {
1657 heads = 255;
1658 sectors = 63;
1659 dummy = heads * sectors;
1660 cylinders = capacity;
1661 sector_div(cylinders, dummy);
1662 }
1663
1664 /* return result */
1665 params[0] = heads;
1666 params[1] = sectors;
1667 params[2] = cylinders;
1668
1669 return 0;
1670}
1671
1672/**
1673 * _scsih_response_code - translation of device response code
1674 * @ioc: per adapter object
1675 * @response_code: response code returned by the device
1676 *
1677 * Return nothing.
1678 */
1679static void
1680_scsih_response_code(struct MPT2SAS_ADAPTER *ioc, u8 response_code)
1681{
1682 char *desc;
1683
1684 switch (response_code) {
1685 case MPI2_SCSITASKMGMT_RSP_TM_COMPLETE:
1686 desc = "task management request completed";
1687 break;
1688 case MPI2_SCSITASKMGMT_RSP_INVALID_FRAME:
1689 desc = "invalid frame";
1690 break;
1691 case MPI2_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED:
1692 desc = "task management request not supported";
1693 break;
1694 case MPI2_SCSITASKMGMT_RSP_TM_FAILED:
1695 desc = "task management request failed";
1696 break;
1697 case MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED:
1698 desc = "task management request succeeded";
1699 break;
1700 case MPI2_SCSITASKMGMT_RSP_TM_INVALID_LUN:
1701 desc = "invalid lun";
1702 break;
1703 case 0xA:
1704 desc = "overlapped tag attempted";
1705 break;
1706 case MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC:
1707 desc = "task queued, however not sent to target";
1708 break;
1709 default:
1710 desc = "unknown";
1711 break;
1712 }
1713 printk(MPT2SAS_WARN_FMT "response_code(0x%01x): %s\n",
1714 ioc->name, response_code, desc);
1715}
1716
1717/**
Eric Moored5d135b2009-05-18 13:02:08 -06001718 * _scsih_tm_done - tm completion routine
Eric Moore635374e2009-03-09 01:21:12 -06001719 * @ioc: per adapter object
1720 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301721 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06001722 * @reply: reply message frame(lower 32bit addr)
1723 * Context: none.
1724 *
1725 * The callback handler when using scsih_issue_tm.
1726 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301727 * Return 1 meaning mf should be freed from _base_interrupt
1728 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06001729 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301730static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301731_scsih_tm_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06001732{
1733 MPI2DefaultReply_t *mpi_reply;
1734
1735 if (ioc->tm_cmds.status == MPT2_CMD_NOT_USED)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301736 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001737 if (ioc->tm_cmds.smid != smid)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301738 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001739 ioc->tm_cmds.status |= MPT2_CMD_COMPLETE;
1740 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
1741 if (mpi_reply) {
1742 memcpy(ioc->tm_cmds.reply, mpi_reply, mpi_reply->MsgLength*4);
1743 ioc->tm_cmds.status |= MPT2_CMD_REPLY_VALID;
1744 }
1745 ioc->tm_cmds.status &= ~MPT2_CMD_PENDING;
1746 complete(&ioc->tm_cmds.done);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301747 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001748}
1749
1750/**
1751 * mpt2sas_scsih_set_tm_flag - set per target tm_busy
1752 * @ioc: per adapter object
1753 * @handle: device handle
1754 *
1755 * During taskmangement request, we need to freeze the device queue.
1756 */
1757void
1758mpt2sas_scsih_set_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
1759{
1760 struct MPT2SAS_DEVICE *sas_device_priv_data;
1761 struct scsi_device *sdev;
1762 u8 skip = 0;
1763
1764 shost_for_each_device(sdev, ioc->shost) {
1765 if (skip)
1766 continue;
1767 sas_device_priv_data = sdev->hostdata;
1768 if (!sas_device_priv_data)
1769 continue;
1770 if (sas_device_priv_data->sas_target->handle == handle) {
1771 sas_device_priv_data->sas_target->tm_busy = 1;
1772 skip = 1;
1773 ioc->ignore_loginfos = 1;
1774 }
1775 }
1776}
1777
1778/**
1779 * mpt2sas_scsih_clear_tm_flag - clear per target tm_busy
1780 * @ioc: per adapter object
1781 * @handle: device handle
1782 *
1783 * During taskmangement request, we need to freeze the device queue.
1784 */
1785void
1786mpt2sas_scsih_clear_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
1787{
1788 struct MPT2SAS_DEVICE *sas_device_priv_data;
1789 struct scsi_device *sdev;
1790 u8 skip = 0;
1791
1792 shost_for_each_device(sdev, ioc->shost) {
1793 if (skip)
1794 continue;
1795 sas_device_priv_data = sdev->hostdata;
1796 if (!sas_device_priv_data)
1797 continue;
1798 if (sas_device_priv_data->sas_target->handle == handle) {
1799 sas_device_priv_data->sas_target->tm_busy = 0;
1800 skip = 1;
1801 ioc->ignore_loginfos = 0;
1802 }
1803 }
1804}
1805
1806/**
1807 * mpt2sas_scsih_issue_tm - main routine for sending tm requests
1808 * @ioc: per adapter struct
1809 * @device_handle: device handle
1810 * @lun: lun number
1811 * @type: MPI2_SCSITASKMGMT_TASKTYPE__XXX (defined in mpi2_init.h)
1812 * @smid_task: smid assigned to the task
1813 * @timeout: timeout in seconds
1814 * Context: The calling function needs to acquire the tm_cmds.mutex
1815 *
1816 * A generic API for sending task management requests to firmware.
1817 *
1818 * The ioc->tm_cmds.status flag should be MPT2_CMD_NOT_USED before calling
1819 * this API.
1820 *
1821 * The callback index is set inside `ioc->tm_cb_idx`.
1822 *
1823 * Return nothing.
1824 */
1825void
1826mpt2sas_scsih_issue_tm(struct MPT2SAS_ADAPTER *ioc, u16 handle, uint lun,
1827 u8 type, u16 smid_task, ulong timeout)
1828{
1829 Mpi2SCSITaskManagementRequest_t *mpi_request;
1830 Mpi2SCSITaskManagementReply_t *mpi_reply;
1831 u16 smid = 0;
1832 u32 ioc_state;
1833 unsigned long timeleft;
Eric Moore635374e2009-03-09 01:21:12 -06001834
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05301835 if (ioc->tm_cmds.status != MPT2_CMD_NOT_USED) {
1836 printk(MPT2SAS_INFO_FMT "%s: tm_cmd busy!!!\n",
1837 __func__, ioc->name);
1838 return;
1839 }
1840
1841 if (ioc->shost_recovery) {
Eric Moore635374e2009-03-09 01:21:12 -06001842 printk(MPT2SAS_INFO_FMT "%s: host reset in progress!\n",
1843 __func__, ioc->name);
1844 return;
1845 }
Eric Moore635374e2009-03-09 01:21:12 -06001846
1847 ioc_state = mpt2sas_base_get_iocstate(ioc, 0);
1848 if (ioc_state & MPI2_DOORBELL_USED) {
1849 dhsprintk(ioc, printk(MPT2SAS_DEBUG_FMT "unexpected doorbell "
1850 "active!\n", ioc->name));
1851 goto issue_host_reset;
1852 }
1853
1854 if ((ioc_state & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) {
1855 mpt2sas_base_fault_info(ioc, ioc_state &
1856 MPI2_DOORBELL_DATA_MASK);
1857 goto issue_host_reset;
1858 }
1859
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301860 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06001861 if (!smid) {
1862 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
1863 ioc->name, __func__);
1864 return;
1865 }
1866
1867 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "sending tm: handle(0x%04x),"
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301868 " task_type(0x%02x), smid(%d)\n", ioc->name, handle, type,
1869 smid_task));
Eric Moore635374e2009-03-09 01:21:12 -06001870 ioc->tm_cmds.status = MPT2_CMD_PENDING;
1871 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
1872 ioc->tm_cmds.smid = smid;
1873 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
1874 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
1875 mpi_request->DevHandle = cpu_to_le16(handle);
1876 mpi_request->TaskType = type;
1877 mpi_request->TaskMID = cpu_to_le16(smid_task);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301878 mpi_request->VP_ID = 0; /* TODO */
1879 mpi_request->VF_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06001880 int_to_scsilun(lun, (struct scsi_lun *)mpi_request->LUN);
1881 mpt2sas_scsih_set_tm_flag(ioc, handle);
Kashyap, Desai5b768582009-08-20 13:24:31 +05301882 init_completion(&ioc->tm_cmds.done);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301883 mpt2sas_base_put_smid_hi_priority(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06001884 timeleft = wait_for_completion_timeout(&ioc->tm_cmds.done, timeout*HZ);
1885 mpt2sas_scsih_clear_tm_flag(ioc, handle);
1886 if (!(ioc->tm_cmds.status & MPT2_CMD_COMPLETE)) {
1887 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
1888 ioc->name, __func__);
1889 _debug_dump_mf(mpi_request,
1890 sizeof(Mpi2SCSITaskManagementRequest_t)/4);
1891 if (!(ioc->tm_cmds.status & MPT2_CMD_RESET))
1892 goto issue_host_reset;
1893 }
1894
1895 if (ioc->tm_cmds.status & MPT2_CMD_REPLY_VALID) {
1896 mpi_reply = ioc->tm_cmds.reply;
1897 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "complete tm: "
1898 "ioc_status(0x%04x), loginfo(0x%08x), term_count(0x%08x)\n",
1899 ioc->name, le16_to_cpu(mpi_reply->IOCStatus),
1900 le32_to_cpu(mpi_reply->IOCLogInfo),
1901 le32_to_cpu(mpi_reply->TerminationCount)));
1902 if (ioc->logging_level & MPT_DEBUG_TM)
1903 _scsih_response_code(ioc, mpi_reply->ResponseCode);
1904 }
1905 return;
1906 issue_host_reset:
1907 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP, FORCE_BIG_HAMMER);
1908}
1909
1910/**
Eric Moored5d135b2009-05-18 13:02:08 -06001911 * _scsih_abort - eh threads main abort routine
Eric Moore635374e2009-03-09 01:21:12 -06001912 * @sdev: scsi device struct
1913 *
1914 * Returns SUCCESS if command aborted else FAILED
1915 */
1916static int
Eric Moored5d135b2009-05-18 13:02:08 -06001917_scsih_abort(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06001918{
1919 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
1920 struct MPT2SAS_DEVICE *sas_device_priv_data;
1921 u16 smid;
1922 u16 handle;
1923 int r;
1924 struct scsi_cmnd *scmd_lookup;
1925
1926 printk(MPT2SAS_INFO_FMT "attempting task abort! scmd(%p)\n",
1927 ioc->name, scmd);
1928 scsi_print_command(scmd);
1929
1930 sas_device_priv_data = scmd->device->hostdata;
1931 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
1932 printk(MPT2SAS_INFO_FMT "device been deleted! scmd(%p)\n",
1933 ioc->name, scmd);
1934 scmd->result = DID_NO_CONNECT << 16;
1935 scmd->scsi_done(scmd);
1936 r = SUCCESS;
1937 goto out;
1938 }
1939
1940 /* search for the command */
1941 smid = _scsih_scsi_lookup_find_by_scmd(ioc, scmd);
1942 if (!smid) {
1943 scmd->result = DID_RESET << 16;
1944 r = SUCCESS;
1945 goto out;
1946 }
1947
1948 /* for hidden raid components and volumes this is not supported */
1949 if (sas_device_priv_data->sas_target->flags &
1950 MPT_TARGET_FLAGS_RAID_COMPONENT ||
1951 sas_device_priv_data->sas_target->flags & MPT_TARGET_FLAGS_VOLUME) {
1952 scmd->result = DID_RESET << 16;
1953 r = FAILED;
1954 goto out;
1955 }
1956
Kashyap, Desaifa7f3162009-09-23 17:26:58 +05301957 mpt2sas_halt_firmware(ioc);
1958
Eric Moore635374e2009-03-09 01:21:12 -06001959 mutex_lock(&ioc->tm_cmds.mutex);
1960 handle = sas_device_priv_data->sas_target->handle;
1961 mpt2sas_scsih_issue_tm(ioc, handle, sas_device_priv_data->lun,
1962 MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK, smid, 30);
1963
1964 /* sanity check - see whether command actually completed */
1965 scmd_lookup = _scsih_scsi_lookup_get(ioc, smid);
1966 if (scmd_lookup && (scmd_lookup->serial_number == scmd->serial_number))
1967 r = FAILED;
1968 else
1969 r = SUCCESS;
1970 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
1971 mutex_unlock(&ioc->tm_cmds.mutex);
1972
1973 out:
1974 printk(MPT2SAS_INFO_FMT "task abort: %s scmd(%p)\n",
1975 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
1976 return r;
1977}
1978
Eric Moore635374e2009-03-09 01:21:12 -06001979/**
Eric Moored5d135b2009-05-18 13:02:08 -06001980 * _scsih_dev_reset - eh threads main device reset routine
Eric Moore635374e2009-03-09 01:21:12 -06001981 * @sdev: scsi device struct
1982 *
1983 * Returns SUCCESS if command aborted else FAILED
1984 */
1985static int
Eric Moored5d135b2009-05-18 13:02:08 -06001986_scsih_dev_reset(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06001987{
1988 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
1989 struct MPT2SAS_DEVICE *sas_device_priv_data;
1990 struct _sas_device *sas_device;
1991 unsigned long flags;
1992 u16 handle;
1993 int r;
1994
Eric Moore993e0da2009-05-18 13:00:45 -06001995 printk(MPT2SAS_INFO_FMT "attempting device reset! scmd(%p)\n",
Eric Moore635374e2009-03-09 01:21:12 -06001996 ioc->name, scmd);
1997 scsi_print_command(scmd);
1998
1999 sas_device_priv_data = scmd->device->hostdata;
2000 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
2001 printk(MPT2SAS_INFO_FMT "device been deleted! scmd(%p)\n",
2002 ioc->name, scmd);
2003 scmd->result = DID_NO_CONNECT << 16;
2004 scmd->scsi_done(scmd);
2005 r = SUCCESS;
2006 goto out;
2007 }
2008
2009 /* for hidden raid components obtain the volume_handle */
2010 handle = 0;
2011 if (sas_device_priv_data->sas_target->flags &
2012 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2013 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2014 sas_device = _scsih_sas_device_find_by_handle(ioc,
2015 sas_device_priv_data->sas_target->handle);
2016 if (sas_device)
2017 handle = sas_device->volume_handle;
2018 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2019 } else
2020 handle = sas_device_priv_data->sas_target->handle;
2021
2022 if (!handle) {
2023 scmd->result = DID_RESET << 16;
2024 r = FAILED;
2025 goto out;
2026 }
2027
2028 mutex_lock(&ioc->tm_cmds.mutex);
2029 mpt2sas_scsih_issue_tm(ioc, handle, 0,
Eric Moore993e0da2009-05-18 13:00:45 -06002030 MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET, scmd->device->lun,
2031 30);
2032
2033 /*
2034 * sanity check see whether all commands to this device been
2035 * completed
2036 */
2037 if (_scsih_scsi_lookup_find_by_lun(ioc, scmd->device->id,
2038 scmd->device->lun, scmd->device->channel))
2039 r = FAILED;
2040 else
2041 r = SUCCESS;
2042 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
2043 mutex_unlock(&ioc->tm_cmds.mutex);
2044
2045 out:
2046 printk(MPT2SAS_INFO_FMT "device reset: %s scmd(%p)\n",
2047 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2048 return r;
2049}
2050
2051/**
Eric Moored5d135b2009-05-18 13:02:08 -06002052 * _scsih_target_reset - eh threads main target reset routine
Eric Moore993e0da2009-05-18 13:00:45 -06002053 * @sdev: scsi device struct
2054 *
2055 * Returns SUCCESS if command aborted else FAILED
2056 */
2057static int
Eric Moored5d135b2009-05-18 13:02:08 -06002058_scsih_target_reset(struct scsi_cmnd *scmd)
Eric Moore993e0da2009-05-18 13:00:45 -06002059{
2060 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2061 struct MPT2SAS_DEVICE *sas_device_priv_data;
2062 struct _sas_device *sas_device;
2063 unsigned long flags;
2064 u16 handle;
2065 int r;
2066
2067 printk(MPT2SAS_INFO_FMT "attempting target reset! scmd(%p)\n",
2068 ioc->name, scmd);
2069 scsi_print_command(scmd);
2070
2071 sas_device_priv_data = scmd->device->hostdata;
2072 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
2073 printk(MPT2SAS_INFO_FMT "target been deleted! scmd(%p)\n",
2074 ioc->name, scmd);
2075 scmd->result = DID_NO_CONNECT << 16;
2076 scmd->scsi_done(scmd);
2077 r = SUCCESS;
2078 goto out;
2079 }
2080
2081 /* for hidden raid components obtain the volume_handle */
2082 handle = 0;
2083 if (sas_device_priv_data->sas_target->flags &
2084 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2085 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2086 sas_device = _scsih_sas_device_find_by_handle(ioc,
2087 sas_device_priv_data->sas_target->handle);
2088 if (sas_device)
2089 handle = sas_device->volume_handle;
2090 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2091 } else
2092 handle = sas_device_priv_data->sas_target->handle;
2093
2094 if (!handle) {
2095 scmd->result = DID_RESET << 16;
2096 r = FAILED;
2097 goto out;
2098 }
2099
2100 mutex_lock(&ioc->tm_cmds.mutex);
2101 mpt2sas_scsih_issue_tm(ioc, handle, 0,
Eric Moore635374e2009-03-09 01:21:12 -06002102 MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET, 0, 30);
2103
2104 /*
2105 * sanity check see whether all commands to this target been
2106 * completed
2107 */
2108 if (_scsih_scsi_lookup_find_by_target(ioc, scmd->device->id,
2109 scmd->device->channel))
2110 r = FAILED;
2111 else
2112 r = SUCCESS;
2113 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
2114 mutex_unlock(&ioc->tm_cmds.mutex);
2115
2116 out:
2117 printk(MPT2SAS_INFO_FMT "target reset: %s scmd(%p)\n",
2118 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2119 return r;
2120}
2121
2122/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302123 * _scsih_host_reset - eh threads main host reset routine
Eric Moore635374e2009-03-09 01:21:12 -06002124 * @sdev: scsi device struct
2125 *
2126 * Returns SUCCESS if command aborted else FAILED
2127 */
2128static int
Eric Moored5d135b2009-05-18 13:02:08 -06002129_scsih_host_reset(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002130{
2131 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2132 int r, retval;
2133
2134 printk(MPT2SAS_INFO_FMT "attempting host reset! scmd(%p)\n",
2135 ioc->name, scmd);
2136 scsi_print_command(scmd);
2137
2138 retval = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
2139 FORCE_BIG_HAMMER);
2140 r = (retval < 0) ? FAILED : SUCCESS;
2141 printk(MPT2SAS_INFO_FMT "host reset: %s scmd(%p)\n",
2142 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2143
2144 return r;
2145}
2146
2147/**
2148 * _scsih_fw_event_add - insert and queue up fw_event
2149 * @ioc: per adapter object
2150 * @fw_event: object describing the event
2151 * Context: This function will acquire ioc->fw_event_lock.
2152 *
2153 * This adds the firmware event object into link list, then queues it up to
2154 * be processed from user context.
2155 *
2156 * Return nothing.
2157 */
2158static void
2159_scsih_fw_event_add(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work *fw_event)
2160{
2161 unsigned long flags;
2162
2163 if (ioc->firmware_event_thread == NULL)
2164 return;
2165
2166 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2167 list_add_tail(&fw_event->list, &ioc->fw_event_list);
Eric Moore6f92a7a2009-04-21 15:43:33 -06002168 INIT_WORK(&fw_event->work, _firmware_event_work);
2169 queue_work(ioc->firmware_event_thread, &fw_event->work);
Eric Moore635374e2009-03-09 01:21:12 -06002170 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2171}
2172
2173/**
2174 * _scsih_fw_event_free - delete fw_event
2175 * @ioc: per adapter object
2176 * @fw_event: object describing the event
2177 * Context: This function will acquire ioc->fw_event_lock.
2178 *
2179 * This removes firmware event object from link list, frees associated memory.
2180 *
2181 * Return nothing.
2182 */
2183static void
2184_scsih_fw_event_free(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work
2185 *fw_event)
2186{
2187 unsigned long flags;
2188
2189 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2190 list_del(&fw_event->list);
2191 kfree(fw_event->event_data);
2192 kfree(fw_event);
2193 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2194}
2195
2196/**
2197 * _scsih_fw_event_add - requeue an event
2198 * @ioc: per adapter object
2199 * @fw_event: object describing the event
2200 * Context: This function will acquire ioc->fw_event_lock.
2201 *
2202 * Return nothing.
2203 */
2204static void
2205_scsih_fw_event_requeue(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work
2206 *fw_event, unsigned long delay)
2207{
2208 unsigned long flags;
2209 if (ioc->firmware_event_thread == NULL)
2210 return;
2211
2212 spin_lock_irqsave(&ioc->fw_event_lock, flags);
Eric Moore6f92a7a2009-04-21 15:43:33 -06002213 queue_work(ioc->firmware_event_thread, &fw_event->work);
Eric Moore635374e2009-03-09 01:21:12 -06002214 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2215}
2216
2217/**
2218 * _scsih_fw_event_off - turn flag off preventing event handling
2219 * @ioc: per adapter object
2220 *
2221 * Used to prevent handling of firmware events during adapter reset
2222 * driver unload.
2223 *
2224 * Return nothing.
2225 */
2226static void
2227_scsih_fw_event_off(struct MPT2SAS_ADAPTER *ioc)
2228{
2229 unsigned long flags;
2230
2231 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2232 ioc->fw_events_off = 1;
2233 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2234
2235}
2236
2237/**
2238 * _scsih_fw_event_on - turn flag on allowing firmware event handling
2239 * @ioc: per adapter object
2240 *
2241 * Returns nothing.
2242 */
2243static void
2244_scsih_fw_event_on(struct MPT2SAS_ADAPTER *ioc)
2245{
2246 unsigned long flags;
2247
2248 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2249 ioc->fw_events_off = 0;
2250 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2251}
2252
2253/**
2254 * _scsih_ublock_io_device - set the device state to SDEV_RUNNING
2255 * @ioc: per adapter object
2256 * @handle: device handle
2257 *
2258 * During device pull we need to appropiately set the sdev state.
2259 */
2260static void
2261_scsih_ublock_io_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2262{
2263 struct MPT2SAS_DEVICE *sas_device_priv_data;
2264 struct scsi_device *sdev;
2265
2266 shost_for_each_device(sdev, ioc->shost) {
2267 sas_device_priv_data = sdev->hostdata;
2268 if (!sas_device_priv_data)
2269 continue;
2270 if (!sas_device_priv_data->block)
2271 continue;
2272 if (sas_device_priv_data->sas_target->handle == handle) {
2273 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev,
2274 MPT2SAS_INFO_FMT "SDEV_RUNNING: "
2275 "handle(0x%04x)\n", ioc->name, handle));
2276 sas_device_priv_data->block = 0;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05302277 scsi_internal_device_unblock(sdev);
Eric Moore635374e2009-03-09 01:21:12 -06002278 }
2279 }
2280}
2281
2282/**
2283 * _scsih_block_io_device - set the device state to SDEV_BLOCK
2284 * @ioc: per adapter object
2285 * @handle: device handle
2286 *
2287 * During device pull we need to appropiately set the sdev state.
2288 */
2289static void
2290_scsih_block_io_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2291{
2292 struct MPT2SAS_DEVICE *sas_device_priv_data;
2293 struct scsi_device *sdev;
2294
2295 shost_for_each_device(sdev, ioc->shost) {
2296 sas_device_priv_data = sdev->hostdata;
2297 if (!sas_device_priv_data)
2298 continue;
2299 if (sas_device_priv_data->block)
2300 continue;
2301 if (sas_device_priv_data->sas_target->handle == handle) {
2302 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev,
2303 MPT2SAS_INFO_FMT "SDEV_BLOCK: "
2304 "handle(0x%04x)\n", ioc->name, handle));
2305 sas_device_priv_data->block = 1;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05302306 scsi_internal_device_block(sdev);
Eric Moore635374e2009-03-09 01:21:12 -06002307 }
2308 }
2309}
2310
2311/**
2312 * _scsih_block_io_to_children_attached_to_ex
2313 * @ioc: per adapter object
2314 * @sas_expander: the sas_device object
2315 *
2316 * This routine set sdev state to SDEV_BLOCK for all devices
2317 * attached to this expander. This function called when expander is
2318 * pulled.
2319 */
2320static void
2321_scsih_block_io_to_children_attached_to_ex(struct MPT2SAS_ADAPTER *ioc,
2322 struct _sas_node *sas_expander)
2323{
2324 struct _sas_port *mpt2sas_port;
2325 struct _sas_device *sas_device;
2326 struct _sas_node *expander_sibling;
2327 unsigned long flags;
2328
2329 if (!sas_expander)
2330 return;
2331
2332 list_for_each_entry(mpt2sas_port,
2333 &sas_expander->sas_port_list, port_list) {
2334 if (mpt2sas_port->remote_identify.device_type ==
2335 SAS_END_DEVICE) {
2336 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2337 sas_device =
2338 mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
2339 mpt2sas_port->remote_identify.sas_address);
2340 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2341 if (!sas_device)
2342 continue;
2343 _scsih_block_io_device(ioc, sas_device->handle);
2344 }
2345 }
2346
2347 list_for_each_entry(mpt2sas_port,
2348 &sas_expander->sas_port_list, port_list) {
2349
2350 if (mpt2sas_port->remote_identify.device_type ==
2351 MPI2_SAS_DEVICE_INFO_EDGE_EXPANDER ||
2352 mpt2sas_port->remote_identify.device_type ==
2353 MPI2_SAS_DEVICE_INFO_FANOUT_EXPANDER) {
2354
2355 spin_lock_irqsave(&ioc->sas_node_lock, flags);
2356 expander_sibling =
2357 mpt2sas_scsih_expander_find_by_sas_address(
2358 ioc, mpt2sas_port->remote_identify.sas_address);
2359 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
2360 _scsih_block_io_to_children_attached_to_ex(ioc,
2361 expander_sibling);
2362 }
2363 }
2364}
2365
2366/**
2367 * _scsih_block_io_to_children_attached_directly
2368 * @ioc: per adapter object
2369 * @event_data: topology change event data
2370 *
2371 * This routine set sdev state to SDEV_BLOCK for all devices
2372 * direct attached during device pull.
2373 */
2374static void
2375_scsih_block_io_to_children_attached_directly(struct MPT2SAS_ADAPTER *ioc,
2376 Mpi2EventDataSasTopologyChangeList_t *event_data)
2377{
2378 int i;
2379 u16 handle;
2380 u16 reason_code;
2381 u8 phy_number;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05302382 u8 link_rate;
Eric Moore635374e2009-03-09 01:21:12 -06002383
2384 for (i = 0; i < event_data->NumEntries; i++) {
2385 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
2386 if (!handle)
2387 continue;
2388 phy_number = event_data->StartPhyNum + i;
2389 reason_code = event_data->PHY[i].PhyStatus &
2390 MPI2_EVENT_SAS_TOPO_RC_MASK;
2391 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING)
2392 _scsih_block_io_device(ioc, handle);
Kashyap, Desai34a03be2009-08-20 13:23:19 +05302393 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED) {
2394 link_rate = event_data->PHY[i].LinkRate >> 4;
2395 if (link_rate >= MPI2_SAS_NEG_LINK_RATE_1_5)
2396 _scsih_ublock_io_device(ioc, handle);
2397 }
Eric Moore635374e2009-03-09 01:21:12 -06002398 }
2399}
2400
2401/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302402 * _scsih_tm_tr_send - send task management request
2403 * @ioc: per adapter object
2404 * @handle: device handle
2405 * Context: interrupt time.
2406 *
2407 * This code is to initiate the device removal handshake protocal
2408 * with controller firmware. This function will issue target reset
2409 * using high priority request queue. It will send a sas iounit
2410 * controll request (MPI2_SAS_OP_REMOVE_DEVICE) from this completion.
2411 *
2412 * This is designed to send muliple task management request at the same
2413 * time to the fifo. If the fifo is full, we will append the request,
2414 * and process it in a future completion.
2415 */
2416static void
2417_scsih_tm_tr_send(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2418{
2419 Mpi2SCSITaskManagementRequest_t *mpi_request;
2420 struct MPT2SAS_TARGET *sas_target_priv_data;
2421 u16 smid;
2422 struct _sas_device *sas_device;
2423 unsigned long flags;
2424 struct _tr_list *delayed_tr;
2425
2426 if (ioc->shost_recovery) {
2427 printk(MPT2SAS_INFO_FMT "%s: host reset in progress!\n",
2428 __func__, ioc->name);
2429 return;
2430 }
2431
2432 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2433 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302434 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2435
2436 /* skip is hidden raid component */
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302437 if (sas_device && sas_device->hidden_raid_component)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302438 return;
2439
2440 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_tr_cb_idx);
2441 if (!smid) {
2442 delayed_tr = kzalloc(sizeof(*delayed_tr), GFP_ATOMIC);
2443 if (!delayed_tr)
2444 return;
2445 INIT_LIST_HEAD(&delayed_tr->list);
2446 delayed_tr->handle = handle;
2447 delayed_tr->state = MPT2SAS_REQ_SAS_CNTRL;
2448 list_add_tail(&delayed_tr->list,
2449 &ioc->delayed_tr_list);
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302450 if (sas_device && sas_device->starget) {
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302451 dewtprintk(ioc, starget_printk(KERN_INFO,
2452 sas_device->starget, "DELAYED:tr:handle(0x%04x), "
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302453 "(open)\n", handle));
2454 } else {
2455 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
2456 "DELAYED:tr:handle(0x%04x), (open)\n",
2457 ioc->name, handle));
2458 }
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302459 return;
2460 }
2461
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302462 if (sas_device) {
2463 sas_device->state |= MPTSAS_STATE_TR_SEND;
2464 sas_device->state |= MPT2SAS_REQ_SAS_CNTRL;
2465 if (sas_device->starget && sas_device->starget->hostdata) {
2466 sas_target_priv_data = sas_device->starget->hostdata;
2467 sas_target_priv_data->tm_busy = 1;
2468 dewtprintk(ioc, starget_printk(KERN_INFO,
2469 sas_device->starget, "tr:handle(0x%04x), (open)\n",
2470 handle));
2471 }
2472 } else {
2473 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
2474 "tr:handle(0x%04x), (open)\n", ioc->name, handle));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302475 }
2476
2477 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
2478 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
2479 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
2480 mpi_request->DevHandle = cpu_to_le16(handle);
2481 mpi_request->TaskType = MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302482 mpt2sas_base_put_smid_hi_priority(ioc, smid);
2483}
2484
2485
2486
2487/**
2488 * _scsih_sas_control_complete - completion routine
2489 * @ioc: per adapter object
2490 * @smid: system request message index
2491 * @msix_index: MSIX table index supplied by the OS
2492 * @reply: reply message frame(lower 32bit addr)
2493 * Context: interrupt time.
2494 *
2495 * This is the sas iounit controll completion routine.
2496 * This code is part of the code to initiate the device removal
2497 * handshake protocal with controller firmware.
2498 *
2499 * Return 1 meaning mf should be freed from _base_interrupt
2500 * 0 means the mf is freed from this function.
2501 */
2502static u8
2503_scsih_sas_control_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid,
2504 u8 msix_index, u32 reply)
2505{
2506 unsigned long flags;
2507 u16 handle;
2508 struct _sas_device *sas_device;
2509 Mpi2SasIoUnitControlReply_t *mpi_reply =
2510 mpt2sas_base_get_reply_virt_addr(ioc, reply);
2511
2512 handle = le16_to_cpu(mpi_reply->DevHandle);
2513
2514 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2515 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302516 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2517
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302518 if (sas_device) {
2519 sas_device->state |= MPTSAS_STATE_CNTRL_COMPLETE;
2520 if (sas_device->starget)
2521 dewtprintk(ioc, starget_printk(KERN_INFO,
2522 sas_device->starget,
2523 "sc_complete:handle(0x%04x), "
2524 "ioc_status(0x%04x), loginfo(0x%08x)\n",
2525 handle, le16_to_cpu(mpi_reply->IOCStatus),
2526 le32_to_cpu(mpi_reply->IOCLogInfo)));
2527 } else {
2528 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302529 "sc_complete:handle(0x%04x), "
2530 "ioc_status(0x%04x), loginfo(0x%08x)\n",
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302531 ioc->name, handle, le16_to_cpu(mpi_reply->IOCStatus),
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302532 le32_to_cpu(mpi_reply->IOCLogInfo)));
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302533 }
2534
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302535 return 1;
2536}
2537
2538/**
2539 * _scsih_tm_tr_complete -
2540 * @ioc: per adapter object
2541 * @smid: system request message index
2542 * @msix_index: MSIX table index supplied by the OS
2543 * @reply: reply message frame(lower 32bit addr)
2544 * Context: interrupt time.
2545 *
2546 * This is the target reset completion routine.
2547 * This code is part of the code to initiate the device removal
2548 * handshake protocal with controller firmware.
2549 * It will send a sas iounit controll request (MPI2_SAS_OP_REMOVE_DEVICE)
2550 *
2551 * Return 1 meaning mf should be freed from _base_interrupt
2552 * 0 means the mf is freed from this function.
2553 */
2554static u8
2555_scsih_tm_tr_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
2556 u32 reply)
2557{
2558 unsigned long flags;
2559 u16 handle;
2560 struct _sas_device *sas_device;
2561 Mpi2SCSITaskManagementReply_t *mpi_reply =
2562 mpt2sas_base_get_reply_virt_addr(ioc, reply);
2563 Mpi2SasIoUnitControlRequest_t *mpi_request;
2564 u16 smid_sas_ctrl;
2565 struct MPT2SAS_TARGET *sas_target_priv_data;
2566 struct _tr_list *delayed_tr;
2567 u8 rc;
2568
2569 handle = le16_to_cpu(mpi_reply->DevHandle);
2570 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2571 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302572 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2573
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302574 if (sas_device) {
2575 sas_device->state |= MPTSAS_STATE_TR_COMPLETE;
2576 if (sas_device->starget) {
2577 dewtprintk(ioc, starget_printk(KERN_INFO,
2578 sas_device->starget, "tr_complete:handle(0x%04x), "
2579 "(%s) ioc_status(0x%04x), loginfo(0x%08x), "
2580 "completed(%d)\n", sas_device->handle,
2581 (sas_device->state & MPT2SAS_REQ_SAS_CNTRL) ?
2582 "open" : "active",
2583 le16_to_cpu(mpi_reply->IOCStatus),
2584 le32_to_cpu(mpi_reply->IOCLogInfo),
2585 le32_to_cpu(mpi_reply->TerminationCount)));
2586 if (sas_device->starget->hostdata) {
2587 sas_target_priv_data =
2588 sas_device->starget->hostdata;
2589 sas_target_priv_data->tm_busy = 0;
2590 }
2591 }
2592 } else {
2593 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
2594 "tr_complete:handle(0x%04x), (open) ioc_status(0x%04x), "
2595 "loginfo(0x%08x), completed(%d)\n", ioc->name,
2596 handle, le16_to_cpu(mpi_reply->IOCStatus),
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302597 le32_to_cpu(mpi_reply->IOCLogInfo),
2598 le32_to_cpu(mpi_reply->TerminationCount)));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302599 }
2600
2601 if (!list_empty(&ioc->delayed_tr_list)) {
2602 delayed_tr = list_entry(ioc->delayed_tr_list.next,
2603 struct _tr_list, list);
2604 mpt2sas_base_free_smid(ioc, smid);
2605 if (delayed_tr->state & MPT2SAS_REQ_SAS_CNTRL)
2606 _scsih_tm_tr_send(ioc, delayed_tr->handle);
2607 list_del(&delayed_tr->list);
2608 kfree(delayed_tr);
2609 rc = 0; /* tells base_interrupt not to free mf */
2610 } else
2611 rc = 1;
2612
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302613 if (sas_device && !(sas_device->state & MPT2SAS_REQ_SAS_CNTRL))
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302614 return rc;
2615
2616 if (ioc->shost_recovery) {
2617 printk(MPT2SAS_INFO_FMT "%s: host reset in progress!\n",
2618 __func__, ioc->name);
2619 return rc;
2620 }
2621
2622 smid_sas_ctrl = mpt2sas_base_get_smid(ioc, ioc->tm_sas_control_cb_idx);
2623 if (!smid_sas_ctrl) {
2624 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
2625 ioc->name, __func__);
2626 return rc;
2627 }
2628
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302629 if (sas_device)
2630 sas_device->state |= MPTSAS_STATE_CNTRL_SEND;
2631
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302632 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid_sas_ctrl);
2633 memset(mpi_request, 0, sizeof(Mpi2SasIoUnitControlRequest_t));
2634 mpi_request->Function = MPI2_FUNCTION_SAS_IO_UNIT_CONTROL;
2635 mpi_request->Operation = MPI2_SAS_OP_REMOVE_DEVICE;
2636 mpi_request->DevHandle = mpi_reply->DevHandle;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302637 mpt2sas_base_put_smid_default(ioc, smid_sas_ctrl);
2638 return rc;
2639}
2640
2641/**
Eric Moore635374e2009-03-09 01:21:12 -06002642 * _scsih_check_topo_delete_events - sanity check on topo events
2643 * @ioc: per adapter object
2644 * @event_data: the event data payload
2645 *
2646 * This routine added to better handle cable breaker.
2647 *
2648 * This handles the case where driver recieves multiple expander
2649 * add and delete events in a single shot. When there is a delete event
2650 * the routine will void any pending add events waiting in the event queue.
2651 *
2652 * Return nothing.
2653 */
2654static void
2655_scsih_check_topo_delete_events(struct MPT2SAS_ADAPTER *ioc,
2656 Mpi2EventDataSasTopologyChangeList_t *event_data)
2657{
2658 struct fw_event_work *fw_event;
2659 Mpi2EventDataSasTopologyChangeList_t *local_event_data;
2660 u16 expander_handle;
2661 struct _sas_node *sas_expander;
2662 unsigned long flags;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302663 int i, reason_code;
2664 u16 handle;
2665
2666 for (i = 0 ; i < event_data->NumEntries; i++) {
2667 if (event_data->PHY[i].PhyStatus &
2668 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT)
2669 continue;
2670 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
2671 if (!handle)
2672 continue;
2673 reason_code = event_data->PHY[i].PhyStatus &
2674 MPI2_EVENT_SAS_TOPO_RC_MASK;
2675 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING)
2676 _scsih_tm_tr_send(ioc, handle);
2677 }
Eric Moore635374e2009-03-09 01:21:12 -06002678
2679 expander_handle = le16_to_cpu(event_data->ExpanderDevHandle);
2680 if (expander_handle < ioc->sas_hba.num_phys) {
2681 _scsih_block_io_to_children_attached_directly(ioc, event_data);
2682 return;
2683 }
2684
2685 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
2686 || event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING) {
2687 spin_lock_irqsave(&ioc->sas_node_lock, flags);
2688 sas_expander = mpt2sas_scsih_expander_find_by_handle(ioc,
2689 expander_handle);
2690 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
2691 _scsih_block_io_to_children_attached_to_ex(ioc, sas_expander);
2692 } else if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_RESPONDING)
2693 _scsih_block_io_to_children_attached_directly(ioc, event_data);
2694
2695 if (event_data->ExpStatus != MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING)
2696 return;
2697
2698 /* mark ignore flag for pending events */
2699 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2700 list_for_each_entry(fw_event, &ioc->fw_event_list, list) {
2701 if (fw_event->event != MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST ||
2702 fw_event->ignore)
2703 continue;
2704 local_event_data = fw_event->event_data;
2705 if (local_event_data->ExpStatus ==
2706 MPI2_EVENT_SAS_TOPO_ES_ADDED ||
2707 local_event_data->ExpStatus ==
2708 MPI2_EVENT_SAS_TOPO_ES_RESPONDING) {
2709 if (le16_to_cpu(local_event_data->ExpanderDevHandle) ==
2710 expander_handle) {
2711 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT
2712 "setting ignoring flag\n", ioc->name));
2713 fw_event->ignore = 1;
2714 }
2715 }
2716 }
2717 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2718}
2719
2720/**
Eric Moore635374e2009-03-09 01:21:12 -06002721 * _scsih_flush_running_cmds - completing outstanding commands.
2722 * @ioc: per adapter object
2723 *
2724 * The flushing out of all pending scmd commands following host reset,
2725 * where all IO is dropped to the floor.
2726 *
2727 * Return nothing.
2728 */
2729static void
2730_scsih_flush_running_cmds(struct MPT2SAS_ADAPTER *ioc)
2731{
2732 struct scsi_cmnd *scmd;
2733 u16 smid;
2734 u16 count = 0;
2735
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302736 for (smid = 1; smid <= ioc->scsiio_depth; smid++) {
2737 scmd = _scsih_scsi_lookup_get(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06002738 if (!scmd)
2739 continue;
2740 count++;
2741 mpt2sas_base_free_smid(ioc, smid);
2742 scsi_dma_unmap(scmd);
2743 scmd->result = DID_RESET << 16;
2744 scmd->scsi_done(scmd);
2745 }
2746 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "completing %d cmds\n",
2747 ioc->name, count));
2748}
2749
2750/**
Eric Moore3c621b32009-05-18 12:59:41 -06002751 * _scsih_setup_eedp - setup MPI request for EEDP transfer
2752 * @scmd: pointer to scsi command object
2753 * @mpi_request: pointer to the SCSI_IO reqest message frame
2754 *
2755 * Supporting protection 1 and 3.
2756 *
2757 * Returns nothing
2758 */
2759static void
2760_scsih_setup_eedp(struct scsi_cmnd *scmd, Mpi2SCSIIORequest_t *mpi_request)
2761{
2762 u16 eedp_flags;
2763 unsigned char prot_op = scsi_get_prot_op(scmd);
2764 unsigned char prot_type = scsi_get_prot_type(scmd);
2765
2766 if (prot_type == SCSI_PROT_DIF_TYPE0 ||
2767 prot_type == SCSI_PROT_DIF_TYPE2 ||
2768 prot_op == SCSI_PROT_NORMAL)
2769 return;
2770
2771 if (prot_op == SCSI_PROT_READ_STRIP)
2772 eedp_flags = MPI2_SCSIIO_EEDPFLAGS_CHECK_REMOVE_OP;
2773 else if (prot_op == SCSI_PROT_WRITE_INSERT)
2774 eedp_flags = MPI2_SCSIIO_EEDPFLAGS_INSERT_OP;
2775 else
2776 return;
2777
2778 mpi_request->EEDPBlockSize = scmd->device->sector_size;
2779
2780 switch (prot_type) {
2781 case SCSI_PROT_DIF_TYPE1:
2782
2783 /*
2784 * enable ref/guard checking
2785 * auto increment ref tag
2786 */
2787 mpi_request->EEDPFlags = eedp_flags |
2788 MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG |
2789 MPI2_SCSIIO_EEDPFLAGS_CHECK_REFTAG |
2790 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD;
2791 mpi_request->CDB.EEDP32.PrimaryReferenceTag =
2792 cpu_to_be32(scsi_get_lba(scmd));
2793
2794 break;
2795
2796 case SCSI_PROT_DIF_TYPE3:
2797
2798 /*
2799 * enable guard checking
2800 */
2801 mpi_request->EEDPFlags = eedp_flags |
2802 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD;
2803
2804 break;
2805 }
2806}
2807
2808/**
2809 * _scsih_eedp_error_handling - return sense code for EEDP errors
2810 * @scmd: pointer to scsi command object
2811 * @ioc_status: ioc status
2812 *
2813 * Returns nothing
2814 */
2815static void
2816_scsih_eedp_error_handling(struct scsi_cmnd *scmd, u16 ioc_status)
2817{
2818 u8 ascq;
2819 u8 sk;
2820 u8 host_byte;
2821
2822 switch (ioc_status) {
2823 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
2824 ascq = 0x01;
2825 break;
2826 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
2827 ascq = 0x02;
2828 break;
2829 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
2830 ascq = 0x03;
2831 break;
2832 default:
2833 ascq = 0x00;
2834 break;
2835 }
2836
2837 if (scmd->sc_data_direction == DMA_TO_DEVICE) {
2838 sk = ILLEGAL_REQUEST;
2839 host_byte = DID_ABORT;
2840 } else {
2841 sk = ABORTED_COMMAND;
2842 host_byte = DID_OK;
2843 }
2844
2845 scsi_build_sense_buffer(0, scmd->sense_buffer, sk, 0x10, ascq);
2846 scmd->result = DRIVER_SENSE << 24 | (host_byte << 16) |
2847 SAM_STAT_CHECK_CONDITION;
2848}
2849
2850/**
Eric Moored5d135b2009-05-18 13:02:08 -06002851 * _scsih_qcmd - main scsi request entry point
Eric Moore635374e2009-03-09 01:21:12 -06002852 * @scmd: pointer to scsi command object
2853 * @done: function pointer to be invoked on completion
2854 *
2855 * The callback index is set inside `ioc->scsi_io_cb_idx`.
2856 *
2857 * Returns 0 on success. If there's a failure, return either:
2858 * SCSI_MLQUEUE_DEVICE_BUSY if the device queue is full, or
2859 * SCSI_MLQUEUE_HOST_BUSY if the entire host queue is full
2860 */
2861static int
Eric Moored5d135b2009-05-18 13:02:08 -06002862_scsih_qcmd(struct scsi_cmnd *scmd, void (*done)(struct scsi_cmnd *))
Eric Moore635374e2009-03-09 01:21:12 -06002863{
2864 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2865 struct MPT2SAS_DEVICE *sas_device_priv_data;
2866 struct MPT2SAS_TARGET *sas_target_priv_data;
2867 Mpi2SCSIIORequest_t *mpi_request;
2868 u32 mpi_control;
2869 u16 smid;
Eric Moore635374e2009-03-09 01:21:12 -06002870
2871 scmd->scsi_done = done;
2872 sas_device_priv_data = scmd->device->hostdata;
2873 if (!sas_device_priv_data) {
2874 scmd->result = DID_NO_CONNECT << 16;
2875 scmd->scsi_done(scmd);
2876 return 0;
2877 }
2878
2879 sas_target_priv_data = sas_device_priv_data->sas_target;
2880 if (!sas_target_priv_data || sas_target_priv_data->handle ==
2881 MPT2SAS_INVALID_DEVICE_HANDLE || sas_target_priv_data->deleted) {
2882 scmd->result = DID_NO_CONNECT << 16;
2883 scmd->scsi_done(scmd);
2884 return 0;
2885 }
2886
2887 /* see if we are busy with task managment stuff */
Kashyap, Desaie4e7c7e2009-09-23 17:33:14 +05302888 if (sas_device_priv_data->block || sas_target_priv_data->tm_busy)
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05302889 return SCSI_MLQUEUE_DEVICE_BUSY;
2890 else if (ioc->shost_recovery || ioc->ioc_link_reset_in_progress)
Eric Moore635374e2009-03-09 01:21:12 -06002891 return SCSI_MLQUEUE_HOST_BUSY;
Eric Moore635374e2009-03-09 01:21:12 -06002892
2893 if (scmd->sc_data_direction == DMA_FROM_DEVICE)
2894 mpi_control = MPI2_SCSIIO_CONTROL_READ;
2895 else if (scmd->sc_data_direction == DMA_TO_DEVICE)
2896 mpi_control = MPI2_SCSIIO_CONTROL_WRITE;
2897 else
2898 mpi_control = MPI2_SCSIIO_CONTROL_NODATATRANSFER;
2899
2900 /* set tags */
2901 if (!(sas_device_priv_data->flags & MPT_DEVICE_FLAGS_INIT)) {
2902 if (scmd->device->tagged_supported) {
2903 if (scmd->device->ordered_tags)
2904 mpi_control |= MPI2_SCSIIO_CONTROL_ORDEREDQ;
2905 else
2906 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
2907 } else
2908/* MPI Revision I (UNIT = 0xA) - removed MPI2_SCSIIO_CONTROL_UNTAGGED */
2909/* mpi_control |= MPI2_SCSIIO_CONTROL_UNTAGGED;
2910 */
2911 mpi_control |= (0x500);
2912
2913 } else
2914 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
2915
2916 if ((sas_device_priv_data->flags & MPT_DEVICE_TLR_ON))
2917 mpi_control |= MPI2_SCSIIO_CONTROL_TLR_ON;
2918
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302919 smid = mpt2sas_base_get_smid_scsiio(ioc, ioc->scsi_io_cb_idx, scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002920 if (!smid) {
2921 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
2922 ioc->name, __func__);
2923 goto out;
2924 }
2925 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
2926 memset(mpi_request, 0, sizeof(Mpi2SCSIIORequest_t));
Eric Moore3c621b32009-05-18 12:59:41 -06002927 _scsih_setup_eedp(scmd, mpi_request);
Eric Moore635374e2009-03-09 01:21:12 -06002928 mpi_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
2929 if (sas_device_priv_data->sas_target->flags &
2930 MPT_TARGET_FLAGS_RAID_COMPONENT)
2931 mpi_request->Function = MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH;
2932 else
2933 mpi_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
2934 mpi_request->DevHandle =
2935 cpu_to_le16(sas_device_priv_data->sas_target->handle);
2936 mpi_request->DataLength = cpu_to_le32(scsi_bufflen(scmd));
2937 mpi_request->Control = cpu_to_le32(mpi_control);
2938 mpi_request->IoFlags = cpu_to_le16(scmd->cmd_len);
2939 mpi_request->MsgFlags = MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR;
2940 mpi_request->SenseBufferLength = SCSI_SENSE_BUFFERSIZE;
2941 mpi_request->SenseBufferLowAddress =
Kashyap, Desaiec9472c2009-09-23 17:34:13 +05302942 mpt2sas_base_get_sense_buffer_dma(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06002943 mpi_request->SGLOffset0 = offsetof(Mpi2SCSIIORequest_t, SGL) / 4;
2944 mpi_request->SGLFlags = cpu_to_le16(MPI2_SCSIIO_SGLFLAGS_TYPE_MPI +
2945 MPI2_SCSIIO_SGLFLAGS_SYSTEM_ADDR);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302946 mpi_request->VF_ID = 0; /* TODO */
2947 mpi_request->VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06002948 int_to_scsilun(sas_device_priv_data->lun, (struct scsi_lun *)
2949 mpi_request->LUN);
2950 memcpy(mpi_request->CDB.CDB32, scmd->cmnd, scmd->cmd_len);
2951
2952 if (!mpi_request->DataLength) {
2953 mpt2sas_base_build_zero_len_sge(ioc, &mpi_request->SGL);
2954 } else {
2955 if (_scsih_build_scatter_gather(ioc, scmd, smid)) {
2956 mpt2sas_base_free_smid(ioc, smid);
2957 goto out;
2958 }
2959 }
2960
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302961 mpt2sas_base_put_smid_scsi_io(ioc, smid,
Eric Moore635374e2009-03-09 01:21:12 -06002962 sas_device_priv_data->sas_target->handle);
2963 return 0;
2964
2965 out:
2966 return SCSI_MLQUEUE_HOST_BUSY;
2967}
2968
2969/**
2970 * _scsih_normalize_sense - normalize descriptor and fixed format sense data
2971 * @sense_buffer: sense data returned by target
2972 * @data: normalized skey/asc/ascq
2973 *
2974 * Return nothing.
2975 */
2976static void
2977_scsih_normalize_sense(char *sense_buffer, struct sense_info *data)
2978{
2979 if ((sense_buffer[0] & 0x7F) >= 0x72) {
2980 /* descriptor format */
2981 data->skey = sense_buffer[1] & 0x0F;
2982 data->asc = sense_buffer[2];
2983 data->ascq = sense_buffer[3];
2984 } else {
2985 /* fixed format */
2986 data->skey = sense_buffer[2] & 0x0F;
2987 data->asc = sense_buffer[12];
2988 data->ascq = sense_buffer[13];
2989 }
2990}
2991
2992#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
2993/**
2994 * _scsih_scsi_ioc_info - translated non-succesfull SCSI_IO request
2995 * @ioc: per adapter object
2996 * @scmd: pointer to scsi command object
2997 * @mpi_reply: reply mf payload returned from firmware
2998 *
2999 * scsi_status - SCSI Status code returned from target device
3000 * scsi_state - state info associated with SCSI_IO determined by ioc
3001 * ioc_status - ioc supplied status info
3002 *
3003 * Return nothing.
3004 */
3005static void
3006_scsih_scsi_ioc_info(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd *scmd,
3007 Mpi2SCSIIOReply_t *mpi_reply, u16 smid)
3008{
3009 u32 response_info;
3010 u8 *response_bytes;
3011 u16 ioc_status = le16_to_cpu(mpi_reply->IOCStatus) &
3012 MPI2_IOCSTATUS_MASK;
3013 u8 scsi_state = mpi_reply->SCSIState;
3014 u8 scsi_status = mpi_reply->SCSIStatus;
3015 char *desc_ioc_state = NULL;
3016 char *desc_scsi_status = NULL;
3017 char *desc_scsi_state = ioc->tmp_string;
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +05303018 u32 log_info = le32_to_cpu(mpi_reply->IOCLogInfo);
3019
3020 if (log_info == 0x31170000)
3021 return;
Eric Moore635374e2009-03-09 01:21:12 -06003022
3023 switch (ioc_status) {
3024 case MPI2_IOCSTATUS_SUCCESS:
3025 desc_ioc_state = "success";
3026 break;
3027 case MPI2_IOCSTATUS_INVALID_FUNCTION:
3028 desc_ioc_state = "invalid function";
3029 break;
3030 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
3031 desc_ioc_state = "scsi recovered error";
3032 break;
3033 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE:
3034 desc_ioc_state = "scsi invalid dev handle";
3035 break;
3036 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
3037 desc_ioc_state = "scsi device not there";
3038 break;
3039 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
3040 desc_ioc_state = "scsi data overrun";
3041 break;
3042 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
3043 desc_ioc_state = "scsi data underrun";
3044 break;
3045 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
3046 desc_ioc_state = "scsi io data error";
3047 break;
3048 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
3049 desc_ioc_state = "scsi protocol error";
3050 break;
3051 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
3052 desc_ioc_state = "scsi task terminated";
3053 break;
3054 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
3055 desc_ioc_state = "scsi residual mismatch";
3056 break;
3057 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
3058 desc_ioc_state = "scsi task mgmt failed";
3059 break;
3060 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
3061 desc_ioc_state = "scsi ioc terminated";
3062 break;
3063 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
3064 desc_ioc_state = "scsi ext terminated";
3065 break;
Eric Moore3c621b32009-05-18 12:59:41 -06003066 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
3067 desc_ioc_state = "eedp guard error";
3068 break;
3069 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
3070 desc_ioc_state = "eedp ref tag error";
3071 break;
3072 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
3073 desc_ioc_state = "eedp app tag error";
3074 break;
Eric Moore635374e2009-03-09 01:21:12 -06003075 default:
3076 desc_ioc_state = "unknown";
3077 break;
3078 }
3079
3080 switch (scsi_status) {
3081 case MPI2_SCSI_STATUS_GOOD:
3082 desc_scsi_status = "good";
3083 break;
3084 case MPI2_SCSI_STATUS_CHECK_CONDITION:
3085 desc_scsi_status = "check condition";
3086 break;
3087 case MPI2_SCSI_STATUS_CONDITION_MET:
3088 desc_scsi_status = "condition met";
3089 break;
3090 case MPI2_SCSI_STATUS_BUSY:
3091 desc_scsi_status = "busy";
3092 break;
3093 case MPI2_SCSI_STATUS_INTERMEDIATE:
3094 desc_scsi_status = "intermediate";
3095 break;
3096 case MPI2_SCSI_STATUS_INTERMEDIATE_CONDMET:
3097 desc_scsi_status = "intermediate condmet";
3098 break;
3099 case MPI2_SCSI_STATUS_RESERVATION_CONFLICT:
3100 desc_scsi_status = "reservation conflict";
3101 break;
3102 case MPI2_SCSI_STATUS_COMMAND_TERMINATED:
3103 desc_scsi_status = "command terminated";
3104 break;
3105 case MPI2_SCSI_STATUS_TASK_SET_FULL:
3106 desc_scsi_status = "task set full";
3107 break;
3108 case MPI2_SCSI_STATUS_ACA_ACTIVE:
3109 desc_scsi_status = "aca active";
3110 break;
3111 case MPI2_SCSI_STATUS_TASK_ABORTED:
3112 desc_scsi_status = "task aborted";
3113 break;
3114 default:
3115 desc_scsi_status = "unknown";
3116 break;
3117 }
3118
3119 desc_scsi_state[0] = '\0';
3120 if (!scsi_state)
3121 desc_scsi_state = " ";
3122 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID)
3123 strcat(desc_scsi_state, "response info ");
3124 if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
3125 strcat(desc_scsi_state, "state terminated ");
3126 if (scsi_state & MPI2_SCSI_STATE_NO_SCSI_STATUS)
3127 strcat(desc_scsi_state, "no status ");
3128 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_FAILED)
3129 strcat(desc_scsi_state, "autosense failed ");
3130 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID)
3131 strcat(desc_scsi_state, "autosense valid ");
3132
3133 scsi_print_command(scmd);
3134 printk(MPT2SAS_WARN_FMT "\tdev handle(0x%04x), "
3135 "ioc_status(%s)(0x%04x), smid(%d)\n", ioc->name,
3136 le16_to_cpu(mpi_reply->DevHandle), desc_ioc_state,
3137 ioc_status, smid);
3138 printk(MPT2SAS_WARN_FMT "\trequest_len(%d), underflow(%d), "
3139 "resid(%d)\n", ioc->name, scsi_bufflen(scmd), scmd->underflow,
3140 scsi_get_resid(scmd));
3141 printk(MPT2SAS_WARN_FMT "\ttag(%d), transfer_count(%d), "
3142 "sc->result(0x%08x)\n", ioc->name, le16_to_cpu(mpi_reply->TaskTag),
3143 le32_to_cpu(mpi_reply->TransferCount), scmd->result);
3144 printk(MPT2SAS_WARN_FMT "\tscsi_status(%s)(0x%02x), "
3145 "scsi_state(%s)(0x%02x)\n", ioc->name, desc_scsi_status,
3146 scsi_status, desc_scsi_state, scsi_state);
3147
3148 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID) {
3149 struct sense_info data;
3150 _scsih_normalize_sense(scmd->sense_buffer, &data);
3151 printk(MPT2SAS_WARN_FMT "\t[sense_key,asc,ascq]: "
3152 "[0x%02x,0x%02x,0x%02x]\n", ioc->name, data.skey,
3153 data.asc, data.ascq);
3154 }
3155
3156 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID) {
3157 response_info = le32_to_cpu(mpi_reply->ResponseInfo);
3158 response_bytes = (u8 *)&response_info;
Kashyap, Desai9982f592009-09-23 17:23:07 +05303159 _scsih_response_code(ioc, response_bytes[0]);
Eric Moore635374e2009-03-09 01:21:12 -06003160 }
3161}
3162#endif
3163
3164/**
3165 * _scsih_smart_predicted_fault - illuminate Fault LED
3166 * @ioc: per adapter object
3167 * @handle: device handle
3168 *
3169 * Return nothing.
3170 */
3171static void
3172_scsih_smart_predicted_fault(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3173{
3174 Mpi2SepReply_t mpi_reply;
3175 Mpi2SepRequest_t mpi_request;
3176 struct scsi_target *starget;
3177 struct MPT2SAS_TARGET *sas_target_priv_data;
3178 Mpi2EventNotificationReply_t *event_reply;
3179 Mpi2EventDataSasDeviceStatusChange_t *event_data;
3180 struct _sas_device *sas_device;
3181 ssize_t sz;
3182 unsigned long flags;
3183
3184 /* only handle non-raid devices */
3185 spin_lock_irqsave(&ioc->sas_device_lock, flags);
3186 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
3187 if (!sas_device) {
3188 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
3189 return;
3190 }
3191 starget = sas_device->starget;
3192 sas_target_priv_data = starget->hostdata;
3193
3194 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT) ||
3195 ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME))) {
3196 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
3197 return;
3198 }
3199 starget_printk(KERN_WARNING, starget, "predicted fault\n");
3200 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
3201
3202 if (ioc->pdev->subsystem_vendor == PCI_VENDOR_ID_IBM) {
3203 memset(&mpi_request, 0, sizeof(Mpi2SepRequest_t));
3204 mpi_request.Function = MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR;
3205 mpi_request.Action = MPI2_SEP_REQ_ACTION_WRITE_STATUS;
3206 mpi_request.SlotStatus =
3207 MPI2_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT;
3208 mpi_request.DevHandle = cpu_to_le16(handle);
3209 mpi_request.Flags = MPI2_SEP_REQ_FLAGS_DEVHANDLE_ADDRESS;
3210 if ((mpt2sas_base_scsi_enclosure_processor(ioc, &mpi_reply,
3211 &mpi_request)) != 0) {
3212 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3213 ioc->name, __FILE__, __LINE__, __func__);
3214 return;
3215 }
3216
3217 if (mpi_reply.IOCStatus || mpi_reply.IOCLogInfo) {
3218 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3219 "enclosure_processor: ioc_status (0x%04x), "
3220 "loginfo(0x%08x)\n", ioc->name,
3221 le16_to_cpu(mpi_reply.IOCStatus),
3222 le32_to_cpu(mpi_reply.IOCLogInfo)));
3223 return;
3224 }
3225 }
3226
3227 /* insert into event log */
3228 sz = offsetof(Mpi2EventNotificationReply_t, EventData) +
3229 sizeof(Mpi2EventDataSasDeviceStatusChange_t);
3230 event_reply = kzalloc(sz, GFP_KERNEL);
3231 if (!event_reply) {
3232 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3233 ioc->name, __FILE__, __LINE__, __func__);
3234 return;
3235 }
3236
3237 event_reply->Function = MPI2_FUNCTION_EVENT_NOTIFICATION;
3238 event_reply->Event =
3239 cpu_to_le16(MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE);
3240 event_reply->MsgLength = sz/4;
3241 event_reply->EventDataLength =
3242 cpu_to_le16(sizeof(Mpi2EventDataSasDeviceStatusChange_t)/4);
3243 event_data = (Mpi2EventDataSasDeviceStatusChange_t *)
3244 event_reply->EventData;
3245 event_data->ReasonCode = MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA;
3246 event_data->ASC = 0x5D;
3247 event_data->DevHandle = cpu_to_le16(handle);
3248 event_data->SASAddress = cpu_to_le64(sas_target_priv_data->sas_address);
3249 mpt2sas_ctl_add_to_event_log(ioc, event_reply);
3250 kfree(event_reply);
3251}
3252
3253/**
Eric Moored5d135b2009-05-18 13:02:08 -06003254 * _scsih_io_done - scsi request callback
Eric Moore635374e2009-03-09 01:21:12 -06003255 * @ioc: per adapter object
3256 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303257 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06003258 * @reply: reply message frame(lower 32bit addr)
3259 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303260 * Callback handler when using _scsih_qcmd.
Eric Moore635374e2009-03-09 01:21:12 -06003261 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303262 * Return 1 meaning mf should be freed from _base_interrupt
3263 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06003264 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303265static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303266_scsih_io_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06003267{
3268 Mpi2SCSIIORequest_t *mpi_request;
3269 Mpi2SCSIIOReply_t *mpi_reply;
3270 struct scsi_cmnd *scmd;
3271 u16 ioc_status;
3272 u32 xfer_cnt;
3273 u8 scsi_state;
3274 u8 scsi_status;
3275 u32 log_info;
3276 struct MPT2SAS_DEVICE *sas_device_priv_data;
Kashyap, Desai9982f592009-09-23 17:23:07 +05303277 u32 response_code = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003278
3279 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303280 scmd = _scsih_scsi_lookup_get(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06003281 if (scmd == NULL)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303282 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06003283
3284 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3285
3286 if (mpi_reply == NULL) {
3287 scmd->result = DID_OK << 16;
3288 goto out;
3289 }
3290
3291 sas_device_priv_data = scmd->device->hostdata;
3292 if (!sas_device_priv_data || !sas_device_priv_data->sas_target ||
3293 sas_device_priv_data->sas_target->deleted) {
3294 scmd->result = DID_NO_CONNECT << 16;
3295 goto out;
3296 }
3297
3298 /* turning off TLR */
Kashyap, Desai9982f592009-09-23 17:23:07 +05303299 scsi_state = mpi_reply->SCSIState;
3300 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID)
3301 response_code =
3302 le32_to_cpu(mpi_reply->ResponseInfo) & 0xFF;
Eric Moore635374e2009-03-09 01:21:12 -06003303 if (!sas_device_priv_data->tlr_snoop_check) {
3304 sas_device_priv_data->tlr_snoop_check++;
Kashyap, Desai9982f592009-09-23 17:23:07 +05303305 if ((sas_device_priv_data->flags & MPT_DEVICE_TLR_ON) &&
3306 response_code == MPI2_SCSITASKMGMT_RSP_INVALID_FRAME)
3307 sas_device_priv_data->flags &=
3308 ~MPT_DEVICE_TLR_ON;
Eric Moore635374e2009-03-09 01:21:12 -06003309 }
3310
3311 xfer_cnt = le32_to_cpu(mpi_reply->TransferCount);
3312 scsi_set_resid(scmd, scsi_bufflen(scmd) - xfer_cnt);
3313 ioc_status = le16_to_cpu(mpi_reply->IOCStatus);
3314 if (ioc_status & MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE)
3315 log_info = le32_to_cpu(mpi_reply->IOCLogInfo);
3316 else
3317 log_info = 0;
3318 ioc_status &= MPI2_IOCSTATUS_MASK;
Eric Moore635374e2009-03-09 01:21:12 -06003319 scsi_status = mpi_reply->SCSIStatus;
3320
3321 if (ioc_status == MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN && xfer_cnt == 0 &&
3322 (scsi_status == MPI2_SCSI_STATUS_BUSY ||
3323 scsi_status == MPI2_SCSI_STATUS_RESERVATION_CONFLICT ||
3324 scsi_status == MPI2_SCSI_STATUS_TASK_SET_FULL)) {
3325 ioc_status = MPI2_IOCSTATUS_SUCCESS;
3326 }
3327
3328 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID) {
3329 struct sense_info data;
3330 const void *sense_data = mpt2sas_base_get_sense_buffer(ioc,
3331 smid);
Eric Moore0d04df92009-04-21 15:38:43 -06003332 u32 sz = min_t(u32, SCSI_SENSE_BUFFERSIZE,
Eric Moore635374e2009-03-09 01:21:12 -06003333 le32_to_cpu(mpi_reply->SenseCount));
Eric Moore0d04df92009-04-21 15:38:43 -06003334 memcpy(scmd->sense_buffer, sense_data, sz);
Eric Moore635374e2009-03-09 01:21:12 -06003335 _scsih_normalize_sense(scmd->sense_buffer, &data);
3336 /* failure prediction threshold exceeded */
3337 if (data.asc == 0x5D)
3338 _scsih_smart_predicted_fault(ioc,
3339 le16_to_cpu(mpi_reply->DevHandle));
3340 }
3341
3342 switch (ioc_status) {
3343 case MPI2_IOCSTATUS_BUSY:
3344 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES:
3345 scmd->result = SAM_STAT_BUSY;
3346 break;
3347
3348 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
3349 scmd->result = DID_NO_CONNECT << 16;
3350 break;
3351
3352 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
3353 if (sas_device_priv_data->block) {
Kashyap, Desaie4e7c7e2009-09-23 17:33:14 +05303354 scmd->result = DID_TRANSPORT_DISRUPTED << 16;
3355 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06003356 }
Eric Moore635374e2009-03-09 01:21:12 -06003357 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
3358 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
3359 scmd->result = DID_RESET << 16;
3360 break;
3361
3362 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
3363 if ((xfer_cnt == 0) || (scmd->underflow > xfer_cnt))
3364 scmd->result = DID_SOFT_ERROR << 16;
3365 else
3366 scmd->result = (DID_OK << 16) | scsi_status;
3367 break;
3368
3369 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
3370 scmd->result = (DID_OK << 16) | scsi_status;
3371
3372 if ((scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID))
3373 break;
3374
3375 if (xfer_cnt < scmd->underflow) {
3376 if (scsi_status == SAM_STAT_BUSY)
3377 scmd->result = SAM_STAT_BUSY;
3378 else
3379 scmd->result = DID_SOFT_ERROR << 16;
3380 } else if (scsi_state & (MPI2_SCSI_STATE_AUTOSENSE_FAILED |
3381 MPI2_SCSI_STATE_NO_SCSI_STATUS))
3382 scmd->result = DID_SOFT_ERROR << 16;
3383 else if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
3384 scmd->result = DID_RESET << 16;
3385 else if (!xfer_cnt && scmd->cmnd[0] == REPORT_LUNS) {
3386 mpi_reply->SCSIState = MPI2_SCSI_STATE_AUTOSENSE_VALID;
3387 mpi_reply->SCSIStatus = SAM_STAT_CHECK_CONDITION;
3388 scmd->result = (DRIVER_SENSE << 24) |
3389 SAM_STAT_CHECK_CONDITION;
3390 scmd->sense_buffer[0] = 0x70;
3391 scmd->sense_buffer[2] = ILLEGAL_REQUEST;
3392 scmd->sense_buffer[12] = 0x20;
3393 scmd->sense_buffer[13] = 0;
3394 }
3395 break;
3396
3397 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
3398 scsi_set_resid(scmd, 0);
3399 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
3400 case MPI2_IOCSTATUS_SUCCESS:
3401 scmd->result = (DID_OK << 16) | scsi_status;
Kashyap, Desai9982f592009-09-23 17:23:07 +05303402 if (response_code ==
3403 MPI2_SCSITASKMGMT_RSP_INVALID_FRAME ||
3404 (scsi_state & (MPI2_SCSI_STATE_AUTOSENSE_FAILED |
3405 MPI2_SCSI_STATE_NO_SCSI_STATUS)))
Eric Moore635374e2009-03-09 01:21:12 -06003406 scmd->result = DID_SOFT_ERROR << 16;
3407 else if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
3408 scmd->result = DID_RESET << 16;
3409 break;
3410
Eric Moore3c621b32009-05-18 12:59:41 -06003411 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
3412 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
3413 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
3414 _scsih_eedp_error_handling(scmd, ioc_status);
3415 break;
Eric Moore635374e2009-03-09 01:21:12 -06003416 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
3417 case MPI2_IOCSTATUS_INVALID_FUNCTION:
3418 case MPI2_IOCSTATUS_INVALID_SGL:
3419 case MPI2_IOCSTATUS_INTERNAL_ERROR:
3420 case MPI2_IOCSTATUS_INVALID_FIELD:
3421 case MPI2_IOCSTATUS_INVALID_STATE:
3422 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
3423 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
3424 default:
3425 scmd->result = DID_SOFT_ERROR << 16;
3426 break;
3427
3428 }
3429
3430#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
3431 if (scmd->result && (ioc->logging_level & MPT_DEBUG_REPLY))
3432 _scsih_scsi_ioc_info(ioc , scmd, mpi_reply, smid);
3433#endif
3434
3435 out:
3436 scsi_dma_unmap(scmd);
3437 scmd->scsi_done(scmd);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303438 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06003439}
3440
3441/**
Eric Moore635374e2009-03-09 01:21:12 -06003442 * _scsih_sas_host_refresh - refreshing sas host object contents
3443 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06003444 * Context: user
3445 *
3446 * During port enable, fw will send topology events for every device. Its
3447 * possible that the handles may change from the previous setting, so this
3448 * code keeping handles updating if changed.
3449 *
3450 * Return nothing.
3451 */
3452static void
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303453_scsih_sas_host_refresh(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06003454{
3455 u16 sz;
3456 u16 ioc_status;
3457 int i;
3458 Mpi2ConfigReply_t mpi_reply;
3459 Mpi2SasIOUnitPage0_t *sas_iounit_pg0 = NULL;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303460 u16 attached_handle;
Eric Moore635374e2009-03-09 01:21:12 -06003461
3462 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT
3463 "updating handles for sas_host(0x%016llx)\n",
3464 ioc->name, (unsigned long long)ioc->sas_hba.sas_address));
3465
3466 sz = offsetof(Mpi2SasIOUnitPage0_t, PhyData) + (ioc->sas_hba.num_phys
3467 * sizeof(Mpi2SasIOUnit0PhyData_t));
3468 sas_iounit_pg0 = kzalloc(sz, GFP_KERNEL);
3469 if (!sas_iounit_pg0) {
3470 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3471 ioc->name, __FILE__, __LINE__, __func__);
3472 return;
3473 }
Eric Moore635374e2009-03-09 01:21:12 -06003474
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303475 if ((mpt2sas_config_get_sas_iounit_pg0(ioc, &mpi_reply,
3476 sas_iounit_pg0, sz)) != 0)
3477 goto out;
3478 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
3479 if (ioc_status != MPI2_IOCSTATUS_SUCCESS)
3480 goto out;
3481 for (i = 0; i < ioc->sas_hba.num_phys ; i++) {
3482 if (i == 0)
3483 ioc->sas_hba.handle = le16_to_cpu(sas_iounit_pg0->
3484 PhyData[0].ControllerDevHandle);
3485 ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle;
3486 attached_handle = le16_to_cpu(sas_iounit_pg0->PhyData[i].
3487 AttachedDevHandle);
3488 mpt2sas_transport_update_links(ioc, ioc->sas_hba.sas_address,
3489 attached_handle, i, sas_iounit_pg0->PhyData[i].
3490 NegotiatedLinkRate >> 4);
3491 }
Eric Moore635374e2009-03-09 01:21:12 -06003492 out:
3493 kfree(sas_iounit_pg0);
3494}
3495
3496/**
3497 * _scsih_sas_host_add - create sas host object
3498 * @ioc: per adapter object
3499 *
3500 * Creating host side data object, stored in ioc->sas_hba
3501 *
3502 * Return nothing.
3503 */
3504static void
3505_scsih_sas_host_add(struct MPT2SAS_ADAPTER *ioc)
3506{
3507 int i;
3508 Mpi2ConfigReply_t mpi_reply;
3509 Mpi2SasIOUnitPage0_t *sas_iounit_pg0 = NULL;
3510 Mpi2SasIOUnitPage1_t *sas_iounit_pg1 = NULL;
3511 Mpi2SasPhyPage0_t phy_pg0;
3512 Mpi2SasDevicePage0_t sas_device_pg0;
3513 Mpi2SasEnclosurePage0_t enclosure_pg0;
3514 u16 ioc_status;
3515 u16 sz;
3516 u16 device_missing_delay;
3517
3518 mpt2sas_config_get_number_hba_phys(ioc, &ioc->sas_hba.num_phys);
3519 if (!ioc->sas_hba.num_phys) {
3520 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3521 ioc->name, __FILE__, __LINE__, __func__);
3522 return;
3523 }
3524
3525 /* sas_iounit page 0 */
3526 sz = offsetof(Mpi2SasIOUnitPage0_t, PhyData) + (ioc->sas_hba.num_phys *
3527 sizeof(Mpi2SasIOUnit0PhyData_t));
3528 sas_iounit_pg0 = kzalloc(sz, GFP_KERNEL);
3529 if (!sas_iounit_pg0) {
3530 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3531 ioc->name, __FILE__, __LINE__, __func__);
3532 return;
3533 }
3534 if ((mpt2sas_config_get_sas_iounit_pg0(ioc, &mpi_reply,
3535 sas_iounit_pg0, sz))) {
3536 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3537 ioc->name, __FILE__, __LINE__, __func__);
3538 goto out;
3539 }
3540 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3541 MPI2_IOCSTATUS_MASK;
3542 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3543 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3544 ioc->name, __FILE__, __LINE__, __func__);
3545 goto out;
3546 }
3547
3548 /* sas_iounit page 1 */
3549 sz = offsetof(Mpi2SasIOUnitPage1_t, PhyData) + (ioc->sas_hba.num_phys *
3550 sizeof(Mpi2SasIOUnit1PhyData_t));
3551 sas_iounit_pg1 = kzalloc(sz, GFP_KERNEL);
3552 if (!sas_iounit_pg1) {
3553 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3554 ioc->name, __FILE__, __LINE__, __func__);
3555 goto out;
3556 }
3557 if ((mpt2sas_config_get_sas_iounit_pg1(ioc, &mpi_reply,
3558 sas_iounit_pg1, sz))) {
3559 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3560 ioc->name, __FILE__, __LINE__, __func__);
3561 goto out;
3562 }
3563 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3564 MPI2_IOCSTATUS_MASK;
3565 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3566 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3567 ioc->name, __FILE__, __LINE__, __func__);
3568 goto out;
3569 }
3570
3571 ioc->io_missing_delay =
3572 le16_to_cpu(sas_iounit_pg1->IODeviceMissingDelay);
3573 device_missing_delay =
3574 le16_to_cpu(sas_iounit_pg1->ReportDeviceMissingDelay);
3575 if (device_missing_delay & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
3576 ioc->device_missing_delay = (device_missing_delay &
3577 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
3578 else
3579 ioc->device_missing_delay = device_missing_delay &
3580 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
3581
3582 ioc->sas_hba.parent_dev = &ioc->shost->shost_gendev;
3583 ioc->sas_hba.phy = kcalloc(ioc->sas_hba.num_phys,
3584 sizeof(struct _sas_phy), GFP_KERNEL);
3585 if (!ioc->sas_hba.phy) {
3586 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3587 ioc->name, __FILE__, __LINE__, __func__);
3588 goto out;
3589 }
3590 for (i = 0; i < ioc->sas_hba.num_phys ; i++) {
3591 if ((mpt2sas_config_get_phy_pg0(ioc, &mpi_reply, &phy_pg0,
3592 i))) {
3593 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3594 ioc->name, __FILE__, __LINE__, __func__);
3595 goto out;
3596 }
3597 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3598 MPI2_IOCSTATUS_MASK;
3599 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3600 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3601 ioc->name, __FILE__, __LINE__, __func__);
3602 goto out;
3603 }
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303604
3605 if (i == 0)
3606 ioc->sas_hba.handle = le16_to_cpu(sas_iounit_pg0->
3607 PhyData[0].ControllerDevHandle);
3608 ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle;
Eric Moore635374e2009-03-09 01:21:12 -06003609 ioc->sas_hba.phy[i].phy_id = i;
3610 mpt2sas_transport_add_host_phy(ioc, &ioc->sas_hba.phy[i],
3611 phy_pg0, ioc->sas_hba.parent_dev);
3612 }
3613 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303614 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, ioc->sas_hba.handle))) {
Eric Moore635374e2009-03-09 01:21:12 -06003615 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3616 ioc->name, __FILE__, __LINE__, __func__);
3617 goto out;
3618 }
Eric Moore635374e2009-03-09 01:21:12 -06003619 ioc->sas_hba.enclosure_handle =
3620 le16_to_cpu(sas_device_pg0.EnclosureHandle);
3621 ioc->sas_hba.sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
3622 printk(MPT2SAS_INFO_FMT "host_add: handle(0x%04x), "
3623 "sas_addr(0x%016llx), phys(%d)\n", ioc->name, ioc->sas_hba.handle,
3624 (unsigned long long) ioc->sas_hba.sas_address,
3625 ioc->sas_hba.num_phys) ;
3626
3627 if (ioc->sas_hba.enclosure_handle) {
3628 if (!(mpt2sas_config_get_enclosure_pg0(ioc, &mpi_reply,
3629 &enclosure_pg0,
3630 MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
3631 ioc->sas_hba.enclosure_handle))) {
3632 ioc->sas_hba.enclosure_logical_id =
3633 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
3634 }
3635 }
3636
3637 out:
3638 kfree(sas_iounit_pg1);
3639 kfree(sas_iounit_pg0);
3640}
3641
3642/**
3643 * _scsih_expander_add - creating expander object
3644 * @ioc: per adapter object
3645 * @handle: expander handle
3646 *
3647 * Creating expander object, stored in ioc->sas_expander_list.
3648 *
3649 * Return 0 for success, else error.
3650 */
3651static int
3652_scsih_expander_add(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3653{
3654 struct _sas_node *sas_expander;
3655 Mpi2ConfigReply_t mpi_reply;
3656 Mpi2ExpanderPage0_t expander_pg0;
3657 Mpi2ExpanderPage1_t expander_pg1;
3658 Mpi2SasEnclosurePage0_t enclosure_pg0;
3659 u32 ioc_status;
3660 u16 parent_handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303661 __le64 sas_address, sas_address_parent = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003662 int i;
3663 unsigned long flags;
Kashyap, Desai20f58952009-08-07 19:34:26 +05303664 struct _sas_port *mpt2sas_port = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06003665 int rc = 0;
3666
3667 if (!handle)
3668 return -1;
3669
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05303670 if (ioc->shost_recovery)
3671 return -1;
3672
Eric Moore635374e2009-03-09 01:21:12 -06003673 if ((mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
3674 MPI2_SAS_EXPAND_PGAD_FORM_HNDL, handle))) {
3675 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3676 ioc->name, __FILE__, __LINE__, __func__);
3677 return -1;
3678 }
3679
3680 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3681 MPI2_IOCSTATUS_MASK;
3682 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3683 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3684 ioc->name, __FILE__, __LINE__, __func__);
3685 return -1;
3686 }
3687
3688 /* handle out of order topology events */
3689 parent_handle = le16_to_cpu(expander_pg0.ParentDevHandle);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303690 if (_scsih_get_sas_address(ioc, parent_handle, &sas_address_parent)
3691 != 0) {
3692 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3693 ioc->name, __FILE__, __LINE__, __func__);
3694 return -1;
3695 }
3696 if (sas_address_parent != ioc->sas_hba.sas_address) {
Eric Moore635374e2009-03-09 01:21:12 -06003697 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303698 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
3699 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06003700 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
3701 if (!sas_expander) {
3702 rc = _scsih_expander_add(ioc, parent_handle);
3703 if (rc != 0)
3704 return rc;
3705 }
3706 }
3707
Eric Moore635374e2009-03-09 01:21:12 -06003708 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303709 sas_address = le64_to_cpu(expander_pg0.SASAddress);
Eric Moore635374e2009-03-09 01:21:12 -06003710 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
3711 sas_address);
3712 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
3713
3714 if (sas_expander)
3715 return 0;
3716
3717 sas_expander = kzalloc(sizeof(struct _sas_node),
3718 GFP_KERNEL);
3719 if (!sas_expander) {
3720 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3721 ioc->name, __FILE__, __LINE__, __func__);
3722 return -1;
3723 }
3724
3725 sas_expander->handle = handle;
3726 sas_expander->num_phys = expander_pg0.NumPhys;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303727 sas_expander->sas_address_parent = sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06003728 sas_expander->sas_address = sas_address;
3729
3730 printk(MPT2SAS_INFO_FMT "expander_add: handle(0x%04x),"
3731 " parent(0x%04x), sas_addr(0x%016llx), phys(%d)\n", ioc->name,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303732 handle, parent_handle, (unsigned long long)
Eric Moore635374e2009-03-09 01:21:12 -06003733 sas_expander->sas_address, sas_expander->num_phys);
3734
3735 if (!sas_expander->num_phys)
3736 goto out_fail;
3737 sas_expander->phy = kcalloc(sas_expander->num_phys,
3738 sizeof(struct _sas_phy), GFP_KERNEL);
3739 if (!sas_expander->phy) {
3740 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3741 ioc->name, __FILE__, __LINE__, __func__);
3742 rc = -1;
3743 goto out_fail;
3744 }
3745
3746 INIT_LIST_HEAD(&sas_expander->sas_port_list);
3747 mpt2sas_port = mpt2sas_transport_port_add(ioc, handle,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303748 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06003749 if (!mpt2sas_port) {
3750 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3751 ioc->name, __FILE__, __LINE__, __func__);
3752 rc = -1;
3753 goto out_fail;
3754 }
3755 sas_expander->parent_dev = &mpt2sas_port->rphy->dev;
3756
3757 for (i = 0 ; i < sas_expander->num_phys ; i++) {
3758 if ((mpt2sas_config_get_expander_pg1(ioc, &mpi_reply,
3759 &expander_pg1, i, handle))) {
3760 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3761 ioc->name, __FILE__, __LINE__, __func__);
Kashyap, Desai20f58952009-08-07 19:34:26 +05303762 rc = -1;
3763 goto out_fail;
Eric Moore635374e2009-03-09 01:21:12 -06003764 }
3765 sas_expander->phy[i].handle = handle;
3766 sas_expander->phy[i].phy_id = i;
Kashyap, Desai20f58952009-08-07 19:34:26 +05303767
3768 if ((mpt2sas_transport_add_expander_phy(ioc,
3769 &sas_expander->phy[i], expander_pg1,
3770 sas_expander->parent_dev))) {
3771 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3772 ioc->name, __FILE__, __LINE__, __func__);
3773 rc = -1;
3774 goto out_fail;
3775 }
Eric Moore635374e2009-03-09 01:21:12 -06003776 }
3777
3778 if (sas_expander->enclosure_handle) {
3779 if (!(mpt2sas_config_get_enclosure_pg0(ioc, &mpi_reply,
3780 &enclosure_pg0, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
3781 sas_expander->enclosure_handle))) {
3782 sas_expander->enclosure_logical_id =
3783 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
3784 }
3785 }
3786
3787 _scsih_expander_node_add(ioc, sas_expander);
3788 return 0;
3789
3790 out_fail:
3791
Kashyap, Desai20f58952009-08-07 19:34:26 +05303792 if (mpt2sas_port)
3793 mpt2sas_transport_port_remove(ioc, sas_expander->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303794 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06003795 kfree(sas_expander);
3796 return rc;
3797}
3798
3799/**
3800 * _scsih_expander_remove - removing expander object
3801 * @ioc: per adapter object
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303802 * @sas_address: expander sas_address
Eric Moore635374e2009-03-09 01:21:12 -06003803 *
3804 * Return nothing.
3805 */
3806static void
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303807_scsih_expander_remove(struct MPT2SAS_ADAPTER *ioc, u64 sas_address)
Eric Moore635374e2009-03-09 01:21:12 -06003808{
3809 struct _sas_node *sas_expander;
3810 unsigned long flags;
3811
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05303812 if (ioc->shost_recovery)
3813 return;
3814
Eric Moore635374e2009-03-09 01:21:12 -06003815 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303816 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
3817 sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06003818 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
3819 _scsih_expander_node_remove(ioc, sas_expander);
3820}
3821
3822/**
3823 * _scsih_add_device - creating sas device object
3824 * @ioc: per adapter object
3825 * @handle: sas device handle
3826 * @phy_num: phy number end device attached to
3827 * @is_pd: is this hidden raid component
3828 *
3829 * Creating end device object, stored in ioc->sas_device_list.
3830 *
3831 * Returns 0 for success, non-zero for failure.
3832 */
3833static int
3834_scsih_add_device(struct MPT2SAS_ADAPTER *ioc, u16 handle, u8 phy_num, u8 is_pd)
3835{
3836 Mpi2ConfigReply_t mpi_reply;
3837 Mpi2SasDevicePage0_t sas_device_pg0;
3838 Mpi2SasEnclosurePage0_t enclosure_pg0;
3839 struct _sas_device *sas_device;
3840 u32 ioc_status;
3841 __le64 sas_address;
3842 u32 device_info;
3843 unsigned long flags;
3844
3845 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
3846 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
3847 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3848 ioc->name, __FILE__, __LINE__, __func__);
3849 return -1;
3850 }
3851
3852 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3853 MPI2_IOCSTATUS_MASK;
3854 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3855 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3856 ioc->name, __FILE__, __LINE__, __func__);
3857 return -1;
3858 }
3859
3860 /* check if device is present */
3861 if (!(le16_to_cpu(sas_device_pg0.Flags) &
3862 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT)) {
3863 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3864 ioc->name, __FILE__, __LINE__, __func__);
3865 printk(MPT2SAS_ERR_FMT "Flags = 0x%04x\n",
3866 ioc->name, le16_to_cpu(sas_device_pg0.Flags));
3867 return -1;
3868 }
3869
3870 /* check if there were any issus with discovery */
3871 if (sas_device_pg0.AccessStatus ==
3872 MPI2_SAS_DEVICE0_ASTATUS_SATA_INIT_FAILED) {
3873 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3874 ioc->name, __FILE__, __LINE__, __func__);
3875 printk(MPT2SAS_ERR_FMT "AccessStatus = 0x%02x\n",
3876 ioc->name, sas_device_pg0.AccessStatus);
3877 return -1;
3878 }
3879
3880 /* check if this is end device */
3881 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
3882 if (!(_scsih_is_end_device(device_info))) {
3883 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3884 ioc->name, __FILE__, __LINE__, __func__);
3885 return -1;
3886 }
3887
3888 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
3889
3890 spin_lock_irqsave(&ioc->sas_device_lock, flags);
3891 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
3892 sas_address);
3893 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
3894
3895 if (sas_device) {
3896 _scsih_ublock_io_device(ioc, handle);
3897 return 0;
3898 }
3899
3900 sas_device = kzalloc(sizeof(struct _sas_device),
3901 GFP_KERNEL);
3902 if (!sas_device) {
3903 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3904 ioc->name, __FILE__, __LINE__, __func__);
3905 return -1;
3906 }
3907
3908 sas_device->handle = handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303909 if (_scsih_get_sas_address(ioc, le16_to_cpu
3910 (sas_device_pg0.ParentDevHandle),
3911 &sas_device->sas_address_parent) != 0)
3912 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3913 ioc->name, __FILE__, __LINE__, __func__);
Eric Moore635374e2009-03-09 01:21:12 -06003914 sas_device->enclosure_handle =
3915 le16_to_cpu(sas_device_pg0.EnclosureHandle);
3916 sas_device->slot =
3917 le16_to_cpu(sas_device_pg0.Slot);
3918 sas_device->device_info = device_info;
3919 sas_device->sas_address = sas_address;
3920 sas_device->hidden_raid_component = is_pd;
3921
3922 /* get enclosure_logical_id */
Kashyap, Desai15052c92009-08-07 19:33:17 +05303923 if (sas_device->enclosure_handle && !(mpt2sas_config_get_enclosure_pg0(
3924 ioc, &mpi_reply, &enclosure_pg0, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
3925 sas_device->enclosure_handle)))
Eric Moore635374e2009-03-09 01:21:12 -06003926 sas_device->enclosure_logical_id =
3927 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
Eric Moore635374e2009-03-09 01:21:12 -06003928
3929 /* get device name */
3930 sas_device->device_name = le64_to_cpu(sas_device_pg0.DeviceName);
3931
3932 if (ioc->wait_for_port_enable_to_complete)
3933 _scsih_sas_device_init_add(ioc, sas_device);
3934 else
3935 _scsih_sas_device_add(ioc, sas_device);
3936
3937 return 0;
3938}
3939
3940/**
3941 * _scsih_remove_device - removing sas device object
3942 * @ioc: per adapter object
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303943 * @sas_device: the sas_device object
Eric Moore635374e2009-03-09 01:21:12 -06003944 *
3945 * Return nothing.
3946 */
3947static void
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303948_scsih_remove_device(struct MPT2SAS_ADAPTER *ioc, struct _sas_device
3949 *sas_device)
Eric Moore635374e2009-03-09 01:21:12 -06003950{
3951 struct MPT2SAS_TARGET *sas_target_priv_data;
Eric Moore635374e2009-03-09 01:21:12 -06003952 Mpi2SasIoUnitControlReply_t mpi_reply;
3953 Mpi2SasIoUnitControlRequest_t mpi_request;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303954 u16 device_handle, handle;
Eric Moore635374e2009-03-09 01:21:12 -06003955
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303956 if (!sas_device)
Eric Moore635374e2009-03-09 01:21:12 -06003957 return;
Eric Moore635374e2009-03-09 01:21:12 -06003958
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303959 handle = sas_device->handle;
3960 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: enter: handle(0x%04x),"
3961 " sas_addr(0x%016llx)\n", ioc->name, __func__, handle,
3962 (unsigned long long) sas_device->sas_address));
Eric Moore635374e2009-03-09 01:21:12 -06003963
3964 if (sas_device->starget && sas_device->starget->hostdata) {
3965 sas_target_priv_data = sas_device->starget->hostdata;
3966 sas_target_priv_data->deleted = 1;
3967 }
Eric Moore635374e2009-03-09 01:21:12 -06003968
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303969 if (ioc->remove_host || ioc->shost_recovery || !handle)
Eric Moore635374e2009-03-09 01:21:12 -06003970 goto out;
3971
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303972 if ((sas_device->state & MPTSAS_STATE_TR_COMPLETE)) {
3973 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "\tskip "
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303974 "target_reset handle(0x%04x)\n", ioc->name,
3975 handle));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303976 goto skip_tr;
3977 }
3978
Eric Moore635374e2009-03-09 01:21:12 -06003979 /* Target Reset to flush out all the outstanding IO */
3980 device_handle = (sas_device->hidden_raid_component) ?
3981 sas_device->volume_handle : handle;
3982 if (device_handle) {
3983 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "issue target reset: "
3984 "handle(0x%04x)\n", ioc->name, device_handle));
3985 mutex_lock(&ioc->tm_cmds.mutex);
3986 mpt2sas_scsih_issue_tm(ioc, device_handle, 0,
3987 MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET, 0, 10);
3988 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
3989 mutex_unlock(&ioc->tm_cmds.mutex);
3990 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "issue target reset "
3991 "done: handle(0x%04x)\n", ioc->name, device_handle));
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05303992 if (ioc->shost_recovery)
3993 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06003994 }
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303995 skip_tr:
3996
3997 if ((sas_device->state & MPTSAS_STATE_CNTRL_COMPLETE)) {
3998 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "\tskip "
3999 "sas_cntrl handle(0x%04x)\n", ioc->name, handle));
4000 goto out;
4001 }
Eric Moore635374e2009-03-09 01:21:12 -06004002
4003 /* SAS_IO_UNIT_CNTR - send REMOVE_DEVICE */
4004 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "sas_iounit: handle"
4005 "(0x%04x)\n", ioc->name, handle));
4006 memset(&mpi_request, 0, sizeof(Mpi2SasIoUnitControlRequest_t));
4007 mpi_request.Function = MPI2_FUNCTION_SAS_IO_UNIT_CONTROL;
4008 mpi_request.Operation = MPI2_SAS_OP_REMOVE_DEVICE;
4009 mpi_request.DevHandle = handle;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304010 mpi_request.VF_ID = 0; /* TODO */
4011 mpi_request.VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06004012 if ((mpt2sas_base_sas_iounit_control(ioc, &mpi_reply,
4013 &mpi_request)) != 0) {
4014 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4015 ioc->name, __FILE__, __LINE__, __func__);
4016 }
4017
4018 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "sas_iounit: ioc_status"
4019 "(0x%04x), loginfo(0x%08x)\n", ioc->name,
4020 le16_to_cpu(mpi_reply.IOCStatus),
4021 le32_to_cpu(mpi_reply.IOCLogInfo)));
4022
4023 out:
Kashyap, Desai34a03be2009-08-20 13:23:19 +05304024
4025 _scsih_ublock_io_device(ioc, handle);
4026
Eric Moore635374e2009-03-09 01:21:12 -06004027 mpt2sas_transport_port_remove(ioc, sas_device->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304028 sas_device->sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06004029
4030 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), sas_addr"
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304031 "(0x%016llx)\n", ioc->name, handle,
Eric Moore635374e2009-03-09 01:21:12 -06004032 (unsigned long long) sas_device->sas_address);
4033 _scsih_sas_device_remove(ioc, sas_device);
4034
4035 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit: handle"
4036 "(0x%04x)\n", ioc->name, __func__, handle));
4037}
4038
4039#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4040/**
4041 * _scsih_sas_topology_change_event_debug - debug for topology event
4042 * @ioc: per adapter object
4043 * @event_data: event data payload
4044 * Context: user.
4045 */
4046static void
4047_scsih_sas_topology_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4048 Mpi2EventDataSasTopologyChangeList_t *event_data)
4049{
4050 int i;
4051 u16 handle;
4052 u16 reason_code;
4053 u8 phy_number;
4054 char *status_str = NULL;
4055 char link_rate[25];
4056
4057 switch (event_data->ExpStatus) {
4058 case MPI2_EVENT_SAS_TOPO_ES_ADDED:
4059 status_str = "add";
4060 break;
4061 case MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING:
4062 status_str = "remove";
4063 break;
4064 case MPI2_EVENT_SAS_TOPO_ES_RESPONDING:
4065 status_str = "responding";
4066 break;
4067 case MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING:
4068 status_str = "remove delay";
4069 break;
4070 default:
4071 status_str = "unknown status";
4072 break;
4073 }
4074 printk(MPT2SAS_DEBUG_FMT "sas topology change: (%s)\n",
4075 ioc->name, status_str);
4076 printk(KERN_DEBUG "\thandle(0x%04x), enclosure_handle(0x%04x) "
4077 "start_phy(%02d), count(%d)\n",
4078 le16_to_cpu(event_data->ExpanderDevHandle),
4079 le16_to_cpu(event_data->EnclosureHandle),
4080 event_data->StartPhyNum, event_data->NumEntries);
4081 for (i = 0; i < event_data->NumEntries; i++) {
4082 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
4083 if (!handle)
4084 continue;
4085 phy_number = event_data->StartPhyNum + i;
4086 reason_code = event_data->PHY[i].PhyStatus &
4087 MPI2_EVENT_SAS_TOPO_RC_MASK;
4088 switch (reason_code) {
4089 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED:
4090 snprintf(link_rate, 25, ": add, link(0x%02x)",
4091 (event_data->PHY[i].LinkRate >> 4));
4092 status_str = link_rate;
4093 break;
4094 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING:
4095 status_str = ": remove";
4096 break;
4097 case MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING:
4098 status_str = ": remove_delay";
4099 break;
4100 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED:
4101 snprintf(link_rate, 25, ": link(0x%02x)",
4102 (event_data->PHY[i].LinkRate >> 4));
4103 status_str = link_rate;
4104 break;
4105 case MPI2_EVENT_SAS_TOPO_RC_NO_CHANGE:
4106 status_str = ": responding";
4107 break;
4108 default:
4109 status_str = ": unknown";
4110 break;
4111 }
4112 printk(KERN_DEBUG "\tphy(%02d), attached_handle(0x%04x)%s\n",
4113 phy_number, handle, status_str);
4114 }
4115}
4116#endif
4117
4118/**
4119 * _scsih_sas_topology_change_event - handle topology changes
4120 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304121 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004122 * Context: user.
4123 *
4124 */
4125static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304126_scsih_sas_topology_change_event(struct MPT2SAS_ADAPTER *ioc,
Eric Moore635374e2009-03-09 01:21:12 -06004127 struct fw_event_work *fw_event)
4128{
4129 int i;
4130 u16 parent_handle, handle;
4131 u16 reason_code;
4132 u8 phy_number;
4133 struct _sas_node *sas_expander;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304134 struct _sas_device *sas_device;
4135 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06004136 unsigned long flags;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304137 u8 link_rate;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304138 Mpi2EventDataSasTopologyChangeList_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06004139
4140#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4141 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
4142 _scsih_sas_topology_change_event_debug(ioc, event_data);
4143#endif
4144
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304145 if (ioc->shost_recovery)
4146 return;
4147
Eric Moore635374e2009-03-09 01:21:12 -06004148 if (!ioc->sas_hba.num_phys)
4149 _scsih_sas_host_add(ioc);
4150 else
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304151 _scsih_sas_host_refresh(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06004152
4153 if (fw_event->ignore) {
4154 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "ignoring expander "
4155 "event\n", ioc->name));
4156 return;
4157 }
4158
4159 parent_handle = le16_to_cpu(event_data->ExpanderDevHandle);
4160
4161 /* handle expander add */
4162 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_ADDED)
4163 if (_scsih_expander_add(ioc, parent_handle) != 0)
4164 return;
4165
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304166 spin_lock_irqsave(&ioc->sas_node_lock, flags);
4167 sas_expander = mpt2sas_scsih_expander_find_by_handle(ioc,
4168 parent_handle);
4169 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
4170 if (sas_expander)
4171 sas_address = sas_expander->sas_address;
4172 else if (parent_handle < ioc->sas_hba.num_phys)
4173 sas_address = ioc->sas_hba.sas_address;
4174 else
4175 return;
4176
Eric Moore635374e2009-03-09 01:21:12 -06004177 /* handle siblings events */
4178 for (i = 0; i < event_data->NumEntries; i++) {
4179 if (fw_event->ignore) {
4180 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "ignoring "
4181 "expander event\n", ioc->name));
4182 return;
4183 }
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05304184 if (ioc->shost_recovery)
4185 return;
Kashyap, Desai308609c2009-09-14 11:07:23 +05304186 phy_number = event_data->StartPhyNum + i;
4187 reason_code = event_data->PHY[i].PhyStatus &
4188 MPI2_EVENT_SAS_TOPO_RC_MASK;
4189 if ((event_data->PHY[i].PhyStatus &
4190 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT) && (reason_code !=
4191 MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING))
Eric Moore635374e2009-03-09 01:21:12 -06004192 continue;
4193 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
4194 if (!handle)
4195 continue;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304196 link_rate = event_data->PHY[i].LinkRate >> 4;
Eric Moore635374e2009-03-09 01:21:12 -06004197 switch (reason_code) {
4198 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED:
4199 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED:
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304200
4201 mpt2sas_transport_update_links(ioc, sas_address,
4202 handle, phy_number, link_rate);
4203
4204 if (link_rate < MPI2_SAS_NEG_LINK_RATE_1_5)
4205 break;
Eric Moore635374e2009-03-09 01:21:12 -06004206 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED) {
Eric Moore635374e2009-03-09 01:21:12 -06004207 _scsih_add_device(ioc, handle, phy_number, 0);
4208 }
4209 break;
4210 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING:
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304211
4212 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4213 sas_device = _scsih_sas_device_find_by_handle(ioc,
4214 handle);
4215 if (!sas_device) {
4216 spin_unlock_irqrestore(&ioc->sas_device_lock,
4217 flags);
4218 break;
4219 }
4220 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4221 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06004222 break;
4223 }
4224 }
4225
4226 /* handle expander removal */
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304227 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING &&
4228 sas_expander)
4229 _scsih_expander_remove(ioc, sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06004230
4231}
4232
4233#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4234/**
4235 * _scsih_sas_device_status_change_event_debug - debug for device event
4236 * @event_data: event data payload
4237 * Context: user.
4238 *
4239 * Return nothing.
4240 */
4241static void
4242_scsih_sas_device_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4243 Mpi2EventDataSasDeviceStatusChange_t *event_data)
4244{
4245 char *reason_str = NULL;
4246
4247 switch (event_data->ReasonCode) {
4248 case MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA:
4249 reason_str = "smart data";
4250 break;
4251 case MPI2_EVENT_SAS_DEV_STAT_RC_UNSUPPORTED:
4252 reason_str = "unsupported device discovered";
4253 break;
4254 case MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET:
4255 reason_str = "internal device reset";
4256 break;
4257 case MPI2_EVENT_SAS_DEV_STAT_RC_TASK_ABORT_INTERNAL:
4258 reason_str = "internal task abort";
4259 break;
4260 case MPI2_EVENT_SAS_DEV_STAT_RC_ABORT_TASK_SET_INTERNAL:
4261 reason_str = "internal task abort set";
4262 break;
4263 case MPI2_EVENT_SAS_DEV_STAT_RC_CLEAR_TASK_SET_INTERNAL:
4264 reason_str = "internal clear task set";
4265 break;
4266 case MPI2_EVENT_SAS_DEV_STAT_RC_QUERY_TASK_INTERNAL:
4267 reason_str = "internal query task";
4268 break;
4269 case MPI2_EVENT_SAS_DEV_STAT_RC_SATA_INIT_FAILURE:
4270 reason_str = "sata init failure";
4271 break;
4272 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET:
4273 reason_str = "internal device reset complete";
4274 break;
4275 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_TASK_ABORT_INTERNAL:
4276 reason_str = "internal task abort complete";
4277 break;
4278 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION:
4279 reason_str = "internal async notification";
4280 break;
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05304281 case MPI2_EVENT_SAS_DEV_STAT_RC_EXPANDER_REDUCED_FUNCTIONALITY:
4282 reason_str = "expander reduced functionality";
4283 break;
4284 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_EXPANDER_REDUCED_FUNCTIONALITY:
4285 reason_str = "expander reduced functionality complete";
4286 break;
Eric Moore635374e2009-03-09 01:21:12 -06004287 default:
4288 reason_str = "unknown reason";
4289 break;
4290 }
4291 printk(MPT2SAS_DEBUG_FMT "device status change: (%s)\n"
4292 "\thandle(0x%04x), sas address(0x%016llx)", ioc->name,
4293 reason_str, le16_to_cpu(event_data->DevHandle),
4294 (unsigned long long)le64_to_cpu(event_data->SASAddress));
4295 if (event_data->ReasonCode == MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA)
4296 printk(MPT2SAS_DEBUG_FMT ", ASC(0x%x), ASCQ(0x%x)\n", ioc->name,
4297 event_data->ASC, event_data->ASCQ);
4298 printk(KERN_INFO "\n");
4299}
4300#endif
4301
4302/**
4303 * _scsih_sas_device_status_change_event - handle device status change
4304 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304305 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004306 * Context: user.
4307 *
4308 * Return nothing.
4309 */
4310static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304311_scsih_sas_device_status_change_event(struct MPT2SAS_ADAPTER *ioc,
4312 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004313{
4314#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4315 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304316 _scsih_sas_device_status_change_event_debug(ioc,
4317 fw_event->event_data);
Eric Moore635374e2009-03-09 01:21:12 -06004318#endif
4319}
4320
4321#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4322/**
4323 * _scsih_sas_enclosure_dev_status_change_event_debug - debug for enclosure event
4324 * @ioc: per adapter object
4325 * @event_data: event data payload
4326 * Context: user.
4327 *
4328 * Return nothing.
4329 */
4330static void
4331_scsih_sas_enclosure_dev_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4332 Mpi2EventDataSasEnclDevStatusChange_t *event_data)
4333{
4334 char *reason_str = NULL;
4335
4336 switch (event_data->ReasonCode) {
4337 case MPI2_EVENT_SAS_ENCL_RC_ADDED:
4338 reason_str = "enclosure add";
4339 break;
4340 case MPI2_EVENT_SAS_ENCL_RC_NOT_RESPONDING:
4341 reason_str = "enclosure remove";
4342 break;
4343 default:
4344 reason_str = "unknown reason";
4345 break;
4346 }
4347
4348 printk(MPT2SAS_DEBUG_FMT "enclosure status change: (%s)\n"
4349 "\thandle(0x%04x), enclosure logical id(0x%016llx)"
4350 " number slots(%d)\n", ioc->name, reason_str,
4351 le16_to_cpu(event_data->EnclosureHandle),
4352 (unsigned long long)le64_to_cpu(event_data->EnclosureLogicalID),
4353 le16_to_cpu(event_data->StartSlot));
4354}
4355#endif
4356
4357/**
4358 * _scsih_sas_enclosure_dev_status_change_event - handle enclosure events
4359 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304360 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004361 * Context: user.
4362 *
4363 * Return nothing.
4364 */
4365static void
4366_scsih_sas_enclosure_dev_status_change_event(struct MPT2SAS_ADAPTER *ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304367 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004368{
4369#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4370 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
4371 _scsih_sas_enclosure_dev_status_change_event_debug(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304372 fw_event->event_data);
Eric Moore635374e2009-03-09 01:21:12 -06004373#endif
4374}
4375
4376/**
4377 * _scsih_sas_broadcast_primative_event - handle broadcast events
4378 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304379 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004380 * Context: user.
4381 *
4382 * Return nothing.
4383 */
4384static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304385_scsih_sas_broadcast_primative_event(struct MPT2SAS_ADAPTER *ioc,
4386 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004387{
4388 struct scsi_cmnd *scmd;
4389 u16 smid, handle;
4390 u32 lun;
4391 struct MPT2SAS_DEVICE *sas_device_priv_data;
4392 u32 termination_count;
4393 u32 query_count;
4394 Mpi2SCSITaskManagementReply_t *mpi_reply;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304395#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4396 Mpi2EventDataSasBroadcastPrimitive_t *event_data = fw_event->event_data;
4397#endif
Eric Moore635374e2009-03-09 01:21:12 -06004398 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "broadcast primative: "
4399 "phy number(%d), width(%d)\n", ioc->name, event_data->PhyNum,
4400 event_data->PortWidth));
Eric Moore635374e2009-03-09 01:21:12 -06004401 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: enter\n", ioc->name,
4402 __func__));
4403
4404 mutex_lock(&ioc->tm_cmds.mutex);
4405 termination_count = 0;
4406 query_count = 0;
4407 mpi_reply = ioc->tm_cmds.reply;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05304408 for (smid = 1; smid <= ioc->scsiio_depth; smid++) {
Eric Moore635374e2009-03-09 01:21:12 -06004409 scmd = _scsih_scsi_lookup_get(ioc, smid);
4410 if (!scmd)
4411 continue;
4412 sas_device_priv_data = scmd->device->hostdata;
4413 if (!sas_device_priv_data || !sas_device_priv_data->sas_target)
4414 continue;
4415 /* skip hidden raid components */
4416 if (sas_device_priv_data->sas_target->flags &
4417 MPT_TARGET_FLAGS_RAID_COMPONENT)
4418 continue;
4419 /* skip volumes */
4420 if (sas_device_priv_data->sas_target->flags &
4421 MPT_TARGET_FLAGS_VOLUME)
4422 continue;
4423
4424 handle = sas_device_priv_data->sas_target->handle;
4425 lun = sas_device_priv_data->lun;
4426 query_count++;
4427
4428 mpt2sas_scsih_issue_tm(ioc, handle, lun,
4429 MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK, smid, 30);
Eric Moore8901cbb2009-04-21 15:41:32 -06004430 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
Eric Moore635374e2009-03-09 01:21:12 -06004431
4432 if ((mpi_reply->IOCStatus == MPI2_IOCSTATUS_SUCCESS) &&
4433 (mpi_reply->ResponseCode ==
4434 MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED ||
4435 mpi_reply->ResponseCode ==
4436 MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC))
4437 continue;
4438
4439 mpt2sas_scsih_issue_tm(ioc, handle, lun,
Eric Moore8901cbb2009-04-21 15:41:32 -06004440 MPI2_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET, 0, 30);
4441 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
Eric Moore635374e2009-03-09 01:21:12 -06004442 termination_count += le32_to_cpu(mpi_reply->TerminationCount);
4443 }
Eric Moore635374e2009-03-09 01:21:12 -06004444 ioc->broadcast_aen_busy = 0;
4445 mutex_unlock(&ioc->tm_cmds.mutex);
4446
4447 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT
4448 "%s - exit, query_count = %d termination_count = %d\n",
4449 ioc->name, __func__, query_count, termination_count));
4450}
4451
4452/**
4453 * _scsih_sas_discovery_event - handle discovery events
4454 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304455 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004456 * Context: user.
4457 *
4458 * Return nothing.
4459 */
4460static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304461_scsih_sas_discovery_event(struct MPT2SAS_ADAPTER *ioc,
4462 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004463{
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304464 Mpi2EventDataSasDiscovery_t *event_data = fw_event->event_data;
4465
Eric Moore635374e2009-03-09 01:21:12 -06004466#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4467 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK) {
4468 printk(MPT2SAS_DEBUG_FMT "discovery event: (%s)", ioc->name,
4469 (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED) ?
4470 "start" : "stop");
4471 if (event_data->DiscoveryStatus)
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05304472 printk("discovery_status(0x%08x)",
4473 le32_to_cpu(event_data->DiscoveryStatus));
Eric Moore635374e2009-03-09 01:21:12 -06004474 printk("\n");
4475 }
4476#endif
4477
4478 if (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED &&
4479 !ioc->sas_hba.num_phys)
4480 _scsih_sas_host_add(ioc);
4481}
4482
4483/**
4484 * _scsih_reprobe_lun - reprobing lun
4485 * @sdev: scsi device struct
4486 * @no_uld_attach: sdev->no_uld_attach flag setting
4487 *
4488 **/
4489static void
4490_scsih_reprobe_lun(struct scsi_device *sdev, void *no_uld_attach)
4491{
4492 int rc;
4493
4494 sdev->no_uld_attach = no_uld_attach ? 1 : 0;
4495 sdev_printk(KERN_INFO, sdev, "%s raid component\n",
4496 sdev->no_uld_attach ? "hidding" : "exposing");
4497 rc = scsi_device_reprobe(sdev);
4498}
4499
4500/**
4501 * _scsih_reprobe_target - reprobing target
4502 * @starget: scsi target struct
4503 * @no_uld_attach: sdev->no_uld_attach flag setting
4504 *
4505 * Note: no_uld_attach flag determines whether the disk device is attached
4506 * to block layer. A value of `1` means to not attach.
4507 **/
4508static void
4509_scsih_reprobe_target(struct scsi_target *starget, int no_uld_attach)
4510{
4511 struct MPT2SAS_TARGET *sas_target_priv_data = starget->hostdata;
4512
4513 if (no_uld_attach)
4514 sas_target_priv_data->flags |= MPT_TARGET_FLAGS_RAID_COMPONENT;
4515 else
4516 sas_target_priv_data->flags &= ~MPT_TARGET_FLAGS_RAID_COMPONENT;
4517
4518 starget_for_each_device(starget, no_uld_attach ? (void *)1 : NULL,
4519 _scsih_reprobe_lun);
4520}
4521/**
4522 * _scsih_sas_volume_add - add new volume
4523 * @ioc: per adapter object
4524 * @element: IR config element data
4525 * Context: user.
4526 *
4527 * Return nothing.
4528 */
4529static void
4530_scsih_sas_volume_add(struct MPT2SAS_ADAPTER *ioc,
4531 Mpi2EventIrConfigElement_t *element)
4532{
4533 struct _raid_device *raid_device;
4534 unsigned long flags;
4535 u64 wwid;
4536 u16 handle = le16_to_cpu(element->VolDevHandle);
4537 int rc;
4538
Eric Moore635374e2009-03-09 01:21:12 -06004539 mpt2sas_config_get_volume_wwid(ioc, handle, &wwid);
4540 if (!wwid) {
4541 printk(MPT2SAS_ERR_FMT
4542 "failure at %s:%d/%s()!\n", ioc->name,
4543 __FILE__, __LINE__, __func__);
4544 return;
4545 }
4546
4547 spin_lock_irqsave(&ioc->raid_device_lock, flags);
4548 raid_device = _scsih_raid_device_find_by_wwid(ioc, wwid);
4549 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
4550
4551 if (raid_device)
4552 return;
4553
4554 raid_device = kzalloc(sizeof(struct _raid_device), GFP_KERNEL);
4555 if (!raid_device) {
4556 printk(MPT2SAS_ERR_FMT
4557 "failure at %s:%d/%s()!\n", ioc->name,
4558 __FILE__, __LINE__, __func__);
4559 return;
4560 }
4561
4562 raid_device->id = ioc->sas_id++;
4563 raid_device->channel = RAID_CHANNEL;
4564 raid_device->handle = handle;
4565 raid_device->wwid = wwid;
4566 _scsih_raid_device_add(ioc, raid_device);
4567 if (!ioc->wait_for_port_enable_to_complete) {
4568 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
4569 raid_device->id, 0);
4570 if (rc)
4571 _scsih_raid_device_remove(ioc, raid_device);
4572 } else
4573 _scsih_determine_boot_device(ioc, raid_device, 1);
4574}
4575
4576/**
4577 * _scsih_sas_volume_delete - delete volume
4578 * @ioc: per adapter object
4579 * @element: IR config element data
4580 * Context: user.
4581 *
4582 * Return nothing.
4583 */
4584static void
4585_scsih_sas_volume_delete(struct MPT2SAS_ADAPTER *ioc,
4586 Mpi2EventIrConfigElement_t *element)
4587{
4588 struct _raid_device *raid_device;
4589 u16 handle = le16_to_cpu(element->VolDevHandle);
4590 unsigned long flags;
4591 struct MPT2SAS_TARGET *sas_target_priv_data;
4592
Eric Moore635374e2009-03-09 01:21:12 -06004593 spin_lock_irqsave(&ioc->raid_device_lock, flags);
4594 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
4595 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
4596 if (!raid_device)
4597 return;
4598 if (raid_device->starget) {
4599 sas_target_priv_data = raid_device->starget->hostdata;
4600 sas_target_priv_data->deleted = 1;
4601 scsi_remove_target(&raid_device->starget->dev);
4602 }
4603 _scsih_raid_device_remove(ioc, raid_device);
4604}
4605
4606/**
4607 * _scsih_sas_pd_expose - expose pd component to /dev/sdX
4608 * @ioc: per adapter object
4609 * @element: IR config element data
4610 * Context: user.
4611 *
4612 * Return nothing.
4613 */
4614static void
4615_scsih_sas_pd_expose(struct MPT2SAS_ADAPTER *ioc,
4616 Mpi2EventIrConfigElement_t *element)
4617{
4618 struct _sas_device *sas_device;
4619 unsigned long flags;
4620 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
4621
4622 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4623 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4624 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4625 if (!sas_device)
4626 return;
4627
4628 /* exposing raid component */
4629 sas_device->volume_handle = 0;
4630 sas_device->volume_wwid = 0;
4631 sas_device->hidden_raid_component = 0;
4632 _scsih_reprobe_target(sas_device->starget, 0);
4633}
4634
4635/**
4636 * _scsih_sas_pd_hide - hide pd component from /dev/sdX
4637 * @ioc: per adapter object
4638 * @element: IR config element data
4639 * Context: user.
4640 *
4641 * Return nothing.
4642 */
4643static void
4644_scsih_sas_pd_hide(struct MPT2SAS_ADAPTER *ioc,
4645 Mpi2EventIrConfigElement_t *element)
4646{
4647 struct _sas_device *sas_device;
4648 unsigned long flags;
4649 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
4650
4651 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4652 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4653 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4654 if (!sas_device)
4655 return;
4656
4657 /* hiding raid component */
4658 mpt2sas_config_get_volume_handle(ioc, handle,
4659 &sas_device->volume_handle);
4660 mpt2sas_config_get_volume_wwid(ioc, sas_device->volume_handle,
4661 &sas_device->volume_wwid);
4662 sas_device->hidden_raid_component = 1;
4663 _scsih_reprobe_target(sas_device->starget, 1);
4664}
4665
4666/**
4667 * _scsih_sas_pd_delete - delete pd component
4668 * @ioc: per adapter object
4669 * @element: IR config element data
4670 * Context: user.
4671 *
4672 * Return nothing.
4673 */
4674static void
4675_scsih_sas_pd_delete(struct MPT2SAS_ADAPTER *ioc,
4676 Mpi2EventIrConfigElement_t *element)
4677{
4678 struct _sas_device *sas_device;
4679 unsigned long flags;
4680 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
4681
4682 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4683 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4684 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4685 if (!sas_device)
4686 return;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304687 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06004688}
4689
4690/**
4691 * _scsih_sas_pd_add - remove pd component
4692 * @ioc: per adapter object
4693 * @element: IR config element data
4694 * Context: user.
4695 *
4696 * Return nothing.
4697 */
4698static void
4699_scsih_sas_pd_add(struct MPT2SAS_ADAPTER *ioc,
4700 Mpi2EventIrConfigElement_t *element)
4701{
4702 struct _sas_device *sas_device;
4703 unsigned long flags;
4704 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
Kashyap, Desai62727a72009-08-07 19:35:18 +05304705 Mpi2ConfigReply_t mpi_reply;
4706 Mpi2SasDevicePage0_t sas_device_pg0;
4707 u32 ioc_status;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304708 u64 sas_address;
4709 u16 parent_handle;
Eric Moore635374e2009-03-09 01:21:12 -06004710
4711 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4712 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4713 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai62727a72009-08-07 19:35:18 +05304714 if (sas_device) {
Eric Moore635374e2009-03-09 01:21:12 -06004715 sas_device->hidden_raid_component = 1;
Kashyap, Desai62727a72009-08-07 19:35:18 +05304716 return;
4717 }
4718
4719 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
4720 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
4721 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4722 ioc->name, __FILE__, __LINE__, __func__);
4723 return;
4724 }
4725
4726 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4727 MPI2_IOCSTATUS_MASK;
4728 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4729 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4730 ioc->name, __FILE__, __LINE__, __func__);
4731 return;
4732 }
4733
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304734 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
4735 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address))
4736 mpt2sas_transport_update_links(ioc, sas_address, handle,
4737 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Kashyap, Desai62727a72009-08-07 19:35:18 +05304738
4739 _scsih_add_device(ioc, handle, 0, 1);
Eric Moore635374e2009-03-09 01:21:12 -06004740}
4741
4742#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4743/**
4744 * _scsih_sas_ir_config_change_event_debug - debug for IR Config Change events
4745 * @ioc: per adapter object
4746 * @event_data: event data payload
4747 * Context: user.
4748 *
4749 * Return nothing.
4750 */
4751static void
4752_scsih_sas_ir_config_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4753 Mpi2EventDataIrConfigChangeList_t *event_data)
4754{
4755 Mpi2EventIrConfigElement_t *element;
4756 u8 element_type;
4757 int i;
4758 char *reason_str = NULL, *element_str = NULL;
4759
4760 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
4761
4762 printk(MPT2SAS_DEBUG_FMT "raid config change: (%s), elements(%d)\n",
4763 ioc->name, (le32_to_cpu(event_data->Flags) &
4764 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ?
4765 "foreign" : "native", event_data->NumElements);
4766 for (i = 0; i < event_data->NumElements; i++, element++) {
4767 switch (element->ReasonCode) {
4768 case MPI2_EVENT_IR_CHANGE_RC_ADDED:
4769 reason_str = "add";
4770 break;
4771 case MPI2_EVENT_IR_CHANGE_RC_REMOVED:
4772 reason_str = "remove";
4773 break;
4774 case MPI2_EVENT_IR_CHANGE_RC_NO_CHANGE:
4775 reason_str = "no change";
4776 break;
4777 case MPI2_EVENT_IR_CHANGE_RC_HIDE:
4778 reason_str = "hide";
4779 break;
4780 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE:
4781 reason_str = "unhide";
4782 break;
4783 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED:
4784 reason_str = "volume_created";
4785 break;
4786 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED:
4787 reason_str = "volume_deleted";
4788 break;
4789 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED:
4790 reason_str = "pd_created";
4791 break;
4792 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED:
4793 reason_str = "pd_deleted";
4794 break;
4795 default:
4796 reason_str = "unknown reason";
4797 break;
4798 }
4799 element_type = le16_to_cpu(element->ElementFlags) &
4800 MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK;
4801 switch (element_type) {
4802 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLUME_ELEMENT:
4803 element_str = "volume";
4804 break;
4805 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLPHYSDISK_ELEMENT:
4806 element_str = "phys disk";
4807 break;
4808 case MPI2_EVENT_IR_CHANGE_EFLAGS_HOTSPARE_ELEMENT:
4809 element_str = "hot spare";
4810 break;
4811 default:
4812 element_str = "unknown element";
4813 break;
4814 }
4815 printk(KERN_DEBUG "\t(%s:%s), vol handle(0x%04x), "
4816 "pd handle(0x%04x), pd num(0x%02x)\n", element_str,
4817 reason_str, le16_to_cpu(element->VolDevHandle),
4818 le16_to_cpu(element->PhysDiskDevHandle),
4819 element->PhysDiskNum);
4820 }
4821}
4822#endif
4823
4824/**
4825 * _scsih_sas_ir_config_change_event - handle ir configuration change events
4826 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304827 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004828 * Context: user.
4829 *
4830 * Return nothing.
4831 */
4832static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304833_scsih_sas_ir_config_change_event(struct MPT2SAS_ADAPTER *ioc,
4834 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004835{
4836 Mpi2EventIrConfigElement_t *element;
4837 int i;
Kashyap, Desai62727a72009-08-07 19:35:18 +05304838 u8 foreign_config;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304839 Mpi2EventDataIrConfigChangeList_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06004840
4841#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4842 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
4843 _scsih_sas_ir_config_change_event_debug(ioc, event_data);
4844
4845#endif
Kashyap, Desai62727a72009-08-07 19:35:18 +05304846 foreign_config = (le32_to_cpu(event_data->Flags) &
4847 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ? 1 : 0;
Eric Moore635374e2009-03-09 01:21:12 -06004848
4849 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
4850 for (i = 0; i < event_data->NumElements; i++, element++) {
4851
4852 switch (element->ReasonCode) {
4853 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED:
4854 case MPI2_EVENT_IR_CHANGE_RC_ADDED:
Kashyap, Desai62727a72009-08-07 19:35:18 +05304855 if (!foreign_config)
4856 _scsih_sas_volume_add(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06004857 break;
4858 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED:
4859 case MPI2_EVENT_IR_CHANGE_RC_REMOVED:
Kashyap, Desai62727a72009-08-07 19:35:18 +05304860 if (!foreign_config)
4861 _scsih_sas_volume_delete(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06004862 break;
4863 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED:
4864 _scsih_sas_pd_hide(ioc, element);
4865 break;
4866 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED:
4867 _scsih_sas_pd_expose(ioc, element);
4868 break;
4869 case MPI2_EVENT_IR_CHANGE_RC_HIDE:
4870 _scsih_sas_pd_add(ioc, element);
4871 break;
4872 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE:
4873 _scsih_sas_pd_delete(ioc, element);
4874 break;
4875 }
4876 }
4877}
4878
4879/**
4880 * _scsih_sas_ir_volume_event - IR volume event
4881 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304882 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004883 * Context: user.
4884 *
4885 * Return nothing.
4886 */
4887static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304888_scsih_sas_ir_volume_event(struct MPT2SAS_ADAPTER *ioc,
4889 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004890{
4891 u64 wwid;
4892 unsigned long flags;
4893 struct _raid_device *raid_device;
4894 u16 handle;
4895 u32 state;
4896 int rc;
4897 struct MPT2SAS_TARGET *sas_target_priv_data;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304898 Mpi2EventDataIrVolume_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06004899
4900 if (event_data->ReasonCode != MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED)
4901 return;
4902
4903 handle = le16_to_cpu(event_data->VolDevHandle);
4904 state = le32_to_cpu(event_data->NewValue);
4905 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle(0x%04x), "
4906 "old(0x%08x), new(0x%08x)\n", ioc->name, __func__, handle,
4907 le32_to_cpu(event_data->PreviousValue), state));
4908
4909 spin_lock_irqsave(&ioc->raid_device_lock, flags);
4910 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
4911 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
4912
4913 switch (state) {
4914 case MPI2_RAID_VOL_STATE_MISSING:
4915 case MPI2_RAID_VOL_STATE_FAILED:
4916 if (!raid_device)
4917 break;
4918 if (raid_device->starget) {
4919 sas_target_priv_data = raid_device->starget->hostdata;
4920 sas_target_priv_data->deleted = 1;
4921 scsi_remove_target(&raid_device->starget->dev);
4922 }
4923 _scsih_raid_device_remove(ioc, raid_device);
4924 break;
4925
4926 case MPI2_RAID_VOL_STATE_ONLINE:
4927 case MPI2_RAID_VOL_STATE_DEGRADED:
4928 case MPI2_RAID_VOL_STATE_OPTIMAL:
4929 if (raid_device)
4930 break;
4931
4932 mpt2sas_config_get_volume_wwid(ioc, handle, &wwid);
4933 if (!wwid) {
4934 printk(MPT2SAS_ERR_FMT
4935 "failure at %s:%d/%s()!\n", ioc->name,
4936 __FILE__, __LINE__, __func__);
4937 break;
4938 }
4939
4940 raid_device = kzalloc(sizeof(struct _raid_device), GFP_KERNEL);
4941 if (!raid_device) {
4942 printk(MPT2SAS_ERR_FMT
4943 "failure at %s:%d/%s()!\n", ioc->name,
4944 __FILE__, __LINE__, __func__);
4945 break;
4946 }
4947
4948 raid_device->id = ioc->sas_id++;
4949 raid_device->channel = RAID_CHANNEL;
4950 raid_device->handle = handle;
4951 raid_device->wwid = wwid;
4952 _scsih_raid_device_add(ioc, raid_device);
4953 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
4954 raid_device->id, 0);
4955 if (rc)
4956 _scsih_raid_device_remove(ioc, raid_device);
4957 break;
4958
4959 case MPI2_RAID_VOL_STATE_INITIALIZING:
4960 default:
4961 break;
4962 }
4963}
4964
4965/**
4966 * _scsih_sas_ir_physical_disk_event - PD event
4967 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304968 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004969 * Context: user.
4970 *
4971 * Return nothing.
4972 */
4973static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304974_scsih_sas_ir_physical_disk_event(struct MPT2SAS_ADAPTER *ioc,
4975 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004976{
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304977 u16 handle, parent_handle;
Eric Moore635374e2009-03-09 01:21:12 -06004978 u32 state;
4979 struct _sas_device *sas_device;
4980 unsigned long flags;
Kashyap, Desai62727a72009-08-07 19:35:18 +05304981 Mpi2ConfigReply_t mpi_reply;
4982 Mpi2SasDevicePage0_t sas_device_pg0;
4983 u32 ioc_status;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304984 Mpi2EventDataIrPhysicalDisk_t *event_data = fw_event->event_data;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304985 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06004986
4987 if (event_data->ReasonCode != MPI2_EVENT_IR_PHYSDISK_RC_STATE_CHANGED)
4988 return;
4989
4990 handle = le16_to_cpu(event_data->PhysDiskDevHandle);
4991 state = le32_to_cpu(event_data->NewValue);
4992
4993 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle(0x%04x), "
4994 "old(0x%08x), new(0x%08x)\n", ioc->name, __func__, handle,
4995 le32_to_cpu(event_data->PreviousValue), state));
4996
4997 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4998 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4999 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5000
5001 switch (state) {
Eric Moore635374e2009-03-09 01:21:12 -06005002 case MPI2_RAID_PD_STATE_ONLINE:
5003 case MPI2_RAID_PD_STATE_DEGRADED:
5004 case MPI2_RAID_PD_STATE_REBUILDING:
5005 case MPI2_RAID_PD_STATE_OPTIMAL:
Kashyap, Desai62727a72009-08-07 19:35:18 +05305006 if (sas_device) {
Eric Moore635374e2009-03-09 01:21:12 -06005007 sas_device->hidden_raid_component = 1;
Kashyap, Desai62727a72009-08-07 19:35:18 +05305008 return;
5009 }
5010
5011 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
5012 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
5013 handle))) {
5014 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5015 ioc->name, __FILE__, __LINE__, __func__);
5016 return;
5017 }
5018
5019 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5020 MPI2_IOCSTATUS_MASK;
5021 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
5022 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5023 ioc->name, __FILE__, __LINE__, __func__);
5024 return;
5025 }
5026
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305027 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
5028 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address))
5029 mpt2sas_transport_update_links(ioc, sas_address, handle,
5030 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Kashyap, Desai62727a72009-08-07 19:35:18 +05305031
5032 _scsih_add_device(ioc, handle, 0, 1);
5033
Eric Moore635374e2009-03-09 01:21:12 -06005034 break;
5035
Kashyap, Desai62727a72009-08-07 19:35:18 +05305036 case MPI2_RAID_PD_STATE_OFFLINE:
Eric Moore635374e2009-03-09 01:21:12 -06005037 case MPI2_RAID_PD_STATE_NOT_CONFIGURED:
5038 case MPI2_RAID_PD_STATE_NOT_COMPATIBLE:
5039 case MPI2_RAID_PD_STATE_HOT_SPARE:
5040 default:
5041 break;
5042 }
5043}
5044
5045#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5046/**
5047 * _scsih_sas_ir_operation_status_event_debug - debug for IR op event
5048 * @ioc: per adapter object
5049 * @event_data: event data payload
5050 * Context: user.
5051 *
5052 * Return nothing.
5053 */
5054static void
5055_scsih_sas_ir_operation_status_event_debug(struct MPT2SAS_ADAPTER *ioc,
5056 Mpi2EventDataIrOperationStatus_t *event_data)
5057{
5058 char *reason_str = NULL;
5059
5060 switch (event_data->RAIDOperation) {
5061 case MPI2_EVENT_IR_RAIDOP_RESYNC:
5062 reason_str = "resync";
5063 break;
5064 case MPI2_EVENT_IR_RAIDOP_ONLINE_CAP_EXPANSION:
5065 reason_str = "online capacity expansion";
5066 break;
5067 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK:
5068 reason_str = "consistency check";
5069 break;
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05305070 case MPI2_EVENT_IR_RAIDOP_BACKGROUND_INIT:
5071 reason_str = "background init";
5072 break;
5073 case MPI2_EVENT_IR_RAIDOP_MAKE_DATA_CONSISTENT:
5074 reason_str = "make data consistent";
Eric Moore635374e2009-03-09 01:21:12 -06005075 break;
5076 }
5077
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05305078 if (!reason_str)
5079 return;
5080
Eric Moore635374e2009-03-09 01:21:12 -06005081 printk(MPT2SAS_INFO_FMT "raid operational status: (%s)"
5082 "\thandle(0x%04x), percent complete(%d)\n",
5083 ioc->name, reason_str,
5084 le16_to_cpu(event_data->VolDevHandle),
5085 event_data->PercentComplete);
5086}
5087#endif
5088
5089/**
5090 * _scsih_sas_ir_operation_status_event - handle RAID operation events
5091 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305092 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005093 * Context: user.
5094 *
5095 * Return nothing.
5096 */
5097static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305098_scsih_sas_ir_operation_status_event(struct MPT2SAS_ADAPTER *ioc,
5099 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005100{
5101#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5102 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305103 _scsih_sas_ir_operation_status_event_debug(ioc,
5104 fw_event->event_data);
Eric Moore635374e2009-03-09 01:21:12 -06005105#endif
5106}
5107
5108/**
5109 * _scsih_task_set_full - handle task set full
5110 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305111 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005112 * Context: user.
5113 *
5114 * Throttle back qdepth.
5115 */
5116static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305117_scsih_task_set_full(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work
5118 *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005119{
5120 unsigned long flags;
5121 struct _sas_device *sas_device;
5122 static struct _raid_device *raid_device;
5123 struct scsi_device *sdev;
5124 int depth;
5125 u16 current_depth;
5126 u16 handle;
5127 int id, channel;
5128 u64 sas_address;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305129 Mpi2EventDataTaskSetFull_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06005130
5131 current_depth = le16_to_cpu(event_data->CurrentDepth);
5132 handle = le16_to_cpu(event_data->DevHandle);
5133 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5134 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
5135 if (!sas_device) {
5136 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5137 return;
5138 }
5139 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5140 id = sas_device->id;
5141 channel = sas_device->channel;
5142 sas_address = sas_device->sas_address;
5143
5144 /* if hidden raid component, then change to volume characteristics */
5145 if (sas_device->hidden_raid_component && sas_device->volume_handle) {
5146 spin_lock_irqsave(&ioc->raid_device_lock, flags);
5147 raid_device = _scsih_raid_device_find_by_handle(
5148 ioc, sas_device->volume_handle);
5149 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
5150 if (raid_device) {
5151 id = raid_device->id;
5152 channel = raid_device->channel;
5153 handle = raid_device->handle;
5154 sas_address = raid_device->wwid;
5155 }
5156 }
5157
5158 if (ioc->logging_level & MPT_DEBUG_TASK_SET_FULL)
5159 starget_printk(KERN_DEBUG, sas_device->starget, "task set "
5160 "full: handle(0x%04x), sas_addr(0x%016llx), depth(%d)\n",
5161 handle, (unsigned long long)sas_address, current_depth);
5162
5163 shost_for_each_device(sdev, ioc->shost) {
5164 if (sdev->id == id && sdev->channel == channel) {
5165 if (current_depth > sdev->queue_depth) {
5166 if (ioc->logging_level &
5167 MPT_DEBUG_TASK_SET_FULL)
5168 sdev_printk(KERN_INFO, sdev, "strange "
5169 "observation, the queue depth is"
5170 " (%d) meanwhile fw queue depth "
5171 "is (%d)\n", sdev->queue_depth,
5172 current_depth);
5173 continue;
5174 }
5175 depth = scsi_track_queue_full(sdev,
5176 current_depth - 1);
5177 if (depth > 0)
5178 sdev_printk(KERN_INFO, sdev, "Queue depth "
5179 "reduced to (%d)\n", depth);
5180 else if (depth < 0)
5181 sdev_printk(KERN_INFO, sdev, "Tagged Command "
5182 "Queueing is being disabled\n");
5183 else if (depth == 0)
5184 if (ioc->logging_level &
5185 MPT_DEBUG_TASK_SET_FULL)
5186 sdev_printk(KERN_INFO, sdev,
5187 "Queue depth not changed yet\n");
5188 }
5189 }
5190}
5191
5192/**
5193 * _scsih_mark_responding_sas_device - mark a sas_devices as responding
5194 * @ioc: per adapter object
5195 * @sas_address: sas address
5196 * @slot: enclosure slot id
5197 * @handle: device handle
5198 *
5199 * After host reset, find out whether devices are still responding.
5200 * Used in _scsi_remove_unresponsive_sas_devices.
5201 *
5202 * Return nothing.
5203 */
5204static void
5205_scsih_mark_responding_sas_device(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
5206 u16 slot, u16 handle)
5207{
5208 struct MPT2SAS_TARGET *sas_target_priv_data;
5209 struct scsi_target *starget;
5210 struct _sas_device *sas_device;
5211 unsigned long flags;
5212
5213 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5214 list_for_each_entry(sas_device, &ioc->sas_device_list, list) {
5215 if (sas_device->sas_address == sas_address &&
5216 sas_device->slot == slot && sas_device->starget) {
5217 sas_device->responding = 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305218 sas_device->state = 0;
5219 starget = sas_device->starget;
5220 sas_target_priv_data = starget->hostdata;
5221 sas_target_priv_data->tm_busy = 0;
Eric Moore635374e2009-03-09 01:21:12 -06005222 starget_printk(KERN_INFO, sas_device->starget,
5223 "handle(0x%04x), sas_addr(0x%016llx), enclosure "
5224 "logical id(0x%016llx), slot(%d)\n", handle,
5225 (unsigned long long)sas_device->sas_address,
5226 (unsigned long long)
5227 sas_device->enclosure_logical_id,
5228 sas_device->slot);
5229 if (sas_device->handle == handle)
5230 goto out;
5231 printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n",
5232 sas_device->handle);
5233 sas_device->handle = handle;
Eric Moore635374e2009-03-09 01:21:12 -06005234 sas_target_priv_data->handle = handle;
5235 goto out;
5236 }
5237 }
5238 out:
5239 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5240}
5241
5242/**
5243 * _scsih_search_responding_sas_devices -
5244 * @ioc: per adapter object
5245 *
5246 * After host reset, find out whether devices are still responding.
5247 * If not remove.
5248 *
5249 * Return nothing.
5250 */
5251static void
5252_scsih_search_responding_sas_devices(struct MPT2SAS_ADAPTER *ioc)
5253{
5254 Mpi2SasDevicePage0_t sas_device_pg0;
5255 Mpi2ConfigReply_t mpi_reply;
5256 u16 ioc_status;
5257 __le64 sas_address;
5258 u16 handle;
5259 u32 device_info;
5260 u16 slot;
5261
5262 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name, __func__);
5263
5264 if (list_empty(&ioc->sas_device_list))
5265 return;
5266
5267 handle = 0xFFFF;
5268 while (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
5269 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE,
5270 handle))) {
5271 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5272 MPI2_IOCSTATUS_MASK;
5273 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
5274 break;
5275 handle = le16_to_cpu(sas_device_pg0.DevHandle);
5276 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
5277 if (!(_scsih_is_end_device(device_info)))
5278 continue;
5279 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
5280 slot = le16_to_cpu(sas_device_pg0.Slot);
5281 _scsih_mark_responding_sas_device(ioc, sas_address, slot,
5282 handle);
5283 }
5284}
5285
5286/**
5287 * _scsih_mark_responding_raid_device - mark a raid_device as responding
5288 * @ioc: per adapter object
5289 * @wwid: world wide identifier for raid volume
5290 * @handle: device handle
5291 *
5292 * After host reset, find out whether devices are still responding.
5293 * Used in _scsi_remove_unresponsive_raid_devices.
5294 *
5295 * Return nothing.
5296 */
5297static void
5298_scsih_mark_responding_raid_device(struct MPT2SAS_ADAPTER *ioc, u64 wwid,
5299 u16 handle)
5300{
5301 struct MPT2SAS_TARGET *sas_target_priv_data;
5302 struct scsi_target *starget;
5303 struct _raid_device *raid_device;
5304 unsigned long flags;
5305
5306 spin_lock_irqsave(&ioc->raid_device_lock, flags);
5307 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
5308 if (raid_device->wwid == wwid && raid_device->starget) {
5309 raid_device->responding = 1;
5310 starget_printk(KERN_INFO, raid_device->starget,
5311 "handle(0x%04x), wwid(0x%016llx)\n", handle,
5312 (unsigned long long)raid_device->wwid);
5313 if (raid_device->handle == handle)
5314 goto out;
5315 printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n",
5316 raid_device->handle);
5317 raid_device->handle = handle;
5318 starget = raid_device->starget;
5319 sas_target_priv_data = starget->hostdata;
5320 sas_target_priv_data->handle = handle;
5321 goto out;
5322 }
5323 }
5324 out:
5325 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
5326}
5327
5328/**
5329 * _scsih_search_responding_raid_devices -
5330 * @ioc: per adapter object
5331 *
5332 * After host reset, find out whether devices are still responding.
5333 * If not remove.
5334 *
5335 * Return nothing.
5336 */
5337static void
5338_scsih_search_responding_raid_devices(struct MPT2SAS_ADAPTER *ioc)
5339{
5340 Mpi2RaidVolPage1_t volume_pg1;
5341 Mpi2ConfigReply_t mpi_reply;
5342 u16 ioc_status;
5343 u16 handle;
5344
5345 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name, __func__);
5346
5347 if (list_empty(&ioc->raid_device_list))
5348 return;
5349
5350 handle = 0xFFFF;
5351 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
5352 &volume_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
5353 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5354 MPI2_IOCSTATUS_MASK;
5355 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
5356 break;
5357 handle = le16_to_cpu(volume_pg1.DevHandle);
5358 _scsih_mark_responding_raid_device(ioc,
5359 le64_to_cpu(volume_pg1.WWID), handle);
5360 }
5361}
5362
5363/**
5364 * _scsih_mark_responding_expander - mark a expander as responding
5365 * @ioc: per adapter object
5366 * @sas_address: sas address
5367 * @handle:
5368 *
5369 * After host reset, find out whether devices are still responding.
5370 * Used in _scsi_remove_unresponsive_expanders.
5371 *
5372 * Return nothing.
5373 */
5374static void
5375_scsih_mark_responding_expander(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
5376 u16 handle)
5377{
5378 struct _sas_node *sas_expander;
5379 unsigned long flags;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305380 int i;
Eric Moore635374e2009-03-09 01:21:12 -06005381
5382 spin_lock_irqsave(&ioc->sas_node_lock, flags);
5383 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305384 if (sas_expander->sas_address != sas_address)
5385 continue;
5386 sas_expander->responding = 1;
5387 if (sas_expander->handle == handle)
Eric Moore635374e2009-03-09 01:21:12 -06005388 goto out;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305389 printk(KERN_INFO "\texpander(0x%016llx): handle changed"
5390 " from(0x%04x) to (0x%04x)!!!\n",
5391 (unsigned long long)sas_expander->sas_address,
5392 sas_expander->handle, handle);
5393 sas_expander->handle = handle;
5394 for (i = 0 ; i < sas_expander->num_phys ; i++)
5395 sas_expander->phy[i].handle = handle;
5396 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06005397 }
5398 out:
5399 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
5400}
5401
5402/**
5403 * _scsih_search_responding_expanders -
5404 * @ioc: per adapter object
5405 *
5406 * After host reset, find out whether devices are still responding.
5407 * If not remove.
5408 *
5409 * Return nothing.
5410 */
5411static void
5412_scsih_search_responding_expanders(struct MPT2SAS_ADAPTER *ioc)
5413{
5414 Mpi2ExpanderPage0_t expander_pg0;
5415 Mpi2ConfigReply_t mpi_reply;
5416 u16 ioc_status;
5417 __le64 sas_address;
5418 u16 handle;
5419
5420 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name, __func__);
5421
5422 if (list_empty(&ioc->sas_expander_list))
5423 return;
5424
5425 handle = 0xFFFF;
5426 while (!(mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
5427 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL, handle))) {
5428
5429 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5430 MPI2_IOCSTATUS_MASK;
5431 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
5432 break;
5433
5434 handle = le16_to_cpu(expander_pg0.DevHandle);
5435 sas_address = le64_to_cpu(expander_pg0.SASAddress);
5436 printk(KERN_INFO "\texpander present: handle(0x%04x), "
5437 "sas_addr(0x%016llx)\n", handle,
5438 (unsigned long long)sas_address);
5439 _scsih_mark_responding_expander(ioc, sas_address, handle);
5440 }
5441
5442}
5443
5444/**
5445 * _scsih_remove_unresponding_devices - removing unresponding devices
5446 * @ioc: per adapter object
5447 *
5448 * Return nothing.
5449 */
5450static void
5451_scsih_remove_unresponding_devices(struct MPT2SAS_ADAPTER *ioc)
5452{
5453 struct _sas_device *sas_device, *sas_device_next;
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305454 struct _sas_node *sas_expander;
Eric Moore635374e2009-03-09 01:21:12 -06005455 struct _raid_device *raid_device, *raid_device_next;
Eric Moore635374e2009-03-09 01:21:12 -06005456
Eric Moore635374e2009-03-09 01:21:12 -06005457
5458 list_for_each_entry_safe(sas_device, sas_device_next,
5459 &ioc->sas_device_list, list) {
5460 if (sas_device->responding) {
5461 sas_device->responding = 0;
5462 continue;
5463 }
5464 if (sas_device->starget)
5465 starget_printk(KERN_INFO, sas_device->starget,
5466 "removing: handle(0x%04x), sas_addr(0x%016llx), "
5467 "enclosure logical id(0x%016llx), slot(%d)\n",
5468 sas_device->handle,
5469 (unsigned long long)sas_device->sas_address,
5470 (unsigned long long)
5471 sas_device->enclosure_logical_id,
5472 sas_device->slot);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305473 /* invalidate the device handle */
5474 sas_device->handle = 0;
5475 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06005476 }
5477
5478 list_for_each_entry_safe(raid_device, raid_device_next,
5479 &ioc->raid_device_list, list) {
5480 if (raid_device->responding) {
5481 raid_device->responding = 0;
5482 continue;
5483 }
5484 if (raid_device->starget) {
5485 starget_printk(KERN_INFO, raid_device->starget,
5486 "removing: handle(0x%04x), wwid(0x%016llx)\n",
5487 raid_device->handle,
5488 (unsigned long long)raid_device->wwid);
5489 scsi_remove_target(&raid_device->starget->dev);
5490 }
5491 _scsih_raid_device_remove(ioc, raid_device);
5492 }
5493
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305494 retry_expander_search:
5495 sas_expander = NULL;
5496 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
Eric Moore635374e2009-03-09 01:21:12 -06005497 if (sas_expander->responding) {
5498 sas_expander->responding = 0;
5499 continue;
5500 }
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305501 _scsih_expander_remove(ioc, sas_expander->sas_address);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305502 goto retry_expander_search;
5503 }
5504}
5505
5506/**
5507 * mpt2sas_scsih_reset_handler - reset callback handler (for scsih)
5508 * @ioc: per adapter object
5509 * @reset_phase: phase
5510 *
5511 * The handler for doing any required cleanup or initialization.
5512 *
5513 * The reset phase can be MPT2_IOC_PRE_RESET, MPT2_IOC_AFTER_RESET,
5514 * MPT2_IOC_DONE_RESET
5515 *
5516 * Return nothing.
5517 */
5518void
5519mpt2sas_scsih_reset_handler(struct MPT2SAS_ADAPTER *ioc, int reset_phase)
5520{
5521 switch (reset_phase) {
5522 case MPT2_IOC_PRE_RESET:
5523 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: "
5524 "MPT2_IOC_PRE_RESET\n", ioc->name, __func__));
5525 _scsih_fw_event_off(ioc);
5526 break;
5527 case MPT2_IOC_AFTER_RESET:
5528 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: "
5529 "MPT2_IOC_AFTER_RESET\n", ioc->name, __func__));
5530 if (ioc->tm_cmds.status & MPT2_CMD_PENDING) {
5531 ioc->tm_cmds.status |= MPT2_CMD_RESET;
5532 mpt2sas_base_free_smid(ioc, ioc->tm_cmds.smid);
5533 complete(&ioc->tm_cmds.done);
5534 }
5535 _scsih_fw_event_on(ioc);
5536 _scsih_flush_running_cmds(ioc);
5537 break;
5538 case MPT2_IOC_DONE_RESET:
5539 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: "
5540 "MPT2_IOC_DONE_RESET\n", ioc->name, __func__));
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305541 _scsih_sas_host_refresh(ioc);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305542 _scsih_search_responding_sas_devices(ioc);
5543 _scsih_search_responding_raid_devices(ioc);
5544 _scsih_search_responding_expanders(ioc);
5545 break;
5546 case MPT2_IOC_RUNNING:
5547 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: "
5548 "MPT2_IOC_RUNNING\n", ioc->name, __func__));
5549 _scsih_remove_unresponding_devices(ioc);
5550 break;
Eric Moore635374e2009-03-09 01:21:12 -06005551 }
5552}
5553
5554/**
5555 * _firmware_event_work - delayed task for processing firmware events
5556 * @ioc: per adapter object
5557 * @work: equal to the fw_event_work object
5558 * Context: user.
5559 *
5560 * Return nothing.
5561 */
5562static void
5563_firmware_event_work(struct work_struct *work)
5564{
5565 struct fw_event_work *fw_event = container_of(work,
Eric Moore6f92a7a2009-04-21 15:43:33 -06005566 struct fw_event_work, work);
Eric Moore635374e2009-03-09 01:21:12 -06005567 unsigned long flags;
5568 struct MPT2SAS_ADAPTER *ioc = fw_event->ioc;
5569
Eric Moore635374e2009-03-09 01:21:12 -06005570 /* the queue is being flushed so ignore this event */
5571 spin_lock_irqsave(&ioc->fw_event_lock, flags);
5572 if (ioc->fw_events_off || ioc->remove_host) {
5573 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
5574 _scsih_fw_event_free(ioc, fw_event);
5575 return;
5576 }
5577 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
5578
Eric Moore635374e2009-03-09 01:21:12 -06005579 if (ioc->shost_recovery) {
Eric Moore635374e2009-03-09 01:21:12 -06005580 _scsih_fw_event_requeue(ioc, fw_event, 1000);
5581 return;
5582 }
Eric Moore635374e2009-03-09 01:21:12 -06005583
5584 switch (fw_event->event) {
5585 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305586 _scsih_sas_topology_change_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005587 break;
5588 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305589 _scsih_sas_device_status_change_event(ioc,
5590 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005591 break;
5592 case MPI2_EVENT_SAS_DISCOVERY:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305593 _scsih_sas_discovery_event(ioc,
5594 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005595 break;
5596 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305597 _scsih_sas_broadcast_primative_event(ioc,
5598 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005599 break;
5600 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
5601 _scsih_sas_enclosure_dev_status_change_event(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305602 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005603 break;
5604 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305605 _scsih_sas_ir_config_change_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005606 break;
5607 case MPI2_EVENT_IR_VOLUME:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305608 _scsih_sas_ir_volume_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005609 break;
5610 case MPI2_EVENT_IR_PHYSICAL_DISK:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305611 _scsih_sas_ir_physical_disk_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005612 break;
5613 case MPI2_EVENT_IR_OPERATION_STATUS:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305614 _scsih_sas_ir_operation_status_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005615 break;
5616 case MPI2_EVENT_TASK_SET_FULL:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305617 _scsih_task_set_full(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005618 break;
5619 }
5620 _scsih_fw_event_free(ioc, fw_event);
5621}
5622
5623/**
5624 * mpt2sas_scsih_event_callback - firmware event handler (called at ISR time)
5625 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305626 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06005627 * @reply: reply message frame(lower 32bit addr)
5628 * Context: interrupt.
5629 *
5630 * This function merely adds a new work task into ioc->firmware_event_thread.
5631 * The tasks are worked from _firmware_event_work in user context.
5632 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305633 * Return 1 meaning mf should be freed from _base_interrupt
5634 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06005635 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305636u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305637mpt2sas_scsih_event_callback(struct MPT2SAS_ADAPTER *ioc, u8 msix_index,
5638 u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06005639{
5640 struct fw_event_work *fw_event;
5641 Mpi2EventNotificationReply_t *mpi_reply;
5642 unsigned long flags;
5643 u16 event;
5644
5645 /* events turned off due to host reset or driver unloading */
5646 spin_lock_irqsave(&ioc->fw_event_lock, flags);
5647 if (ioc->fw_events_off || ioc->remove_host) {
5648 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305649 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005650 }
5651 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
5652
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305653 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
Eric Moore635374e2009-03-09 01:21:12 -06005654 event = le16_to_cpu(mpi_reply->Event);
5655
5656 switch (event) {
5657 /* handle these */
5658 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
5659 {
5660 Mpi2EventDataSasBroadcastPrimitive_t *baen_data =
5661 (Mpi2EventDataSasBroadcastPrimitive_t *)
5662 mpi_reply->EventData;
5663
5664 if (baen_data->Primitive !=
5665 MPI2_EVENT_PRIMITIVE_ASYNCHRONOUS_EVENT ||
5666 ioc->broadcast_aen_busy)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305667 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005668 ioc->broadcast_aen_busy = 1;
5669 break;
5670 }
5671
5672 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
5673 _scsih_check_topo_delete_events(ioc,
5674 (Mpi2EventDataSasTopologyChangeList_t *)
5675 mpi_reply->EventData);
5676 break;
5677
5678 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
5679 case MPI2_EVENT_IR_OPERATION_STATUS:
5680 case MPI2_EVENT_SAS_DISCOVERY:
5681 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
5682 case MPI2_EVENT_IR_VOLUME:
5683 case MPI2_EVENT_IR_PHYSICAL_DISK:
5684 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
5685 case MPI2_EVENT_TASK_SET_FULL:
5686 break;
5687
5688 default: /* ignore the rest */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305689 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005690 }
5691
5692 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
5693 if (!fw_event) {
5694 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5695 ioc->name, __FILE__, __LINE__, __func__);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305696 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005697 }
5698 fw_event->event_data =
5699 kzalloc(mpi_reply->EventDataLength*4, GFP_ATOMIC);
5700 if (!fw_event->event_data) {
5701 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5702 ioc->name, __FILE__, __LINE__, __func__);
5703 kfree(fw_event);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305704 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005705 }
5706
5707 memcpy(fw_event->event_data, mpi_reply->EventData,
5708 mpi_reply->EventDataLength*4);
5709 fw_event->ioc = ioc;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305710 fw_event->VF_ID = mpi_reply->VF_ID;
5711 fw_event->VP_ID = mpi_reply->VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -06005712 fw_event->event = event;
5713 _scsih_fw_event_add(ioc, fw_event);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305714 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005715}
5716
5717/* shost template */
5718static struct scsi_host_template scsih_driver_template = {
5719 .module = THIS_MODULE,
5720 .name = "Fusion MPT SAS Host",
5721 .proc_name = MPT2SAS_DRIVER_NAME,
Eric Moored5d135b2009-05-18 13:02:08 -06005722 .queuecommand = _scsih_qcmd,
5723 .target_alloc = _scsih_target_alloc,
5724 .slave_alloc = _scsih_slave_alloc,
5725 .slave_configure = _scsih_slave_configure,
5726 .target_destroy = _scsih_target_destroy,
5727 .slave_destroy = _scsih_slave_destroy,
5728 .change_queue_depth = _scsih_change_queue_depth,
5729 .change_queue_type = _scsih_change_queue_type,
5730 .eh_abort_handler = _scsih_abort,
5731 .eh_device_reset_handler = _scsih_dev_reset,
5732 .eh_target_reset_handler = _scsih_target_reset,
5733 .eh_host_reset_handler = _scsih_host_reset,
5734 .bios_param = _scsih_bios_param,
Eric Moore635374e2009-03-09 01:21:12 -06005735 .can_queue = 1,
5736 .this_id = -1,
5737 .sg_tablesize = MPT2SAS_SG_DEPTH,
5738 .max_sectors = 8192,
5739 .cmd_per_lun = 7,
5740 .use_clustering = ENABLE_CLUSTERING,
5741 .shost_attrs = mpt2sas_host_attrs,
5742 .sdev_attrs = mpt2sas_dev_attrs,
5743};
5744
5745/**
5746 * _scsih_expander_node_remove - removing expander device from list.
5747 * @ioc: per adapter object
5748 * @sas_expander: the sas_device object
5749 * Context: Calling function should acquire ioc->sas_node_lock.
5750 *
5751 * Removing object and freeing associated memory from the
5752 * ioc->sas_expander_list.
5753 *
5754 * Return nothing.
5755 */
5756static void
5757_scsih_expander_node_remove(struct MPT2SAS_ADAPTER *ioc,
5758 struct _sas_node *sas_expander)
5759{
5760 struct _sas_port *mpt2sas_port;
5761 struct _sas_device *sas_device;
5762 struct _sas_node *expander_sibling;
5763 unsigned long flags;
5764
5765 if (!sas_expander)
5766 return;
5767
5768 /* remove sibling ports attached to this expander */
5769 retry_device_search:
5770 list_for_each_entry(mpt2sas_port,
5771 &sas_expander->sas_port_list, port_list) {
5772 if (mpt2sas_port->remote_identify.device_type ==
5773 SAS_END_DEVICE) {
5774 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5775 sas_device =
5776 mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5777 mpt2sas_port->remote_identify.sas_address);
5778 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5779 if (!sas_device)
5780 continue;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305781 _scsih_remove_device(ioc, sas_device);
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05305782 if (ioc->shost_recovery)
5783 return;
Eric Moore635374e2009-03-09 01:21:12 -06005784 goto retry_device_search;
5785 }
5786 }
5787
5788 retry_expander_search:
5789 list_for_each_entry(mpt2sas_port,
5790 &sas_expander->sas_port_list, port_list) {
5791
5792 if (mpt2sas_port->remote_identify.device_type ==
5793 MPI2_SAS_DEVICE_INFO_EDGE_EXPANDER ||
5794 mpt2sas_port->remote_identify.device_type ==
5795 MPI2_SAS_DEVICE_INFO_FANOUT_EXPANDER) {
5796
5797 spin_lock_irqsave(&ioc->sas_node_lock, flags);
5798 expander_sibling =
5799 mpt2sas_scsih_expander_find_by_sas_address(
5800 ioc, mpt2sas_port->remote_identify.sas_address);
5801 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
5802 if (!expander_sibling)
5803 continue;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305804 _scsih_expander_remove(ioc,
5805 expander_sibling->sas_address);
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05305806 if (ioc->shost_recovery)
5807 return;
Eric Moore635374e2009-03-09 01:21:12 -06005808 goto retry_expander_search;
5809 }
5810 }
5811
5812 mpt2sas_transport_port_remove(ioc, sas_expander->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305813 sas_expander->sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06005814
5815 printk(MPT2SAS_INFO_FMT "expander_remove: handle"
5816 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name,
5817 sas_expander->handle, (unsigned long long)
5818 sas_expander->sas_address);
5819
5820 list_del(&sas_expander->list);
5821 kfree(sas_expander->phy);
5822 kfree(sas_expander);
5823}
5824
5825/**
Eric Moored5d135b2009-05-18 13:02:08 -06005826 * _scsih_remove - detach and remove add host
Eric Moore635374e2009-03-09 01:21:12 -06005827 * @pdev: PCI device struct
5828 *
5829 * Return nothing.
5830 */
5831static void __devexit
Eric Moored5d135b2009-05-18 13:02:08 -06005832_scsih_remove(struct pci_dev *pdev)
Eric Moore635374e2009-03-09 01:21:12 -06005833{
5834 struct Scsi_Host *shost = pci_get_drvdata(pdev);
5835 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
5836 struct _sas_port *mpt2sas_port;
5837 struct _sas_device *sas_device;
5838 struct _sas_node *expander_sibling;
5839 struct workqueue_struct *wq;
5840 unsigned long flags;
5841
5842 ioc->remove_host = 1;
5843 _scsih_fw_event_off(ioc);
5844
5845 spin_lock_irqsave(&ioc->fw_event_lock, flags);
5846 wq = ioc->firmware_event_thread;
5847 ioc->firmware_event_thread = NULL;
5848 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
5849 if (wq)
5850 destroy_workqueue(wq);
5851
5852 /* free ports attached to the sas_host */
5853 retry_again:
5854 list_for_each_entry(mpt2sas_port,
5855 &ioc->sas_hba.sas_port_list, port_list) {
5856 if (mpt2sas_port->remote_identify.device_type ==
5857 SAS_END_DEVICE) {
5858 sas_device =
5859 mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5860 mpt2sas_port->remote_identify.sas_address);
5861 if (sas_device) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305862 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06005863 goto retry_again;
5864 }
5865 } else {
5866 expander_sibling =
5867 mpt2sas_scsih_expander_find_by_sas_address(ioc,
5868 mpt2sas_port->remote_identify.sas_address);
5869 if (expander_sibling) {
5870 _scsih_expander_remove(ioc,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305871 expander_sibling->sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06005872 goto retry_again;
5873 }
5874 }
5875 }
5876
5877 /* free phys attached to the sas_host */
5878 if (ioc->sas_hba.num_phys) {
5879 kfree(ioc->sas_hba.phy);
5880 ioc->sas_hba.phy = NULL;
5881 ioc->sas_hba.num_phys = 0;
5882 }
5883
5884 sas_remove_host(shost);
5885 mpt2sas_base_detach(ioc);
5886 list_del(&ioc->list);
5887 scsi_remove_host(shost);
5888 scsi_host_put(shost);
5889}
5890
5891/**
5892 * _scsih_probe_boot_devices - reports 1st device
5893 * @ioc: per adapter object
5894 *
5895 * If specified in bios page 2, this routine reports the 1st
5896 * device scsi-ml or sas transport for persistent boot device
5897 * purposes. Please refer to function _scsih_determine_boot_device()
5898 */
5899static void
5900_scsih_probe_boot_devices(struct MPT2SAS_ADAPTER *ioc)
5901{
5902 u8 is_raid;
5903 void *device;
5904 struct _sas_device *sas_device;
5905 struct _raid_device *raid_device;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305906 u16 handle;
5907 u64 sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06005908 u64 sas_address;
5909 unsigned long flags;
5910 int rc;
5911
5912 device = NULL;
5913 if (ioc->req_boot_device.device) {
5914 device = ioc->req_boot_device.device;
5915 is_raid = ioc->req_boot_device.is_raid;
5916 } else if (ioc->req_alt_boot_device.device) {
5917 device = ioc->req_alt_boot_device.device;
5918 is_raid = ioc->req_alt_boot_device.is_raid;
5919 } else if (ioc->current_boot_device.device) {
5920 device = ioc->current_boot_device.device;
5921 is_raid = ioc->current_boot_device.is_raid;
5922 }
5923
5924 if (!device)
5925 return;
5926
5927 if (is_raid) {
5928 raid_device = device;
5929 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
5930 raid_device->id, 0);
5931 if (rc)
5932 _scsih_raid_device_remove(ioc, raid_device);
5933 } else {
5934 sas_device = device;
5935 handle = sas_device->handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305936 sas_address_parent = sas_device->sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06005937 sas_address = sas_device->sas_address;
5938 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5939 list_move_tail(&sas_device->list, &ioc->sas_device_list);
5940 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5941 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305942 sas_device->sas_address_parent)) {
Eric Moore635374e2009-03-09 01:21:12 -06005943 _scsih_sas_device_remove(ioc, sas_device);
5944 } else if (!sas_device->starget) {
5945 mpt2sas_transport_port_remove(ioc, sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305946 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06005947 _scsih_sas_device_remove(ioc, sas_device);
5948 }
5949 }
5950}
5951
5952/**
5953 * _scsih_probe_raid - reporting raid volumes to scsi-ml
5954 * @ioc: per adapter object
5955 *
5956 * Called during initial loading of the driver.
5957 */
5958static void
5959_scsih_probe_raid(struct MPT2SAS_ADAPTER *ioc)
5960{
5961 struct _raid_device *raid_device, *raid_next;
5962 int rc;
5963
5964 list_for_each_entry_safe(raid_device, raid_next,
5965 &ioc->raid_device_list, list) {
5966 if (raid_device->starget)
5967 continue;
5968 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
5969 raid_device->id, 0);
5970 if (rc)
5971 _scsih_raid_device_remove(ioc, raid_device);
5972 }
5973}
5974
5975/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305976 * _scsih_probe_sas - reporting sas devices to sas transport
Eric Moore635374e2009-03-09 01:21:12 -06005977 * @ioc: per adapter object
5978 *
5979 * Called during initial loading of the driver.
5980 */
5981static void
5982_scsih_probe_sas(struct MPT2SAS_ADAPTER *ioc)
5983{
5984 struct _sas_device *sas_device, *next;
5985 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06005986
5987 /* SAS Device List */
5988 list_for_each_entry_safe(sas_device, next, &ioc->sas_device_init_list,
5989 list) {
5990 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5991 list_move_tail(&sas_device->list, &ioc->sas_device_list);
5992 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5993
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305994 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
5995 sas_device->sas_address_parent)) {
Eric Moore635374e2009-03-09 01:21:12 -06005996 _scsih_sas_device_remove(ioc, sas_device);
5997 } else if (!sas_device->starget) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305998 mpt2sas_transport_port_remove(ioc,
5999 sas_device->sas_address,
6000 sas_device->sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06006001 _scsih_sas_device_remove(ioc, sas_device);
6002 }
6003 }
6004}
6005
6006/**
6007 * _scsih_probe_devices - probing for devices
6008 * @ioc: per adapter object
6009 *
6010 * Called during initial loading of the driver.
6011 */
6012static void
6013_scsih_probe_devices(struct MPT2SAS_ADAPTER *ioc)
6014{
6015 u16 volume_mapping_flags =
6016 le16_to_cpu(ioc->ioc_pg8.IRVolumeMappingFlags) &
6017 MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE;
6018
6019 if (!(ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR))
6020 return; /* return when IOC doesn't support initiator mode */
6021
6022 _scsih_probe_boot_devices(ioc);
6023
6024 if (ioc->ir_firmware) {
6025 if ((volume_mapping_flags &
6026 MPI2_IOCPAGE8_IRFLAGS_HIGH_VOLUME_MAPPING)) {
6027 _scsih_probe_sas(ioc);
6028 _scsih_probe_raid(ioc);
6029 } else {
6030 _scsih_probe_raid(ioc);
6031 _scsih_probe_sas(ioc);
6032 }
6033 } else
6034 _scsih_probe_sas(ioc);
6035}
6036
6037/**
Eric Moored5d135b2009-05-18 13:02:08 -06006038 * _scsih_probe - attach and add scsi host
Eric Moore635374e2009-03-09 01:21:12 -06006039 * @pdev: PCI device struct
6040 * @id: pci device id
6041 *
6042 * Returns 0 success, anything else error.
6043 */
6044static int
Eric Moored5d135b2009-05-18 13:02:08 -06006045_scsih_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Eric Moore635374e2009-03-09 01:21:12 -06006046{
6047 struct MPT2SAS_ADAPTER *ioc;
6048 struct Scsi_Host *shost;
6049
6050 shost = scsi_host_alloc(&scsih_driver_template,
6051 sizeof(struct MPT2SAS_ADAPTER));
6052 if (!shost)
6053 return -ENODEV;
6054
6055 /* init local params */
6056 ioc = shost_priv(shost);
6057 memset(ioc, 0, sizeof(struct MPT2SAS_ADAPTER));
6058 INIT_LIST_HEAD(&ioc->list);
Eric Mooreba33fad2009-03-15 21:37:18 -06006059 list_add_tail(&ioc->list, &mpt2sas_ioc_list);
Eric Moore635374e2009-03-09 01:21:12 -06006060 ioc->shost = shost;
6061 ioc->id = mpt_ids++;
6062 sprintf(ioc->name, "%s%d", MPT2SAS_DRIVER_NAME, ioc->id);
6063 ioc->pdev = pdev;
6064 ioc->scsi_io_cb_idx = scsi_io_cb_idx;
6065 ioc->tm_cb_idx = tm_cb_idx;
6066 ioc->ctl_cb_idx = ctl_cb_idx;
6067 ioc->base_cb_idx = base_cb_idx;
6068 ioc->transport_cb_idx = transport_cb_idx;
6069 ioc->config_cb_idx = config_cb_idx;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306070 ioc->tm_tr_cb_idx = tm_tr_cb_idx;
6071 ioc->tm_sas_control_cb_idx = tm_sas_control_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06006072 ioc->logging_level = logging_level;
6073 /* misc semaphores and spin locks */
6074 spin_lock_init(&ioc->ioc_reset_in_progress_lock);
6075 spin_lock_init(&ioc->scsi_lookup_lock);
6076 spin_lock_init(&ioc->sas_device_lock);
6077 spin_lock_init(&ioc->sas_node_lock);
6078 spin_lock_init(&ioc->fw_event_lock);
6079 spin_lock_init(&ioc->raid_device_lock);
6080
6081 INIT_LIST_HEAD(&ioc->sas_device_list);
6082 INIT_LIST_HEAD(&ioc->sas_device_init_list);
6083 INIT_LIST_HEAD(&ioc->sas_expander_list);
6084 INIT_LIST_HEAD(&ioc->fw_event_list);
6085 INIT_LIST_HEAD(&ioc->raid_device_list);
6086 INIT_LIST_HEAD(&ioc->sas_hba.sas_port_list);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306087 INIT_LIST_HEAD(&ioc->delayed_tr_list);
Eric Moore635374e2009-03-09 01:21:12 -06006088
6089 /* init shost parameters */
6090 shost->max_cmd_len = 16;
6091 shost->max_lun = max_lun;
6092 shost->transportt = mpt2sas_transport_template;
6093 shost->unique_id = ioc->id;
6094
6095 if ((scsi_add_host(shost, &pdev->dev))) {
6096 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6097 ioc->name, __FILE__, __LINE__, __func__);
6098 list_del(&ioc->list);
6099 goto out_add_shost_fail;
6100 }
6101
Eric Moore3c621b32009-05-18 12:59:41 -06006102 scsi_host_set_prot(shost, SHOST_DIF_TYPE1_PROTECTION
6103 | SHOST_DIF_TYPE3_PROTECTION);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306104 scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC);
Eric Moore3c621b32009-05-18 12:59:41 -06006105
Eric Moore635374e2009-03-09 01:21:12 -06006106 /* event thread */
6107 snprintf(ioc->firmware_event_name, sizeof(ioc->firmware_event_name),
6108 "fw_event%d", ioc->id);
6109 ioc->firmware_event_thread = create_singlethread_workqueue(
6110 ioc->firmware_event_name);
6111 if (!ioc->firmware_event_thread) {
6112 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6113 ioc->name, __FILE__, __LINE__, __func__);
6114 goto out_thread_fail;
6115 }
6116
6117 ioc->wait_for_port_enable_to_complete = 1;
6118 if ((mpt2sas_base_attach(ioc))) {
6119 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6120 ioc->name, __FILE__, __LINE__, __func__);
6121 goto out_attach_fail;
6122 }
6123
6124 ioc->wait_for_port_enable_to_complete = 0;
6125 _scsih_probe_devices(ioc);
6126 return 0;
6127
6128 out_attach_fail:
6129 destroy_workqueue(ioc->firmware_event_thread);
6130 out_thread_fail:
6131 list_del(&ioc->list);
6132 scsi_remove_host(shost);
6133 out_add_shost_fail:
6134 return -ENODEV;
6135}
6136
6137#ifdef CONFIG_PM
6138/**
Eric Moored5d135b2009-05-18 13:02:08 -06006139 * _scsih_suspend - power management suspend main entry point
Eric Moore635374e2009-03-09 01:21:12 -06006140 * @pdev: PCI device struct
6141 * @state: PM state change to (usually PCI_D3)
6142 *
6143 * Returns 0 success, anything else error.
6144 */
6145static int
Eric Moored5d135b2009-05-18 13:02:08 -06006146_scsih_suspend(struct pci_dev *pdev, pm_message_t state)
Eric Moore635374e2009-03-09 01:21:12 -06006147{
6148 struct Scsi_Host *shost = pci_get_drvdata(pdev);
6149 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
6150 u32 device_state;
6151
Kashyap, Desaie4750c92009-08-07 19:37:59 +05306152 mpt2sas_base_stop_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06006153 flush_scheduled_work();
6154 scsi_block_requests(shost);
6155 device_state = pci_choose_state(pdev, state);
6156 printk(MPT2SAS_INFO_FMT "pdev=0x%p, slot=%s, entering "
6157 "operating state [D%d]\n", ioc->name, pdev,
6158 pci_name(pdev), device_state);
6159
6160 mpt2sas_base_free_resources(ioc);
6161 pci_save_state(pdev);
6162 pci_disable_device(pdev);
6163 pci_set_power_state(pdev, device_state);
6164 return 0;
6165}
6166
6167/**
Eric Moored5d135b2009-05-18 13:02:08 -06006168 * _scsih_resume - power management resume main entry point
Eric Moore635374e2009-03-09 01:21:12 -06006169 * @pdev: PCI device struct
6170 *
6171 * Returns 0 success, anything else error.
6172 */
6173static int
Eric Moored5d135b2009-05-18 13:02:08 -06006174_scsih_resume(struct pci_dev *pdev)
Eric Moore635374e2009-03-09 01:21:12 -06006175{
6176 struct Scsi_Host *shost = pci_get_drvdata(pdev);
6177 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
6178 u32 device_state = pdev->current_state;
6179 int r;
6180
6181 printk(MPT2SAS_INFO_FMT "pdev=0x%p, slot=%s, previous "
6182 "operating state [D%d]\n", ioc->name, pdev,
6183 pci_name(pdev), device_state);
6184
6185 pci_set_power_state(pdev, PCI_D0);
6186 pci_enable_wake(pdev, PCI_D0, 0);
6187 pci_restore_state(pdev);
6188 ioc->pdev = pdev;
6189 r = mpt2sas_base_map_resources(ioc);
6190 if (r)
6191 return r;
6192
6193 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP, SOFT_RESET);
6194 scsi_unblock_requests(shost);
Kashyap, Desaie4750c92009-08-07 19:37:59 +05306195 mpt2sas_base_start_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06006196 return 0;
6197}
6198#endif /* CONFIG_PM */
6199
6200
6201static struct pci_driver scsih_driver = {
6202 .name = MPT2SAS_DRIVER_NAME,
6203 .id_table = scsih_pci_table,
Eric Moored5d135b2009-05-18 13:02:08 -06006204 .probe = _scsih_probe,
6205 .remove = __devexit_p(_scsih_remove),
Eric Moore635374e2009-03-09 01:21:12 -06006206#ifdef CONFIG_PM
Eric Moored5d135b2009-05-18 13:02:08 -06006207 .suspend = _scsih_suspend,
6208 .resume = _scsih_resume,
Eric Moore635374e2009-03-09 01:21:12 -06006209#endif
6210};
6211
6212
6213/**
Eric Moored5d135b2009-05-18 13:02:08 -06006214 * _scsih_init - main entry point for this driver.
Eric Moore635374e2009-03-09 01:21:12 -06006215 *
6216 * Returns 0 success, anything else error.
6217 */
6218static int __init
Eric Moored5d135b2009-05-18 13:02:08 -06006219_scsih_init(void)
Eric Moore635374e2009-03-09 01:21:12 -06006220{
6221 int error;
6222
6223 mpt_ids = 0;
6224 printk(KERN_INFO "%s version %s loaded\n", MPT2SAS_DRIVER_NAME,
6225 MPT2SAS_DRIVER_VERSION);
6226
6227 mpt2sas_transport_template =
6228 sas_attach_transport(&mpt2sas_transport_functions);
6229 if (!mpt2sas_transport_template)
6230 return -ENODEV;
6231
6232 mpt2sas_base_initialize_callback_handler();
6233
6234 /* queuecommand callback hander */
Eric Moored5d135b2009-05-18 13:02:08 -06006235 scsi_io_cb_idx = mpt2sas_base_register_callback_handler(_scsih_io_done);
Eric Moore635374e2009-03-09 01:21:12 -06006236
6237 /* task managment callback handler */
Eric Moored5d135b2009-05-18 13:02:08 -06006238 tm_cb_idx = mpt2sas_base_register_callback_handler(_scsih_tm_done);
Eric Moore635374e2009-03-09 01:21:12 -06006239
6240 /* base internal commands callback handler */
6241 base_cb_idx = mpt2sas_base_register_callback_handler(mpt2sas_base_done);
6242
6243 /* transport internal commands callback handler */
6244 transport_cb_idx = mpt2sas_base_register_callback_handler(
6245 mpt2sas_transport_done);
6246
6247 /* configuration page API internal commands callback handler */
6248 config_cb_idx = mpt2sas_base_register_callback_handler(
6249 mpt2sas_config_done);
6250
6251 /* ctl module callback handler */
6252 ctl_cb_idx = mpt2sas_base_register_callback_handler(mpt2sas_ctl_done);
6253
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306254 tm_tr_cb_idx = mpt2sas_base_register_callback_handler(
6255 _scsih_tm_tr_complete);
6256 tm_sas_control_cb_idx = mpt2sas_base_register_callback_handler(
6257 _scsih_sas_control_complete);
6258
Eric Moore635374e2009-03-09 01:21:12 -06006259 mpt2sas_ctl_init();
6260
6261 error = pci_register_driver(&scsih_driver);
6262 if (error)
6263 sas_release_transport(mpt2sas_transport_template);
6264
6265 return error;
6266}
6267
6268/**
Eric Moored5d135b2009-05-18 13:02:08 -06006269 * _scsih_exit - exit point for this driver (when it is a module).
Eric Moore635374e2009-03-09 01:21:12 -06006270 *
6271 * Returns 0 success, anything else error.
6272 */
6273static void __exit
Eric Moored5d135b2009-05-18 13:02:08 -06006274_scsih_exit(void)
Eric Moore635374e2009-03-09 01:21:12 -06006275{
6276 printk(KERN_INFO "mpt2sas version %s unloading\n",
6277 MPT2SAS_DRIVER_VERSION);
6278
6279 pci_unregister_driver(&scsih_driver);
6280
6281 sas_release_transport(mpt2sas_transport_template);
6282 mpt2sas_base_release_callback_handler(scsi_io_cb_idx);
6283 mpt2sas_base_release_callback_handler(tm_cb_idx);
6284 mpt2sas_base_release_callback_handler(base_cb_idx);
6285 mpt2sas_base_release_callback_handler(transport_cb_idx);
6286 mpt2sas_base_release_callback_handler(config_cb_idx);
6287 mpt2sas_base_release_callback_handler(ctl_cb_idx);
6288
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306289 mpt2sas_base_release_callback_handler(tm_tr_cb_idx);
6290 mpt2sas_base_release_callback_handler(tm_sas_control_cb_idx);
6291
Eric Moore635374e2009-03-09 01:21:12 -06006292 mpt2sas_ctl_exit();
6293}
6294
Eric Moored5d135b2009-05-18 13:02:08 -06006295module_init(_scsih_init);
6296module_exit(_scsih_exit);