blob: 72a9453739649e8c3a77f06b7bba6c13c9be3999 [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>
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +053055#include <linux/raid_class.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090056#include <linux/slab.h>
Eric Moore635374e2009-03-09 01:21:12 -060057
58#include "mpt2sas_base.h"
59
60MODULE_AUTHOR(MPT2SAS_AUTHOR);
61MODULE_DESCRIPTION(MPT2SAS_DESCRIPTION);
62MODULE_LICENSE("GPL");
63MODULE_VERSION(MPT2SAS_DRIVER_VERSION);
64
65#define RAID_CHANNEL 1
66
67/* forward proto's */
68static void _scsih_expander_node_remove(struct MPT2SAS_ADAPTER *ioc,
69 struct _sas_node *sas_expander);
70static void _firmware_event_work(struct work_struct *work);
71
72/* global parameters */
Eric Mooreba33fad2009-03-15 21:37:18 -060073LIST_HEAD(mpt2sas_ioc_list);
Eric Moore635374e2009-03-09 01:21:12 -060074
75/* local parameters */
Eric Moore635374e2009-03-09 01:21:12 -060076static u8 scsi_io_cb_idx = -1;
77static u8 tm_cb_idx = -1;
78static u8 ctl_cb_idx = -1;
79static u8 base_cb_idx = -1;
80static u8 transport_cb_idx = -1;
Kashyap, Desai744090d2009-10-05 15:56:56 +053081static u8 scsih_cb_idx = -1;
Eric Moore635374e2009-03-09 01:21:12 -060082static u8 config_cb_idx = -1;
83static int mpt_ids;
84
Kashyap, Desai77e63ed2009-09-14 11:04:23 +053085static u8 tm_tr_cb_idx = -1 ;
86static u8 tm_sas_control_cb_idx = -1;
87
Eric Moore635374e2009-03-09 01:21:12 -060088/* command line options */
Eric Mooreba33fad2009-03-15 21:37:18 -060089static u32 logging_level;
Eric Moore635374e2009-03-09 01:21:12 -060090MODULE_PARM_DESC(logging_level, " bits for enabling additional logging info "
91 "(default=0)");
92
93/* scsi-mid layer global parmeter is max_report_luns, which is 511 */
94#define MPT2SAS_MAX_LUN (16895)
95static int max_lun = MPT2SAS_MAX_LUN;
96module_param(max_lun, int, 0);
97MODULE_PARM_DESC(max_lun, " max lun, default=16895 ");
98
99/**
100 * struct sense_info - common structure for obtaining sense keys
101 * @skey: sense key
102 * @asc: additional sense code
103 * @ascq: additional sense code qualifier
104 */
105struct sense_info {
106 u8 skey;
107 u8 asc;
108 u8 ascq;
109};
110
111
Kashyap, Desaif1c35e62010-03-09 16:31:43 +0530112#define MPT2SAS_RESCAN_AFTER_HOST_RESET (0xFFFF)
113
Eric Moore635374e2009-03-09 01:21:12 -0600114/**
115 * struct fw_event_work - firmware event struct
116 * @list: link list framework
117 * @work: work object (ioc->fault_reset_work_q)
Kashyap, Desaif1c35e62010-03-09 16:31:43 +0530118 * @cancel_pending_work: flag set during reset handling
Eric Moore635374e2009-03-09 01:21:12 -0600119 * @ioc: per adapter object
120 * @VF_ID: virtual function id
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530121 * @VP_ID: virtual port id
Eric Moore635374e2009-03-09 01:21:12 -0600122 * @ignore: flag meaning this event has been marked to ignore
123 * @event: firmware event MPI2_EVENT_XXX defined in mpt2_ioc.h
124 * @event_data: reply event data payload follows
125 *
126 * This object stored on ioc->fw_event_list.
127 */
128struct fw_event_work {
129 struct list_head list;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +0530130 u8 cancel_pending_work;
131 struct delayed_work delayed_work;
Eric Moore635374e2009-03-09 01:21:12 -0600132 struct MPT2SAS_ADAPTER *ioc;
133 u8 VF_ID;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530134 u8 VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -0600135 u8 ignore;
136 u16 event;
137 void *event_data;
138};
139
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +0530140/* raid transport support */
141static struct raid_template *mpt2sas_raid_template;
142
Eric Moore635374e2009-03-09 01:21:12 -0600143/**
144 * struct _scsi_io_transfer - scsi io transfer
145 * @handle: sas device handle (assigned by firmware)
146 * @is_raid: flag set for hidden raid components
147 * @dir: DMA_TO_DEVICE, DMA_FROM_DEVICE,
148 * @data_length: data transfer length
149 * @data_dma: dma pointer to data
150 * @sense: sense data
151 * @lun: lun number
152 * @cdb_length: cdb length
153 * @cdb: cdb contents
Eric Moore635374e2009-03-09 01:21:12 -0600154 * @timeout: timeout for this command
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530155 * @VF_ID: virtual function id
156 * @VP_ID: virtual port id
157 * @valid_reply: flag set for reply message
Eric Moore635374e2009-03-09 01:21:12 -0600158 * @sense_length: sense length
159 * @ioc_status: ioc status
160 * @scsi_state: scsi state
161 * @scsi_status: scsi staus
162 * @log_info: log information
163 * @transfer_length: data length transfer when there is a reply message
164 *
165 * Used for sending internal scsi commands to devices within this module.
166 * Refer to _scsi_send_scsi_io().
167 */
168struct _scsi_io_transfer {
169 u16 handle;
170 u8 is_raid;
171 enum dma_data_direction dir;
172 u32 data_length;
173 dma_addr_t data_dma;
174 u8 sense[SCSI_SENSE_BUFFERSIZE];
175 u32 lun;
176 u8 cdb_length;
177 u8 cdb[32];
178 u8 timeout;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530179 u8 VF_ID;
180 u8 VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -0600181 u8 valid_reply;
182 /* the following bits are only valid when 'valid_reply = 1' */
183 u32 sense_length;
184 u16 ioc_status;
185 u8 scsi_state;
186 u8 scsi_status;
187 u32 log_info;
188 u32 transfer_length;
189};
190
191/*
192 * The pci device ids are defined in mpi/mpi2_cnfg.h.
193 */
194static struct pci_device_id scsih_pci_table[] = {
195 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2004,
196 PCI_ANY_ID, PCI_ANY_ID },
197 /* Falcon ~ 2008*/
198 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2008,
199 PCI_ANY_ID, PCI_ANY_ID },
200 /* Liberator ~ 2108 */
201 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_1,
202 PCI_ANY_ID, PCI_ANY_ID },
203 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_2,
204 PCI_ANY_ID, PCI_ANY_ID },
205 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_3,
206 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desaidb271362009-09-23 17:24:27 +0530207 /* Meteor ~ 2116 */
Eric Moore635374e2009-03-09 01:21:12 -0600208 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2116_1,
209 PCI_ANY_ID, PCI_ANY_ID },
210 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2116_2,
211 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desaidb271362009-09-23 17:24:27 +0530212 /* Thunderbolt ~ 2208 */
213 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_1,
214 PCI_ANY_ID, PCI_ANY_ID },
215 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_2,
216 PCI_ANY_ID, PCI_ANY_ID },
217 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_3,
218 PCI_ANY_ID, PCI_ANY_ID },
219 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_4,
220 PCI_ANY_ID, PCI_ANY_ID },
221 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_5,
222 PCI_ANY_ID, PCI_ANY_ID },
223 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_6,
224 PCI_ANY_ID, PCI_ANY_ID },
225 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_7,
226 PCI_ANY_ID, PCI_ANY_ID },
227 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_8,
228 PCI_ANY_ID, PCI_ANY_ID },
Eric Moore635374e2009-03-09 01:21:12 -0600229 {0} /* Terminating entry */
230};
231MODULE_DEVICE_TABLE(pci, scsih_pci_table);
232
233/**
Eric Moored5d135b2009-05-18 13:02:08 -0600234 * _scsih_set_debug_level - global setting of ioc->logging_level.
Eric Moore635374e2009-03-09 01:21:12 -0600235 *
236 * Note: The logging levels are defined in mpt2sas_debug.h.
237 */
238static int
Eric Moored5d135b2009-05-18 13:02:08 -0600239_scsih_set_debug_level(const char *val, struct kernel_param *kp)
Eric Moore635374e2009-03-09 01:21:12 -0600240{
241 int ret = param_set_int(val, kp);
242 struct MPT2SAS_ADAPTER *ioc;
243
244 if (ret)
245 return ret;
246
247 printk(KERN_INFO "setting logging_level(0x%08x)\n", logging_level);
Eric Mooreba33fad2009-03-15 21:37:18 -0600248 list_for_each_entry(ioc, &mpt2sas_ioc_list, list)
Eric Moore635374e2009-03-09 01:21:12 -0600249 ioc->logging_level = logging_level;
250 return 0;
251}
Eric Moored5d135b2009-05-18 13:02:08 -0600252module_param_call(logging_level, _scsih_set_debug_level, param_get_int,
Eric Moore635374e2009-03-09 01:21:12 -0600253 &logging_level, 0644);
254
255/**
256 * _scsih_srch_boot_sas_address - search based on sas_address
257 * @sas_address: sas address
258 * @boot_device: boot device object from bios page 2
259 *
260 * Returns 1 when there's a match, 0 means no match.
261 */
262static inline int
263_scsih_srch_boot_sas_address(u64 sas_address,
264 Mpi2BootDeviceSasWwid_t *boot_device)
265{
266 return (sas_address == le64_to_cpu(boot_device->SASAddress)) ? 1 : 0;
267}
268
269/**
270 * _scsih_srch_boot_device_name - search based on device name
271 * @device_name: device name specified in INDENTIFY fram
272 * @boot_device: boot device object from bios page 2
273 *
274 * Returns 1 when there's a match, 0 means no match.
275 */
276static inline int
277_scsih_srch_boot_device_name(u64 device_name,
278 Mpi2BootDeviceDeviceName_t *boot_device)
279{
280 return (device_name == le64_to_cpu(boot_device->DeviceName)) ? 1 : 0;
281}
282
283/**
284 * _scsih_srch_boot_encl_slot - search based on enclosure_logical_id/slot
285 * @enclosure_logical_id: enclosure logical id
286 * @slot_number: slot number
287 * @boot_device: boot device object from bios page 2
288 *
289 * Returns 1 when there's a match, 0 means no match.
290 */
291static inline int
292_scsih_srch_boot_encl_slot(u64 enclosure_logical_id, u16 slot_number,
293 Mpi2BootDeviceEnclosureSlot_t *boot_device)
294{
295 return (enclosure_logical_id == le64_to_cpu(boot_device->
296 EnclosureLogicalID) && slot_number == le16_to_cpu(boot_device->
297 SlotNumber)) ? 1 : 0;
298}
299
300/**
301 * _scsih_is_boot_device - search for matching boot device.
302 * @sas_address: sas address
303 * @device_name: device name specified in INDENTIFY fram
304 * @enclosure_logical_id: enclosure logical id
305 * @slot_number: slot number
306 * @form: specifies boot device form
307 * @boot_device: boot device object from bios page 2
308 *
309 * Returns 1 when there's a match, 0 means no match.
310 */
311static int
312_scsih_is_boot_device(u64 sas_address, u64 device_name,
313 u64 enclosure_logical_id, u16 slot, u8 form,
314 Mpi2BiosPage2BootDevice_t *boot_device)
315{
316 int rc = 0;
317
318 switch (form) {
319 case MPI2_BIOSPAGE2_FORM_SAS_WWID:
320 if (!sas_address)
321 break;
322 rc = _scsih_srch_boot_sas_address(
323 sas_address, &boot_device->SasWwid);
324 break;
325 case MPI2_BIOSPAGE2_FORM_ENCLOSURE_SLOT:
326 if (!enclosure_logical_id)
327 break;
328 rc = _scsih_srch_boot_encl_slot(
329 enclosure_logical_id,
330 slot, &boot_device->EnclosureSlot);
331 break;
332 case MPI2_BIOSPAGE2_FORM_DEVICE_NAME:
333 if (!device_name)
334 break;
335 rc = _scsih_srch_boot_device_name(
336 device_name, &boot_device->DeviceName);
337 break;
338 case MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED:
339 break;
340 }
341
342 return rc;
343}
344
345/**
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530346 * _scsih_get_sas_address - set the sas_address for given device handle
347 * @handle: device handle
348 * @sas_address: sas address
349 *
350 * Returns 0 success, non-zero when failure
351 */
352static int
353_scsih_get_sas_address(struct MPT2SAS_ADAPTER *ioc, u16 handle,
354 u64 *sas_address)
355{
356 Mpi2SasDevicePage0_t sas_device_pg0;
357 Mpi2ConfigReply_t mpi_reply;
358 u32 ioc_status;
359
360 if (handle <= ioc->sas_hba.num_phys) {
361 *sas_address = ioc->sas_hba.sas_address;
362 return 0;
363 } else
364 *sas_address = 0;
365
366 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
367 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
368 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
369 ioc->name, __FILE__, __LINE__, __func__);
370 return -ENXIO;
371 }
372
373 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
374 MPI2_IOCSTATUS_MASK;
375 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
376 printk(MPT2SAS_ERR_FMT "handle(0x%04x), ioc_status(0x%04x)"
377 "\nfailure at %s:%d/%s()!\n", ioc->name, handle, ioc_status,
378 __FILE__, __LINE__, __func__);
379 return -EIO;
380 }
381
382 *sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
383 return 0;
384}
385
386/**
Eric Moore635374e2009-03-09 01:21:12 -0600387 * _scsih_determine_boot_device - determine boot device.
388 * @ioc: per adapter object
389 * @device: either sas_device or raid_device object
390 * @is_raid: [flag] 1 = raid object, 0 = sas object
391 *
392 * Determines whether this device should be first reported device to
393 * to scsi-ml or sas transport, this purpose is for persistant boot device.
394 * There are primary, alternate, and current entries in bios page 2. The order
395 * priority is primary, alternate, then current. This routine saves
396 * the corresponding device object and is_raid flag in the ioc object.
397 * The saved data to be used later in _scsih_probe_boot_devices().
398 */
399static void
400_scsih_determine_boot_device(struct MPT2SAS_ADAPTER *ioc,
401 void *device, u8 is_raid)
402{
403 struct _sas_device *sas_device;
404 struct _raid_device *raid_device;
405 u64 sas_address;
406 u64 device_name;
407 u64 enclosure_logical_id;
408 u16 slot;
409
410 /* only process this function when driver loads */
411 if (!ioc->wait_for_port_enable_to_complete)
412 return;
413
414 if (!is_raid) {
415 sas_device = device;
416 sas_address = sas_device->sas_address;
417 device_name = sas_device->device_name;
418 enclosure_logical_id = sas_device->enclosure_logical_id;
419 slot = sas_device->slot;
420 } else {
421 raid_device = device;
422 sas_address = raid_device->wwid;
423 device_name = 0;
424 enclosure_logical_id = 0;
425 slot = 0;
426 }
427
428 if (!ioc->req_boot_device.device) {
429 if (_scsih_is_boot_device(sas_address, device_name,
430 enclosure_logical_id, slot,
431 (ioc->bios_pg2.ReqBootDeviceForm &
432 MPI2_BIOSPAGE2_FORM_MASK),
433 &ioc->bios_pg2.RequestedBootDevice)) {
434 dinitprintk(ioc, printk(MPT2SAS_DEBUG_FMT
435 "%s: req_boot_device(0x%016llx)\n",
436 ioc->name, __func__,
437 (unsigned long long)sas_address));
438 ioc->req_boot_device.device = device;
439 ioc->req_boot_device.is_raid = is_raid;
440 }
441 }
442
443 if (!ioc->req_alt_boot_device.device) {
444 if (_scsih_is_boot_device(sas_address, device_name,
445 enclosure_logical_id, slot,
446 (ioc->bios_pg2.ReqAltBootDeviceForm &
447 MPI2_BIOSPAGE2_FORM_MASK),
448 &ioc->bios_pg2.RequestedAltBootDevice)) {
449 dinitprintk(ioc, printk(MPT2SAS_DEBUG_FMT
450 "%s: req_alt_boot_device(0x%016llx)\n",
451 ioc->name, __func__,
452 (unsigned long long)sas_address));
453 ioc->req_alt_boot_device.device = device;
454 ioc->req_alt_boot_device.is_raid = is_raid;
455 }
456 }
457
458 if (!ioc->current_boot_device.device) {
459 if (_scsih_is_boot_device(sas_address, device_name,
460 enclosure_logical_id, slot,
461 (ioc->bios_pg2.CurrentBootDeviceForm &
462 MPI2_BIOSPAGE2_FORM_MASK),
463 &ioc->bios_pg2.CurrentBootDevice)) {
464 dinitprintk(ioc, printk(MPT2SAS_DEBUG_FMT
465 "%s: current_boot_device(0x%016llx)\n",
466 ioc->name, __func__,
467 (unsigned long long)sas_address));
468 ioc->current_boot_device.device = device;
469 ioc->current_boot_device.is_raid = is_raid;
470 }
471 }
472}
473
474/**
475 * mpt2sas_scsih_sas_device_find_by_sas_address - sas device search
476 * @ioc: per adapter object
477 * @sas_address: sas address
478 * Context: Calling function should acquire ioc->sas_device_lock
479 *
480 * This searches for sas_device based on sas_address, then return sas_device
481 * object.
482 */
483struct _sas_device *
484mpt2sas_scsih_sas_device_find_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
485 u64 sas_address)
486{
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530487 struct _sas_device *sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600488
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530489 list_for_each_entry(sas_device, &ioc->sas_device_list, list)
490 if (sas_device->sas_address == sas_address)
491 return sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600492
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530493 list_for_each_entry(sas_device, &ioc->sas_device_init_list, list)
494 if (sas_device->sas_address == sas_address)
495 return sas_device;
496
497 return NULL;
Eric Moore635374e2009-03-09 01:21:12 -0600498}
499
500/**
501 * _scsih_sas_device_find_by_handle - sas device search
502 * @ioc: per adapter object
503 * @handle: sas device handle (assigned by firmware)
504 * Context: Calling function should acquire ioc->sas_device_lock
505 *
506 * This searches for sas_device based on sas_address, then return sas_device
507 * object.
508 */
509static struct _sas_device *
510_scsih_sas_device_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
511{
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530512 struct _sas_device *sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600513
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530514 list_for_each_entry(sas_device, &ioc->sas_device_list, list)
515 if (sas_device->handle == handle)
516 return sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600517
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530518 list_for_each_entry(sas_device, &ioc->sas_device_init_list, list)
519 if (sas_device->handle == handle)
520 return sas_device;
521
522 return NULL;
Eric Moore635374e2009-03-09 01:21:12 -0600523}
524
525/**
526 * _scsih_sas_device_remove - remove sas_device from list.
527 * @ioc: per adapter object
528 * @sas_device: the sas_device object
529 * Context: This function will acquire ioc->sas_device_lock.
530 *
531 * Removing object and freeing associated memory from the ioc->sas_device_list.
532 */
533static void
534_scsih_sas_device_remove(struct MPT2SAS_ADAPTER *ioc,
535 struct _sas_device *sas_device)
536{
537 unsigned long flags;
538
539 spin_lock_irqsave(&ioc->sas_device_lock, flags);
540 list_del(&sas_device->list);
541 memset(sas_device, 0, sizeof(struct _sas_device));
542 kfree(sas_device);
543 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
544}
545
546/**
547 * _scsih_sas_device_add - insert sas_device to the list.
548 * @ioc: per adapter object
549 * @sas_device: the sas_device object
550 * Context: This function will acquire ioc->sas_device_lock.
551 *
552 * Adding new object to the ioc->sas_device_list.
553 */
554static void
555_scsih_sas_device_add(struct MPT2SAS_ADAPTER *ioc,
556 struct _sas_device *sas_device)
557{
558 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -0600559
560 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle"
561 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
562 sas_device->handle, (unsigned long long)sas_device->sas_address));
563
564 spin_lock_irqsave(&ioc->sas_device_lock, flags);
565 list_add_tail(&sas_device->list, &ioc->sas_device_list);
566 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
567
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530568 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
569 sas_device->sas_address_parent))
Eric Moore635374e2009-03-09 01:21:12 -0600570 _scsih_sas_device_remove(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -0600571}
572
573/**
574 * _scsih_sas_device_init_add - insert sas_device to the list.
575 * @ioc: per adapter object
576 * @sas_device: the sas_device object
577 * Context: This function will acquire ioc->sas_device_lock.
578 *
579 * Adding new object at driver load time to the ioc->sas_device_init_list.
580 */
581static void
582_scsih_sas_device_init_add(struct MPT2SAS_ADAPTER *ioc,
583 struct _sas_device *sas_device)
584{
585 unsigned long flags;
586
587 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle"
588 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
589 sas_device->handle, (unsigned long long)sas_device->sas_address));
590
591 spin_lock_irqsave(&ioc->sas_device_lock, flags);
592 list_add_tail(&sas_device->list, &ioc->sas_device_init_list);
593 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
594 _scsih_determine_boot_device(ioc, sas_device, 0);
595}
596
597/**
Eric Moore635374e2009-03-09 01:21:12 -0600598 * _scsih_raid_device_find_by_id - raid device search
599 * @ioc: per adapter object
600 * @id: sas device target id
601 * @channel: sas device channel
602 * Context: Calling function should acquire ioc->raid_device_lock
603 *
604 * This searches for raid_device based on target id, then return raid_device
605 * object.
606 */
607static struct _raid_device *
608_scsih_raid_device_find_by_id(struct MPT2SAS_ADAPTER *ioc, int id, int channel)
609{
610 struct _raid_device *raid_device, *r;
611
612 r = NULL;
613 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
614 if (raid_device->id == id && raid_device->channel == channel) {
615 r = raid_device;
616 goto out;
617 }
618 }
619
620 out:
621 return r;
622}
623
624/**
625 * _scsih_raid_device_find_by_handle - raid device search
626 * @ioc: per adapter object
627 * @handle: sas device handle (assigned by firmware)
628 * Context: Calling function should acquire ioc->raid_device_lock
629 *
630 * This searches for raid_device based on handle, then return raid_device
631 * object.
632 */
633static struct _raid_device *
634_scsih_raid_device_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
635{
636 struct _raid_device *raid_device, *r;
637
638 r = NULL;
639 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
640 if (raid_device->handle != handle)
641 continue;
642 r = raid_device;
643 goto out;
644 }
645
646 out:
647 return r;
648}
649
650/**
651 * _scsih_raid_device_find_by_wwid - raid device search
652 * @ioc: per adapter object
653 * @handle: sas device handle (assigned by firmware)
654 * Context: Calling function should acquire ioc->raid_device_lock
655 *
656 * This searches for raid_device based on wwid, then return raid_device
657 * object.
658 */
659static struct _raid_device *
660_scsih_raid_device_find_by_wwid(struct MPT2SAS_ADAPTER *ioc, u64 wwid)
661{
662 struct _raid_device *raid_device, *r;
663
664 r = NULL;
665 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
666 if (raid_device->wwid != wwid)
667 continue;
668 r = raid_device;
669 goto out;
670 }
671
672 out:
673 return r;
674}
675
676/**
677 * _scsih_raid_device_add - add raid_device object
678 * @ioc: per adapter object
679 * @raid_device: raid_device object
680 *
681 * This is added to the raid_device_list link list.
682 */
683static void
684_scsih_raid_device_add(struct MPT2SAS_ADAPTER *ioc,
685 struct _raid_device *raid_device)
686{
687 unsigned long flags;
688
689 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle"
690 "(0x%04x), wwid(0x%016llx)\n", ioc->name, __func__,
691 raid_device->handle, (unsigned long long)raid_device->wwid));
692
693 spin_lock_irqsave(&ioc->raid_device_lock, flags);
694 list_add_tail(&raid_device->list, &ioc->raid_device_list);
695 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
696}
697
698/**
699 * _scsih_raid_device_remove - delete raid_device object
700 * @ioc: per adapter object
701 * @raid_device: raid_device object
702 *
703 * This is removed from the raid_device_list link list.
704 */
705static void
706_scsih_raid_device_remove(struct MPT2SAS_ADAPTER *ioc,
707 struct _raid_device *raid_device)
708{
709 unsigned long flags;
710
711 spin_lock_irqsave(&ioc->raid_device_lock, flags);
712 list_del(&raid_device->list);
713 memset(raid_device, 0, sizeof(struct _raid_device));
714 kfree(raid_device);
715 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
716}
717
718/**
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530719 * mpt2sas_scsih_expander_find_by_handle - expander device search
720 * @ioc: per adapter object
721 * @handle: expander handle (assigned by firmware)
722 * Context: Calling function should acquire ioc->sas_device_lock
723 *
724 * This searches for expander device based on handle, then returns the
725 * sas_node object.
726 */
727struct _sas_node *
728mpt2sas_scsih_expander_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
729{
730 struct _sas_node *sas_expander, *r;
731
732 r = NULL;
733 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
734 if (sas_expander->handle != handle)
735 continue;
736 r = sas_expander;
737 goto out;
738 }
739 out:
740 return r;
741}
742
743/**
Eric Moore635374e2009-03-09 01:21:12 -0600744 * mpt2sas_scsih_expander_find_by_sas_address - expander device search
745 * @ioc: per adapter object
746 * @sas_address: sas address
747 * Context: Calling function should acquire ioc->sas_node_lock.
748 *
749 * This searches for expander device based on sas_address, then returns the
750 * sas_node object.
751 */
752struct _sas_node *
753mpt2sas_scsih_expander_find_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
754 u64 sas_address)
755{
756 struct _sas_node *sas_expander, *r;
757
758 r = NULL;
759 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
760 if (sas_expander->sas_address != sas_address)
761 continue;
762 r = sas_expander;
763 goto out;
764 }
765 out:
766 return r;
767}
768
769/**
770 * _scsih_expander_node_add - insert expander device to the list.
771 * @ioc: per adapter object
772 * @sas_expander: the sas_device object
773 * Context: This function will acquire ioc->sas_node_lock.
774 *
775 * Adding new object to the ioc->sas_expander_list.
776 *
777 * Return nothing.
778 */
779static void
780_scsih_expander_node_add(struct MPT2SAS_ADAPTER *ioc,
781 struct _sas_node *sas_expander)
782{
783 unsigned long flags;
784
785 spin_lock_irqsave(&ioc->sas_node_lock, flags);
786 list_add_tail(&sas_expander->list, &ioc->sas_expander_list);
787 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
788}
789
790/**
791 * _scsih_is_end_device - determines if device is an end device
792 * @device_info: bitfield providing information about the device.
793 * Context: none
794 *
795 * Returns 1 if end device.
796 */
797static int
798_scsih_is_end_device(u32 device_info)
799{
800 if (device_info & MPI2_SAS_DEVICE_INFO_END_DEVICE &&
801 ((device_info & MPI2_SAS_DEVICE_INFO_SSP_TARGET) |
802 (device_info & MPI2_SAS_DEVICE_INFO_STP_TARGET) |
803 (device_info & MPI2_SAS_DEVICE_INFO_SATA_DEVICE)))
804 return 1;
805 else
806 return 0;
807}
808
809/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530810 * mptscsih_get_scsi_lookup - returns scmd entry
Eric Moore635374e2009-03-09 01:21:12 -0600811 * @ioc: per adapter object
812 * @smid: system request message index
Eric Moore635374e2009-03-09 01:21:12 -0600813 *
814 * Returns the smid stored scmd pointer.
815 */
816static struct scsi_cmnd *
817_scsih_scsi_lookup_get(struct MPT2SAS_ADAPTER *ioc, u16 smid)
818{
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530819 return ioc->scsi_lookup[smid - 1].scmd;
Eric Moore635374e2009-03-09 01:21:12 -0600820}
821
822/**
823 * _scsih_scsi_lookup_find_by_scmd - scmd lookup
824 * @ioc: per adapter object
825 * @smid: system request message index
826 * @scmd: pointer to scsi command object
827 * Context: This function will acquire ioc->scsi_lookup_lock.
828 *
829 * This will search for a scmd pointer in the scsi_lookup array,
830 * returning the revelent smid. A returned value of zero means invalid.
831 */
832static u16
833_scsih_scsi_lookup_find_by_scmd(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd
834 *scmd)
835{
836 u16 smid;
837 unsigned long flags;
838 int i;
839
840 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
841 smid = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530842 for (i = 0; i < ioc->scsiio_depth; i++) {
Eric Moore635374e2009-03-09 01:21:12 -0600843 if (ioc->scsi_lookup[i].scmd == scmd) {
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530844 smid = ioc->scsi_lookup[i].smid;
Eric Moore635374e2009-03-09 01:21:12 -0600845 goto out;
846 }
847 }
848 out:
849 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
850 return smid;
851}
852
853/**
854 * _scsih_scsi_lookup_find_by_target - search for matching channel:id
855 * @ioc: per adapter object
856 * @id: target id
857 * @channel: channel
858 * Context: This function will acquire ioc->scsi_lookup_lock.
859 *
860 * This will search for a matching channel:id in the scsi_lookup array,
861 * returning 1 if found.
862 */
863static u8
864_scsih_scsi_lookup_find_by_target(struct MPT2SAS_ADAPTER *ioc, int id,
865 int channel)
866{
867 u8 found;
868 unsigned long flags;
869 int i;
870
871 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
872 found = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530873 for (i = 0 ; i < ioc->scsiio_depth; i++) {
Eric Moore635374e2009-03-09 01:21:12 -0600874 if (ioc->scsi_lookup[i].scmd &&
875 (ioc->scsi_lookup[i].scmd->device->id == id &&
876 ioc->scsi_lookup[i].scmd->device->channel == channel)) {
877 found = 1;
878 goto out;
879 }
880 }
881 out:
882 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
883 return found;
884}
885
886/**
Eric Moore993e0da2009-05-18 13:00:45 -0600887 * _scsih_scsi_lookup_find_by_lun - search for matching channel:id:lun
888 * @ioc: per adapter object
889 * @id: target id
890 * @lun: lun number
891 * @channel: channel
892 * Context: This function will acquire ioc->scsi_lookup_lock.
893 *
894 * This will search for a matching channel:id:lun in the scsi_lookup array,
895 * returning 1 if found.
896 */
897static u8
898_scsih_scsi_lookup_find_by_lun(struct MPT2SAS_ADAPTER *ioc, int id,
899 unsigned int lun, int channel)
900{
901 u8 found;
902 unsigned long flags;
903 int i;
904
905 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
906 found = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530907 for (i = 0 ; i < ioc->scsiio_depth; i++) {
Eric Moore993e0da2009-05-18 13:00:45 -0600908 if (ioc->scsi_lookup[i].scmd &&
909 (ioc->scsi_lookup[i].scmd->device->id == id &&
910 ioc->scsi_lookup[i].scmd->device->channel == channel &&
911 ioc->scsi_lookup[i].scmd->device->lun == lun)) {
912 found = 1;
913 goto out;
914 }
915 }
916 out:
917 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
918 return found;
919}
920
921/**
Eric Moore635374e2009-03-09 01:21:12 -0600922 * _scsih_get_chain_buffer_dma - obtain block of chains (dma address)
923 * @ioc: per adapter object
924 * @smid: system request message index
925 *
926 * Returns phys pointer to chain buffer.
927 */
928static dma_addr_t
929_scsih_get_chain_buffer_dma(struct MPT2SAS_ADAPTER *ioc, u16 smid)
930{
931 return ioc->chain_dma + ((smid - 1) * (ioc->request_sz *
932 ioc->chains_needed_per_io));
933}
934
935/**
936 * _scsih_get_chain_buffer - obtain block of chains assigned to a mf request
937 * @ioc: per adapter object
938 * @smid: system request message index
939 *
940 * Returns virt pointer to chain buffer.
941 */
942static void *
943_scsih_get_chain_buffer(struct MPT2SAS_ADAPTER *ioc, u16 smid)
944{
945 return (void *)(ioc->chain + ((smid - 1) * (ioc->request_sz *
946 ioc->chains_needed_per_io)));
947}
948
949/**
950 * _scsih_build_scatter_gather - main sg creation routine
951 * @ioc: per adapter object
952 * @scmd: scsi command
953 * @smid: system request message index
954 * Context: none.
955 *
956 * The main routine that builds scatter gather table from a given
957 * scsi request sent via the .queuecommand main handler.
958 *
959 * Returns 0 success, anything else error
960 */
961static int
962_scsih_build_scatter_gather(struct MPT2SAS_ADAPTER *ioc,
963 struct scsi_cmnd *scmd, u16 smid)
964{
965 Mpi2SCSIIORequest_t *mpi_request;
966 dma_addr_t chain_dma;
967 struct scatterlist *sg_scmd;
968 void *sg_local, *chain;
969 u32 chain_offset;
970 u32 chain_length;
971 u32 chain_flags;
FUJITA Tomonoribb789d02010-03-09 11:09:50 +0900972 int sges_left;
Eric Moore635374e2009-03-09 01:21:12 -0600973 u32 sges_in_segment;
974 u32 sgl_flags;
975 u32 sgl_flags_last_element;
976 u32 sgl_flags_end_buffer;
977
978 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
979
980 /* init scatter gather flags */
981 sgl_flags = MPI2_SGE_FLAGS_SIMPLE_ELEMENT;
982 if (scmd->sc_data_direction == DMA_TO_DEVICE)
983 sgl_flags |= MPI2_SGE_FLAGS_HOST_TO_IOC;
984 sgl_flags_last_element = (sgl_flags | MPI2_SGE_FLAGS_LAST_ELEMENT)
985 << MPI2_SGE_FLAGS_SHIFT;
986 sgl_flags_end_buffer = (sgl_flags | MPI2_SGE_FLAGS_LAST_ELEMENT |
987 MPI2_SGE_FLAGS_END_OF_BUFFER | MPI2_SGE_FLAGS_END_OF_LIST)
988 << MPI2_SGE_FLAGS_SHIFT;
989 sgl_flags = sgl_flags << MPI2_SGE_FLAGS_SHIFT;
990
991 sg_scmd = scsi_sglist(scmd);
992 sges_left = scsi_dma_map(scmd);
FUJITA Tomonoribb789d02010-03-09 11:09:50 +0900993 if (sges_left < 0) {
Eric Moore635374e2009-03-09 01:21:12 -0600994 sdev_printk(KERN_ERR, scmd->device, "pci_map_sg"
995 " failed: request for %d bytes!\n", scsi_bufflen(scmd));
996 return -ENOMEM;
997 }
998
999 sg_local = &mpi_request->SGL;
1000 sges_in_segment = ioc->max_sges_in_main_message;
1001 if (sges_left <= sges_in_segment)
1002 goto fill_in_last_segment;
1003
1004 mpi_request->ChainOffset = (offsetof(Mpi2SCSIIORequest_t, SGL) +
1005 (sges_in_segment * ioc->sge_size))/4;
1006
1007 /* fill in main message segment when there is a chain following */
1008 while (sges_in_segment) {
1009 if (sges_in_segment == 1)
1010 ioc->base_add_sg_single(sg_local,
1011 sgl_flags_last_element | sg_dma_len(sg_scmd),
1012 sg_dma_address(sg_scmd));
1013 else
1014 ioc->base_add_sg_single(sg_local, sgl_flags |
1015 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1016 sg_scmd = sg_next(sg_scmd);
1017 sg_local += ioc->sge_size;
1018 sges_left--;
1019 sges_in_segment--;
1020 }
1021
1022 /* initializing the chain flags and pointers */
1023 chain_flags = MPI2_SGE_FLAGS_CHAIN_ELEMENT << MPI2_SGE_FLAGS_SHIFT;
1024 chain = _scsih_get_chain_buffer(ioc, smid);
1025 chain_dma = _scsih_get_chain_buffer_dma(ioc, smid);
1026 do {
1027 sges_in_segment = (sges_left <=
1028 ioc->max_sges_in_chain_message) ? sges_left :
1029 ioc->max_sges_in_chain_message;
1030 chain_offset = (sges_left == sges_in_segment) ?
1031 0 : (sges_in_segment * ioc->sge_size)/4;
1032 chain_length = sges_in_segment * ioc->sge_size;
1033 if (chain_offset) {
1034 chain_offset = chain_offset <<
1035 MPI2_SGE_CHAIN_OFFSET_SHIFT;
1036 chain_length += ioc->sge_size;
1037 }
1038 ioc->base_add_sg_single(sg_local, chain_flags | chain_offset |
1039 chain_length, chain_dma);
1040 sg_local = chain;
1041 if (!chain_offset)
1042 goto fill_in_last_segment;
1043
1044 /* fill in chain segments */
1045 while (sges_in_segment) {
1046 if (sges_in_segment == 1)
1047 ioc->base_add_sg_single(sg_local,
1048 sgl_flags_last_element |
1049 sg_dma_len(sg_scmd),
1050 sg_dma_address(sg_scmd));
1051 else
1052 ioc->base_add_sg_single(sg_local, sgl_flags |
1053 sg_dma_len(sg_scmd),
1054 sg_dma_address(sg_scmd));
1055 sg_scmd = sg_next(sg_scmd);
1056 sg_local += ioc->sge_size;
1057 sges_left--;
1058 sges_in_segment--;
1059 }
1060
1061 chain_dma += ioc->request_sz;
1062 chain += ioc->request_sz;
1063 } while (1);
1064
1065
1066 fill_in_last_segment:
1067
1068 /* fill the last segment */
1069 while (sges_left) {
1070 if (sges_left == 1)
1071 ioc->base_add_sg_single(sg_local, sgl_flags_end_buffer |
1072 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1073 else
1074 ioc->base_add_sg_single(sg_local, sgl_flags |
1075 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1076 sg_scmd = sg_next(sg_scmd);
1077 sg_local += ioc->sge_size;
1078 sges_left--;
1079 }
1080
1081 return 0;
1082}
1083
1084/**
Eric Moored5d135b2009-05-18 13:02:08 -06001085 * _scsih_change_queue_depth - setting device queue depth
Eric Moore635374e2009-03-09 01:21:12 -06001086 * @sdev: scsi device struct
1087 * @qdepth: requested queue depth
Mike Christiee881a172009-10-15 17:46:39 -07001088 * @reason: calling context
Eric Moore635374e2009-03-09 01:21:12 -06001089 *
1090 * Returns queue depth.
1091 */
1092static int
Mike Christiee881a172009-10-15 17:46:39 -07001093_scsih_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
Eric Moore635374e2009-03-09 01:21:12 -06001094{
1095 struct Scsi_Host *shost = sdev->host;
1096 int max_depth;
1097 int tag_type;
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301098 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1099 struct MPT2SAS_DEVICE *sas_device_priv_data;
1100 struct MPT2SAS_TARGET *sas_target_priv_data;
1101 struct _sas_device *sas_device;
1102 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06001103
Mike Christiee881a172009-10-15 17:46:39 -07001104 if (reason != SCSI_QDEPTH_DEFAULT)
1105 return -EOPNOTSUPP;
1106
Eric Moore635374e2009-03-09 01:21:12 -06001107 max_depth = shost->can_queue;
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301108
1109 /* limit max device queue for SATA to 32 */
1110 sas_device_priv_data = sdev->hostdata;
1111 if (!sas_device_priv_data)
1112 goto not_sata;
1113 sas_target_priv_data = sas_device_priv_data->sas_target;
1114 if (!sas_target_priv_data)
1115 goto not_sata;
1116 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME))
1117 goto not_sata;
1118 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1119 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1120 sas_device_priv_data->sas_target->sas_address);
1121 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1122 if (sas_device && sas_device->device_info &
1123 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1124 max_depth = MPT2SAS_SATA_QUEUE_DEPTH;
1125
1126 not_sata:
1127
Eric Moore635374e2009-03-09 01:21:12 -06001128 if (!sdev->tagged_supported)
1129 max_depth = 1;
1130 if (qdepth > max_depth)
1131 qdepth = max_depth;
1132 tag_type = (qdepth == 1) ? 0 : MSG_SIMPLE_TAG;
1133 scsi_adjust_queue_depth(sdev, tag_type, qdepth);
1134
1135 if (sdev->inquiry_len > 7)
1136 sdev_printk(KERN_INFO, sdev, "qdepth(%d), tagged(%d), "
1137 "simple(%d), ordered(%d), scsi_level(%d), cmd_que(%d)\n",
1138 sdev->queue_depth, sdev->tagged_supported, sdev->simple_tags,
1139 sdev->ordered_tags, sdev->scsi_level,
1140 (sdev->inquiry[7] & 2) >> 1);
1141
1142 return sdev->queue_depth;
1143}
1144
1145/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301146 * _scsih_change_queue_type - changing device queue tag type
Eric Moore635374e2009-03-09 01:21:12 -06001147 * @sdev: scsi device struct
1148 * @tag_type: requested tag type
1149 *
1150 * Returns queue tag type.
1151 */
1152static int
Eric Moored5d135b2009-05-18 13:02:08 -06001153_scsih_change_queue_type(struct scsi_device *sdev, int tag_type)
Eric Moore635374e2009-03-09 01:21:12 -06001154{
1155 if (sdev->tagged_supported) {
1156 scsi_set_tag_type(sdev, tag_type);
1157 if (tag_type)
1158 scsi_activate_tcq(sdev, sdev->queue_depth);
1159 else
1160 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1161 } else
1162 tag_type = 0;
1163
1164 return tag_type;
1165}
1166
1167/**
Eric Moored5d135b2009-05-18 13:02:08 -06001168 * _scsih_target_alloc - target add routine
Eric Moore635374e2009-03-09 01:21:12 -06001169 * @starget: scsi target struct
1170 *
1171 * Returns 0 if ok. Any other return is assumed to be an error and
1172 * the device is ignored.
1173 */
1174static int
Eric Moored5d135b2009-05-18 13:02:08 -06001175_scsih_target_alloc(struct scsi_target *starget)
Eric Moore635374e2009-03-09 01:21:12 -06001176{
1177 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1178 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1179 struct MPT2SAS_TARGET *sas_target_priv_data;
1180 struct _sas_device *sas_device;
1181 struct _raid_device *raid_device;
1182 unsigned long flags;
1183 struct sas_rphy *rphy;
1184
1185 sas_target_priv_data = kzalloc(sizeof(struct scsi_target), GFP_KERNEL);
1186 if (!sas_target_priv_data)
1187 return -ENOMEM;
1188
1189 starget->hostdata = sas_target_priv_data;
1190 sas_target_priv_data->starget = starget;
1191 sas_target_priv_data->handle = MPT2SAS_INVALID_DEVICE_HANDLE;
1192
1193 /* RAID volumes */
1194 if (starget->channel == RAID_CHANNEL) {
1195 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1196 raid_device = _scsih_raid_device_find_by_id(ioc, starget->id,
1197 starget->channel);
1198 if (raid_device) {
1199 sas_target_priv_data->handle = raid_device->handle;
1200 sas_target_priv_data->sas_address = raid_device->wwid;
1201 sas_target_priv_data->flags |= MPT_TARGET_FLAGS_VOLUME;
1202 raid_device->starget = starget;
1203 }
1204 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1205 return 0;
1206 }
1207
1208 /* sas/sata devices */
1209 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1210 rphy = dev_to_rphy(starget->dev.parent);
1211 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1212 rphy->identify.sas_address);
1213
1214 if (sas_device) {
1215 sas_target_priv_data->handle = sas_device->handle;
1216 sas_target_priv_data->sas_address = sas_device->sas_address;
1217 sas_device->starget = starget;
1218 sas_device->id = starget->id;
1219 sas_device->channel = starget->channel;
1220 if (sas_device->hidden_raid_component)
1221 sas_target_priv_data->flags |=
1222 MPT_TARGET_FLAGS_RAID_COMPONENT;
1223 }
1224 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1225
1226 return 0;
1227}
1228
1229/**
Eric Moored5d135b2009-05-18 13:02:08 -06001230 * _scsih_target_destroy - target destroy routine
Eric Moore635374e2009-03-09 01:21:12 -06001231 * @starget: scsi target struct
1232 *
1233 * Returns nothing.
1234 */
1235static void
Eric Moored5d135b2009-05-18 13:02:08 -06001236_scsih_target_destroy(struct scsi_target *starget)
Eric Moore635374e2009-03-09 01:21:12 -06001237{
1238 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1239 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1240 struct MPT2SAS_TARGET *sas_target_priv_data;
1241 struct _sas_device *sas_device;
1242 struct _raid_device *raid_device;
1243 unsigned long flags;
1244 struct sas_rphy *rphy;
1245
1246 sas_target_priv_data = starget->hostdata;
1247 if (!sas_target_priv_data)
1248 return;
1249
1250 if (starget->channel == RAID_CHANNEL) {
1251 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1252 raid_device = _scsih_raid_device_find_by_id(ioc, starget->id,
1253 starget->channel);
1254 if (raid_device) {
1255 raid_device->starget = NULL;
1256 raid_device->sdev = NULL;
1257 }
1258 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1259 goto out;
1260 }
1261
1262 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1263 rphy = dev_to_rphy(starget->dev.parent);
1264 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1265 rphy->identify.sas_address);
Eric Moore8901cbb2009-04-21 15:41:32 -06001266 if (sas_device && (sas_device->starget == starget) &&
1267 (sas_device->id == starget->id) &&
1268 (sas_device->channel == starget->channel))
Eric Moore635374e2009-03-09 01:21:12 -06001269 sas_device->starget = NULL;
1270
1271 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1272
1273 out:
1274 kfree(sas_target_priv_data);
1275 starget->hostdata = NULL;
1276}
1277
1278/**
Eric Moored5d135b2009-05-18 13:02:08 -06001279 * _scsih_slave_alloc - device add routine
Eric Moore635374e2009-03-09 01:21:12 -06001280 * @sdev: scsi device struct
1281 *
1282 * Returns 0 if ok. Any other return is assumed to be an error and
1283 * the device is ignored.
1284 */
1285static int
Eric Moored5d135b2009-05-18 13:02:08 -06001286_scsih_slave_alloc(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001287{
1288 struct Scsi_Host *shost;
1289 struct MPT2SAS_ADAPTER *ioc;
1290 struct MPT2SAS_TARGET *sas_target_priv_data;
1291 struct MPT2SAS_DEVICE *sas_device_priv_data;
1292 struct scsi_target *starget;
1293 struct _raid_device *raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06001294 unsigned long flags;
1295
1296 sas_device_priv_data = kzalloc(sizeof(struct scsi_device), GFP_KERNEL);
1297 if (!sas_device_priv_data)
1298 return -ENOMEM;
1299
1300 sas_device_priv_data->lun = sdev->lun;
1301 sas_device_priv_data->flags = MPT_DEVICE_FLAGS_INIT;
1302
1303 starget = scsi_target(sdev);
1304 sas_target_priv_data = starget->hostdata;
1305 sas_target_priv_data->num_luns++;
1306 sas_device_priv_data->sas_target = sas_target_priv_data;
1307 sdev->hostdata = sas_device_priv_data;
1308 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT))
1309 sdev->no_uld_attach = 1;
1310
1311 shost = dev_to_shost(&starget->dev);
1312 ioc = shost_priv(shost);
1313 if (starget->channel == RAID_CHANNEL) {
1314 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1315 raid_device = _scsih_raid_device_find_by_id(ioc,
1316 starget->id, starget->channel);
1317 if (raid_device)
1318 raid_device->sdev = sdev; /* raid is single lun */
1319 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06001320 }
1321
Eric Moore635374e2009-03-09 01:21:12 -06001322 return 0;
1323}
1324
1325/**
Eric Moored5d135b2009-05-18 13:02:08 -06001326 * _scsih_slave_destroy - device destroy routine
Eric Moore635374e2009-03-09 01:21:12 -06001327 * @sdev: scsi device struct
1328 *
1329 * Returns nothing.
1330 */
1331static void
Eric Moored5d135b2009-05-18 13:02:08 -06001332_scsih_slave_destroy(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001333{
1334 struct MPT2SAS_TARGET *sas_target_priv_data;
1335 struct scsi_target *starget;
1336
1337 if (!sdev->hostdata)
1338 return;
1339
1340 starget = scsi_target(sdev);
1341 sas_target_priv_data = starget->hostdata;
1342 sas_target_priv_data->num_luns--;
1343 kfree(sdev->hostdata);
1344 sdev->hostdata = NULL;
1345}
1346
1347/**
Eric Moored5d135b2009-05-18 13:02:08 -06001348 * _scsih_display_sata_capabilities - sata capabilities
Eric Moore635374e2009-03-09 01:21:12 -06001349 * @ioc: per adapter object
1350 * @sas_device: the sas_device object
1351 * @sdev: scsi device struct
1352 */
1353static void
Eric Moored5d135b2009-05-18 13:02:08 -06001354_scsih_display_sata_capabilities(struct MPT2SAS_ADAPTER *ioc,
Eric Moore635374e2009-03-09 01:21:12 -06001355 struct _sas_device *sas_device, struct scsi_device *sdev)
1356{
1357 Mpi2ConfigReply_t mpi_reply;
1358 Mpi2SasDevicePage0_t sas_device_pg0;
1359 u32 ioc_status;
1360 u16 flags;
1361 u32 device_info;
1362
1363 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
1364 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, sas_device->handle))) {
1365 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1366 ioc->name, __FILE__, __LINE__, __func__);
1367 return;
1368 }
1369
1370 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1371 MPI2_IOCSTATUS_MASK;
1372 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
1373 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1374 ioc->name, __FILE__, __LINE__, __func__);
1375 return;
1376 }
1377
1378 flags = le16_to_cpu(sas_device_pg0.Flags);
1379 device_info = le16_to_cpu(sas_device_pg0.DeviceInfo);
1380
1381 sdev_printk(KERN_INFO, sdev,
1382 "atapi(%s), ncq(%s), asyn_notify(%s), smart(%s), fua(%s), "
1383 "sw_preserve(%s)\n",
1384 (device_info & MPI2_SAS_DEVICE_INFO_ATAPI_DEVICE) ? "y" : "n",
1385 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_NCQ_SUPPORTED) ? "y" : "n",
1386 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_ASYNCHRONOUS_NOTIFY) ? "y" :
1387 "n",
1388 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_SMART_SUPPORTED) ? "y" : "n",
1389 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_FUA_SUPPORTED) ? "y" : "n",
1390 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_SW_PRESERVE) ? "y" : "n");
1391}
1392
1393/**
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301394 * _scsih_is_raid - return boolean indicating device is raid volume
1395 * @dev the device struct object
1396 */
1397static int
1398_scsih_is_raid(struct device *dev)
1399{
1400 struct scsi_device *sdev = to_scsi_device(dev);
1401
1402 return (sdev->channel == RAID_CHANNEL) ? 1 : 0;
1403}
1404
1405/**
1406 * _scsih_get_resync - get raid volume resync percent complete
1407 * @dev the device struct object
1408 */
1409static void
1410_scsih_get_resync(struct device *dev)
1411{
1412 struct scsi_device *sdev = to_scsi_device(dev);
1413 struct MPT2SAS_ADAPTER *ioc = shost_priv(sdev->host);
1414 static struct _raid_device *raid_device;
1415 unsigned long flags;
1416 Mpi2RaidVolPage0_t vol_pg0;
1417 Mpi2ConfigReply_t mpi_reply;
1418 u32 volume_status_flags;
1419 u8 percent_complete = 0;
1420
1421 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1422 raid_device = _scsih_raid_device_find_by_id(ioc, sdev->id,
1423 sdev->channel);
1424 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1425
1426 if (!raid_device)
1427 goto out;
1428
1429 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, &vol_pg0,
1430 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle,
1431 sizeof(Mpi2RaidVolPage0_t))) {
1432 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1433 ioc->name, __FILE__, __LINE__, __func__);
1434 goto out;
1435 }
1436
1437 volume_status_flags = le32_to_cpu(vol_pg0.VolumeStatusFlags);
1438 if (volume_status_flags & MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS)
1439 percent_complete = raid_device->percent_complete;
1440 out:
1441 raid_set_resync(mpt2sas_raid_template, dev, percent_complete);
1442}
1443
1444/**
1445 * _scsih_get_state - get raid volume level
1446 * @dev the device struct object
1447 */
1448static void
1449_scsih_get_state(struct device *dev)
1450{
1451 struct scsi_device *sdev = to_scsi_device(dev);
1452 struct MPT2SAS_ADAPTER *ioc = shost_priv(sdev->host);
1453 static struct _raid_device *raid_device;
1454 unsigned long flags;
1455 Mpi2RaidVolPage0_t vol_pg0;
1456 Mpi2ConfigReply_t mpi_reply;
1457 u32 volstate;
1458 enum raid_state state = RAID_STATE_UNKNOWN;
1459
1460 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1461 raid_device = _scsih_raid_device_find_by_id(ioc, sdev->id,
1462 sdev->channel);
1463 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1464
1465 if (!raid_device)
1466 goto out;
1467
1468 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, &vol_pg0,
1469 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle,
1470 sizeof(Mpi2RaidVolPage0_t))) {
1471 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1472 ioc->name, __FILE__, __LINE__, __func__);
1473 goto out;
1474 }
1475
1476 volstate = le32_to_cpu(vol_pg0.VolumeStatusFlags);
1477 if (volstate & MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS) {
1478 state = RAID_STATE_RESYNCING;
1479 goto out;
1480 }
1481
1482 switch (vol_pg0.VolumeState) {
1483 case MPI2_RAID_VOL_STATE_OPTIMAL:
1484 case MPI2_RAID_VOL_STATE_ONLINE:
1485 state = RAID_STATE_ACTIVE;
1486 break;
1487 case MPI2_RAID_VOL_STATE_DEGRADED:
1488 state = RAID_STATE_DEGRADED;
1489 break;
1490 case MPI2_RAID_VOL_STATE_FAILED:
1491 case MPI2_RAID_VOL_STATE_MISSING:
1492 state = RAID_STATE_OFFLINE;
1493 break;
1494 }
1495 out:
1496 raid_set_state(mpt2sas_raid_template, dev, state);
1497}
1498
1499/**
1500 * _scsih_set_level - set raid level
1501 * @sdev: scsi device struct
1502 * @raid_device: raid_device object
1503 */
1504static void
1505_scsih_set_level(struct scsi_device *sdev, struct _raid_device *raid_device)
1506{
1507 enum raid_level level = RAID_LEVEL_UNKNOWN;
1508
1509 switch (raid_device->volume_type) {
1510 case MPI2_RAID_VOL_TYPE_RAID0:
1511 level = RAID_LEVEL_0;
1512 break;
1513 case MPI2_RAID_VOL_TYPE_RAID10:
1514 level = RAID_LEVEL_10;
1515 break;
1516 case MPI2_RAID_VOL_TYPE_RAID1E:
1517 level = RAID_LEVEL_1E;
1518 break;
1519 case MPI2_RAID_VOL_TYPE_RAID1:
1520 level = RAID_LEVEL_1;
1521 break;
1522 }
1523
1524 raid_set_level(mpt2sas_raid_template, &sdev->sdev_gendev, level);
1525}
1526
1527/**
Eric Moore635374e2009-03-09 01:21:12 -06001528 * _scsih_get_volume_capabilities - volume capabilities
1529 * @ioc: per adapter object
1530 * @sas_device: the raid_device object
1531 */
1532static void
1533_scsih_get_volume_capabilities(struct MPT2SAS_ADAPTER *ioc,
1534 struct _raid_device *raid_device)
1535{
1536 Mpi2RaidVolPage0_t *vol_pg0;
1537 Mpi2RaidPhysDiskPage0_t pd_pg0;
1538 Mpi2SasDevicePage0_t sas_device_pg0;
1539 Mpi2ConfigReply_t mpi_reply;
1540 u16 sz;
1541 u8 num_pds;
1542
1543 if ((mpt2sas_config_get_number_pds(ioc, raid_device->handle,
1544 &num_pds)) || !num_pds) {
1545 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1546 ioc->name, __FILE__, __LINE__, __func__);
1547 return;
1548 }
1549
1550 raid_device->num_pds = num_pds;
1551 sz = offsetof(Mpi2RaidVolPage0_t, PhysDisk) + (num_pds *
1552 sizeof(Mpi2RaidVol0PhysDisk_t));
1553 vol_pg0 = kzalloc(sz, GFP_KERNEL);
1554 if (!vol_pg0) {
1555 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1556 ioc->name, __FILE__, __LINE__, __func__);
1557 return;
1558 }
1559
1560 if ((mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, vol_pg0,
1561 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle, sz))) {
1562 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1563 ioc->name, __FILE__, __LINE__, __func__);
1564 kfree(vol_pg0);
1565 return;
1566 }
1567
1568 raid_device->volume_type = vol_pg0->VolumeType;
1569
1570 /* figure out what the underlying devices are by
1571 * obtaining the device_info bits for the 1st device
1572 */
1573 if (!(mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
1574 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM,
1575 vol_pg0->PhysDisk[0].PhysDiskNum))) {
1576 if (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
1577 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
1578 le16_to_cpu(pd_pg0.DevHandle)))) {
1579 raid_device->device_info =
1580 le32_to_cpu(sas_device_pg0.DeviceInfo);
1581 }
1582 }
1583
1584 kfree(vol_pg0);
1585}
1586
1587/**
Kashyap, Desai84f0b042009-12-16 18:56:28 +05301588 * _scsih_enable_tlr - setting TLR flags
1589 * @ioc: per adapter object
1590 * @sdev: scsi device struct
1591 *
1592 * Enabling Transaction Layer Retries for tape devices when
1593 * vpd page 0x90 is present
1594 *
1595 */
1596static void
1597_scsih_enable_tlr(struct MPT2SAS_ADAPTER *ioc, struct scsi_device *sdev)
1598{
1599 /* only for TAPE */
1600 if (sdev->type != TYPE_TAPE)
1601 return;
1602
1603 if (!(ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_TLR))
1604 return;
1605
1606 sas_enable_tlr(sdev);
1607 sdev_printk(KERN_INFO, sdev, "TLR %s\n",
1608 sas_is_tlr_enabled(sdev) ? "Enabled" : "Disabled");
1609 return;
1610
1611}
1612
1613/**
Eric Moored5d135b2009-05-18 13:02:08 -06001614 * _scsih_slave_configure - device configure routine.
Eric Moore635374e2009-03-09 01:21:12 -06001615 * @sdev: scsi device struct
1616 *
1617 * Returns 0 if ok. Any other return is assumed to be an error and
1618 * the device is ignored.
1619 */
1620static int
Eric Moored5d135b2009-05-18 13:02:08 -06001621_scsih_slave_configure(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001622{
1623 struct Scsi_Host *shost = sdev->host;
1624 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1625 struct MPT2SAS_DEVICE *sas_device_priv_data;
1626 struct MPT2SAS_TARGET *sas_target_priv_data;
1627 struct _sas_device *sas_device;
1628 struct _raid_device *raid_device;
1629 unsigned long flags;
1630 int qdepth;
1631 u8 ssp_target = 0;
1632 char *ds = "";
1633 char *r_level = "";
1634
1635 qdepth = 1;
1636 sas_device_priv_data = sdev->hostdata;
1637 sas_device_priv_data->configured_lun = 1;
1638 sas_device_priv_data->flags &= ~MPT_DEVICE_FLAGS_INIT;
1639 sas_target_priv_data = sas_device_priv_data->sas_target;
1640
1641 /* raid volume handling */
1642 if (sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME) {
1643
1644 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1645 raid_device = _scsih_raid_device_find_by_handle(ioc,
1646 sas_target_priv_data->handle);
1647 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1648 if (!raid_device) {
1649 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1650 ioc->name, __FILE__, __LINE__, __func__);
1651 return 0;
1652 }
1653
1654 _scsih_get_volume_capabilities(ioc, raid_device);
1655
1656 /* RAID Queue Depth Support
1657 * IS volume = underlying qdepth of drive type, either
1658 * MPT2SAS_SAS_QUEUE_DEPTH or MPT2SAS_SATA_QUEUE_DEPTH
1659 * IM/IME/R10 = 128 (MPT2SAS_RAID_QUEUE_DEPTH)
1660 */
1661 if (raid_device->device_info &
1662 MPI2_SAS_DEVICE_INFO_SSP_TARGET) {
1663 qdepth = MPT2SAS_SAS_QUEUE_DEPTH;
1664 ds = "SSP";
1665 } else {
1666 qdepth = MPT2SAS_SATA_QUEUE_DEPTH;
1667 if (raid_device->device_info &
1668 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1669 ds = "SATA";
1670 else
1671 ds = "STP";
1672 }
1673
1674 switch (raid_device->volume_type) {
1675 case MPI2_RAID_VOL_TYPE_RAID0:
1676 r_level = "RAID0";
1677 break;
1678 case MPI2_RAID_VOL_TYPE_RAID1E:
1679 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
Kashyap, Desaied79f122009-08-20 13:23:49 +05301680 if (ioc->manu_pg10.OEMIdentifier &&
1681 (ioc->manu_pg10.GenericFlags0 &
1682 MFG10_GF0_R10_DISPLAY) &&
1683 !(raid_device->num_pds % 2))
1684 r_level = "RAID10";
1685 else
1686 r_level = "RAID1E";
Eric Moore635374e2009-03-09 01:21:12 -06001687 break;
1688 case MPI2_RAID_VOL_TYPE_RAID1:
1689 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
1690 r_level = "RAID1";
1691 break;
1692 case MPI2_RAID_VOL_TYPE_RAID10:
1693 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
1694 r_level = "RAID10";
1695 break;
1696 case MPI2_RAID_VOL_TYPE_UNKNOWN:
1697 default:
1698 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
1699 r_level = "RAIDX";
1700 break;
1701 }
1702
1703 sdev_printk(KERN_INFO, sdev, "%s: "
1704 "handle(0x%04x), wwid(0x%016llx), pd_count(%d), type(%s)\n",
1705 r_level, raid_device->handle,
1706 (unsigned long long)raid_device->wwid,
1707 raid_device->num_pds, ds);
Mike Christiee881a172009-10-15 17:46:39 -07001708 _scsih_change_queue_depth(sdev, qdepth, SCSI_QDEPTH_DEFAULT);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301709 /* raid transport support */
1710 _scsih_set_level(sdev, raid_device);
Eric Moore635374e2009-03-09 01:21:12 -06001711 return 0;
1712 }
1713
1714 /* non-raid handling */
1715 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1716 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1717 sas_device_priv_data->sas_target->sas_address);
1718 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1719 if (sas_device) {
1720 if (sas_target_priv_data->flags &
1721 MPT_TARGET_FLAGS_RAID_COMPONENT) {
1722 mpt2sas_config_get_volume_handle(ioc,
1723 sas_device->handle, &sas_device->volume_handle);
1724 mpt2sas_config_get_volume_wwid(ioc,
1725 sas_device->volume_handle,
1726 &sas_device->volume_wwid);
1727 }
1728 if (sas_device->device_info & MPI2_SAS_DEVICE_INFO_SSP_TARGET) {
1729 qdepth = MPT2SAS_SAS_QUEUE_DEPTH;
1730 ssp_target = 1;
1731 ds = "SSP";
1732 } else {
1733 qdepth = MPT2SAS_SATA_QUEUE_DEPTH;
1734 if (sas_device->device_info &
1735 MPI2_SAS_DEVICE_INFO_STP_TARGET)
1736 ds = "STP";
1737 else if (sas_device->device_info &
1738 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1739 ds = "SATA";
1740 }
1741
1742 sdev_printk(KERN_INFO, sdev, "%s: handle(0x%04x), "
1743 "sas_addr(0x%016llx), device_name(0x%016llx)\n",
1744 ds, sas_device->handle,
1745 (unsigned long long)sas_device->sas_address,
1746 (unsigned long long)sas_device->device_name);
1747 sdev_printk(KERN_INFO, sdev, "%s: "
1748 "enclosure_logical_id(0x%016llx), slot(%d)\n", ds,
1749 (unsigned long long) sas_device->enclosure_logical_id,
1750 sas_device->slot);
1751
1752 if (!ssp_target)
Eric Moored5d135b2009-05-18 13:02:08 -06001753 _scsih_display_sata_capabilities(ioc, sas_device, sdev);
Eric Moore635374e2009-03-09 01:21:12 -06001754 }
1755
Mike Christiee881a172009-10-15 17:46:39 -07001756 _scsih_change_queue_depth(sdev, qdepth, SCSI_QDEPTH_DEFAULT);
Eric Moore635374e2009-03-09 01:21:12 -06001757
Kashyap, Desai84f0b042009-12-16 18:56:28 +05301758 if (ssp_target) {
Eric Moore635374e2009-03-09 01:21:12 -06001759 sas_read_port_mode_page(sdev);
Kashyap, Desai84f0b042009-12-16 18:56:28 +05301760 _scsih_enable_tlr(ioc, sdev);
1761 }
Eric Moore635374e2009-03-09 01:21:12 -06001762 return 0;
1763}
1764
1765/**
Eric Moored5d135b2009-05-18 13:02:08 -06001766 * _scsih_bios_param - fetch head, sector, cylinder info for a disk
Eric Moore635374e2009-03-09 01:21:12 -06001767 * @sdev: scsi device struct
1768 * @bdev: pointer to block device context
1769 * @capacity: device size (in 512 byte sectors)
1770 * @params: three element array to place output:
1771 * params[0] number of heads (max 255)
1772 * params[1] number of sectors (max 63)
1773 * params[2] number of cylinders
1774 *
1775 * Return nothing.
1776 */
1777static int
Eric Moored5d135b2009-05-18 13:02:08 -06001778_scsih_bios_param(struct scsi_device *sdev, struct block_device *bdev,
Eric Moore635374e2009-03-09 01:21:12 -06001779 sector_t capacity, int params[])
1780{
1781 int heads;
1782 int sectors;
1783 sector_t cylinders;
1784 ulong dummy;
1785
1786 heads = 64;
1787 sectors = 32;
1788
1789 dummy = heads * sectors;
1790 cylinders = capacity;
1791 sector_div(cylinders, dummy);
1792
1793 /*
1794 * Handle extended translation size for logical drives
1795 * > 1Gb
1796 */
1797 if ((ulong)capacity >= 0x200000) {
1798 heads = 255;
1799 sectors = 63;
1800 dummy = heads * sectors;
1801 cylinders = capacity;
1802 sector_div(cylinders, dummy);
1803 }
1804
1805 /* return result */
1806 params[0] = heads;
1807 params[1] = sectors;
1808 params[2] = cylinders;
1809
1810 return 0;
1811}
1812
1813/**
1814 * _scsih_response_code - translation of device response code
1815 * @ioc: per adapter object
1816 * @response_code: response code returned by the device
1817 *
1818 * Return nothing.
1819 */
1820static void
1821_scsih_response_code(struct MPT2SAS_ADAPTER *ioc, u8 response_code)
1822{
1823 char *desc;
1824
1825 switch (response_code) {
1826 case MPI2_SCSITASKMGMT_RSP_TM_COMPLETE:
1827 desc = "task management request completed";
1828 break;
1829 case MPI2_SCSITASKMGMT_RSP_INVALID_FRAME:
1830 desc = "invalid frame";
1831 break;
1832 case MPI2_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED:
1833 desc = "task management request not supported";
1834 break;
1835 case MPI2_SCSITASKMGMT_RSP_TM_FAILED:
1836 desc = "task management request failed";
1837 break;
1838 case MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED:
1839 desc = "task management request succeeded";
1840 break;
1841 case MPI2_SCSITASKMGMT_RSP_TM_INVALID_LUN:
1842 desc = "invalid lun";
1843 break;
1844 case 0xA:
1845 desc = "overlapped tag attempted";
1846 break;
1847 case MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC:
1848 desc = "task queued, however not sent to target";
1849 break;
1850 default:
1851 desc = "unknown";
1852 break;
1853 }
1854 printk(MPT2SAS_WARN_FMT "response_code(0x%01x): %s\n",
1855 ioc->name, response_code, desc);
1856}
1857
1858/**
Eric Moored5d135b2009-05-18 13:02:08 -06001859 * _scsih_tm_done - tm completion routine
Eric Moore635374e2009-03-09 01:21:12 -06001860 * @ioc: per adapter object
1861 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301862 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06001863 * @reply: reply message frame(lower 32bit addr)
1864 * Context: none.
1865 *
1866 * The callback handler when using scsih_issue_tm.
1867 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301868 * Return 1 meaning mf should be freed from _base_interrupt
1869 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06001870 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301871static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301872_scsih_tm_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06001873{
1874 MPI2DefaultReply_t *mpi_reply;
1875
1876 if (ioc->tm_cmds.status == MPT2_CMD_NOT_USED)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301877 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001878 if (ioc->tm_cmds.smid != smid)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301879 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001880 ioc->tm_cmds.status |= MPT2_CMD_COMPLETE;
1881 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
1882 if (mpi_reply) {
1883 memcpy(ioc->tm_cmds.reply, mpi_reply, mpi_reply->MsgLength*4);
1884 ioc->tm_cmds.status |= MPT2_CMD_REPLY_VALID;
1885 }
1886 ioc->tm_cmds.status &= ~MPT2_CMD_PENDING;
1887 complete(&ioc->tm_cmds.done);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301888 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001889}
1890
1891/**
1892 * mpt2sas_scsih_set_tm_flag - set per target tm_busy
1893 * @ioc: per adapter object
1894 * @handle: device handle
1895 *
1896 * During taskmangement request, we need to freeze the device queue.
1897 */
1898void
1899mpt2sas_scsih_set_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
1900{
1901 struct MPT2SAS_DEVICE *sas_device_priv_data;
1902 struct scsi_device *sdev;
1903 u8 skip = 0;
1904
1905 shost_for_each_device(sdev, ioc->shost) {
1906 if (skip)
1907 continue;
1908 sas_device_priv_data = sdev->hostdata;
1909 if (!sas_device_priv_data)
1910 continue;
1911 if (sas_device_priv_data->sas_target->handle == handle) {
1912 sas_device_priv_data->sas_target->tm_busy = 1;
1913 skip = 1;
1914 ioc->ignore_loginfos = 1;
1915 }
1916 }
1917}
1918
1919/**
1920 * mpt2sas_scsih_clear_tm_flag - clear per target tm_busy
1921 * @ioc: per adapter object
1922 * @handle: device handle
1923 *
1924 * During taskmangement request, we need to freeze the device queue.
1925 */
1926void
1927mpt2sas_scsih_clear_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
1928{
1929 struct MPT2SAS_DEVICE *sas_device_priv_data;
1930 struct scsi_device *sdev;
1931 u8 skip = 0;
1932
1933 shost_for_each_device(sdev, ioc->shost) {
1934 if (skip)
1935 continue;
1936 sas_device_priv_data = sdev->hostdata;
1937 if (!sas_device_priv_data)
1938 continue;
1939 if (sas_device_priv_data->sas_target->handle == handle) {
1940 sas_device_priv_data->sas_target->tm_busy = 0;
1941 skip = 1;
1942 ioc->ignore_loginfos = 0;
1943 }
1944 }
1945}
1946
1947/**
1948 * mpt2sas_scsih_issue_tm - main routine for sending tm requests
1949 * @ioc: per adapter struct
1950 * @device_handle: device handle
1951 * @lun: lun number
1952 * @type: MPI2_SCSITASKMGMT_TASKTYPE__XXX (defined in mpi2_init.h)
1953 * @smid_task: smid assigned to the task
1954 * @timeout: timeout in seconds
1955 * Context: The calling function needs to acquire the tm_cmds.mutex
1956 *
1957 * A generic API for sending task management requests to firmware.
1958 *
1959 * The ioc->tm_cmds.status flag should be MPT2_CMD_NOT_USED before calling
1960 * this API.
1961 *
1962 * The callback index is set inside `ioc->tm_cb_idx`.
1963 *
1964 * Return nothing.
1965 */
1966void
1967mpt2sas_scsih_issue_tm(struct MPT2SAS_ADAPTER *ioc, u16 handle, uint lun,
1968 u8 type, u16 smid_task, ulong timeout)
1969{
1970 Mpi2SCSITaskManagementRequest_t *mpi_request;
1971 Mpi2SCSITaskManagementReply_t *mpi_reply;
1972 u16 smid = 0;
1973 u32 ioc_state;
1974 unsigned long timeleft;
Eric Moore635374e2009-03-09 01:21:12 -06001975
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05301976 if (ioc->tm_cmds.status != MPT2_CMD_NOT_USED) {
1977 printk(MPT2SAS_INFO_FMT "%s: tm_cmd busy!!!\n",
1978 __func__, ioc->name);
1979 return;
1980 }
1981
1982 if (ioc->shost_recovery) {
Eric Moore635374e2009-03-09 01:21:12 -06001983 printk(MPT2SAS_INFO_FMT "%s: host reset in progress!\n",
1984 __func__, ioc->name);
1985 return;
1986 }
Eric Moore635374e2009-03-09 01:21:12 -06001987
1988 ioc_state = mpt2sas_base_get_iocstate(ioc, 0);
1989 if (ioc_state & MPI2_DOORBELL_USED) {
1990 dhsprintk(ioc, printk(MPT2SAS_DEBUG_FMT "unexpected doorbell "
1991 "active!\n", ioc->name));
1992 goto issue_host_reset;
1993 }
1994
1995 if ((ioc_state & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) {
1996 mpt2sas_base_fault_info(ioc, ioc_state &
1997 MPI2_DOORBELL_DATA_MASK);
1998 goto issue_host_reset;
1999 }
2000
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302001 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06002002 if (!smid) {
2003 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
2004 ioc->name, __func__);
2005 return;
2006 }
2007
2008 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "sending tm: handle(0x%04x),"
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302009 " task_type(0x%02x), smid(%d)\n", ioc->name, handle, type,
2010 smid_task));
Eric Moore635374e2009-03-09 01:21:12 -06002011 ioc->tm_cmds.status = MPT2_CMD_PENDING;
2012 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
2013 ioc->tm_cmds.smid = smid;
2014 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
2015 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
2016 mpi_request->DevHandle = cpu_to_le16(handle);
2017 mpi_request->TaskType = type;
2018 mpi_request->TaskMID = cpu_to_le16(smid_task);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302019 mpi_request->VP_ID = 0; /* TODO */
2020 mpi_request->VF_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06002021 int_to_scsilun(lun, (struct scsi_lun *)mpi_request->LUN);
2022 mpt2sas_scsih_set_tm_flag(ioc, handle);
Kashyap, Desai5b768582009-08-20 13:24:31 +05302023 init_completion(&ioc->tm_cmds.done);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302024 mpt2sas_base_put_smid_hi_priority(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06002025 timeleft = wait_for_completion_timeout(&ioc->tm_cmds.done, timeout*HZ);
2026 mpt2sas_scsih_clear_tm_flag(ioc, handle);
2027 if (!(ioc->tm_cmds.status & MPT2_CMD_COMPLETE)) {
2028 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
2029 ioc->name, __func__);
2030 _debug_dump_mf(mpi_request,
2031 sizeof(Mpi2SCSITaskManagementRequest_t)/4);
2032 if (!(ioc->tm_cmds.status & MPT2_CMD_RESET))
2033 goto issue_host_reset;
2034 }
2035
2036 if (ioc->tm_cmds.status & MPT2_CMD_REPLY_VALID) {
2037 mpi_reply = ioc->tm_cmds.reply;
2038 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "complete tm: "
2039 "ioc_status(0x%04x), loginfo(0x%08x), term_count(0x%08x)\n",
2040 ioc->name, le16_to_cpu(mpi_reply->IOCStatus),
2041 le32_to_cpu(mpi_reply->IOCLogInfo),
2042 le32_to_cpu(mpi_reply->TerminationCount)));
2043 if (ioc->logging_level & MPT_DEBUG_TM)
2044 _scsih_response_code(ioc, mpi_reply->ResponseCode);
2045 }
2046 return;
2047 issue_host_reset:
2048 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP, FORCE_BIG_HAMMER);
2049}
2050
2051/**
Eric Moored5d135b2009-05-18 13:02:08 -06002052 * _scsih_abort - eh threads main abort routine
Eric Moore635374e2009-03-09 01:21:12 -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_abort(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002059{
2060 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2061 struct MPT2SAS_DEVICE *sas_device_priv_data;
2062 u16 smid;
2063 u16 handle;
2064 int r;
2065 struct scsi_cmnd *scmd_lookup;
2066
2067 printk(MPT2SAS_INFO_FMT "attempting task abort! 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 "device 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 /* search for the command */
2082 smid = _scsih_scsi_lookup_find_by_scmd(ioc, scmd);
2083 if (!smid) {
2084 scmd->result = DID_RESET << 16;
2085 r = SUCCESS;
2086 goto out;
2087 }
2088
2089 /* for hidden raid components and volumes this is not supported */
2090 if (sas_device_priv_data->sas_target->flags &
2091 MPT_TARGET_FLAGS_RAID_COMPONENT ||
2092 sas_device_priv_data->sas_target->flags & MPT_TARGET_FLAGS_VOLUME) {
2093 scmd->result = DID_RESET << 16;
2094 r = FAILED;
2095 goto out;
2096 }
2097
Kashyap, Desaifa7f3162009-09-23 17:26:58 +05302098 mpt2sas_halt_firmware(ioc);
2099
Eric Moore635374e2009-03-09 01:21:12 -06002100 mutex_lock(&ioc->tm_cmds.mutex);
2101 handle = sas_device_priv_data->sas_target->handle;
2102 mpt2sas_scsih_issue_tm(ioc, handle, sas_device_priv_data->lun,
2103 MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK, smid, 30);
2104
2105 /* sanity check - see whether command actually completed */
2106 scmd_lookup = _scsih_scsi_lookup_get(ioc, smid);
2107 if (scmd_lookup && (scmd_lookup->serial_number == scmd->serial_number))
2108 r = FAILED;
2109 else
2110 r = SUCCESS;
2111 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
2112 mutex_unlock(&ioc->tm_cmds.mutex);
2113
2114 out:
2115 printk(MPT2SAS_INFO_FMT "task abort: %s scmd(%p)\n",
2116 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2117 return r;
2118}
2119
Eric Moore635374e2009-03-09 01:21:12 -06002120/**
Eric Moored5d135b2009-05-18 13:02:08 -06002121 * _scsih_dev_reset - eh threads main device reset routine
Eric Moore635374e2009-03-09 01:21:12 -06002122 * @sdev: scsi device struct
2123 *
2124 * Returns SUCCESS if command aborted else FAILED
2125 */
2126static int
Eric Moored5d135b2009-05-18 13:02:08 -06002127_scsih_dev_reset(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002128{
2129 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2130 struct MPT2SAS_DEVICE *sas_device_priv_data;
2131 struct _sas_device *sas_device;
2132 unsigned long flags;
2133 u16 handle;
2134 int r;
2135
Eric Moore993e0da2009-05-18 13:00:45 -06002136 printk(MPT2SAS_INFO_FMT "attempting device reset! scmd(%p)\n",
Eric Moore635374e2009-03-09 01:21:12 -06002137 ioc->name, scmd);
2138 scsi_print_command(scmd);
2139
2140 sas_device_priv_data = scmd->device->hostdata;
2141 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
2142 printk(MPT2SAS_INFO_FMT "device been deleted! scmd(%p)\n",
2143 ioc->name, scmd);
2144 scmd->result = DID_NO_CONNECT << 16;
2145 scmd->scsi_done(scmd);
2146 r = SUCCESS;
2147 goto out;
2148 }
2149
2150 /* for hidden raid components obtain the volume_handle */
2151 handle = 0;
2152 if (sas_device_priv_data->sas_target->flags &
2153 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2154 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2155 sas_device = _scsih_sas_device_find_by_handle(ioc,
2156 sas_device_priv_data->sas_target->handle);
2157 if (sas_device)
2158 handle = sas_device->volume_handle;
2159 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2160 } else
2161 handle = sas_device_priv_data->sas_target->handle;
2162
2163 if (!handle) {
2164 scmd->result = DID_RESET << 16;
2165 r = FAILED;
2166 goto out;
2167 }
2168
2169 mutex_lock(&ioc->tm_cmds.mutex);
2170 mpt2sas_scsih_issue_tm(ioc, handle, 0,
Eric Moore993e0da2009-05-18 13:00:45 -06002171 MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET, scmd->device->lun,
2172 30);
2173
2174 /*
2175 * sanity check see whether all commands to this device been
2176 * completed
2177 */
2178 if (_scsih_scsi_lookup_find_by_lun(ioc, scmd->device->id,
2179 scmd->device->lun, scmd->device->channel))
2180 r = FAILED;
2181 else
2182 r = SUCCESS;
2183 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
2184 mutex_unlock(&ioc->tm_cmds.mutex);
2185
2186 out:
2187 printk(MPT2SAS_INFO_FMT "device reset: %s scmd(%p)\n",
2188 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2189 return r;
2190}
2191
2192/**
Eric Moored5d135b2009-05-18 13:02:08 -06002193 * _scsih_target_reset - eh threads main target reset routine
Eric Moore993e0da2009-05-18 13:00:45 -06002194 * @sdev: scsi device struct
2195 *
2196 * Returns SUCCESS if command aborted else FAILED
2197 */
2198static int
Eric Moored5d135b2009-05-18 13:02:08 -06002199_scsih_target_reset(struct scsi_cmnd *scmd)
Eric Moore993e0da2009-05-18 13:00:45 -06002200{
2201 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2202 struct MPT2SAS_DEVICE *sas_device_priv_data;
2203 struct _sas_device *sas_device;
2204 unsigned long flags;
2205 u16 handle;
2206 int r;
2207
2208 printk(MPT2SAS_INFO_FMT "attempting target reset! scmd(%p)\n",
2209 ioc->name, scmd);
2210 scsi_print_command(scmd);
2211
2212 sas_device_priv_data = scmd->device->hostdata;
2213 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
2214 printk(MPT2SAS_INFO_FMT "target been deleted! scmd(%p)\n",
2215 ioc->name, scmd);
2216 scmd->result = DID_NO_CONNECT << 16;
2217 scmd->scsi_done(scmd);
2218 r = SUCCESS;
2219 goto out;
2220 }
2221
2222 /* for hidden raid components obtain the volume_handle */
2223 handle = 0;
2224 if (sas_device_priv_data->sas_target->flags &
2225 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2226 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2227 sas_device = _scsih_sas_device_find_by_handle(ioc,
2228 sas_device_priv_data->sas_target->handle);
2229 if (sas_device)
2230 handle = sas_device->volume_handle;
2231 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2232 } else
2233 handle = sas_device_priv_data->sas_target->handle;
2234
2235 if (!handle) {
2236 scmd->result = DID_RESET << 16;
2237 r = FAILED;
2238 goto out;
2239 }
2240
2241 mutex_lock(&ioc->tm_cmds.mutex);
2242 mpt2sas_scsih_issue_tm(ioc, handle, 0,
Eric Moore635374e2009-03-09 01:21:12 -06002243 MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET, 0, 30);
2244
2245 /*
2246 * sanity check see whether all commands to this target been
2247 * completed
2248 */
2249 if (_scsih_scsi_lookup_find_by_target(ioc, scmd->device->id,
2250 scmd->device->channel))
2251 r = FAILED;
2252 else
2253 r = SUCCESS;
2254 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
2255 mutex_unlock(&ioc->tm_cmds.mutex);
2256
2257 out:
2258 printk(MPT2SAS_INFO_FMT "target reset: %s scmd(%p)\n",
2259 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2260 return r;
2261}
2262
2263/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302264 * _scsih_host_reset - eh threads main host reset routine
Eric Moore635374e2009-03-09 01:21:12 -06002265 * @sdev: scsi device struct
2266 *
2267 * Returns SUCCESS if command aborted else FAILED
2268 */
2269static int
Eric Moored5d135b2009-05-18 13:02:08 -06002270_scsih_host_reset(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002271{
2272 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2273 int r, retval;
2274
2275 printk(MPT2SAS_INFO_FMT "attempting host reset! scmd(%p)\n",
2276 ioc->name, scmd);
2277 scsi_print_command(scmd);
2278
2279 retval = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
2280 FORCE_BIG_HAMMER);
2281 r = (retval < 0) ? FAILED : SUCCESS;
2282 printk(MPT2SAS_INFO_FMT "host reset: %s scmd(%p)\n",
2283 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2284
2285 return r;
2286}
2287
2288/**
2289 * _scsih_fw_event_add - insert and queue up fw_event
2290 * @ioc: per adapter object
2291 * @fw_event: object describing the event
2292 * Context: This function will acquire ioc->fw_event_lock.
2293 *
2294 * This adds the firmware event object into link list, then queues it up to
2295 * be processed from user context.
2296 *
2297 * Return nothing.
2298 */
2299static void
2300_scsih_fw_event_add(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work *fw_event)
2301{
2302 unsigned long flags;
2303
2304 if (ioc->firmware_event_thread == NULL)
2305 return;
2306
2307 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2308 list_add_tail(&fw_event->list, &ioc->fw_event_list);
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302309 INIT_DELAYED_WORK(&fw_event->delayed_work, _firmware_event_work);
2310 queue_delayed_work(ioc->firmware_event_thread,
2311 &fw_event->delayed_work, 0);
Eric Moore635374e2009-03-09 01:21:12 -06002312 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2313}
2314
2315/**
2316 * _scsih_fw_event_free - delete fw_event
2317 * @ioc: per adapter object
2318 * @fw_event: object describing the event
2319 * Context: This function will acquire ioc->fw_event_lock.
2320 *
2321 * This removes firmware event object from link list, frees associated memory.
2322 *
2323 * Return nothing.
2324 */
2325static void
2326_scsih_fw_event_free(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work
2327 *fw_event)
2328{
2329 unsigned long flags;
2330
2331 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2332 list_del(&fw_event->list);
2333 kfree(fw_event->event_data);
2334 kfree(fw_event);
2335 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2336}
2337
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302338
Eric Moore635374e2009-03-09 01:21:12 -06002339/**
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302340 * _scsih_queue_rescan - queue a topology rescan from user context
Eric Moore635374e2009-03-09 01:21:12 -06002341 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06002342 *
2343 * Return nothing.
2344 */
2345static void
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302346_scsih_queue_rescan(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06002347{
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302348 struct fw_event_work *fw_event;
2349
2350 if (ioc->wait_for_port_enable_to_complete)
2351 return;
2352 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
2353 if (!fw_event)
2354 return;
2355 fw_event->event = MPT2SAS_RESCAN_AFTER_HOST_RESET;
2356 fw_event->ioc = ioc;
2357 _scsih_fw_event_add(ioc, fw_event);
2358}
2359
2360/**
2361 * _scsih_fw_event_cleanup_queue - cleanup event queue
2362 * @ioc: per adapter object
2363 *
2364 * Walk the firmware event queue, either killing timers, or waiting
2365 * for outstanding events to complete
2366 *
2367 * Return nothing.
2368 */
2369static void
2370_scsih_fw_event_cleanup_queue(struct MPT2SAS_ADAPTER *ioc)
2371{
2372 struct fw_event_work *fw_event, *next;
2373
2374 if (list_empty(&ioc->fw_event_list) ||
2375 !ioc->firmware_event_thread || in_interrupt())
Eric Moore635374e2009-03-09 01:21:12 -06002376 return;
2377
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302378 list_for_each_entry_safe(fw_event, next, &ioc->fw_event_list, list) {
2379 if (cancel_delayed_work(&fw_event->delayed_work)) {
2380 _scsih_fw_event_free(ioc, fw_event);
2381 continue;
2382 }
2383 fw_event->cancel_pending_work = 1;
2384 }
Eric Moore635374e2009-03-09 01:21:12 -06002385}
2386
Eric Moore635374e2009-03-09 01:21:12 -06002387
2388/**
2389 * _scsih_ublock_io_device - set the device state to SDEV_RUNNING
2390 * @ioc: per adapter object
2391 * @handle: device handle
2392 *
2393 * During device pull we need to appropiately set the sdev state.
2394 */
2395static void
2396_scsih_ublock_io_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2397{
2398 struct MPT2SAS_DEVICE *sas_device_priv_data;
2399 struct scsi_device *sdev;
2400
2401 shost_for_each_device(sdev, ioc->shost) {
2402 sas_device_priv_data = sdev->hostdata;
2403 if (!sas_device_priv_data)
2404 continue;
2405 if (!sas_device_priv_data->block)
2406 continue;
2407 if (sas_device_priv_data->sas_target->handle == handle) {
2408 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev,
2409 MPT2SAS_INFO_FMT "SDEV_RUNNING: "
2410 "handle(0x%04x)\n", ioc->name, handle));
2411 sas_device_priv_data->block = 0;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05302412 scsi_internal_device_unblock(sdev);
Eric Moore635374e2009-03-09 01:21:12 -06002413 }
2414 }
2415}
2416
2417/**
2418 * _scsih_block_io_device - set the device state to SDEV_BLOCK
2419 * @ioc: per adapter object
2420 * @handle: device handle
2421 *
2422 * During device pull we need to appropiately set the sdev state.
2423 */
2424static void
2425_scsih_block_io_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2426{
2427 struct MPT2SAS_DEVICE *sas_device_priv_data;
2428 struct scsi_device *sdev;
2429
2430 shost_for_each_device(sdev, ioc->shost) {
2431 sas_device_priv_data = sdev->hostdata;
2432 if (!sas_device_priv_data)
2433 continue;
2434 if (sas_device_priv_data->block)
2435 continue;
2436 if (sas_device_priv_data->sas_target->handle == handle) {
2437 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev,
2438 MPT2SAS_INFO_FMT "SDEV_BLOCK: "
2439 "handle(0x%04x)\n", ioc->name, handle));
2440 sas_device_priv_data->block = 1;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05302441 scsi_internal_device_block(sdev);
Eric Moore635374e2009-03-09 01:21:12 -06002442 }
2443 }
2444}
2445
2446/**
2447 * _scsih_block_io_to_children_attached_to_ex
2448 * @ioc: per adapter object
2449 * @sas_expander: the sas_device object
2450 *
2451 * This routine set sdev state to SDEV_BLOCK for all devices
2452 * attached to this expander. This function called when expander is
2453 * pulled.
2454 */
2455static void
2456_scsih_block_io_to_children_attached_to_ex(struct MPT2SAS_ADAPTER *ioc,
2457 struct _sas_node *sas_expander)
2458{
2459 struct _sas_port *mpt2sas_port;
2460 struct _sas_device *sas_device;
2461 struct _sas_node *expander_sibling;
2462 unsigned long flags;
2463
2464 if (!sas_expander)
2465 return;
2466
2467 list_for_each_entry(mpt2sas_port,
2468 &sas_expander->sas_port_list, port_list) {
2469 if (mpt2sas_port->remote_identify.device_type ==
2470 SAS_END_DEVICE) {
2471 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2472 sas_device =
2473 mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
2474 mpt2sas_port->remote_identify.sas_address);
2475 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2476 if (!sas_device)
2477 continue;
2478 _scsih_block_io_device(ioc, sas_device->handle);
2479 }
2480 }
2481
2482 list_for_each_entry(mpt2sas_port,
2483 &sas_expander->sas_port_list, port_list) {
2484
2485 if (mpt2sas_port->remote_identify.device_type ==
2486 MPI2_SAS_DEVICE_INFO_EDGE_EXPANDER ||
2487 mpt2sas_port->remote_identify.device_type ==
2488 MPI2_SAS_DEVICE_INFO_FANOUT_EXPANDER) {
2489
2490 spin_lock_irqsave(&ioc->sas_node_lock, flags);
2491 expander_sibling =
2492 mpt2sas_scsih_expander_find_by_sas_address(
2493 ioc, mpt2sas_port->remote_identify.sas_address);
2494 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
2495 _scsih_block_io_to_children_attached_to_ex(ioc,
2496 expander_sibling);
2497 }
2498 }
2499}
2500
2501/**
2502 * _scsih_block_io_to_children_attached_directly
2503 * @ioc: per adapter object
2504 * @event_data: topology change event data
2505 *
2506 * This routine set sdev state to SDEV_BLOCK for all devices
2507 * direct attached during device pull.
2508 */
2509static void
2510_scsih_block_io_to_children_attached_directly(struct MPT2SAS_ADAPTER *ioc,
2511 Mpi2EventDataSasTopologyChangeList_t *event_data)
2512{
2513 int i;
2514 u16 handle;
2515 u16 reason_code;
2516 u8 phy_number;
2517
2518 for (i = 0; i < event_data->NumEntries; i++) {
2519 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
2520 if (!handle)
2521 continue;
2522 phy_number = event_data->StartPhyNum + i;
2523 reason_code = event_data->PHY[i].PhyStatus &
2524 MPI2_EVENT_SAS_TOPO_RC_MASK;
2525 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING)
2526 _scsih_block_io_device(ioc, handle);
2527 }
2528}
2529
2530/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302531 * _scsih_tm_tr_send - send task management request
2532 * @ioc: per adapter object
2533 * @handle: device handle
2534 * Context: interrupt time.
2535 *
2536 * This code is to initiate the device removal handshake protocal
2537 * with controller firmware. This function will issue target reset
2538 * using high priority request queue. It will send a sas iounit
2539 * controll request (MPI2_SAS_OP_REMOVE_DEVICE) from this completion.
2540 *
2541 * This is designed to send muliple task management request at the same
2542 * time to the fifo. If the fifo is full, we will append the request,
2543 * and process it in a future completion.
2544 */
2545static void
2546_scsih_tm_tr_send(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2547{
2548 Mpi2SCSITaskManagementRequest_t *mpi_request;
2549 struct MPT2SAS_TARGET *sas_target_priv_data;
2550 u16 smid;
2551 struct _sas_device *sas_device;
2552 unsigned long flags;
2553 struct _tr_list *delayed_tr;
2554
2555 if (ioc->shost_recovery) {
2556 printk(MPT2SAS_INFO_FMT "%s: host reset in progress!\n",
2557 __func__, ioc->name);
2558 return;
2559 }
2560
2561 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2562 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302563 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2564
2565 /* skip is hidden raid component */
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302566 if (sas_device && sas_device->hidden_raid_component)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302567 return;
2568
2569 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_tr_cb_idx);
2570 if (!smid) {
2571 delayed_tr = kzalloc(sizeof(*delayed_tr), GFP_ATOMIC);
2572 if (!delayed_tr)
2573 return;
2574 INIT_LIST_HEAD(&delayed_tr->list);
2575 delayed_tr->handle = handle;
2576 delayed_tr->state = MPT2SAS_REQ_SAS_CNTRL;
2577 list_add_tail(&delayed_tr->list,
2578 &ioc->delayed_tr_list);
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302579 if (sas_device && sas_device->starget) {
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302580 dewtprintk(ioc, starget_printk(KERN_INFO,
2581 sas_device->starget, "DELAYED:tr:handle(0x%04x), "
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302582 "(open)\n", handle));
2583 } else {
2584 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
2585 "DELAYED:tr:handle(0x%04x), (open)\n",
2586 ioc->name, handle));
2587 }
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302588 return;
2589 }
2590
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302591 if (sas_device) {
2592 sas_device->state |= MPTSAS_STATE_TR_SEND;
2593 sas_device->state |= MPT2SAS_REQ_SAS_CNTRL;
2594 if (sas_device->starget && sas_device->starget->hostdata) {
2595 sas_target_priv_data = sas_device->starget->hostdata;
2596 sas_target_priv_data->tm_busy = 1;
2597 dewtprintk(ioc, starget_printk(KERN_INFO,
2598 sas_device->starget, "tr:handle(0x%04x), (open)\n",
2599 handle));
2600 }
2601 } else {
2602 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
2603 "tr:handle(0x%04x), (open)\n", ioc->name, handle));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302604 }
2605
2606 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
2607 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
2608 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
2609 mpi_request->DevHandle = cpu_to_le16(handle);
2610 mpi_request->TaskType = MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302611 mpt2sas_base_put_smid_hi_priority(ioc, smid);
2612}
2613
2614
2615
2616/**
2617 * _scsih_sas_control_complete - completion routine
2618 * @ioc: per adapter object
2619 * @smid: system request message index
2620 * @msix_index: MSIX table index supplied by the OS
2621 * @reply: reply message frame(lower 32bit addr)
2622 * Context: interrupt time.
2623 *
2624 * This is the sas iounit controll completion routine.
2625 * This code is part of the code to initiate the device removal
2626 * handshake protocal with controller firmware.
2627 *
2628 * Return 1 meaning mf should be freed from _base_interrupt
2629 * 0 means the mf is freed from this function.
2630 */
2631static u8
2632_scsih_sas_control_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid,
2633 u8 msix_index, u32 reply)
2634{
2635 unsigned long flags;
2636 u16 handle;
2637 struct _sas_device *sas_device;
2638 Mpi2SasIoUnitControlReply_t *mpi_reply =
2639 mpt2sas_base_get_reply_virt_addr(ioc, reply);
2640
2641 handle = le16_to_cpu(mpi_reply->DevHandle);
2642
2643 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2644 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302645 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2646
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302647 if (sas_device) {
2648 sas_device->state |= MPTSAS_STATE_CNTRL_COMPLETE;
2649 if (sas_device->starget)
2650 dewtprintk(ioc, starget_printk(KERN_INFO,
2651 sas_device->starget,
2652 "sc_complete:handle(0x%04x), "
2653 "ioc_status(0x%04x), loginfo(0x%08x)\n",
2654 handle, le16_to_cpu(mpi_reply->IOCStatus),
2655 le32_to_cpu(mpi_reply->IOCLogInfo)));
2656 } else {
2657 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302658 "sc_complete:handle(0x%04x), "
2659 "ioc_status(0x%04x), loginfo(0x%08x)\n",
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302660 ioc->name, handle, le16_to_cpu(mpi_reply->IOCStatus),
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302661 le32_to_cpu(mpi_reply->IOCLogInfo)));
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302662 }
2663
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302664 return 1;
2665}
2666
2667/**
2668 * _scsih_tm_tr_complete -
2669 * @ioc: per adapter object
2670 * @smid: system request message index
2671 * @msix_index: MSIX table index supplied by the OS
2672 * @reply: reply message frame(lower 32bit addr)
2673 * Context: interrupt time.
2674 *
2675 * This is the target reset completion routine.
2676 * This code is part of the code to initiate the device removal
2677 * handshake protocal with controller firmware.
2678 * It will send a sas iounit controll request (MPI2_SAS_OP_REMOVE_DEVICE)
2679 *
2680 * Return 1 meaning mf should be freed from _base_interrupt
2681 * 0 means the mf is freed from this function.
2682 */
2683static u8
2684_scsih_tm_tr_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
2685 u32 reply)
2686{
2687 unsigned long flags;
2688 u16 handle;
2689 struct _sas_device *sas_device;
2690 Mpi2SCSITaskManagementReply_t *mpi_reply =
2691 mpt2sas_base_get_reply_virt_addr(ioc, reply);
2692 Mpi2SasIoUnitControlRequest_t *mpi_request;
2693 u16 smid_sas_ctrl;
2694 struct MPT2SAS_TARGET *sas_target_priv_data;
2695 struct _tr_list *delayed_tr;
2696 u8 rc;
2697
2698 handle = le16_to_cpu(mpi_reply->DevHandle);
2699 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2700 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302701 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2702
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302703 if (sas_device) {
2704 sas_device->state |= MPTSAS_STATE_TR_COMPLETE;
2705 if (sas_device->starget) {
2706 dewtprintk(ioc, starget_printk(KERN_INFO,
2707 sas_device->starget, "tr_complete:handle(0x%04x), "
2708 "(%s) ioc_status(0x%04x), loginfo(0x%08x), "
2709 "completed(%d)\n", sas_device->handle,
2710 (sas_device->state & MPT2SAS_REQ_SAS_CNTRL) ?
2711 "open" : "active",
2712 le16_to_cpu(mpi_reply->IOCStatus),
2713 le32_to_cpu(mpi_reply->IOCLogInfo),
2714 le32_to_cpu(mpi_reply->TerminationCount)));
2715 if (sas_device->starget->hostdata) {
2716 sas_target_priv_data =
2717 sas_device->starget->hostdata;
2718 sas_target_priv_data->tm_busy = 0;
2719 }
2720 }
2721 } else {
2722 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
2723 "tr_complete:handle(0x%04x), (open) ioc_status(0x%04x), "
2724 "loginfo(0x%08x), completed(%d)\n", ioc->name,
2725 handle, le16_to_cpu(mpi_reply->IOCStatus),
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302726 le32_to_cpu(mpi_reply->IOCLogInfo),
2727 le32_to_cpu(mpi_reply->TerminationCount)));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302728 }
2729
2730 if (!list_empty(&ioc->delayed_tr_list)) {
2731 delayed_tr = list_entry(ioc->delayed_tr_list.next,
2732 struct _tr_list, list);
2733 mpt2sas_base_free_smid(ioc, smid);
2734 if (delayed_tr->state & MPT2SAS_REQ_SAS_CNTRL)
2735 _scsih_tm_tr_send(ioc, delayed_tr->handle);
2736 list_del(&delayed_tr->list);
2737 kfree(delayed_tr);
2738 rc = 0; /* tells base_interrupt not to free mf */
2739 } else
2740 rc = 1;
2741
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302742 if (sas_device && !(sas_device->state & MPT2SAS_REQ_SAS_CNTRL))
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302743 return rc;
2744
2745 if (ioc->shost_recovery) {
2746 printk(MPT2SAS_INFO_FMT "%s: host reset in progress!\n",
2747 __func__, ioc->name);
2748 return rc;
2749 }
2750
2751 smid_sas_ctrl = mpt2sas_base_get_smid(ioc, ioc->tm_sas_control_cb_idx);
2752 if (!smid_sas_ctrl) {
2753 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
2754 ioc->name, __func__);
2755 return rc;
2756 }
2757
Kashyap, Desaia28eb222009-09-23 17:22:37 +05302758 if (sas_device)
2759 sas_device->state |= MPTSAS_STATE_CNTRL_SEND;
2760
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302761 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid_sas_ctrl);
2762 memset(mpi_request, 0, sizeof(Mpi2SasIoUnitControlRequest_t));
2763 mpi_request->Function = MPI2_FUNCTION_SAS_IO_UNIT_CONTROL;
2764 mpi_request->Operation = MPI2_SAS_OP_REMOVE_DEVICE;
2765 mpi_request->DevHandle = mpi_reply->DevHandle;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302766 mpt2sas_base_put_smid_default(ioc, smid_sas_ctrl);
2767 return rc;
2768}
2769
2770/**
Eric Moore635374e2009-03-09 01:21:12 -06002771 * _scsih_check_topo_delete_events - sanity check on topo events
2772 * @ioc: per adapter object
2773 * @event_data: the event data payload
2774 *
2775 * This routine added to better handle cable breaker.
2776 *
2777 * This handles the case where driver recieves multiple expander
2778 * add and delete events in a single shot. When there is a delete event
2779 * the routine will void any pending add events waiting in the event queue.
2780 *
2781 * Return nothing.
2782 */
2783static void
2784_scsih_check_topo_delete_events(struct MPT2SAS_ADAPTER *ioc,
2785 Mpi2EventDataSasTopologyChangeList_t *event_data)
2786{
2787 struct fw_event_work *fw_event;
2788 Mpi2EventDataSasTopologyChangeList_t *local_event_data;
2789 u16 expander_handle;
2790 struct _sas_node *sas_expander;
2791 unsigned long flags;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302792 int i, reason_code;
2793 u16 handle;
2794
2795 for (i = 0 ; i < event_data->NumEntries; i++) {
2796 if (event_data->PHY[i].PhyStatus &
2797 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT)
2798 continue;
2799 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
2800 if (!handle)
2801 continue;
2802 reason_code = event_data->PHY[i].PhyStatus &
2803 MPI2_EVENT_SAS_TOPO_RC_MASK;
2804 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING)
2805 _scsih_tm_tr_send(ioc, handle);
2806 }
Eric Moore635374e2009-03-09 01:21:12 -06002807
2808 expander_handle = le16_to_cpu(event_data->ExpanderDevHandle);
2809 if (expander_handle < ioc->sas_hba.num_phys) {
2810 _scsih_block_io_to_children_attached_directly(ioc, event_data);
2811 return;
2812 }
2813
2814 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
2815 || event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING) {
2816 spin_lock_irqsave(&ioc->sas_node_lock, flags);
2817 sas_expander = mpt2sas_scsih_expander_find_by_handle(ioc,
2818 expander_handle);
2819 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
2820 _scsih_block_io_to_children_attached_to_ex(ioc, sas_expander);
2821 } else if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_RESPONDING)
2822 _scsih_block_io_to_children_attached_directly(ioc, event_data);
2823
2824 if (event_data->ExpStatus != MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING)
2825 return;
2826
2827 /* mark ignore flag for pending events */
2828 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2829 list_for_each_entry(fw_event, &ioc->fw_event_list, list) {
2830 if (fw_event->event != MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST ||
2831 fw_event->ignore)
2832 continue;
2833 local_event_data = fw_event->event_data;
2834 if (local_event_data->ExpStatus ==
2835 MPI2_EVENT_SAS_TOPO_ES_ADDED ||
2836 local_event_data->ExpStatus ==
2837 MPI2_EVENT_SAS_TOPO_ES_RESPONDING) {
2838 if (le16_to_cpu(local_event_data->ExpanderDevHandle) ==
2839 expander_handle) {
2840 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT
2841 "setting ignoring flag\n", ioc->name));
2842 fw_event->ignore = 1;
2843 }
2844 }
2845 }
2846 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2847}
2848
2849/**
Eric Moore635374e2009-03-09 01:21:12 -06002850 * _scsih_flush_running_cmds - completing outstanding commands.
2851 * @ioc: per adapter object
2852 *
2853 * The flushing out of all pending scmd commands following host reset,
2854 * where all IO is dropped to the floor.
2855 *
2856 * Return nothing.
2857 */
2858static void
2859_scsih_flush_running_cmds(struct MPT2SAS_ADAPTER *ioc)
2860{
2861 struct scsi_cmnd *scmd;
2862 u16 smid;
2863 u16 count = 0;
2864
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302865 for (smid = 1; smid <= ioc->scsiio_depth; smid++) {
2866 scmd = _scsih_scsi_lookup_get(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06002867 if (!scmd)
2868 continue;
2869 count++;
2870 mpt2sas_base_free_smid(ioc, smid);
2871 scsi_dma_unmap(scmd);
2872 scmd->result = DID_RESET << 16;
2873 scmd->scsi_done(scmd);
2874 }
2875 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "completing %d cmds\n",
2876 ioc->name, count));
2877}
2878
2879/**
Eric Moore3c621b32009-05-18 12:59:41 -06002880 * _scsih_setup_eedp - setup MPI request for EEDP transfer
2881 * @scmd: pointer to scsi command object
2882 * @mpi_request: pointer to the SCSI_IO reqest message frame
2883 *
2884 * Supporting protection 1 and 3.
2885 *
2886 * Returns nothing
2887 */
2888static void
2889_scsih_setup_eedp(struct scsi_cmnd *scmd, Mpi2SCSIIORequest_t *mpi_request)
2890{
2891 u16 eedp_flags;
2892 unsigned char prot_op = scsi_get_prot_op(scmd);
2893 unsigned char prot_type = scsi_get_prot_type(scmd);
2894
2895 if (prot_type == SCSI_PROT_DIF_TYPE0 ||
2896 prot_type == SCSI_PROT_DIF_TYPE2 ||
2897 prot_op == SCSI_PROT_NORMAL)
2898 return;
2899
2900 if (prot_op == SCSI_PROT_READ_STRIP)
2901 eedp_flags = MPI2_SCSIIO_EEDPFLAGS_CHECK_REMOVE_OP;
2902 else if (prot_op == SCSI_PROT_WRITE_INSERT)
2903 eedp_flags = MPI2_SCSIIO_EEDPFLAGS_INSERT_OP;
2904 else
2905 return;
2906
Eric Moore3c621b32009-05-18 12:59:41 -06002907 switch (prot_type) {
2908 case SCSI_PROT_DIF_TYPE1:
2909
2910 /*
2911 * enable ref/guard checking
2912 * auto increment ref tag
2913 */
Kashyap, Desai463217b2009-10-05 15:53:06 +05302914 eedp_flags |= MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG |
Eric Moore3c621b32009-05-18 12:59:41 -06002915 MPI2_SCSIIO_EEDPFLAGS_CHECK_REFTAG |
2916 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD;
2917 mpi_request->CDB.EEDP32.PrimaryReferenceTag =
2918 cpu_to_be32(scsi_get_lba(scmd));
2919
2920 break;
2921
2922 case SCSI_PROT_DIF_TYPE3:
2923
2924 /*
2925 * enable guard checking
2926 */
Kashyap, Desai463217b2009-10-05 15:53:06 +05302927 eedp_flags |= MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD;
Eric Moore3c621b32009-05-18 12:59:41 -06002928 break;
2929 }
Kashyap, Desai463217b2009-10-05 15:53:06 +05302930 mpi_request->EEDPBlockSize = cpu_to_le32(scmd->device->sector_size);
2931 mpi_request->EEDPFlags = cpu_to_le16(eedp_flags);
Eric Moore3c621b32009-05-18 12:59:41 -06002932}
2933
2934/**
2935 * _scsih_eedp_error_handling - return sense code for EEDP errors
2936 * @scmd: pointer to scsi command object
2937 * @ioc_status: ioc status
2938 *
2939 * Returns nothing
2940 */
2941static void
2942_scsih_eedp_error_handling(struct scsi_cmnd *scmd, u16 ioc_status)
2943{
2944 u8 ascq;
2945 u8 sk;
2946 u8 host_byte;
2947
2948 switch (ioc_status) {
2949 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
2950 ascq = 0x01;
2951 break;
2952 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
2953 ascq = 0x02;
2954 break;
2955 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
2956 ascq = 0x03;
2957 break;
2958 default:
2959 ascq = 0x00;
2960 break;
2961 }
2962
2963 if (scmd->sc_data_direction == DMA_TO_DEVICE) {
2964 sk = ILLEGAL_REQUEST;
2965 host_byte = DID_ABORT;
2966 } else {
2967 sk = ABORTED_COMMAND;
2968 host_byte = DID_OK;
2969 }
2970
2971 scsi_build_sense_buffer(0, scmd->sense_buffer, sk, 0x10, ascq);
2972 scmd->result = DRIVER_SENSE << 24 | (host_byte << 16) |
2973 SAM_STAT_CHECK_CONDITION;
2974}
2975
2976/**
Eric Moored5d135b2009-05-18 13:02:08 -06002977 * _scsih_qcmd - main scsi request entry point
Eric Moore635374e2009-03-09 01:21:12 -06002978 * @scmd: pointer to scsi command object
2979 * @done: function pointer to be invoked on completion
2980 *
2981 * The callback index is set inside `ioc->scsi_io_cb_idx`.
2982 *
2983 * Returns 0 on success. If there's a failure, return either:
2984 * SCSI_MLQUEUE_DEVICE_BUSY if the device queue is full, or
2985 * SCSI_MLQUEUE_HOST_BUSY if the entire host queue is full
2986 */
2987static int
Eric Moored5d135b2009-05-18 13:02:08 -06002988_scsih_qcmd(struct scsi_cmnd *scmd, void (*done)(struct scsi_cmnd *))
Eric Moore635374e2009-03-09 01:21:12 -06002989{
2990 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2991 struct MPT2SAS_DEVICE *sas_device_priv_data;
2992 struct MPT2SAS_TARGET *sas_target_priv_data;
2993 Mpi2SCSIIORequest_t *mpi_request;
2994 u32 mpi_control;
2995 u16 smid;
Eric Moore635374e2009-03-09 01:21:12 -06002996
2997 scmd->scsi_done = done;
2998 sas_device_priv_data = scmd->device->hostdata;
2999 if (!sas_device_priv_data) {
3000 scmd->result = DID_NO_CONNECT << 16;
3001 scmd->scsi_done(scmd);
3002 return 0;
3003 }
3004
3005 sas_target_priv_data = sas_device_priv_data->sas_target;
3006 if (!sas_target_priv_data || sas_target_priv_data->handle ==
3007 MPT2SAS_INVALID_DEVICE_HANDLE || sas_target_priv_data->deleted) {
3008 scmd->result = DID_NO_CONNECT << 16;
3009 scmd->scsi_done(scmd);
3010 return 0;
3011 }
3012
3013 /* see if we are busy with task managment stuff */
Kashyap, Desaie4e7c7e2009-09-23 17:33:14 +05303014 if (sas_device_priv_data->block || sas_target_priv_data->tm_busy)
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05303015 return SCSI_MLQUEUE_DEVICE_BUSY;
3016 else if (ioc->shost_recovery || ioc->ioc_link_reset_in_progress)
Eric Moore635374e2009-03-09 01:21:12 -06003017 return SCSI_MLQUEUE_HOST_BUSY;
Eric Moore635374e2009-03-09 01:21:12 -06003018
3019 if (scmd->sc_data_direction == DMA_FROM_DEVICE)
3020 mpi_control = MPI2_SCSIIO_CONTROL_READ;
3021 else if (scmd->sc_data_direction == DMA_TO_DEVICE)
3022 mpi_control = MPI2_SCSIIO_CONTROL_WRITE;
3023 else
3024 mpi_control = MPI2_SCSIIO_CONTROL_NODATATRANSFER;
3025
3026 /* set tags */
3027 if (!(sas_device_priv_data->flags & MPT_DEVICE_FLAGS_INIT)) {
3028 if (scmd->device->tagged_supported) {
3029 if (scmd->device->ordered_tags)
3030 mpi_control |= MPI2_SCSIIO_CONTROL_ORDEREDQ;
3031 else
3032 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
3033 } else
3034/* MPI Revision I (UNIT = 0xA) - removed MPI2_SCSIIO_CONTROL_UNTAGGED */
3035/* mpi_control |= MPI2_SCSIIO_CONTROL_UNTAGGED;
3036 */
3037 mpi_control |= (0x500);
3038
3039 } else
3040 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
Kashyap, Desai3ed21522010-02-17 16:08:36 +05303041 /* Make sure Device is not raid volume */
3042 if (!_scsih_is_raid(&scmd->device->sdev_gendev) &&
3043 sas_is_tlr_enabled(scmd->device))
Eric Moore635374e2009-03-09 01:21:12 -06003044 mpi_control |= MPI2_SCSIIO_CONTROL_TLR_ON;
3045
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303046 smid = mpt2sas_base_get_smid_scsiio(ioc, ioc->scsi_io_cb_idx, scmd);
Eric Moore635374e2009-03-09 01:21:12 -06003047 if (!smid) {
3048 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3049 ioc->name, __func__);
3050 goto out;
3051 }
3052 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3053 memset(mpi_request, 0, sizeof(Mpi2SCSIIORequest_t));
Eric Moore3c621b32009-05-18 12:59:41 -06003054 _scsih_setup_eedp(scmd, mpi_request);
Eric Moore635374e2009-03-09 01:21:12 -06003055 mpi_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
3056 if (sas_device_priv_data->sas_target->flags &
3057 MPT_TARGET_FLAGS_RAID_COMPONENT)
3058 mpi_request->Function = MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH;
3059 else
3060 mpi_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
3061 mpi_request->DevHandle =
3062 cpu_to_le16(sas_device_priv_data->sas_target->handle);
3063 mpi_request->DataLength = cpu_to_le32(scsi_bufflen(scmd));
3064 mpi_request->Control = cpu_to_le32(mpi_control);
3065 mpi_request->IoFlags = cpu_to_le16(scmd->cmd_len);
3066 mpi_request->MsgFlags = MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR;
3067 mpi_request->SenseBufferLength = SCSI_SENSE_BUFFERSIZE;
3068 mpi_request->SenseBufferLowAddress =
Kashyap, Desaiec9472c2009-09-23 17:34:13 +05303069 mpt2sas_base_get_sense_buffer_dma(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06003070 mpi_request->SGLOffset0 = offsetof(Mpi2SCSIIORequest_t, SGL) / 4;
3071 mpi_request->SGLFlags = cpu_to_le16(MPI2_SCSIIO_SGLFLAGS_TYPE_MPI +
3072 MPI2_SCSIIO_SGLFLAGS_SYSTEM_ADDR);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303073 mpi_request->VF_ID = 0; /* TODO */
3074 mpi_request->VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003075 int_to_scsilun(sas_device_priv_data->lun, (struct scsi_lun *)
3076 mpi_request->LUN);
3077 memcpy(mpi_request->CDB.CDB32, scmd->cmnd, scmd->cmd_len);
3078
3079 if (!mpi_request->DataLength) {
3080 mpt2sas_base_build_zero_len_sge(ioc, &mpi_request->SGL);
3081 } else {
3082 if (_scsih_build_scatter_gather(ioc, scmd, smid)) {
3083 mpt2sas_base_free_smid(ioc, smid);
3084 goto out;
3085 }
3086 }
3087
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303088 mpt2sas_base_put_smid_scsi_io(ioc, smid,
Eric Moore635374e2009-03-09 01:21:12 -06003089 sas_device_priv_data->sas_target->handle);
3090 return 0;
3091
3092 out:
3093 return SCSI_MLQUEUE_HOST_BUSY;
3094}
3095
3096/**
3097 * _scsih_normalize_sense - normalize descriptor and fixed format sense data
3098 * @sense_buffer: sense data returned by target
3099 * @data: normalized skey/asc/ascq
3100 *
3101 * Return nothing.
3102 */
3103static void
3104_scsih_normalize_sense(char *sense_buffer, struct sense_info *data)
3105{
3106 if ((sense_buffer[0] & 0x7F) >= 0x72) {
3107 /* descriptor format */
3108 data->skey = sense_buffer[1] & 0x0F;
3109 data->asc = sense_buffer[2];
3110 data->ascq = sense_buffer[3];
3111 } else {
3112 /* fixed format */
3113 data->skey = sense_buffer[2] & 0x0F;
3114 data->asc = sense_buffer[12];
3115 data->ascq = sense_buffer[13];
3116 }
3117}
3118
3119#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
3120/**
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003121 * _scsih_scsi_ioc_info - translated non-successfull SCSI_IO request
Eric Moore635374e2009-03-09 01:21:12 -06003122 * @ioc: per adapter object
3123 * @scmd: pointer to scsi command object
3124 * @mpi_reply: reply mf payload returned from firmware
3125 *
3126 * scsi_status - SCSI Status code returned from target device
3127 * scsi_state - state info associated with SCSI_IO determined by ioc
3128 * ioc_status - ioc supplied status info
3129 *
3130 * Return nothing.
3131 */
3132static void
3133_scsih_scsi_ioc_info(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd *scmd,
3134 Mpi2SCSIIOReply_t *mpi_reply, u16 smid)
3135{
3136 u32 response_info;
3137 u8 *response_bytes;
3138 u16 ioc_status = le16_to_cpu(mpi_reply->IOCStatus) &
3139 MPI2_IOCSTATUS_MASK;
3140 u8 scsi_state = mpi_reply->SCSIState;
3141 u8 scsi_status = mpi_reply->SCSIStatus;
3142 char *desc_ioc_state = NULL;
3143 char *desc_scsi_status = NULL;
3144 char *desc_scsi_state = ioc->tmp_string;
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +05303145 u32 log_info = le32_to_cpu(mpi_reply->IOCLogInfo);
3146
3147 if (log_info == 0x31170000)
3148 return;
Eric Moore635374e2009-03-09 01:21:12 -06003149
3150 switch (ioc_status) {
3151 case MPI2_IOCSTATUS_SUCCESS:
3152 desc_ioc_state = "success";
3153 break;
3154 case MPI2_IOCSTATUS_INVALID_FUNCTION:
3155 desc_ioc_state = "invalid function";
3156 break;
3157 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
3158 desc_ioc_state = "scsi recovered error";
3159 break;
3160 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE:
3161 desc_ioc_state = "scsi invalid dev handle";
3162 break;
3163 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
3164 desc_ioc_state = "scsi device not there";
3165 break;
3166 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
3167 desc_ioc_state = "scsi data overrun";
3168 break;
3169 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
3170 desc_ioc_state = "scsi data underrun";
3171 break;
3172 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
3173 desc_ioc_state = "scsi io data error";
3174 break;
3175 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
3176 desc_ioc_state = "scsi protocol error";
3177 break;
3178 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
3179 desc_ioc_state = "scsi task terminated";
3180 break;
3181 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
3182 desc_ioc_state = "scsi residual mismatch";
3183 break;
3184 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
3185 desc_ioc_state = "scsi task mgmt failed";
3186 break;
3187 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
3188 desc_ioc_state = "scsi ioc terminated";
3189 break;
3190 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
3191 desc_ioc_state = "scsi ext terminated";
3192 break;
Eric Moore3c621b32009-05-18 12:59:41 -06003193 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
3194 desc_ioc_state = "eedp guard error";
3195 break;
3196 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
3197 desc_ioc_state = "eedp ref tag error";
3198 break;
3199 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
3200 desc_ioc_state = "eedp app tag error";
3201 break;
Eric Moore635374e2009-03-09 01:21:12 -06003202 default:
3203 desc_ioc_state = "unknown";
3204 break;
3205 }
3206
3207 switch (scsi_status) {
3208 case MPI2_SCSI_STATUS_GOOD:
3209 desc_scsi_status = "good";
3210 break;
3211 case MPI2_SCSI_STATUS_CHECK_CONDITION:
3212 desc_scsi_status = "check condition";
3213 break;
3214 case MPI2_SCSI_STATUS_CONDITION_MET:
3215 desc_scsi_status = "condition met";
3216 break;
3217 case MPI2_SCSI_STATUS_BUSY:
3218 desc_scsi_status = "busy";
3219 break;
3220 case MPI2_SCSI_STATUS_INTERMEDIATE:
3221 desc_scsi_status = "intermediate";
3222 break;
3223 case MPI2_SCSI_STATUS_INTERMEDIATE_CONDMET:
3224 desc_scsi_status = "intermediate condmet";
3225 break;
3226 case MPI2_SCSI_STATUS_RESERVATION_CONFLICT:
3227 desc_scsi_status = "reservation conflict";
3228 break;
3229 case MPI2_SCSI_STATUS_COMMAND_TERMINATED:
3230 desc_scsi_status = "command terminated";
3231 break;
3232 case MPI2_SCSI_STATUS_TASK_SET_FULL:
3233 desc_scsi_status = "task set full";
3234 break;
3235 case MPI2_SCSI_STATUS_ACA_ACTIVE:
3236 desc_scsi_status = "aca active";
3237 break;
3238 case MPI2_SCSI_STATUS_TASK_ABORTED:
3239 desc_scsi_status = "task aborted";
3240 break;
3241 default:
3242 desc_scsi_status = "unknown";
3243 break;
3244 }
3245
3246 desc_scsi_state[0] = '\0';
3247 if (!scsi_state)
3248 desc_scsi_state = " ";
3249 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID)
3250 strcat(desc_scsi_state, "response info ");
3251 if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
3252 strcat(desc_scsi_state, "state terminated ");
3253 if (scsi_state & MPI2_SCSI_STATE_NO_SCSI_STATUS)
3254 strcat(desc_scsi_state, "no status ");
3255 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_FAILED)
3256 strcat(desc_scsi_state, "autosense failed ");
3257 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID)
3258 strcat(desc_scsi_state, "autosense valid ");
3259
3260 scsi_print_command(scmd);
3261 printk(MPT2SAS_WARN_FMT "\tdev handle(0x%04x), "
3262 "ioc_status(%s)(0x%04x), smid(%d)\n", ioc->name,
3263 le16_to_cpu(mpi_reply->DevHandle), desc_ioc_state,
3264 ioc_status, smid);
3265 printk(MPT2SAS_WARN_FMT "\trequest_len(%d), underflow(%d), "
3266 "resid(%d)\n", ioc->name, scsi_bufflen(scmd), scmd->underflow,
3267 scsi_get_resid(scmd));
3268 printk(MPT2SAS_WARN_FMT "\ttag(%d), transfer_count(%d), "
3269 "sc->result(0x%08x)\n", ioc->name, le16_to_cpu(mpi_reply->TaskTag),
3270 le32_to_cpu(mpi_reply->TransferCount), scmd->result);
3271 printk(MPT2SAS_WARN_FMT "\tscsi_status(%s)(0x%02x), "
3272 "scsi_state(%s)(0x%02x)\n", ioc->name, desc_scsi_status,
3273 scsi_status, desc_scsi_state, scsi_state);
3274
3275 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID) {
3276 struct sense_info data;
3277 _scsih_normalize_sense(scmd->sense_buffer, &data);
3278 printk(MPT2SAS_WARN_FMT "\t[sense_key,asc,ascq]: "
3279 "[0x%02x,0x%02x,0x%02x]\n", ioc->name, data.skey,
3280 data.asc, data.ascq);
3281 }
3282
3283 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID) {
3284 response_info = le32_to_cpu(mpi_reply->ResponseInfo);
3285 response_bytes = (u8 *)&response_info;
Kashyap, Desai9982f592009-09-23 17:23:07 +05303286 _scsih_response_code(ioc, response_bytes[0]);
Eric Moore635374e2009-03-09 01:21:12 -06003287 }
3288}
3289#endif
3290
3291/**
3292 * _scsih_smart_predicted_fault - illuminate Fault LED
3293 * @ioc: per adapter object
3294 * @handle: device handle
3295 *
3296 * Return nothing.
3297 */
3298static void
3299_scsih_smart_predicted_fault(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3300{
3301 Mpi2SepReply_t mpi_reply;
3302 Mpi2SepRequest_t mpi_request;
3303 struct scsi_target *starget;
3304 struct MPT2SAS_TARGET *sas_target_priv_data;
3305 Mpi2EventNotificationReply_t *event_reply;
3306 Mpi2EventDataSasDeviceStatusChange_t *event_data;
3307 struct _sas_device *sas_device;
3308 ssize_t sz;
3309 unsigned long flags;
3310
3311 /* only handle non-raid devices */
3312 spin_lock_irqsave(&ioc->sas_device_lock, flags);
3313 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
3314 if (!sas_device) {
3315 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
3316 return;
3317 }
3318 starget = sas_device->starget;
3319 sas_target_priv_data = starget->hostdata;
3320
3321 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT) ||
3322 ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME))) {
3323 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
3324 return;
3325 }
3326 starget_printk(KERN_WARNING, starget, "predicted fault\n");
3327 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
3328
3329 if (ioc->pdev->subsystem_vendor == PCI_VENDOR_ID_IBM) {
3330 memset(&mpi_request, 0, sizeof(Mpi2SepRequest_t));
3331 mpi_request.Function = MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR;
3332 mpi_request.Action = MPI2_SEP_REQ_ACTION_WRITE_STATUS;
3333 mpi_request.SlotStatus =
3334 MPI2_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT;
3335 mpi_request.DevHandle = cpu_to_le16(handle);
3336 mpi_request.Flags = MPI2_SEP_REQ_FLAGS_DEVHANDLE_ADDRESS;
3337 if ((mpt2sas_base_scsi_enclosure_processor(ioc, &mpi_reply,
3338 &mpi_request)) != 0) {
3339 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3340 ioc->name, __FILE__, __LINE__, __func__);
3341 return;
3342 }
3343
3344 if (mpi_reply.IOCStatus || mpi_reply.IOCLogInfo) {
3345 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3346 "enclosure_processor: ioc_status (0x%04x), "
3347 "loginfo(0x%08x)\n", ioc->name,
3348 le16_to_cpu(mpi_reply.IOCStatus),
3349 le32_to_cpu(mpi_reply.IOCLogInfo)));
3350 return;
3351 }
3352 }
3353
3354 /* insert into event log */
3355 sz = offsetof(Mpi2EventNotificationReply_t, EventData) +
3356 sizeof(Mpi2EventDataSasDeviceStatusChange_t);
3357 event_reply = kzalloc(sz, GFP_KERNEL);
3358 if (!event_reply) {
3359 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3360 ioc->name, __FILE__, __LINE__, __func__);
3361 return;
3362 }
3363
3364 event_reply->Function = MPI2_FUNCTION_EVENT_NOTIFICATION;
3365 event_reply->Event =
3366 cpu_to_le16(MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE);
3367 event_reply->MsgLength = sz/4;
3368 event_reply->EventDataLength =
3369 cpu_to_le16(sizeof(Mpi2EventDataSasDeviceStatusChange_t)/4);
3370 event_data = (Mpi2EventDataSasDeviceStatusChange_t *)
3371 event_reply->EventData;
3372 event_data->ReasonCode = MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA;
3373 event_data->ASC = 0x5D;
3374 event_data->DevHandle = cpu_to_le16(handle);
3375 event_data->SASAddress = cpu_to_le64(sas_target_priv_data->sas_address);
3376 mpt2sas_ctl_add_to_event_log(ioc, event_reply);
3377 kfree(event_reply);
3378}
3379
3380/**
Eric Moored5d135b2009-05-18 13:02:08 -06003381 * _scsih_io_done - scsi request callback
Eric Moore635374e2009-03-09 01:21:12 -06003382 * @ioc: per adapter object
3383 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303384 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06003385 * @reply: reply message frame(lower 32bit addr)
3386 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303387 * Callback handler when using _scsih_qcmd.
Eric Moore635374e2009-03-09 01:21:12 -06003388 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303389 * Return 1 meaning mf should be freed from _base_interrupt
3390 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06003391 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303392static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303393_scsih_io_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06003394{
3395 Mpi2SCSIIORequest_t *mpi_request;
3396 Mpi2SCSIIOReply_t *mpi_reply;
3397 struct scsi_cmnd *scmd;
3398 u16 ioc_status;
3399 u32 xfer_cnt;
3400 u8 scsi_state;
3401 u8 scsi_status;
3402 u32 log_info;
3403 struct MPT2SAS_DEVICE *sas_device_priv_data;
Kashyap, Desai9982f592009-09-23 17:23:07 +05303404 u32 response_code = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003405
3406 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303407 scmd = _scsih_scsi_lookup_get(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06003408 if (scmd == NULL)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303409 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06003410
3411 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3412
3413 if (mpi_reply == NULL) {
3414 scmd->result = DID_OK << 16;
3415 goto out;
3416 }
3417
3418 sas_device_priv_data = scmd->device->hostdata;
3419 if (!sas_device_priv_data || !sas_device_priv_data->sas_target ||
3420 sas_device_priv_data->sas_target->deleted) {
3421 scmd->result = DID_NO_CONNECT << 16;
3422 goto out;
3423 }
3424
3425 /* turning off TLR */
Kashyap, Desai9982f592009-09-23 17:23:07 +05303426 scsi_state = mpi_reply->SCSIState;
3427 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID)
3428 response_code =
3429 le32_to_cpu(mpi_reply->ResponseInfo) & 0xFF;
Eric Moore635374e2009-03-09 01:21:12 -06003430 if (!sas_device_priv_data->tlr_snoop_check) {
3431 sas_device_priv_data->tlr_snoop_check++;
Kashyap, Desai3ed21522010-02-17 16:08:36 +05303432 if (!_scsih_is_raid(&scmd->device->sdev_gendev) &&
3433 sas_is_tlr_enabled(scmd->device) &&
Kashyap, Desai84f0b042009-12-16 18:56:28 +05303434 response_code == MPI2_SCSITASKMGMT_RSP_INVALID_FRAME) {
3435 sas_disable_tlr(scmd->device);
3436 sdev_printk(KERN_INFO, scmd->device, "TLR disabled\n");
3437 }
Eric Moore635374e2009-03-09 01:21:12 -06003438 }
3439
3440 xfer_cnt = le32_to_cpu(mpi_reply->TransferCount);
3441 scsi_set_resid(scmd, scsi_bufflen(scmd) - xfer_cnt);
3442 ioc_status = le16_to_cpu(mpi_reply->IOCStatus);
3443 if (ioc_status & MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE)
3444 log_info = le32_to_cpu(mpi_reply->IOCLogInfo);
3445 else
3446 log_info = 0;
3447 ioc_status &= MPI2_IOCSTATUS_MASK;
Eric Moore635374e2009-03-09 01:21:12 -06003448 scsi_status = mpi_reply->SCSIStatus;
3449
3450 if (ioc_status == MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN && xfer_cnt == 0 &&
3451 (scsi_status == MPI2_SCSI_STATUS_BUSY ||
3452 scsi_status == MPI2_SCSI_STATUS_RESERVATION_CONFLICT ||
3453 scsi_status == MPI2_SCSI_STATUS_TASK_SET_FULL)) {
3454 ioc_status = MPI2_IOCSTATUS_SUCCESS;
3455 }
3456
3457 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID) {
3458 struct sense_info data;
3459 const void *sense_data = mpt2sas_base_get_sense_buffer(ioc,
3460 smid);
Eric Moore0d04df92009-04-21 15:38:43 -06003461 u32 sz = min_t(u32, SCSI_SENSE_BUFFERSIZE,
Eric Moore635374e2009-03-09 01:21:12 -06003462 le32_to_cpu(mpi_reply->SenseCount));
Eric Moore0d04df92009-04-21 15:38:43 -06003463 memcpy(scmd->sense_buffer, sense_data, sz);
Eric Moore635374e2009-03-09 01:21:12 -06003464 _scsih_normalize_sense(scmd->sense_buffer, &data);
3465 /* failure prediction threshold exceeded */
3466 if (data.asc == 0x5D)
3467 _scsih_smart_predicted_fault(ioc,
3468 le16_to_cpu(mpi_reply->DevHandle));
3469 }
3470
3471 switch (ioc_status) {
3472 case MPI2_IOCSTATUS_BUSY:
3473 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES:
3474 scmd->result = SAM_STAT_BUSY;
3475 break;
3476
3477 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
3478 scmd->result = DID_NO_CONNECT << 16;
3479 break;
3480
3481 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
3482 if (sas_device_priv_data->block) {
Kashyap, Desaie4e7c7e2009-09-23 17:33:14 +05303483 scmd->result = DID_TRANSPORT_DISRUPTED << 16;
3484 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06003485 }
Eric Moore635374e2009-03-09 01:21:12 -06003486 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
3487 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
3488 scmd->result = DID_RESET << 16;
3489 break;
3490
3491 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
3492 if ((xfer_cnt == 0) || (scmd->underflow > xfer_cnt))
3493 scmd->result = DID_SOFT_ERROR << 16;
3494 else
3495 scmd->result = (DID_OK << 16) | scsi_status;
3496 break;
3497
3498 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
3499 scmd->result = (DID_OK << 16) | scsi_status;
3500
3501 if ((scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID))
3502 break;
3503
3504 if (xfer_cnt < scmd->underflow) {
3505 if (scsi_status == SAM_STAT_BUSY)
3506 scmd->result = SAM_STAT_BUSY;
3507 else
3508 scmd->result = DID_SOFT_ERROR << 16;
3509 } else if (scsi_state & (MPI2_SCSI_STATE_AUTOSENSE_FAILED |
3510 MPI2_SCSI_STATE_NO_SCSI_STATUS))
3511 scmd->result = DID_SOFT_ERROR << 16;
3512 else if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
3513 scmd->result = DID_RESET << 16;
3514 else if (!xfer_cnt && scmd->cmnd[0] == REPORT_LUNS) {
3515 mpi_reply->SCSIState = MPI2_SCSI_STATE_AUTOSENSE_VALID;
3516 mpi_reply->SCSIStatus = SAM_STAT_CHECK_CONDITION;
3517 scmd->result = (DRIVER_SENSE << 24) |
3518 SAM_STAT_CHECK_CONDITION;
3519 scmd->sense_buffer[0] = 0x70;
3520 scmd->sense_buffer[2] = ILLEGAL_REQUEST;
3521 scmd->sense_buffer[12] = 0x20;
3522 scmd->sense_buffer[13] = 0;
3523 }
3524 break;
3525
3526 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
3527 scsi_set_resid(scmd, 0);
3528 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
3529 case MPI2_IOCSTATUS_SUCCESS:
3530 scmd->result = (DID_OK << 16) | scsi_status;
Kashyap, Desai9982f592009-09-23 17:23:07 +05303531 if (response_code ==
3532 MPI2_SCSITASKMGMT_RSP_INVALID_FRAME ||
3533 (scsi_state & (MPI2_SCSI_STATE_AUTOSENSE_FAILED |
3534 MPI2_SCSI_STATE_NO_SCSI_STATUS)))
Eric Moore635374e2009-03-09 01:21:12 -06003535 scmd->result = DID_SOFT_ERROR << 16;
3536 else if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
3537 scmd->result = DID_RESET << 16;
3538 break;
3539
Eric Moore3c621b32009-05-18 12:59:41 -06003540 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
3541 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
3542 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
3543 _scsih_eedp_error_handling(scmd, ioc_status);
3544 break;
Eric Moore635374e2009-03-09 01:21:12 -06003545 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
3546 case MPI2_IOCSTATUS_INVALID_FUNCTION:
3547 case MPI2_IOCSTATUS_INVALID_SGL:
3548 case MPI2_IOCSTATUS_INTERNAL_ERROR:
3549 case MPI2_IOCSTATUS_INVALID_FIELD:
3550 case MPI2_IOCSTATUS_INVALID_STATE:
3551 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
3552 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
3553 default:
3554 scmd->result = DID_SOFT_ERROR << 16;
3555 break;
3556
3557 }
3558
3559#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
3560 if (scmd->result && (ioc->logging_level & MPT_DEBUG_REPLY))
3561 _scsih_scsi_ioc_info(ioc , scmd, mpi_reply, smid);
3562#endif
3563
3564 out:
3565 scsi_dma_unmap(scmd);
3566 scmd->scsi_done(scmd);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303567 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06003568}
3569
3570/**
Eric Moore635374e2009-03-09 01:21:12 -06003571 * _scsih_sas_host_refresh - refreshing sas host object contents
3572 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06003573 * Context: user
3574 *
3575 * During port enable, fw will send topology events for every device. Its
3576 * possible that the handles may change from the previous setting, so this
3577 * code keeping handles updating if changed.
3578 *
3579 * Return nothing.
3580 */
3581static void
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303582_scsih_sas_host_refresh(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06003583{
3584 u16 sz;
3585 u16 ioc_status;
3586 int i;
3587 Mpi2ConfigReply_t mpi_reply;
3588 Mpi2SasIOUnitPage0_t *sas_iounit_pg0 = NULL;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303589 u16 attached_handle;
Eric Moore635374e2009-03-09 01:21:12 -06003590
3591 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT
3592 "updating handles for sas_host(0x%016llx)\n",
3593 ioc->name, (unsigned long long)ioc->sas_hba.sas_address));
3594
3595 sz = offsetof(Mpi2SasIOUnitPage0_t, PhyData) + (ioc->sas_hba.num_phys
3596 * sizeof(Mpi2SasIOUnit0PhyData_t));
3597 sas_iounit_pg0 = kzalloc(sz, GFP_KERNEL);
3598 if (!sas_iounit_pg0) {
3599 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3600 ioc->name, __FILE__, __LINE__, __func__);
3601 return;
3602 }
Eric Moore635374e2009-03-09 01:21:12 -06003603
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303604 if ((mpt2sas_config_get_sas_iounit_pg0(ioc, &mpi_reply,
3605 sas_iounit_pg0, sz)) != 0)
3606 goto out;
3607 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
3608 if (ioc_status != MPI2_IOCSTATUS_SUCCESS)
3609 goto out;
3610 for (i = 0; i < ioc->sas_hba.num_phys ; i++) {
3611 if (i == 0)
3612 ioc->sas_hba.handle = le16_to_cpu(sas_iounit_pg0->
3613 PhyData[0].ControllerDevHandle);
3614 ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle;
3615 attached_handle = le16_to_cpu(sas_iounit_pg0->PhyData[i].
3616 AttachedDevHandle);
3617 mpt2sas_transport_update_links(ioc, ioc->sas_hba.sas_address,
3618 attached_handle, i, sas_iounit_pg0->PhyData[i].
3619 NegotiatedLinkRate >> 4);
3620 }
Eric Moore635374e2009-03-09 01:21:12 -06003621 out:
3622 kfree(sas_iounit_pg0);
3623}
3624
3625/**
3626 * _scsih_sas_host_add - create sas host object
3627 * @ioc: per adapter object
3628 *
3629 * Creating host side data object, stored in ioc->sas_hba
3630 *
3631 * Return nothing.
3632 */
3633static void
3634_scsih_sas_host_add(struct MPT2SAS_ADAPTER *ioc)
3635{
3636 int i;
3637 Mpi2ConfigReply_t mpi_reply;
3638 Mpi2SasIOUnitPage0_t *sas_iounit_pg0 = NULL;
3639 Mpi2SasIOUnitPage1_t *sas_iounit_pg1 = NULL;
3640 Mpi2SasPhyPage0_t phy_pg0;
3641 Mpi2SasDevicePage0_t sas_device_pg0;
3642 Mpi2SasEnclosurePage0_t enclosure_pg0;
3643 u16 ioc_status;
3644 u16 sz;
3645 u16 device_missing_delay;
3646
3647 mpt2sas_config_get_number_hba_phys(ioc, &ioc->sas_hba.num_phys);
3648 if (!ioc->sas_hba.num_phys) {
3649 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3650 ioc->name, __FILE__, __LINE__, __func__);
3651 return;
3652 }
3653
3654 /* sas_iounit page 0 */
3655 sz = offsetof(Mpi2SasIOUnitPage0_t, PhyData) + (ioc->sas_hba.num_phys *
3656 sizeof(Mpi2SasIOUnit0PhyData_t));
3657 sas_iounit_pg0 = kzalloc(sz, GFP_KERNEL);
3658 if (!sas_iounit_pg0) {
3659 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3660 ioc->name, __FILE__, __LINE__, __func__);
3661 return;
3662 }
3663 if ((mpt2sas_config_get_sas_iounit_pg0(ioc, &mpi_reply,
3664 sas_iounit_pg0, sz))) {
3665 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3666 ioc->name, __FILE__, __LINE__, __func__);
3667 goto out;
3668 }
3669 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3670 MPI2_IOCSTATUS_MASK;
3671 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3672 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3673 ioc->name, __FILE__, __LINE__, __func__);
3674 goto out;
3675 }
3676
3677 /* sas_iounit page 1 */
3678 sz = offsetof(Mpi2SasIOUnitPage1_t, PhyData) + (ioc->sas_hba.num_phys *
3679 sizeof(Mpi2SasIOUnit1PhyData_t));
3680 sas_iounit_pg1 = kzalloc(sz, GFP_KERNEL);
3681 if (!sas_iounit_pg1) {
3682 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3683 ioc->name, __FILE__, __LINE__, __func__);
3684 goto out;
3685 }
3686 if ((mpt2sas_config_get_sas_iounit_pg1(ioc, &mpi_reply,
3687 sas_iounit_pg1, sz))) {
3688 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3689 ioc->name, __FILE__, __LINE__, __func__);
3690 goto out;
3691 }
3692 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3693 MPI2_IOCSTATUS_MASK;
3694 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3695 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3696 ioc->name, __FILE__, __LINE__, __func__);
3697 goto out;
3698 }
3699
3700 ioc->io_missing_delay =
3701 le16_to_cpu(sas_iounit_pg1->IODeviceMissingDelay);
3702 device_missing_delay =
3703 le16_to_cpu(sas_iounit_pg1->ReportDeviceMissingDelay);
3704 if (device_missing_delay & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
3705 ioc->device_missing_delay = (device_missing_delay &
3706 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
3707 else
3708 ioc->device_missing_delay = device_missing_delay &
3709 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
3710
3711 ioc->sas_hba.parent_dev = &ioc->shost->shost_gendev;
3712 ioc->sas_hba.phy = kcalloc(ioc->sas_hba.num_phys,
3713 sizeof(struct _sas_phy), GFP_KERNEL);
3714 if (!ioc->sas_hba.phy) {
3715 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3716 ioc->name, __FILE__, __LINE__, __func__);
3717 goto out;
3718 }
3719 for (i = 0; i < ioc->sas_hba.num_phys ; i++) {
3720 if ((mpt2sas_config_get_phy_pg0(ioc, &mpi_reply, &phy_pg0,
3721 i))) {
3722 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3723 ioc->name, __FILE__, __LINE__, __func__);
3724 goto out;
3725 }
3726 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3727 MPI2_IOCSTATUS_MASK;
3728 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3729 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3730 ioc->name, __FILE__, __LINE__, __func__);
3731 goto out;
3732 }
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303733
3734 if (i == 0)
3735 ioc->sas_hba.handle = le16_to_cpu(sas_iounit_pg0->
3736 PhyData[0].ControllerDevHandle);
3737 ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle;
Eric Moore635374e2009-03-09 01:21:12 -06003738 ioc->sas_hba.phy[i].phy_id = i;
3739 mpt2sas_transport_add_host_phy(ioc, &ioc->sas_hba.phy[i],
3740 phy_pg0, ioc->sas_hba.parent_dev);
3741 }
3742 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303743 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, ioc->sas_hba.handle))) {
Eric Moore635374e2009-03-09 01:21:12 -06003744 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3745 ioc->name, __FILE__, __LINE__, __func__);
3746 goto out;
3747 }
Eric Moore635374e2009-03-09 01:21:12 -06003748 ioc->sas_hba.enclosure_handle =
3749 le16_to_cpu(sas_device_pg0.EnclosureHandle);
3750 ioc->sas_hba.sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
3751 printk(MPT2SAS_INFO_FMT "host_add: handle(0x%04x), "
3752 "sas_addr(0x%016llx), phys(%d)\n", ioc->name, ioc->sas_hba.handle,
3753 (unsigned long long) ioc->sas_hba.sas_address,
3754 ioc->sas_hba.num_phys) ;
3755
3756 if (ioc->sas_hba.enclosure_handle) {
3757 if (!(mpt2sas_config_get_enclosure_pg0(ioc, &mpi_reply,
3758 &enclosure_pg0,
3759 MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
3760 ioc->sas_hba.enclosure_handle))) {
3761 ioc->sas_hba.enclosure_logical_id =
3762 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
3763 }
3764 }
3765
3766 out:
3767 kfree(sas_iounit_pg1);
3768 kfree(sas_iounit_pg0);
3769}
3770
3771/**
3772 * _scsih_expander_add - creating expander object
3773 * @ioc: per adapter object
3774 * @handle: expander handle
3775 *
3776 * Creating expander object, stored in ioc->sas_expander_list.
3777 *
3778 * Return 0 for success, else error.
3779 */
3780static int
3781_scsih_expander_add(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3782{
3783 struct _sas_node *sas_expander;
3784 Mpi2ConfigReply_t mpi_reply;
3785 Mpi2ExpanderPage0_t expander_pg0;
3786 Mpi2ExpanderPage1_t expander_pg1;
3787 Mpi2SasEnclosurePage0_t enclosure_pg0;
3788 u32 ioc_status;
3789 u16 parent_handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303790 __le64 sas_address, sas_address_parent = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003791 int i;
3792 unsigned long flags;
Kashyap, Desai20f58952009-08-07 19:34:26 +05303793 struct _sas_port *mpt2sas_port = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06003794 int rc = 0;
3795
3796 if (!handle)
3797 return -1;
3798
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05303799 if (ioc->shost_recovery)
3800 return -1;
3801
Eric Moore635374e2009-03-09 01:21:12 -06003802 if ((mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
3803 MPI2_SAS_EXPAND_PGAD_FORM_HNDL, handle))) {
3804 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3805 ioc->name, __FILE__, __LINE__, __func__);
3806 return -1;
3807 }
3808
3809 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
3810 MPI2_IOCSTATUS_MASK;
3811 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3812 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3813 ioc->name, __FILE__, __LINE__, __func__);
3814 return -1;
3815 }
3816
3817 /* handle out of order topology events */
3818 parent_handle = le16_to_cpu(expander_pg0.ParentDevHandle);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303819 if (_scsih_get_sas_address(ioc, parent_handle, &sas_address_parent)
3820 != 0) {
3821 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3822 ioc->name, __FILE__, __LINE__, __func__);
3823 return -1;
3824 }
3825 if (sas_address_parent != ioc->sas_hba.sas_address) {
Eric Moore635374e2009-03-09 01:21:12 -06003826 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303827 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
3828 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06003829 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
3830 if (!sas_expander) {
3831 rc = _scsih_expander_add(ioc, parent_handle);
3832 if (rc != 0)
3833 return rc;
3834 }
3835 }
3836
Eric Moore635374e2009-03-09 01:21:12 -06003837 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303838 sas_address = le64_to_cpu(expander_pg0.SASAddress);
Eric Moore635374e2009-03-09 01:21:12 -06003839 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
3840 sas_address);
3841 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
3842
3843 if (sas_expander)
3844 return 0;
3845
3846 sas_expander = kzalloc(sizeof(struct _sas_node),
3847 GFP_KERNEL);
3848 if (!sas_expander) {
3849 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3850 ioc->name, __FILE__, __LINE__, __func__);
3851 return -1;
3852 }
3853
3854 sas_expander->handle = handle;
3855 sas_expander->num_phys = expander_pg0.NumPhys;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303856 sas_expander->sas_address_parent = sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06003857 sas_expander->sas_address = sas_address;
3858
3859 printk(MPT2SAS_INFO_FMT "expander_add: handle(0x%04x),"
3860 " parent(0x%04x), sas_addr(0x%016llx), phys(%d)\n", ioc->name,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303861 handle, parent_handle, (unsigned long long)
Eric Moore635374e2009-03-09 01:21:12 -06003862 sas_expander->sas_address, sas_expander->num_phys);
3863
3864 if (!sas_expander->num_phys)
3865 goto out_fail;
3866 sas_expander->phy = kcalloc(sas_expander->num_phys,
3867 sizeof(struct _sas_phy), GFP_KERNEL);
3868 if (!sas_expander->phy) {
3869 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3870 ioc->name, __FILE__, __LINE__, __func__);
3871 rc = -1;
3872 goto out_fail;
3873 }
3874
3875 INIT_LIST_HEAD(&sas_expander->sas_port_list);
3876 mpt2sas_port = mpt2sas_transport_port_add(ioc, handle,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303877 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06003878 if (!mpt2sas_port) {
3879 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3880 ioc->name, __FILE__, __LINE__, __func__);
3881 rc = -1;
3882 goto out_fail;
3883 }
3884 sas_expander->parent_dev = &mpt2sas_port->rphy->dev;
3885
3886 for (i = 0 ; i < sas_expander->num_phys ; i++) {
3887 if ((mpt2sas_config_get_expander_pg1(ioc, &mpi_reply,
3888 &expander_pg1, i, handle))) {
3889 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3890 ioc->name, __FILE__, __LINE__, __func__);
Kashyap, Desai20f58952009-08-07 19:34:26 +05303891 rc = -1;
3892 goto out_fail;
Eric Moore635374e2009-03-09 01:21:12 -06003893 }
3894 sas_expander->phy[i].handle = handle;
3895 sas_expander->phy[i].phy_id = i;
Kashyap, Desai20f58952009-08-07 19:34:26 +05303896
3897 if ((mpt2sas_transport_add_expander_phy(ioc,
3898 &sas_expander->phy[i], expander_pg1,
3899 sas_expander->parent_dev))) {
3900 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
3901 ioc->name, __FILE__, __LINE__, __func__);
3902 rc = -1;
3903 goto out_fail;
3904 }
Eric Moore635374e2009-03-09 01:21:12 -06003905 }
3906
3907 if (sas_expander->enclosure_handle) {
3908 if (!(mpt2sas_config_get_enclosure_pg0(ioc, &mpi_reply,
3909 &enclosure_pg0, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
3910 sas_expander->enclosure_handle))) {
3911 sas_expander->enclosure_logical_id =
3912 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
3913 }
3914 }
3915
3916 _scsih_expander_node_add(ioc, sas_expander);
3917 return 0;
3918
3919 out_fail:
3920
Kashyap, Desai20f58952009-08-07 19:34:26 +05303921 if (mpt2sas_port)
3922 mpt2sas_transport_port_remove(ioc, sas_expander->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303923 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06003924 kfree(sas_expander);
3925 return rc;
3926}
3927
3928/**
Kashyap, Desai744090d2009-10-05 15:56:56 +05303929 * _scsih_done - scsih callback handler.
3930 * @ioc: per adapter object
3931 * @smid: system request message index
3932 * @msix_index: MSIX table index supplied by the OS
3933 * @reply: reply message frame(lower 32bit addr)
3934 *
3935 * Callback handler when sending internal generated message frames.
3936 * The callback index passed is `ioc->scsih_cb_idx`
3937 *
3938 * Return 1 meaning mf should be freed from _base_interrupt
3939 * 0 means the mf is freed from this function.
3940 */
3941static u8
3942_scsih_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
3943{
3944 MPI2DefaultReply_t *mpi_reply;
3945
3946 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
3947 if (ioc->scsih_cmds.status == MPT2_CMD_NOT_USED)
3948 return 1;
3949 if (ioc->scsih_cmds.smid != smid)
3950 return 1;
3951 ioc->scsih_cmds.status |= MPT2_CMD_COMPLETE;
3952 if (mpi_reply) {
3953 memcpy(ioc->scsih_cmds.reply, mpi_reply,
3954 mpi_reply->MsgLength*4);
3955 ioc->scsih_cmds.status |= MPT2_CMD_REPLY_VALID;
3956 }
3957 ioc->scsih_cmds.status &= ~MPT2_CMD_PENDING;
3958 complete(&ioc->scsih_cmds.done);
3959 return 1;
3960}
3961
3962/**
Eric Moore635374e2009-03-09 01:21:12 -06003963 * _scsih_expander_remove - removing expander object
3964 * @ioc: per adapter object
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303965 * @sas_address: expander sas_address
Eric Moore635374e2009-03-09 01:21:12 -06003966 *
3967 * Return nothing.
3968 */
3969static void
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303970_scsih_expander_remove(struct MPT2SAS_ADAPTER *ioc, u64 sas_address)
Eric Moore635374e2009-03-09 01:21:12 -06003971{
3972 struct _sas_node *sas_expander;
3973 unsigned long flags;
3974
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05303975 if (ioc->shost_recovery)
3976 return;
3977
Eric Moore635374e2009-03-09 01:21:12 -06003978 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05303979 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
3980 sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06003981 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
3982 _scsih_expander_node_remove(ioc, sas_expander);
3983}
3984
3985/**
3986 * _scsih_add_device - creating sas device object
3987 * @ioc: per adapter object
3988 * @handle: sas device handle
3989 * @phy_num: phy number end device attached to
3990 * @is_pd: is this hidden raid component
3991 *
3992 * Creating end device object, stored in ioc->sas_device_list.
3993 *
3994 * Returns 0 for success, non-zero for failure.
3995 */
3996static int
3997_scsih_add_device(struct MPT2SAS_ADAPTER *ioc, u16 handle, u8 phy_num, u8 is_pd)
3998{
3999 Mpi2ConfigReply_t mpi_reply;
4000 Mpi2SasDevicePage0_t sas_device_pg0;
4001 Mpi2SasEnclosurePage0_t enclosure_pg0;
4002 struct _sas_device *sas_device;
4003 u32 ioc_status;
4004 __le64 sas_address;
4005 u32 device_info;
4006 unsigned long flags;
4007
4008 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
4009 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
4010 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4011 ioc->name, __FILE__, __LINE__, __func__);
4012 return -1;
4013 }
4014
4015 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4016 MPI2_IOCSTATUS_MASK;
4017 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4018 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4019 ioc->name, __FILE__, __LINE__, __func__);
4020 return -1;
4021 }
4022
4023 /* check if device is present */
4024 if (!(le16_to_cpu(sas_device_pg0.Flags) &
4025 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT)) {
4026 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4027 ioc->name, __FILE__, __LINE__, __func__);
4028 printk(MPT2SAS_ERR_FMT "Flags = 0x%04x\n",
4029 ioc->name, le16_to_cpu(sas_device_pg0.Flags));
4030 return -1;
4031 }
4032
4033 /* check if there were any issus with discovery */
4034 if (sas_device_pg0.AccessStatus ==
4035 MPI2_SAS_DEVICE0_ASTATUS_SATA_INIT_FAILED) {
4036 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4037 ioc->name, __FILE__, __LINE__, __func__);
4038 printk(MPT2SAS_ERR_FMT "AccessStatus = 0x%02x\n",
4039 ioc->name, sas_device_pg0.AccessStatus);
4040 return -1;
4041 }
4042
4043 /* check if this is end device */
4044 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
4045 if (!(_scsih_is_end_device(device_info))) {
4046 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4047 ioc->name, __FILE__, __LINE__, __func__);
4048 return -1;
4049 }
4050
4051 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
4052
4053 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4054 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
4055 sas_address);
4056 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4057
4058 if (sas_device) {
4059 _scsih_ublock_io_device(ioc, handle);
4060 return 0;
4061 }
4062
4063 sas_device = kzalloc(sizeof(struct _sas_device),
4064 GFP_KERNEL);
4065 if (!sas_device) {
4066 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4067 ioc->name, __FILE__, __LINE__, __func__);
4068 return -1;
4069 }
4070
4071 sas_device->handle = handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304072 if (_scsih_get_sas_address(ioc, le16_to_cpu
4073 (sas_device_pg0.ParentDevHandle),
4074 &sas_device->sas_address_parent) != 0)
4075 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4076 ioc->name, __FILE__, __LINE__, __func__);
Eric Moore635374e2009-03-09 01:21:12 -06004077 sas_device->enclosure_handle =
4078 le16_to_cpu(sas_device_pg0.EnclosureHandle);
4079 sas_device->slot =
4080 le16_to_cpu(sas_device_pg0.Slot);
4081 sas_device->device_info = device_info;
4082 sas_device->sas_address = sas_address;
4083 sas_device->hidden_raid_component = is_pd;
4084
4085 /* get enclosure_logical_id */
Kashyap, Desai15052c92009-08-07 19:33:17 +05304086 if (sas_device->enclosure_handle && !(mpt2sas_config_get_enclosure_pg0(
4087 ioc, &mpi_reply, &enclosure_pg0, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
4088 sas_device->enclosure_handle)))
Eric Moore635374e2009-03-09 01:21:12 -06004089 sas_device->enclosure_logical_id =
4090 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
Eric Moore635374e2009-03-09 01:21:12 -06004091
4092 /* get device name */
4093 sas_device->device_name = le64_to_cpu(sas_device_pg0.DeviceName);
4094
4095 if (ioc->wait_for_port_enable_to_complete)
4096 _scsih_sas_device_init_add(ioc, sas_device);
4097 else
4098 _scsih_sas_device_add(ioc, sas_device);
4099
4100 return 0;
4101}
4102
4103/**
4104 * _scsih_remove_device - removing sas device object
4105 * @ioc: per adapter object
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304106 * @sas_device: the sas_device object
Eric Moore635374e2009-03-09 01:21:12 -06004107 *
4108 * Return nothing.
4109 */
4110static void
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304111_scsih_remove_device(struct MPT2SAS_ADAPTER *ioc, struct _sas_device
4112 *sas_device)
Eric Moore635374e2009-03-09 01:21:12 -06004113{
4114 struct MPT2SAS_TARGET *sas_target_priv_data;
Eric Moore635374e2009-03-09 01:21:12 -06004115 Mpi2SasIoUnitControlReply_t mpi_reply;
4116 Mpi2SasIoUnitControlRequest_t mpi_request;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304117 u16 device_handle, handle;
Eric Moore635374e2009-03-09 01:21:12 -06004118
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304119 if (!sas_device)
Eric Moore635374e2009-03-09 01:21:12 -06004120 return;
Eric Moore635374e2009-03-09 01:21:12 -06004121
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304122 handle = sas_device->handle;
4123 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: enter: handle(0x%04x),"
4124 " sas_addr(0x%016llx)\n", ioc->name, __func__, handle,
4125 (unsigned long long) sas_device->sas_address));
Eric Moore635374e2009-03-09 01:21:12 -06004126
4127 if (sas_device->starget && sas_device->starget->hostdata) {
4128 sas_target_priv_data = sas_device->starget->hostdata;
4129 sas_target_priv_data->deleted = 1;
4130 }
Eric Moore635374e2009-03-09 01:21:12 -06004131
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304132 if (ioc->remove_host || ioc->shost_recovery || !handle)
Eric Moore635374e2009-03-09 01:21:12 -06004133 goto out;
4134
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304135 if ((sas_device->state & MPTSAS_STATE_TR_COMPLETE)) {
4136 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "\tskip "
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304137 "target_reset handle(0x%04x)\n", ioc->name,
4138 handle));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304139 goto skip_tr;
4140 }
4141
Eric Moore635374e2009-03-09 01:21:12 -06004142 /* Target Reset to flush out all the outstanding IO */
4143 device_handle = (sas_device->hidden_raid_component) ?
4144 sas_device->volume_handle : handle;
4145 if (device_handle) {
4146 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "issue target reset: "
4147 "handle(0x%04x)\n", ioc->name, device_handle));
4148 mutex_lock(&ioc->tm_cmds.mutex);
4149 mpt2sas_scsih_issue_tm(ioc, device_handle, 0,
4150 MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET, 0, 10);
4151 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
4152 mutex_unlock(&ioc->tm_cmds.mutex);
4153 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "issue target reset "
4154 "done: handle(0x%04x)\n", ioc->name, device_handle));
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05304155 if (ioc->shost_recovery)
4156 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06004157 }
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304158 skip_tr:
4159
4160 if ((sas_device->state & MPTSAS_STATE_CNTRL_COMPLETE)) {
4161 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "\tskip "
4162 "sas_cntrl handle(0x%04x)\n", ioc->name, handle));
4163 goto out;
4164 }
Eric Moore635374e2009-03-09 01:21:12 -06004165
4166 /* SAS_IO_UNIT_CNTR - send REMOVE_DEVICE */
4167 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "sas_iounit: handle"
4168 "(0x%04x)\n", ioc->name, handle));
4169 memset(&mpi_request, 0, sizeof(Mpi2SasIoUnitControlRequest_t));
4170 mpi_request.Function = MPI2_FUNCTION_SAS_IO_UNIT_CONTROL;
4171 mpi_request.Operation = MPI2_SAS_OP_REMOVE_DEVICE;
4172 mpi_request.DevHandle = handle;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304173 mpi_request.VF_ID = 0; /* TODO */
4174 mpi_request.VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06004175 if ((mpt2sas_base_sas_iounit_control(ioc, &mpi_reply,
4176 &mpi_request)) != 0) {
4177 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4178 ioc->name, __FILE__, __LINE__, __func__);
4179 }
4180
4181 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "sas_iounit: ioc_status"
4182 "(0x%04x), loginfo(0x%08x)\n", ioc->name,
4183 le16_to_cpu(mpi_reply.IOCStatus),
4184 le32_to_cpu(mpi_reply.IOCLogInfo)));
4185
4186 out:
Kashyap, Desai34a03be2009-08-20 13:23:19 +05304187
4188 _scsih_ublock_io_device(ioc, handle);
4189
Eric Moore635374e2009-03-09 01:21:12 -06004190 mpt2sas_transport_port_remove(ioc, sas_device->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304191 sas_device->sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06004192
4193 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), sas_addr"
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304194 "(0x%016llx)\n", ioc->name, handle,
Eric Moore635374e2009-03-09 01:21:12 -06004195 (unsigned long long) sas_device->sas_address);
4196 _scsih_sas_device_remove(ioc, sas_device);
4197
4198 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit: handle"
4199 "(0x%04x)\n", ioc->name, __func__, handle));
4200}
4201
4202#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4203/**
4204 * _scsih_sas_topology_change_event_debug - debug for topology event
4205 * @ioc: per adapter object
4206 * @event_data: event data payload
4207 * Context: user.
4208 */
4209static void
4210_scsih_sas_topology_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4211 Mpi2EventDataSasTopologyChangeList_t *event_data)
4212{
4213 int i;
4214 u16 handle;
4215 u16 reason_code;
4216 u8 phy_number;
4217 char *status_str = NULL;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304218 u8 link_rate, prev_link_rate;
Eric Moore635374e2009-03-09 01:21:12 -06004219
4220 switch (event_data->ExpStatus) {
4221 case MPI2_EVENT_SAS_TOPO_ES_ADDED:
4222 status_str = "add";
4223 break;
4224 case MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING:
4225 status_str = "remove";
4226 break;
4227 case MPI2_EVENT_SAS_TOPO_ES_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304228 case 0:
Eric Moore635374e2009-03-09 01:21:12 -06004229 status_str = "responding";
4230 break;
4231 case MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING:
4232 status_str = "remove delay";
4233 break;
4234 default:
4235 status_str = "unknown status";
4236 break;
4237 }
4238 printk(MPT2SAS_DEBUG_FMT "sas topology change: (%s)\n",
4239 ioc->name, status_str);
4240 printk(KERN_DEBUG "\thandle(0x%04x), enclosure_handle(0x%04x) "
4241 "start_phy(%02d), count(%d)\n",
4242 le16_to_cpu(event_data->ExpanderDevHandle),
4243 le16_to_cpu(event_data->EnclosureHandle),
4244 event_data->StartPhyNum, event_data->NumEntries);
4245 for (i = 0; i < event_data->NumEntries; i++) {
4246 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
4247 if (!handle)
4248 continue;
4249 phy_number = event_data->StartPhyNum + i;
4250 reason_code = event_data->PHY[i].PhyStatus &
4251 MPI2_EVENT_SAS_TOPO_RC_MASK;
4252 switch (reason_code) {
4253 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304254 status_str = "target add";
Eric Moore635374e2009-03-09 01:21:12 -06004255 break;
4256 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304257 status_str = "target remove";
Eric Moore635374e2009-03-09 01:21:12 -06004258 break;
4259 case MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304260 status_str = "delay target remove";
Eric Moore635374e2009-03-09 01:21:12 -06004261 break;
4262 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304263 status_str = "link rate change";
Eric Moore635374e2009-03-09 01:21:12 -06004264 break;
4265 case MPI2_EVENT_SAS_TOPO_RC_NO_CHANGE:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304266 status_str = "target responding";
Eric Moore635374e2009-03-09 01:21:12 -06004267 break;
4268 default:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304269 status_str = "unknown";
Eric Moore635374e2009-03-09 01:21:12 -06004270 break;
4271 }
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304272 link_rate = event_data->PHY[i].LinkRate >> 4;
4273 prev_link_rate = event_data->PHY[i].LinkRate & 0xF;
4274 printk(KERN_DEBUG "\tphy(%02d), attached_handle(0x%04x): %s:"
4275 " link rate: new(0x%02x), old(0x%02x)\n", phy_number,
4276 handle, status_str, link_rate, prev_link_rate);
4277
Eric Moore635374e2009-03-09 01:21:12 -06004278 }
4279}
4280#endif
4281
4282/**
4283 * _scsih_sas_topology_change_event - handle topology changes
4284 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304285 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004286 * Context: user.
4287 *
4288 */
4289static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304290_scsih_sas_topology_change_event(struct MPT2SAS_ADAPTER *ioc,
Eric Moore635374e2009-03-09 01:21:12 -06004291 struct fw_event_work *fw_event)
4292{
4293 int i;
4294 u16 parent_handle, handle;
4295 u16 reason_code;
4296 u8 phy_number;
4297 struct _sas_node *sas_expander;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304298 struct _sas_device *sas_device;
4299 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06004300 unsigned long flags;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304301 u8 link_rate, prev_link_rate;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304302 Mpi2EventDataSasTopologyChangeList_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06004303
4304#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4305 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
4306 _scsih_sas_topology_change_event_debug(ioc, event_data);
4307#endif
4308
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304309 if (ioc->shost_recovery)
4310 return;
4311
Eric Moore635374e2009-03-09 01:21:12 -06004312 if (!ioc->sas_hba.num_phys)
4313 _scsih_sas_host_add(ioc);
4314 else
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304315 _scsih_sas_host_refresh(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06004316
4317 if (fw_event->ignore) {
4318 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "ignoring expander "
4319 "event\n", ioc->name));
4320 return;
4321 }
4322
4323 parent_handle = le16_to_cpu(event_data->ExpanderDevHandle);
4324
4325 /* handle expander add */
4326 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_ADDED)
4327 if (_scsih_expander_add(ioc, parent_handle) != 0)
4328 return;
4329
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304330 spin_lock_irqsave(&ioc->sas_node_lock, flags);
4331 sas_expander = mpt2sas_scsih_expander_find_by_handle(ioc,
4332 parent_handle);
4333 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
4334 if (sas_expander)
4335 sas_address = sas_expander->sas_address;
4336 else if (parent_handle < ioc->sas_hba.num_phys)
4337 sas_address = ioc->sas_hba.sas_address;
4338 else
4339 return;
4340
Eric Moore635374e2009-03-09 01:21:12 -06004341 /* handle siblings events */
4342 for (i = 0; i < event_data->NumEntries; i++) {
4343 if (fw_event->ignore) {
4344 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "ignoring "
4345 "expander event\n", ioc->name));
4346 return;
4347 }
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05304348 if (ioc->shost_recovery)
4349 return;
Kashyap, Desai308609c2009-09-14 11:07:23 +05304350 phy_number = event_data->StartPhyNum + i;
4351 reason_code = event_data->PHY[i].PhyStatus &
4352 MPI2_EVENT_SAS_TOPO_RC_MASK;
4353 if ((event_data->PHY[i].PhyStatus &
4354 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT) && (reason_code !=
4355 MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING))
Eric Moore635374e2009-03-09 01:21:12 -06004356 continue;
4357 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
4358 if (!handle)
4359 continue;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304360 link_rate = event_data->PHY[i].LinkRate >> 4;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304361 prev_link_rate = event_data->PHY[i].LinkRate & 0xF;
Eric Moore635374e2009-03-09 01:21:12 -06004362 switch (reason_code) {
4363 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304364
4365 if (link_rate == prev_link_rate)
4366 break;
4367
4368 mpt2sas_transport_update_links(ioc, sas_address,
4369 handle, phy_number, link_rate);
4370
4371 if (link_rate >= MPI2_SAS_NEG_LINK_RATE_1_5)
4372 _scsih_ublock_io_device(ioc, handle);
4373 break;
Eric Moore635374e2009-03-09 01:21:12 -06004374 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED:
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304375
4376 mpt2sas_transport_update_links(ioc, sas_address,
4377 handle, phy_number, link_rate);
4378
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05304379 _scsih_add_device(ioc, handle, phy_number, 0);
Eric Moore635374e2009-03-09 01:21:12 -06004380 break;
4381 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING:
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304382
4383 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4384 sas_device = _scsih_sas_device_find_by_handle(ioc,
4385 handle);
4386 if (!sas_device) {
4387 spin_unlock_irqrestore(&ioc->sas_device_lock,
4388 flags);
4389 break;
4390 }
4391 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4392 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06004393 break;
4394 }
4395 }
4396
4397 /* handle expander removal */
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304398 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING &&
4399 sas_expander)
4400 _scsih_expander_remove(ioc, sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06004401
4402}
4403
4404#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4405/**
4406 * _scsih_sas_device_status_change_event_debug - debug for device event
4407 * @event_data: event data payload
4408 * Context: user.
4409 *
4410 * Return nothing.
4411 */
4412static void
4413_scsih_sas_device_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4414 Mpi2EventDataSasDeviceStatusChange_t *event_data)
4415{
4416 char *reason_str = NULL;
4417
4418 switch (event_data->ReasonCode) {
4419 case MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA:
4420 reason_str = "smart data";
4421 break;
4422 case MPI2_EVENT_SAS_DEV_STAT_RC_UNSUPPORTED:
4423 reason_str = "unsupported device discovered";
4424 break;
4425 case MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET:
4426 reason_str = "internal device reset";
4427 break;
4428 case MPI2_EVENT_SAS_DEV_STAT_RC_TASK_ABORT_INTERNAL:
4429 reason_str = "internal task abort";
4430 break;
4431 case MPI2_EVENT_SAS_DEV_STAT_RC_ABORT_TASK_SET_INTERNAL:
4432 reason_str = "internal task abort set";
4433 break;
4434 case MPI2_EVENT_SAS_DEV_STAT_RC_CLEAR_TASK_SET_INTERNAL:
4435 reason_str = "internal clear task set";
4436 break;
4437 case MPI2_EVENT_SAS_DEV_STAT_RC_QUERY_TASK_INTERNAL:
4438 reason_str = "internal query task";
4439 break;
4440 case MPI2_EVENT_SAS_DEV_STAT_RC_SATA_INIT_FAILURE:
4441 reason_str = "sata init failure";
4442 break;
4443 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET:
4444 reason_str = "internal device reset complete";
4445 break;
4446 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_TASK_ABORT_INTERNAL:
4447 reason_str = "internal task abort complete";
4448 break;
4449 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION:
4450 reason_str = "internal async notification";
4451 break;
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05304452 case MPI2_EVENT_SAS_DEV_STAT_RC_EXPANDER_REDUCED_FUNCTIONALITY:
4453 reason_str = "expander reduced functionality";
4454 break;
4455 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_EXPANDER_REDUCED_FUNCTIONALITY:
4456 reason_str = "expander reduced functionality complete";
4457 break;
Eric Moore635374e2009-03-09 01:21:12 -06004458 default:
4459 reason_str = "unknown reason";
4460 break;
4461 }
4462 printk(MPT2SAS_DEBUG_FMT "device status change: (%s)\n"
4463 "\thandle(0x%04x), sas address(0x%016llx)", ioc->name,
4464 reason_str, le16_to_cpu(event_data->DevHandle),
4465 (unsigned long long)le64_to_cpu(event_data->SASAddress));
4466 if (event_data->ReasonCode == MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA)
4467 printk(MPT2SAS_DEBUG_FMT ", ASC(0x%x), ASCQ(0x%x)\n", ioc->name,
4468 event_data->ASC, event_data->ASCQ);
4469 printk(KERN_INFO "\n");
4470}
4471#endif
4472
4473/**
4474 * _scsih_sas_device_status_change_event - handle device status change
4475 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304476 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004477 * Context: user.
4478 *
4479 * Return nothing.
4480 */
4481static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304482_scsih_sas_device_status_change_event(struct MPT2SAS_ADAPTER *ioc,
4483 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004484{
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05304485 struct MPT2SAS_TARGET *target_priv_data;
4486 struct _sas_device *sas_device;
4487 __le64 sas_address;
4488 unsigned long flags;
4489 Mpi2EventDataSasDeviceStatusChange_t *event_data =
4490 fw_event->event_data;
4491
Eric Moore635374e2009-03-09 01:21:12 -06004492#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4493 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304494 _scsih_sas_device_status_change_event_debug(ioc,
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05304495 event_data);
Eric Moore635374e2009-03-09 01:21:12 -06004496#endif
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05304497
4498 if (!(event_data->ReasonCode ==
4499 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET &&
4500 event_data->ReasonCode ==
4501 MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET))
4502 return;
4503
4504 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4505 sas_address = le64_to_cpu(event_data->SASAddress);
4506 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
4507 sas_address);
4508 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4509
4510 if (!sas_device || !sas_device->starget)
4511 return;
4512
4513 target_priv_data = sas_device->starget->hostdata;
4514 if (!target_priv_data)
4515 return;
4516
4517 if (event_data->ReasonCode ==
4518 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET)
4519 target_priv_data->tm_busy = 1;
4520 else
4521 target_priv_data->tm_busy = 0;
Eric Moore635374e2009-03-09 01:21:12 -06004522}
4523
4524#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4525/**
4526 * _scsih_sas_enclosure_dev_status_change_event_debug - debug for enclosure event
4527 * @ioc: per adapter object
4528 * @event_data: event data payload
4529 * Context: user.
4530 *
4531 * Return nothing.
4532 */
4533static void
4534_scsih_sas_enclosure_dev_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4535 Mpi2EventDataSasEnclDevStatusChange_t *event_data)
4536{
4537 char *reason_str = NULL;
4538
4539 switch (event_data->ReasonCode) {
4540 case MPI2_EVENT_SAS_ENCL_RC_ADDED:
4541 reason_str = "enclosure add";
4542 break;
4543 case MPI2_EVENT_SAS_ENCL_RC_NOT_RESPONDING:
4544 reason_str = "enclosure remove";
4545 break;
4546 default:
4547 reason_str = "unknown reason";
4548 break;
4549 }
4550
4551 printk(MPT2SAS_DEBUG_FMT "enclosure status change: (%s)\n"
4552 "\thandle(0x%04x), enclosure logical id(0x%016llx)"
4553 " number slots(%d)\n", ioc->name, reason_str,
4554 le16_to_cpu(event_data->EnclosureHandle),
4555 (unsigned long long)le64_to_cpu(event_data->EnclosureLogicalID),
4556 le16_to_cpu(event_data->StartSlot));
4557}
4558#endif
4559
4560/**
4561 * _scsih_sas_enclosure_dev_status_change_event - handle enclosure events
4562 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304563 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004564 * Context: user.
4565 *
4566 * Return nothing.
4567 */
4568static void
4569_scsih_sas_enclosure_dev_status_change_event(struct MPT2SAS_ADAPTER *ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304570 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004571{
4572#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4573 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
4574 _scsih_sas_enclosure_dev_status_change_event_debug(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304575 fw_event->event_data);
Eric Moore635374e2009-03-09 01:21:12 -06004576#endif
4577}
4578
4579/**
4580 * _scsih_sas_broadcast_primative_event - handle broadcast events
4581 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304582 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004583 * Context: user.
4584 *
4585 * Return nothing.
4586 */
4587static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304588_scsih_sas_broadcast_primative_event(struct MPT2SAS_ADAPTER *ioc,
4589 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004590{
4591 struct scsi_cmnd *scmd;
4592 u16 smid, handle;
4593 u32 lun;
4594 struct MPT2SAS_DEVICE *sas_device_priv_data;
4595 u32 termination_count;
4596 u32 query_count;
4597 Mpi2SCSITaskManagementReply_t *mpi_reply;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304598#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4599 Mpi2EventDataSasBroadcastPrimitive_t *event_data = fw_event->event_data;
4600#endif
Kashyap, Desai463217b2009-10-05 15:53:06 +05304601 u16 ioc_status;
Eric Moore635374e2009-03-09 01:21:12 -06004602 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "broadcast primative: "
4603 "phy number(%d), width(%d)\n", ioc->name, event_data->PhyNum,
4604 event_data->PortWidth));
Eric Moore635374e2009-03-09 01:21:12 -06004605 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: enter\n", ioc->name,
4606 __func__));
4607
4608 mutex_lock(&ioc->tm_cmds.mutex);
4609 termination_count = 0;
4610 query_count = 0;
4611 mpi_reply = ioc->tm_cmds.reply;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05304612 for (smid = 1; smid <= ioc->scsiio_depth; smid++) {
Eric Moore635374e2009-03-09 01:21:12 -06004613 scmd = _scsih_scsi_lookup_get(ioc, smid);
4614 if (!scmd)
4615 continue;
4616 sas_device_priv_data = scmd->device->hostdata;
4617 if (!sas_device_priv_data || !sas_device_priv_data->sas_target)
4618 continue;
4619 /* skip hidden raid components */
4620 if (sas_device_priv_data->sas_target->flags &
4621 MPT_TARGET_FLAGS_RAID_COMPONENT)
4622 continue;
4623 /* skip volumes */
4624 if (sas_device_priv_data->sas_target->flags &
4625 MPT_TARGET_FLAGS_VOLUME)
4626 continue;
4627
4628 handle = sas_device_priv_data->sas_target->handle;
4629 lun = sas_device_priv_data->lun;
4630 query_count++;
4631
4632 mpt2sas_scsih_issue_tm(ioc, handle, lun,
4633 MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK, smid, 30);
Eric Moore8901cbb2009-04-21 15:41:32 -06004634 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
Kashyap, Desai463217b2009-10-05 15:53:06 +05304635 ioc_status = le16_to_cpu(mpi_reply->IOCStatus)
4636 & MPI2_IOCSTATUS_MASK;
4637 if ((ioc_status == MPI2_IOCSTATUS_SUCCESS) &&
Eric Moore635374e2009-03-09 01:21:12 -06004638 (mpi_reply->ResponseCode ==
4639 MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED ||
4640 mpi_reply->ResponseCode ==
4641 MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC))
4642 continue;
4643
4644 mpt2sas_scsih_issue_tm(ioc, handle, lun,
Eric Moore8901cbb2009-04-21 15:41:32 -06004645 MPI2_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET, 0, 30);
4646 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
Eric Moore635374e2009-03-09 01:21:12 -06004647 termination_count += le32_to_cpu(mpi_reply->TerminationCount);
4648 }
Eric Moore635374e2009-03-09 01:21:12 -06004649 ioc->broadcast_aen_busy = 0;
4650 mutex_unlock(&ioc->tm_cmds.mutex);
4651
4652 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT
4653 "%s - exit, query_count = %d termination_count = %d\n",
4654 ioc->name, __func__, query_count, termination_count));
4655}
4656
4657/**
4658 * _scsih_sas_discovery_event - handle discovery events
4659 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304660 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06004661 * Context: user.
4662 *
4663 * Return nothing.
4664 */
4665static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304666_scsih_sas_discovery_event(struct MPT2SAS_ADAPTER *ioc,
4667 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06004668{
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304669 Mpi2EventDataSasDiscovery_t *event_data = fw_event->event_data;
4670
Eric Moore635374e2009-03-09 01:21:12 -06004671#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4672 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK) {
4673 printk(MPT2SAS_DEBUG_FMT "discovery event: (%s)", ioc->name,
4674 (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED) ?
4675 "start" : "stop");
4676 if (event_data->DiscoveryStatus)
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05304677 printk("discovery_status(0x%08x)",
4678 le32_to_cpu(event_data->DiscoveryStatus));
Eric Moore635374e2009-03-09 01:21:12 -06004679 printk("\n");
4680 }
4681#endif
4682
4683 if (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED &&
4684 !ioc->sas_hba.num_phys)
4685 _scsih_sas_host_add(ioc);
4686}
4687
4688/**
4689 * _scsih_reprobe_lun - reprobing lun
4690 * @sdev: scsi device struct
4691 * @no_uld_attach: sdev->no_uld_attach flag setting
4692 *
4693 **/
4694static void
4695_scsih_reprobe_lun(struct scsi_device *sdev, void *no_uld_attach)
4696{
4697 int rc;
4698
4699 sdev->no_uld_attach = no_uld_attach ? 1 : 0;
4700 sdev_printk(KERN_INFO, sdev, "%s raid component\n",
4701 sdev->no_uld_attach ? "hidding" : "exposing");
4702 rc = scsi_device_reprobe(sdev);
4703}
4704
4705/**
4706 * _scsih_reprobe_target - reprobing target
4707 * @starget: scsi target struct
4708 * @no_uld_attach: sdev->no_uld_attach flag setting
4709 *
4710 * Note: no_uld_attach flag determines whether the disk device is attached
4711 * to block layer. A value of `1` means to not attach.
4712 **/
4713static void
4714_scsih_reprobe_target(struct scsi_target *starget, int no_uld_attach)
4715{
4716 struct MPT2SAS_TARGET *sas_target_priv_data = starget->hostdata;
4717
4718 if (no_uld_attach)
4719 sas_target_priv_data->flags |= MPT_TARGET_FLAGS_RAID_COMPONENT;
4720 else
4721 sas_target_priv_data->flags &= ~MPT_TARGET_FLAGS_RAID_COMPONENT;
4722
4723 starget_for_each_device(starget, no_uld_attach ? (void *)1 : NULL,
4724 _scsih_reprobe_lun);
4725}
4726/**
4727 * _scsih_sas_volume_add - add new volume
4728 * @ioc: per adapter object
4729 * @element: IR config element data
4730 * Context: user.
4731 *
4732 * Return nothing.
4733 */
4734static void
4735_scsih_sas_volume_add(struct MPT2SAS_ADAPTER *ioc,
4736 Mpi2EventIrConfigElement_t *element)
4737{
4738 struct _raid_device *raid_device;
4739 unsigned long flags;
4740 u64 wwid;
4741 u16 handle = le16_to_cpu(element->VolDevHandle);
4742 int rc;
4743
Eric Moore635374e2009-03-09 01:21:12 -06004744 mpt2sas_config_get_volume_wwid(ioc, handle, &wwid);
4745 if (!wwid) {
4746 printk(MPT2SAS_ERR_FMT
4747 "failure at %s:%d/%s()!\n", ioc->name,
4748 __FILE__, __LINE__, __func__);
4749 return;
4750 }
4751
4752 spin_lock_irqsave(&ioc->raid_device_lock, flags);
4753 raid_device = _scsih_raid_device_find_by_wwid(ioc, wwid);
4754 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
4755
4756 if (raid_device)
4757 return;
4758
4759 raid_device = kzalloc(sizeof(struct _raid_device), GFP_KERNEL);
4760 if (!raid_device) {
4761 printk(MPT2SAS_ERR_FMT
4762 "failure at %s:%d/%s()!\n", ioc->name,
4763 __FILE__, __LINE__, __func__);
4764 return;
4765 }
4766
4767 raid_device->id = ioc->sas_id++;
4768 raid_device->channel = RAID_CHANNEL;
4769 raid_device->handle = handle;
4770 raid_device->wwid = wwid;
4771 _scsih_raid_device_add(ioc, raid_device);
4772 if (!ioc->wait_for_port_enable_to_complete) {
4773 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
4774 raid_device->id, 0);
4775 if (rc)
4776 _scsih_raid_device_remove(ioc, raid_device);
4777 } else
4778 _scsih_determine_boot_device(ioc, raid_device, 1);
4779}
4780
4781/**
4782 * _scsih_sas_volume_delete - delete volume
4783 * @ioc: per adapter object
4784 * @element: IR config element data
4785 * Context: user.
4786 *
4787 * Return nothing.
4788 */
4789static void
4790_scsih_sas_volume_delete(struct MPT2SAS_ADAPTER *ioc,
4791 Mpi2EventIrConfigElement_t *element)
4792{
4793 struct _raid_device *raid_device;
4794 u16 handle = le16_to_cpu(element->VolDevHandle);
4795 unsigned long flags;
4796 struct MPT2SAS_TARGET *sas_target_priv_data;
4797
Eric Moore635374e2009-03-09 01:21:12 -06004798 spin_lock_irqsave(&ioc->raid_device_lock, flags);
4799 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
4800 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
4801 if (!raid_device)
4802 return;
4803 if (raid_device->starget) {
4804 sas_target_priv_data = raid_device->starget->hostdata;
4805 sas_target_priv_data->deleted = 1;
4806 scsi_remove_target(&raid_device->starget->dev);
4807 }
4808 _scsih_raid_device_remove(ioc, raid_device);
4809}
4810
4811/**
4812 * _scsih_sas_pd_expose - expose pd component to /dev/sdX
4813 * @ioc: per adapter object
4814 * @element: IR config element data
4815 * Context: user.
4816 *
4817 * Return nothing.
4818 */
4819static void
4820_scsih_sas_pd_expose(struct MPT2SAS_ADAPTER *ioc,
4821 Mpi2EventIrConfigElement_t *element)
4822{
4823 struct _sas_device *sas_device;
4824 unsigned long flags;
4825 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
4826
4827 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4828 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4829 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4830 if (!sas_device)
4831 return;
4832
4833 /* exposing raid component */
4834 sas_device->volume_handle = 0;
4835 sas_device->volume_wwid = 0;
4836 sas_device->hidden_raid_component = 0;
4837 _scsih_reprobe_target(sas_device->starget, 0);
4838}
4839
4840/**
4841 * _scsih_sas_pd_hide - hide pd component from /dev/sdX
4842 * @ioc: per adapter object
4843 * @element: IR config element data
4844 * Context: user.
4845 *
4846 * Return nothing.
4847 */
4848static void
4849_scsih_sas_pd_hide(struct MPT2SAS_ADAPTER *ioc,
4850 Mpi2EventIrConfigElement_t *element)
4851{
4852 struct _sas_device *sas_device;
4853 unsigned long flags;
4854 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
4855
4856 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4857 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4858 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4859 if (!sas_device)
4860 return;
4861
4862 /* hiding raid component */
4863 mpt2sas_config_get_volume_handle(ioc, handle,
4864 &sas_device->volume_handle);
4865 mpt2sas_config_get_volume_wwid(ioc, sas_device->volume_handle,
4866 &sas_device->volume_wwid);
4867 sas_device->hidden_raid_component = 1;
4868 _scsih_reprobe_target(sas_device->starget, 1);
4869}
4870
4871/**
4872 * _scsih_sas_pd_delete - delete pd component
4873 * @ioc: per adapter object
4874 * @element: IR config element data
4875 * Context: user.
4876 *
4877 * Return nothing.
4878 */
4879static void
4880_scsih_sas_pd_delete(struct MPT2SAS_ADAPTER *ioc,
4881 Mpi2EventIrConfigElement_t *element)
4882{
4883 struct _sas_device *sas_device;
4884 unsigned long flags;
4885 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
4886
4887 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4888 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4889 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4890 if (!sas_device)
4891 return;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304892 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06004893}
4894
4895/**
4896 * _scsih_sas_pd_add - remove pd component
4897 * @ioc: per adapter object
4898 * @element: IR config element data
4899 * Context: user.
4900 *
4901 * Return nothing.
4902 */
4903static void
4904_scsih_sas_pd_add(struct MPT2SAS_ADAPTER *ioc,
4905 Mpi2EventIrConfigElement_t *element)
4906{
4907 struct _sas_device *sas_device;
4908 unsigned long flags;
4909 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
Kashyap, Desai62727a72009-08-07 19:35:18 +05304910 Mpi2ConfigReply_t mpi_reply;
4911 Mpi2SasDevicePage0_t sas_device_pg0;
4912 u32 ioc_status;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304913 u64 sas_address;
4914 u16 parent_handle;
Eric Moore635374e2009-03-09 01:21:12 -06004915
4916 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4917 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4918 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai62727a72009-08-07 19:35:18 +05304919 if (sas_device) {
Eric Moore635374e2009-03-09 01:21:12 -06004920 sas_device->hidden_raid_component = 1;
Kashyap, Desai62727a72009-08-07 19:35:18 +05304921 return;
4922 }
4923
4924 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
4925 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
4926 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4927 ioc->name, __FILE__, __LINE__, __func__);
4928 return;
4929 }
4930
4931 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4932 MPI2_IOCSTATUS_MASK;
4933 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4934 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4935 ioc->name, __FILE__, __LINE__, __func__);
4936 return;
4937 }
4938
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304939 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
4940 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address))
4941 mpt2sas_transport_update_links(ioc, sas_address, handle,
4942 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Kashyap, Desai62727a72009-08-07 19:35:18 +05304943
4944 _scsih_add_device(ioc, handle, 0, 1);
Eric Moore635374e2009-03-09 01:21:12 -06004945}
4946
4947#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4948/**
4949 * _scsih_sas_ir_config_change_event_debug - debug for IR Config Change events
4950 * @ioc: per adapter object
4951 * @event_data: event data payload
4952 * Context: user.
4953 *
4954 * Return nothing.
4955 */
4956static void
4957_scsih_sas_ir_config_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
4958 Mpi2EventDataIrConfigChangeList_t *event_data)
4959{
4960 Mpi2EventIrConfigElement_t *element;
4961 u8 element_type;
4962 int i;
4963 char *reason_str = NULL, *element_str = NULL;
4964
4965 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
4966
4967 printk(MPT2SAS_DEBUG_FMT "raid config change: (%s), elements(%d)\n",
4968 ioc->name, (le32_to_cpu(event_data->Flags) &
4969 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ?
4970 "foreign" : "native", event_data->NumElements);
4971 for (i = 0; i < event_data->NumElements; i++, element++) {
4972 switch (element->ReasonCode) {
4973 case MPI2_EVENT_IR_CHANGE_RC_ADDED:
4974 reason_str = "add";
4975 break;
4976 case MPI2_EVENT_IR_CHANGE_RC_REMOVED:
4977 reason_str = "remove";
4978 break;
4979 case MPI2_EVENT_IR_CHANGE_RC_NO_CHANGE:
4980 reason_str = "no change";
4981 break;
4982 case MPI2_EVENT_IR_CHANGE_RC_HIDE:
4983 reason_str = "hide";
4984 break;
4985 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE:
4986 reason_str = "unhide";
4987 break;
4988 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED:
4989 reason_str = "volume_created";
4990 break;
4991 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED:
4992 reason_str = "volume_deleted";
4993 break;
4994 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED:
4995 reason_str = "pd_created";
4996 break;
4997 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED:
4998 reason_str = "pd_deleted";
4999 break;
5000 default:
5001 reason_str = "unknown reason";
5002 break;
5003 }
5004 element_type = le16_to_cpu(element->ElementFlags) &
5005 MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK;
5006 switch (element_type) {
5007 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLUME_ELEMENT:
5008 element_str = "volume";
5009 break;
5010 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLPHYSDISK_ELEMENT:
5011 element_str = "phys disk";
5012 break;
5013 case MPI2_EVENT_IR_CHANGE_EFLAGS_HOTSPARE_ELEMENT:
5014 element_str = "hot spare";
5015 break;
5016 default:
5017 element_str = "unknown element";
5018 break;
5019 }
5020 printk(KERN_DEBUG "\t(%s:%s), vol handle(0x%04x), "
5021 "pd handle(0x%04x), pd num(0x%02x)\n", element_str,
5022 reason_str, le16_to_cpu(element->VolDevHandle),
5023 le16_to_cpu(element->PhysDiskDevHandle),
5024 element->PhysDiskNum);
5025 }
5026}
5027#endif
5028
5029/**
5030 * _scsih_sas_ir_config_change_event - handle ir configuration change events
5031 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305032 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005033 * Context: user.
5034 *
5035 * Return nothing.
5036 */
5037static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305038_scsih_sas_ir_config_change_event(struct MPT2SAS_ADAPTER *ioc,
5039 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005040{
5041 Mpi2EventIrConfigElement_t *element;
5042 int i;
Kashyap, Desai62727a72009-08-07 19:35:18 +05305043 u8 foreign_config;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305044 Mpi2EventDataIrConfigChangeList_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06005045
5046#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5047 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
5048 _scsih_sas_ir_config_change_event_debug(ioc, event_data);
5049
5050#endif
Kashyap, Desai62727a72009-08-07 19:35:18 +05305051 foreign_config = (le32_to_cpu(event_data->Flags) &
5052 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ? 1 : 0;
Eric Moore635374e2009-03-09 01:21:12 -06005053
5054 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
5055 for (i = 0; i < event_data->NumElements; i++, element++) {
5056
5057 switch (element->ReasonCode) {
5058 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED:
5059 case MPI2_EVENT_IR_CHANGE_RC_ADDED:
Kashyap, Desai62727a72009-08-07 19:35:18 +05305060 if (!foreign_config)
5061 _scsih_sas_volume_add(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06005062 break;
5063 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED:
5064 case MPI2_EVENT_IR_CHANGE_RC_REMOVED:
Kashyap, Desai62727a72009-08-07 19:35:18 +05305065 if (!foreign_config)
5066 _scsih_sas_volume_delete(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06005067 break;
5068 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED:
5069 _scsih_sas_pd_hide(ioc, element);
5070 break;
5071 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED:
5072 _scsih_sas_pd_expose(ioc, element);
5073 break;
5074 case MPI2_EVENT_IR_CHANGE_RC_HIDE:
5075 _scsih_sas_pd_add(ioc, element);
5076 break;
5077 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE:
5078 _scsih_sas_pd_delete(ioc, element);
5079 break;
5080 }
5081 }
5082}
5083
5084/**
5085 * _scsih_sas_ir_volume_event - IR volume event
5086 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305087 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005088 * Context: user.
5089 *
5090 * Return nothing.
5091 */
5092static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305093_scsih_sas_ir_volume_event(struct MPT2SAS_ADAPTER *ioc,
5094 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005095{
5096 u64 wwid;
5097 unsigned long flags;
5098 struct _raid_device *raid_device;
5099 u16 handle;
5100 u32 state;
5101 int rc;
5102 struct MPT2SAS_TARGET *sas_target_priv_data;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305103 Mpi2EventDataIrVolume_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06005104
5105 if (event_data->ReasonCode != MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED)
5106 return;
5107
5108 handle = le16_to_cpu(event_data->VolDevHandle);
5109 state = le32_to_cpu(event_data->NewValue);
5110 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle(0x%04x), "
5111 "old(0x%08x), new(0x%08x)\n", ioc->name, __func__, handle,
5112 le32_to_cpu(event_data->PreviousValue), state));
5113
5114 spin_lock_irqsave(&ioc->raid_device_lock, flags);
5115 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
5116 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
5117
5118 switch (state) {
5119 case MPI2_RAID_VOL_STATE_MISSING:
5120 case MPI2_RAID_VOL_STATE_FAILED:
5121 if (!raid_device)
5122 break;
5123 if (raid_device->starget) {
5124 sas_target_priv_data = raid_device->starget->hostdata;
5125 sas_target_priv_data->deleted = 1;
5126 scsi_remove_target(&raid_device->starget->dev);
5127 }
5128 _scsih_raid_device_remove(ioc, raid_device);
5129 break;
5130
5131 case MPI2_RAID_VOL_STATE_ONLINE:
5132 case MPI2_RAID_VOL_STATE_DEGRADED:
5133 case MPI2_RAID_VOL_STATE_OPTIMAL:
5134 if (raid_device)
5135 break;
5136
5137 mpt2sas_config_get_volume_wwid(ioc, handle, &wwid);
5138 if (!wwid) {
5139 printk(MPT2SAS_ERR_FMT
5140 "failure at %s:%d/%s()!\n", ioc->name,
5141 __FILE__, __LINE__, __func__);
5142 break;
5143 }
5144
5145 raid_device = kzalloc(sizeof(struct _raid_device), GFP_KERNEL);
5146 if (!raid_device) {
5147 printk(MPT2SAS_ERR_FMT
5148 "failure at %s:%d/%s()!\n", ioc->name,
5149 __FILE__, __LINE__, __func__);
5150 break;
5151 }
5152
5153 raid_device->id = ioc->sas_id++;
5154 raid_device->channel = RAID_CHANNEL;
5155 raid_device->handle = handle;
5156 raid_device->wwid = wwid;
5157 _scsih_raid_device_add(ioc, raid_device);
5158 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
5159 raid_device->id, 0);
5160 if (rc)
5161 _scsih_raid_device_remove(ioc, raid_device);
5162 break;
5163
5164 case MPI2_RAID_VOL_STATE_INITIALIZING:
5165 default:
5166 break;
5167 }
5168}
5169
5170/**
5171 * _scsih_sas_ir_physical_disk_event - PD event
5172 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305173 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005174 * Context: user.
5175 *
5176 * Return nothing.
5177 */
5178static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305179_scsih_sas_ir_physical_disk_event(struct MPT2SAS_ADAPTER *ioc,
5180 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005181{
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305182 u16 handle, parent_handle;
Eric Moore635374e2009-03-09 01:21:12 -06005183 u32 state;
5184 struct _sas_device *sas_device;
5185 unsigned long flags;
Kashyap, Desai62727a72009-08-07 19:35:18 +05305186 Mpi2ConfigReply_t mpi_reply;
5187 Mpi2SasDevicePage0_t sas_device_pg0;
5188 u32 ioc_status;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305189 Mpi2EventDataIrPhysicalDisk_t *event_data = fw_event->event_data;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305190 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06005191
5192 if (event_data->ReasonCode != MPI2_EVENT_IR_PHYSDISK_RC_STATE_CHANGED)
5193 return;
5194
5195 handle = le16_to_cpu(event_data->PhysDiskDevHandle);
5196 state = le32_to_cpu(event_data->NewValue);
5197
5198 dewtprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: handle(0x%04x), "
5199 "old(0x%08x), new(0x%08x)\n", ioc->name, __func__, handle,
5200 le32_to_cpu(event_data->PreviousValue), state));
5201
5202 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5203 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
5204 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5205
5206 switch (state) {
Eric Moore635374e2009-03-09 01:21:12 -06005207 case MPI2_RAID_PD_STATE_ONLINE:
5208 case MPI2_RAID_PD_STATE_DEGRADED:
5209 case MPI2_RAID_PD_STATE_REBUILDING:
5210 case MPI2_RAID_PD_STATE_OPTIMAL:
Kashyap, Desai62727a72009-08-07 19:35:18 +05305211 if (sas_device) {
Eric Moore635374e2009-03-09 01:21:12 -06005212 sas_device->hidden_raid_component = 1;
Kashyap, Desai62727a72009-08-07 19:35:18 +05305213 return;
5214 }
5215
5216 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
5217 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
5218 handle))) {
5219 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5220 ioc->name, __FILE__, __LINE__, __func__);
5221 return;
5222 }
5223
5224 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5225 MPI2_IOCSTATUS_MASK;
5226 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
5227 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5228 ioc->name, __FILE__, __LINE__, __func__);
5229 return;
5230 }
5231
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305232 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
5233 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address))
5234 mpt2sas_transport_update_links(ioc, sas_address, handle,
5235 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Kashyap, Desai62727a72009-08-07 19:35:18 +05305236
5237 _scsih_add_device(ioc, handle, 0, 1);
5238
Eric Moore635374e2009-03-09 01:21:12 -06005239 break;
5240
Kashyap, Desai62727a72009-08-07 19:35:18 +05305241 case MPI2_RAID_PD_STATE_OFFLINE:
Eric Moore635374e2009-03-09 01:21:12 -06005242 case MPI2_RAID_PD_STATE_NOT_CONFIGURED:
5243 case MPI2_RAID_PD_STATE_NOT_COMPATIBLE:
5244 case MPI2_RAID_PD_STATE_HOT_SPARE:
5245 default:
5246 break;
5247 }
5248}
5249
5250#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5251/**
5252 * _scsih_sas_ir_operation_status_event_debug - debug for IR op event
5253 * @ioc: per adapter object
5254 * @event_data: event data payload
5255 * Context: user.
5256 *
5257 * Return nothing.
5258 */
5259static void
5260_scsih_sas_ir_operation_status_event_debug(struct MPT2SAS_ADAPTER *ioc,
5261 Mpi2EventDataIrOperationStatus_t *event_data)
5262{
5263 char *reason_str = NULL;
5264
5265 switch (event_data->RAIDOperation) {
5266 case MPI2_EVENT_IR_RAIDOP_RESYNC:
5267 reason_str = "resync";
5268 break;
5269 case MPI2_EVENT_IR_RAIDOP_ONLINE_CAP_EXPANSION:
5270 reason_str = "online capacity expansion";
5271 break;
5272 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK:
5273 reason_str = "consistency check";
5274 break;
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05305275 case MPI2_EVENT_IR_RAIDOP_BACKGROUND_INIT:
5276 reason_str = "background init";
5277 break;
5278 case MPI2_EVENT_IR_RAIDOP_MAKE_DATA_CONSISTENT:
5279 reason_str = "make data consistent";
Eric Moore635374e2009-03-09 01:21:12 -06005280 break;
5281 }
5282
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05305283 if (!reason_str)
5284 return;
5285
Eric Moore635374e2009-03-09 01:21:12 -06005286 printk(MPT2SAS_INFO_FMT "raid operational status: (%s)"
5287 "\thandle(0x%04x), percent complete(%d)\n",
5288 ioc->name, reason_str,
5289 le16_to_cpu(event_data->VolDevHandle),
5290 event_data->PercentComplete);
5291}
5292#endif
5293
5294/**
5295 * _scsih_sas_ir_operation_status_event - handle RAID operation events
5296 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305297 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005298 * Context: user.
5299 *
5300 * Return nothing.
5301 */
5302static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305303_scsih_sas_ir_operation_status_event(struct MPT2SAS_ADAPTER *ioc,
5304 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005305{
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05305306 Mpi2EventDataIrOperationStatus_t *event_data = fw_event->event_data;
5307 static struct _raid_device *raid_device;
5308 unsigned long flags;
5309 u16 handle;
5310
Eric Moore635374e2009-03-09 01:21:12 -06005311#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5312 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305313 _scsih_sas_ir_operation_status_event_debug(ioc,
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05305314 event_data);
Eric Moore635374e2009-03-09 01:21:12 -06005315#endif
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05305316
5317 /* code added for raid transport support */
5318 if (event_data->RAIDOperation == MPI2_EVENT_IR_RAIDOP_RESYNC) {
5319
5320 handle = le16_to_cpu(event_data->VolDevHandle);
5321
5322 spin_lock_irqsave(&ioc->raid_device_lock, flags);
5323 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
5324 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
5325
5326 if (!raid_device)
5327 return;
5328
5329 if (event_data->RAIDOperation == MPI2_EVENT_IR_RAIDOP_RESYNC)
5330 raid_device->percent_complete =
5331 event_data->PercentComplete;
5332 }
Eric Moore635374e2009-03-09 01:21:12 -06005333}
5334
5335/**
5336 * _scsih_task_set_full - handle task set full
5337 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305338 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005339 * Context: user.
5340 *
5341 * Throttle back qdepth.
5342 */
5343static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305344_scsih_task_set_full(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work
5345 *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005346{
5347 unsigned long flags;
5348 struct _sas_device *sas_device;
5349 static struct _raid_device *raid_device;
5350 struct scsi_device *sdev;
5351 int depth;
5352 u16 current_depth;
5353 u16 handle;
5354 int id, channel;
5355 u64 sas_address;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305356 Mpi2EventDataTaskSetFull_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06005357
5358 current_depth = le16_to_cpu(event_data->CurrentDepth);
5359 handle = le16_to_cpu(event_data->DevHandle);
5360 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5361 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
5362 if (!sas_device) {
5363 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5364 return;
5365 }
5366 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5367 id = sas_device->id;
5368 channel = sas_device->channel;
5369 sas_address = sas_device->sas_address;
5370
5371 /* if hidden raid component, then change to volume characteristics */
5372 if (sas_device->hidden_raid_component && sas_device->volume_handle) {
5373 spin_lock_irqsave(&ioc->raid_device_lock, flags);
5374 raid_device = _scsih_raid_device_find_by_handle(
5375 ioc, sas_device->volume_handle);
5376 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
5377 if (raid_device) {
5378 id = raid_device->id;
5379 channel = raid_device->channel;
5380 handle = raid_device->handle;
5381 sas_address = raid_device->wwid;
5382 }
5383 }
5384
5385 if (ioc->logging_level & MPT_DEBUG_TASK_SET_FULL)
5386 starget_printk(KERN_DEBUG, sas_device->starget, "task set "
5387 "full: handle(0x%04x), sas_addr(0x%016llx), depth(%d)\n",
5388 handle, (unsigned long long)sas_address, current_depth);
5389
5390 shost_for_each_device(sdev, ioc->shost) {
5391 if (sdev->id == id && sdev->channel == channel) {
5392 if (current_depth > sdev->queue_depth) {
5393 if (ioc->logging_level &
5394 MPT_DEBUG_TASK_SET_FULL)
5395 sdev_printk(KERN_INFO, sdev, "strange "
5396 "observation, the queue depth is"
5397 " (%d) meanwhile fw queue depth "
5398 "is (%d)\n", sdev->queue_depth,
5399 current_depth);
5400 continue;
5401 }
5402 depth = scsi_track_queue_full(sdev,
5403 current_depth - 1);
5404 if (depth > 0)
5405 sdev_printk(KERN_INFO, sdev, "Queue depth "
5406 "reduced to (%d)\n", depth);
5407 else if (depth < 0)
5408 sdev_printk(KERN_INFO, sdev, "Tagged Command "
5409 "Queueing is being disabled\n");
5410 else if (depth == 0)
5411 if (ioc->logging_level &
5412 MPT_DEBUG_TASK_SET_FULL)
5413 sdev_printk(KERN_INFO, sdev,
5414 "Queue depth not changed yet\n");
5415 }
5416 }
5417}
5418
5419/**
5420 * _scsih_mark_responding_sas_device - mark a sas_devices as responding
5421 * @ioc: per adapter object
5422 * @sas_address: sas address
5423 * @slot: enclosure slot id
5424 * @handle: device handle
5425 *
5426 * After host reset, find out whether devices are still responding.
5427 * Used in _scsi_remove_unresponsive_sas_devices.
5428 *
5429 * Return nothing.
5430 */
5431static void
5432_scsih_mark_responding_sas_device(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
5433 u16 slot, u16 handle)
5434{
5435 struct MPT2SAS_TARGET *sas_target_priv_data;
5436 struct scsi_target *starget;
5437 struct _sas_device *sas_device;
5438 unsigned long flags;
5439
5440 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5441 list_for_each_entry(sas_device, &ioc->sas_device_list, list) {
5442 if (sas_device->sas_address == sas_address &&
5443 sas_device->slot == slot && sas_device->starget) {
5444 sas_device->responding = 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305445 sas_device->state = 0;
5446 starget = sas_device->starget;
5447 sas_target_priv_data = starget->hostdata;
5448 sas_target_priv_data->tm_busy = 0;
Eric Moore635374e2009-03-09 01:21:12 -06005449 starget_printk(KERN_INFO, sas_device->starget,
5450 "handle(0x%04x), sas_addr(0x%016llx), enclosure "
5451 "logical id(0x%016llx), slot(%d)\n", handle,
5452 (unsigned long long)sas_device->sas_address,
5453 (unsigned long long)
5454 sas_device->enclosure_logical_id,
5455 sas_device->slot);
5456 if (sas_device->handle == handle)
5457 goto out;
5458 printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n",
5459 sas_device->handle);
5460 sas_device->handle = handle;
Eric Moore635374e2009-03-09 01:21:12 -06005461 sas_target_priv_data->handle = handle;
5462 goto out;
5463 }
5464 }
5465 out:
5466 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5467}
5468
5469/**
5470 * _scsih_search_responding_sas_devices -
5471 * @ioc: per adapter object
5472 *
5473 * After host reset, find out whether devices are still responding.
5474 * If not remove.
5475 *
5476 * Return nothing.
5477 */
5478static void
5479_scsih_search_responding_sas_devices(struct MPT2SAS_ADAPTER *ioc)
5480{
5481 Mpi2SasDevicePage0_t sas_device_pg0;
5482 Mpi2ConfigReply_t mpi_reply;
5483 u16 ioc_status;
5484 __le64 sas_address;
5485 u16 handle;
5486 u32 device_info;
5487 u16 slot;
5488
5489 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name, __func__);
5490
5491 if (list_empty(&ioc->sas_device_list))
5492 return;
5493
5494 handle = 0xFFFF;
5495 while (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
5496 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE,
5497 handle))) {
5498 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5499 MPI2_IOCSTATUS_MASK;
5500 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
5501 break;
5502 handle = le16_to_cpu(sas_device_pg0.DevHandle);
5503 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
5504 if (!(_scsih_is_end_device(device_info)))
5505 continue;
5506 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
5507 slot = le16_to_cpu(sas_device_pg0.Slot);
5508 _scsih_mark_responding_sas_device(ioc, sas_address, slot,
5509 handle);
5510 }
5511}
5512
5513/**
5514 * _scsih_mark_responding_raid_device - mark a raid_device as responding
5515 * @ioc: per adapter object
5516 * @wwid: world wide identifier for raid volume
5517 * @handle: device handle
5518 *
5519 * After host reset, find out whether devices are still responding.
5520 * Used in _scsi_remove_unresponsive_raid_devices.
5521 *
5522 * Return nothing.
5523 */
5524static void
5525_scsih_mark_responding_raid_device(struct MPT2SAS_ADAPTER *ioc, u64 wwid,
5526 u16 handle)
5527{
5528 struct MPT2SAS_TARGET *sas_target_priv_data;
5529 struct scsi_target *starget;
5530 struct _raid_device *raid_device;
5531 unsigned long flags;
5532
5533 spin_lock_irqsave(&ioc->raid_device_lock, flags);
5534 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
5535 if (raid_device->wwid == wwid && raid_device->starget) {
5536 raid_device->responding = 1;
5537 starget_printk(KERN_INFO, raid_device->starget,
5538 "handle(0x%04x), wwid(0x%016llx)\n", handle,
5539 (unsigned long long)raid_device->wwid);
5540 if (raid_device->handle == handle)
5541 goto out;
5542 printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n",
5543 raid_device->handle);
5544 raid_device->handle = handle;
5545 starget = raid_device->starget;
5546 sas_target_priv_data = starget->hostdata;
5547 sas_target_priv_data->handle = handle;
5548 goto out;
5549 }
5550 }
5551 out:
5552 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
5553}
5554
5555/**
5556 * _scsih_search_responding_raid_devices -
5557 * @ioc: per adapter object
5558 *
5559 * After host reset, find out whether devices are still responding.
5560 * If not remove.
5561 *
5562 * Return nothing.
5563 */
5564static void
5565_scsih_search_responding_raid_devices(struct MPT2SAS_ADAPTER *ioc)
5566{
5567 Mpi2RaidVolPage1_t volume_pg1;
5568 Mpi2ConfigReply_t mpi_reply;
5569 u16 ioc_status;
5570 u16 handle;
5571
5572 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name, __func__);
5573
5574 if (list_empty(&ioc->raid_device_list))
5575 return;
5576
5577 handle = 0xFFFF;
5578 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
5579 &volume_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
5580 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5581 MPI2_IOCSTATUS_MASK;
5582 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
5583 break;
5584 handle = le16_to_cpu(volume_pg1.DevHandle);
5585 _scsih_mark_responding_raid_device(ioc,
5586 le64_to_cpu(volume_pg1.WWID), handle);
5587 }
5588}
5589
5590/**
5591 * _scsih_mark_responding_expander - mark a expander as responding
5592 * @ioc: per adapter object
5593 * @sas_address: sas address
5594 * @handle:
5595 *
5596 * After host reset, find out whether devices are still responding.
5597 * Used in _scsi_remove_unresponsive_expanders.
5598 *
5599 * Return nothing.
5600 */
5601static void
5602_scsih_mark_responding_expander(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
5603 u16 handle)
5604{
5605 struct _sas_node *sas_expander;
5606 unsigned long flags;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305607 int i;
Eric Moore635374e2009-03-09 01:21:12 -06005608
5609 spin_lock_irqsave(&ioc->sas_node_lock, flags);
5610 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305611 if (sas_expander->sas_address != sas_address)
5612 continue;
5613 sas_expander->responding = 1;
5614 if (sas_expander->handle == handle)
Eric Moore635374e2009-03-09 01:21:12 -06005615 goto out;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305616 printk(KERN_INFO "\texpander(0x%016llx): handle changed"
5617 " from(0x%04x) to (0x%04x)!!!\n",
5618 (unsigned long long)sas_expander->sas_address,
5619 sas_expander->handle, handle);
5620 sas_expander->handle = handle;
5621 for (i = 0 ; i < sas_expander->num_phys ; i++)
5622 sas_expander->phy[i].handle = handle;
5623 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06005624 }
5625 out:
5626 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
5627}
5628
5629/**
5630 * _scsih_search_responding_expanders -
5631 * @ioc: per adapter object
5632 *
5633 * After host reset, find out whether devices are still responding.
5634 * If not remove.
5635 *
5636 * Return nothing.
5637 */
5638static void
5639_scsih_search_responding_expanders(struct MPT2SAS_ADAPTER *ioc)
5640{
5641 Mpi2ExpanderPage0_t expander_pg0;
5642 Mpi2ConfigReply_t mpi_reply;
5643 u16 ioc_status;
5644 __le64 sas_address;
5645 u16 handle;
5646
5647 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name, __func__);
5648
5649 if (list_empty(&ioc->sas_expander_list))
5650 return;
5651
5652 handle = 0xFFFF;
5653 while (!(mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
5654 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL, handle))) {
5655
5656 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5657 MPI2_IOCSTATUS_MASK;
5658 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
5659 break;
5660
5661 handle = le16_to_cpu(expander_pg0.DevHandle);
5662 sas_address = le64_to_cpu(expander_pg0.SASAddress);
5663 printk(KERN_INFO "\texpander present: handle(0x%04x), "
5664 "sas_addr(0x%016llx)\n", handle,
5665 (unsigned long long)sas_address);
5666 _scsih_mark_responding_expander(ioc, sas_address, handle);
5667 }
5668
5669}
5670
5671/**
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305672 * _scsih_remove_unresponding_sas_devices - removing unresponding devices
Eric Moore635374e2009-03-09 01:21:12 -06005673 * @ioc: per adapter object
5674 *
5675 * Return nothing.
5676 */
5677static void
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305678_scsih_remove_unresponding_sas_devices(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06005679{
5680 struct _sas_device *sas_device, *sas_device_next;
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305681 struct _sas_node *sas_expander;
Eric Moore635374e2009-03-09 01:21:12 -06005682 struct _raid_device *raid_device, *raid_device_next;
Eric Moore635374e2009-03-09 01:21:12 -06005683
Eric Moore635374e2009-03-09 01:21:12 -06005684
5685 list_for_each_entry_safe(sas_device, sas_device_next,
5686 &ioc->sas_device_list, list) {
5687 if (sas_device->responding) {
5688 sas_device->responding = 0;
5689 continue;
5690 }
5691 if (sas_device->starget)
5692 starget_printk(KERN_INFO, sas_device->starget,
5693 "removing: handle(0x%04x), sas_addr(0x%016llx), "
5694 "enclosure logical id(0x%016llx), slot(%d)\n",
5695 sas_device->handle,
5696 (unsigned long long)sas_device->sas_address,
5697 (unsigned long long)
5698 sas_device->enclosure_logical_id,
5699 sas_device->slot);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305700 /* invalidate the device handle */
5701 sas_device->handle = 0;
5702 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06005703 }
5704
5705 list_for_each_entry_safe(raid_device, raid_device_next,
5706 &ioc->raid_device_list, list) {
5707 if (raid_device->responding) {
5708 raid_device->responding = 0;
5709 continue;
5710 }
5711 if (raid_device->starget) {
5712 starget_printk(KERN_INFO, raid_device->starget,
5713 "removing: handle(0x%04x), wwid(0x%016llx)\n",
5714 raid_device->handle,
5715 (unsigned long long)raid_device->wwid);
5716 scsi_remove_target(&raid_device->starget->dev);
5717 }
5718 _scsih_raid_device_remove(ioc, raid_device);
5719 }
5720
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305721 retry_expander_search:
5722 sas_expander = NULL;
5723 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
Eric Moore635374e2009-03-09 01:21:12 -06005724 if (sas_expander->responding) {
5725 sas_expander->responding = 0;
5726 continue;
5727 }
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305728 _scsih_expander_remove(ioc, sas_expander->sas_address);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305729 goto retry_expander_search;
5730 }
5731}
5732
5733/**
5734 * mpt2sas_scsih_reset_handler - reset callback handler (for scsih)
5735 * @ioc: per adapter object
5736 * @reset_phase: phase
5737 *
5738 * The handler for doing any required cleanup or initialization.
5739 *
5740 * The reset phase can be MPT2_IOC_PRE_RESET, MPT2_IOC_AFTER_RESET,
5741 * MPT2_IOC_DONE_RESET
5742 *
5743 * Return nothing.
5744 */
5745void
5746mpt2sas_scsih_reset_handler(struct MPT2SAS_ADAPTER *ioc, int reset_phase)
5747{
5748 switch (reset_phase) {
5749 case MPT2_IOC_PRE_RESET:
5750 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: "
5751 "MPT2_IOC_PRE_RESET\n", ioc->name, __func__));
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305752 break;
5753 case MPT2_IOC_AFTER_RESET:
5754 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: "
5755 "MPT2_IOC_AFTER_RESET\n", ioc->name, __func__));
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305756 if (ioc->scsih_cmds.status & MPT2_CMD_PENDING) {
5757 ioc->scsih_cmds.status |= MPT2_CMD_RESET;
5758 mpt2sas_base_free_smid(ioc, ioc->scsih_cmds.smid);
5759 complete(&ioc->scsih_cmds.done);
5760 }
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305761 if (ioc->tm_cmds.status & MPT2_CMD_PENDING) {
5762 ioc->tm_cmds.status |= MPT2_CMD_RESET;
5763 mpt2sas_base_free_smid(ioc, ioc->tm_cmds.smid);
5764 complete(&ioc->tm_cmds.done);
5765 }
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305766 _scsih_fw_event_cleanup_queue(ioc);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305767 _scsih_flush_running_cmds(ioc);
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305768 _scsih_queue_rescan(ioc);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305769 break;
5770 case MPT2_IOC_DONE_RESET:
5771 dtmprintk(ioc, printk(MPT2SAS_DEBUG_FMT "%s: "
5772 "MPT2_IOC_DONE_RESET\n", ioc->name, __func__));
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305773 _scsih_sas_host_refresh(ioc);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05305774 break;
Eric Moore635374e2009-03-09 01:21:12 -06005775 }
5776}
5777
5778/**
5779 * _firmware_event_work - delayed task for processing firmware events
5780 * @ioc: per adapter object
5781 * @work: equal to the fw_event_work object
5782 * Context: user.
5783 *
5784 * Return nothing.
5785 */
5786static void
5787_firmware_event_work(struct work_struct *work)
5788{
5789 struct fw_event_work *fw_event = container_of(work,
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305790 struct fw_event_work, delayed_work.work);
Eric Moore635374e2009-03-09 01:21:12 -06005791 unsigned long flags;
5792 struct MPT2SAS_ADAPTER *ioc = fw_event->ioc;
5793
Eric Moore635374e2009-03-09 01:21:12 -06005794 /* the queue is being flushed so ignore this event */
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305795 if (ioc->remove_host || fw_event->cancel_pending_work) {
Eric Moore635374e2009-03-09 01:21:12 -06005796 _scsih_fw_event_free(ioc, fw_event);
5797 return;
5798 }
Eric Moore635374e2009-03-09 01:21:12 -06005799
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305800 if (fw_event->event == MPT2SAS_RESCAN_AFTER_HOST_RESET) {
5801 _scsih_fw_event_free(ioc, fw_event);
5802 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
5803 if (ioc->shost_recovery) {
5804 init_completion(&ioc->shost_recovery_done);
5805 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock,
5806 flags);
5807 wait_for_completion(&ioc->shost_recovery_done);
5808 } else
5809 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock,
5810 flags);
5811 _scsih_search_responding_sas_devices(ioc);
5812 _scsih_search_responding_raid_devices(ioc);
5813 _scsih_search_responding_expanders(ioc);
5814 _scsih_remove_unresponding_sas_devices(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06005815 return;
5816 }
Eric Moore635374e2009-03-09 01:21:12 -06005817
5818 switch (fw_event->event) {
5819 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305820 _scsih_sas_topology_change_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005821 break;
5822 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305823 _scsih_sas_device_status_change_event(ioc,
5824 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005825 break;
5826 case MPI2_EVENT_SAS_DISCOVERY:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305827 _scsih_sas_discovery_event(ioc,
5828 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005829 break;
5830 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305831 _scsih_sas_broadcast_primative_event(ioc,
5832 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005833 break;
5834 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
5835 _scsih_sas_enclosure_dev_status_change_event(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305836 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005837 break;
5838 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305839 _scsih_sas_ir_config_change_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005840 break;
5841 case MPI2_EVENT_IR_VOLUME:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305842 _scsih_sas_ir_volume_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005843 break;
5844 case MPI2_EVENT_IR_PHYSICAL_DISK:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305845 _scsih_sas_ir_physical_disk_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005846 break;
5847 case MPI2_EVENT_IR_OPERATION_STATUS:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305848 _scsih_sas_ir_operation_status_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005849 break;
5850 case MPI2_EVENT_TASK_SET_FULL:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305851 _scsih_task_set_full(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06005852 break;
5853 }
5854 _scsih_fw_event_free(ioc, fw_event);
5855}
5856
5857/**
5858 * mpt2sas_scsih_event_callback - firmware event handler (called at ISR time)
5859 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305860 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06005861 * @reply: reply message frame(lower 32bit addr)
5862 * Context: interrupt.
5863 *
5864 * This function merely adds a new work task into ioc->firmware_event_thread.
5865 * The tasks are worked from _firmware_event_work in user context.
5866 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305867 * Return 1 meaning mf should be freed from _base_interrupt
5868 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06005869 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305870u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305871mpt2sas_scsih_event_callback(struct MPT2SAS_ADAPTER *ioc, u8 msix_index,
5872 u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06005873{
5874 struct fw_event_work *fw_event;
5875 Mpi2EventNotificationReply_t *mpi_reply;
Eric Moore635374e2009-03-09 01:21:12 -06005876 u16 event;
5877
5878 /* events turned off due to host reset or driver unloading */
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05305879 if (ioc->remove_host)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305880 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005881
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305882 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
Eric Moore635374e2009-03-09 01:21:12 -06005883 event = le16_to_cpu(mpi_reply->Event);
5884
5885 switch (event) {
5886 /* handle these */
5887 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
5888 {
5889 Mpi2EventDataSasBroadcastPrimitive_t *baen_data =
5890 (Mpi2EventDataSasBroadcastPrimitive_t *)
5891 mpi_reply->EventData;
5892
5893 if (baen_data->Primitive !=
5894 MPI2_EVENT_PRIMITIVE_ASYNCHRONOUS_EVENT ||
5895 ioc->broadcast_aen_busy)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305896 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005897 ioc->broadcast_aen_busy = 1;
5898 break;
5899 }
5900
5901 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
5902 _scsih_check_topo_delete_events(ioc,
5903 (Mpi2EventDataSasTopologyChangeList_t *)
5904 mpi_reply->EventData);
5905 break;
5906
5907 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
5908 case MPI2_EVENT_IR_OPERATION_STATUS:
5909 case MPI2_EVENT_SAS_DISCOVERY:
5910 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
5911 case MPI2_EVENT_IR_VOLUME:
5912 case MPI2_EVENT_IR_PHYSICAL_DISK:
5913 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
5914 case MPI2_EVENT_TASK_SET_FULL:
5915 break;
5916
5917 default: /* ignore the rest */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305918 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005919 }
5920
5921 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
5922 if (!fw_event) {
5923 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5924 ioc->name, __FILE__, __LINE__, __func__);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305925 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005926 }
5927 fw_event->event_data =
5928 kzalloc(mpi_reply->EventDataLength*4, GFP_ATOMIC);
5929 if (!fw_event->event_data) {
5930 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5931 ioc->name, __FILE__, __LINE__, __func__);
5932 kfree(fw_event);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305933 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005934 }
5935
5936 memcpy(fw_event->event_data, mpi_reply->EventData,
5937 mpi_reply->EventDataLength*4);
5938 fw_event->ioc = ioc;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305939 fw_event->VF_ID = mpi_reply->VF_ID;
5940 fw_event->VP_ID = mpi_reply->VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -06005941 fw_event->event = event;
5942 _scsih_fw_event_add(ioc, fw_event);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05305943 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06005944}
5945
5946/* shost template */
5947static struct scsi_host_template scsih_driver_template = {
5948 .module = THIS_MODULE,
5949 .name = "Fusion MPT SAS Host",
5950 .proc_name = MPT2SAS_DRIVER_NAME,
Eric Moored5d135b2009-05-18 13:02:08 -06005951 .queuecommand = _scsih_qcmd,
5952 .target_alloc = _scsih_target_alloc,
5953 .slave_alloc = _scsih_slave_alloc,
5954 .slave_configure = _scsih_slave_configure,
5955 .target_destroy = _scsih_target_destroy,
5956 .slave_destroy = _scsih_slave_destroy,
5957 .change_queue_depth = _scsih_change_queue_depth,
5958 .change_queue_type = _scsih_change_queue_type,
5959 .eh_abort_handler = _scsih_abort,
5960 .eh_device_reset_handler = _scsih_dev_reset,
5961 .eh_target_reset_handler = _scsih_target_reset,
5962 .eh_host_reset_handler = _scsih_host_reset,
5963 .bios_param = _scsih_bios_param,
Eric Moore635374e2009-03-09 01:21:12 -06005964 .can_queue = 1,
5965 .this_id = -1,
5966 .sg_tablesize = MPT2SAS_SG_DEPTH,
5967 .max_sectors = 8192,
5968 .cmd_per_lun = 7,
5969 .use_clustering = ENABLE_CLUSTERING,
5970 .shost_attrs = mpt2sas_host_attrs,
5971 .sdev_attrs = mpt2sas_dev_attrs,
5972};
5973
5974/**
5975 * _scsih_expander_node_remove - removing expander device from list.
5976 * @ioc: per adapter object
5977 * @sas_expander: the sas_device object
5978 * Context: Calling function should acquire ioc->sas_node_lock.
5979 *
5980 * Removing object and freeing associated memory from the
5981 * ioc->sas_expander_list.
5982 *
5983 * Return nothing.
5984 */
5985static void
5986_scsih_expander_node_remove(struct MPT2SAS_ADAPTER *ioc,
5987 struct _sas_node *sas_expander)
5988{
5989 struct _sas_port *mpt2sas_port;
5990 struct _sas_device *sas_device;
5991 struct _sas_node *expander_sibling;
5992 unsigned long flags;
5993
5994 if (!sas_expander)
5995 return;
5996
5997 /* remove sibling ports attached to this expander */
5998 retry_device_search:
5999 list_for_each_entry(mpt2sas_port,
6000 &sas_expander->sas_port_list, port_list) {
6001 if (mpt2sas_port->remote_identify.device_type ==
6002 SAS_END_DEVICE) {
6003 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6004 sas_device =
6005 mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
6006 mpt2sas_port->remote_identify.sas_address);
6007 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6008 if (!sas_device)
6009 continue;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306010 _scsih_remove_device(ioc, sas_device);
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05306011 if (ioc->shost_recovery)
6012 return;
Eric Moore635374e2009-03-09 01:21:12 -06006013 goto retry_device_search;
6014 }
6015 }
6016
6017 retry_expander_search:
6018 list_for_each_entry(mpt2sas_port,
6019 &sas_expander->sas_port_list, port_list) {
6020
6021 if (mpt2sas_port->remote_identify.device_type ==
6022 MPI2_SAS_DEVICE_INFO_EDGE_EXPANDER ||
6023 mpt2sas_port->remote_identify.device_type ==
6024 MPI2_SAS_DEVICE_INFO_FANOUT_EXPANDER) {
6025
6026 spin_lock_irqsave(&ioc->sas_node_lock, flags);
6027 expander_sibling =
6028 mpt2sas_scsih_expander_find_by_sas_address(
6029 ioc, mpt2sas_port->remote_identify.sas_address);
6030 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
6031 if (!expander_sibling)
6032 continue;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306033 _scsih_expander_remove(ioc,
6034 expander_sibling->sas_address);
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05306035 if (ioc->shost_recovery)
6036 return;
Eric Moore635374e2009-03-09 01:21:12 -06006037 goto retry_expander_search;
6038 }
6039 }
6040
6041 mpt2sas_transport_port_remove(ioc, sas_expander->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306042 sas_expander->sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06006043
6044 printk(MPT2SAS_INFO_FMT "expander_remove: handle"
6045 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name,
6046 sas_expander->handle, (unsigned long long)
6047 sas_expander->sas_address);
6048
6049 list_del(&sas_expander->list);
6050 kfree(sas_expander->phy);
6051 kfree(sas_expander);
6052}
6053
6054/**
Kashyap, Desai744090d2009-10-05 15:56:56 +05306055 * _scsih_ir_shutdown - IR shutdown notification
6056 * @ioc: per adapter object
6057 *
6058 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that
6059 * the host system is shutting down.
6060 *
6061 * Return nothing.
6062 */
6063static void
6064_scsih_ir_shutdown(struct MPT2SAS_ADAPTER *ioc)
6065{
6066 Mpi2RaidActionRequest_t *mpi_request;
6067 Mpi2RaidActionReply_t *mpi_reply;
6068 u16 smid;
6069
6070 /* is IR firmware build loaded ? */
6071 if (!ioc->ir_firmware)
6072 return;
6073
6074 /* are there any volumes ? */
6075 if (list_empty(&ioc->raid_device_list))
6076 return;
6077
6078 mutex_lock(&ioc->scsih_cmds.mutex);
6079
6080 if (ioc->scsih_cmds.status != MPT2_CMD_NOT_USED) {
6081 printk(MPT2SAS_ERR_FMT "%s: scsih_cmd in use\n",
6082 ioc->name, __func__);
6083 goto out;
6084 }
6085 ioc->scsih_cmds.status = MPT2_CMD_PENDING;
6086
6087 smid = mpt2sas_base_get_smid(ioc, ioc->scsih_cb_idx);
6088 if (!smid) {
6089 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
6090 ioc->name, __func__);
6091 ioc->scsih_cmds.status = MPT2_CMD_NOT_USED;
6092 goto out;
6093 }
6094
6095 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
6096 ioc->scsih_cmds.smid = smid;
6097 memset(mpi_request, 0, sizeof(Mpi2RaidActionRequest_t));
6098
6099 mpi_request->Function = MPI2_FUNCTION_RAID_ACTION;
6100 mpi_request->Action = MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED;
6101
6102 printk(MPT2SAS_INFO_FMT "IR shutdown (sending)\n", ioc->name);
6103 init_completion(&ioc->scsih_cmds.done);
6104 mpt2sas_base_put_smid_default(ioc, smid);
6105 wait_for_completion_timeout(&ioc->scsih_cmds.done, 10*HZ);
6106
6107 if (!(ioc->scsih_cmds.status & MPT2_CMD_COMPLETE)) {
6108 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
6109 ioc->name, __func__);
6110 goto out;
6111 }
6112
6113 if (ioc->scsih_cmds.status & MPT2_CMD_REPLY_VALID) {
6114 mpi_reply = ioc->scsih_cmds.reply;
6115
6116 printk(MPT2SAS_INFO_FMT "IR shutdown (complete): "
6117 "ioc_status(0x%04x), loginfo(0x%08x)\n",
6118 ioc->name, le16_to_cpu(mpi_reply->IOCStatus),
6119 le32_to_cpu(mpi_reply->IOCLogInfo));
6120 }
6121
6122 out:
6123 ioc->scsih_cmds.status = MPT2_CMD_NOT_USED;
6124 mutex_unlock(&ioc->scsih_cmds.mutex);
6125}
6126
6127/**
6128 * _scsih_shutdown - routine call during system shutdown
6129 * @pdev: PCI device struct
6130 *
6131 * Return nothing.
6132 */
6133static void
6134_scsih_shutdown(struct pci_dev *pdev)
6135{
6136 struct Scsi_Host *shost = pci_get_drvdata(pdev);
6137 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05306138 struct workqueue_struct *wq;
6139 unsigned long flags;
6140
6141 ioc->remove_host = 1;
6142 _scsih_fw_event_cleanup_queue(ioc);
6143
6144 spin_lock_irqsave(&ioc->fw_event_lock, flags);
6145 wq = ioc->firmware_event_thread;
6146 ioc->firmware_event_thread = NULL;
6147 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
6148 if (wq)
6149 destroy_workqueue(wq);
Kashyap, Desai744090d2009-10-05 15:56:56 +05306150
6151 _scsih_ir_shutdown(ioc);
6152 mpt2sas_base_detach(ioc);
6153}
6154
6155/**
Eric Moored5d135b2009-05-18 13:02:08 -06006156 * _scsih_remove - detach and remove add host
Eric Moore635374e2009-03-09 01:21:12 -06006157 * @pdev: PCI device struct
6158 *
Kashyap, Desai744090d2009-10-05 15:56:56 +05306159 * Routine called when unloading the driver.
Eric Moore635374e2009-03-09 01:21:12 -06006160 * Return nothing.
6161 */
6162static void __devexit
Eric Moored5d135b2009-05-18 13:02:08 -06006163_scsih_remove(struct pci_dev *pdev)
Eric Moore635374e2009-03-09 01:21:12 -06006164{
6165 struct Scsi_Host *shost = pci_get_drvdata(pdev);
6166 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
6167 struct _sas_port *mpt2sas_port;
6168 struct _sas_device *sas_device;
6169 struct _sas_node *expander_sibling;
Kashyap, Desaid7384b22009-12-16 18:50:06 +05306170 struct _raid_device *raid_device, *next;
6171 struct MPT2SAS_TARGET *sas_target_priv_data;
Eric Moore635374e2009-03-09 01:21:12 -06006172 struct workqueue_struct *wq;
6173 unsigned long flags;
6174
6175 ioc->remove_host = 1;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05306176 _scsih_fw_event_cleanup_queue(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06006177
6178 spin_lock_irqsave(&ioc->fw_event_lock, flags);
6179 wq = ioc->firmware_event_thread;
6180 ioc->firmware_event_thread = NULL;
6181 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
6182 if (wq)
6183 destroy_workqueue(wq);
6184
Kashyap, Desaid7384b22009-12-16 18:50:06 +05306185 /* release all the volumes */
6186 list_for_each_entry_safe(raid_device, next, &ioc->raid_device_list,
6187 list) {
6188 if (raid_device->starget) {
6189 sas_target_priv_data =
6190 raid_device->starget->hostdata;
6191 sas_target_priv_data->deleted = 1;
6192 scsi_remove_target(&raid_device->starget->dev);
6193 }
6194 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), wwid"
6195 "(0x%016llx)\n", ioc->name, raid_device->handle,
6196 (unsigned long long) raid_device->wwid);
6197 _scsih_raid_device_remove(ioc, raid_device);
6198 }
6199
Eric Moore635374e2009-03-09 01:21:12 -06006200 /* free ports attached to the sas_host */
6201 retry_again:
6202 list_for_each_entry(mpt2sas_port,
6203 &ioc->sas_hba.sas_port_list, port_list) {
6204 if (mpt2sas_port->remote_identify.device_type ==
6205 SAS_END_DEVICE) {
6206 sas_device =
6207 mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
6208 mpt2sas_port->remote_identify.sas_address);
6209 if (sas_device) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306210 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06006211 goto retry_again;
6212 }
6213 } else {
6214 expander_sibling =
6215 mpt2sas_scsih_expander_find_by_sas_address(ioc,
6216 mpt2sas_port->remote_identify.sas_address);
6217 if (expander_sibling) {
6218 _scsih_expander_remove(ioc,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306219 expander_sibling->sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06006220 goto retry_again;
6221 }
6222 }
6223 }
6224
6225 /* free phys attached to the sas_host */
6226 if (ioc->sas_hba.num_phys) {
6227 kfree(ioc->sas_hba.phy);
6228 ioc->sas_hba.phy = NULL;
6229 ioc->sas_hba.num_phys = 0;
6230 }
6231
6232 sas_remove_host(shost);
Kashyap, Desai744090d2009-10-05 15:56:56 +05306233 _scsih_shutdown(pdev);
Eric Moore635374e2009-03-09 01:21:12 -06006234 list_del(&ioc->list);
6235 scsi_remove_host(shost);
6236 scsi_host_put(shost);
6237}
6238
6239/**
6240 * _scsih_probe_boot_devices - reports 1st device
6241 * @ioc: per adapter object
6242 *
6243 * If specified in bios page 2, this routine reports the 1st
6244 * device scsi-ml or sas transport for persistent boot device
6245 * purposes. Please refer to function _scsih_determine_boot_device()
6246 */
6247static void
6248_scsih_probe_boot_devices(struct MPT2SAS_ADAPTER *ioc)
6249{
6250 u8 is_raid;
6251 void *device;
6252 struct _sas_device *sas_device;
6253 struct _raid_device *raid_device;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306254 u16 handle;
6255 u64 sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06006256 u64 sas_address;
6257 unsigned long flags;
6258 int rc;
6259
6260 device = NULL;
6261 if (ioc->req_boot_device.device) {
6262 device = ioc->req_boot_device.device;
6263 is_raid = ioc->req_boot_device.is_raid;
6264 } else if (ioc->req_alt_boot_device.device) {
6265 device = ioc->req_alt_boot_device.device;
6266 is_raid = ioc->req_alt_boot_device.is_raid;
6267 } else if (ioc->current_boot_device.device) {
6268 device = ioc->current_boot_device.device;
6269 is_raid = ioc->current_boot_device.is_raid;
6270 }
6271
6272 if (!device)
6273 return;
6274
6275 if (is_raid) {
6276 raid_device = device;
6277 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
6278 raid_device->id, 0);
6279 if (rc)
6280 _scsih_raid_device_remove(ioc, raid_device);
6281 } else {
6282 sas_device = device;
6283 handle = sas_device->handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306284 sas_address_parent = sas_device->sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06006285 sas_address = sas_device->sas_address;
6286 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6287 list_move_tail(&sas_device->list, &ioc->sas_device_list);
6288 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6289 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306290 sas_device->sas_address_parent)) {
Eric Moore635374e2009-03-09 01:21:12 -06006291 _scsih_sas_device_remove(ioc, sas_device);
6292 } else if (!sas_device->starget) {
6293 mpt2sas_transport_port_remove(ioc, sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306294 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06006295 _scsih_sas_device_remove(ioc, sas_device);
6296 }
6297 }
6298}
6299
6300/**
6301 * _scsih_probe_raid - reporting raid volumes to scsi-ml
6302 * @ioc: per adapter object
6303 *
6304 * Called during initial loading of the driver.
6305 */
6306static void
6307_scsih_probe_raid(struct MPT2SAS_ADAPTER *ioc)
6308{
6309 struct _raid_device *raid_device, *raid_next;
6310 int rc;
6311
6312 list_for_each_entry_safe(raid_device, raid_next,
6313 &ioc->raid_device_list, list) {
6314 if (raid_device->starget)
6315 continue;
6316 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
6317 raid_device->id, 0);
6318 if (rc)
6319 _scsih_raid_device_remove(ioc, raid_device);
6320 }
6321}
6322
6323/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306324 * _scsih_probe_sas - reporting sas devices to sas transport
Eric Moore635374e2009-03-09 01:21:12 -06006325 * @ioc: per adapter object
6326 *
6327 * Called during initial loading of the driver.
6328 */
6329static void
6330_scsih_probe_sas(struct MPT2SAS_ADAPTER *ioc)
6331{
6332 struct _sas_device *sas_device, *next;
6333 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06006334
6335 /* SAS Device List */
6336 list_for_each_entry_safe(sas_device, next, &ioc->sas_device_init_list,
6337 list) {
6338 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6339 list_move_tail(&sas_device->list, &ioc->sas_device_list);
6340 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6341
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306342 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
6343 sas_device->sas_address_parent)) {
Eric Moore635374e2009-03-09 01:21:12 -06006344 _scsih_sas_device_remove(ioc, sas_device);
6345 } else if (!sas_device->starget) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306346 mpt2sas_transport_port_remove(ioc,
6347 sas_device->sas_address,
6348 sas_device->sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06006349 _scsih_sas_device_remove(ioc, sas_device);
6350 }
6351 }
6352}
6353
6354/**
6355 * _scsih_probe_devices - probing for devices
6356 * @ioc: per adapter object
6357 *
6358 * Called during initial loading of the driver.
6359 */
6360static void
6361_scsih_probe_devices(struct MPT2SAS_ADAPTER *ioc)
6362{
6363 u16 volume_mapping_flags =
6364 le16_to_cpu(ioc->ioc_pg8.IRVolumeMappingFlags) &
6365 MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE;
6366
6367 if (!(ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR))
6368 return; /* return when IOC doesn't support initiator mode */
6369
6370 _scsih_probe_boot_devices(ioc);
6371
6372 if (ioc->ir_firmware) {
6373 if ((volume_mapping_flags &
6374 MPI2_IOCPAGE8_IRFLAGS_HIGH_VOLUME_MAPPING)) {
6375 _scsih_probe_sas(ioc);
6376 _scsih_probe_raid(ioc);
6377 } else {
6378 _scsih_probe_raid(ioc);
6379 _scsih_probe_sas(ioc);
6380 }
6381 } else
6382 _scsih_probe_sas(ioc);
6383}
6384
6385/**
Eric Moored5d135b2009-05-18 13:02:08 -06006386 * _scsih_probe - attach and add scsi host
Eric Moore635374e2009-03-09 01:21:12 -06006387 * @pdev: PCI device struct
6388 * @id: pci device id
6389 *
6390 * Returns 0 success, anything else error.
6391 */
6392static int
Eric Moored5d135b2009-05-18 13:02:08 -06006393_scsih_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Eric Moore635374e2009-03-09 01:21:12 -06006394{
6395 struct MPT2SAS_ADAPTER *ioc;
6396 struct Scsi_Host *shost;
6397
6398 shost = scsi_host_alloc(&scsih_driver_template,
6399 sizeof(struct MPT2SAS_ADAPTER));
6400 if (!shost)
6401 return -ENODEV;
6402
6403 /* init local params */
6404 ioc = shost_priv(shost);
6405 memset(ioc, 0, sizeof(struct MPT2SAS_ADAPTER));
6406 INIT_LIST_HEAD(&ioc->list);
Eric Mooreba33fad2009-03-15 21:37:18 -06006407 list_add_tail(&ioc->list, &mpt2sas_ioc_list);
Eric Moore635374e2009-03-09 01:21:12 -06006408 ioc->shost = shost;
6409 ioc->id = mpt_ids++;
6410 sprintf(ioc->name, "%s%d", MPT2SAS_DRIVER_NAME, ioc->id);
6411 ioc->pdev = pdev;
6412 ioc->scsi_io_cb_idx = scsi_io_cb_idx;
6413 ioc->tm_cb_idx = tm_cb_idx;
6414 ioc->ctl_cb_idx = ctl_cb_idx;
6415 ioc->base_cb_idx = base_cb_idx;
6416 ioc->transport_cb_idx = transport_cb_idx;
Kashyap, Desai744090d2009-10-05 15:56:56 +05306417 ioc->scsih_cb_idx = scsih_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06006418 ioc->config_cb_idx = config_cb_idx;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306419 ioc->tm_tr_cb_idx = tm_tr_cb_idx;
6420 ioc->tm_sas_control_cb_idx = tm_sas_control_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06006421 ioc->logging_level = logging_level;
6422 /* misc semaphores and spin locks */
6423 spin_lock_init(&ioc->ioc_reset_in_progress_lock);
6424 spin_lock_init(&ioc->scsi_lookup_lock);
6425 spin_lock_init(&ioc->sas_device_lock);
6426 spin_lock_init(&ioc->sas_node_lock);
6427 spin_lock_init(&ioc->fw_event_lock);
6428 spin_lock_init(&ioc->raid_device_lock);
6429
6430 INIT_LIST_HEAD(&ioc->sas_device_list);
6431 INIT_LIST_HEAD(&ioc->sas_device_init_list);
6432 INIT_LIST_HEAD(&ioc->sas_expander_list);
6433 INIT_LIST_HEAD(&ioc->fw_event_list);
6434 INIT_LIST_HEAD(&ioc->raid_device_list);
6435 INIT_LIST_HEAD(&ioc->sas_hba.sas_port_list);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306436 INIT_LIST_HEAD(&ioc->delayed_tr_list);
Eric Moore635374e2009-03-09 01:21:12 -06006437
6438 /* init shost parameters */
6439 shost->max_cmd_len = 16;
6440 shost->max_lun = max_lun;
6441 shost->transportt = mpt2sas_transport_template;
6442 shost->unique_id = ioc->id;
6443
6444 if ((scsi_add_host(shost, &pdev->dev))) {
6445 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6446 ioc->name, __FILE__, __LINE__, __func__);
6447 list_del(&ioc->list);
6448 goto out_add_shost_fail;
6449 }
6450
Eric Moore3c621b32009-05-18 12:59:41 -06006451 scsi_host_set_prot(shost, SHOST_DIF_TYPE1_PROTECTION
6452 | SHOST_DIF_TYPE3_PROTECTION);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306453 scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC);
Eric Moore3c621b32009-05-18 12:59:41 -06006454
Eric Moore635374e2009-03-09 01:21:12 -06006455 /* event thread */
6456 snprintf(ioc->firmware_event_name, sizeof(ioc->firmware_event_name),
6457 "fw_event%d", ioc->id);
6458 ioc->firmware_event_thread = create_singlethread_workqueue(
6459 ioc->firmware_event_name);
6460 if (!ioc->firmware_event_thread) {
6461 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6462 ioc->name, __FILE__, __LINE__, __func__);
6463 goto out_thread_fail;
6464 }
6465
6466 ioc->wait_for_port_enable_to_complete = 1;
6467 if ((mpt2sas_base_attach(ioc))) {
6468 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6469 ioc->name, __FILE__, __LINE__, __func__);
6470 goto out_attach_fail;
6471 }
6472
6473 ioc->wait_for_port_enable_to_complete = 0;
6474 _scsih_probe_devices(ioc);
6475 return 0;
6476
6477 out_attach_fail:
6478 destroy_workqueue(ioc->firmware_event_thread);
6479 out_thread_fail:
6480 list_del(&ioc->list);
6481 scsi_remove_host(shost);
6482 out_add_shost_fail:
6483 return -ENODEV;
6484}
6485
6486#ifdef CONFIG_PM
6487/**
Eric Moored5d135b2009-05-18 13:02:08 -06006488 * _scsih_suspend - power management suspend main entry point
Eric Moore635374e2009-03-09 01:21:12 -06006489 * @pdev: PCI device struct
6490 * @state: PM state change to (usually PCI_D3)
6491 *
6492 * Returns 0 success, anything else error.
6493 */
6494static int
Eric Moored5d135b2009-05-18 13:02:08 -06006495_scsih_suspend(struct pci_dev *pdev, pm_message_t state)
Eric Moore635374e2009-03-09 01:21:12 -06006496{
6497 struct Scsi_Host *shost = pci_get_drvdata(pdev);
6498 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
6499 u32 device_state;
6500
Kashyap, Desaie4750c92009-08-07 19:37:59 +05306501 mpt2sas_base_stop_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06006502 flush_scheduled_work();
6503 scsi_block_requests(shost);
6504 device_state = pci_choose_state(pdev, state);
6505 printk(MPT2SAS_INFO_FMT "pdev=0x%p, slot=%s, entering "
6506 "operating state [D%d]\n", ioc->name, pdev,
6507 pci_name(pdev), device_state);
6508
6509 mpt2sas_base_free_resources(ioc);
6510 pci_save_state(pdev);
6511 pci_disable_device(pdev);
6512 pci_set_power_state(pdev, device_state);
6513 return 0;
6514}
6515
6516/**
Eric Moored5d135b2009-05-18 13:02:08 -06006517 * _scsih_resume - power management resume main entry point
Eric Moore635374e2009-03-09 01:21:12 -06006518 * @pdev: PCI device struct
6519 *
6520 * Returns 0 success, anything else error.
6521 */
6522static int
Eric Moored5d135b2009-05-18 13:02:08 -06006523_scsih_resume(struct pci_dev *pdev)
Eric Moore635374e2009-03-09 01:21:12 -06006524{
6525 struct Scsi_Host *shost = pci_get_drvdata(pdev);
6526 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
6527 u32 device_state = pdev->current_state;
6528 int r;
6529
6530 printk(MPT2SAS_INFO_FMT "pdev=0x%p, slot=%s, previous "
6531 "operating state [D%d]\n", ioc->name, pdev,
6532 pci_name(pdev), device_state);
6533
6534 pci_set_power_state(pdev, PCI_D0);
6535 pci_enable_wake(pdev, PCI_D0, 0);
6536 pci_restore_state(pdev);
6537 ioc->pdev = pdev;
6538 r = mpt2sas_base_map_resources(ioc);
6539 if (r)
6540 return r;
6541
6542 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP, SOFT_RESET);
6543 scsi_unblock_requests(shost);
Kashyap, Desaie4750c92009-08-07 19:37:59 +05306544 mpt2sas_base_start_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06006545 return 0;
6546}
6547#endif /* CONFIG_PM */
6548
6549
6550static struct pci_driver scsih_driver = {
6551 .name = MPT2SAS_DRIVER_NAME,
6552 .id_table = scsih_pci_table,
Eric Moored5d135b2009-05-18 13:02:08 -06006553 .probe = _scsih_probe,
6554 .remove = __devexit_p(_scsih_remove),
Kashyap, Desai744090d2009-10-05 15:56:56 +05306555 .shutdown = _scsih_shutdown,
Eric Moore635374e2009-03-09 01:21:12 -06006556#ifdef CONFIG_PM
Eric Moored5d135b2009-05-18 13:02:08 -06006557 .suspend = _scsih_suspend,
6558 .resume = _scsih_resume,
Eric Moore635374e2009-03-09 01:21:12 -06006559#endif
6560};
6561
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306562/* raid transport support */
6563static struct raid_function_template mpt2sas_raid_functions = {
6564 .cookie = &scsih_driver_template,
6565 .is_raid = _scsih_is_raid,
6566 .get_resync = _scsih_get_resync,
6567 .get_state = _scsih_get_state,
6568};
Eric Moore635374e2009-03-09 01:21:12 -06006569
6570/**
Eric Moored5d135b2009-05-18 13:02:08 -06006571 * _scsih_init - main entry point for this driver.
Eric Moore635374e2009-03-09 01:21:12 -06006572 *
6573 * Returns 0 success, anything else error.
6574 */
6575static int __init
Eric Moored5d135b2009-05-18 13:02:08 -06006576_scsih_init(void)
Eric Moore635374e2009-03-09 01:21:12 -06006577{
6578 int error;
6579
6580 mpt_ids = 0;
6581 printk(KERN_INFO "%s version %s loaded\n", MPT2SAS_DRIVER_NAME,
6582 MPT2SAS_DRIVER_VERSION);
6583
6584 mpt2sas_transport_template =
6585 sas_attach_transport(&mpt2sas_transport_functions);
6586 if (!mpt2sas_transport_template)
6587 return -ENODEV;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306588 /* raid transport support */
6589 mpt2sas_raid_template = raid_class_attach(&mpt2sas_raid_functions);
6590 if (!mpt2sas_raid_template) {
6591 sas_release_transport(mpt2sas_transport_template);
6592 return -ENODEV;
6593 }
Eric Moore635374e2009-03-09 01:21:12 -06006594
6595 mpt2sas_base_initialize_callback_handler();
6596
6597 /* queuecommand callback hander */
Eric Moored5d135b2009-05-18 13:02:08 -06006598 scsi_io_cb_idx = mpt2sas_base_register_callback_handler(_scsih_io_done);
Eric Moore635374e2009-03-09 01:21:12 -06006599
6600 /* task managment callback handler */
Eric Moored5d135b2009-05-18 13:02:08 -06006601 tm_cb_idx = mpt2sas_base_register_callback_handler(_scsih_tm_done);
Eric Moore635374e2009-03-09 01:21:12 -06006602
6603 /* base internal commands callback handler */
6604 base_cb_idx = mpt2sas_base_register_callback_handler(mpt2sas_base_done);
6605
6606 /* transport internal commands callback handler */
6607 transport_cb_idx = mpt2sas_base_register_callback_handler(
6608 mpt2sas_transport_done);
6609
Kashyap, Desai744090d2009-10-05 15:56:56 +05306610 /* scsih internal commands callback handler */
6611 scsih_cb_idx = mpt2sas_base_register_callback_handler(_scsih_done);
6612
Eric Moore635374e2009-03-09 01:21:12 -06006613 /* configuration page API internal commands callback handler */
6614 config_cb_idx = mpt2sas_base_register_callback_handler(
6615 mpt2sas_config_done);
6616
6617 /* ctl module callback handler */
6618 ctl_cb_idx = mpt2sas_base_register_callback_handler(mpt2sas_ctl_done);
6619
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306620 tm_tr_cb_idx = mpt2sas_base_register_callback_handler(
6621 _scsih_tm_tr_complete);
6622 tm_sas_control_cb_idx = mpt2sas_base_register_callback_handler(
6623 _scsih_sas_control_complete);
6624
Eric Moore635374e2009-03-09 01:21:12 -06006625 mpt2sas_ctl_init();
6626
6627 error = pci_register_driver(&scsih_driver);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306628 if (error) {
6629 /* raid transport support */
6630 raid_class_release(mpt2sas_raid_template);
Eric Moore635374e2009-03-09 01:21:12 -06006631 sas_release_transport(mpt2sas_transport_template);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306632 }
Eric Moore635374e2009-03-09 01:21:12 -06006633
6634 return error;
6635}
6636
6637/**
Eric Moored5d135b2009-05-18 13:02:08 -06006638 * _scsih_exit - exit point for this driver (when it is a module).
Eric Moore635374e2009-03-09 01:21:12 -06006639 *
6640 * Returns 0 success, anything else error.
6641 */
6642static void __exit
Eric Moored5d135b2009-05-18 13:02:08 -06006643_scsih_exit(void)
Eric Moore635374e2009-03-09 01:21:12 -06006644{
6645 printk(KERN_INFO "mpt2sas version %s unloading\n",
6646 MPT2SAS_DRIVER_VERSION);
6647
6648 pci_unregister_driver(&scsih_driver);
6649
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306650 mpt2sas_ctl_exit();
6651
Eric Moore635374e2009-03-09 01:21:12 -06006652 mpt2sas_base_release_callback_handler(scsi_io_cb_idx);
6653 mpt2sas_base_release_callback_handler(tm_cb_idx);
6654 mpt2sas_base_release_callback_handler(base_cb_idx);
6655 mpt2sas_base_release_callback_handler(transport_cb_idx);
Kashyap, Desai744090d2009-10-05 15:56:56 +05306656 mpt2sas_base_release_callback_handler(scsih_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06006657 mpt2sas_base_release_callback_handler(config_cb_idx);
6658 mpt2sas_base_release_callback_handler(ctl_cb_idx);
6659
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306660 mpt2sas_base_release_callback_handler(tm_tr_cb_idx);
6661 mpt2sas_base_release_callback_handler(tm_sas_control_cb_idx);
6662
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306663 /* raid transport support */
6664 raid_class_release(mpt2sas_raid_template);
6665 sas_release_transport(mpt2sas_transport_template);
6666
Eric Moore635374e2009-03-09 01:21:12 -06006667}
6668
Eric Moored5d135b2009-05-18 13:02:08 -06006669module_init(_scsih_init);
6670module_exit(_scsih_exit);