blob: 1f289882a298b54df9f0866979b26e58f87d8dcd [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, Desai31b7f2e2010-03-17 16:28:04 +05305 * Copyright (C) 2007-2010 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
Eric Moore635374e2009-03-09 01:21:12 -060044#include <linux/module.h>
45#include <linux/kernel.h>
46#include <linux/init.h>
47#include <linux/errno.h>
48#include <linux/blkdev.h>
49#include <linux/sched.h>
50#include <linux/workqueue.h>
51#include <linux/delay.h>
52#include <linux/pci.h>
53#include <linux/interrupt.h>
Kashyap, Desaief7c80c2010-04-05 14:20:07 +053054#include <linux/aer.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
Kashyap, Desaif3eedd62010-06-17 13:46:13 +053072static u8 _scsih_check_for_pending_tm(struct MPT2SAS_ADAPTER *ioc, u16 smid);
73
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +053074static void _scsih_scan_start(struct Scsi_Host *shost);
75static int _scsih_scan_finished(struct Scsi_Host *shost, unsigned long time);
76
Eric Moore635374e2009-03-09 01:21:12 -060077/* global parameters */
Eric Mooreba33fad2009-03-15 21:37:18 -060078LIST_HEAD(mpt2sas_ioc_list);
Eric Moore635374e2009-03-09 01:21:12 -060079
80/* local parameters */
Eric Moore635374e2009-03-09 01:21:12 -060081static u8 scsi_io_cb_idx = -1;
82static u8 tm_cb_idx = -1;
83static u8 ctl_cb_idx = -1;
84static u8 base_cb_idx = -1;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +053085static u8 port_enable_cb_idx = -1;
Eric Moore635374e2009-03-09 01:21:12 -060086static u8 transport_cb_idx = -1;
Kashyap, Desai744090d2009-10-05 15:56:56 +053087static u8 scsih_cb_idx = -1;
Eric Moore635374e2009-03-09 01:21:12 -060088static u8 config_cb_idx = -1;
89static int mpt_ids;
90
Kashyap, Desai77e63ed2009-09-14 11:04:23 +053091static u8 tm_tr_cb_idx = -1 ;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +053092static u8 tm_tr_volume_cb_idx = -1 ;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +053093static u8 tm_sas_control_cb_idx = -1;
94
Eric Moore635374e2009-03-09 01:21:12 -060095/* command line options */
Eric Mooreba33fad2009-03-15 21:37:18 -060096static u32 logging_level;
Eric Moore635374e2009-03-09 01:21:12 -060097MODULE_PARM_DESC(logging_level, " bits for enabling additional logging info "
98 "(default=0)");
99
Kashyap, Desaia3e1e552011-06-14 10:56:12 +0530100static ushort max_sectors = 0xFFFF;
101module_param(max_sectors, ushort, 0);
102MODULE_PARM_DESC(max_sectors, "max sectors, range 64 to 8192 default=8192");
103
Eric Moore635374e2009-03-09 01:21:12 -0600104/* scsi-mid layer global parmeter is max_report_luns, which is 511 */
105#define MPT2SAS_MAX_LUN (16895)
106static int max_lun = MPT2SAS_MAX_LUN;
107module_param(max_lun, int, 0);
108MODULE_PARM_DESC(max_lun, " max lun, default=16895 ");
109
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530110/* diag_buffer_enable is bitwise
111 * bit 0 set = TRACE
112 * bit 1 set = SNAPSHOT
113 * bit 2 set = EXTENDED
114 *
115 * Either bit can be set, or both
116 */
117static int diag_buffer_enable = -1;
118module_param(diag_buffer_enable, int, 0);
119MODULE_PARM_DESC(diag_buffer_enable, " post diag buffers "
120 "(TRACE=1/SNAPSHOT=2/EXTENDED=4/default=0)");
121
Eric Moore635374e2009-03-09 01:21:12 -0600122/**
123 * struct sense_info - common structure for obtaining sense keys
124 * @skey: sense key
125 * @asc: additional sense code
126 * @ascq: additional sense code qualifier
127 */
128struct sense_info {
129 u8 skey;
130 u8 asc;
131 u8 ascq;
132};
133
134
Kashyap, Desai3ace8e02011-05-04 16:35:58 +0530135#define MPT2SAS_TURN_ON_FAULT_LED (0xFFFC)
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530136#define MPT2SAS_PORT_ENABLE_COMPLETE (0xFFFD)
137#define MPT2SAS_REMOVE_UNRESPONDING_DEVICES (0xFFFF)
Eric Moore635374e2009-03-09 01:21:12 -0600138/**
139 * struct fw_event_work - firmware event struct
140 * @list: link list framework
141 * @work: work object (ioc->fault_reset_work_q)
Kashyap, Desaif1c35e62010-03-09 16:31:43 +0530142 * @cancel_pending_work: flag set during reset handling
Eric Moore635374e2009-03-09 01:21:12 -0600143 * @ioc: per adapter object
Kashyap, Desai3ace8e02011-05-04 16:35:58 +0530144 * @device_handle: device handle
Eric Moore635374e2009-03-09 01:21:12 -0600145 * @VF_ID: virtual function id
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530146 * @VP_ID: virtual port id
Eric Moore635374e2009-03-09 01:21:12 -0600147 * @ignore: flag meaning this event has been marked to ignore
148 * @event: firmware event MPI2_EVENT_XXX defined in mpt2_ioc.h
149 * @event_data: reply event data payload follows
150 *
151 * This object stored on ioc->fw_event_list.
152 */
153struct fw_event_work {
154 struct list_head list;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +0530155 u8 cancel_pending_work;
156 struct delayed_work delayed_work;
Eric Moore635374e2009-03-09 01:21:12 -0600157 struct MPT2SAS_ADAPTER *ioc;
Kashyap, Desai3ace8e02011-05-04 16:35:58 +0530158 u16 device_handle;
Eric Moore635374e2009-03-09 01:21:12 -0600159 u8 VF_ID;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530160 u8 VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -0600161 u8 ignore;
162 u16 event;
163 void *event_data;
164};
165
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +0530166/* raid transport support */
167static struct raid_template *mpt2sas_raid_template;
168
Eric Moore635374e2009-03-09 01:21:12 -0600169/**
170 * struct _scsi_io_transfer - scsi io transfer
171 * @handle: sas device handle (assigned by firmware)
172 * @is_raid: flag set for hidden raid components
173 * @dir: DMA_TO_DEVICE, DMA_FROM_DEVICE,
174 * @data_length: data transfer length
175 * @data_dma: dma pointer to data
176 * @sense: sense data
177 * @lun: lun number
178 * @cdb_length: cdb length
179 * @cdb: cdb contents
Eric Moore635374e2009-03-09 01:21:12 -0600180 * @timeout: timeout for this command
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530181 * @VF_ID: virtual function id
182 * @VP_ID: virtual port id
183 * @valid_reply: flag set for reply message
Eric Moore635374e2009-03-09 01:21:12 -0600184 * @sense_length: sense length
185 * @ioc_status: ioc status
186 * @scsi_state: scsi state
187 * @scsi_status: scsi staus
188 * @log_info: log information
189 * @transfer_length: data length transfer when there is a reply message
190 *
191 * Used for sending internal scsi commands to devices within this module.
192 * Refer to _scsi_send_scsi_io().
193 */
194struct _scsi_io_transfer {
195 u16 handle;
196 u8 is_raid;
197 enum dma_data_direction dir;
198 u32 data_length;
199 dma_addr_t data_dma;
200 u8 sense[SCSI_SENSE_BUFFERSIZE];
201 u32 lun;
202 u8 cdb_length;
203 u8 cdb[32];
204 u8 timeout;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530205 u8 VF_ID;
206 u8 VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -0600207 u8 valid_reply;
208 /* the following bits are only valid when 'valid_reply = 1' */
209 u32 sense_length;
210 u16 ioc_status;
211 u8 scsi_state;
212 u8 scsi_status;
213 u32 log_info;
214 u32 transfer_length;
215};
216
217/*
218 * The pci device ids are defined in mpi/mpi2_cnfg.h.
219 */
220static struct pci_device_id scsih_pci_table[] = {
221 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2004,
222 PCI_ANY_ID, PCI_ANY_ID },
223 /* Falcon ~ 2008*/
224 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2008,
225 PCI_ANY_ID, PCI_ANY_ID },
226 /* Liberator ~ 2108 */
227 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_1,
228 PCI_ANY_ID, PCI_ANY_ID },
229 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_2,
230 PCI_ANY_ID, PCI_ANY_ID },
231 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_3,
232 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desaidb271362009-09-23 17:24:27 +0530233 /* Meteor ~ 2116 */
Eric Moore635374e2009-03-09 01:21:12 -0600234 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2116_1,
235 PCI_ANY_ID, PCI_ANY_ID },
236 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2116_2,
237 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desaidb271362009-09-23 17:24:27 +0530238 /* Thunderbolt ~ 2208 */
239 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_1,
240 PCI_ANY_ID, PCI_ANY_ID },
241 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_2,
242 PCI_ANY_ID, PCI_ANY_ID },
243 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_3,
244 PCI_ANY_ID, PCI_ANY_ID },
245 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_4,
246 PCI_ANY_ID, PCI_ANY_ID },
247 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_5,
248 PCI_ANY_ID, PCI_ANY_ID },
249 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_6,
250 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desai203d65b2010-06-17 13:37:59 +0530251 /* Mustang ~ 2308 */
252 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2308_1,
Kashyap, Desaidb271362009-09-23 17:24:27 +0530253 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desai203d65b2010-06-17 13:37:59 +0530254 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2308_2,
255 PCI_ANY_ID, PCI_ANY_ID },
256 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2308_3,
Kashyap, Desaidb271362009-09-23 17:24:27 +0530257 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530258 /* SSS6200 */
259 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SSS6200,
260 PCI_ANY_ID, PCI_ANY_ID },
Eric Moore635374e2009-03-09 01:21:12 -0600261 {0} /* Terminating entry */
262};
263MODULE_DEVICE_TABLE(pci, scsih_pci_table);
264
265/**
Eric Moored5d135b2009-05-18 13:02:08 -0600266 * _scsih_set_debug_level - global setting of ioc->logging_level.
Eric Moore635374e2009-03-09 01:21:12 -0600267 *
268 * Note: The logging levels are defined in mpt2sas_debug.h.
269 */
270static int
Eric Moored5d135b2009-05-18 13:02:08 -0600271_scsih_set_debug_level(const char *val, struct kernel_param *kp)
Eric Moore635374e2009-03-09 01:21:12 -0600272{
273 int ret = param_set_int(val, kp);
274 struct MPT2SAS_ADAPTER *ioc;
275
276 if (ret)
277 return ret;
278
279 printk(KERN_INFO "setting logging_level(0x%08x)\n", logging_level);
Eric Mooreba33fad2009-03-15 21:37:18 -0600280 list_for_each_entry(ioc, &mpt2sas_ioc_list, list)
Eric Moore635374e2009-03-09 01:21:12 -0600281 ioc->logging_level = logging_level;
282 return 0;
283}
Eric Moored5d135b2009-05-18 13:02:08 -0600284module_param_call(logging_level, _scsih_set_debug_level, param_get_int,
Eric Moore635374e2009-03-09 01:21:12 -0600285 &logging_level, 0644);
286
287/**
288 * _scsih_srch_boot_sas_address - search based on sas_address
289 * @sas_address: sas address
290 * @boot_device: boot device object from bios page 2
291 *
292 * Returns 1 when there's a match, 0 means no match.
293 */
294static inline int
295_scsih_srch_boot_sas_address(u64 sas_address,
296 Mpi2BootDeviceSasWwid_t *boot_device)
297{
298 return (sas_address == le64_to_cpu(boot_device->SASAddress)) ? 1 : 0;
299}
300
301/**
302 * _scsih_srch_boot_device_name - search based on device name
303 * @device_name: device name specified in INDENTIFY fram
304 * @boot_device: boot device object from bios page 2
305 *
306 * Returns 1 when there's a match, 0 means no match.
307 */
308static inline int
309_scsih_srch_boot_device_name(u64 device_name,
310 Mpi2BootDeviceDeviceName_t *boot_device)
311{
312 return (device_name == le64_to_cpu(boot_device->DeviceName)) ? 1 : 0;
313}
314
315/**
316 * _scsih_srch_boot_encl_slot - search based on enclosure_logical_id/slot
317 * @enclosure_logical_id: enclosure logical id
318 * @slot_number: slot number
319 * @boot_device: boot device object from bios page 2
320 *
321 * Returns 1 when there's a match, 0 means no match.
322 */
323static inline int
324_scsih_srch_boot_encl_slot(u64 enclosure_logical_id, u16 slot_number,
325 Mpi2BootDeviceEnclosureSlot_t *boot_device)
326{
327 return (enclosure_logical_id == le64_to_cpu(boot_device->
328 EnclosureLogicalID) && slot_number == le16_to_cpu(boot_device->
329 SlotNumber)) ? 1 : 0;
330}
331
332/**
333 * _scsih_is_boot_device - search for matching boot device.
334 * @sas_address: sas address
335 * @device_name: device name specified in INDENTIFY fram
336 * @enclosure_logical_id: enclosure logical id
337 * @slot_number: slot number
338 * @form: specifies boot device form
339 * @boot_device: boot device object from bios page 2
340 *
341 * Returns 1 when there's a match, 0 means no match.
342 */
343static int
344_scsih_is_boot_device(u64 sas_address, u64 device_name,
345 u64 enclosure_logical_id, u16 slot, u8 form,
346 Mpi2BiosPage2BootDevice_t *boot_device)
347{
348 int rc = 0;
349
350 switch (form) {
351 case MPI2_BIOSPAGE2_FORM_SAS_WWID:
352 if (!sas_address)
353 break;
354 rc = _scsih_srch_boot_sas_address(
355 sas_address, &boot_device->SasWwid);
356 break;
357 case MPI2_BIOSPAGE2_FORM_ENCLOSURE_SLOT:
358 if (!enclosure_logical_id)
359 break;
360 rc = _scsih_srch_boot_encl_slot(
361 enclosure_logical_id,
362 slot, &boot_device->EnclosureSlot);
363 break;
364 case MPI2_BIOSPAGE2_FORM_DEVICE_NAME:
365 if (!device_name)
366 break;
367 rc = _scsih_srch_boot_device_name(
368 device_name, &boot_device->DeviceName);
369 break;
370 case MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED:
371 break;
372 }
373
374 return rc;
375}
376
377/**
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530378 * _scsih_get_sas_address - set the sas_address for given device handle
379 * @handle: device handle
380 * @sas_address: sas address
381 *
382 * Returns 0 success, non-zero when failure
383 */
384static int
385_scsih_get_sas_address(struct MPT2SAS_ADAPTER *ioc, u16 handle,
386 u64 *sas_address)
387{
388 Mpi2SasDevicePage0_t sas_device_pg0;
389 Mpi2ConfigReply_t mpi_reply;
390 u32 ioc_status;
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530391 *sas_address = 0;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530392
393 if (handle <= ioc->sas_hba.num_phys) {
394 *sas_address = ioc->sas_hba.sas_address;
395 return 0;
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530396 }
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530397
398 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
399 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530400 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n", ioc->name,
401 __FILE__, __LINE__, __func__);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530402 return -ENXIO;
403 }
404
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530405 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
406 if (ioc_status == MPI2_IOCSTATUS_SUCCESS) {
407 *sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
408 return 0;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530409 }
410
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530411 /* we hit this becuase the given parent handle doesn't exist */
412 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
413 return -ENXIO;
414 /* else error case */
415 printk(MPT2SAS_ERR_FMT "handle(0x%04x), ioc_status(0x%04x), "
416 "failure at %s:%d/%s()!\n", ioc->name, handle, ioc_status,
417 __FILE__, __LINE__, __func__);
418 return -EIO;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530419}
420
421/**
Eric Moore635374e2009-03-09 01:21:12 -0600422 * _scsih_determine_boot_device - determine boot device.
423 * @ioc: per adapter object
424 * @device: either sas_device or raid_device object
425 * @is_raid: [flag] 1 = raid object, 0 = sas object
426 *
427 * Determines whether this device should be first reported device to
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300428 * to scsi-ml or sas transport, this purpose is for persistent boot device.
Eric Moore635374e2009-03-09 01:21:12 -0600429 * There are primary, alternate, and current entries in bios page 2. The order
430 * priority is primary, alternate, then current. This routine saves
431 * the corresponding device object and is_raid flag in the ioc object.
432 * The saved data to be used later in _scsih_probe_boot_devices().
433 */
434static void
435_scsih_determine_boot_device(struct MPT2SAS_ADAPTER *ioc,
436 void *device, u8 is_raid)
437{
438 struct _sas_device *sas_device;
439 struct _raid_device *raid_device;
440 u64 sas_address;
441 u64 device_name;
442 u64 enclosure_logical_id;
443 u16 slot;
444
445 /* only process this function when driver loads */
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530446 if (!ioc->is_driver_loading)
447 return;
448
449 /* no Bios, return immediately */
450 if (!ioc->bios_pg3.BiosVersion)
Eric Moore635374e2009-03-09 01:21:12 -0600451 return;
452
453 if (!is_raid) {
454 sas_device = device;
455 sas_address = sas_device->sas_address;
456 device_name = sas_device->device_name;
457 enclosure_logical_id = sas_device->enclosure_logical_id;
458 slot = sas_device->slot;
459 } else {
460 raid_device = device;
461 sas_address = raid_device->wwid;
462 device_name = 0;
463 enclosure_logical_id = 0;
464 slot = 0;
465 }
466
467 if (!ioc->req_boot_device.device) {
468 if (_scsih_is_boot_device(sas_address, device_name,
469 enclosure_logical_id, slot,
470 (ioc->bios_pg2.ReqBootDeviceForm &
471 MPI2_BIOSPAGE2_FORM_MASK),
472 &ioc->bios_pg2.RequestedBootDevice)) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530473 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -0600474 "%s: req_boot_device(0x%016llx)\n",
475 ioc->name, __func__,
476 (unsigned long long)sas_address));
477 ioc->req_boot_device.device = device;
478 ioc->req_boot_device.is_raid = is_raid;
479 }
480 }
481
482 if (!ioc->req_alt_boot_device.device) {
483 if (_scsih_is_boot_device(sas_address, device_name,
484 enclosure_logical_id, slot,
485 (ioc->bios_pg2.ReqAltBootDeviceForm &
486 MPI2_BIOSPAGE2_FORM_MASK),
487 &ioc->bios_pg2.RequestedAltBootDevice)) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530488 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -0600489 "%s: req_alt_boot_device(0x%016llx)\n",
490 ioc->name, __func__,
491 (unsigned long long)sas_address));
492 ioc->req_alt_boot_device.device = device;
493 ioc->req_alt_boot_device.is_raid = is_raid;
494 }
495 }
496
497 if (!ioc->current_boot_device.device) {
498 if (_scsih_is_boot_device(sas_address, device_name,
499 enclosure_logical_id, slot,
500 (ioc->bios_pg2.CurrentBootDeviceForm &
501 MPI2_BIOSPAGE2_FORM_MASK),
502 &ioc->bios_pg2.CurrentBootDevice)) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530503 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -0600504 "%s: current_boot_device(0x%016llx)\n",
505 ioc->name, __func__,
506 (unsigned long long)sas_address));
507 ioc->current_boot_device.device = device;
508 ioc->current_boot_device.is_raid = is_raid;
509 }
510 }
511}
512
513/**
514 * mpt2sas_scsih_sas_device_find_by_sas_address - sas device search
515 * @ioc: per adapter object
516 * @sas_address: sas address
517 * Context: Calling function should acquire ioc->sas_device_lock
518 *
519 * This searches for sas_device based on sas_address, then return sas_device
520 * object.
521 */
522struct _sas_device *
523mpt2sas_scsih_sas_device_find_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
524 u64 sas_address)
525{
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530526 struct _sas_device *sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600527
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530528 list_for_each_entry(sas_device, &ioc->sas_device_list, list)
529 if (sas_device->sas_address == sas_address)
530 return sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600531
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530532 list_for_each_entry(sas_device, &ioc->sas_device_init_list, list)
533 if (sas_device->sas_address == sas_address)
534 return sas_device;
535
536 return NULL;
Eric Moore635374e2009-03-09 01:21:12 -0600537}
538
539/**
540 * _scsih_sas_device_find_by_handle - sas device search
541 * @ioc: per adapter object
542 * @handle: sas device handle (assigned by firmware)
543 * Context: Calling function should acquire ioc->sas_device_lock
544 *
545 * This searches for sas_device based on sas_address, then return sas_device
546 * object.
547 */
548static struct _sas_device *
549_scsih_sas_device_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
550{
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530551 struct _sas_device *sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600552
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530553 list_for_each_entry(sas_device, &ioc->sas_device_list, list)
554 if (sas_device->handle == handle)
555 return sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600556
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530557 list_for_each_entry(sas_device, &ioc->sas_device_init_list, list)
558 if (sas_device->handle == handle)
559 return sas_device;
560
561 return NULL;
Eric Moore635374e2009-03-09 01:21:12 -0600562}
563
564/**
565 * _scsih_sas_device_remove - remove sas_device from list.
566 * @ioc: per adapter object
567 * @sas_device: the sas_device object
568 * Context: This function will acquire ioc->sas_device_lock.
569 *
570 * Removing object and freeing associated memory from the ioc->sas_device_list.
571 */
572static void
573_scsih_sas_device_remove(struct MPT2SAS_ADAPTER *ioc,
574 struct _sas_device *sas_device)
575{
576 unsigned long flags;
577
Kashyap, Desai980ead32010-04-08 17:55:22 +0530578 if (!sas_device)
579 return;
580
Eric Moore635374e2009-03-09 01:21:12 -0600581 spin_lock_irqsave(&ioc->sas_device_lock, flags);
Kashyap, Desai980ead32010-04-08 17:55:22 +0530582 if (mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
583 sas_device->sas_address)) {
584 list_del(&sas_device->list);
585 kfree(sas_device);
586 }
Eric Moore635374e2009-03-09 01:21:12 -0600587 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
588}
589
590/**
591 * _scsih_sas_device_add - insert sas_device to the list.
592 * @ioc: per adapter object
593 * @sas_device: the sas_device object
594 * Context: This function will acquire ioc->sas_device_lock.
595 *
596 * Adding new object to the ioc->sas_device_list.
597 */
598static void
599_scsih_sas_device_add(struct MPT2SAS_ADAPTER *ioc,
600 struct _sas_device *sas_device)
601{
602 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -0600603
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530604 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle"
Eric Moore635374e2009-03-09 01:21:12 -0600605 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
606 sas_device->handle, (unsigned long long)sas_device->sas_address));
607
608 spin_lock_irqsave(&ioc->sas_device_lock, flags);
609 list_add_tail(&sas_device->list, &ioc->sas_device_list);
610 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
611
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530612 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
613 sas_device->sas_address_parent))
Eric Moore635374e2009-03-09 01:21:12 -0600614 _scsih_sas_device_remove(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -0600615}
616
617/**
618 * _scsih_sas_device_init_add - insert sas_device to the list.
619 * @ioc: per adapter object
620 * @sas_device: the sas_device object
621 * Context: This function will acquire ioc->sas_device_lock.
622 *
623 * Adding new object at driver load time to the ioc->sas_device_init_list.
624 */
625static void
626_scsih_sas_device_init_add(struct MPT2SAS_ADAPTER *ioc,
627 struct _sas_device *sas_device)
628{
629 unsigned long flags;
630
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530631 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle"
Eric Moore635374e2009-03-09 01:21:12 -0600632 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
633 sas_device->handle, (unsigned long long)sas_device->sas_address));
634
635 spin_lock_irqsave(&ioc->sas_device_lock, flags);
636 list_add_tail(&sas_device->list, &ioc->sas_device_init_list);
637 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
638 _scsih_determine_boot_device(ioc, sas_device, 0);
639}
640
641/**
Eric Moore635374e2009-03-09 01:21:12 -0600642 * _scsih_raid_device_find_by_id - raid device search
643 * @ioc: per adapter object
644 * @id: sas device target id
645 * @channel: sas device channel
646 * Context: Calling function should acquire ioc->raid_device_lock
647 *
648 * This searches for raid_device based on target id, then return raid_device
649 * object.
650 */
651static struct _raid_device *
652_scsih_raid_device_find_by_id(struct MPT2SAS_ADAPTER *ioc, int id, int channel)
653{
654 struct _raid_device *raid_device, *r;
655
656 r = NULL;
657 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
658 if (raid_device->id == id && raid_device->channel == channel) {
659 r = raid_device;
660 goto out;
661 }
662 }
663
664 out:
665 return r;
666}
667
668/**
669 * _scsih_raid_device_find_by_handle - raid device search
670 * @ioc: per adapter object
671 * @handle: sas device handle (assigned by firmware)
672 * Context: Calling function should acquire ioc->raid_device_lock
673 *
674 * This searches for raid_device based on handle, then return raid_device
675 * object.
676 */
677static struct _raid_device *
678_scsih_raid_device_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
679{
680 struct _raid_device *raid_device, *r;
681
682 r = NULL;
683 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
684 if (raid_device->handle != handle)
685 continue;
686 r = raid_device;
687 goto out;
688 }
689
690 out:
691 return r;
692}
693
694/**
695 * _scsih_raid_device_find_by_wwid - raid device search
696 * @ioc: per adapter object
697 * @handle: sas device handle (assigned by firmware)
698 * Context: Calling function should acquire ioc->raid_device_lock
699 *
700 * This searches for raid_device based on wwid, then return raid_device
701 * object.
702 */
703static struct _raid_device *
704_scsih_raid_device_find_by_wwid(struct MPT2SAS_ADAPTER *ioc, u64 wwid)
705{
706 struct _raid_device *raid_device, *r;
707
708 r = NULL;
709 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
710 if (raid_device->wwid != wwid)
711 continue;
712 r = raid_device;
713 goto out;
714 }
715
716 out:
717 return r;
718}
719
720/**
721 * _scsih_raid_device_add - add raid_device object
722 * @ioc: per adapter object
723 * @raid_device: raid_device object
724 *
725 * This is added to the raid_device_list link list.
726 */
727static void
728_scsih_raid_device_add(struct MPT2SAS_ADAPTER *ioc,
729 struct _raid_device *raid_device)
730{
731 unsigned long flags;
732
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530733 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle"
Eric Moore635374e2009-03-09 01:21:12 -0600734 "(0x%04x), wwid(0x%016llx)\n", ioc->name, __func__,
735 raid_device->handle, (unsigned long long)raid_device->wwid));
736
737 spin_lock_irqsave(&ioc->raid_device_lock, flags);
738 list_add_tail(&raid_device->list, &ioc->raid_device_list);
739 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
740}
741
742/**
743 * _scsih_raid_device_remove - delete raid_device object
744 * @ioc: per adapter object
745 * @raid_device: raid_device object
746 *
747 * This is removed from the raid_device_list link list.
748 */
749static void
750_scsih_raid_device_remove(struct MPT2SAS_ADAPTER *ioc,
751 struct _raid_device *raid_device)
752{
753 unsigned long flags;
754
755 spin_lock_irqsave(&ioc->raid_device_lock, flags);
756 list_del(&raid_device->list);
757 memset(raid_device, 0, sizeof(struct _raid_device));
758 kfree(raid_device);
759 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
760}
761
762/**
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530763 * mpt2sas_scsih_expander_find_by_handle - expander device search
764 * @ioc: per adapter object
765 * @handle: expander handle (assigned by firmware)
766 * Context: Calling function should acquire ioc->sas_device_lock
767 *
768 * This searches for expander device based on handle, then returns the
769 * sas_node object.
770 */
771struct _sas_node *
772mpt2sas_scsih_expander_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
773{
774 struct _sas_node *sas_expander, *r;
775
776 r = NULL;
777 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
778 if (sas_expander->handle != handle)
779 continue;
780 r = sas_expander;
781 goto out;
782 }
783 out:
784 return r;
785}
786
787/**
Eric Moore635374e2009-03-09 01:21:12 -0600788 * mpt2sas_scsih_expander_find_by_sas_address - expander device search
789 * @ioc: per adapter object
790 * @sas_address: sas address
791 * Context: Calling function should acquire ioc->sas_node_lock.
792 *
793 * This searches for expander device based on sas_address, then returns the
794 * sas_node object.
795 */
796struct _sas_node *
797mpt2sas_scsih_expander_find_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
798 u64 sas_address)
799{
800 struct _sas_node *sas_expander, *r;
801
802 r = NULL;
803 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
804 if (sas_expander->sas_address != sas_address)
805 continue;
806 r = sas_expander;
807 goto out;
808 }
809 out:
810 return r;
811}
812
813/**
814 * _scsih_expander_node_add - insert expander device to the list.
815 * @ioc: per adapter object
816 * @sas_expander: the sas_device object
817 * Context: This function will acquire ioc->sas_node_lock.
818 *
819 * Adding new object to the ioc->sas_expander_list.
820 *
821 * Return nothing.
822 */
823static void
824_scsih_expander_node_add(struct MPT2SAS_ADAPTER *ioc,
825 struct _sas_node *sas_expander)
826{
827 unsigned long flags;
828
829 spin_lock_irqsave(&ioc->sas_node_lock, flags);
830 list_add_tail(&sas_expander->list, &ioc->sas_expander_list);
831 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
832}
833
834/**
835 * _scsih_is_end_device - determines if device is an end device
836 * @device_info: bitfield providing information about the device.
837 * Context: none
838 *
839 * Returns 1 if end device.
840 */
841static int
842_scsih_is_end_device(u32 device_info)
843{
844 if (device_info & MPI2_SAS_DEVICE_INFO_END_DEVICE &&
845 ((device_info & MPI2_SAS_DEVICE_INFO_SSP_TARGET) |
846 (device_info & MPI2_SAS_DEVICE_INFO_STP_TARGET) |
847 (device_info & MPI2_SAS_DEVICE_INFO_SATA_DEVICE)))
848 return 1;
849 else
850 return 0;
851}
852
853/**
Kashyap, Desaiec07a052011-01-05 17:54:32 +0530854 * _scsih_scsi_lookup_get - returns scmd entry
Eric Moore635374e2009-03-09 01:21:12 -0600855 * @ioc: per adapter object
856 * @smid: system request message index
Eric Moore635374e2009-03-09 01:21:12 -0600857 *
858 * Returns the smid stored scmd pointer.
859 */
860static struct scsi_cmnd *
861_scsih_scsi_lookup_get(struct MPT2SAS_ADAPTER *ioc, u16 smid)
862{
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530863 return ioc->scsi_lookup[smid - 1].scmd;
Eric Moore635374e2009-03-09 01:21:12 -0600864}
865
866/**
Kashyap, Desaiec07a052011-01-05 17:54:32 +0530867 * _scsih_scsi_lookup_get_clear - returns scmd entry
868 * @ioc: per adapter object
869 * @smid: system request message index
870 *
871 * Returns the smid stored scmd pointer.
872 * Then will derefrence the stored scmd pointer.
873 */
874static inline struct scsi_cmnd *
875_scsih_scsi_lookup_get_clear(struct MPT2SAS_ADAPTER *ioc, u16 smid)
876{
877 unsigned long flags;
878 struct scsi_cmnd *scmd;
879
880 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
881 scmd = ioc->scsi_lookup[smid - 1].scmd;
882 ioc->scsi_lookup[smid - 1].scmd = NULL;
883 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
884
885 return scmd;
886}
887
888/**
Eric Moore635374e2009-03-09 01:21:12 -0600889 * _scsih_scsi_lookup_find_by_scmd - scmd lookup
890 * @ioc: per adapter object
891 * @smid: system request message index
892 * @scmd: pointer to scsi command object
893 * Context: This function will acquire ioc->scsi_lookup_lock.
894 *
895 * This will search for a scmd pointer in the scsi_lookup array,
896 * returning the revelent smid. A returned value of zero means invalid.
897 */
898static u16
899_scsih_scsi_lookup_find_by_scmd(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd
900 *scmd)
901{
902 u16 smid;
903 unsigned long flags;
904 int i;
905
906 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
907 smid = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530908 for (i = 0; i < ioc->scsiio_depth; i++) {
Eric Moore635374e2009-03-09 01:21:12 -0600909 if (ioc->scsi_lookup[i].scmd == scmd) {
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530910 smid = ioc->scsi_lookup[i].smid;
Eric Moore635374e2009-03-09 01:21:12 -0600911 goto out;
912 }
913 }
914 out:
915 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
916 return smid;
917}
918
919/**
920 * _scsih_scsi_lookup_find_by_target - search for matching channel:id
921 * @ioc: per adapter object
922 * @id: target id
923 * @channel: channel
924 * Context: This function will acquire ioc->scsi_lookup_lock.
925 *
926 * This will search for a matching channel:id in the scsi_lookup array,
927 * returning 1 if found.
928 */
929static u8
930_scsih_scsi_lookup_find_by_target(struct MPT2SAS_ADAPTER *ioc, int id,
931 int channel)
932{
933 u8 found;
934 unsigned long flags;
935 int i;
936
937 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
938 found = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530939 for (i = 0 ; i < ioc->scsiio_depth; i++) {
Eric Moore635374e2009-03-09 01:21:12 -0600940 if (ioc->scsi_lookup[i].scmd &&
941 (ioc->scsi_lookup[i].scmd->device->id == id &&
942 ioc->scsi_lookup[i].scmd->device->channel == channel)) {
943 found = 1;
944 goto out;
945 }
946 }
947 out:
948 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
949 return found;
950}
951
952/**
Eric Moore993e0da2009-05-18 13:00:45 -0600953 * _scsih_scsi_lookup_find_by_lun - search for matching channel:id:lun
954 * @ioc: per adapter object
955 * @id: target id
956 * @lun: lun number
957 * @channel: channel
958 * Context: This function will acquire ioc->scsi_lookup_lock.
959 *
960 * This will search for a matching channel:id:lun in the scsi_lookup array,
961 * returning 1 if found.
962 */
963static u8
964_scsih_scsi_lookup_find_by_lun(struct MPT2SAS_ADAPTER *ioc, int id,
965 unsigned int lun, int channel)
966{
967 u8 found;
968 unsigned long flags;
969 int i;
970
971 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
972 found = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530973 for (i = 0 ; i < ioc->scsiio_depth; i++) {
Eric Moore993e0da2009-05-18 13:00:45 -0600974 if (ioc->scsi_lookup[i].scmd &&
975 (ioc->scsi_lookup[i].scmd->device->id == id &&
976 ioc->scsi_lookup[i].scmd->device->channel == channel &&
977 ioc->scsi_lookup[i].scmd->device->lun == lun)) {
978 found = 1;
979 goto out;
980 }
981 }
982 out:
983 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
984 return found;
985}
986
987/**
Kashyap, Desai35f805b2010-11-13 04:34:06 +0530988 * _scsih_get_chain_buffer_tracker - obtain chain tracker
Eric Moore635374e2009-03-09 01:21:12 -0600989 * @ioc: per adapter object
Kashyap, Desai35f805b2010-11-13 04:34:06 +0530990 * @smid: smid associated to an IO request
Eric Moore635374e2009-03-09 01:21:12 -0600991 *
Kashyap, Desai35f805b2010-11-13 04:34:06 +0530992 * Returns chain tracker(from ioc->free_chain_list)
Eric Moore635374e2009-03-09 01:21:12 -0600993 */
Kashyap, Desai35f805b2010-11-13 04:34:06 +0530994static struct chain_tracker *
995_scsih_get_chain_buffer_tracker(struct MPT2SAS_ADAPTER *ioc, u16 smid)
Eric Moore635374e2009-03-09 01:21:12 -0600996{
Kashyap, Desai35f805b2010-11-13 04:34:06 +0530997 struct chain_tracker *chain_req;
998 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -0600999
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301000 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1001 if (list_empty(&ioc->free_chain_list)) {
1002 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1003 printk(MPT2SAS_WARN_FMT "chain buffers not available\n",
1004 ioc->name);
1005 return NULL;
1006 }
1007 chain_req = list_entry(ioc->free_chain_list.next,
1008 struct chain_tracker, tracker_list);
1009 list_del_init(&chain_req->tracker_list);
1010 list_add_tail(&chain_req->tracker_list,
1011 &ioc->scsi_lookup[smid - 1].chain_list);
1012 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1013 return chain_req;
Eric Moore635374e2009-03-09 01:21:12 -06001014}
1015
1016/**
1017 * _scsih_build_scatter_gather - main sg creation routine
1018 * @ioc: per adapter object
1019 * @scmd: scsi command
1020 * @smid: system request message index
1021 * Context: none.
1022 *
1023 * The main routine that builds scatter gather table from a given
1024 * scsi request sent via the .queuecommand main handler.
1025 *
1026 * Returns 0 success, anything else error
1027 */
1028static int
1029_scsih_build_scatter_gather(struct MPT2SAS_ADAPTER *ioc,
1030 struct scsi_cmnd *scmd, u16 smid)
1031{
1032 Mpi2SCSIIORequest_t *mpi_request;
1033 dma_addr_t chain_dma;
1034 struct scatterlist *sg_scmd;
1035 void *sg_local, *chain;
1036 u32 chain_offset;
1037 u32 chain_length;
1038 u32 chain_flags;
FUJITA Tomonoribb789d02010-03-09 11:09:50 +09001039 int sges_left;
Eric Moore635374e2009-03-09 01:21:12 -06001040 u32 sges_in_segment;
1041 u32 sgl_flags;
1042 u32 sgl_flags_last_element;
1043 u32 sgl_flags_end_buffer;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301044 struct chain_tracker *chain_req;
Eric Moore635374e2009-03-09 01:21:12 -06001045
1046 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
1047
1048 /* init scatter gather flags */
1049 sgl_flags = MPI2_SGE_FLAGS_SIMPLE_ELEMENT;
1050 if (scmd->sc_data_direction == DMA_TO_DEVICE)
1051 sgl_flags |= MPI2_SGE_FLAGS_HOST_TO_IOC;
1052 sgl_flags_last_element = (sgl_flags | MPI2_SGE_FLAGS_LAST_ELEMENT)
1053 << MPI2_SGE_FLAGS_SHIFT;
1054 sgl_flags_end_buffer = (sgl_flags | MPI2_SGE_FLAGS_LAST_ELEMENT |
1055 MPI2_SGE_FLAGS_END_OF_BUFFER | MPI2_SGE_FLAGS_END_OF_LIST)
1056 << MPI2_SGE_FLAGS_SHIFT;
1057 sgl_flags = sgl_flags << MPI2_SGE_FLAGS_SHIFT;
1058
1059 sg_scmd = scsi_sglist(scmd);
1060 sges_left = scsi_dma_map(scmd);
FUJITA Tomonoribb789d02010-03-09 11:09:50 +09001061 if (sges_left < 0) {
Eric Moore635374e2009-03-09 01:21:12 -06001062 sdev_printk(KERN_ERR, scmd->device, "pci_map_sg"
1063 " failed: request for %d bytes!\n", scsi_bufflen(scmd));
1064 return -ENOMEM;
1065 }
1066
1067 sg_local = &mpi_request->SGL;
1068 sges_in_segment = ioc->max_sges_in_main_message;
1069 if (sges_left <= sges_in_segment)
1070 goto fill_in_last_segment;
1071
1072 mpi_request->ChainOffset = (offsetof(Mpi2SCSIIORequest_t, SGL) +
1073 (sges_in_segment * ioc->sge_size))/4;
1074
1075 /* fill in main message segment when there is a chain following */
1076 while (sges_in_segment) {
1077 if (sges_in_segment == 1)
1078 ioc->base_add_sg_single(sg_local,
1079 sgl_flags_last_element | sg_dma_len(sg_scmd),
1080 sg_dma_address(sg_scmd));
1081 else
1082 ioc->base_add_sg_single(sg_local, sgl_flags |
1083 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1084 sg_scmd = sg_next(sg_scmd);
1085 sg_local += ioc->sge_size;
1086 sges_left--;
1087 sges_in_segment--;
1088 }
1089
1090 /* initializing the chain flags and pointers */
1091 chain_flags = MPI2_SGE_FLAGS_CHAIN_ELEMENT << MPI2_SGE_FLAGS_SHIFT;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301092 chain_req = _scsih_get_chain_buffer_tracker(ioc, smid);
1093 if (!chain_req)
1094 return -1;
1095 chain = chain_req->chain_buffer;
1096 chain_dma = chain_req->chain_buffer_dma;
Eric Moore635374e2009-03-09 01:21:12 -06001097 do {
1098 sges_in_segment = (sges_left <=
1099 ioc->max_sges_in_chain_message) ? sges_left :
1100 ioc->max_sges_in_chain_message;
1101 chain_offset = (sges_left == sges_in_segment) ?
1102 0 : (sges_in_segment * ioc->sge_size)/4;
1103 chain_length = sges_in_segment * ioc->sge_size;
1104 if (chain_offset) {
1105 chain_offset = chain_offset <<
1106 MPI2_SGE_CHAIN_OFFSET_SHIFT;
1107 chain_length += ioc->sge_size;
1108 }
1109 ioc->base_add_sg_single(sg_local, chain_flags | chain_offset |
1110 chain_length, chain_dma);
1111 sg_local = chain;
1112 if (!chain_offset)
1113 goto fill_in_last_segment;
1114
1115 /* fill in chain segments */
1116 while (sges_in_segment) {
1117 if (sges_in_segment == 1)
1118 ioc->base_add_sg_single(sg_local,
1119 sgl_flags_last_element |
1120 sg_dma_len(sg_scmd),
1121 sg_dma_address(sg_scmd));
1122 else
1123 ioc->base_add_sg_single(sg_local, sgl_flags |
1124 sg_dma_len(sg_scmd),
1125 sg_dma_address(sg_scmd));
1126 sg_scmd = sg_next(sg_scmd);
1127 sg_local += ioc->sge_size;
1128 sges_left--;
1129 sges_in_segment--;
1130 }
1131
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301132 chain_req = _scsih_get_chain_buffer_tracker(ioc, smid);
1133 if (!chain_req)
1134 return -1;
1135 chain = chain_req->chain_buffer;
1136 chain_dma = chain_req->chain_buffer_dma;
Eric Moore635374e2009-03-09 01:21:12 -06001137 } while (1);
1138
1139
1140 fill_in_last_segment:
1141
1142 /* fill the last segment */
1143 while (sges_left) {
1144 if (sges_left == 1)
1145 ioc->base_add_sg_single(sg_local, sgl_flags_end_buffer |
1146 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1147 else
1148 ioc->base_add_sg_single(sg_local, sgl_flags |
1149 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1150 sg_scmd = sg_next(sg_scmd);
1151 sg_local += ioc->sge_size;
1152 sges_left--;
1153 }
1154
1155 return 0;
1156}
1157
1158/**
Kashyap, Desaia93c6b42010-11-13 04:39:11 +05301159 * _scsih_adjust_queue_depth - setting device queue depth
Eric Moore635374e2009-03-09 01:21:12 -06001160 * @sdev: scsi device struct
1161 * @qdepth: requested queue depth
1162 *
Kashyap, Desaia93c6b42010-11-13 04:39:11 +05301163 *
1164 * Returns nothing
Eric Moore635374e2009-03-09 01:21:12 -06001165 */
Kashyap, Desaia93c6b42010-11-13 04:39:11 +05301166static void
1167_scsih_adjust_queue_depth(struct scsi_device *sdev, int qdepth)
Eric Moore635374e2009-03-09 01:21:12 -06001168{
1169 struct Scsi_Host *shost = sdev->host;
1170 int max_depth;
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301171 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1172 struct MPT2SAS_DEVICE *sas_device_priv_data;
1173 struct MPT2SAS_TARGET *sas_target_priv_data;
1174 struct _sas_device *sas_device;
1175 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06001176
1177 max_depth = shost->can_queue;
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301178
1179 /* limit max device queue for SATA to 32 */
1180 sas_device_priv_data = sdev->hostdata;
1181 if (!sas_device_priv_data)
1182 goto not_sata;
1183 sas_target_priv_data = sas_device_priv_data->sas_target;
1184 if (!sas_target_priv_data)
1185 goto not_sata;
1186 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME))
1187 goto not_sata;
1188 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1189 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1190 sas_device_priv_data->sas_target->sas_address);
1191 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1192 if (sas_device && sas_device->device_info &
1193 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1194 max_depth = MPT2SAS_SATA_QUEUE_DEPTH;
1195
1196 not_sata:
1197
Eric Moore635374e2009-03-09 01:21:12 -06001198 if (!sdev->tagged_supported)
1199 max_depth = 1;
1200 if (qdepth > max_depth)
1201 qdepth = max_depth;
Kashyap, Desaia93c6b42010-11-13 04:39:11 +05301202 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1203}
1204
1205/**
1206 * _scsih_change_queue_depth - setting device queue depth
1207 * @sdev: scsi device struct
1208 * @qdepth: requested queue depth
1209 * @reason: SCSI_QDEPTH_DEFAULT/SCSI_QDEPTH_QFULL/SCSI_QDEPTH_RAMP_UP
1210 * (see include/scsi/scsi_host.h for definition)
1211 *
1212 * Returns queue depth.
1213 */
1214static int
1215_scsih_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
1216{
1217 if (reason == SCSI_QDEPTH_DEFAULT || reason == SCSI_QDEPTH_RAMP_UP)
1218 _scsih_adjust_queue_depth(sdev, qdepth);
1219 else if (reason == SCSI_QDEPTH_QFULL)
1220 scsi_track_queue_full(sdev, qdepth);
1221 else
1222 return -EOPNOTSUPP;
Eric Moore635374e2009-03-09 01:21:12 -06001223
1224 if (sdev->inquiry_len > 7)
1225 sdev_printk(KERN_INFO, sdev, "qdepth(%d), tagged(%d), "
1226 "simple(%d), ordered(%d), scsi_level(%d), cmd_que(%d)\n",
1227 sdev->queue_depth, sdev->tagged_supported, sdev->simple_tags,
1228 sdev->ordered_tags, sdev->scsi_level,
1229 (sdev->inquiry[7] & 2) >> 1);
1230
1231 return sdev->queue_depth;
1232}
1233
1234/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301235 * _scsih_change_queue_type - changing device queue tag type
Eric Moore635374e2009-03-09 01:21:12 -06001236 * @sdev: scsi device struct
1237 * @tag_type: requested tag type
1238 *
1239 * Returns queue tag type.
1240 */
1241static int
Eric Moored5d135b2009-05-18 13:02:08 -06001242_scsih_change_queue_type(struct scsi_device *sdev, int tag_type)
Eric Moore635374e2009-03-09 01:21:12 -06001243{
1244 if (sdev->tagged_supported) {
1245 scsi_set_tag_type(sdev, tag_type);
1246 if (tag_type)
1247 scsi_activate_tcq(sdev, sdev->queue_depth);
1248 else
1249 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1250 } else
1251 tag_type = 0;
1252
1253 return tag_type;
1254}
1255
1256/**
Eric Moored5d135b2009-05-18 13:02:08 -06001257 * _scsih_target_alloc - target add routine
Eric Moore635374e2009-03-09 01:21:12 -06001258 * @starget: scsi target struct
1259 *
1260 * Returns 0 if ok. Any other return is assumed to be an error and
1261 * the device is ignored.
1262 */
1263static int
Eric Moored5d135b2009-05-18 13:02:08 -06001264_scsih_target_alloc(struct scsi_target *starget)
Eric Moore635374e2009-03-09 01:21:12 -06001265{
1266 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1267 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1268 struct MPT2SAS_TARGET *sas_target_priv_data;
1269 struct _sas_device *sas_device;
1270 struct _raid_device *raid_device;
1271 unsigned long flags;
1272 struct sas_rphy *rphy;
1273
1274 sas_target_priv_data = kzalloc(sizeof(struct scsi_target), GFP_KERNEL);
1275 if (!sas_target_priv_data)
1276 return -ENOMEM;
1277
1278 starget->hostdata = sas_target_priv_data;
1279 sas_target_priv_data->starget = starget;
1280 sas_target_priv_data->handle = MPT2SAS_INVALID_DEVICE_HANDLE;
1281
1282 /* RAID volumes */
1283 if (starget->channel == RAID_CHANNEL) {
1284 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1285 raid_device = _scsih_raid_device_find_by_id(ioc, starget->id,
1286 starget->channel);
1287 if (raid_device) {
1288 sas_target_priv_data->handle = raid_device->handle;
1289 sas_target_priv_data->sas_address = raid_device->wwid;
1290 sas_target_priv_data->flags |= MPT_TARGET_FLAGS_VOLUME;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301291 sas_target_priv_data->raid_device = raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06001292 raid_device->starget = starget;
1293 }
1294 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1295 return 0;
1296 }
1297
1298 /* sas/sata devices */
1299 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1300 rphy = dev_to_rphy(starget->dev.parent);
1301 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1302 rphy->identify.sas_address);
1303
1304 if (sas_device) {
1305 sas_target_priv_data->handle = sas_device->handle;
1306 sas_target_priv_data->sas_address = sas_device->sas_address;
1307 sas_device->starget = starget;
1308 sas_device->id = starget->id;
1309 sas_device->channel = starget->channel;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05301310 if (test_bit(sas_device->handle, ioc->pd_handles))
Eric Moore635374e2009-03-09 01:21:12 -06001311 sas_target_priv_data->flags |=
1312 MPT_TARGET_FLAGS_RAID_COMPONENT;
1313 }
1314 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1315
1316 return 0;
1317}
1318
1319/**
Eric Moored5d135b2009-05-18 13:02:08 -06001320 * _scsih_target_destroy - target destroy routine
Eric Moore635374e2009-03-09 01:21:12 -06001321 * @starget: scsi target struct
1322 *
1323 * Returns nothing.
1324 */
1325static void
Eric Moored5d135b2009-05-18 13:02:08 -06001326_scsih_target_destroy(struct scsi_target *starget)
Eric Moore635374e2009-03-09 01:21:12 -06001327{
1328 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1329 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1330 struct MPT2SAS_TARGET *sas_target_priv_data;
1331 struct _sas_device *sas_device;
1332 struct _raid_device *raid_device;
1333 unsigned long flags;
1334 struct sas_rphy *rphy;
1335
1336 sas_target_priv_data = starget->hostdata;
1337 if (!sas_target_priv_data)
1338 return;
1339
1340 if (starget->channel == RAID_CHANNEL) {
1341 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1342 raid_device = _scsih_raid_device_find_by_id(ioc, starget->id,
1343 starget->channel);
1344 if (raid_device) {
1345 raid_device->starget = NULL;
1346 raid_device->sdev = NULL;
1347 }
1348 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1349 goto out;
1350 }
1351
1352 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1353 rphy = dev_to_rphy(starget->dev.parent);
1354 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1355 rphy->identify.sas_address);
Eric Moore8901cbb2009-04-21 15:41:32 -06001356 if (sas_device && (sas_device->starget == starget) &&
1357 (sas_device->id == starget->id) &&
1358 (sas_device->channel == starget->channel))
Eric Moore635374e2009-03-09 01:21:12 -06001359 sas_device->starget = NULL;
1360
1361 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1362
1363 out:
1364 kfree(sas_target_priv_data);
1365 starget->hostdata = NULL;
1366}
1367
1368/**
Eric Moored5d135b2009-05-18 13:02:08 -06001369 * _scsih_slave_alloc - device add routine
Eric Moore635374e2009-03-09 01:21:12 -06001370 * @sdev: scsi device struct
1371 *
1372 * Returns 0 if ok. Any other return is assumed to be an error and
1373 * the device is ignored.
1374 */
1375static int
Eric Moored5d135b2009-05-18 13:02:08 -06001376_scsih_slave_alloc(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001377{
1378 struct Scsi_Host *shost;
1379 struct MPT2SAS_ADAPTER *ioc;
1380 struct MPT2SAS_TARGET *sas_target_priv_data;
1381 struct MPT2SAS_DEVICE *sas_device_priv_data;
1382 struct scsi_target *starget;
1383 struct _raid_device *raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06001384 unsigned long flags;
1385
1386 sas_device_priv_data = kzalloc(sizeof(struct scsi_device), GFP_KERNEL);
1387 if (!sas_device_priv_data)
1388 return -ENOMEM;
1389
1390 sas_device_priv_data->lun = sdev->lun;
1391 sas_device_priv_data->flags = MPT_DEVICE_FLAGS_INIT;
1392
1393 starget = scsi_target(sdev);
1394 sas_target_priv_data = starget->hostdata;
1395 sas_target_priv_data->num_luns++;
1396 sas_device_priv_data->sas_target = sas_target_priv_data;
1397 sdev->hostdata = sas_device_priv_data;
1398 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT))
1399 sdev->no_uld_attach = 1;
1400
1401 shost = dev_to_shost(&starget->dev);
1402 ioc = shost_priv(shost);
1403 if (starget->channel == RAID_CHANNEL) {
1404 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1405 raid_device = _scsih_raid_device_find_by_id(ioc,
1406 starget->id, starget->channel);
1407 if (raid_device)
1408 raid_device->sdev = sdev; /* raid is single lun */
1409 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06001410 }
1411
Eric Moore635374e2009-03-09 01:21:12 -06001412 return 0;
1413}
1414
1415/**
Eric Moored5d135b2009-05-18 13:02:08 -06001416 * _scsih_slave_destroy - device destroy routine
Eric Moore635374e2009-03-09 01:21:12 -06001417 * @sdev: scsi device struct
1418 *
1419 * Returns nothing.
1420 */
1421static void
Eric Moored5d135b2009-05-18 13:02:08 -06001422_scsih_slave_destroy(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001423{
1424 struct MPT2SAS_TARGET *sas_target_priv_data;
1425 struct scsi_target *starget;
1426
1427 if (!sdev->hostdata)
1428 return;
1429
1430 starget = scsi_target(sdev);
1431 sas_target_priv_data = starget->hostdata;
1432 sas_target_priv_data->num_luns--;
1433 kfree(sdev->hostdata);
1434 sdev->hostdata = NULL;
1435}
1436
1437/**
Eric Moored5d135b2009-05-18 13:02:08 -06001438 * _scsih_display_sata_capabilities - sata capabilities
Eric Moore635374e2009-03-09 01:21:12 -06001439 * @ioc: per adapter object
1440 * @sas_device: the sas_device object
1441 * @sdev: scsi device struct
1442 */
1443static void
Eric Moored5d135b2009-05-18 13:02:08 -06001444_scsih_display_sata_capabilities(struct MPT2SAS_ADAPTER *ioc,
Eric Moore635374e2009-03-09 01:21:12 -06001445 struct _sas_device *sas_device, struct scsi_device *sdev)
1446{
1447 Mpi2ConfigReply_t mpi_reply;
1448 Mpi2SasDevicePage0_t sas_device_pg0;
1449 u32 ioc_status;
1450 u16 flags;
1451 u32 device_info;
1452
1453 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
1454 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, sas_device->handle))) {
1455 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1456 ioc->name, __FILE__, __LINE__, __func__);
1457 return;
1458 }
1459
1460 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1461 MPI2_IOCSTATUS_MASK;
1462 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
1463 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1464 ioc->name, __FILE__, __LINE__, __func__);
1465 return;
1466 }
1467
1468 flags = le16_to_cpu(sas_device_pg0.Flags);
Kashyap, Desaie94f6742010-03-17 16:24:52 +05301469 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
Eric Moore635374e2009-03-09 01:21:12 -06001470
1471 sdev_printk(KERN_INFO, sdev,
1472 "atapi(%s), ncq(%s), asyn_notify(%s), smart(%s), fua(%s), "
1473 "sw_preserve(%s)\n",
1474 (device_info & MPI2_SAS_DEVICE_INFO_ATAPI_DEVICE) ? "y" : "n",
1475 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_NCQ_SUPPORTED) ? "y" : "n",
1476 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_ASYNCHRONOUS_NOTIFY) ? "y" :
1477 "n",
1478 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_SMART_SUPPORTED) ? "y" : "n",
1479 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_FUA_SUPPORTED) ? "y" : "n",
1480 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_SW_PRESERVE) ? "y" : "n");
1481}
1482
1483/**
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301484 * _scsih_is_raid - return boolean indicating device is raid volume
1485 * @dev the device struct object
1486 */
1487static int
1488_scsih_is_raid(struct device *dev)
1489{
1490 struct scsi_device *sdev = to_scsi_device(dev);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301491 struct MPT2SAS_ADAPTER *ioc = shost_priv(sdev->host);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301492
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301493 if (ioc->is_warpdrive)
1494 return 0;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301495 return (sdev->channel == RAID_CHANNEL) ? 1 : 0;
1496}
1497
1498/**
1499 * _scsih_get_resync - get raid volume resync percent complete
1500 * @dev the device struct object
1501 */
1502static void
1503_scsih_get_resync(struct device *dev)
1504{
1505 struct scsi_device *sdev = to_scsi_device(dev);
1506 struct MPT2SAS_ADAPTER *ioc = shost_priv(sdev->host);
1507 static struct _raid_device *raid_device;
1508 unsigned long flags;
1509 Mpi2RaidVolPage0_t vol_pg0;
1510 Mpi2ConfigReply_t mpi_reply;
1511 u32 volume_status_flags;
1512 u8 percent_complete = 0;
1513
1514 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1515 raid_device = _scsih_raid_device_find_by_id(ioc, sdev->id,
1516 sdev->channel);
1517 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1518
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301519 if (!raid_device || ioc->is_warpdrive)
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301520 goto out;
1521
1522 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, &vol_pg0,
1523 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle,
1524 sizeof(Mpi2RaidVolPage0_t))) {
1525 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1526 ioc->name, __FILE__, __LINE__, __func__);
1527 goto out;
1528 }
1529
1530 volume_status_flags = le32_to_cpu(vol_pg0.VolumeStatusFlags);
1531 if (volume_status_flags & MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS)
1532 percent_complete = raid_device->percent_complete;
1533 out:
1534 raid_set_resync(mpt2sas_raid_template, dev, percent_complete);
1535}
1536
1537/**
1538 * _scsih_get_state - get raid volume level
1539 * @dev the device struct object
1540 */
1541static void
1542_scsih_get_state(struct device *dev)
1543{
1544 struct scsi_device *sdev = to_scsi_device(dev);
1545 struct MPT2SAS_ADAPTER *ioc = shost_priv(sdev->host);
1546 static struct _raid_device *raid_device;
1547 unsigned long flags;
1548 Mpi2RaidVolPage0_t vol_pg0;
1549 Mpi2ConfigReply_t mpi_reply;
1550 u32 volstate;
1551 enum raid_state state = RAID_STATE_UNKNOWN;
1552
1553 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1554 raid_device = _scsih_raid_device_find_by_id(ioc, sdev->id,
1555 sdev->channel);
1556 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1557
1558 if (!raid_device)
1559 goto out;
1560
1561 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, &vol_pg0,
1562 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle,
1563 sizeof(Mpi2RaidVolPage0_t))) {
1564 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1565 ioc->name, __FILE__, __LINE__, __func__);
1566 goto out;
1567 }
1568
1569 volstate = le32_to_cpu(vol_pg0.VolumeStatusFlags);
1570 if (volstate & MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS) {
1571 state = RAID_STATE_RESYNCING;
1572 goto out;
1573 }
1574
1575 switch (vol_pg0.VolumeState) {
1576 case MPI2_RAID_VOL_STATE_OPTIMAL:
1577 case MPI2_RAID_VOL_STATE_ONLINE:
1578 state = RAID_STATE_ACTIVE;
1579 break;
1580 case MPI2_RAID_VOL_STATE_DEGRADED:
1581 state = RAID_STATE_DEGRADED;
1582 break;
1583 case MPI2_RAID_VOL_STATE_FAILED:
1584 case MPI2_RAID_VOL_STATE_MISSING:
1585 state = RAID_STATE_OFFLINE;
1586 break;
1587 }
1588 out:
1589 raid_set_state(mpt2sas_raid_template, dev, state);
1590}
1591
1592/**
1593 * _scsih_set_level - set raid level
1594 * @sdev: scsi device struct
1595 * @raid_device: raid_device object
1596 */
1597static void
1598_scsih_set_level(struct scsi_device *sdev, struct _raid_device *raid_device)
1599{
1600 enum raid_level level = RAID_LEVEL_UNKNOWN;
1601
1602 switch (raid_device->volume_type) {
1603 case MPI2_RAID_VOL_TYPE_RAID0:
1604 level = RAID_LEVEL_0;
1605 break;
1606 case MPI2_RAID_VOL_TYPE_RAID10:
1607 level = RAID_LEVEL_10;
1608 break;
1609 case MPI2_RAID_VOL_TYPE_RAID1E:
1610 level = RAID_LEVEL_1E;
1611 break;
1612 case MPI2_RAID_VOL_TYPE_RAID1:
1613 level = RAID_LEVEL_1;
1614 break;
1615 }
1616
1617 raid_set_level(mpt2sas_raid_template, &sdev->sdev_gendev, level);
1618}
1619
1620/**
Eric Moore635374e2009-03-09 01:21:12 -06001621 * _scsih_get_volume_capabilities - volume capabilities
1622 * @ioc: per adapter object
1623 * @sas_device: the raid_device object
1624 */
1625static void
1626_scsih_get_volume_capabilities(struct MPT2SAS_ADAPTER *ioc,
1627 struct _raid_device *raid_device)
1628{
1629 Mpi2RaidVolPage0_t *vol_pg0;
1630 Mpi2RaidPhysDiskPage0_t pd_pg0;
1631 Mpi2SasDevicePage0_t sas_device_pg0;
1632 Mpi2ConfigReply_t mpi_reply;
1633 u16 sz;
1634 u8 num_pds;
1635
1636 if ((mpt2sas_config_get_number_pds(ioc, raid_device->handle,
1637 &num_pds)) || !num_pds) {
1638 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1639 ioc->name, __FILE__, __LINE__, __func__);
1640 return;
1641 }
1642
1643 raid_device->num_pds = num_pds;
1644 sz = offsetof(Mpi2RaidVolPage0_t, PhysDisk) + (num_pds *
1645 sizeof(Mpi2RaidVol0PhysDisk_t));
1646 vol_pg0 = kzalloc(sz, GFP_KERNEL);
1647 if (!vol_pg0) {
1648 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1649 ioc->name, __FILE__, __LINE__, __func__);
1650 return;
1651 }
1652
1653 if ((mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, vol_pg0,
1654 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle, sz))) {
1655 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1656 ioc->name, __FILE__, __LINE__, __func__);
1657 kfree(vol_pg0);
1658 return;
1659 }
1660
1661 raid_device->volume_type = vol_pg0->VolumeType;
1662
1663 /* figure out what the underlying devices are by
1664 * obtaining the device_info bits for the 1st device
1665 */
1666 if (!(mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
1667 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM,
1668 vol_pg0->PhysDisk[0].PhysDiskNum))) {
1669 if (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
1670 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
1671 le16_to_cpu(pd_pg0.DevHandle)))) {
1672 raid_device->device_info =
1673 le32_to_cpu(sas_device_pg0.DeviceInfo);
1674 }
1675 }
1676
1677 kfree(vol_pg0);
1678}
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301679/**
1680 * _scsih_disable_ddio - Disable direct I/O for all the volumes
1681 * @ioc: per adapter object
1682 */
1683static void
1684_scsih_disable_ddio(struct MPT2SAS_ADAPTER *ioc)
1685{
1686 Mpi2RaidVolPage1_t vol_pg1;
1687 Mpi2ConfigReply_t mpi_reply;
1688 struct _raid_device *raid_device;
1689 u16 handle;
1690 u16 ioc_status;
1691
1692 handle = 0xFFFF;
1693 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
1694 &vol_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
1695 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1696 MPI2_IOCSTATUS_MASK;
1697 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
1698 break;
1699 handle = le16_to_cpu(vol_pg1.DevHandle);
1700 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
1701 if (raid_device)
1702 raid_device->direct_io_enabled = 0;
1703 }
1704 return;
1705}
1706
1707
1708/**
1709 * _scsih_get_num_volumes - Get number of volumes in the ioc
1710 * @ioc: per adapter object
1711 */
1712static u8
1713_scsih_get_num_volumes(struct MPT2SAS_ADAPTER *ioc)
1714{
1715 Mpi2RaidVolPage1_t vol_pg1;
1716 Mpi2ConfigReply_t mpi_reply;
1717 u16 handle;
1718 u8 vol_cnt = 0;
1719 u16 ioc_status;
1720
1721 handle = 0xFFFF;
1722 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
1723 &vol_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
1724 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1725 MPI2_IOCSTATUS_MASK;
1726 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
1727 break;
1728 vol_cnt++;
1729 handle = le16_to_cpu(vol_pg1.DevHandle);
1730 }
1731 return vol_cnt;
1732}
1733
1734
1735/**
1736 * _scsih_init_warpdrive_properties - Set properties for warpdrive direct I/O.
1737 * @ioc: per adapter object
1738 * @raid_device: the raid_device object
1739 */
1740static void
1741_scsih_init_warpdrive_properties(struct MPT2SAS_ADAPTER *ioc,
1742 struct _raid_device *raid_device)
1743{
1744 Mpi2RaidVolPage0_t *vol_pg0;
1745 Mpi2RaidPhysDiskPage0_t pd_pg0;
1746 Mpi2ConfigReply_t mpi_reply;
1747 u16 sz;
1748 u8 num_pds, count;
1749 u64 mb = 1024 * 1024;
1750 u64 tb_2 = 2 * mb * mb;
1751 u64 capacity;
1752 u32 stripe_sz;
1753 u8 i, stripe_exp;
1754
1755 if (!ioc->is_warpdrive)
1756 return;
1757
1758 if (ioc->mfg_pg10_hide_flag == MFG_PAGE10_EXPOSE_ALL_DISKS) {
1759 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1760 "globally as drives are exposed\n", ioc->name);
1761 return;
1762 }
1763 if (_scsih_get_num_volumes(ioc) > 1) {
1764 _scsih_disable_ddio(ioc);
1765 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1766 "globally as number of drives > 1\n", ioc->name);
1767 return;
1768 }
1769 if ((mpt2sas_config_get_number_pds(ioc, raid_device->handle,
1770 &num_pds)) || !num_pds) {
1771 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1772 "Failure in computing number of drives\n", ioc->name);
1773 return;
1774 }
1775
1776 sz = offsetof(Mpi2RaidVolPage0_t, PhysDisk) + (num_pds *
1777 sizeof(Mpi2RaidVol0PhysDisk_t));
1778 vol_pg0 = kzalloc(sz, GFP_KERNEL);
1779 if (!vol_pg0) {
1780 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1781 "Memory allocation failure for RVPG0\n", ioc->name);
1782 return;
1783 }
1784
1785 if ((mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, vol_pg0,
1786 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle, sz))) {
1787 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1788 "Failure in retrieving RVPG0\n", ioc->name);
1789 kfree(vol_pg0);
1790 return;
1791 }
1792
1793 /*
1794 * WARPDRIVE:If number of physical disks in a volume exceeds the max pds
1795 * assumed for WARPDRIVE, disable direct I/O
1796 */
1797 if (num_pds > MPT_MAX_WARPDRIVE_PDS) {
1798 printk(MPT2SAS_WARN_FMT "WarpDrive : Direct IO is disabled "
1799 "for the drive with handle(0x%04x): num_mem=%d, "
1800 "max_mem_allowed=%d\n", ioc->name, raid_device->handle,
1801 num_pds, MPT_MAX_WARPDRIVE_PDS);
1802 kfree(vol_pg0);
1803 return;
1804 }
1805 for (count = 0; count < num_pds; count++) {
1806 if (mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
1807 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM,
1808 vol_pg0->PhysDisk[count].PhysDiskNum) ||
1809 pd_pg0.DevHandle == MPT2SAS_INVALID_DEVICE_HANDLE) {
1810 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is "
1811 "disabled for the drive with handle(0x%04x) member"
1812 "handle retrieval failed for member number=%d\n",
1813 ioc->name, raid_device->handle,
1814 vol_pg0->PhysDisk[count].PhysDiskNum);
1815 goto out_error;
1816 }
1817 raid_device->pd_handle[count] = le16_to_cpu(pd_pg0.DevHandle);
1818 }
1819
1820 /*
1821 * Assumption for WD: Direct I/O is not supported if the volume is
1822 * not RAID0, if the stripe size is not 64KB, if the block size is
1823 * not 512 and if the volume size is >2TB
1824 */
1825 if (raid_device->volume_type != MPI2_RAID_VOL_TYPE_RAID0 ||
1826 le16_to_cpu(vol_pg0->BlockSize) != 512) {
1827 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1828 "for the drive with handle(0x%04x): type=%d, "
1829 "s_sz=%uK, blk_size=%u\n", ioc->name,
1830 raid_device->handle, raid_device->volume_type,
1831 le32_to_cpu(vol_pg0->StripeSize)/2,
1832 le16_to_cpu(vol_pg0->BlockSize));
1833 goto out_error;
1834 }
1835
1836 capacity = (u64) le16_to_cpu(vol_pg0->BlockSize) *
1837 (le64_to_cpu(vol_pg0->MaxLBA) + 1);
1838
1839 if (capacity > tb_2) {
1840 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1841 "for the drive with handle(0x%04x) since drive sz > 2TB\n",
1842 ioc->name, raid_device->handle);
1843 goto out_error;
1844 }
1845
1846 stripe_sz = le32_to_cpu(vol_pg0->StripeSize);
1847 stripe_exp = 0;
1848 for (i = 0; i < 32; i++) {
1849 if (stripe_sz & 1)
1850 break;
1851 stripe_exp++;
1852 stripe_sz >>= 1;
1853 }
1854 if (i == 32) {
1855 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1856 "for the drive with handle(0x%04x) invalid stripe sz %uK\n",
1857 ioc->name, raid_device->handle,
1858 le32_to_cpu(vol_pg0->StripeSize)/2);
1859 goto out_error;
1860 }
1861 raid_device->stripe_exponent = stripe_exp;
1862 raid_device->direct_io_enabled = 1;
1863
1864 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is Enabled for the drive"
1865 " with handle(0x%04x)\n", ioc->name, raid_device->handle);
1866 /*
1867 * WARPDRIVE: Though the following fields are not used for direct IO,
1868 * stored for future purpose:
1869 */
1870 raid_device->max_lba = le64_to_cpu(vol_pg0->MaxLBA);
1871 raid_device->stripe_sz = le32_to_cpu(vol_pg0->StripeSize);
1872 raid_device->block_sz = le16_to_cpu(vol_pg0->BlockSize);
1873
1874
1875 kfree(vol_pg0);
1876 return;
1877
1878out_error:
1879 raid_device->direct_io_enabled = 0;
1880 for (count = 0; count < num_pds; count++)
1881 raid_device->pd_handle[count] = 0;
1882 kfree(vol_pg0);
1883 return;
1884}
Eric Moore635374e2009-03-09 01:21:12 -06001885
1886/**
Kashyap, Desai84f0b042009-12-16 18:56:28 +05301887 * _scsih_enable_tlr - setting TLR flags
1888 * @ioc: per adapter object
1889 * @sdev: scsi device struct
1890 *
1891 * Enabling Transaction Layer Retries for tape devices when
1892 * vpd page 0x90 is present
1893 *
1894 */
1895static void
1896_scsih_enable_tlr(struct MPT2SAS_ADAPTER *ioc, struct scsi_device *sdev)
1897{
1898 /* only for TAPE */
1899 if (sdev->type != TYPE_TAPE)
1900 return;
1901
1902 if (!(ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_TLR))
1903 return;
1904
1905 sas_enable_tlr(sdev);
1906 sdev_printk(KERN_INFO, sdev, "TLR %s\n",
1907 sas_is_tlr_enabled(sdev) ? "Enabled" : "Disabled");
1908 return;
1909
1910}
1911
1912/**
Eric Moored5d135b2009-05-18 13:02:08 -06001913 * _scsih_slave_configure - device configure routine.
Eric Moore635374e2009-03-09 01:21:12 -06001914 * @sdev: scsi device struct
1915 *
1916 * Returns 0 if ok. Any other return is assumed to be an error and
1917 * the device is ignored.
1918 */
1919static int
Eric Moored5d135b2009-05-18 13:02:08 -06001920_scsih_slave_configure(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001921{
1922 struct Scsi_Host *shost = sdev->host;
1923 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1924 struct MPT2SAS_DEVICE *sas_device_priv_data;
1925 struct MPT2SAS_TARGET *sas_target_priv_data;
1926 struct _sas_device *sas_device;
1927 struct _raid_device *raid_device;
1928 unsigned long flags;
1929 int qdepth;
1930 u8 ssp_target = 0;
1931 char *ds = "";
1932 char *r_level = "";
1933
1934 qdepth = 1;
1935 sas_device_priv_data = sdev->hostdata;
1936 sas_device_priv_data->configured_lun = 1;
1937 sas_device_priv_data->flags &= ~MPT_DEVICE_FLAGS_INIT;
1938 sas_target_priv_data = sas_device_priv_data->sas_target;
1939
1940 /* raid volume handling */
1941 if (sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME) {
1942
1943 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1944 raid_device = _scsih_raid_device_find_by_handle(ioc,
1945 sas_target_priv_data->handle);
1946 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1947 if (!raid_device) {
1948 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1949 ioc->name, __FILE__, __LINE__, __func__);
1950 return 0;
1951 }
1952
1953 _scsih_get_volume_capabilities(ioc, raid_device);
1954
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301955 /*
1956 * WARPDRIVE: Initialize the required data for Direct IO
1957 */
1958 _scsih_init_warpdrive_properties(ioc, raid_device);
1959
Eric Moore635374e2009-03-09 01:21:12 -06001960 /* RAID Queue Depth Support
1961 * IS volume = underlying qdepth of drive type, either
1962 * MPT2SAS_SAS_QUEUE_DEPTH or MPT2SAS_SATA_QUEUE_DEPTH
1963 * IM/IME/R10 = 128 (MPT2SAS_RAID_QUEUE_DEPTH)
1964 */
1965 if (raid_device->device_info &
1966 MPI2_SAS_DEVICE_INFO_SSP_TARGET) {
1967 qdepth = MPT2SAS_SAS_QUEUE_DEPTH;
1968 ds = "SSP";
1969 } else {
1970 qdepth = MPT2SAS_SATA_QUEUE_DEPTH;
1971 if (raid_device->device_info &
1972 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1973 ds = "SATA";
1974 else
1975 ds = "STP";
1976 }
1977
1978 switch (raid_device->volume_type) {
1979 case MPI2_RAID_VOL_TYPE_RAID0:
1980 r_level = "RAID0";
1981 break;
1982 case MPI2_RAID_VOL_TYPE_RAID1E:
1983 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
Kashyap, Desaied79f122009-08-20 13:23:49 +05301984 if (ioc->manu_pg10.OEMIdentifier &&
Kashyap, Desaic97951e2011-06-14 10:54:56 +05301985 (le32_to_cpu(ioc->manu_pg10.GenericFlags0) &
Kashyap, Desaied79f122009-08-20 13:23:49 +05301986 MFG10_GF0_R10_DISPLAY) &&
1987 !(raid_device->num_pds % 2))
1988 r_level = "RAID10";
1989 else
1990 r_level = "RAID1E";
Eric Moore635374e2009-03-09 01:21:12 -06001991 break;
1992 case MPI2_RAID_VOL_TYPE_RAID1:
1993 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
1994 r_level = "RAID1";
1995 break;
1996 case MPI2_RAID_VOL_TYPE_RAID10:
1997 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
1998 r_level = "RAID10";
1999 break;
2000 case MPI2_RAID_VOL_TYPE_UNKNOWN:
2001 default:
2002 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
2003 r_level = "RAIDX";
2004 break;
2005 }
2006
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302007 if (!ioc->hide_ir_msg)
2008 sdev_printk(KERN_INFO, sdev, "%s: handle(0x%04x), "
2009 "wwid(0x%016llx), pd_count(%d), type(%s)\n",
2010 r_level, raid_device->handle,
2011 (unsigned long long)raid_device->wwid,
2012 raid_device->num_pds, ds);
Mike Christiee881a172009-10-15 17:46:39 -07002013 _scsih_change_queue_depth(sdev, qdepth, SCSI_QDEPTH_DEFAULT);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05302014 /* raid transport support */
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302015 if (!ioc->is_warpdrive)
2016 _scsih_set_level(sdev, raid_device);
Eric Moore635374e2009-03-09 01:21:12 -06002017 return 0;
2018 }
2019
2020 /* non-raid handling */
2021 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2022 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
2023 sas_device_priv_data->sas_target->sas_address);
2024 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2025 if (sas_device) {
2026 if (sas_target_priv_data->flags &
2027 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2028 mpt2sas_config_get_volume_handle(ioc,
2029 sas_device->handle, &sas_device->volume_handle);
2030 mpt2sas_config_get_volume_wwid(ioc,
2031 sas_device->volume_handle,
2032 &sas_device->volume_wwid);
2033 }
2034 if (sas_device->device_info & MPI2_SAS_DEVICE_INFO_SSP_TARGET) {
2035 qdepth = MPT2SAS_SAS_QUEUE_DEPTH;
2036 ssp_target = 1;
2037 ds = "SSP";
2038 } else {
2039 qdepth = MPT2SAS_SATA_QUEUE_DEPTH;
2040 if (sas_device->device_info &
2041 MPI2_SAS_DEVICE_INFO_STP_TARGET)
2042 ds = "STP";
2043 else if (sas_device->device_info &
2044 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
2045 ds = "SATA";
2046 }
2047
2048 sdev_printk(KERN_INFO, sdev, "%s: handle(0x%04x), "
Kashyap, Desai7fbae672010-06-17 13:45:17 +05302049 "sas_addr(0x%016llx), phy(%d), device_name(0x%016llx)\n",
Eric Moore635374e2009-03-09 01:21:12 -06002050 ds, sas_device->handle,
2051 (unsigned long long)sas_device->sas_address,
Kashyap, Desai7fbae672010-06-17 13:45:17 +05302052 sas_device->phy,
Eric Moore635374e2009-03-09 01:21:12 -06002053 (unsigned long long)sas_device->device_name);
2054 sdev_printk(KERN_INFO, sdev, "%s: "
2055 "enclosure_logical_id(0x%016llx), slot(%d)\n", ds,
2056 (unsigned long long) sas_device->enclosure_logical_id,
2057 sas_device->slot);
2058
2059 if (!ssp_target)
Eric Moored5d135b2009-05-18 13:02:08 -06002060 _scsih_display_sata_capabilities(ioc, sas_device, sdev);
Eric Moore635374e2009-03-09 01:21:12 -06002061 }
2062
Mike Christiee881a172009-10-15 17:46:39 -07002063 _scsih_change_queue_depth(sdev, qdepth, SCSI_QDEPTH_DEFAULT);
Eric Moore635374e2009-03-09 01:21:12 -06002064
Kashyap, Desai84f0b042009-12-16 18:56:28 +05302065 if (ssp_target) {
Eric Moore635374e2009-03-09 01:21:12 -06002066 sas_read_port_mode_page(sdev);
Kashyap, Desai84f0b042009-12-16 18:56:28 +05302067 _scsih_enable_tlr(ioc, sdev);
2068 }
Eric Moore635374e2009-03-09 01:21:12 -06002069 return 0;
2070}
2071
2072/**
Eric Moored5d135b2009-05-18 13:02:08 -06002073 * _scsih_bios_param - fetch head, sector, cylinder info for a disk
Eric Moore635374e2009-03-09 01:21:12 -06002074 * @sdev: scsi device struct
2075 * @bdev: pointer to block device context
2076 * @capacity: device size (in 512 byte sectors)
2077 * @params: three element array to place output:
2078 * params[0] number of heads (max 255)
2079 * params[1] number of sectors (max 63)
2080 * params[2] number of cylinders
2081 *
2082 * Return nothing.
2083 */
2084static int
Eric Moored5d135b2009-05-18 13:02:08 -06002085_scsih_bios_param(struct scsi_device *sdev, struct block_device *bdev,
Eric Moore635374e2009-03-09 01:21:12 -06002086 sector_t capacity, int params[])
2087{
2088 int heads;
2089 int sectors;
2090 sector_t cylinders;
2091 ulong dummy;
2092
2093 heads = 64;
2094 sectors = 32;
2095
2096 dummy = heads * sectors;
2097 cylinders = capacity;
2098 sector_div(cylinders, dummy);
2099
2100 /*
2101 * Handle extended translation size for logical drives
2102 * > 1Gb
2103 */
2104 if ((ulong)capacity >= 0x200000) {
2105 heads = 255;
2106 sectors = 63;
2107 dummy = heads * sectors;
2108 cylinders = capacity;
2109 sector_div(cylinders, dummy);
2110 }
2111
2112 /* return result */
2113 params[0] = heads;
2114 params[1] = sectors;
2115 params[2] = cylinders;
2116
2117 return 0;
2118}
2119
2120/**
2121 * _scsih_response_code - translation of device response code
2122 * @ioc: per adapter object
2123 * @response_code: response code returned by the device
2124 *
2125 * Return nothing.
2126 */
2127static void
2128_scsih_response_code(struct MPT2SAS_ADAPTER *ioc, u8 response_code)
2129{
2130 char *desc;
2131
2132 switch (response_code) {
2133 case MPI2_SCSITASKMGMT_RSP_TM_COMPLETE:
2134 desc = "task management request completed";
2135 break;
2136 case MPI2_SCSITASKMGMT_RSP_INVALID_FRAME:
2137 desc = "invalid frame";
2138 break;
2139 case MPI2_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED:
2140 desc = "task management request not supported";
2141 break;
2142 case MPI2_SCSITASKMGMT_RSP_TM_FAILED:
2143 desc = "task management request failed";
2144 break;
2145 case MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED:
2146 desc = "task management request succeeded";
2147 break;
2148 case MPI2_SCSITASKMGMT_RSP_TM_INVALID_LUN:
2149 desc = "invalid lun";
2150 break;
2151 case 0xA:
2152 desc = "overlapped tag attempted";
2153 break;
2154 case MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC:
2155 desc = "task queued, however not sent to target";
2156 break;
2157 default:
2158 desc = "unknown";
2159 break;
2160 }
2161 printk(MPT2SAS_WARN_FMT "response_code(0x%01x): %s\n",
2162 ioc->name, response_code, desc);
2163}
2164
2165/**
Eric Moored5d135b2009-05-18 13:02:08 -06002166 * _scsih_tm_done - tm completion routine
Eric Moore635374e2009-03-09 01:21:12 -06002167 * @ioc: per adapter object
2168 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302169 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06002170 * @reply: reply message frame(lower 32bit addr)
2171 * Context: none.
2172 *
2173 * The callback handler when using scsih_issue_tm.
2174 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302175 * Return 1 meaning mf should be freed from _base_interrupt
2176 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06002177 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302178static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302179_scsih_tm_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06002180{
2181 MPI2DefaultReply_t *mpi_reply;
2182
2183 if (ioc->tm_cmds.status == MPT2_CMD_NOT_USED)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302184 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06002185 if (ioc->tm_cmds.smid != smid)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302186 return 1;
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +05302187 mpt2sas_base_flush_reply_queues(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06002188 ioc->tm_cmds.status |= MPT2_CMD_COMPLETE;
2189 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
2190 if (mpi_reply) {
2191 memcpy(ioc->tm_cmds.reply, mpi_reply, mpi_reply->MsgLength*4);
2192 ioc->tm_cmds.status |= MPT2_CMD_REPLY_VALID;
2193 }
2194 ioc->tm_cmds.status &= ~MPT2_CMD_PENDING;
2195 complete(&ioc->tm_cmds.done);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302196 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06002197}
2198
2199/**
2200 * mpt2sas_scsih_set_tm_flag - set per target tm_busy
2201 * @ioc: per adapter object
2202 * @handle: device handle
2203 *
2204 * During taskmangement request, we need to freeze the device queue.
2205 */
2206void
2207mpt2sas_scsih_set_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2208{
2209 struct MPT2SAS_DEVICE *sas_device_priv_data;
2210 struct scsi_device *sdev;
2211 u8 skip = 0;
2212
2213 shost_for_each_device(sdev, ioc->shost) {
2214 if (skip)
2215 continue;
2216 sas_device_priv_data = sdev->hostdata;
2217 if (!sas_device_priv_data)
2218 continue;
2219 if (sas_device_priv_data->sas_target->handle == handle) {
2220 sas_device_priv_data->sas_target->tm_busy = 1;
2221 skip = 1;
2222 ioc->ignore_loginfos = 1;
2223 }
2224 }
2225}
2226
2227/**
2228 * mpt2sas_scsih_clear_tm_flag - clear per target tm_busy
2229 * @ioc: per adapter object
2230 * @handle: device handle
2231 *
2232 * During taskmangement request, we need to freeze the device queue.
2233 */
2234void
2235mpt2sas_scsih_clear_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2236{
2237 struct MPT2SAS_DEVICE *sas_device_priv_data;
2238 struct scsi_device *sdev;
2239 u8 skip = 0;
2240
2241 shost_for_each_device(sdev, ioc->shost) {
2242 if (skip)
2243 continue;
2244 sas_device_priv_data = sdev->hostdata;
2245 if (!sas_device_priv_data)
2246 continue;
2247 if (sas_device_priv_data->sas_target->handle == handle) {
2248 sas_device_priv_data->sas_target->tm_busy = 0;
2249 skip = 1;
2250 ioc->ignore_loginfos = 0;
2251 }
2252 }
2253}
2254
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302255
Eric Moore635374e2009-03-09 01:21:12 -06002256/**
2257 * mpt2sas_scsih_issue_tm - main routine for sending tm requests
2258 * @ioc: per adapter struct
2259 * @device_handle: device handle
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302260 * @channel: the channel assigned by the OS
2261 * @id: the id assigned by the OS
Eric Moore635374e2009-03-09 01:21:12 -06002262 * @lun: lun number
2263 * @type: MPI2_SCSITASKMGMT_TASKTYPE__XXX (defined in mpi2_init.h)
2264 * @smid_task: smid assigned to the task
2265 * @timeout: timeout in seconds
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302266 * @serial_number: the serial_number from scmd
2267 * @m_type: TM_MUTEX_ON or TM_MUTEX_OFF
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302268 * Context: user
Eric Moore635374e2009-03-09 01:21:12 -06002269 *
2270 * A generic API for sending task management requests to firmware.
2271 *
Eric Moore635374e2009-03-09 01:21:12 -06002272 * The callback index is set inside `ioc->tm_cb_idx`.
2273 *
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302274 * Return SUCCESS or FAILED.
Eric Moore635374e2009-03-09 01:21:12 -06002275 */
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302276int
2277mpt2sas_scsih_issue_tm(struct MPT2SAS_ADAPTER *ioc, u16 handle, uint channel,
2278 uint id, uint lun, u8 type, u16 smid_task, ulong timeout,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302279 unsigned long serial_number, enum mutex_type m_type)
Eric Moore635374e2009-03-09 01:21:12 -06002280{
2281 Mpi2SCSITaskManagementRequest_t *mpi_request;
2282 Mpi2SCSITaskManagementReply_t *mpi_reply;
2283 u16 smid = 0;
2284 u32 ioc_state;
2285 unsigned long timeleft;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302286 struct scsiio_tracker *scsi_lookup = NULL;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302287 int rc;
Eric Moore635374e2009-03-09 01:21:12 -06002288
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302289 if (m_type == TM_MUTEX_ON)
2290 mutex_lock(&ioc->tm_cmds.mutex);
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05302291 if (ioc->tm_cmds.status != MPT2_CMD_NOT_USED) {
2292 printk(MPT2SAS_INFO_FMT "%s: tm_cmd busy!!!\n",
2293 __func__, ioc->name);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302294 rc = FAILED;
2295 goto err_out;
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05302296 }
2297
Eric Moore3cb54692010-07-08 14:44:34 -06002298 if (ioc->shost_recovery || ioc->remove_host ||
2299 ioc->pci_error_recovery) {
Eric Moore635374e2009-03-09 01:21:12 -06002300 printk(MPT2SAS_INFO_FMT "%s: host reset in progress!\n",
2301 __func__, ioc->name);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302302 rc = FAILED;
2303 goto err_out;
Eric Moore635374e2009-03-09 01:21:12 -06002304 }
Eric Moore635374e2009-03-09 01:21:12 -06002305
2306 ioc_state = mpt2sas_base_get_iocstate(ioc, 0);
2307 if (ioc_state & MPI2_DOORBELL_USED) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302308 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "unexpected doorbell "
Eric Moore635374e2009-03-09 01:21:12 -06002309 "active!\n", ioc->name));
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302310 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302311 FORCE_BIG_HAMMER);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302312 rc = (!rc) ? SUCCESS : FAILED;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302313 goto err_out;
Eric Moore635374e2009-03-09 01:21:12 -06002314 }
2315
2316 if ((ioc_state & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) {
2317 mpt2sas_base_fault_info(ioc, ioc_state &
2318 MPI2_DOORBELL_DATA_MASK);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302319 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302320 FORCE_BIG_HAMMER);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302321 rc = (!rc) ? SUCCESS : FAILED;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302322 goto err_out;
Eric Moore635374e2009-03-09 01:21:12 -06002323 }
2324
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302325 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06002326 if (!smid) {
2327 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
2328 ioc->name, __func__);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302329 rc = FAILED;
2330 goto err_out;
Eric Moore635374e2009-03-09 01:21:12 -06002331 }
2332
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302333 if (type == MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK)
2334 scsi_lookup = &ioc->scsi_lookup[smid_task - 1];
2335
Eric Moore635374e2009-03-09 01:21:12 -06002336 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "sending tm: handle(0x%04x),"
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302337 " task_type(0x%02x), smid(%d)\n", ioc->name, handle, type,
2338 smid_task));
Eric Moore635374e2009-03-09 01:21:12 -06002339 ioc->tm_cmds.status = MPT2_CMD_PENDING;
2340 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
2341 ioc->tm_cmds.smid = smid;
2342 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302343 memset(ioc->tm_cmds.reply, 0, sizeof(Mpi2SCSITaskManagementReply_t));
Eric Moore635374e2009-03-09 01:21:12 -06002344 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
2345 mpi_request->DevHandle = cpu_to_le16(handle);
2346 mpi_request->TaskType = type;
2347 mpi_request->TaskMID = cpu_to_le16(smid_task);
2348 int_to_scsilun(lun, (struct scsi_lun *)mpi_request->LUN);
2349 mpt2sas_scsih_set_tm_flag(ioc, handle);
Kashyap, Desai5b768582009-08-20 13:24:31 +05302350 init_completion(&ioc->tm_cmds.done);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302351 mpt2sas_base_put_smid_hi_priority(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06002352 timeleft = wait_for_completion_timeout(&ioc->tm_cmds.done, timeout*HZ);
Eric Moore635374e2009-03-09 01:21:12 -06002353 if (!(ioc->tm_cmds.status & MPT2_CMD_COMPLETE)) {
2354 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
2355 ioc->name, __func__);
2356 _debug_dump_mf(mpi_request,
2357 sizeof(Mpi2SCSITaskManagementRequest_t)/4);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302358 if (!(ioc->tm_cmds.status & MPT2_CMD_RESET)) {
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302359 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302360 FORCE_BIG_HAMMER);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302361 rc = (!rc) ? SUCCESS : FAILED;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302362 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
2363 mpt2sas_scsih_clear_tm_flag(ioc, handle);
2364 goto err_out;
2365 }
Eric Moore635374e2009-03-09 01:21:12 -06002366 }
2367
2368 if (ioc->tm_cmds.status & MPT2_CMD_REPLY_VALID) {
2369 mpi_reply = ioc->tm_cmds.reply;
2370 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "complete tm: "
2371 "ioc_status(0x%04x), loginfo(0x%08x), term_count(0x%08x)\n",
2372 ioc->name, le16_to_cpu(mpi_reply->IOCStatus),
2373 le32_to_cpu(mpi_reply->IOCLogInfo),
2374 le32_to_cpu(mpi_reply->TerminationCount)));
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302375 if (ioc->logging_level & MPT_DEBUG_TM) {
Eric Moore635374e2009-03-09 01:21:12 -06002376 _scsih_response_code(ioc, mpi_reply->ResponseCode);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302377 if (mpi_reply->IOCStatus)
2378 _debug_dump_mf(mpi_request,
2379 sizeof(Mpi2SCSITaskManagementRequest_t)/4);
2380 }
Eric Moore635374e2009-03-09 01:21:12 -06002381 }
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302382
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302383 switch (type) {
2384 case MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK:
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302385 rc = SUCCESS;
2386 if (scsi_lookup->scmd == NULL)
2387 break;
2388 rc = FAILED;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302389 break;
2390
2391 case MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET:
2392 if (_scsih_scsi_lookup_find_by_target(ioc, id, channel))
2393 rc = FAILED;
2394 else
2395 rc = SUCCESS;
2396 break;
2397
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302398 case MPI2_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET:
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302399 case MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET:
2400 if (_scsih_scsi_lookup_find_by_lun(ioc, id, lun, channel))
2401 rc = FAILED;
2402 else
2403 rc = SUCCESS;
2404 break;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302405 case MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK:
2406 rc = SUCCESS;
2407 break;
2408 default:
2409 rc = FAILED;
2410 break;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302411 }
2412
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302413 mpt2sas_scsih_clear_tm_flag(ioc, handle);
2414 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302415 if (m_type == TM_MUTEX_ON)
2416 mutex_unlock(&ioc->tm_cmds.mutex);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302417
2418 return rc;
2419
2420 err_out:
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302421 if (m_type == TM_MUTEX_ON)
2422 mutex_unlock(&ioc->tm_cmds.mutex);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302423 return rc;
Eric Moore635374e2009-03-09 01:21:12 -06002424}
2425
2426/**
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302427 * _scsih_tm_display_info - displays info about the device
2428 * @ioc: per adapter struct
2429 * @scmd: pointer to scsi command object
2430 *
2431 * Called by task management callback handlers.
2432 */
2433static void
2434_scsih_tm_display_info(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd *scmd)
2435{
2436 struct scsi_target *starget = scmd->device->sdev_target;
2437 struct MPT2SAS_TARGET *priv_target = starget->hostdata;
2438 struct _sas_device *sas_device = NULL;
2439 unsigned long flags;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302440 char *device_str = NULL;
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302441
2442 if (!priv_target)
2443 return;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302444 if (ioc->hide_ir_msg)
2445 device_str = "WarpDrive";
2446 else
2447 device_str = "volume";
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302448
2449 scsi_print_command(scmd);
2450 if (priv_target->flags & MPT_TARGET_FLAGS_VOLUME) {
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302451 starget_printk(KERN_INFO, starget, "%s handle(0x%04x), "
2452 "%s wwid(0x%016llx)\n", device_str, priv_target->handle,
2453 device_str, (unsigned long long)priv_target->sas_address);
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302454 } else {
2455 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2456 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
2457 priv_target->sas_address);
2458 if (sas_device) {
2459 if (priv_target->flags &
2460 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2461 starget_printk(KERN_INFO, starget,
2462 "volume handle(0x%04x), "
2463 "volume wwid(0x%016llx)\n",
2464 sas_device->volume_handle,
2465 (unsigned long long)sas_device->volume_wwid);
2466 }
2467 starget_printk(KERN_INFO, starget,
2468 "handle(0x%04x), sas_address(0x%016llx), phy(%d)\n",
2469 sas_device->handle,
2470 (unsigned long long)sas_device->sas_address,
2471 sas_device->phy);
2472 starget_printk(KERN_INFO, starget,
2473 "enclosure_logical_id(0x%016llx), slot(%d)\n",
2474 (unsigned long long)sas_device->enclosure_logical_id,
2475 sas_device->slot);
2476 }
2477 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2478 }
2479}
2480
2481/**
Eric Moored5d135b2009-05-18 13:02:08 -06002482 * _scsih_abort - eh threads main abort routine
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302483 * @scmd: pointer to scsi command object
Eric Moore635374e2009-03-09 01:21:12 -06002484 *
2485 * Returns SUCCESS if command aborted else FAILED
2486 */
2487static int
Eric Moored5d135b2009-05-18 13:02:08 -06002488_scsih_abort(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002489{
2490 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2491 struct MPT2SAS_DEVICE *sas_device_priv_data;
2492 u16 smid;
2493 u16 handle;
2494 int r;
Eric Moore635374e2009-03-09 01:21:12 -06002495
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302496 sdev_printk(KERN_INFO, scmd->device, "attempting task abort! "
2497 "scmd(%p)\n", scmd);
2498 _scsih_tm_display_info(ioc, scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002499
2500 sas_device_priv_data = scmd->device->hostdata;
2501 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302502 sdev_printk(KERN_INFO, scmd->device, "device been deleted! "
2503 "scmd(%p)\n", scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002504 scmd->result = DID_NO_CONNECT << 16;
2505 scmd->scsi_done(scmd);
2506 r = SUCCESS;
2507 goto out;
2508 }
2509
2510 /* search for the command */
2511 smid = _scsih_scsi_lookup_find_by_scmd(ioc, scmd);
2512 if (!smid) {
2513 scmd->result = DID_RESET << 16;
2514 r = SUCCESS;
2515 goto out;
2516 }
2517
2518 /* for hidden raid components and volumes this is not supported */
2519 if (sas_device_priv_data->sas_target->flags &
2520 MPT_TARGET_FLAGS_RAID_COMPONENT ||
2521 sas_device_priv_data->sas_target->flags & MPT_TARGET_FLAGS_VOLUME) {
2522 scmd->result = DID_RESET << 16;
2523 r = FAILED;
2524 goto out;
2525 }
2526
Kashyap, Desaifa7f3162009-09-23 17:26:58 +05302527 mpt2sas_halt_firmware(ioc);
2528
Eric Moore635374e2009-03-09 01:21:12 -06002529 handle = sas_device_priv_data->sas_target->handle;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302530 r = mpt2sas_scsih_issue_tm(ioc, handle, scmd->device->channel,
2531 scmd->device->id, scmd->device->lun,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302532 MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK, smid, 30,
2533 scmd->serial_number, TM_MUTEX_ON);
Eric Moore635374e2009-03-09 01:21:12 -06002534
2535 out:
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302536 sdev_printk(KERN_INFO, scmd->device, "task abort: %s scmd(%p)\n",
2537 ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002538 return r;
2539}
2540
Eric Moore635374e2009-03-09 01:21:12 -06002541/**
Eric Moored5d135b2009-05-18 13:02:08 -06002542 * _scsih_dev_reset - eh threads main device reset routine
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302543 * @scmd: pointer to scsi command object
Eric Moore635374e2009-03-09 01:21:12 -06002544 *
2545 * Returns SUCCESS if command aborted else FAILED
2546 */
2547static int
Eric Moored5d135b2009-05-18 13:02:08 -06002548_scsih_dev_reset(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002549{
2550 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2551 struct MPT2SAS_DEVICE *sas_device_priv_data;
2552 struct _sas_device *sas_device;
2553 unsigned long flags;
2554 u16 handle;
2555 int r;
2556
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302557 struct scsi_target *starget = scmd->device->sdev_target;
2558
Kashyap, Desai37aaa782010-11-13 04:41:32 +05302559 starget_printk(KERN_INFO, starget, "attempting device reset! "
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302560 "scmd(%p)\n", scmd);
2561 _scsih_tm_display_info(ioc, scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002562
2563 sas_device_priv_data = scmd->device->hostdata;
2564 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
Kashyap, Desai37aaa782010-11-13 04:41:32 +05302565 starget_printk(KERN_INFO, starget, "device been deleted! "
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302566 "scmd(%p)\n", scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002567 scmd->result = DID_NO_CONNECT << 16;
2568 scmd->scsi_done(scmd);
2569 r = SUCCESS;
2570 goto out;
2571 }
2572
2573 /* for hidden raid components obtain the volume_handle */
2574 handle = 0;
2575 if (sas_device_priv_data->sas_target->flags &
2576 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2577 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2578 sas_device = _scsih_sas_device_find_by_handle(ioc,
2579 sas_device_priv_data->sas_target->handle);
2580 if (sas_device)
2581 handle = sas_device->volume_handle;
2582 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2583 } else
2584 handle = sas_device_priv_data->sas_target->handle;
2585
2586 if (!handle) {
2587 scmd->result = DID_RESET << 16;
2588 r = FAILED;
2589 goto out;
2590 }
2591
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302592 r = mpt2sas_scsih_issue_tm(ioc, handle, scmd->device->channel,
2593 scmd->device->id, scmd->device->lun,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302594 MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET, 0, 30, 0,
2595 TM_MUTEX_ON);
Eric Moore993e0da2009-05-18 13:00:45 -06002596
2597 out:
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302598 sdev_printk(KERN_INFO, scmd->device, "device reset: %s scmd(%p)\n",
2599 ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
Eric Moore993e0da2009-05-18 13:00:45 -06002600 return r;
2601}
2602
2603/**
Eric Moored5d135b2009-05-18 13:02:08 -06002604 * _scsih_target_reset - eh threads main target reset routine
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302605 * @scmd: pointer to scsi command object
Eric Moore993e0da2009-05-18 13:00:45 -06002606 *
2607 * Returns SUCCESS if command aborted else FAILED
2608 */
2609static int
Eric Moored5d135b2009-05-18 13:02:08 -06002610_scsih_target_reset(struct scsi_cmnd *scmd)
Eric Moore993e0da2009-05-18 13:00:45 -06002611{
2612 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2613 struct MPT2SAS_DEVICE *sas_device_priv_data;
2614 struct _sas_device *sas_device;
2615 unsigned long flags;
2616 u16 handle;
2617 int r;
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302618 struct scsi_target *starget = scmd->device->sdev_target;
Eric Moore993e0da2009-05-18 13:00:45 -06002619
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302620 starget_printk(KERN_INFO, starget, "attempting target reset! "
2621 "scmd(%p)\n", scmd);
2622 _scsih_tm_display_info(ioc, scmd);
Eric Moore993e0da2009-05-18 13:00:45 -06002623
2624 sas_device_priv_data = scmd->device->hostdata;
2625 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302626 starget_printk(KERN_INFO, starget, "target been deleted! "
2627 "scmd(%p)\n", scmd);
Eric Moore993e0da2009-05-18 13:00:45 -06002628 scmd->result = DID_NO_CONNECT << 16;
2629 scmd->scsi_done(scmd);
2630 r = SUCCESS;
2631 goto out;
2632 }
2633
2634 /* for hidden raid components obtain the volume_handle */
2635 handle = 0;
2636 if (sas_device_priv_data->sas_target->flags &
2637 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2638 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2639 sas_device = _scsih_sas_device_find_by_handle(ioc,
2640 sas_device_priv_data->sas_target->handle);
2641 if (sas_device)
2642 handle = sas_device->volume_handle;
2643 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2644 } else
2645 handle = sas_device_priv_data->sas_target->handle;
2646
2647 if (!handle) {
2648 scmd->result = DID_RESET << 16;
2649 r = FAILED;
2650 goto out;
2651 }
2652
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302653 r = mpt2sas_scsih_issue_tm(ioc, handle, scmd->device->channel,
2654 scmd->device->id, 0, MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET, 0,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302655 30, 0, TM_MUTEX_ON);
Eric Moore635374e2009-03-09 01:21:12 -06002656
2657 out:
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302658 starget_printk(KERN_INFO, starget, "target reset: %s scmd(%p)\n",
2659 ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002660 return r;
2661}
2662
2663/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302664 * _scsih_host_reset - eh threads main host reset routine
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302665 * @scmd: pointer to scsi command object
Eric Moore635374e2009-03-09 01:21:12 -06002666 *
2667 * Returns SUCCESS if command aborted else FAILED
2668 */
2669static int
Eric Moored5d135b2009-05-18 13:02:08 -06002670_scsih_host_reset(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002671{
2672 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2673 int r, retval;
2674
2675 printk(MPT2SAS_INFO_FMT "attempting host reset! scmd(%p)\n",
2676 ioc->name, scmd);
2677 scsi_print_command(scmd);
2678
2679 retval = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
2680 FORCE_BIG_HAMMER);
2681 r = (retval < 0) ? FAILED : SUCCESS;
2682 printk(MPT2SAS_INFO_FMT "host reset: %s scmd(%p)\n",
2683 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2684
2685 return r;
2686}
2687
2688/**
2689 * _scsih_fw_event_add - insert and queue up fw_event
2690 * @ioc: per adapter object
2691 * @fw_event: object describing the event
2692 * Context: This function will acquire ioc->fw_event_lock.
2693 *
2694 * This adds the firmware event object into link list, then queues it up to
2695 * be processed from user context.
2696 *
2697 * Return nothing.
2698 */
2699static void
2700_scsih_fw_event_add(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work *fw_event)
2701{
2702 unsigned long flags;
2703
2704 if (ioc->firmware_event_thread == NULL)
2705 return;
2706
2707 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2708 list_add_tail(&fw_event->list, &ioc->fw_event_list);
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302709 INIT_DELAYED_WORK(&fw_event->delayed_work, _firmware_event_work);
2710 queue_delayed_work(ioc->firmware_event_thread,
2711 &fw_event->delayed_work, 0);
Eric Moore635374e2009-03-09 01:21:12 -06002712 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2713}
2714
2715/**
2716 * _scsih_fw_event_free - delete fw_event
2717 * @ioc: per adapter object
2718 * @fw_event: object describing the event
2719 * Context: This function will acquire ioc->fw_event_lock.
2720 *
2721 * This removes firmware event object from link list, frees associated memory.
2722 *
2723 * Return nothing.
2724 */
2725static void
2726_scsih_fw_event_free(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work
2727 *fw_event)
2728{
2729 unsigned long flags;
2730
2731 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2732 list_del(&fw_event->list);
2733 kfree(fw_event->event_data);
2734 kfree(fw_event);
2735 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2736}
2737
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302738
Eric Moore635374e2009-03-09 01:21:12 -06002739/**
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302740 * _scsih_error_recovery_delete_devices - remove devices not responding
Eric Moore635374e2009-03-09 01:21:12 -06002741 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06002742 *
2743 * Return nothing.
2744 */
2745static void
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302746_scsih_error_recovery_delete_devices(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06002747{
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302748 struct fw_event_work *fw_event;
2749
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302750 if (ioc->is_driver_loading)
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302751 return;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302752 fw_event->event = MPT2SAS_REMOVE_UNRESPONDING_DEVICES;
2753 fw_event->ioc = ioc;
2754 _scsih_fw_event_add(ioc, fw_event);
2755}
2756
2757/**
2758 * mpt2sas_port_enable_complete - port enable completed (fake event)
2759 * @ioc: per adapter object
2760 *
2761 * Return nothing.
2762 */
2763void
2764mpt2sas_port_enable_complete(struct MPT2SAS_ADAPTER *ioc)
2765{
2766 struct fw_event_work *fw_event;
2767
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302768 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
2769 if (!fw_event)
2770 return;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302771 fw_event->event = MPT2SAS_PORT_ENABLE_COMPLETE;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302772 fw_event->ioc = ioc;
2773 _scsih_fw_event_add(ioc, fw_event);
2774}
2775
2776/**
2777 * _scsih_fw_event_cleanup_queue - cleanup event queue
2778 * @ioc: per adapter object
2779 *
2780 * Walk the firmware event queue, either killing timers, or waiting
2781 * for outstanding events to complete
2782 *
2783 * Return nothing.
2784 */
2785static void
2786_scsih_fw_event_cleanup_queue(struct MPT2SAS_ADAPTER *ioc)
2787{
2788 struct fw_event_work *fw_event, *next;
2789
2790 if (list_empty(&ioc->fw_event_list) ||
2791 !ioc->firmware_event_thread || in_interrupt())
Eric Moore635374e2009-03-09 01:21:12 -06002792 return;
2793
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302794 list_for_each_entry_safe(fw_event, next, &ioc->fw_event_list, list) {
2795 if (cancel_delayed_work(&fw_event->delayed_work)) {
2796 _scsih_fw_event_free(ioc, fw_event);
2797 continue;
2798 }
2799 fw_event->cancel_pending_work = 1;
2800 }
Eric Moore635374e2009-03-09 01:21:12 -06002801}
2802
Eric Moore635374e2009-03-09 01:21:12 -06002803/**
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302804 * _scsih_ublock_io_all_device - unblock every device
2805 * @ioc: per adapter object
2806 *
2807 * change the device state from block to running
2808 */
2809static void
2810_scsih_ublock_io_all_device(struct MPT2SAS_ADAPTER *ioc)
2811{
2812 struct MPT2SAS_DEVICE *sas_device_priv_data;
2813 struct scsi_device *sdev;
2814
2815 shost_for_each_device(sdev, ioc->shost) {
2816 sas_device_priv_data = sdev->hostdata;
2817 if (!sas_device_priv_data)
2818 continue;
2819 if (!sas_device_priv_data->block)
2820 continue;
2821 sas_device_priv_data->block = 0;
2822 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev, "device_running, "
2823 "handle(0x%04x)\n",
2824 sas_device_priv_data->sas_target->handle));
2825 scsi_internal_device_unblock(sdev);
2826 }
2827}
2828/**
Eric Moore635374e2009-03-09 01:21:12 -06002829 * _scsih_ublock_io_device - set the device state to SDEV_RUNNING
2830 * @ioc: per adapter object
2831 * @handle: device handle
2832 *
2833 * During device pull we need to appropiately set the sdev state.
2834 */
2835static void
2836_scsih_ublock_io_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2837{
2838 struct MPT2SAS_DEVICE *sas_device_priv_data;
2839 struct scsi_device *sdev;
2840
2841 shost_for_each_device(sdev, ioc->shost) {
2842 sas_device_priv_data = sdev->hostdata;
2843 if (!sas_device_priv_data)
2844 continue;
2845 if (!sas_device_priv_data->block)
2846 continue;
2847 if (sas_device_priv_data->sas_target->handle == handle) {
2848 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev,
2849 MPT2SAS_INFO_FMT "SDEV_RUNNING: "
2850 "handle(0x%04x)\n", ioc->name, handle));
2851 sas_device_priv_data->block = 0;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05302852 scsi_internal_device_unblock(sdev);
Eric Moore635374e2009-03-09 01:21:12 -06002853 }
2854 }
2855}
2856
2857/**
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302858 * _scsih_block_io_all_device - set the device state to SDEV_BLOCK
2859 * @ioc: per adapter object
2860 * @handle: device handle
2861 *
2862 * During device pull we need to appropiately set the sdev state.
2863 */
2864static void
2865_scsih_block_io_all_device(struct MPT2SAS_ADAPTER *ioc)
2866{
2867 struct MPT2SAS_DEVICE *sas_device_priv_data;
2868 struct scsi_device *sdev;
2869
2870 shost_for_each_device(sdev, ioc->shost) {
2871 sas_device_priv_data = sdev->hostdata;
2872 if (!sas_device_priv_data)
2873 continue;
2874 if (sas_device_priv_data->block)
2875 continue;
2876 sas_device_priv_data->block = 1;
2877 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev, "device_blocked, "
2878 "handle(0x%04x)\n",
2879 sas_device_priv_data->sas_target->handle));
2880 scsi_internal_device_block(sdev);
2881 }
2882}
2883
2884
2885/**
Eric Moore635374e2009-03-09 01:21:12 -06002886 * _scsih_block_io_device - set the device state to SDEV_BLOCK
2887 * @ioc: per adapter object
2888 * @handle: device handle
2889 *
2890 * During device pull we need to appropiately set the sdev state.
2891 */
2892static void
2893_scsih_block_io_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2894{
2895 struct MPT2SAS_DEVICE *sas_device_priv_data;
2896 struct scsi_device *sdev;
2897
2898 shost_for_each_device(sdev, ioc->shost) {
2899 sas_device_priv_data = sdev->hostdata;
2900 if (!sas_device_priv_data)
2901 continue;
2902 if (sas_device_priv_data->block)
2903 continue;
2904 if (sas_device_priv_data->sas_target->handle == handle) {
2905 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev,
2906 MPT2SAS_INFO_FMT "SDEV_BLOCK: "
2907 "handle(0x%04x)\n", ioc->name, handle));
2908 sas_device_priv_data->block = 1;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05302909 scsi_internal_device_block(sdev);
Eric Moore635374e2009-03-09 01:21:12 -06002910 }
2911 }
2912}
2913
2914/**
2915 * _scsih_block_io_to_children_attached_to_ex
2916 * @ioc: per adapter object
2917 * @sas_expander: the sas_device object
2918 *
2919 * This routine set sdev state to SDEV_BLOCK for all devices
2920 * attached to this expander. This function called when expander is
2921 * pulled.
2922 */
2923static void
2924_scsih_block_io_to_children_attached_to_ex(struct MPT2SAS_ADAPTER *ioc,
2925 struct _sas_node *sas_expander)
2926{
2927 struct _sas_port *mpt2sas_port;
2928 struct _sas_device *sas_device;
2929 struct _sas_node *expander_sibling;
2930 unsigned long flags;
2931
2932 if (!sas_expander)
2933 return;
2934
2935 list_for_each_entry(mpt2sas_port,
2936 &sas_expander->sas_port_list, port_list) {
2937 if (mpt2sas_port->remote_identify.device_type ==
2938 SAS_END_DEVICE) {
2939 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2940 sas_device =
2941 mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
2942 mpt2sas_port->remote_identify.sas_address);
2943 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2944 if (!sas_device)
2945 continue;
2946 _scsih_block_io_device(ioc, sas_device->handle);
2947 }
2948 }
2949
2950 list_for_each_entry(mpt2sas_port,
2951 &sas_expander->sas_port_list, port_list) {
2952
2953 if (mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05302954 SAS_EDGE_EXPANDER_DEVICE ||
Eric Moore635374e2009-03-09 01:21:12 -06002955 mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05302956 SAS_FANOUT_EXPANDER_DEVICE) {
Eric Moore635374e2009-03-09 01:21:12 -06002957
2958 spin_lock_irqsave(&ioc->sas_node_lock, flags);
2959 expander_sibling =
2960 mpt2sas_scsih_expander_find_by_sas_address(
2961 ioc, mpt2sas_port->remote_identify.sas_address);
2962 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
2963 _scsih_block_io_to_children_attached_to_ex(ioc,
2964 expander_sibling);
2965 }
2966 }
2967}
2968
2969/**
2970 * _scsih_block_io_to_children_attached_directly
2971 * @ioc: per adapter object
2972 * @event_data: topology change event data
2973 *
2974 * This routine set sdev state to SDEV_BLOCK for all devices
2975 * direct attached during device pull.
2976 */
2977static void
2978_scsih_block_io_to_children_attached_directly(struct MPT2SAS_ADAPTER *ioc,
2979 Mpi2EventDataSasTopologyChangeList_t *event_data)
2980{
2981 int i;
2982 u16 handle;
2983 u16 reason_code;
2984 u8 phy_number;
2985
2986 for (i = 0; i < event_data->NumEntries; i++) {
2987 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
2988 if (!handle)
2989 continue;
2990 phy_number = event_data->StartPhyNum + i;
2991 reason_code = event_data->PHY[i].PhyStatus &
2992 MPI2_EVENT_SAS_TOPO_RC_MASK;
2993 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING)
2994 _scsih_block_io_device(ioc, handle);
2995 }
2996}
2997
2998/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302999 * _scsih_tm_tr_send - send task management request
3000 * @ioc: per adapter object
3001 * @handle: device handle
3002 * Context: interrupt time.
3003 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003004 * This code is to initiate the device removal handshake protocol
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303005 * with controller firmware. This function will issue target reset
3006 * using high priority request queue. It will send a sas iounit
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003007 * control request (MPI2_SAS_OP_REMOVE_DEVICE) from this completion.
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303008 *
3009 * This is designed to send muliple task management request at the same
3010 * time to the fifo. If the fifo is full, we will append the request,
3011 * and process it in a future completion.
3012 */
3013static void
3014_scsih_tm_tr_send(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3015{
3016 Mpi2SCSITaskManagementRequest_t *mpi_request;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303017 u16 smid;
3018 struct _sas_device *sas_device;
nagalakshmi.nandigama@lsi.comf3db0322011-10-19 15:37:14 +05303019 struct MPT2SAS_TARGET *sas_target_priv_data = NULL;
3020 u64 sas_address = 0;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303021 unsigned long flags;
3022 struct _tr_list *delayed_tr;
nagalakshmi.nandigama@lsi.comf881cea2011-10-19 15:37:00 +05303023 u32 ioc_state;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303024
nagalakshmi.nandigama@lsi.comf881cea2011-10-19 15:37:00 +05303025 if (ioc->remove_host) {
3026 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host has been "
3027 "removed: handle(0x%04x)\n", __func__, ioc->name, handle));
3028 return;
3029 } else if (ioc->pci_error_recovery) {
3030 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host in pci "
3031 "error recovery: handle(0x%04x)\n", __func__, ioc->name,
3032 handle));
3033 return;
3034 }
3035 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3036 if (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
3037 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host is not "
3038 "operational: handle(0x%04x)\n", __func__, ioc->name,
3039 handle));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303040 return;
3041 }
3042
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303043 /* if PD, then return */
3044 if (test_bit(handle, ioc->pd_handles))
3045 return;
3046
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303047 spin_lock_irqsave(&ioc->sas_device_lock, flags);
3048 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303049 if (sas_device && sas_device->starget &&
3050 sas_device->starget->hostdata) {
3051 sas_target_priv_data = sas_device->starget->hostdata;
3052 sas_target_priv_data->deleted = 1;
nagalakshmi.nandigama@lsi.comf3db0322011-10-19 15:37:14 +05303053 sas_address = sas_device->sas_address;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303054 }
3055 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303056
nagalakshmi.nandigama@lsi.comf3db0322011-10-19 15:37:14 +05303057 if (sas_target_priv_data) {
3058 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "setting delete flag: "
3059 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc->name, handle,
3060 (unsigned long long)sas_address));
3061 _scsih_ublock_io_device(ioc, handle);
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05303062 sas_target_priv_data->handle = MPT2SAS_INVALID_DEVICE_HANDLE;
nagalakshmi.nandigama@lsi.comf3db0322011-10-19 15:37:14 +05303063 }
3064
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303065 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_tr_cb_idx);
3066 if (!smid) {
3067 delayed_tr = kzalloc(sizeof(*delayed_tr), GFP_ATOMIC);
3068 if (!delayed_tr)
3069 return;
3070 INIT_LIST_HEAD(&delayed_tr->list);
3071 delayed_tr->handle = handle;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303072 list_add_tail(&delayed_tr->list, &ioc->delayed_tr_list);
3073 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3074 "DELAYED:tr:handle(0x%04x), (open)\n",
3075 ioc->name, handle));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303076 return;
3077 }
3078
Kashyap, Desai1278b112010-03-09 17:34:13 +05303079 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "tr_send:handle(0x%04x), "
3080 "(open), smid(%d), cb(%d)\n", ioc->name, handle, smid,
3081 ioc->tm_tr_cb_idx));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303082 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3083 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
3084 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
3085 mpi_request->DevHandle = cpu_to_le16(handle);
3086 mpi_request->TaskType = MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303087 mpt2sas_base_put_smid_hi_priority(ioc, smid);
3088}
3089
3090
3091
3092/**
3093 * _scsih_sas_control_complete - completion routine
3094 * @ioc: per adapter object
3095 * @smid: system request message index
3096 * @msix_index: MSIX table index supplied by the OS
3097 * @reply: reply message frame(lower 32bit addr)
3098 * Context: interrupt time.
3099 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003100 * This is the sas iounit control completion routine.
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303101 * This code is part of the code to initiate the device removal
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003102 * handshake protocol with controller firmware.
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303103 *
3104 * Return 1 meaning mf should be freed from _base_interrupt
3105 * 0 means the mf is freed from this function.
3106 */
3107static u8
3108_scsih_sas_control_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid,
3109 u8 msix_index, u32 reply)
3110{
Kashyap, Desai363fa502010-11-13 04:29:20 +05303111#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303112 Mpi2SasIoUnitControlReply_t *mpi_reply =
3113 mpt2sas_base_get_reply_virt_addr(ioc, reply);
Kashyap, Desai363fa502010-11-13 04:29:20 +05303114#endif
Kashyap, Desai1278b112010-03-09 17:34:13 +05303115 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3116 "sc_complete:handle(0x%04x), (open) "
3117 "smid(%d), ioc_status(0x%04x), loginfo(0x%08x)\n",
3118 ioc->name, le16_to_cpu(mpi_reply->DevHandle), smid,
3119 le16_to_cpu(mpi_reply->IOCStatus),
3120 le32_to_cpu(mpi_reply->IOCLogInfo)));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303121 return 1;
3122}
3123
3124/**
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303125 * _scsih_tm_tr_volume_send - send target reset request for volumes
3126 * @ioc: per adapter object
3127 * @handle: device handle
3128 * Context: interrupt time.
3129 *
3130 * This is designed to send muliple task management request at the same
3131 * time to the fifo. If the fifo is full, we will append the request,
3132 * and process it in a future completion.
3133 */
3134static void
3135_scsih_tm_tr_volume_send(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3136{
3137 Mpi2SCSITaskManagementRequest_t *mpi_request;
3138 u16 smid;
3139 struct _tr_list *delayed_tr;
3140
Eric Moore3cb54692010-07-08 14:44:34 -06003141 if (ioc->shost_recovery || ioc->remove_host ||
3142 ioc->pci_error_recovery) {
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303143 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host reset in "
3144 "progress!\n", __func__, ioc->name));
3145 return;
3146 }
3147
3148 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_tr_volume_cb_idx);
3149 if (!smid) {
3150 delayed_tr = kzalloc(sizeof(*delayed_tr), GFP_ATOMIC);
3151 if (!delayed_tr)
3152 return;
3153 INIT_LIST_HEAD(&delayed_tr->list);
3154 delayed_tr->handle = handle;
3155 list_add_tail(&delayed_tr->list, &ioc->delayed_tr_volume_list);
3156 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3157 "DELAYED:tr:handle(0x%04x), (open)\n",
3158 ioc->name, handle));
3159 return;
3160 }
3161
3162 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "tr_send:handle(0x%04x), "
3163 "(open), smid(%d), cb(%d)\n", ioc->name, handle, smid,
3164 ioc->tm_tr_volume_cb_idx));
3165 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3166 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
3167 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
3168 mpi_request->DevHandle = cpu_to_le16(handle);
3169 mpi_request->TaskType = MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET;
3170 mpt2sas_base_put_smid_hi_priority(ioc, smid);
3171}
3172
3173/**
3174 * _scsih_tm_volume_tr_complete - target reset completion
3175 * @ioc: per adapter object
3176 * @smid: system request message index
3177 * @msix_index: MSIX table index supplied by the OS
3178 * @reply: reply message frame(lower 32bit addr)
3179 * Context: interrupt time.
3180 *
3181 * Return 1 meaning mf should be freed from _base_interrupt
3182 * 0 means the mf is freed from this function.
3183 */
3184static u8
3185_scsih_tm_volume_tr_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid,
3186 u8 msix_index, u32 reply)
3187{
3188 u16 handle;
3189 Mpi2SCSITaskManagementRequest_t *mpi_request_tm;
3190 Mpi2SCSITaskManagementReply_t *mpi_reply =
3191 mpt2sas_base_get_reply_virt_addr(ioc, reply);
3192
Eric Moore3cb54692010-07-08 14:44:34 -06003193 if (ioc->shost_recovery || ioc->remove_host ||
3194 ioc->pci_error_recovery) {
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303195 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host reset in "
3196 "progress!\n", __func__, ioc->name));
3197 return 1;
3198 }
3199
3200 mpi_request_tm = mpt2sas_base_get_msg_frame(ioc, smid);
3201 handle = le16_to_cpu(mpi_request_tm->DevHandle);
3202 if (handle != le16_to_cpu(mpi_reply->DevHandle)) {
3203 dewtprintk(ioc, printk("spurious interrupt: "
3204 "handle(0x%04x:0x%04x), smid(%d)!!!\n", handle,
3205 le16_to_cpu(mpi_reply->DevHandle), smid));
3206 return 0;
3207 }
3208
3209 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3210 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
3211 "loginfo(0x%08x), completed(%d)\n", ioc->name,
3212 handle, smid, le16_to_cpu(mpi_reply->IOCStatus),
3213 le32_to_cpu(mpi_reply->IOCLogInfo),
3214 le32_to_cpu(mpi_reply->TerminationCount)));
3215
3216 return _scsih_check_for_pending_tm(ioc, smid);
3217}
3218
3219/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303220 * _scsih_tm_tr_complete -
3221 * @ioc: per adapter object
3222 * @smid: system request message index
3223 * @msix_index: MSIX table index supplied by the OS
3224 * @reply: reply message frame(lower 32bit addr)
3225 * Context: interrupt time.
3226 *
3227 * This is the target reset completion routine.
3228 * This code is part of the code to initiate the device removal
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003229 * handshake protocol with controller firmware.
3230 * It will send a sas iounit control request (MPI2_SAS_OP_REMOVE_DEVICE)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303231 *
3232 * Return 1 meaning mf should be freed from _base_interrupt
3233 * 0 means the mf is freed from this function.
3234 */
3235static u8
3236_scsih_tm_tr_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
3237 u32 reply)
3238{
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303239 u16 handle;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303240 Mpi2SCSITaskManagementRequest_t *mpi_request_tm;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303241 Mpi2SCSITaskManagementReply_t *mpi_reply =
3242 mpt2sas_base_get_reply_virt_addr(ioc, reply);
3243 Mpi2SasIoUnitControlRequest_t *mpi_request;
3244 u16 smid_sas_ctrl;
nagalakshmi.nandigama@lsi.comf881cea2011-10-19 15:37:00 +05303245 u32 ioc_state;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303246
nagalakshmi.nandigama@lsi.comf881cea2011-10-19 15:37:00 +05303247 if (ioc->remove_host) {
3248 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host has been "
3249 "removed\n", __func__, ioc->name));
3250 return 1;
3251 } else if (ioc->pci_error_recovery) {
3252 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host in pci "
3253 "error recovery\n", __func__, ioc->name));
3254 return 1;
3255 }
3256 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3257 if (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
3258 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host is not "
3259 "operational\n", __func__, ioc->name));
Kashyap, Desai1278b112010-03-09 17:34:13 +05303260 return 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303261 }
3262
Kashyap, Desai1278b112010-03-09 17:34:13 +05303263 mpi_request_tm = mpt2sas_base_get_msg_frame(ioc, smid);
3264 handle = le16_to_cpu(mpi_request_tm->DevHandle);
3265 if (handle != le16_to_cpu(mpi_reply->DevHandle)) {
3266 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "spurious interrupt: "
3267 "handle(0x%04x:0x%04x), smid(%d)!!!\n", ioc->name, handle,
3268 le16_to_cpu(mpi_reply->DevHandle), smid));
3269 return 0;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303270 }
3271
Kashyap, Desai1278b112010-03-09 17:34:13 +05303272 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3273 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
3274 "loginfo(0x%08x), completed(%d)\n", ioc->name,
3275 handle, smid, le16_to_cpu(mpi_reply->IOCStatus),
3276 le32_to_cpu(mpi_reply->IOCLogInfo),
3277 le32_to_cpu(mpi_reply->TerminationCount)));
3278
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303279 smid_sas_ctrl = mpt2sas_base_get_smid(ioc, ioc->tm_sas_control_cb_idx);
3280 if (!smid_sas_ctrl) {
3281 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3282 ioc->name, __func__);
Kashyap, Desai1278b112010-03-09 17:34:13 +05303283 return 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303284 }
3285
Kashyap, Desai1278b112010-03-09 17:34:13 +05303286 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "sc_send:handle(0x%04x), "
3287 "(open), smid(%d), cb(%d)\n", ioc->name, handle, smid_sas_ctrl,
3288 ioc->tm_sas_control_cb_idx));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303289 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid_sas_ctrl);
3290 memset(mpi_request, 0, sizeof(Mpi2SasIoUnitControlRequest_t));
3291 mpi_request->Function = MPI2_FUNCTION_SAS_IO_UNIT_CONTROL;
3292 mpi_request->Operation = MPI2_SAS_OP_REMOVE_DEVICE;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303293 mpi_request->DevHandle = mpi_request_tm->DevHandle;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303294 mpt2sas_base_put_smid_default(ioc, smid_sas_ctrl);
Kashyap, Desai1278b112010-03-09 17:34:13 +05303295
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303296 return _scsih_check_for_pending_tm(ioc, smid);
3297}
3298
3299/**
3300 * _scsih_check_for_pending_tm - check for pending task management
3301 * @ioc: per adapter object
3302 * @smid: system request message index
3303 *
3304 * This will check delayed target reset list, and feed the
3305 * next reqeust.
3306 *
3307 * Return 1 meaning mf should be freed from _base_interrupt
3308 * 0 means the mf is freed from this function.
3309 */
3310static u8
3311_scsih_check_for_pending_tm(struct MPT2SAS_ADAPTER *ioc, u16 smid)
3312{
3313 struct _tr_list *delayed_tr;
3314
3315 if (!list_empty(&ioc->delayed_tr_volume_list)) {
3316 delayed_tr = list_entry(ioc->delayed_tr_volume_list.next,
3317 struct _tr_list, list);
3318 mpt2sas_base_free_smid(ioc, smid);
3319 _scsih_tm_tr_volume_send(ioc, delayed_tr->handle);
3320 list_del(&delayed_tr->list);
3321 kfree(delayed_tr);
3322 return 0;
3323 }
3324
Kashyap, Desai1278b112010-03-09 17:34:13 +05303325 if (!list_empty(&ioc->delayed_tr_list)) {
3326 delayed_tr = list_entry(ioc->delayed_tr_list.next,
3327 struct _tr_list, list);
3328 mpt2sas_base_free_smid(ioc, smid);
3329 _scsih_tm_tr_send(ioc, delayed_tr->handle);
3330 list_del(&delayed_tr->list);
3331 kfree(delayed_tr);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303332 return 0;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303333 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303334
Kashyap, Desai1278b112010-03-09 17:34:13 +05303335 return 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303336}
3337
3338/**
Eric Moore635374e2009-03-09 01:21:12 -06003339 * _scsih_check_topo_delete_events - sanity check on topo events
3340 * @ioc: per adapter object
3341 * @event_data: the event data payload
3342 *
3343 * This routine added to better handle cable breaker.
3344 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003345 * This handles the case where driver receives multiple expander
Eric Moore635374e2009-03-09 01:21:12 -06003346 * add and delete events in a single shot. When there is a delete event
3347 * the routine will void any pending add events waiting in the event queue.
3348 *
3349 * Return nothing.
3350 */
3351static void
3352_scsih_check_topo_delete_events(struct MPT2SAS_ADAPTER *ioc,
3353 Mpi2EventDataSasTopologyChangeList_t *event_data)
3354{
3355 struct fw_event_work *fw_event;
3356 Mpi2EventDataSasTopologyChangeList_t *local_event_data;
3357 u16 expander_handle;
3358 struct _sas_node *sas_expander;
3359 unsigned long flags;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303360 int i, reason_code;
3361 u16 handle;
3362
3363 for (i = 0 ; i < event_data->NumEntries; i++) {
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303364 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
3365 if (!handle)
3366 continue;
3367 reason_code = event_data->PHY[i].PhyStatus &
3368 MPI2_EVENT_SAS_TOPO_RC_MASK;
3369 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING)
3370 _scsih_tm_tr_send(ioc, handle);
3371 }
Eric Moore635374e2009-03-09 01:21:12 -06003372
3373 expander_handle = le16_to_cpu(event_data->ExpanderDevHandle);
3374 if (expander_handle < ioc->sas_hba.num_phys) {
3375 _scsih_block_io_to_children_attached_directly(ioc, event_data);
3376 return;
3377 }
3378
3379 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING
3380 || event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING) {
3381 spin_lock_irqsave(&ioc->sas_node_lock, flags);
3382 sas_expander = mpt2sas_scsih_expander_find_by_handle(ioc,
3383 expander_handle);
3384 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
3385 _scsih_block_io_to_children_attached_to_ex(ioc, sas_expander);
3386 } else if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_RESPONDING)
3387 _scsih_block_io_to_children_attached_directly(ioc, event_data);
3388
3389 if (event_data->ExpStatus != MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING)
3390 return;
3391
3392 /* mark ignore flag for pending events */
3393 spin_lock_irqsave(&ioc->fw_event_lock, flags);
3394 list_for_each_entry(fw_event, &ioc->fw_event_list, list) {
3395 if (fw_event->event != MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST ||
3396 fw_event->ignore)
3397 continue;
3398 local_event_data = fw_event->event_data;
3399 if (local_event_data->ExpStatus ==
3400 MPI2_EVENT_SAS_TOPO_ES_ADDED ||
3401 local_event_data->ExpStatus ==
3402 MPI2_EVENT_SAS_TOPO_ES_RESPONDING) {
3403 if (le16_to_cpu(local_event_data->ExpanderDevHandle) ==
3404 expander_handle) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303405 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -06003406 "setting ignoring flag\n", ioc->name));
3407 fw_event->ignore = 1;
3408 }
3409 }
3410 }
3411 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
3412}
3413
3414/**
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303415 * _scsih_set_volume_delete_flag - setting volume delete flag
3416 * @ioc: per adapter object
3417 * @handle: device handle
3418 *
3419 * This
3420 * Return nothing.
3421 */
3422static void
3423_scsih_set_volume_delete_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3424{
3425 struct _raid_device *raid_device;
3426 struct MPT2SAS_TARGET *sas_target_priv_data;
3427 unsigned long flags;
3428
3429 spin_lock_irqsave(&ioc->raid_device_lock, flags);
3430 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
3431 if (raid_device && raid_device->starget &&
3432 raid_device->starget->hostdata) {
3433 sas_target_priv_data =
3434 raid_device->starget->hostdata;
3435 sas_target_priv_data->deleted = 1;
3436 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3437 "setting delete flag: handle(0x%04x), "
3438 "wwid(0x%016llx)\n", ioc->name, handle,
3439 (unsigned long long) raid_device->wwid));
3440 }
3441 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
3442}
3443
3444/**
3445 * _scsih_set_volume_handle_for_tr - set handle for target reset to volume
3446 * @handle: input handle
3447 * @a: handle for volume a
3448 * @b: handle for volume b
3449 *
3450 * IR firmware only supports two raid volumes. The purpose of this
3451 * routine is to set the volume handle in either a or b. When the given
3452 * input handle is non-zero, or when a and b have not been set before.
3453 */
3454static void
3455_scsih_set_volume_handle_for_tr(u16 handle, u16 *a, u16 *b)
3456{
3457 if (!handle || handle == *a || handle == *b)
3458 return;
3459 if (!*a)
3460 *a = handle;
3461 else if (!*b)
3462 *b = handle;
3463}
3464
3465/**
3466 * _scsih_check_ir_config_unhide_events - check for UNHIDE events
3467 * @ioc: per adapter object
3468 * @event_data: the event data payload
3469 * Context: interrupt time.
3470 *
3471 * This routine will send target reset to volume, followed by target
3472 * resets to the PDs. This is called when a PD has been removed, or
3473 * volume has been deleted or removed. When the target reset is sent
3474 * to volume, the PD target resets need to be queued to start upon
3475 * completion of the volume target reset.
3476 *
3477 * Return nothing.
3478 */
3479static void
3480_scsih_check_ir_config_unhide_events(struct MPT2SAS_ADAPTER *ioc,
3481 Mpi2EventDataIrConfigChangeList_t *event_data)
3482{
3483 Mpi2EventIrConfigElement_t *element;
3484 int i;
3485 u16 handle, volume_handle, a, b;
3486 struct _tr_list *delayed_tr;
3487
3488 a = 0;
3489 b = 0;
3490
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303491 if (ioc->is_warpdrive)
3492 return;
3493
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303494 /* Volume Resets for Deleted or Removed */
3495 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
3496 for (i = 0; i < event_data->NumElements; i++, element++) {
3497 if (element->ReasonCode ==
3498 MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED ||
3499 element->ReasonCode ==
3500 MPI2_EVENT_IR_CHANGE_RC_REMOVED) {
3501 volume_handle = le16_to_cpu(element->VolDevHandle);
3502 _scsih_set_volume_delete_flag(ioc, volume_handle);
3503 _scsih_set_volume_handle_for_tr(volume_handle, &a, &b);
3504 }
3505 }
3506
3507 /* Volume Resets for UNHIDE events */
3508 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
3509 for (i = 0; i < event_data->NumElements; i++, element++) {
3510 if (le32_to_cpu(event_data->Flags) &
3511 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG)
3512 continue;
3513 if (element->ReasonCode == MPI2_EVENT_IR_CHANGE_RC_UNHIDE) {
3514 volume_handle = le16_to_cpu(element->VolDevHandle);
3515 _scsih_set_volume_handle_for_tr(volume_handle, &a, &b);
3516 }
3517 }
3518
3519 if (a)
3520 _scsih_tm_tr_volume_send(ioc, a);
3521 if (b)
3522 _scsih_tm_tr_volume_send(ioc, b);
3523
3524 /* PD target resets */
3525 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
3526 for (i = 0; i < event_data->NumElements; i++, element++) {
3527 if (element->ReasonCode != MPI2_EVENT_IR_CHANGE_RC_UNHIDE)
3528 continue;
3529 handle = le16_to_cpu(element->PhysDiskDevHandle);
3530 volume_handle = le16_to_cpu(element->VolDevHandle);
3531 clear_bit(handle, ioc->pd_handles);
3532 if (!volume_handle)
3533 _scsih_tm_tr_send(ioc, handle);
3534 else if (volume_handle == a || volume_handle == b) {
3535 delayed_tr = kzalloc(sizeof(*delayed_tr), GFP_ATOMIC);
3536 BUG_ON(!delayed_tr);
3537 INIT_LIST_HEAD(&delayed_tr->list);
3538 delayed_tr->handle = handle;
3539 list_add_tail(&delayed_tr->list, &ioc->delayed_tr_list);
3540 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3541 "DELAYED:tr:handle(0x%04x), (open)\n", ioc->name,
3542 handle));
3543 } else
3544 _scsih_tm_tr_send(ioc, handle);
3545 }
3546}
3547
3548
3549/**
3550 * _scsih_check_volume_delete_events - set delete flag for volumes
3551 * @ioc: per adapter object
3552 * @event_data: the event data payload
3553 * Context: interrupt time.
3554 *
3555 * This will handle the case when the cable connected to entire volume is
3556 * pulled. We will take care of setting the deleted flag so normal IO will
3557 * not be sent.
3558 *
3559 * Return nothing.
3560 */
3561static void
3562_scsih_check_volume_delete_events(struct MPT2SAS_ADAPTER *ioc,
3563 Mpi2EventDataIrVolume_t *event_data)
3564{
3565 u32 state;
3566
3567 if (event_data->ReasonCode != MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED)
3568 return;
3569 state = le32_to_cpu(event_data->NewValue);
3570 if (state == MPI2_RAID_VOL_STATE_MISSING || state ==
3571 MPI2_RAID_VOL_STATE_FAILED)
3572 _scsih_set_volume_delete_flag(ioc,
3573 le16_to_cpu(event_data->VolDevHandle));
3574}
3575
3576/**
Eric Moore635374e2009-03-09 01:21:12 -06003577 * _scsih_flush_running_cmds - completing outstanding commands.
3578 * @ioc: per adapter object
3579 *
3580 * The flushing out of all pending scmd commands following host reset,
3581 * where all IO is dropped to the floor.
3582 *
3583 * Return nothing.
3584 */
3585static void
3586_scsih_flush_running_cmds(struct MPT2SAS_ADAPTER *ioc)
3587{
3588 struct scsi_cmnd *scmd;
3589 u16 smid;
3590 u16 count = 0;
3591
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303592 for (smid = 1; smid <= ioc->scsiio_depth; smid++) {
Kashyap, Desaiec07a052011-01-05 17:54:32 +05303593 scmd = _scsih_scsi_lookup_get_clear(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06003594 if (!scmd)
3595 continue;
3596 count++;
3597 mpt2sas_base_free_smid(ioc, smid);
3598 scsi_dma_unmap(scmd);
Eric Moore3cb54692010-07-08 14:44:34 -06003599 if (ioc->pci_error_recovery)
3600 scmd->result = DID_NO_CONNECT << 16;
3601 else
3602 scmd->result = DID_RESET << 16;
Eric Moore635374e2009-03-09 01:21:12 -06003603 scmd->scsi_done(scmd);
3604 }
3605 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "completing %d cmds\n",
3606 ioc->name, count));
3607}
3608
3609/**
Eric Moore3c621b32009-05-18 12:59:41 -06003610 * _scsih_setup_eedp - setup MPI request for EEDP transfer
3611 * @scmd: pointer to scsi command object
3612 * @mpi_request: pointer to the SCSI_IO reqest message frame
3613 *
3614 * Supporting protection 1 and 3.
3615 *
3616 * Returns nothing
3617 */
3618static void
3619_scsih_setup_eedp(struct scsi_cmnd *scmd, Mpi2SCSIIORequest_t *mpi_request)
3620{
3621 u16 eedp_flags;
3622 unsigned char prot_op = scsi_get_prot_op(scmd);
3623 unsigned char prot_type = scsi_get_prot_type(scmd);
3624
Eric Moored334aa72010-04-22 10:47:40 -06003625 if (prot_type == SCSI_PROT_DIF_TYPE0 || prot_op == SCSI_PROT_NORMAL)
Eric Moore3c621b32009-05-18 12:59:41 -06003626 return;
3627
3628 if (prot_op == SCSI_PROT_READ_STRIP)
3629 eedp_flags = MPI2_SCSIIO_EEDPFLAGS_CHECK_REMOVE_OP;
3630 else if (prot_op == SCSI_PROT_WRITE_INSERT)
3631 eedp_flags = MPI2_SCSIIO_EEDPFLAGS_INSERT_OP;
3632 else
3633 return;
3634
Eric Moore3c621b32009-05-18 12:59:41 -06003635 switch (prot_type) {
3636 case SCSI_PROT_DIF_TYPE1:
Martin K. Petersen756aca72011-05-18 00:45:22 -04003637 case SCSI_PROT_DIF_TYPE2:
Eric Moore3c621b32009-05-18 12:59:41 -06003638
3639 /*
3640 * enable ref/guard checking
3641 * auto increment ref tag
3642 */
Kashyap, Desai463217b2009-10-05 15:53:06 +05303643 eedp_flags |= MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG |
Eric Moore3c621b32009-05-18 12:59:41 -06003644 MPI2_SCSIIO_EEDPFLAGS_CHECK_REFTAG |
3645 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD;
3646 mpi_request->CDB.EEDP32.PrimaryReferenceTag =
3647 cpu_to_be32(scsi_get_lba(scmd));
Eric Moored334aa72010-04-22 10:47:40 -06003648 break;
Eric Moore3c621b32009-05-18 12:59:41 -06003649
Eric Moore3c621b32009-05-18 12:59:41 -06003650 case SCSI_PROT_DIF_TYPE3:
3651
3652 /*
3653 * enable guard checking
3654 */
Kashyap, Desai463217b2009-10-05 15:53:06 +05303655 eedp_flags |= MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD;
Eric Moore3c621b32009-05-18 12:59:41 -06003656 break;
3657 }
Kashyap, Desai463217b2009-10-05 15:53:06 +05303658 mpi_request->EEDPBlockSize = cpu_to_le32(scmd->device->sector_size);
3659 mpi_request->EEDPFlags = cpu_to_le16(eedp_flags);
Eric Moore3c621b32009-05-18 12:59:41 -06003660}
3661
3662/**
3663 * _scsih_eedp_error_handling - return sense code for EEDP errors
3664 * @scmd: pointer to scsi command object
3665 * @ioc_status: ioc status
3666 *
3667 * Returns nothing
3668 */
3669static void
3670_scsih_eedp_error_handling(struct scsi_cmnd *scmd, u16 ioc_status)
3671{
3672 u8 ascq;
3673 u8 sk;
3674 u8 host_byte;
3675
3676 switch (ioc_status) {
3677 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
3678 ascq = 0x01;
3679 break;
3680 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
3681 ascq = 0x02;
3682 break;
3683 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
3684 ascq = 0x03;
3685 break;
3686 default:
3687 ascq = 0x00;
3688 break;
3689 }
3690
3691 if (scmd->sc_data_direction == DMA_TO_DEVICE) {
3692 sk = ILLEGAL_REQUEST;
3693 host_byte = DID_ABORT;
3694 } else {
3695 sk = ABORTED_COMMAND;
3696 host_byte = DID_OK;
3697 }
3698
3699 scsi_build_sense_buffer(0, scmd->sense_buffer, sk, 0x10, ascq);
3700 scmd->result = DRIVER_SENSE << 24 | (host_byte << 16) |
3701 SAM_STAT_CHECK_CONDITION;
3702}
3703
3704/**
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303705 * _scsih_scsi_direct_io_get - returns direct io flag
3706 * @ioc: per adapter object
3707 * @smid: system request message index
3708 *
3709 * Returns the smid stored scmd pointer.
3710 */
3711static inline u8
3712_scsih_scsi_direct_io_get(struct MPT2SAS_ADAPTER *ioc, u16 smid)
3713{
3714 return ioc->scsi_lookup[smid - 1].direct_io;
3715}
3716
3717/**
3718 * _scsih_scsi_direct_io_set - sets direct io flag
3719 * @ioc: per adapter object
3720 * @smid: system request message index
3721 * @direct_io: Zero or non-zero value to set in the direct_io flag
3722 *
3723 * Returns Nothing.
3724 */
3725static inline void
3726_scsih_scsi_direct_io_set(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 direct_io)
3727{
3728 ioc->scsi_lookup[smid - 1].direct_io = direct_io;
3729}
3730
3731
3732/**
3733 * _scsih_setup_direct_io - setup MPI request for WARPDRIVE Direct I/O
3734 * @ioc: per adapter object
3735 * @scmd: pointer to scsi command object
3736 * @raid_device: pointer to raid device data structure
3737 * @mpi_request: pointer to the SCSI_IO reqest message frame
3738 * @smid: system request message index
3739 *
3740 * Returns nothing
3741 */
3742static void
3743_scsih_setup_direct_io(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd *scmd,
3744 struct _raid_device *raid_device, Mpi2SCSIIORequest_t *mpi_request,
3745 u16 smid)
3746{
3747 u32 v_lba, p_lba, stripe_off, stripe_unit, column, io_size;
3748 u32 stripe_sz, stripe_exp;
3749 u8 num_pds, *cdb_ptr, *tmp_ptr, *lba_ptr1, *lba_ptr2;
3750 u8 cdb0 = scmd->cmnd[0];
3751
3752 /*
3753 * Try Direct I/O to RAID memeber disks
3754 */
3755 if (cdb0 == READ_16 || cdb0 == READ_10 ||
3756 cdb0 == WRITE_16 || cdb0 == WRITE_10) {
3757 cdb_ptr = mpi_request->CDB.CDB32;
3758
3759 if ((cdb0 < READ_16) || !(cdb_ptr[2] | cdb_ptr[3] | cdb_ptr[4]
3760 | cdb_ptr[5])) {
3761 io_size = scsi_bufflen(scmd) >> 9;
3762 /* get virtual lba */
3763 lba_ptr1 = lba_ptr2 = (cdb0 < READ_16) ? &cdb_ptr[2] :
3764 &cdb_ptr[6];
3765 tmp_ptr = (u8 *)&v_lba + 3;
3766 *tmp_ptr-- = *lba_ptr1++;
3767 *tmp_ptr-- = *lba_ptr1++;
3768 *tmp_ptr-- = *lba_ptr1++;
3769 *tmp_ptr = *lba_ptr1;
3770
3771 if (((u64)v_lba + (u64)io_size - 1) <=
3772 (u32)raid_device->max_lba) {
3773 stripe_sz = raid_device->stripe_sz;
3774 stripe_exp = raid_device->stripe_exponent;
3775 stripe_off = v_lba & (stripe_sz - 1);
3776
3777 /* Check whether IO falls within a stripe */
3778 if ((stripe_off + io_size) <= stripe_sz) {
3779 num_pds = raid_device->num_pds;
3780 p_lba = v_lba >> stripe_exp;
3781 stripe_unit = p_lba / num_pds;
3782 column = p_lba % num_pds;
3783 p_lba = (stripe_unit << stripe_exp) +
3784 stripe_off;
3785 mpi_request->DevHandle =
3786 cpu_to_le16(raid_device->
3787 pd_handle[column]);
3788 tmp_ptr = (u8 *)&p_lba + 3;
3789 *lba_ptr2++ = *tmp_ptr--;
3790 *lba_ptr2++ = *tmp_ptr--;
3791 *lba_ptr2++ = *tmp_ptr--;
3792 *lba_ptr2 = *tmp_ptr;
3793 /*
3794 * WD: To indicate this I/O is directI/O
3795 */
3796 _scsih_scsi_direct_io_set(ioc, smid, 1);
3797 }
3798 }
3799 }
3800 }
3801}
3802
3803/**
Eric Moored5d135b2009-05-18 13:02:08 -06003804 * _scsih_qcmd - main scsi request entry point
Eric Moore635374e2009-03-09 01:21:12 -06003805 * @scmd: pointer to scsi command object
3806 * @done: function pointer to be invoked on completion
3807 *
3808 * The callback index is set inside `ioc->scsi_io_cb_idx`.
3809 *
3810 * Returns 0 on success. If there's a failure, return either:
3811 * SCSI_MLQUEUE_DEVICE_BUSY if the device queue is full, or
3812 * SCSI_MLQUEUE_HOST_BUSY if the entire host queue is full
3813 */
3814static int
Jeff Garzikf2812332010-11-16 02:10:29 -05003815_scsih_qcmd_lck(struct scsi_cmnd *scmd, void (*done)(struct scsi_cmnd *))
Eric Moore635374e2009-03-09 01:21:12 -06003816{
3817 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
3818 struct MPT2SAS_DEVICE *sas_device_priv_data;
3819 struct MPT2SAS_TARGET *sas_target_priv_data;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303820 struct _raid_device *raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06003821 Mpi2SCSIIORequest_t *mpi_request;
3822 u32 mpi_control;
3823 u16 smid;
Eric Moore635374e2009-03-09 01:21:12 -06003824
3825 scmd->scsi_done = done;
3826 sas_device_priv_data = scmd->device->hostdata;
Kashyap, Desai130b9582010-04-08 17:54:32 +05303827 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
Eric Moore635374e2009-03-09 01:21:12 -06003828 scmd->result = DID_NO_CONNECT << 16;
3829 scmd->scsi_done(scmd);
3830 return 0;
3831 }
3832
Kashyap, Desai78215782011-06-14 10:57:08 +05303833 if (ioc->pci_error_recovery || ioc->remove_host) {
Eric Moore3cb54692010-07-08 14:44:34 -06003834 scmd->result = DID_NO_CONNECT << 16;
3835 scmd->scsi_done(scmd);
3836 return 0;
3837 }
3838
Eric Moore635374e2009-03-09 01:21:12 -06003839 sas_target_priv_data = sas_device_priv_data->sas_target;
Kashyap, Desai130b9582010-04-08 17:54:32 +05303840 /* invalid device handle */
3841 if (sas_target_priv_data->handle == MPT2SAS_INVALID_DEVICE_HANDLE) {
Eric Moore635374e2009-03-09 01:21:12 -06003842 scmd->result = DID_NO_CONNECT << 16;
3843 scmd->scsi_done(scmd);
3844 return 0;
3845 }
3846
Kashyap, Desai130b9582010-04-08 17:54:32 +05303847 /* host recovery or link resets sent via IOCTLs */
3848 if (ioc->shost_recovery || ioc->ioc_link_reset_in_progress)
Eric Moore635374e2009-03-09 01:21:12 -06003849 return SCSI_MLQUEUE_HOST_BUSY;
Uwe Kleine-König65155b32010-06-11 12:17:01 +02003850 /* device busy with task management */
Kashyap, Desai130b9582010-04-08 17:54:32 +05303851 else if (sas_device_priv_data->block || sas_target_priv_data->tm_busy)
3852 return SCSI_MLQUEUE_DEVICE_BUSY;
3853 /* device has been deleted */
3854 else if (sas_target_priv_data->deleted) {
3855 scmd->result = DID_NO_CONNECT << 16;
3856 scmd->scsi_done(scmd);
3857 return 0;
3858 }
Eric Moore635374e2009-03-09 01:21:12 -06003859
3860 if (scmd->sc_data_direction == DMA_FROM_DEVICE)
3861 mpi_control = MPI2_SCSIIO_CONTROL_READ;
3862 else if (scmd->sc_data_direction == DMA_TO_DEVICE)
3863 mpi_control = MPI2_SCSIIO_CONTROL_WRITE;
3864 else
3865 mpi_control = MPI2_SCSIIO_CONTROL_NODATATRANSFER;
3866
3867 /* set tags */
3868 if (!(sas_device_priv_data->flags & MPT_DEVICE_FLAGS_INIT)) {
3869 if (scmd->device->tagged_supported) {
3870 if (scmd->device->ordered_tags)
3871 mpi_control |= MPI2_SCSIIO_CONTROL_ORDEREDQ;
3872 else
3873 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
3874 } else
3875/* MPI Revision I (UNIT = 0xA) - removed MPI2_SCSIIO_CONTROL_UNTAGGED */
3876/* mpi_control |= MPI2_SCSIIO_CONTROL_UNTAGGED;
3877 */
3878 mpi_control |= (0x500);
3879
3880 } else
3881 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303882 /* Make sure Device is not raid volume.
3883 * We do not expose raid functionality to upper layer for warpdrive.
3884 */
3885 if (!ioc->is_warpdrive && !_scsih_is_raid(&scmd->device->sdev_gendev) &&
Eric Moored334aa72010-04-22 10:47:40 -06003886 sas_is_tlr_enabled(scmd->device) && scmd->cmd_len != 32)
Eric Moore635374e2009-03-09 01:21:12 -06003887 mpi_control |= MPI2_SCSIIO_CONTROL_TLR_ON;
3888
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303889 smid = mpt2sas_base_get_smid_scsiio(ioc, ioc->scsi_io_cb_idx, scmd);
Eric Moore635374e2009-03-09 01:21:12 -06003890 if (!smid) {
3891 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3892 ioc->name, __func__);
3893 goto out;
3894 }
3895 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3896 memset(mpi_request, 0, sizeof(Mpi2SCSIIORequest_t));
Eric Moore3c621b32009-05-18 12:59:41 -06003897 _scsih_setup_eedp(scmd, mpi_request);
Eric Moored334aa72010-04-22 10:47:40 -06003898 if (scmd->cmd_len == 32)
3899 mpi_control |= 4 << MPI2_SCSIIO_CONTROL_ADDCDBLEN_SHIFT;
Eric Moore635374e2009-03-09 01:21:12 -06003900 mpi_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
3901 if (sas_device_priv_data->sas_target->flags &
3902 MPT_TARGET_FLAGS_RAID_COMPONENT)
3903 mpi_request->Function = MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH;
3904 else
3905 mpi_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
3906 mpi_request->DevHandle =
3907 cpu_to_le16(sas_device_priv_data->sas_target->handle);
3908 mpi_request->DataLength = cpu_to_le32(scsi_bufflen(scmd));
3909 mpi_request->Control = cpu_to_le32(mpi_control);
3910 mpi_request->IoFlags = cpu_to_le16(scmd->cmd_len);
3911 mpi_request->MsgFlags = MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR;
3912 mpi_request->SenseBufferLength = SCSI_SENSE_BUFFERSIZE;
3913 mpi_request->SenseBufferLowAddress =
Kashyap, Desaiec9472c2009-09-23 17:34:13 +05303914 mpt2sas_base_get_sense_buffer_dma(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06003915 mpi_request->SGLOffset0 = offsetof(Mpi2SCSIIORequest_t, SGL) / 4;
3916 mpi_request->SGLFlags = cpu_to_le16(MPI2_SCSIIO_SGLFLAGS_TYPE_MPI +
3917 MPI2_SCSIIO_SGLFLAGS_SYSTEM_ADDR);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303918 mpi_request->VF_ID = 0; /* TODO */
3919 mpi_request->VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003920 int_to_scsilun(sas_device_priv_data->lun, (struct scsi_lun *)
3921 mpi_request->LUN);
3922 memcpy(mpi_request->CDB.CDB32, scmd->cmnd, scmd->cmd_len);
3923
3924 if (!mpi_request->DataLength) {
3925 mpt2sas_base_build_zero_len_sge(ioc, &mpi_request->SGL);
3926 } else {
3927 if (_scsih_build_scatter_gather(ioc, scmd, smid)) {
3928 mpt2sas_base_free_smid(ioc, smid);
3929 goto out;
3930 }
3931 }
3932
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303933 raid_device = sas_target_priv_data->raid_device;
3934 if (raid_device && raid_device->direct_io_enabled)
3935 _scsih_setup_direct_io(ioc, scmd, raid_device, mpi_request,
3936 smid);
3937
Kashyap, Desai58287fd2010-03-17 16:27:25 +05303938 if (likely(mpi_request->Function == MPI2_FUNCTION_SCSI_IO_REQUEST))
3939 mpt2sas_base_put_smid_scsi_io(ioc, smid,
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303940 le16_to_cpu(mpi_request->DevHandle));
Kashyap, Desai58287fd2010-03-17 16:27:25 +05303941 else
3942 mpt2sas_base_put_smid_default(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06003943 return 0;
3944
3945 out:
3946 return SCSI_MLQUEUE_HOST_BUSY;
3947}
3948
Jeff Garzikf2812332010-11-16 02:10:29 -05003949static DEF_SCSI_QCMD(_scsih_qcmd)
3950
Eric Moore635374e2009-03-09 01:21:12 -06003951/**
3952 * _scsih_normalize_sense - normalize descriptor and fixed format sense data
3953 * @sense_buffer: sense data returned by target
3954 * @data: normalized skey/asc/ascq
3955 *
3956 * Return nothing.
3957 */
3958static void
3959_scsih_normalize_sense(char *sense_buffer, struct sense_info *data)
3960{
3961 if ((sense_buffer[0] & 0x7F) >= 0x72) {
3962 /* descriptor format */
3963 data->skey = sense_buffer[1] & 0x0F;
3964 data->asc = sense_buffer[2];
3965 data->ascq = sense_buffer[3];
3966 } else {
3967 /* fixed format */
3968 data->skey = sense_buffer[2] & 0x0F;
3969 data->asc = sense_buffer[12];
3970 data->ascq = sense_buffer[13];
3971 }
3972}
3973
3974#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
3975/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003976 * _scsih_scsi_ioc_info - translated non-successful SCSI_IO request
Eric Moore635374e2009-03-09 01:21:12 -06003977 * @ioc: per adapter object
3978 * @scmd: pointer to scsi command object
3979 * @mpi_reply: reply mf payload returned from firmware
3980 *
3981 * scsi_status - SCSI Status code returned from target device
3982 * scsi_state - state info associated with SCSI_IO determined by ioc
3983 * ioc_status - ioc supplied status info
3984 *
3985 * Return nothing.
3986 */
3987static void
3988_scsih_scsi_ioc_info(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd *scmd,
3989 Mpi2SCSIIOReply_t *mpi_reply, u16 smid)
3990{
3991 u32 response_info;
3992 u8 *response_bytes;
3993 u16 ioc_status = le16_to_cpu(mpi_reply->IOCStatus) &
3994 MPI2_IOCSTATUS_MASK;
3995 u8 scsi_state = mpi_reply->SCSIState;
3996 u8 scsi_status = mpi_reply->SCSIStatus;
3997 char *desc_ioc_state = NULL;
3998 char *desc_scsi_status = NULL;
3999 char *desc_scsi_state = ioc->tmp_string;
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +05304000 u32 log_info = le32_to_cpu(mpi_reply->IOCLogInfo);
Kashyap, Desai7fbae672010-06-17 13:45:17 +05304001 struct _sas_device *sas_device = NULL;
4002 unsigned long flags;
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304003 struct scsi_target *starget = scmd->device->sdev_target;
4004 struct MPT2SAS_TARGET *priv_target = starget->hostdata;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304005 char *device_str = NULL;
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304006
4007 if (!priv_target)
4008 return;
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +05304009
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304010 if (ioc->hide_ir_msg)
4011 device_str = "WarpDrive";
4012 else
4013 device_str = "volume";
4014
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +05304015 if (log_info == 0x31170000)
4016 return;
Eric Moore635374e2009-03-09 01:21:12 -06004017
4018 switch (ioc_status) {
4019 case MPI2_IOCSTATUS_SUCCESS:
4020 desc_ioc_state = "success";
4021 break;
4022 case MPI2_IOCSTATUS_INVALID_FUNCTION:
4023 desc_ioc_state = "invalid function";
4024 break;
4025 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
4026 desc_ioc_state = "scsi recovered error";
4027 break;
4028 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE:
4029 desc_ioc_state = "scsi invalid dev handle";
4030 break;
4031 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
4032 desc_ioc_state = "scsi device not there";
4033 break;
4034 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
4035 desc_ioc_state = "scsi data overrun";
4036 break;
4037 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
4038 desc_ioc_state = "scsi data underrun";
4039 break;
4040 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
4041 desc_ioc_state = "scsi io data error";
4042 break;
4043 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
4044 desc_ioc_state = "scsi protocol error";
4045 break;
4046 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
4047 desc_ioc_state = "scsi task terminated";
4048 break;
4049 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
4050 desc_ioc_state = "scsi residual mismatch";
4051 break;
4052 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
4053 desc_ioc_state = "scsi task mgmt failed";
4054 break;
4055 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
4056 desc_ioc_state = "scsi ioc terminated";
4057 break;
4058 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
4059 desc_ioc_state = "scsi ext terminated";
4060 break;
Eric Moore3c621b32009-05-18 12:59:41 -06004061 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
4062 desc_ioc_state = "eedp guard error";
4063 break;
4064 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
4065 desc_ioc_state = "eedp ref tag error";
4066 break;
4067 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
4068 desc_ioc_state = "eedp app tag error";
4069 break;
Eric Moore635374e2009-03-09 01:21:12 -06004070 default:
4071 desc_ioc_state = "unknown";
4072 break;
4073 }
4074
4075 switch (scsi_status) {
4076 case MPI2_SCSI_STATUS_GOOD:
4077 desc_scsi_status = "good";
4078 break;
4079 case MPI2_SCSI_STATUS_CHECK_CONDITION:
4080 desc_scsi_status = "check condition";
4081 break;
4082 case MPI2_SCSI_STATUS_CONDITION_MET:
4083 desc_scsi_status = "condition met";
4084 break;
4085 case MPI2_SCSI_STATUS_BUSY:
4086 desc_scsi_status = "busy";
4087 break;
4088 case MPI2_SCSI_STATUS_INTERMEDIATE:
4089 desc_scsi_status = "intermediate";
4090 break;
4091 case MPI2_SCSI_STATUS_INTERMEDIATE_CONDMET:
4092 desc_scsi_status = "intermediate condmet";
4093 break;
4094 case MPI2_SCSI_STATUS_RESERVATION_CONFLICT:
4095 desc_scsi_status = "reservation conflict";
4096 break;
4097 case MPI2_SCSI_STATUS_COMMAND_TERMINATED:
4098 desc_scsi_status = "command terminated";
4099 break;
4100 case MPI2_SCSI_STATUS_TASK_SET_FULL:
4101 desc_scsi_status = "task set full";
4102 break;
4103 case MPI2_SCSI_STATUS_ACA_ACTIVE:
4104 desc_scsi_status = "aca active";
4105 break;
4106 case MPI2_SCSI_STATUS_TASK_ABORTED:
4107 desc_scsi_status = "task aborted";
4108 break;
4109 default:
4110 desc_scsi_status = "unknown";
4111 break;
4112 }
4113
4114 desc_scsi_state[0] = '\0';
4115 if (!scsi_state)
4116 desc_scsi_state = " ";
4117 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID)
4118 strcat(desc_scsi_state, "response info ");
4119 if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
4120 strcat(desc_scsi_state, "state terminated ");
4121 if (scsi_state & MPI2_SCSI_STATE_NO_SCSI_STATUS)
4122 strcat(desc_scsi_state, "no status ");
4123 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_FAILED)
4124 strcat(desc_scsi_state, "autosense failed ");
4125 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID)
4126 strcat(desc_scsi_state, "autosense valid ");
4127
4128 scsi_print_command(scmd);
Kashyap, Desai7fbae672010-06-17 13:45:17 +05304129
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304130 if (priv_target->flags & MPT_TARGET_FLAGS_VOLUME) {
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304131 printk(MPT2SAS_WARN_FMT "\t%s wwid(0x%016llx)\n", ioc->name,
4132 device_str, (unsigned long long)priv_target->sas_address);
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304133 } else {
4134 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4135 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
4136 priv_target->sas_address);
4137 if (sas_device) {
4138 printk(MPT2SAS_WARN_FMT "\tsas_address(0x%016llx), "
4139 "phy(%d)\n", ioc->name, sas_device->sas_address,
4140 sas_device->phy);
4141 printk(MPT2SAS_WARN_FMT
4142 "\tenclosure_logical_id(0x%016llx), slot(%d)\n",
4143 ioc->name, sas_device->enclosure_logical_id,
4144 sas_device->slot);
4145 }
4146 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai7fbae672010-06-17 13:45:17 +05304147 }
Kashyap, Desai7fbae672010-06-17 13:45:17 +05304148
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304149 printk(MPT2SAS_WARN_FMT "\thandle(0x%04x), ioc_status(%s)(0x%04x), "
4150 "smid(%d)\n", ioc->name, le16_to_cpu(mpi_reply->DevHandle),
4151 desc_ioc_state, ioc_status, smid);
Eric Moore635374e2009-03-09 01:21:12 -06004152 printk(MPT2SAS_WARN_FMT "\trequest_len(%d), underflow(%d), "
4153 "resid(%d)\n", ioc->name, scsi_bufflen(scmd), scmd->underflow,
4154 scsi_get_resid(scmd));
4155 printk(MPT2SAS_WARN_FMT "\ttag(%d), transfer_count(%d), "
4156 "sc->result(0x%08x)\n", ioc->name, le16_to_cpu(mpi_reply->TaskTag),
4157 le32_to_cpu(mpi_reply->TransferCount), scmd->result);
4158 printk(MPT2SAS_WARN_FMT "\tscsi_status(%s)(0x%02x), "
4159 "scsi_state(%s)(0x%02x)\n", ioc->name, desc_scsi_status,
4160 scsi_status, desc_scsi_state, scsi_state);
4161
4162 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID) {
4163 struct sense_info data;
4164 _scsih_normalize_sense(scmd->sense_buffer, &data);
4165 printk(MPT2SAS_WARN_FMT "\t[sense_key,asc,ascq]: "
Kashyap, Desaie94f6742010-03-17 16:24:52 +05304166 "[0x%02x,0x%02x,0x%02x], count(%d)\n", ioc->name, data.skey,
4167 data.asc, data.ascq, le32_to_cpu(mpi_reply->SenseCount));
Eric Moore635374e2009-03-09 01:21:12 -06004168 }
4169
4170 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID) {
4171 response_info = le32_to_cpu(mpi_reply->ResponseInfo);
4172 response_bytes = (u8 *)&response_info;
Kashyap, Desai9982f592009-09-23 17:23:07 +05304173 _scsih_response_code(ioc, response_bytes[0]);
Eric Moore635374e2009-03-09 01:21:12 -06004174 }
4175}
4176#endif
4177
4178/**
Kashyap, Desai3ace8e02011-05-04 16:35:58 +05304179 * _scsih_turn_on_fault_led - illuminate Fault LED
Eric Moore635374e2009-03-09 01:21:12 -06004180 * @ioc: per adapter object
4181 * @handle: device handle
Kashyap, Desai3ace8e02011-05-04 16:35:58 +05304182 * Context: process
4183 *
4184 * Return nothing.
4185 */
4186static void
4187_scsih_turn_on_fault_led(struct MPT2SAS_ADAPTER *ioc, u16 handle)
4188{
4189 Mpi2SepReply_t mpi_reply;
4190 Mpi2SepRequest_t mpi_request;
4191
4192 memset(&mpi_request, 0, sizeof(Mpi2SepRequest_t));
4193 mpi_request.Function = MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR;
4194 mpi_request.Action = MPI2_SEP_REQ_ACTION_WRITE_STATUS;
4195 mpi_request.SlotStatus =
4196 cpu_to_le32(MPI2_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT);
4197 mpi_request.DevHandle = cpu_to_le16(handle);
4198 mpi_request.Flags = MPI2_SEP_REQ_FLAGS_DEVHANDLE_ADDRESS;
4199 if ((mpt2sas_base_scsi_enclosure_processor(ioc, &mpi_reply,
4200 &mpi_request)) != 0) {
4201 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n", ioc->name,
4202 __FILE__, __LINE__, __func__);
4203 return;
4204 }
4205
4206 if (mpi_reply.IOCStatus || mpi_reply.IOCLogInfo) {
4207 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "enclosure_processor: "
4208 "ioc_status (0x%04x), loginfo(0x%08x)\n", ioc->name,
4209 le16_to_cpu(mpi_reply.IOCStatus),
4210 le32_to_cpu(mpi_reply.IOCLogInfo)));
4211 return;
4212 }
4213}
4214
4215/**
4216 * _scsih_send_event_to_turn_on_fault_led - fire delayed event
4217 * @ioc: per adapter object
4218 * @handle: device handle
4219 * Context: interrupt.
4220 *
4221 * Return nothing.
4222 */
4223static void
4224_scsih_send_event_to_turn_on_fault_led(struct MPT2SAS_ADAPTER *ioc, u16 handle)
4225{
4226 struct fw_event_work *fw_event;
4227
4228 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
4229 if (!fw_event)
4230 return;
4231 fw_event->event = MPT2SAS_TURN_ON_FAULT_LED;
4232 fw_event->device_handle = handle;
4233 fw_event->ioc = ioc;
4234 _scsih_fw_event_add(ioc, fw_event);
4235}
4236
4237/**
4238 * _scsih_smart_predicted_fault - process smart errors
4239 * @ioc: per adapter object
4240 * @handle: device handle
4241 * Context: interrupt.
Eric Moore635374e2009-03-09 01:21:12 -06004242 *
4243 * Return nothing.
4244 */
4245static void
4246_scsih_smart_predicted_fault(struct MPT2SAS_ADAPTER *ioc, u16 handle)
4247{
Eric Moore635374e2009-03-09 01:21:12 -06004248 struct scsi_target *starget;
4249 struct MPT2SAS_TARGET *sas_target_priv_data;
4250 Mpi2EventNotificationReply_t *event_reply;
4251 Mpi2EventDataSasDeviceStatusChange_t *event_data;
4252 struct _sas_device *sas_device;
4253 ssize_t sz;
4254 unsigned long flags;
4255
4256 /* only handle non-raid devices */
4257 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4258 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4259 if (!sas_device) {
4260 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4261 return;
4262 }
4263 starget = sas_device->starget;
4264 sas_target_priv_data = starget->hostdata;
4265
4266 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT) ||
4267 ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME))) {
4268 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4269 return;
4270 }
4271 starget_printk(KERN_WARNING, starget, "predicted fault\n");
4272 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4273
Kashyap, Desai3ace8e02011-05-04 16:35:58 +05304274 if (ioc->pdev->subsystem_vendor == PCI_VENDOR_ID_IBM)
4275 _scsih_send_event_to_turn_on_fault_led(ioc, handle);
Eric Moore635374e2009-03-09 01:21:12 -06004276
4277 /* insert into event log */
4278 sz = offsetof(Mpi2EventNotificationReply_t, EventData) +
4279 sizeof(Mpi2EventDataSasDeviceStatusChange_t);
4280 event_reply = kzalloc(sz, GFP_KERNEL);
4281 if (!event_reply) {
4282 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4283 ioc->name, __FILE__, __LINE__, __func__);
4284 return;
4285 }
4286
4287 event_reply->Function = MPI2_FUNCTION_EVENT_NOTIFICATION;
4288 event_reply->Event =
4289 cpu_to_le16(MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE);
4290 event_reply->MsgLength = sz/4;
4291 event_reply->EventDataLength =
4292 cpu_to_le16(sizeof(Mpi2EventDataSasDeviceStatusChange_t)/4);
4293 event_data = (Mpi2EventDataSasDeviceStatusChange_t *)
4294 event_reply->EventData;
4295 event_data->ReasonCode = MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA;
4296 event_data->ASC = 0x5D;
4297 event_data->DevHandle = cpu_to_le16(handle);
4298 event_data->SASAddress = cpu_to_le64(sas_target_priv_data->sas_address);
4299 mpt2sas_ctl_add_to_event_log(ioc, event_reply);
4300 kfree(event_reply);
4301}
4302
4303/**
Eric Moored5d135b2009-05-18 13:02:08 -06004304 * _scsih_io_done - scsi request callback
Eric Moore635374e2009-03-09 01:21:12 -06004305 * @ioc: per adapter object
4306 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304307 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06004308 * @reply: reply message frame(lower 32bit addr)
4309 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304310 * Callback handler when using _scsih_qcmd.
Eric Moore635374e2009-03-09 01:21:12 -06004311 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304312 * Return 1 meaning mf should be freed from _base_interrupt
4313 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06004314 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304315static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304316_scsih_io_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06004317{
4318 Mpi2SCSIIORequest_t *mpi_request;
4319 Mpi2SCSIIOReply_t *mpi_reply;
4320 struct scsi_cmnd *scmd;
4321 u16 ioc_status;
4322 u32 xfer_cnt;
4323 u8 scsi_state;
4324 u8 scsi_status;
4325 u32 log_info;
4326 struct MPT2SAS_DEVICE *sas_device_priv_data;
Kashyap, Desai9982f592009-09-23 17:23:07 +05304327 u32 response_code = 0;
Kashyap, Desai82a45252011-07-05 12:40:23 +05304328 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06004329
4330 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
Kashyap, Desaiec07a052011-01-05 17:54:32 +05304331 scmd = _scsih_scsi_lookup_get_clear(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06004332 if (scmd == NULL)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304333 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06004334
4335 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
4336
4337 if (mpi_reply == NULL) {
4338 scmd->result = DID_OK << 16;
4339 goto out;
4340 }
4341
4342 sas_device_priv_data = scmd->device->hostdata;
4343 if (!sas_device_priv_data || !sas_device_priv_data->sas_target ||
4344 sas_device_priv_data->sas_target->deleted) {
4345 scmd->result = DID_NO_CONNECT << 16;
4346 goto out;
4347 }
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304348 /*
4349 * WARPDRIVE: If direct_io is set then it is directIO,
4350 * the failed direct I/O should be redirected to volume
4351 */
4352 if (_scsih_scsi_direct_io_get(ioc, smid)) {
Kashyap, Desai82a45252011-07-05 12:40:23 +05304353 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
4354 ioc->scsi_lookup[smid - 1].scmd = scmd;
4355 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304356 _scsih_scsi_direct_io_set(ioc, smid, 0);
4357 memcpy(mpi_request->CDB.CDB32, scmd->cmnd, scmd->cmd_len);
4358 mpi_request->DevHandle =
4359 cpu_to_le16(sas_device_priv_data->sas_target->handle);
4360 mpt2sas_base_put_smid_scsi_io(ioc, smid,
4361 sas_device_priv_data->sas_target->handle);
4362 return 0;
4363 }
4364
Eric Moore635374e2009-03-09 01:21:12 -06004365
4366 /* turning off TLR */
Kashyap, Desai9982f592009-09-23 17:23:07 +05304367 scsi_state = mpi_reply->SCSIState;
4368 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID)
4369 response_code =
4370 le32_to_cpu(mpi_reply->ResponseInfo) & 0xFF;
Eric Moore635374e2009-03-09 01:21:12 -06004371 if (!sas_device_priv_data->tlr_snoop_check) {
4372 sas_device_priv_data->tlr_snoop_check++;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304373 /* Make sure Device is not raid volume.
4374 * We do not expose raid functionality to upper layer for warpdrive.
4375 */
4376 if (!ioc->is_warpdrive && !_scsih_is_raid(&scmd->device->sdev_gendev) &&
Kashyap, Desai3ed21522010-02-17 16:08:36 +05304377 sas_is_tlr_enabled(scmd->device) &&
Kashyap, Desai84f0b042009-12-16 18:56:28 +05304378 response_code == MPI2_SCSITASKMGMT_RSP_INVALID_FRAME) {
4379 sas_disable_tlr(scmd->device);
4380 sdev_printk(KERN_INFO, scmd->device, "TLR disabled\n");
4381 }
Eric Moore635374e2009-03-09 01:21:12 -06004382 }
4383
4384 xfer_cnt = le32_to_cpu(mpi_reply->TransferCount);
4385 scsi_set_resid(scmd, scsi_bufflen(scmd) - xfer_cnt);
4386 ioc_status = le16_to_cpu(mpi_reply->IOCStatus);
4387 if (ioc_status & MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE)
4388 log_info = le32_to_cpu(mpi_reply->IOCLogInfo);
4389 else
4390 log_info = 0;
4391 ioc_status &= MPI2_IOCSTATUS_MASK;
Eric Moore635374e2009-03-09 01:21:12 -06004392 scsi_status = mpi_reply->SCSIStatus;
4393
4394 if (ioc_status == MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN && xfer_cnt == 0 &&
4395 (scsi_status == MPI2_SCSI_STATUS_BUSY ||
4396 scsi_status == MPI2_SCSI_STATUS_RESERVATION_CONFLICT ||
4397 scsi_status == MPI2_SCSI_STATUS_TASK_SET_FULL)) {
4398 ioc_status = MPI2_IOCSTATUS_SUCCESS;
4399 }
4400
4401 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID) {
4402 struct sense_info data;
4403 const void *sense_data = mpt2sas_base_get_sense_buffer(ioc,
4404 smid);
Eric Moore0d04df92009-04-21 15:38:43 -06004405 u32 sz = min_t(u32, SCSI_SENSE_BUFFERSIZE,
Eric Moore635374e2009-03-09 01:21:12 -06004406 le32_to_cpu(mpi_reply->SenseCount));
Eric Moore0d04df92009-04-21 15:38:43 -06004407 memcpy(scmd->sense_buffer, sense_data, sz);
Eric Moore635374e2009-03-09 01:21:12 -06004408 _scsih_normalize_sense(scmd->sense_buffer, &data);
4409 /* failure prediction threshold exceeded */
4410 if (data.asc == 0x5D)
4411 _scsih_smart_predicted_fault(ioc,
4412 le16_to_cpu(mpi_reply->DevHandle));
4413 }
4414
4415 switch (ioc_status) {
4416 case MPI2_IOCSTATUS_BUSY:
4417 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES:
4418 scmd->result = SAM_STAT_BUSY;
4419 break;
4420
4421 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
4422 scmd->result = DID_NO_CONNECT << 16;
4423 break;
4424
4425 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
4426 if (sas_device_priv_data->block) {
Kashyap, Desaie4e7c7e2009-09-23 17:33:14 +05304427 scmd->result = DID_TRANSPORT_DISRUPTED << 16;
4428 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06004429 }
Eric Moore635374e2009-03-09 01:21:12 -06004430 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
4431 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
4432 scmd->result = DID_RESET << 16;
4433 break;
4434
4435 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
4436 if ((xfer_cnt == 0) || (scmd->underflow > xfer_cnt))
4437 scmd->result = DID_SOFT_ERROR << 16;
4438 else
4439 scmd->result = (DID_OK << 16) | scsi_status;
4440 break;
4441
4442 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
4443 scmd->result = (DID_OK << 16) | scsi_status;
4444
4445 if ((scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID))
4446 break;
4447
4448 if (xfer_cnt < scmd->underflow) {
4449 if (scsi_status == SAM_STAT_BUSY)
4450 scmd->result = SAM_STAT_BUSY;
4451 else
4452 scmd->result = DID_SOFT_ERROR << 16;
4453 } else if (scsi_state & (MPI2_SCSI_STATE_AUTOSENSE_FAILED |
4454 MPI2_SCSI_STATE_NO_SCSI_STATUS))
4455 scmd->result = DID_SOFT_ERROR << 16;
4456 else if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
4457 scmd->result = DID_RESET << 16;
4458 else if (!xfer_cnt && scmd->cmnd[0] == REPORT_LUNS) {
4459 mpi_reply->SCSIState = MPI2_SCSI_STATE_AUTOSENSE_VALID;
4460 mpi_reply->SCSIStatus = SAM_STAT_CHECK_CONDITION;
4461 scmd->result = (DRIVER_SENSE << 24) |
4462 SAM_STAT_CHECK_CONDITION;
4463 scmd->sense_buffer[0] = 0x70;
4464 scmd->sense_buffer[2] = ILLEGAL_REQUEST;
4465 scmd->sense_buffer[12] = 0x20;
4466 scmd->sense_buffer[13] = 0;
4467 }
4468 break;
4469
4470 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
4471 scsi_set_resid(scmd, 0);
4472 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
4473 case MPI2_IOCSTATUS_SUCCESS:
4474 scmd->result = (DID_OK << 16) | scsi_status;
Kashyap, Desai9982f592009-09-23 17:23:07 +05304475 if (response_code ==
4476 MPI2_SCSITASKMGMT_RSP_INVALID_FRAME ||
4477 (scsi_state & (MPI2_SCSI_STATE_AUTOSENSE_FAILED |
4478 MPI2_SCSI_STATE_NO_SCSI_STATUS)))
Eric Moore635374e2009-03-09 01:21:12 -06004479 scmd->result = DID_SOFT_ERROR << 16;
4480 else if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
4481 scmd->result = DID_RESET << 16;
4482 break;
4483
Eric Moore3c621b32009-05-18 12:59:41 -06004484 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
4485 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
4486 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
4487 _scsih_eedp_error_handling(scmd, ioc_status);
4488 break;
Eric Moore635374e2009-03-09 01:21:12 -06004489 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
4490 case MPI2_IOCSTATUS_INVALID_FUNCTION:
4491 case MPI2_IOCSTATUS_INVALID_SGL:
4492 case MPI2_IOCSTATUS_INTERNAL_ERROR:
4493 case MPI2_IOCSTATUS_INVALID_FIELD:
4494 case MPI2_IOCSTATUS_INVALID_STATE:
4495 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
4496 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
4497 default:
4498 scmd->result = DID_SOFT_ERROR << 16;
4499 break;
4500
4501 }
4502
4503#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4504 if (scmd->result && (ioc->logging_level & MPT_DEBUG_REPLY))
4505 _scsih_scsi_ioc_info(ioc , scmd, mpi_reply, smid);
4506#endif
4507
4508 out:
4509 scsi_dma_unmap(scmd);
4510 scmd->scsi_done(scmd);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304511 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06004512}
4513
4514/**
Eric Moore635374e2009-03-09 01:21:12 -06004515 * _scsih_sas_host_refresh - refreshing sas host object contents
4516 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06004517 * Context: user
4518 *
4519 * During port enable, fw will send topology events for every device. Its
4520 * possible that the handles may change from the previous setting, so this
4521 * code keeping handles updating if changed.
4522 *
4523 * Return nothing.
4524 */
4525static void
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304526_scsih_sas_host_refresh(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06004527{
4528 u16 sz;
4529 u16 ioc_status;
4530 int i;
4531 Mpi2ConfigReply_t mpi_reply;
4532 Mpi2SasIOUnitPage0_t *sas_iounit_pg0 = NULL;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304533 u16 attached_handle;
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304534 u8 link_rate;
Eric Moore635374e2009-03-09 01:21:12 -06004535
4536 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT
4537 "updating handles for sas_host(0x%016llx)\n",
4538 ioc->name, (unsigned long long)ioc->sas_hba.sas_address));
4539
4540 sz = offsetof(Mpi2SasIOUnitPage0_t, PhyData) + (ioc->sas_hba.num_phys
4541 * sizeof(Mpi2SasIOUnit0PhyData_t));
4542 sas_iounit_pg0 = kzalloc(sz, GFP_KERNEL);
4543 if (!sas_iounit_pg0) {
4544 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4545 ioc->name, __FILE__, __LINE__, __func__);
4546 return;
4547 }
Eric Moore635374e2009-03-09 01:21:12 -06004548
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304549 if ((mpt2sas_config_get_sas_iounit_pg0(ioc, &mpi_reply,
4550 sas_iounit_pg0, sz)) != 0)
4551 goto out;
4552 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
4553 if (ioc_status != MPI2_IOCSTATUS_SUCCESS)
4554 goto out;
4555 for (i = 0; i < ioc->sas_hba.num_phys ; i++) {
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304556 link_rate = sas_iounit_pg0->PhyData[i].NegotiatedLinkRate >> 4;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304557 if (i == 0)
4558 ioc->sas_hba.handle = le16_to_cpu(sas_iounit_pg0->
4559 PhyData[0].ControllerDevHandle);
4560 ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle;
4561 attached_handle = le16_to_cpu(sas_iounit_pg0->PhyData[i].
4562 AttachedDevHandle);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304563 if (attached_handle && link_rate < MPI2_SAS_NEG_LINK_RATE_1_5)
4564 link_rate = MPI2_SAS_NEG_LINK_RATE_1_5;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304565 mpt2sas_transport_update_links(ioc, ioc->sas_hba.sas_address,
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304566 attached_handle, i, link_rate);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304567 }
Eric Moore635374e2009-03-09 01:21:12 -06004568 out:
4569 kfree(sas_iounit_pg0);
4570}
4571
4572/**
4573 * _scsih_sas_host_add - create sas host object
4574 * @ioc: per adapter object
4575 *
4576 * Creating host side data object, stored in ioc->sas_hba
4577 *
4578 * Return nothing.
4579 */
4580static void
4581_scsih_sas_host_add(struct MPT2SAS_ADAPTER *ioc)
4582{
4583 int i;
4584 Mpi2ConfigReply_t mpi_reply;
4585 Mpi2SasIOUnitPage0_t *sas_iounit_pg0 = NULL;
4586 Mpi2SasIOUnitPage1_t *sas_iounit_pg1 = NULL;
4587 Mpi2SasPhyPage0_t phy_pg0;
4588 Mpi2SasDevicePage0_t sas_device_pg0;
4589 Mpi2SasEnclosurePage0_t enclosure_pg0;
4590 u16 ioc_status;
4591 u16 sz;
4592 u16 device_missing_delay;
4593
4594 mpt2sas_config_get_number_hba_phys(ioc, &ioc->sas_hba.num_phys);
4595 if (!ioc->sas_hba.num_phys) {
4596 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4597 ioc->name, __FILE__, __LINE__, __func__);
4598 return;
4599 }
4600
4601 /* sas_iounit page 0 */
4602 sz = offsetof(Mpi2SasIOUnitPage0_t, PhyData) + (ioc->sas_hba.num_phys *
4603 sizeof(Mpi2SasIOUnit0PhyData_t));
4604 sas_iounit_pg0 = kzalloc(sz, GFP_KERNEL);
4605 if (!sas_iounit_pg0) {
4606 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4607 ioc->name, __FILE__, __LINE__, __func__);
4608 return;
4609 }
4610 if ((mpt2sas_config_get_sas_iounit_pg0(ioc, &mpi_reply,
4611 sas_iounit_pg0, sz))) {
4612 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4613 ioc->name, __FILE__, __LINE__, __func__);
4614 goto out;
4615 }
4616 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4617 MPI2_IOCSTATUS_MASK;
4618 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4619 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4620 ioc->name, __FILE__, __LINE__, __func__);
4621 goto out;
4622 }
4623
4624 /* sas_iounit page 1 */
4625 sz = offsetof(Mpi2SasIOUnitPage1_t, PhyData) + (ioc->sas_hba.num_phys *
4626 sizeof(Mpi2SasIOUnit1PhyData_t));
4627 sas_iounit_pg1 = kzalloc(sz, GFP_KERNEL);
4628 if (!sas_iounit_pg1) {
4629 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4630 ioc->name, __FILE__, __LINE__, __func__);
4631 goto out;
4632 }
4633 if ((mpt2sas_config_get_sas_iounit_pg1(ioc, &mpi_reply,
4634 sas_iounit_pg1, sz))) {
4635 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4636 ioc->name, __FILE__, __LINE__, __func__);
4637 goto out;
4638 }
4639 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4640 MPI2_IOCSTATUS_MASK;
4641 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4642 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4643 ioc->name, __FILE__, __LINE__, __func__);
4644 goto out;
4645 }
4646
4647 ioc->io_missing_delay =
4648 le16_to_cpu(sas_iounit_pg1->IODeviceMissingDelay);
4649 device_missing_delay =
4650 le16_to_cpu(sas_iounit_pg1->ReportDeviceMissingDelay);
4651 if (device_missing_delay & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
4652 ioc->device_missing_delay = (device_missing_delay &
4653 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
4654 else
4655 ioc->device_missing_delay = device_missing_delay &
4656 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
4657
4658 ioc->sas_hba.parent_dev = &ioc->shost->shost_gendev;
4659 ioc->sas_hba.phy = kcalloc(ioc->sas_hba.num_phys,
4660 sizeof(struct _sas_phy), GFP_KERNEL);
4661 if (!ioc->sas_hba.phy) {
4662 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4663 ioc->name, __FILE__, __LINE__, __func__);
4664 goto out;
4665 }
4666 for (i = 0; i < ioc->sas_hba.num_phys ; i++) {
4667 if ((mpt2sas_config_get_phy_pg0(ioc, &mpi_reply, &phy_pg0,
4668 i))) {
4669 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4670 ioc->name, __FILE__, __LINE__, __func__);
4671 goto out;
4672 }
4673 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4674 MPI2_IOCSTATUS_MASK;
4675 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4676 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4677 ioc->name, __FILE__, __LINE__, __func__);
4678 goto out;
4679 }
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304680
4681 if (i == 0)
4682 ioc->sas_hba.handle = le16_to_cpu(sas_iounit_pg0->
4683 PhyData[0].ControllerDevHandle);
4684 ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle;
Eric Moore635374e2009-03-09 01:21:12 -06004685 ioc->sas_hba.phy[i].phy_id = i;
4686 mpt2sas_transport_add_host_phy(ioc, &ioc->sas_hba.phy[i],
4687 phy_pg0, ioc->sas_hba.parent_dev);
4688 }
4689 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304690 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, ioc->sas_hba.handle))) {
Eric Moore635374e2009-03-09 01:21:12 -06004691 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4692 ioc->name, __FILE__, __LINE__, __func__);
4693 goto out;
4694 }
Eric Moore635374e2009-03-09 01:21:12 -06004695 ioc->sas_hba.enclosure_handle =
4696 le16_to_cpu(sas_device_pg0.EnclosureHandle);
4697 ioc->sas_hba.sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
4698 printk(MPT2SAS_INFO_FMT "host_add: handle(0x%04x), "
4699 "sas_addr(0x%016llx), phys(%d)\n", ioc->name, ioc->sas_hba.handle,
4700 (unsigned long long) ioc->sas_hba.sas_address,
4701 ioc->sas_hba.num_phys) ;
4702
4703 if (ioc->sas_hba.enclosure_handle) {
4704 if (!(mpt2sas_config_get_enclosure_pg0(ioc, &mpi_reply,
4705 &enclosure_pg0,
4706 MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
4707 ioc->sas_hba.enclosure_handle))) {
4708 ioc->sas_hba.enclosure_logical_id =
4709 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
4710 }
4711 }
4712
4713 out:
4714 kfree(sas_iounit_pg1);
4715 kfree(sas_iounit_pg0);
4716}
4717
4718/**
4719 * _scsih_expander_add - creating expander object
4720 * @ioc: per adapter object
4721 * @handle: expander handle
4722 *
4723 * Creating expander object, stored in ioc->sas_expander_list.
4724 *
4725 * Return 0 for success, else error.
4726 */
4727static int
4728_scsih_expander_add(struct MPT2SAS_ADAPTER *ioc, u16 handle)
4729{
4730 struct _sas_node *sas_expander;
4731 Mpi2ConfigReply_t mpi_reply;
4732 Mpi2ExpanderPage0_t expander_pg0;
4733 Mpi2ExpanderPage1_t expander_pg1;
4734 Mpi2SasEnclosurePage0_t enclosure_pg0;
4735 u32 ioc_status;
4736 u16 parent_handle;
Kashyap, Desaic97951e2011-06-14 10:54:56 +05304737 u64 sas_address, sas_address_parent = 0;
Eric Moore635374e2009-03-09 01:21:12 -06004738 int i;
4739 unsigned long flags;
Kashyap, Desai20f58952009-08-07 19:34:26 +05304740 struct _sas_port *mpt2sas_port = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06004741 int rc = 0;
4742
4743 if (!handle)
4744 return -1;
4745
Eric Moore3cb54692010-07-08 14:44:34 -06004746 if (ioc->shost_recovery || ioc->pci_error_recovery)
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05304747 return -1;
4748
Eric Moore635374e2009-03-09 01:21:12 -06004749 if ((mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
4750 MPI2_SAS_EXPAND_PGAD_FORM_HNDL, handle))) {
4751 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4752 ioc->name, __FILE__, __LINE__, __func__);
4753 return -1;
4754 }
4755
4756 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4757 MPI2_IOCSTATUS_MASK;
4758 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4759 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4760 ioc->name, __FILE__, __LINE__, __func__);
4761 return -1;
4762 }
4763
4764 /* handle out of order topology events */
4765 parent_handle = le16_to_cpu(expander_pg0.ParentDevHandle);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304766 if (_scsih_get_sas_address(ioc, parent_handle, &sas_address_parent)
4767 != 0) {
4768 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4769 ioc->name, __FILE__, __LINE__, __func__);
4770 return -1;
4771 }
4772 if (sas_address_parent != ioc->sas_hba.sas_address) {
Eric Moore635374e2009-03-09 01:21:12 -06004773 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304774 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
4775 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06004776 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
4777 if (!sas_expander) {
4778 rc = _scsih_expander_add(ioc, parent_handle);
4779 if (rc != 0)
4780 return rc;
4781 }
4782 }
4783
Eric Moore635374e2009-03-09 01:21:12 -06004784 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05304785 sas_address = le64_to_cpu(expander_pg0.SASAddress);
Eric Moore635374e2009-03-09 01:21:12 -06004786 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
4787 sas_address);
4788 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
4789
4790 if (sas_expander)
4791 return 0;
4792
4793 sas_expander = kzalloc(sizeof(struct _sas_node),
4794 GFP_KERNEL);
4795 if (!sas_expander) {
4796 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4797 ioc->name, __FILE__, __LINE__, __func__);
4798 return -1;
4799 }
4800
4801 sas_expander->handle = handle;
4802 sas_expander->num_phys = expander_pg0.NumPhys;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304803 sas_expander->sas_address_parent = sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06004804 sas_expander->sas_address = sas_address;
4805
4806 printk(MPT2SAS_INFO_FMT "expander_add: handle(0x%04x),"
4807 " parent(0x%04x), sas_addr(0x%016llx), phys(%d)\n", ioc->name,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304808 handle, parent_handle, (unsigned long long)
Eric Moore635374e2009-03-09 01:21:12 -06004809 sas_expander->sas_address, sas_expander->num_phys);
4810
4811 if (!sas_expander->num_phys)
4812 goto out_fail;
4813 sas_expander->phy = kcalloc(sas_expander->num_phys,
4814 sizeof(struct _sas_phy), GFP_KERNEL);
4815 if (!sas_expander->phy) {
4816 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4817 ioc->name, __FILE__, __LINE__, __func__);
4818 rc = -1;
4819 goto out_fail;
4820 }
4821
4822 INIT_LIST_HEAD(&sas_expander->sas_port_list);
4823 mpt2sas_port = mpt2sas_transport_port_add(ioc, handle,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304824 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06004825 if (!mpt2sas_port) {
4826 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4827 ioc->name, __FILE__, __LINE__, __func__);
4828 rc = -1;
4829 goto out_fail;
4830 }
4831 sas_expander->parent_dev = &mpt2sas_port->rphy->dev;
4832
4833 for (i = 0 ; i < sas_expander->num_phys ; i++) {
4834 if ((mpt2sas_config_get_expander_pg1(ioc, &mpi_reply,
4835 &expander_pg1, i, handle))) {
4836 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4837 ioc->name, __FILE__, __LINE__, __func__);
Kashyap, Desai20f58952009-08-07 19:34:26 +05304838 rc = -1;
4839 goto out_fail;
Eric Moore635374e2009-03-09 01:21:12 -06004840 }
4841 sas_expander->phy[i].handle = handle;
4842 sas_expander->phy[i].phy_id = i;
Kashyap, Desai20f58952009-08-07 19:34:26 +05304843
4844 if ((mpt2sas_transport_add_expander_phy(ioc,
4845 &sas_expander->phy[i], expander_pg1,
4846 sas_expander->parent_dev))) {
4847 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4848 ioc->name, __FILE__, __LINE__, __func__);
4849 rc = -1;
4850 goto out_fail;
4851 }
Eric Moore635374e2009-03-09 01:21:12 -06004852 }
4853
4854 if (sas_expander->enclosure_handle) {
4855 if (!(mpt2sas_config_get_enclosure_pg0(ioc, &mpi_reply,
4856 &enclosure_pg0, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
4857 sas_expander->enclosure_handle))) {
4858 sas_expander->enclosure_logical_id =
4859 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
4860 }
4861 }
4862
4863 _scsih_expander_node_add(ioc, sas_expander);
4864 return 0;
4865
4866 out_fail:
4867
Kashyap, Desai20f58952009-08-07 19:34:26 +05304868 if (mpt2sas_port)
4869 mpt2sas_transport_port_remove(ioc, sas_expander->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304870 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06004871 kfree(sas_expander);
4872 return rc;
4873}
4874
4875/**
Kashyap, Desai744090d2009-10-05 15:56:56 +05304876 * _scsih_done - scsih callback handler.
4877 * @ioc: per adapter object
4878 * @smid: system request message index
4879 * @msix_index: MSIX table index supplied by the OS
4880 * @reply: reply message frame(lower 32bit addr)
4881 *
4882 * Callback handler when sending internal generated message frames.
4883 * The callback index passed is `ioc->scsih_cb_idx`
4884 *
4885 * Return 1 meaning mf should be freed from _base_interrupt
4886 * 0 means the mf is freed from this function.
4887 */
4888static u8
4889_scsih_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
4890{
4891 MPI2DefaultReply_t *mpi_reply;
4892
4893 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
4894 if (ioc->scsih_cmds.status == MPT2_CMD_NOT_USED)
4895 return 1;
4896 if (ioc->scsih_cmds.smid != smid)
4897 return 1;
4898 ioc->scsih_cmds.status |= MPT2_CMD_COMPLETE;
4899 if (mpi_reply) {
4900 memcpy(ioc->scsih_cmds.reply, mpi_reply,
4901 mpi_reply->MsgLength*4);
4902 ioc->scsih_cmds.status |= MPT2_CMD_REPLY_VALID;
4903 }
4904 ioc->scsih_cmds.status &= ~MPT2_CMD_PENDING;
4905 complete(&ioc->scsih_cmds.done);
4906 return 1;
4907}
4908
4909/**
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304910 * mpt2sas_expander_remove - removing expander object
Eric Moore635374e2009-03-09 01:21:12 -06004911 * @ioc: per adapter object
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304912 * @sas_address: expander sas_address
Eric Moore635374e2009-03-09 01:21:12 -06004913 *
4914 * Return nothing.
4915 */
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304916void
4917mpt2sas_expander_remove(struct MPT2SAS_ADAPTER *ioc, u64 sas_address)
Eric Moore635374e2009-03-09 01:21:12 -06004918{
4919 struct _sas_node *sas_expander;
4920 unsigned long flags;
4921
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05304922 if (ioc->shost_recovery)
4923 return;
4924
Eric Moore635374e2009-03-09 01:21:12 -06004925 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304926 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
4927 sas_address);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304928 if (!sas_expander) {
4929 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
4930 return;
4931 }
4932 list_del(&sas_expander->list);
Eric Moore635374e2009-03-09 01:21:12 -06004933 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
4934 _scsih_expander_node_remove(ioc, sas_expander);
4935}
4936
4937/**
Kashyap, Desaib4344272010-03-17 16:24:14 +05304938 * _scsih_check_access_status - check access flags
4939 * @ioc: per adapter object
4940 * @sas_address: sas address
4941 * @handle: sas device handle
4942 * @access_flags: errors returned during discovery of the device
4943 *
4944 * Return 0 for success, else failure
4945 */
4946static u8
4947_scsih_check_access_status(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
4948 u16 handle, u8 access_status)
4949{
4950 u8 rc = 1;
4951 char *desc = NULL;
4952
4953 switch (access_status) {
4954 case MPI2_SAS_DEVICE0_ASTATUS_NO_ERRORS:
4955 case MPI2_SAS_DEVICE0_ASTATUS_SATA_NEEDS_INITIALIZATION:
4956 rc = 0;
4957 break;
4958 case MPI2_SAS_DEVICE0_ASTATUS_SATA_CAPABILITY_FAILED:
4959 desc = "sata capability failed";
4960 break;
4961 case MPI2_SAS_DEVICE0_ASTATUS_SATA_AFFILIATION_CONFLICT:
4962 desc = "sata affiliation conflict";
4963 break;
4964 case MPI2_SAS_DEVICE0_ASTATUS_ROUTE_NOT_ADDRESSABLE:
4965 desc = "route not addressable";
4966 break;
4967 case MPI2_SAS_DEVICE0_ASTATUS_SMP_ERROR_NOT_ADDRESSABLE:
4968 desc = "smp error not addressable";
4969 break;
4970 case MPI2_SAS_DEVICE0_ASTATUS_DEVICE_BLOCKED:
4971 desc = "device blocked";
4972 break;
4973 case MPI2_SAS_DEVICE0_ASTATUS_SATA_INIT_FAILED:
4974 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UNKNOWN:
4975 case MPI2_SAS_DEVICE0_ASTATUS_SIF_AFFILIATION_CONFLICT:
4976 case MPI2_SAS_DEVICE0_ASTATUS_SIF_DIAG:
4977 case MPI2_SAS_DEVICE0_ASTATUS_SIF_IDENTIFICATION:
4978 case MPI2_SAS_DEVICE0_ASTATUS_SIF_CHECK_POWER:
4979 case MPI2_SAS_DEVICE0_ASTATUS_SIF_PIO_SN:
4980 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MDMA_SN:
4981 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UDMA_SN:
4982 case MPI2_SAS_DEVICE0_ASTATUS_SIF_ZONING_VIOLATION:
4983 case MPI2_SAS_DEVICE0_ASTATUS_SIF_NOT_ADDRESSABLE:
4984 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MAX:
4985 desc = "sata initialization failed";
4986 break;
4987 default:
4988 desc = "unknown";
4989 break;
4990 }
4991
4992 if (!rc)
4993 return 0;
4994
4995 printk(MPT2SAS_ERR_FMT "discovery errors(%s): sas_address(0x%016llx), "
4996 "handle(0x%04x)\n", ioc->name, desc,
4997 (unsigned long long)sas_address, handle);
4998 return rc;
4999}
5000
5001static void
5002_scsih_check_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
5003{
5004 Mpi2ConfigReply_t mpi_reply;
5005 Mpi2SasDevicePage0_t sas_device_pg0;
5006 struct _sas_device *sas_device;
5007 u32 ioc_status;
5008 unsigned long flags;
5009 u64 sas_address;
5010 struct scsi_target *starget;
5011 struct MPT2SAS_TARGET *sas_target_priv_data;
5012 u32 device_info;
5013
5014 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
5015 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle)))
5016 return;
5017
5018 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
5019 if (ioc_status != MPI2_IOCSTATUS_SUCCESS)
5020 return;
5021
5022 /* check if this is end device */
5023 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
5024 if (!(_scsih_is_end_device(device_info)))
5025 return;
5026
5027 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5028 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
5029 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5030 sas_address);
5031
5032 if (!sas_device) {
5033 printk(MPT2SAS_ERR_FMT "device is not present "
5034 "handle(0x%04x), no sas_device!!!\n", ioc->name, handle);
5035 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5036 return;
5037 }
5038
5039 if (unlikely(sas_device->handle != handle)) {
5040 starget = sas_device->starget;
5041 sas_target_priv_data = starget->hostdata;
5042 starget_printk(KERN_INFO, starget, "handle changed from(0x%04x)"
5043 " to (0x%04x)!!!\n", sas_device->handle, handle);
5044 sas_target_priv_data->handle = handle;
5045 sas_device->handle = handle;
5046 }
5047 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5048
5049 /* check if device is present */
5050 if (!(le16_to_cpu(sas_device_pg0.Flags) &
5051 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT)) {
5052 printk(MPT2SAS_ERR_FMT "device is not present "
5053 "handle(0x%04x), flags!!!\n", ioc->name, handle);
5054 return;
5055 }
5056
5057 /* check if there were any issues with discovery */
5058 if (_scsih_check_access_status(ioc, sas_address, handle,
5059 sas_device_pg0.AccessStatus))
5060 return;
5061 _scsih_ublock_io_device(ioc, handle);
5062
5063}
5064
5065/**
Eric Moore635374e2009-03-09 01:21:12 -06005066 * _scsih_add_device - creating sas device object
5067 * @ioc: per adapter object
5068 * @handle: sas device handle
5069 * @phy_num: phy number end device attached to
5070 * @is_pd: is this hidden raid component
5071 *
5072 * Creating end device object, stored in ioc->sas_device_list.
5073 *
5074 * Returns 0 for success, non-zero for failure.
5075 */
5076static int
5077_scsih_add_device(struct MPT2SAS_ADAPTER *ioc, u16 handle, u8 phy_num, u8 is_pd)
5078{
5079 Mpi2ConfigReply_t mpi_reply;
5080 Mpi2SasDevicePage0_t sas_device_pg0;
5081 Mpi2SasEnclosurePage0_t enclosure_pg0;
5082 struct _sas_device *sas_device;
5083 u32 ioc_status;
5084 __le64 sas_address;
5085 u32 device_info;
5086 unsigned long flags;
5087
5088 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
5089 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
5090 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5091 ioc->name, __FILE__, __LINE__, __func__);
5092 return -1;
5093 }
5094
5095 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5096 MPI2_IOCSTATUS_MASK;
5097 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
5098 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5099 ioc->name, __FILE__, __LINE__, __func__);
5100 return -1;
5101 }
5102
Kashyap, Desaib4344272010-03-17 16:24:14 +05305103 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
5104
Eric Moore635374e2009-03-09 01:21:12 -06005105 /* check if device is present */
5106 if (!(le16_to_cpu(sas_device_pg0.Flags) &
5107 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT)) {
5108 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5109 ioc->name, __FILE__, __LINE__, __func__);
5110 printk(MPT2SAS_ERR_FMT "Flags = 0x%04x\n",
5111 ioc->name, le16_to_cpu(sas_device_pg0.Flags));
5112 return -1;
5113 }
5114
Kashyap, Desaib4344272010-03-17 16:24:14 +05305115 /* check if there were any issues with discovery */
5116 if (_scsih_check_access_status(ioc, sas_address, handle,
5117 sas_device_pg0.AccessStatus))
Eric Moore635374e2009-03-09 01:21:12 -06005118 return -1;
Eric Moore635374e2009-03-09 01:21:12 -06005119
5120 /* check if this is end device */
5121 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
5122 if (!(_scsih_is_end_device(device_info))) {
5123 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5124 ioc->name, __FILE__, __LINE__, __func__);
5125 return -1;
5126 }
5127
Eric Moore635374e2009-03-09 01:21:12 -06005128
5129 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5130 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5131 sas_address);
5132 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5133
Kashyap, Desaib4344272010-03-17 16:24:14 +05305134 if (sas_device)
Eric Moore635374e2009-03-09 01:21:12 -06005135 return 0;
Eric Moore635374e2009-03-09 01:21:12 -06005136
5137 sas_device = kzalloc(sizeof(struct _sas_device),
5138 GFP_KERNEL);
5139 if (!sas_device) {
5140 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5141 ioc->name, __FILE__, __LINE__, __func__);
5142 return -1;
5143 }
5144
5145 sas_device->handle = handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305146 if (_scsih_get_sas_address(ioc, le16_to_cpu
5147 (sas_device_pg0.ParentDevHandle),
5148 &sas_device->sas_address_parent) != 0)
5149 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5150 ioc->name, __FILE__, __LINE__, __func__);
Eric Moore635374e2009-03-09 01:21:12 -06005151 sas_device->enclosure_handle =
5152 le16_to_cpu(sas_device_pg0.EnclosureHandle);
5153 sas_device->slot =
5154 le16_to_cpu(sas_device_pg0.Slot);
5155 sas_device->device_info = device_info;
5156 sas_device->sas_address = sas_address;
Kashyap, Desai7fbae672010-06-17 13:45:17 +05305157 sas_device->phy = sas_device_pg0.PhyNum;
Eric Moore635374e2009-03-09 01:21:12 -06005158
5159 /* get enclosure_logical_id */
Kashyap, Desai15052c92009-08-07 19:33:17 +05305160 if (sas_device->enclosure_handle && !(mpt2sas_config_get_enclosure_pg0(
5161 ioc, &mpi_reply, &enclosure_pg0, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
5162 sas_device->enclosure_handle)))
Eric Moore635374e2009-03-09 01:21:12 -06005163 sas_device->enclosure_logical_id =
5164 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
Eric Moore635374e2009-03-09 01:21:12 -06005165
5166 /* get device name */
5167 sas_device->device_name = le64_to_cpu(sas_device_pg0.DeviceName);
5168
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305169 if (ioc->wait_for_discovery_to_complete)
Eric Moore635374e2009-03-09 01:21:12 -06005170 _scsih_sas_device_init_add(ioc, sas_device);
5171 else
5172 _scsih_sas_device_add(ioc, sas_device);
5173
5174 return 0;
5175}
5176
5177/**
Kashyap, Desai1278b112010-03-09 17:34:13 +05305178 * _scsih_remove_device - removing sas device object
5179 * @ioc: per adapter object
5180 * @sas_device_delete: the sas_device object
5181 *
5182 * Return nothing.
5183 */
5184static void
5185_scsih_remove_device(struct MPT2SAS_ADAPTER *ioc,
5186 struct _sas_device *sas_device)
5187{
5188 struct _sas_device sas_device_backup;
5189 struct MPT2SAS_TARGET *sas_target_priv_data;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05305190
Kashyap, Desai1278b112010-03-09 17:34:13 +05305191 if (!sas_device)
5192 return;
Eric Moore635374e2009-03-09 01:21:12 -06005193
Kashyap, Desai1278b112010-03-09 17:34:13 +05305194 memcpy(&sas_device_backup, sas_device, sizeof(struct _sas_device));
Eric Moore635374e2009-03-09 01:21:12 -06005195 _scsih_sas_device_remove(ioc, sas_device);
5196
Kashyap, Desai1278b112010-03-09 17:34:13 +05305197 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: enter: "
5198 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
5199 sas_device_backup.handle, (unsigned long long)
5200 sas_device_backup.sas_address));
5201
5202 if (sas_device_backup.starget && sas_device_backup.starget->hostdata) {
5203 sas_target_priv_data = sas_device_backup.starget->hostdata;
5204 sas_target_priv_data->deleted = 1;
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05305205 _scsih_ublock_io_device(ioc, sas_device_backup.handle);
5206 sas_target_priv_data->handle =
5207 MPT2SAS_INVALID_DEVICE_HANDLE;
Kashyap, Desai1278b112010-03-09 17:34:13 +05305208 }
5209
Kashyap, Desai1278b112010-03-09 17:34:13 +05305210 _scsih_ublock_io_device(ioc, sas_device_backup.handle);
5211
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05305212 if (!ioc->hide_drives)
5213 mpt2sas_transport_port_remove(ioc,
5214 sas_device_backup.sas_address,
5215 sas_device_backup.sas_address_parent);
Kashyap, Desai1278b112010-03-09 17:34:13 +05305216
5217 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), sas_addr"
5218 "(0x%016llx)\n", ioc->name, sas_device_backup.handle,
5219 (unsigned long long) sas_device_backup.sas_address);
5220
5221 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit: "
5222 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
5223 sas_device_backup.handle, (unsigned long long)
5224 sas_device_backup.sas_address));
Eric Moore635374e2009-03-09 01:21:12 -06005225}
5226
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305227/**
5228 * mpt2sas_device_remove - removing device object
5229 * @ioc: per adapter object
5230 * @sas_address: expander sas_address
5231 *
5232 * Return nothing.
5233 */
5234void
5235mpt2sas_device_remove(struct MPT2SAS_ADAPTER *ioc, u64 sas_address)
5236{
5237 struct _sas_device *sas_device;
5238 unsigned long flags;
5239
5240 if (ioc->shost_recovery)
5241 return;
5242
5243 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5244 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5245 sas_address);
5246 if (!sas_device) {
5247 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5248 return;
5249 }
5250 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5251 _scsih_remove_device(ioc, sas_device);
5252}
5253
Eric Moore635374e2009-03-09 01:21:12 -06005254#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5255/**
5256 * _scsih_sas_topology_change_event_debug - debug for topology event
5257 * @ioc: per adapter object
5258 * @event_data: event data payload
5259 * Context: user.
5260 */
5261static void
5262_scsih_sas_topology_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
5263 Mpi2EventDataSasTopologyChangeList_t *event_data)
5264{
5265 int i;
5266 u16 handle;
5267 u16 reason_code;
5268 u8 phy_number;
5269 char *status_str = NULL;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305270 u8 link_rate, prev_link_rate;
Eric Moore635374e2009-03-09 01:21:12 -06005271
5272 switch (event_data->ExpStatus) {
5273 case MPI2_EVENT_SAS_TOPO_ES_ADDED:
5274 status_str = "add";
5275 break;
5276 case MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING:
5277 status_str = "remove";
5278 break;
5279 case MPI2_EVENT_SAS_TOPO_ES_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305280 case 0:
Eric Moore635374e2009-03-09 01:21:12 -06005281 status_str = "responding";
5282 break;
5283 case MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING:
5284 status_str = "remove delay";
5285 break;
5286 default:
5287 status_str = "unknown status";
5288 break;
5289 }
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305290 printk(MPT2SAS_INFO_FMT "sas topology change: (%s)\n",
Eric Moore635374e2009-03-09 01:21:12 -06005291 ioc->name, status_str);
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305292 printk(KERN_INFO "\thandle(0x%04x), enclosure_handle(0x%04x) "
Eric Moore635374e2009-03-09 01:21:12 -06005293 "start_phy(%02d), count(%d)\n",
5294 le16_to_cpu(event_data->ExpanderDevHandle),
5295 le16_to_cpu(event_data->EnclosureHandle),
5296 event_data->StartPhyNum, event_data->NumEntries);
5297 for (i = 0; i < event_data->NumEntries; i++) {
5298 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
5299 if (!handle)
5300 continue;
5301 phy_number = event_data->StartPhyNum + i;
5302 reason_code = event_data->PHY[i].PhyStatus &
5303 MPI2_EVENT_SAS_TOPO_RC_MASK;
5304 switch (reason_code) {
5305 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305306 status_str = "target add";
Eric Moore635374e2009-03-09 01:21:12 -06005307 break;
5308 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305309 status_str = "target remove";
Eric Moore635374e2009-03-09 01:21:12 -06005310 break;
5311 case MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305312 status_str = "delay target remove";
Eric Moore635374e2009-03-09 01:21:12 -06005313 break;
5314 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305315 status_str = "link rate change";
Eric Moore635374e2009-03-09 01:21:12 -06005316 break;
5317 case MPI2_EVENT_SAS_TOPO_RC_NO_CHANGE:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305318 status_str = "target responding";
Eric Moore635374e2009-03-09 01:21:12 -06005319 break;
5320 default:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305321 status_str = "unknown";
Eric Moore635374e2009-03-09 01:21:12 -06005322 break;
5323 }
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305324 link_rate = event_data->PHY[i].LinkRate >> 4;
5325 prev_link_rate = event_data->PHY[i].LinkRate & 0xF;
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305326 printk(KERN_INFO "\tphy(%02d), attached_handle(0x%04x): %s:"
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305327 " link rate: new(0x%02x), old(0x%02x)\n", phy_number,
5328 handle, status_str, link_rate, prev_link_rate);
5329
Eric Moore635374e2009-03-09 01:21:12 -06005330 }
5331}
5332#endif
5333
5334/**
5335 * _scsih_sas_topology_change_event - handle topology changes
5336 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305337 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005338 * Context: user.
5339 *
5340 */
5341static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305342_scsih_sas_topology_change_event(struct MPT2SAS_ADAPTER *ioc,
Eric Moore635374e2009-03-09 01:21:12 -06005343 struct fw_event_work *fw_event)
5344{
5345 int i;
5346 u16 parent_handle, handle;
5347 u16 reason_code;
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305348 u8 phy_number, max_phys;
Eric Moore635374e2009-03-09 01:21:12 -06005349 struct _sas_node *sas_expander;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305350 struct _sas_device *sas_device;
5351 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06005352 unsigned long flags;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305353 u8 link_rate, prev_link_rate;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305354 Mpi2EventDataSasTopologyChangeList_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06005355
5356#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5357 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
5358 _scsih_sas_topology_change_event_debug(ioc, event_data);
5359#endif
5360
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05305361 if (ioc->remove_host || ioc->pci_error_recovery)
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305362 return;
5363
Eric Moore635374e2009-03-09 01:21:12 -06005364 if (!ioc->sas_hba.num_phys)
5365 _scsih_sas_host_add(ioc);
5366 else
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305367 _scsih_sas_host_refresh(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06005368
5369 if (fw_event->ignore) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305370 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "ignoring expander "
Eric Moore635374e2009-03-09 01:21:12 -06005371 "event\n", ioc->name));
5372 return;
5373 }
5374
5375 parent_handle = le16_to_cpu(event_data->ExpanderDevHandle);
5376
5377 /* handle expander add */
5378 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_ADDED)
5379 if (_scsih_expander_add(ioc, parent_handle) != 0)
5380 return;
5381
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305382 spin_lock_irqsave(&ioc->sas_node_lock, flags);
5383 sas_expander = mpt2sas_scsih_expander_find_by_handle(ioc,
5384 parent_handle);
5385 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305386 if (sas_expander) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305387 sas_address = sas_expander->sas_address;
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305388 max_phys = sas_expander->num_phys;
5389 } else if (parent_handle < ioc->sas_hba.num_phys) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305390 sas_address = ioc->sas_hba.sas_address;
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305391 max_phys = ioc->sas_hba.num_phys;
5392 } else
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305393 return;
5394
Eric Moore635374e2009-03-09 01:21:12 -06005395 /* handle siblings events */
5396 for (i = 0; i < event_data->NumEntries; i++) {
5397 if (fw_event->ignore) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305398 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "ignoring "
Eric Moore635374e2009-03-09 01:21:12 -06005399 "expander event\n", ioc->name));
5400 return;
5401 }
Eric Moore3cb54692010-07-08 14:44:34 -06005402 if (ioc->shost_recovery || ioc->remove_host ||
5403 ioc->pci_error_recovery)
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05305404 return;
Kashyap, Desai308609c2009-09-14 11:07:23 +05305405 phy_number = event_data->StartPhyNum + i;
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305406 if (phy_number >= max_phys)
5407 continue;
Kashyap, Desai308609c2009-09-14 11:07:23 +05305408 reason_code = event_data->PHY[i].PhyStatus &
5409 MPI2_EVENT_SAS_TOPO_RC_MASK;
5410 if ((event_data->PHY[i].PhyStatus &
5411 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT) && (reason_code !=
5412 MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING))
Eric Moore635374e2009-03-09 01:21:12 -06005413 continue;
5414 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
5415 if (!handle)
5416 continue;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305417 link_rate = event_data->PHY[i].LinkRate >> 4;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305418 prev_link_rate = event_data->PHY[i].LinkRate & 0xF;
Eric Moore635374e2009-03-09 01:21:12 -06005419 switch (reason_code) {
5420 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305421
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05305422 if (ioc->shost_recovery)
5423 break;
5424
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305425 if (link_rate == prev_link_rate)
5426 break;
5427
5428 mpt2sas_transport_update_links(ioc, sas_address,
5429 handle, phy_number, link_rate);
5430
Kashyap, Desaib4344272010-03-17 16:24:14 +05305431 if (link_rate < MPI2_SAS_NEG_LINK_RATE_1_5)
5432 break;
5433
5434 _scsih_check_device(ioc, handle);
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305435 break;
Eric Moore635374e2009-03-09 01:21:12 -06005436 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED:
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305437
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05305438 if (ioc->shost_recovery)
5439 break;
5440
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305441 mpt2sas_transport_update_links(ioc, sas_address,
5442 handle, phy_number, link_rate);
5443
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305444 _scsih_add_device(ioc, handle, phy_number, 0);
Eric Moore635374e2009-03-09 01:21:12 -06005445 break;
5446 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING:
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305447
5448 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5449 sas_device = _scsih_sas_device_find_by_handle(ioc,
5450 handle);
5451 if (!sas_device) {
5452 spin_unlock_irqrestore(&ioc->sas_device_lock,
5453 flags);
5454 break;
5455 }
5456 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5457 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06005458 break;
5459 }
5460 }
5461
5462 /* handle expander removal */
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305463 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING &&
5464 sas_expander)
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305465 mpt2sas_expander_remove(ioc, sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06005466
5467}
5468
5469#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5470/**
5471 * _scsih_sas_device_status_change_event_debug - debug for device event
5472 * @event_data: event data payload
5473 * Context: user.
5474 *
5475 * Return nothing.
5476 */
5477static void
5478_scsih_sas_device_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
5479 Mpi2EventDataSasDeviceStatusChange_t *event_data)
5480{
5481 char *reason_str = NULL;
5482
5483 switch (event_data->ReasonCode) {
5484 case MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA:
5485 reason_str = "smart data";
5486 break;
5487 case MPI2_EVENT_SAS_DEV_STAT_RC_UNSUPPORTED:
5488 reason_str = "unsupported device discovered";
5489 break;
5490 case MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET:
5491 reason_str = "internal device reset";
5492 break;
5493 case MPI2_EVENT_SAS_DEV_STAT_RC_TASK_ABORT_INTERNAL:
5494 reason_str = "internal task abort";
5495 break;
5496 case MPI2_EVENT_SAS_DEV_STAT_RC_ABORT_TASK_SET_INTERNAL:
5497 reason_str = "internal task abort set";
5498 break;
5499 case MPI2_EVENT_SAS_DEV_STAT_RC_CLEAR_TASK_SET_INTERNAL:
5500 reason_str = "internal clear task set";
5501 break;
5502 case MPI2_EVENT_SAS_DEV_STAT_RC_QUERY_TASK_INTERNAL:
5503 reason_str = "internal query task";
5504 break;
5505 case MPI2_EVENT_SAS_DEV_STAT_RC_SATA_INIT_FAILURE:
5506 reason_str = "sata init failure";
5507 break;
5508 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET:
5509 reason_str = "internal device reset complete";
5510 break;
5511 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_TASK_ABORT_INTERNAL:
5512 reason_str = "internal task abort complete";
5513 break;
5514 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION:
5515 reason_str = "internal async notification";
5516 break;
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05305517 case MPI2_EVENT_SAS_DEV_STAT_RC_EXPANDER_REDUCED_FUNCTIONALITY:
5518 reason_str = "expander reduced functionality";
5519 break;
5520 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_EXPANDER_REDUCED_FUNCTIONALITY:
5521 reason_str = "expander reduced functionality complete";
5522 break;
Eric Moore635374e2009-03-09 01:21:12 -06005523 default:
5524 reason_str = "unknown reason";
5525 break;
5526 }
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305527 printk(MPT2SAS_INFO_FMT "device status change: (%s)\n"
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305528 "\thandle(0x%04x), sas address(0x%016llx), tag(%d)",
5529 ioc->name, reason_str, le16_to_cpu(event_data->DevHandle),
5530 (unsigned long long)le64_to_cpu(event_data->SASAddress),
5531 le16_to_cpu(event_data->TaskTag));
Eric Moore635374e2009-03-09 01:21:12 -06005532 if (event_data->ReasonCode == MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA)
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305533 printk(MPT2SAS_INFO_FMT ", ASC(0x%x), ASCQ(0x%x)\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06005534 event_data->ASC, event_data->ASCQ);
5535 printk(KERN_INFO "\n");
5536}
5537#endif
5538
5539/**
5540 * _scsih_sas_device_status_change_event - handle device status change
5541 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305542 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005543 * Context: user.
5544 *
5545 * Return nothing.
5546 */
5547static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305548_scsih_sas_device_status_change_event(struct MPT2SAS_ADAPTER *ioc,
5549 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005550{
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305551 struct MPT2SAS_TARGET *target_priv_data;
5552 struct _sas_device *sas_device;
Kashyap, Desaic97951e2011-06-14 10:54:56 +05305553 u64 sas_address;
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305554 unsigned long flags;
5555 Mpi2EventDataSasDeviceStatusChange_t *event_data =
5556 fw_event->event_data;
5557
Eric Moore635374e2009-03-09 01:21:12 -06005558#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5559 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305560 _scsih_sas_device_status_change_event_debug(ioc,
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305561 event_data);
Eric Moore635374e2009-03-09 01:21:12 -06005562#endif
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305563
Kashyap, Desaiefe82a12011-01-04 11:34:17 +05305564 /* In MPI Revision K (0xC), the internal device reset complete was
5565 * implemented, so avoid setting tm_busy flag for older firmware.
5566 */
5567 if ((ioc->facts.HeaderVersion >> 8) < 0xC)
5568 return;
5569
Kashyap, Desaif891dcf2010-03-17 16:22:21 +05305570 if (event_data->ReasonCode !=
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305571 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET &&
Kashyap, Desaif891dcf2010-03-17 16:22:21 +05305572 event_data->ReasonCode !=
5573 MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET)
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305574 return;
5575
5576 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5577 sas_address = le64_to_cpu(event_data->SASAddress);
5578 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5579 sas_address);
5580 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5581
5582 if (!sas_device || !sas_device->starget)
5583 return;
5584
5585 target_priv_data = sas_device->starget->hostdata;
5586 if (!target_priv_data)
5587 return;
5588
5589 if (event_data->ReasonCode ==
5590 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET)
5591 target_priv_data->tm_busy = 1;
5592 else
5593 target_priv_data->tm_busy = 0;
Eric Moore635374e2009-03-09 01:21:12 -06005594}
5595
5596#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5597/**
5598 * _scsih_sas_enclosure_dev_status_change_event_debug - debug for enclosure event
5599 * @ioc: per adapter object
5600 * @event_data: event data payload
5601 * Context: user.
5602 *
5603 * Return nothing.
5604 */
5605static void
5606_scsih_sas_enclosure_dev_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
5607 Mpi2EventDataSasEnclDevStatusChange_t *event_data)
5608{
5609 char *reason_str = NULL;
5610
5611 switch (event_data->ReasonCode) {
5612 case MPI2_EVENT_SAS_ENCL_RC_ADDED:
5613 reason_str = "enclosure add";
5614 break;
5615 case MPI2_EVENT_SAS_ENCL_RC_NOT_RESPONDING:
5616 reason_str = "enclosure remove";
5617 break;
5618 default:
5619 reason_str = "unknown reason";
5620 break;
5621 }
5622
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305623 printk(MPT2SAS_INFO_FMT "enclosure status change: (%s)\n"
Eric Moore635374e2009-03-09 01:21:12 -06005624 "\thandle(0x%04x), enclosure logical id(0x%016llx)"
5625 " number slots(%d)\n", ioc->name, reason_str,
5626 le16_to_cpu(event_data->EnclosureHandle),
5627 (unsigned long long)le64_to_cpu(event_data->EnclosureLogicalID),
5628 le16_to_cpu(event_data->StartSlot));
5629}
5630#endif
5631
5632/**
5633 * _scsih_sas_enclosure_dev_status_change_event - handle enclosure events
5634 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305635 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005636 * Context: user.
5637 *
5638 * Return nothing.
5639 */
5640static void
5641_scsih_sas_enclosure_dev_status_change_event(struct MPT2SAS_ADAPTER *ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305642 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005643{
5644#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5645 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
5646 _scsih_sas_enclosure_dev_status_change_event_debug(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305647 fw_event->event_data);
Eric Moore635374e2009-03-09 01:21:12 -06005648#endif
5649}
5650
5651/**
5652 * _scsih_sas_broadcast_primative_event - handle broadcast events
5653 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305654 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005655 * Context: user.
5656 *
5657 * Return nothing.
5658 */
5659static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305660_scsih_sas_broadcast_primative_event(struct MPT2SAS_ADAPTER *ioc,
5661 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005662{
5663 struct scsi_cmnd *scmd;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305664 struct scsi_device *sdev;
Eric Moore635374e2009-03-09 01:21:12 -06005665 u16 smid, handle;
5666 u32 lun;
5667 struct MPT2SAS_DEVICE *sas_device_priv_data;
5668 u32 termination_count;
5669 u32 query_count;
5670 Mpi2SCSITaskManagementReply_t *mpi_reply;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305671 Mpi2EventDataSasBroadcastPrimitive_t *event_data = fw_event->event_data;
Kashyap, Desai463217b2009-10-05 15:53:06 +05305672 u16 ioc_status;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305673 unsigned long flags;
5674 int r;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305675 u8 max_retries = 0;
5676 u8 task_abort_retries;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305677
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305678 mutex_lock(&ioc->tm_cmds.mutex);
5679 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: enter: phy number(%d), "
5680 "width(%d)\n", ioc->name, __func__, event_data->PhyNum,
5681 event_data->PortWidth));
5682
5683 _scsih_block_io_all_device(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06005684
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305685 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305686 mpi_reply = ioc->tm_cmds.reply;
5687broadcast_aen_retry:
5688
5689 /* sanity checks for retrying this loop */
5690 if (max_retries++ == 5) {
5691 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: giving up\n",
5692 ioc->name, __func__));
5693 goto out;
5694 } else if (max_retries > 1)
5695 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: %d retry\n",
5696 ioc->name, __func__, max_retries - 1));
5697
Eric Moore635374e2009-03-09 01:21:12 -06005698 termination_count = 0;
5699 query_count = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05305700 for (smid = 1; smid <= ioc->scsiio_depth; smid++) {
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305701 if (ioc->shost_recovery)
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305702 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06005703 scmd = _scsih_scsi_lookup_get(ioc, smid);
5704 if (!scmd)
5705 continue;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305706 sdev = scmd->device;
5707 sas_device_priv_data = sdev->hostdata;
Eric Moore635374e2009-03-09 01:21:12 -06005708 if (!sas_device_priv_data || !sas_device_priv_data->sas_target)
5709 continue;
5710 /* skip hidden raid components */
5711 if (sas_device_priv_data->sas_target->flags &
5712 MPT_TARGET_FLAGS_RAID_COMPONENT)
5713 continue;
5714 /* skip volumes */
5715 if (sas_device_priv_data->sas_target->flags &
5716 MPT_TARGET_FLAGS_VOLUME)
5717 continue;
5718
5719 handle = sas_device_priv_data->sas_target->handle;
5720 lun = sas_device_priv_data->lun;
5721 query_count++;
5722
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305723 if (ioc->shost_recovery)
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305724 goto out;
5725
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305726 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305727 r = mpt2sas_scsih_issue_tm(ioc, handle, 0, 0, lun,
5728 MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK, smid, 30, 0,
5729 TM_MUTEX_OFF);
5730 if (r == FAILED) {
5731 sdev_printk(KERN_WARNING, sdev,
5732 "mpt2sas_scsih_issue_tm: FAILED when sending "
5733 "QUERY_TASK: scmd(%p)\n", scmd);
5734 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
5735 goto broadcast_aen_retry;
5736 }
Kashyap, Desai463217b2009-10-05 15:53:06 +05305737 ioc_status = le16_to_cpu(mpi_reply->IOCStatus)
5738 & MPI2_IOCSTATUS_MASK;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305739 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
5740 sdev_printk(KERN_WARNING, sdev, "query task: FAILED "
5741 "with IOCSTATUS(0x%04x), scmd(%p)\n", ioc_status,
5742 scmd);
5743 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
5744 goto broadcast_aen_retry;
5745 }
5746
5747 /* see if IO is still owned by IOC and target */
5748 if (mpi_reply->ResponseCode ==
Eric Moore635374e2009-03-09 01:21:12 -06005749 MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED ||
5750 mpi_reply->ResponseCode ==
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305751 MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC) {
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305752 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06005753 continue;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305754 }
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305755 task_abort_retries = 0;
5756 tm_retry:
5757 if (task_abort_retries++ == 60) {
5758 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
5759 "%s: ABORT_TASK: giving up\n", ioc->name,
5760 __func__));
5761 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
5762 goto broadcast_aen_retry;
5763 }
5764
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305765 if (ioc->shost_recovery)
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305766 goto out_no_lock;
5767
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305768 r = mpt2sas_scsih_issue_tm(ioc, handle, sdev->channel, sdev->id,
5769 sdev->lun, MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK, smid, 30,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305770 scmd->serial_number, TM_MUTEX_OFF);
5771 if (r == FAILED) {
5772 sdev_printk(KERN_WARNING, sdev,
5773 "mpt2sas_scsih_issue_tm: ABORT_TASK: FAILED : "
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305774 "scmd(%p)\n", scmd);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305775 goto tm_retry;
5776 }
5777
5778 if (task_abort_retries > 1)
5779 sdev_printk(KERN_WARNING, sdev,
5780 "mpt2sas_scsih_issue_tm: ABORT_TASK: RETRIES (%d):"
5781 " scmd(%p)\n",
5782 task_abort_retries - 1, scmd);
5783
Eric Moore635374e2009-03-09 01:21:12 -06005784 termination_count += le32_to_cpu(mpi_reply->TerminationCount);
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305785 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06005786 }
Eric Moore635374e2009-03-09 01:21:12 -06005787
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305788 if (ioc->broadcast_aen_pending) {
5789 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: loop back due to"
5790 " pending AEN\n", ioc->name, __func__));
5791 ioc->broadcast_aen_pending = 0;
5792 goto broadcast_aen_retry;
5793 }
5794
5795 out:
5796 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
5797 out_no_lock:
5798
5799 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -06005800 "%s - exit, query_count = %d termination_count = %d\n",
5801 ioc->name, __func__, query_count, termination_count));
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305802
5803 ioc->broadcast_aen_busy = 0;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305804 if (!ioc->shost_recovery)
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305805 _scsih_ublock_io_all_device(ioc);
5806 mutex_unlock(&ioc->tm_cmds.mutex);
Eric Moore635374e2009-03-09 01:21:12 -06005807}
5808
5809/**
5810 * _scsih_sas_discovery_event - handle discovery events
5811 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305812 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005813 * Context: user.
5814 *
5815 * Return nothing.
5816 */
5817static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305818_scsih_sas_discovery_event(struct MPT2SAS_ADAPTER *ioc,
5819 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005820{
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305821 Mpi2EventDataSasDiscovery_t *event_data = fw_event->event_data;
5822
Eric Moore635374e2009-03-09 01:21:12 -06005823#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5824 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305825 printk(MPT2SAS_INFO_FMT "discovery event: (%s)", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06005826 (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED) ?
5827 "start" : "stop");
5828 if (event_data->DiscoveryStatus)
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05305829 printk("discovery_status(0x%08x)",
5830 le32_to_cpu(event_data->DiscoveryStatus));
Eric Moore635374e2009-03-09 01:21:12 -06005831 printk("\n");
5832 }
5833#endif
5834
5835 if (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED &&
5836 !ioc->sas_hba.num_phys)
5837 _scsih_sas_host_add(ioc);
5838}
5839
5840/**
5841 * _scsih_reprobe_lun - reprobing lun
5842 * @sdev: scsi device struct
5843 * @no_uld_attach: sdev->no_uld_attach flag setting
5844 *
5845 **/
5846static void
5847_scsih_reprobe_lun(struct scsi_device *sdev, void *no_uld_attach)
5848{
5849 int rc;
5850
5851 sdev->no_uld_attach = no_uld_attach ? 1 : 0;
5852 sdev_printk(KERN_INFO, sdev, "%s raid component\n",
5853 sdev->no_uld_attach ? "hidding" : "exposing");
5854 rc = scsi_device_reprobe(sdev);
5855}
5856
5857/**
5858 * _scsih_reprobe_target - reprobing target
5859 * @starget: scsi target struct
5860 * @no_uld_attach: sdev->no_uld_attach flag setting
5861 *
5862 * Note: no_uld_attach flag determines whether the disk device is attached
5863 * to block layer. A value of `1` means to not attach.
5864 **/
5865static void
5866_scsih_reprobe_target(struct scsi_target *starget, int no_uld_attach)
5867{
5868 struct MPT2SAS_TARGET *sas_target_priv_data = starget->hostdata;
5869
5870 if (no_uld_attach)
5871 sas_target_priv_data->flags |= MPT_TARGET_FLAGS_RAID_COMPONENT;
5872 else
5873 sas_target_priv_data->flags &= ~MPT_TARGET_FLAGS_RAID_COMPONENT;
5874
5875 starget_for_each_device(starget, no_uld_attach ? (void *)1 : NULL,
5876 _scsih_reprobe_lun);
5877}
5878/**
5879 * _scsih_sas_volume_add - add new volume
5880 * @ioc: per adapter object
5881 * @element: IR config element data
5882 * Context: user.
5883 *
5884 * Return nothing.
5885 */
5886static void
5887_scsih_sas_volume_add(struct MPT2SAS_ADAPTER *ioc,
5888 Mpi2EventIrConfigElement_t *element)
5889{
5890 struct _raid_device *raid_device;
5891 unsigned long flags;
5892 u64 wwid;
5893 u16 handle = le16_to_cpu(element->VolDevHandle);
5894 int rc;
5895
Eric Moore635374e2009-03-09 01:21:12 -06005896 mpt2sas_config_get_volume_wwid(ioc, handle, &wwid);
5897 if (!wwid) {
5898 printk(MPT2SAS_ERR_FMT
5899 "failure at %s:%d/%s()!\n", ioc->name,
5900 __FILE__, __LINE__, __func__);
5901 return;
5902 }
5903
5904 spin_lock_irqsave(&ioc->raid_device_lock, flags);
5905 raid_device = _scsih_raid_device_find_by_wwid(ioc, wwid);
5906 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
5907
5908 if (raid_device)
5909 return;
5910
5911 raid_device = kzalloc(sizeof(struct _raid_device), GFP_KERNEL);
5912 if (!raid_device) {
5913 printk(MPT2SAS_ERR_FMT
5914 "failure at %s:%d/%s()!\n", ioc->name,
5915 __FILE__, __LINE__, __func__);
5916 return;
5917 }
5918
5919 raid_device->id = ioc->sas_id++;
5920 raid_device->channel = RAID_CHANNEL;
5921 raid_device->handle = handle;
5922 raid_device->wwid = wwid;
5923 _scsih_raid_device_add(ioc, raid_device);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305924 if (!ioc->wait_for_discovery_to_complete) {
Eric Moore635374e2009-03-09 01:21:12 -06005925 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
5926 raid_device->id, 0);
5927 if (rc)
5928 _scsih_raid_device_remove(ioc, raid_device);
5929 } else
5930 _scsih_determine_boot_device(ioc, raid_device, 1);
5931}
5932
5933/**
5934 * _scsih_sas_volume_delete - delete volume
5935 * @ioc: per adapter object
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05305936 * @handle: volume device handle
Eric Moore635374e2009-03-09 01:21:12 -06005937 * Context: user.
5938 *
5939 * Return nothing.
5940 */
5941static void
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05305942_scsih_sas_volume_delete(struct MPT2SAS_ADAPTER *ioc, u16 handle)
Eric Moore635374e2009-03-09 01:21:12 -06005943{
5944 struct _raid_device *raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06005945 unsigned long flags;
5946 struct MPT2SAS_TARGET *sas_target_priv_data;
5947
Eric Moore635374e2009-03-09 01:21:12 -06005948 spin_lock_irqsave(&ioc->raid_device_lock, flags);
5949 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
5950 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
5951 if (!raid_device)
5952 return;
5953 if (raid_device->starget) {
5954 sas_target_priv_data = raid_device->starget->hostdata;
5955 sas_target_priv_data->deleted = 1;
5956 scsi_remove_target(&raid_device->starget->dev);
5957 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05305958 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), wwid"
5959 "(0x%016llx)\n", ioc->name, raid_device->handle,
5960 (unsigned long long) raid_device->wwid);
Eric Moore635374e2009-03-09 01:21:12 -06005961 _scsih_raid_device_remove(ioc, raid_device);
5962}
5963
5964/**
5965 * _scsih_sas_pd_expose - expose pd component to /dev/sdX
5966 * @ioc: per adapter object
5967 * @element: IR config element data
5968 * Context: user.
5969 *
5970 * Return nothing.
5971 */
5972static void
5973_scsih_sas_pd_expose(struct MPT2SAS_ADAPTER *ioc,
5974 Mpi2EventIrConfigElement_t *element)
5975{
5976 struct _sas_device *sas_device;
5977 unsigned long flags;
5978 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
5979
5980 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5981 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
5982 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5983 if (!sas_device)
5984 return;
5985
5986 /* exposing raid component */
5987 sas_device->volume_handle = 0;
5988 sas_device->volume_wwid = 0;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05305989 clear_bit(handle, ioc->pd_handles);
Eric Moore635374e2009-03-09 01:21:12 -06005990 _scsih_reprobe_target(sas_device->starget, 0);
5991}
5992
5993/**
5994 * _scsih_sas_pd_hide - hide pd component from /dev/sdX
5995 * @ioc: per adapter object
5996 * @element: IR config element data
5997 * Context: user.
5998 *
5999 * Return nothing.
6000 */
6001static void
6002_scsih_sas_pd_hide(struct MPT2SAS_ADAPTER *ioc,
6003 Mpi2EventIrConfigElement_t *element)
6004{
6005 struct _sas_device *sas_device;
6006 unsigned long flags;
6007 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
6008
6009 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6010 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
6011 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6012 if (!sas_device)
6013 return;
6014
6015 /* hiding raid component */
6016 mpt2sas_config_get_volume_handle(ioc, handle,
6017 &sas_device->volume_handle);
6018 mpt2sas_config_get_volume_wwid(ioc, sas_device->volume_handle,
6019 &sas_device->volume_wwid);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306020 set_bit(handle, ioc->pd_handles);
Eric Moore635374e2009-03-09 01:21:12 -06006021 _scsih_reprobe_target(sas_device->starget, 1);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306022
Eric Moore635374e2009-03-09 01:21:12 -06006023}
6024
6025/**
6026 * _scsih_sas_pd_delete - delete pd component
6027 * @ioc: per adapter object
6028 * @element: IR config element data
6029 * Context: user.
6030 *
6031 * Return nothing.
6032 */
6033static void
6034_scsih_sas_pd_delete(struct MPT2SAS_ADAPTER *ioc,
6035 Mpi2EventIrConfigElement_t *element)
6036{
6037 struct _sas_device *sas_device;
6038 unsigned long flags;
6039 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
6040
6041 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6042 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
6043 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6044 if (!sas_device)
6045 return;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306046 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06006047}
6048
6049/**
6050 * _scsih_sas_pd_add - remove pd component
6051 * @ioc: per adapter object
6052 * @element: IR config element data
6053 * Context: user.
6054 *
6055 * Return nothing.
6056 */
6057static void
6058_scsih_sas_pd_add(struct MPT2SAS_ADAPTER *ioc,
6059 Mpi2EventIrConfigElement_t *element)
6060{
6061 struct _sas_device *sas_device;
6062 unsigned long flags;
6063 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
Kashyap, Desai62727a72009-08-07 19:35:18 +05306064 Mpi2ConfigReply_t mpi_reply;
6065 Mpi2SasDevicePage0_t sas_device_pg0;
6066 u32 ioc_status;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306067 u64 sas_address;
6068 u16 parent_handle;
Eric Moore635374e2009-03-09 01:21:12 -06006069
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306070 set_bit(handle, ioc->pd_handles);
6071
Eric Moore635374e2009-03-09 01:21:12 -06006072 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6073 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
6074 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306075 if (sas_device)
Kashyap, Desai62727a72009-08-07 19:35:18 +05306076 return;
Kashyap, Desai62727a72009-08-07 19:35:18 +05306077
6078 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
6079 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
6080 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6081 ioc->name, __FILE__, __LINE__, __func__);
6082 return;
6083 }
6084
6085 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6086 MPI2_IOCSTATUS_MASK;
6087 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
6088 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6089 ioc->name, __FILE__, __LINE__, __func__);
6090 return;
6091 }
6092
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306093 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
6094 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address))
6095 mpt2sas_transport_update_links(ioc, sas_address, handle,
6096 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Kashyap, Desai62727a72009-08-07 19:35:18 +05306097
6098 _scsih_add_device(ioc, handle, 0, 1);
Eric Moore635374e2009-03-09 01:21:12 -06006099}
6100
6101#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
6102/**
6103 * _scsih_sas_ir_config_change_event_debug - debug for IR Config Change events
6104 * @ioc: per adapter object
6105 * @event_data: event data payload
6106 * Context: user.
6107 *
6108 * Return nothing.
6109 */
6110static void
6111_scsih_sas_ir_config_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
6112 Mpi2EventDataIrConfigChangeList_t *event_data)
6113{
6114 Mpi2EventIrConfigElement_t *element;
6115 u8 element_type;
6116 int i;
6117 char *reason_str = NULL, *element_str = NULL;
6118
6119 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
6120
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05306121 printk(MPT2SAS_INFO_FMT "raid config change: (%s), elements(%d)\n",
Eric Moore635374e2009-03-09 01:21:12 -06006122 ioc->name, (le32_to_cpu(event_data->Flags) &
6123 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ?
6124 "foreign" : "native", event_data->NumElements);
6125 for (i = 0; i < event_data->NumElements; i++, element++) {
6126 switch (element->ReasonCode) {
6127 case MPI2_EVENT_IR_CHANGE_RC_ADDED:
6128 reason_str = "add";
6129 break;
6130 case MPI2_EVENT_IR_CHANGE_RC_REMOVED:
6131 reason_str = "remove";
6132 break;
6133 case MPI2_EVENT_IR_CHANGE_RC_NO_CHANGE:
6134 reason_str = "no change";
6135 break;
6136 case MPI2_EVENT_IR_CHANGE_RC_HIDE:
6137 reason_str = "hide";
6138 break;
6139 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE:
6140 reason_str = "unhide";
6141 break;
6142 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED:
6143 reason_str = "volume_created";
6144 break;
6145 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED:
6146 reason_str = "volume_deleted";
6147 break;
6148 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED:
6149 reason_str = "pd_created";
6150 break;
6151 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED:
6152 reason_str = "pd_deleted";
6153 break;
6154 default:
6155 reason_str = "unknown reason";
6156 break;
6157 }
6158 element_type = le16_to_cpu(element->ElementFlags) &
6159 MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK;
6160 switch (element_type) {
6161 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLUME_ELEMENT:
6162 element_str = "volume";
6163 break;
6164 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLPHYSDISK_ELEMENT:
6165 element_str = "phys disk";
6166 break;
6167 case MPI2_EVENT_IR_CHANGE_EFLAGS_HOTSPARE_ELEMENT:
6168 element_str = "hot spare";
6169 break;
6170 default:
6171 element_str = "unknown element";
6172 break;
6173 }
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05306174 printk(KERN_INFO "\t(%s:%s), vol handle(0x%04x), "
Eric Moore635374e2009-03-09 01:21:12 -06006175 "pd handle(0x%04x), pd num(0x%02x)\n", element_str,
6176 reason_str, le16_to_cpu(element->VolDevHandle),
6177 le16_to_cpu(element->PhysDiskDevHandle),
6178 element->PhysDiskNum);
6179 }
6180}
6181#endif
6182
6183/**
6184 * _scsih_sas_ir_config_change_event - handle ir configuration change events
6185 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306186 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06006187 * Context: user.
6188 *
6189 * Return nothing.
6190 */
6191static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306192_scsih_sas_ir_config_change_event(struct MPT2SAS_ADAPTER *ioc,
6193 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06006194{
6195 Mpi2EventIrConfigElement_t *element;
6196 int i;
Kashyap, Desai62727a72009-08-07 19:35:18 +05306197 u8 foreign_config;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306198 Mpi2EventDataIrConfigChangeList_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06006199
6200#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306201 if ((ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
6202 && !ioc->hide_ir_msg)
Eric Moore635374e2009-03-09 01:21:12 -06006203 _scsih_sas_ir_config_change_event_debug(ioc, event_data);
6204
6205#endif
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306206
6207 if (ioc->shost_recovery)
6208 return;
6209
Kashyap, Desai62727a72009-08-07 19:35:18 +05306210 foreign_config = (le32_to_cpu(event_data->Flags) &
6211 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ? 1 : 0;
Eric Moore635374e2009-03-09 01:21:12 -06006212
6213 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
6214 for (i = 0; i < event_data->NumElements; i++, element++) {
6215
6216 switch (element->ReasonCode) {
6217 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED:
6218 case MPI2_EVENT_IR_CHANGE_RC_ADDED:
Kashyap, Desai62727a72009-08-07 19:35:18 +05306219 if (!foreign_config)
6220 _scsih_sas_volume_add(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006221 break;
6222 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED:
6223 case MPI2_EVENT_IR_CHANGE_RC_REMOVED:
Kashyap, Desai62727a72009-08-07 19:35:18 +05306224 if (!foreign_config)
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306225 _scsih_sas_volume_delete(ioc,
6226 le16_to_cpu(element->VolDevHandle));
Eric Moore635374e2009-03-09 01:21:12 -06006227 break;
6228 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306229 if (!ioc->is_warpdrive)
6230 _scsih_sas_pd_hide(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006231 break;
6232 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306233 if (!ioc->is_warpdrive)
6234 _scsih_sas_pd_expose(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006235 break;
6236 case MPI2_EVENT_IR_CHANGE_RC_HIDE:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306237 if (!ioc->is_warpdrive)
6238 _scsih_sas_pd_add(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006239 break;
6240 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306241 if (!ioc->is_warpdrive)
6242 _scsih_sas_pd_delete(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006243 break;
6244 }
6245 }
6246}
6247
6248/**
6249 * _scsih_sas_ir_volume_event - IR volume event
6250 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306251 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06006252 * Context: user.
6253 *
6254 * Return nothing.
6255 */
6256static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306257_scsih_sas_ir_volume_event(struct MPT2SAS_ADAPTER *ioc,
6258 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06006259{
6260 u64 wwid;
6261 unsigned long flags;
6262 struct _raid_device *raid_device;
6263 u16 handle;
6264 u32 state;
6265 int rc;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306266 Mpi2EventDataIrVolume_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06006267
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306268 if (ioc->shost_recovery)
6269 return;
6270
Eric Moore635374e2009-03-09 01:21:12 -06006271 if (event_data->ReasonCode != MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED)
6272 return;
6273
6274 handle = le16_to_cpu(event_data->VolDevHandle);
6275 state = le32_to_cpu(event_data->NewValue);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306276 if (!ioc->hide_ir_msg)
6277 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle(0x%04x), "
6278 "old(0x%08x), new(0x%08x)\n", ioc->name, __func__, handle,
6279 le32_to_cpu(event_data->PreviousValue), state));
Eric Moore635374e2009-03-09 01:21:12 -06006280
Eric Moore635374e2009-03-09 01:21:12 -06006281 switch (state) {
6282 case MPI2_RAID_VOL_STATE_MISSING:
6283 case MPI2_RAID_VOL_STATE_FAILED:
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306284 _scsih_sas_volume_delete(ioc, handle);
Eric Moore635374e2009-03-09 01:21:12 -06006285 break;
6286
6287 case MPI2_RAID_VOL_STATE_ONLINE:
6288 case MPI2_RAID_VOL_STATE_DEGRADED:
6289 case MPI2_RAID_VOL_STATE_OPTIMAL:
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306290
6291 spin_lock_irqsave(&ioc->raid_device_lock, flags);
6292 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
6293 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
6294
Eric Moore635374e2009-03-09 01:21:12 -06006295 if (raid_device)
6296 break;
6297
6298 mpt2sas_config_get_volume_wwid(ioc, handle, &wwid);
6299 if (!wwid) {
6300 printk(MPT2SAS_ERR_FMT
6301 "failure at %s:%d/%s()!\n", ioc->name,
6302 __FILE__, __LINE__, __func__);
6303 break;
6304 }
6305
6306 raid_device = kzalloc(sizeof(struct _raid_device), GFP_KERNEL);
6307 if (!raid_device) {
6308 printk(MPT2SAS_ERR_FMT
6309 "failure at %s:%d/%s()!\n", ioc->name,
6310 __FILE__, __LINE__, __func__);
6311 break;
6312 }
6313
6314 raid_device->id = ioc->sas_id++;
6315 raid_device->channel = RAID_CHANNEL;
6316 raid_device->handle = handle;
6317 raid_device->wwid = wwid;
6318 _scsih_raid_device_add(ioc, raid_device);
6319 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
6320 raid_device->id, 0);
6321 if (rc)
6322 _scsih_raid_device_remove(ioc, raid_device);
6323 break;
6324
6325 case MPI2_RAID_VOL_STATE_INITIALIZING:
6326 default:
6327 break;
6328 }
6329}
6330
6331/**
6332 * _scsih_sas_ir_physical_disk_event - PD event
6333 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306334 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06006335 * Context: user.
6336 *
6337 * Return nothing.
6338 */
6339static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306340_scsih_sas_ir_physical_disk_event(struct MPT2SAS_ADAPTER *ioc,
6341 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06006342{
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306343 u16 handle, parent_handle;
Eric Moore635374e2009-03-09 01:21:12 -06006344 u32 state;
6345 struct _sas_device *sas_device;
6346 unsigned long flags;
Kashyap, Desai62727a72009-08-07 19:35:18 +05306347 Mpi2ConfigReply_t mpi_reply;
6348 Mpi2SasDevicePage0_t sas_device_pg0;
6349 u32 ioc_status;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306350 Mpi2EventDataIrPhysicalDisk_t *event_data = fw_event->event_data;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306351 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06006352
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306353 if (ioc->shost_recovery)
6354 return;
6355
Eric Moore635374e2009-03-09 01:21:12 -06006356 if (event_data->ReasonCode != MPI2_EVENT_IR_PHYSDISK_RC_STATE_CHANGED)
6357 return;
6358
6359 handle = le16_to_cpu(event_data->PhysDiskDevHandle);
6360 state = le32_to_cpu(event_data->NewValue);
6361
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306362 if (!ioc->hide_ir_msg)
6363 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle(0x%04x), "
6364 "old(0x%08x), new(0x%08x)\n", ioc->name, __func__, handle,
6365 le32_to_cpu(event_data->PreviousValue), state));
Eric Moore635374e2009-03-09 01:21:12 -06006366
Eric Moore635374e2009-03-09 01:21:12 -06006367 switch (state) {
Eric Moore635374e2009-03-09 01:21:12 -06006368 case MPI2_RAID_PD_STATE_ONLINE:
6369 case MPI2_RAID_PD_STATE_DEGRADED:
6370 case MPI2_RAID_PD_STATE_REBUILDING:
6371 case MPI2_RAID_PD_STATE_OPTIMAL:
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306372 case MPI2_RAID_PD_STATE_HOT_SPARE:
6373
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306374 if (!ioc->is_warpdrive)
6375 set_bit(handle, ioc->pd_handles);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306376
6377 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6378 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
6379 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6380
6381 if (sas_device)
Kashyap, Desai62727a72009-08-07 19:35:18 +05306382 return;
Kashyap, Desai62727a72009-08-07 19:35:18 +05306383
6384 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
6385 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
6386 handle))) {
6387 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6388 ioc->name, __FILE__, __LINE__, __func__);
6389 return;
6390 }
6391
6392 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6393 MPI2_IOCSTATUS_MASK;
6394 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
6395 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6396 ioc->name, __FILE__, __LINE__, __func__);
6397 return;
6398 }
6399
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306400 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
6401 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address))
6402 mpt2sas_transport_update_links(ioc, sas_address, handle,
6403 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Kashyap, Desai62727a72009-08-07 19:35:18 +05306404
6405 _scsih_add_device(ioc, handle, 0, 1);
6406
Eric Moore635374e2009-03-09 01:21:12 -06006407 break;
6408
Kashyap, Desai62727a72009-08-07 19:35:18 +05306409 case MPI2_RAID_PD_STATE_OFFLINE:
Eric Moore635374e2009-03-09 01:21:12 -06006410 case MPI2_RAID_PD_STATE_NOT_CONFIGURED:
6411 case MPI2_RAID_PD_STATE_NOT_COMPATIBLE:
Eric Moore635374e2009-03-09 01:21:12 -06006412 default:
6413 break;
6414 }
6415}
6416
6417#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
6418/**
6419 * _scsih_sas_ir_operation_status_event_debug - debug for IR op event
6420 * @ioc: per adapter object
6421 * @event_data: event data payload
6422 * Context: user.
6423 *
6424 * Return nothing.
6425 */
6426static void
6427_scsih_sas_ir_operation_status_event_debug(struct MPT2SAS_ADAPTER *ioc,
6428 Mpi2EventDataIrOperationStatus_t *event_data)
6429{
6430 char *reason_str = NULL;
6431
6432 switch (event_data->RAIDOperation) {
6433 case MPI2_EVENT_IR_RAIDOP_RESYNC:
6434 reason_str = "resync";
6435 break;
6436 case MPI2_EVENT_IR_RAIDOP_ONLINE_CAP_EXPANSION:
6437 reason_str = "online capacity expansion";
6438 break;
6439 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK:
6440 reason_str = "consistency check";
6441 break;
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05306442 case MPI2_EVENT_IR_RAIDOP_BACKGROUND_INIT:
6443 reason_str = "background init";
6444 break;
6445 case MPI2_EVENT_IR_RAIDOP_MAKE_DATA_CONSISTENT:
6446 reason_str = "make data consistent";
Eric Moore635374e2009-03-09 01:21:12 -06006447 break;
6448 }
6449
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05306450 if (!reason_str)
6451 return;
6452
Eric Moore635374e2009-03-09 01:21:12 -06006453 printk(MPT2SAS_INFO_FMT "raid operational status: (%s)"
6454 "\thandle(0x%04x), percent complete(%d)\n",
6455 ioc->name, reason_str,
6456 le16_to_cpu(event_data->VolDevHandle),
6457 event_data->PercentComplete);
6458}
6459#endif
6460
6461/**
6462 * _scsih_sas_ir_operation_status_event - handle RAID operation events
6463 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306464 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06006465 * Context: user.
6466 *
6467 * Return nothing.
6468 */
6469static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306470_scsih_sas_ir_operation_status_event(struct MPT2SAS_ADAPTER *ioc,
6471 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06006472{
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306473 Mpi2EventDataIrOperationStatus_t *event_data = fw_event->event_data;
6474 static struct _raid_device *raid_device;
6475 unsigned long flags;
6476 u16 handle;
6477
Eric Moore635374e2009-03-09 01:21:12 -06006478#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306479 if ((ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
6480 && !ioc->hide_ir_msg)
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306481 _scsih_sas_ir_operation_status_event_debug(ioc,
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306482 event_data);
Eric Moore635374e2009-03-09 01:21:12 -06006483#endif
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306484
6485 /* code added for raid transport support */
6486 if (event_data->RAIDOperation == MPI2_EVENT_IR_RAIDOP_RESYNC) {
6487
6488 handle = le16_to_cpu(event_data->VolDevHandle);
6489
6490 spin_lock_irqsave(&ioc->raid_device_lock, flags);
6491 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
6492 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
6493
6494 if (!raid_device)
6495 return;
6496
6497 if (event_data->RAIDOperation == MPI2_EVENT_IR_RAIDOP_RESYNC)
6498 raid_device->percent_complete =
6499 event_data->PercentComplete;
6500 }
Eric Moore635374e2009-03-09 01:21:12 -06006501}
6502
6503/**
Kashyap, Desai14695852010-03-30 10:52:44 +05306504 * _scsih_prep_device_scan - initialize parameters prior to device scan
6505 * @ioc: per adapter object
6506 *
6507 * Set the deleted flag prior to device scan. If the device is found during
6508 * the scan, then we clear the deleted flag.
6509 */
6510static void
6511_scsih_prep_device_scan(struct MPT2SAS_ADAPTER *ioc)
6512{
6513 struct MPT2SAS_DEVICE *sas_device_priv_data;
6514 struct scsi_device *sdev;
6515
6516 shost_for_each_device(sdev, ioc->shost) {
6517 sas_device_priv_data = sdev->hostdata;
6518 if (sas_device_priv_data && sas_device_priv_data->sas_target)
6519 sas_device_priv_data->sas_target->deleted = 1;
6520 }
6521}
6522
6523/**
Eric Moore635374e2009-03-09 01:21:12 -06006524 * _scsih_mark_responding_sas_device - mark a sas_devices as responding
6525 * @ioc: per adapter object
6526 * @sas_address: sas address
6527 * @slot: enclosure slot id
6528 * @handle: device handle
6529 *
6530 * After host reset, find out whether devices are still responding.
6531 * Used in _scsi_remove_unresponsive_sas_devices.
6532 *
6533 * Return nothing.
6534 */
6535static void
6536_scsih_mark_responding_sas_device(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
6537 u16 slot, u16 handle)
6538{
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306539 struct MPT2SAS_TARGET *sas_target_priv_data = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06006540 struct scsi_target *starget;
6541 struct _sas_device *sas_device;
6542 unsigned long flags;
6543
6544 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6545 list_for_each_entry(sas_device, &ioc->sas_device_list, list) {
6546 if (sas_device->sas_address == sas_address &&
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306547 sas_device->slot == slot) {
Eric Moore635374e2009-03-09 01:21:12 -06006548 sas_device->responding = 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306549 starget = sas_device->starget;
Kashyap, Desai14695852010-03-30 10:52:44 +05306550 if (starget && starget->hostdata) {
6551 sas_target_priv_data = starget->hostdata;
6552 sas_target_priv_data->tm_busy = 0;
6553 sas_target_priv_data->deleted = 0;
6554 } else
6555 sas_target_priv_data = NULL;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306556 if (starget)
6557 starget_printk(KERN_INFO, starget,
6558 "handle(0x%04x), sas_addr(0x%016llx), "
6559 "enclosure logical id(0x%016llx), "
6560 "slot(%d)\n", handle,
6561 (unsigned long long)sas_device->sas_address,
6562 (unsigned long long)
6563 sas_device->enclosure_logical_id,
6564 sas_device->slot);
Eric Moore635374e2009-03-09 01:21:12 -06006565 if (sas_device->handle == handle)
6566 goto out;
6567 printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n",
6568 sas_device->handle);
6569 sas_device->handle = handle;
Kashyap, Desai14695852010-03-30 10:52:44 +05306570 if (sas_target_priv_data)
6571 sas_target_priv_data->handle = handle;
Eric Moore635374e2009-03-09 01:21:12 -06006572 goto out;
6573 }
6574 }
6575 out:
6576 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6577}
6578
6579/**
6580 * _scsih_search_responding_sas_devices -
6581 * @ioc: per adapter object
6582 *
6583 * After host reset, find out whether devices are still responding.
6584 * If not remove.
6585 *
6586 * Return nothing.
6587 */
6588static void
6589_scsih_search_responding_sas_devices(struct MPT2SAS_ADAPTER *ioc)
6590{
6591 Mpi2SasDevicePage0_t sas_device_pg0;
6592 Mpi2ConfigReply_t mpi_reply;
6593 u16 ioc_status;
6594 __le64 sas_address;
6595 u16 handle;
6596 u32 device_info;
6597 u16 slot;
6598
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306599 printk(MPT2SAS_INFO_FMT "search for end-devices: start\n", ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006600
6601 if (list_empty(&ioc->sas_device_list))
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306602 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06006603
6604 handle = 0xFFFF;
6605 while (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
6606 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE,
6607 handle))) {
6608 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6609 MPI2_IOCSTATUS_MASK;
6610 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6611 break;
6612 handle = le16_to_cpu(sas_device_pg0.DevHandle);
6613 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
6614 if (!(_scsih_is_end_device(device_info)))
6615 continue;
6616 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
6617 slot = le16_to_cpu(sas_device_pg0.Slot);
6618 _scsih_mark_responding_sas_device(ioc, sas_address, slot,
6619 handle);
6620 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306621out:
6622 printk(MPT2SAS_INFO_FMT "search for end-devices: complete\n",
6623 ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006624}
6625
6626/**
6627 * _scsih_mark_responding_raid_device - mark a raid_device as responding
6628 * @ioc: per adapter object
6629 * @wwid: world wide identifier for raid volume
6630 * @handle: device handle
6631 *
6632 * After host reset, find out whether devices are still responding.
6633 * Used in _scsi_remove_unresponsive_raid_devices.
6634 *
6635 * Return nothing.
6636 */
6637static void
6638_scsih_mark_responding_raid_device(struct MPT2SAS_ADAPTER *ioc, u64 wwid,
6639 u16 handle)
6640{
6641 struct MPT2SAS_TARGET *sas_target_priv_data;
6642 struct scsi_target *starget;
6643 struct _raid_device *raid_device;
6644 unsigned long flags;
6645
6646 spin_lock_irqsave(&ioc->raid_device_lock, flags);
6647 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
6648 if (raid_device->wwid == wwid && raid_device->starget) {
Kashyap, Desai14695852010-03-30 10:52:44 +05306649 starget = raid_device->starget;
6650 if (starget && starget->hostdata) {
6651 sas_target_priv_data = starget->hostdata;
6652 sas_target_priv_data->deleted = 0;
6653 } else
6654 sas_target_priv_data = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06006655 raid_device->responding = 1;
6656 starget_printk(KERN_INFO, raid_device->starget,
6657 "handle(0x%04x), wwid(0x%016llx)\n", handle,
6658 (unsigned long long)raid_device->wwid);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306659 /*
6660 * WARPDRIVE: The handles of the PDs might have changed
6661 * across the host reset so re-initialize the
6662 * required data for Direct IO
6663 */
6664 _scsih_init_warpdrive_properties(ioc, raid_device);
Eric Moore635374e2009-03-09 01:21:12 -06006665 if (raid_device->handle == handle)
6666 goto out;
6667 printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n",
6668 raid_device->handle);
6669 raid_device->handle = handle;
Kashyap, Desai14695852010-03-30 10:52:44 +05306670 if (sas_target_priv_data)
6671 sas_target_priv_data->handle = handle;
Eric Moore635374e2009-03-09 01:21:12 -06006672 goto out;
6673 }
6674 }
6675 out:
6676 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
6677}
6678
6679/**
6680 * _scsih_search_responding_raid_devices -
6681 * @ioc: per adapter object
6682 *
6683 * After host reset, find out whether devices are still responding.
6684 * If not remove.
6685 *
6686 * Return nothing.
6687 */
6688static void
6689_scsih_search_responding_raid_devices(struct MPT2SAS_ADAPTER *ioc)
6690{
6691 Mpi2RaidVolPage1_t volume_pg1;
Kashyap, Desaid417d1c2010-06-17 13:48:10 +05306692 Mpi2RaidVolPage0_t volume_pg0;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306693 Mpi2RaidPhysDiskPage0_t pd_pg0;
Eric Moore635374e2009-03-09 01:21:12 -06006694 Mpi2ConfigReply_t mpi_reply;
6695 u16 ioc_status;
6696 u16 handle;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306697 u8 phys_disk_num;
Eric Moore635374e2009-03-09 01:21:12 -06006698
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306699 if (!ioc->ir_firmware)
6700 return;
6701
6702 printk(MPT2SAS_INFO_FMT "search for raid volumes: start\n",
6703 ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006704
6705 if (list_empty(&ioc->raid_device_list))
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306706 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06006707
6708 handle = 0xFFFF;
6709 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
6710 &volume_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
6711 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6712 MPI2_IOCSTATUS_MASK;
6713 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6714 break;
6715 handle = le16_to_cpu(volume_pg1.DevHandle);
Kashyap, Desaid417d1c2010-06-17 13:48:10 +05306716
6717 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply,
6718 &volume_pg0, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, handle,
6719 sizeof(Mpi2RaidVolPage0_t)))
6720 continue;
6721
6722 if (volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_OPTIMAL ||
6723 volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_ONLINE ||
6724 volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_DEGRADED)
6725 _scsih_mark_responding_raid_device(ioc,
6726 le64_to_cpu(volume_pg1.WWID), handle);
Eric Moore635374e2009-03-09 01:21:12 -06006727 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306728
6729 /* refresh the pd_handles */
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306730 if (!ioc->is_warpdrive) {
6731 phys_disk_num = 0xFF;
6732 memset(ioc->pd_handles, 0, ioc->pd_handles_sz);
6733 while (!(mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
6734 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM,
6735 phys_disk_num))) {
6736 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6737 MPI2_IOCSTATUS_MASK;
6738 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6739 break;
6740 phys_disk_num = pd_pg0.PhysDiskNum;
6741 handle = le16_to_cpu(pd_pg0.DevHandle);
6742 set_bit(handle, ioc->pd_handles);
6743 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306744 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306745out:
6746 printk(MPT2SAS_INFO_FMT "search for responding raid volumes: "
6747 "complete\n", ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006748}
6749
6750/**
6751 * _scsih_mark_responding_expander - mark a expander as responding
6752 * @ioc: per adapter object
6753 * @sas_address: sas address
6754 * @handle:
6755 *
6756 * After host reset, find out whether devices are still responding.
6757 * Used in _scsi_remove_unresponsive_expanders.
6758 *
6759 * Return nothing.
6760 */
6761static void
6762_scsih_mark_responding_expander(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
6763 u16 handle)
6764{
6765 struct _sas_node *sas_expander;
6766 unsigned long flags;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306767 int i;
Eric Moore635374e2009-03-09 01:21:12 -06006768
6769 spin_lock_irqsave(&ioc->sas_node_lock, flags);
6770 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306771 if (sas_expander->sas_address != sas_address)
6772 continue;
6773 sas_expander->responding = 1;
6774 if (sas_expander->handle == handle)
Eric Moore635374e2009-03-09 01:21:12 -06006775 goto out;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306776 printk(KERN_INFO "\texpander(0x%016llx): handle changed"
6777 " from(0x%04x) to (0x%04x)!!!\n",
6778 (unsigned long long)sas_expander->sas_address,
6779 sas_expander->handle, handle);
6780 sas_expander->handle = handle;
6781 for (i = 0 ; i < sas_expander->num_phys ; i++)
6782 sas_expander->phy[i].handle = handle;
6783 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06006784 }
6785 out:
6786 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
6787}
6788
6789/**
6790 * _scsih_search_responding_expanders -
6791 * @ioc: per adapter object
6792 *
6793 * After host reset, find out whether devices are still responding.
6794 * If not remove.
6795 *
6796 * Return nothing.
6797 */
6798static void
6799_scsih_search_responding_expanders(struct MPT2SAS_ADAPTER *ioc)
6800{
6801 Mpi2ExpanderPage0_t expander_pg0;
6802 Mpi2ConfigReply_t mpi_reply;
6803 u16 ioc_status;
Kashyap, Desaic97951e2011-06-14 10:54:56 +05306804 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06006805 u16 handle;
6806
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306807 printk(MPT2SAS_INFO_FMT "search for expanders: start\n", ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006808
6809 if (list_empty(&ioc->sas_expander_list))
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306810 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06006811
6812 handle = 0xFFFF;
6813 while (!(mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
6814 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL, handle))) {
6815
6816 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6817 MPI2_IOCSTATUS_MASK;
6818 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6819 break;
6820
6821 handle = le16_to_cpu(expander_pg0.DevHandle);
6822 sas_address = le64_to_cpu(expander_pg0.SASAddress);
6823 printk(KERN_INFO "\texpander present: handle(0x%04x), "
6824 "sas_addr(0x%016llx)\n", handle,
6825 (unsigned long long)sas_address);
6826 _scsih_mark_responding_expander(ioc, sas_address, handle);
6827 }
6828
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306829 out:
6830 printk(MPT2SAS_INFO_FMT "search for expanders: complete\n", ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006831}
6832
6833/**
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05306834 * _scsih_remove_unresponding_sas_devices - removing unresponding devices
Eric Moore635374e2009-03-09 01:21:12 -06006835 * @ioc: per adapter object
6836 *
6837 * Return nothing.
6838 */
6839static void
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05306840_scsih_remove_unresponding_sas_devices(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06006841{
6842 struct _sas_device *sas_device, *sas_device_next;
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05306843 struct _sas_node *sas_expander;
Eric Moore635374e2009-03-09 01:21:12 -06006844 struct _raid_device *raid_device, *raid_device_next;
Eric Moore635374e2009-03-09 01:21:12 -06006845
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306846 printk(MPT2SAS_INFO_FMT "removing unresponding devices: start\n",
6847 ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006848
6849 list_for_each_entry_safe(sas_device, sas_device_next,
6850 &ioc->sas_device_list, list) {
6851 if (sas_device->responding) {
6852 sas_device->responding = 0;
6853 continue;
6854 }
6855 if (sas_device->starget)
6856 starget_printk(KERN_INFO, sas_device->starget,
6857 "removing: handle(0x%04x), sas_addr(0x%016llx), "
6858 "enclosure logical id(0x%016llx), slot(%d)\n",
6859 sas_device->handle,
6860 (unsigned long long)sas_device->sas_address,
6861 (unsigned long long)
6862 sas_device->enclosure_logical_id,
6863 sas_device->slot);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306864 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06006865 }
6866
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306867 if (!ioc->ir_firmware)
6868 goto retry_expander_search;
6869
Eric Moore635374e2009-03-09 01:21:12 -06006870 list_for_each_entry_safe(raid_device, raid_device_next,
6871 &ioc->raid_device_list, list) {
6872 if (raid_device->responding) {
6873 raid_device->responding = 0;
6874 continue;
6875 }
6876 if (raid_device->starget) {
6877 starget_printk(KERN_INFO, raid_device->starget,
6878 "removing: handle(0x%04x), wwid(0x%016llx)\n",
6879 raid_device->handle,
6880 (unsigned long long)raid_device->wwid);
6881 scsi_remove_target(&raid_device->starget->dev);
6882 }
6883 _scsih_raid_device_remove(ioc, raid_device);
6884 }
6885
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05306886 retry_expander_search:
6887 sas_expander = NULL;
6888 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
Eric Moore635374e2009-03-09 01:21:12 -06006889 if (sas_expander->responding) {
6890 sas_expander->responding = 0;
6891 continue;
6892 }
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05306893 mpt2sas_expander_remove(ioc, sas_expander->sas_address);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05306894 goto retry_expander_search;
6895 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306896 printk(MPT2SAS_INFO_FMT "removing unresponding devices: complete\n",
6897 ioc->name);
6898 /* unblock devices */
6899 _scsih_ublock_io_all_device(ioc);
6900}
6901
6902static void
6903_scsih_refresh_expander_links(struct MPT2SAS_ADAPTER *ioc,
6904 struct _sas_node *sas_expander, u16 handle)
6905{
6906 Mpi2ExpanderPage1_t expander_pg1;
6907 Mpi2ConfigReply_t mpi_reply;
6908 int i;
6909
6910 for (i = 0 ; i < sas_expander->num_phys ; i++) {
6911 if ((mpt2sas_config_get_expander_pg1(ioc, &mpi_reply,
6912 &expander_pg1, i, handle))) {
6913 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6914 ioc->name, __FILE__, __LINE__, __func__);
6915 return;
6916 }
6917
6918 mpt2sas_transport_update_links(ioc, sas_expander->sas_address,
6919 le16_to_cpu(expander_pg1.AttachedDevHandle), i,
6920 expander_pg1.NegotiatedLinkRate >> 4);
6921 }
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05306922}
6923
6924/**
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306925 * _scsih_scan_for_devices_after_reset - scan for devices after host reset
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306926 * @ioc: per adapter object
6927 *
6928 * Return nothing.
6929 */
6930static void
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306931_scsih_scan_for_devices_after_reset(struct MPT2SAS_ADAPTER *ioc)
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306932{
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306933 Mpi2ExpanderPage0_t expander_pg0;
6934 Mpi2SasDevicePage0_t sas_device_pg0;
6935 Mpi2RaidVolPage1_t volume_pg1;
6936 Mpi2RaidVolPage0_t volume_pg0;
6937 Mpi2RaidPhysDiskPage0_t pd_pg0;
6938 Mpi2EventIrConfigElement_t element;
6939 Mpi2ConfigReply_t mpi_reply;
6940 u8 phys_disk_num;
6941 u16 ioc_status;
6942 u16 handle, parent_handle;
6943 u64 sas_address;
6944 struct _sas_device *sas_device;
6945 struct _sas_node *expander_device;
6946 static struct _raid_device *raid_device;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306947
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306948 printk(MPT2SAS_INFO_FMT "scan devices: start\n", ioc->name);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306949
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306950 _scsih_sas_host_refresh(ioc);
6951
6952 /* expanders */
6953 handle = 0xFFFF;
6954 while (!(mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
6955 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL, handle))) {
6956 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6957 MPI2_IOCSTATUS_MASK;
6958 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6959 break;
6960 handle = le16_to_cpu(expander_pg0.DevHandle);
6961 expander_device = mpt2sas_scsih_expander_find_by_sas_address(
6962 ioc, le64_to_cpu(expander_pg0.SASAddress));
6963 if (expander_device)
6964 _scsih_refresh_expander_links(ioc, expander_device,
6965 handle);
6966 else
6967 _scsih_expander_add(ioc, handle);
6968 }
6969
6970 if (!ioc->ir_firmware)
6971 goto skip_to_sas;
6972
6973 /* phys disk */
6974 phys_disk_num = 0xFF;
6975 while (!(mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
6976 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM,
6977 phys_disk_num))) {
6978 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6979 MPI2_IOCSTATUS_MASK;
6980 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6981 break;
6982 phys_disk_num = pd_pg0.PhysDiskNum;
6983 handle = le16_to_cpu(pd_pg0.DevHandle);
6984 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
6985 if (sas_device)
6986 continue;
6987 if (mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
6988 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
6989 handle) != 0)
6990 continue;
6991 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
6992 if (!_scsih_get_sas_address(ioc, parent_handle,
6993 &sas_address)) {
6994 mpt2sas_transport_update_links(ioc, sas_address,
6995 handle, sas_device_pg0.PhyNum,
6996 MPI2_SAS_NEG_LINK_RATE_1_5);
6997 set_bit(handle, ioc->pd_handles);
6998 _scsih_add_device(ioc, handle, 0, 1);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306999 }
7000 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307001
7002 /* volumes */
7003 handle = 0xFFFF;
7004 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
7005 &volume_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
7006 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
7007 MPI2_IOCSTATUS_MASK;
7008 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
7009 break;
7010 handle = le16_to_cpu(volume_pg1.DevHandle);
7011 raid_device = _scsih_raid_device_find_by_wwid(ioc,
7012 le64_to_cpu(volume_pg1.WWID));
7013 if (raid_device)
7014 continue;
7015 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply,
7016 &volume_pg0, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, handle,
7017 sizeof(Mpi2RaidVolPage0_t)))
7018 continue;
7019 if (volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_OPTIMAL ||
7020 volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_ONLINE ||
7021 volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_DEGRADED) {
7022 memset(&element, 0, sizeof(Mpi2EventIrConfigElement_t));
7023 element.ReasonCode = MPI2_EVENT_IR_CHANGE_RC_ADDED;
7024 element.VolDevHandle = volume_pg1.DevHandle;
7025 _scsih_sas_volume_add(ioc, &element);
7026 }
7027 }
7028
7029 skip_to_sas:
7030
7031 /* sas devices */
7032 handle = 0xFFFF;
7033 while (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
7034 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE,
7035 handle))) {
7036 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
7037 MPI2_IOCSTATUS_MASK;
7038 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
7039 break;
7040 handle = le16_to_cpu(sas_device_pg0.DevHandle);
7041 if (!(_scsih_is_end_device(
7042 le32_to_cpu(sas_device_pg0.DeviceInfo))))
7043 continue;
7044 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
7045 le64_to_cpu(sas_device_pg0.SASAddress));
7046 if (sas_device)
7047 continue;
7048 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
7049 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address)) {
7050 mpt2sas_transport_update_links(ioc, sas_address, handle,
7051 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
7052 _scsih_add_device(ioc, handle, 0, 0);
7053 }
7054 }
7055
7056 printk(MPT2SAS_INFO_FMT "scan devices: complete\n", ioc->name);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307057}
7058
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307059
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307060/**
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307061 * mpt2sas_scsih_reset_handler - reset callback handler (for scsih)
7062 * @ioc: per adapter object
7063 * @reset_phase: phase
7064 *
7065 * The handler for doing any required cleanup or initialization.
7066 *
7067 * The reset phase can be MPT2_IOC_PRE_RESET, MPT2_IOC_AFTER_RESET,
7068 * MPT2_IOC_DONE_RESET
7069 *
7070 * Return nothing.
7071 */
7072void
7073mpt2sas_scsih_reset_handler(struct MPT2SAS_ADAPTER *ioc, int reset_phase)
7074{
7075 switch (reset_phase) {
7076 case MPT2_IOC_PRE_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05307077 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307078 "MPT2_IOC_PRE_RESET\n", ioc->name, __func__));
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307079 break;
7080 case MPT2_IOC_AFTER_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05307081 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307082 "MPT2_IOC_AFTER_RESET\n", ioc->name, __func__));
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307083 if (ioc->scsih_cmds.status & MPT2_CMD_PENDING) {
7084 ioc->scsih_cmds.status |= MPT2_CMD_RESET;
7085 mpt2sas_base_free_smid(ioc, ioc->scsih_cmds.smid);
7086 complete(&ioc->scsih_cmds.done);
7087 }
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307088 if (ioc->tm_cmds.status & MPT2_CMD_PENDING) {
7089 ioc->tm_cmds.status |= MPT2_CMD_RESET;
7090 mpt2sas_base_free_smid(ioc, ioc->tm_cmds.smid);
7091 complete(&ioc->tm_cmds.done);
7092 }
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307093 _scsih_fw_event_cleanup_queue(ioc);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307094 _scsih_flush_running_cmds(ioc);
7095 break;
7096 case MPT2_IOC_DONE_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05307097 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307098 "MPT2_IOC_DONE_RESET\n", ioc->name, __func__));
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307099 _scsih_sas_host_refresh(ioc);
Kashyap, Desai14695852010-03-30 10:52:44 +05307100 _scsih_prep_device_scan(ioc);
7101 _scsih_search_responding_sas_devices(ioc);
7102 _scsih_search_responding_raid_devices(ioc);
7103 _scsih_search_responding_expanders(ioc);
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05307104 if (!ioc->is_driver_loading) {
7105 _scsih_prep_device_scan(ioc);
7106 _scsih_search_responding_sas_devices(ioc);
7107 _scsih_search_responding_raid_devices(ioc);
7108 _scsih_search_responding_expanders(ioc);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307109 _scsih_error_recovery_delete_devices(ioc);
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05307110 }
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307111 break;
Eric Moore635374e2009-03-09 01:21:12 -06007112 }
7113}
7114
7115/**
7116 * _firmware_event_work - delayed task for processing firmware events
7117 * @ioc: per adapter object
7118 * @work: equal to the fw_event_work object
7119 * Context: user.
7120 *
7121 * Return nothing.
7122 */
7123static void
7124_firmware_event_work(struct work_struct *work)
7125{
7126 struct fw_event_work *fw_event = container_of(work,
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307127 struct fw_event_work, delayed_work.work);
Eric Moore635374e2009-03-09 01:21:12 -06007128 struct MPT2SAS_ADAPTER *ioc = fw_event->ioc;
7129
Eric Moore635374e2009-03-09 01:21:12 -06007130 /* the queue is being flushed so ignore this event */
Eric Moore3cb54692010-07-08 14:44:34 -06007131 if (ioc->remove_host || fw_event->cancel_pending_work ||
7132 ioc->pci_error_recovery) {
Eric Moore635374e2009-03-09 01:21:12 -06007133 _scsih_fw_event_free(ioc, fw_event);
7134 return;
7135 }
Eric Moore635374e2009-03-09 01:21:12 -06007136
Eric Moore635374e2009-03-09 01:21:12 -06007137 switch (fw_event->event) {
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307138 case MPT2SAS_REMOVE_UNRESPONDING_DEVICES:
7139 while (scsi_host_in_recovery(ioc->shost))
7140 ssleep(1);
7141 _scsih_remove_unresponding_sas_devices(ioc);
7142 _scsih_scan_for_devices_after_reset(ioc);
7143 break;
7144 case MPT2SAS_PORT_ENABLE_COMPLETE:
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05307145 ioc->start_scan = 0;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307146
7147
7148
7149 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "port enable: complete "
7150 "from worker thread\n", ioc->name));
7151 break;
Kashyap, Desai3ace8e02011-05-04 16:35:58 +05307152 case MPT2SAS_TURN_ON_FAULT_LED:
7153 _scsih_turn_on_fault_led(ioc, fw_event->device_handle);
7154 break;
Eric Moore635374e2009-03-09 01:21:12 -06007155 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307156 _scsih_sas_topology_change_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007157 break;
7158 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307159 _scsih_sas_device_status_change_event(ioc,
7160 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007161 break;
7162 case MPI2_EVENT_SAS_DISCOVERY:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307163 _scsih_sas_discovery_event(ioc,
7164 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007165 break;
7166 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307167 _scsih_sas_broadcast_primative_event(ioc,
7168 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007169 break;
7170 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
7171 _scsih_sas_enclosure_dev_status_change_event(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307172 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007173 break;
7174 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307175 _scsih_sas_ir_config_change_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007176 break;
7177 case MPI2_EVENT_IR_VOLUME:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307178 _scsih_sas_ir_volume_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007179 break;
7180 case MPI2_EVENT_IR_PHYSICAL_DISK:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307181 _scsih_sas_ir_physical_disk_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007182 break;
7183 case MPI2_EVENT_IR_OPERATION_STATUS:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307184 _scsih_sas_ir_operation_status_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007185 break;
Eric Moore635374e2009-03-09 01:21:12 -06007186 }
7187 _scsih_fw_event_free(ioc, fw_event);
7188}
7189
7190/**
7191 * mpt2sas_scsih_event_callback - firmware event handler (called at ISR time)
7192 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307193 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06007194 * @reply: reply message frame(lower 32bit addr)
7195 * Context: interrupt.
7196 *
7197 * This function merely adds a new work task into ioc->firmware_event_thread.
7198 * The tasks are worked from _firmware_event_work in user context.
7199 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307200 * Return 1 meaning mf should be freed from _base_interrupt
7201 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06007202 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307203u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307204mpt2sas_scsih_event_callback(struct MPT2SAS_ADAPTER *ioc, u8 msix_index,
7205 u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06007206{
7207 struct fw_event_work *fw_event;
7208 Mpi2EventNotificationReply_t *mpi_reply;
Eric Moore635374e2009-03-09 01:21:12 -06007209 u16 event;
Kashyap, Desaie94f6742010-03-17 16:24:52 +05307210 u16 sz;
Eric Moore635374e2009-03-09 01:21:12 -06007211
7212 /* events turned off due to host reset or driver unloading */
Eric Moore3cb54692010-07-08 14:44:34 -06007213 if (ioc->remove_host || ioc->pci_error_recovery)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307214 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007215
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307216 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
Eric Moore635374e2009-03-09 01:21:12 -06007217 event = le16_to_cpu(mpi_reply->Event);
7218
7219 switch (event) {
7220 /* handle these */
7221 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
7222 {
7223 Mpi2EventDataSasBroadcastPrimitive_t *baen_data =
7224 (Mpi2EventDataSasBroadcastPrimitive_t *)
7225 mpi_reply->EventData;
7226
7227 if (baen_data->Primitive !=
Kashyap, Desaif93213d2011-06-14 10:56:43 +05307228 MPI2_EVENT_PRIMITIVE_ASYNCHRONOUS_EVENT)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307229 return 1;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05307230
7231 if (ioc->broadcast_aen_busy) {
7232 ioc->broadcast_aen_pending++;
7233 return 1;
7234 } else
7235 ioc->broadcast_aen_busy = 1;
Eric Moore635374e2009-03-09 01:21:12 -06007236 break;
7237 }
7238
7239 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
7240 _scsih_check_topo_delete_events(ioc,
7241 (Mpi2EventDataSasTopologyChangeList_t *)
7242 mpi_reply->EventData);
7243 break;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05307244 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
7245 _scsih_check_ir_config_unhide_events(ioc,
7246 (Mpi2EventDataIrConfigChangeList_t *)
7247 mpi_reply->EventData);
7248 break;
7249 case MPI2_EVENT_IR_VOLUME:
7250 _scsih_check_volume_delete_events(ioc,
7251 (Mpi2EventDataIrVolume_t *)
7252 mpi_reply->EventData);
7253 break;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307254 case MPI2_EVENT_LOG_ENTRY_ADDED:
7255 {
7256 Mpi2EventDataLogEntryAdded_t *log_entry;
7257 u32 *log_code;
7258
7259 if (!ioc->is_warpdrive)
7260 break;
7261
7262 log_entry = (Mpi2EventDataLogEntryAdded_t *)
7263 mpi_reply->EventData;
7264 log_code = (u32 *)log_entry->LogData;
7265
7266 if (le16_to_cpu(log_entry->LogEntryQualifier)
7267 != MPT2_WARPDRIVE_LOGENTRY)
7268 break;
7269
7270 switch (le32_to_cpu(*log_code)) {
7271 case MPT2_WARPDRIVE_LC_SSDT:
7272 printk(MPT2SAS_WARN_FMT "WarpDrive Warning: "
7273 "IO Throttling has occurred in the WarpDrive "
7274 "subsystem. Check WarpDrive documentation for "
7275 "additional details.\n", ioc->name);
7276 break;
7277 case MPT2_WARPDRIVE_LC_SSDLW:
7278 printk(MPT2SAS_WARN_FMT "WarpDrive Warning: "
7279 "Program/Erase Cycles for the WarpDrive subsystem "
7280 "in degraded range. Check WarpDrive documentation "
7281 "for additional details.\n", ioc->name);
7282 break;
7283 case MPT2_WARPDRIVE_LC_SSDLF:
7284 printk(MPT2SAS_ERR_FMT "WarpDrive Fatal Error: "
7285 "There are no Program/Erase Cycles for the "
7286 "WarpDrive subsystem. The storage device will be "
7287 "in read-only mode. Check WarpDrive documentation "
7288 "for additional details.\n", ioc->name);
7289 break;
7290 case MPT2_WARPDRIVE_LC_BRMF:
7291 printk(MPT2SAS_ERR_FMT "WarpDrive Fatal Error: "
7292 "The Backup Rail Monitor has failed on the "
7293 "WarpDrive subsystem. Check WarpDrive "
7294 "documentation for additional details.\n",
7295 ioc->name);
7296 break;
7297 }
7298
7299 break;
7300 }
Eric Moore635374e2009-03-09 01:21:12 -06007301 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
7302 case MPI2_EVENT_IR_OPERATION_STATUS:
7303 case MPI2_EVENT_SAS_DISCOVERY:
7304 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
Eric Moore635374e2009-03-09 01:21:12 -06007305 case MPI2_EVENT_IR_PHYSICAL_DISK:
Eric Moore635374e2009-03-09 01:21:12 -06007306 break;
7307
7308 default: /* ignore the rest */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307309 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007310 }
7311
7312 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
7313 if (!fw_event) {
7314 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
7315 ioc->name, __FILE__, __LINE__, __func__);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307316 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007317 }
Kashyap, Desaie94f6742010-03-17 16:24:52 +05307318 sz = le16_to_cpu(mpi_reply->EventDataLength) * 4;
7319 fw_event->event_data = kzalloc(sz, GFP_ATOMIC);
Eric Moore635374e2009-03-09 01:21:12 -06007320 if (!fw_event->event_data) {
7321 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
7322 ioc->name, __FILE__, __LINE__, __func__);
7323 kfree(fw_event);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307324 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007325 }
7326
7327 memcpy(fw_event->event_data, mpi_reply->EventData,
Kashyap, Desaie94f6742010-03-17 16:24:52 +05307328 sz);
Eric Moore635374e2009-03-09 01:21:12 -06007329 fw_event->ioc = ioc;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307330 fw_event->VF_ID = mpi_reply->VF_ID;
7331 fw_event->VP_ID = mpi_reply->VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -06007332 fw_event->event = event;
7333 _scsih_fw_event_add(ioc, fw_event);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307334 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007335}
7336
7337/* shost template */
7338static struct scsi_host_template scsih_driver_template = {
7339 .module = THIS_MODULE,
7340 .name = "Fusion MPT SAS Host",
7341 .proc_name = MPT2SAS_DRIVER_NAME,
Eric Moored5d135b2009-05-18 13:02:08 -06007342 .queuecommand = _scsih_qcmd,
7343 .target_alloc = _scsih_target_alloc,
7344 .slave_alloc = _scsih_slave_alloc,
7345 .slave_configure = _scsih_slave_configure,
7346 .target_destroy = _scsih_target_destroy,
7347 .slave_destroy = _scsih_slave_destroy,
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307348 .scan_finished = _scsih_scan_finished,
7349 .scan_start = _scsih_scan_start,
Eric Moored5d135b2009-05-18 13:02:08 -06007350 .change_queue_depth = _scsih_change_queue_depth,
7351 .change_queue_type = _scsih_change_queue_type,
7352 .eh_abort_handler = _scsih_abort,
7353 .eh_device_reset_handler = _scsih_dev_reset,
7354 .eh_target_reset_handler = _scsih_target_reset,
7355 .eh_host_reset_handler = _scsih_host_reset,
7356 .bios_param = _scsih_bios_param,
Eric Moore635374e2009-03-09 01:21:12 -06007357 .can_queue = 1,
7358 .this_id = -1,
7359 .sg_tablesize = MPT2SAS_SG_DEPTH,
7360 .max_sectors = 8192,
7361 .cmd_per_lun = 7,
7362 .use_clustering = ENABLE_CLUSTERING,
7363 .shost_attrs = mpt2sas_host_attrs,
7364 .sdev_attrs = mpt2sas_dev_attrs,
7365};
7366
7367/**
7368 * _scsih_expander_node_remove - removing expander device from list.
7369 * @ioc: per adapter object
7370 * @sas_expander: the sas_device object
7371 * Context: Calling function should acquire ioc->sas_node_lock.
7372 *
7373 * Removing object and freeing associated memory from the
7374 * ioc->sas_expander_list.
7375 *
7376 * Return nothing.
7377 */
7378static void
7379_scsih_expander_node_remove(struct MPT2SAS_ADAPTER *ioc,
7380 struct _sas_node *sas_expander)
7381{
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307382 struct _sas_port *mpt2sas_port, *next;
Eric Moore635374e2009-03-09 01:21:12 -06007383
7384 /* remove sibling ports attached to this expander */
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307385 list_for_each_entry_safe(mpt2sas_port, next,
Eric Moore635374e2009-03-09 01:21:12 -06007386 &sas_expander->sas_port_list, port_list) {
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307387 if (ioc->shost_recovery)
7388 return;
Eric Moore635374e2009-03-09 01:21:12 -06007389 if (mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307390 SAS_END_DEVICE)
7391 mpt2sas_device_remove(ioc,
7392 mpt2sas_port->remote_identify.sas_address);
7393 else if (mpt2sas_port->remote_identify.device_type ==
7394 SAS_EDGE_EXPANDER_DEVICE ||
Eric Moore635374e2009-03-09 01:21:12 -06007395 mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307396 SAS_FANOUT_EXPANDER_DEVICE)
7397 mpt2sas_expander_remove(ioc,
7398 mpt2sas_port->remote_identify.sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06007399 }
7400
7401 mpt2sas_transport_port_remove(ioc, sas_expander->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307402 sas_expander->sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06007403
7404 printk(MPT2SAS_INFO_FMT "expander_remove: handle"
7405 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name,
7406 sas_expander->handle, (unsigned long long)
7407 sas_expander->sas_address);
7408
Eric Moore635374e2009-03-09 01:21:12 -06007409 kfree(sas_expander->phy);
7410 kfree(sas_expander);
7411}
7412
7413/**
Kashyap, Desai744090d2009-10-05 15:56:56 +05307414 * _scsih_ir_shutdown - IR shutdown notification
7415 * @ioc: per adapter object
7416 *
7417 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that
7418 * the host system is shutting down.
7419 *
7420 * Return nothing.
7421 */
7422static void
7423_scsih_ir_shutdown(struct MPT2SAS_ADAPTER *ioc)
7424{
7425 Mpi2RaidActionRequest_t *mpi_request;
7426 Mpi2RaidActionReply_t *mpi_reply;
7427 u16 smid;
7428
7429 /* is IR firmware build loaded ? */
7430 if (!ioc->ir_firmware)
7431 return;
7432
7433 /* are there any volumes ? */
7434 if (list_empty(&ioc->raid_device_list))
7435 return;
7436
7437 mutex_lock(&ioc->scsih_cmds.mutex);
7438
7439 if (ioc->scsih_cmds.status != MPT2_CMD_NOT_USED) {
7440 printk(MPT2SAS_ERR_FMT "%s: scsih_cmd in use\n",
7441 ioc->name, __func__);
7442 goto out;
7443 }
7444 ioc->scsih_cmds.status = MPT2_CMD_PENDING;
7445
7446 smid = mpt2sas_base_get_smid(ioc, ioc->scsih_cb_idx);
7447 if (!smid) {
7448 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
7449 ioc->name, __func__);
7450 ioc->scsih_cmds.status = MPT2_CMD_NOT_USED;
7451 goto out;
7452 }
7453
7454 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
7455 ioc->scsih_cmds.smid = smid;
7456 memset(mpi_request, 0, sizeof(Mpi2RaidActionRequest_t));
7457
7458 mpi_request->Function = MPI2_FUNCTION_RAID_ACTION;
7459 mpi_request->Action = MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED;
7460
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307461 if (!ioc->hide_ir_msg)
7462 printk(MPT2SAS_INFO_FMT "IR shutdown (sending)\n", ioc->name);
Kashyap, Desai744090d2009-10-05 15:56:56 +05307463 init_completion(&ioc->scsih_cmds.done);
7464 mpt2sas_base_put_smid_default(ioc, smid);
7465 wait_for_completion_timeout(&ioc->scsih_cmds.done, 10*HZ);
7466
7467 if (!(ioc->scsih_cmds.status & MPT2_CMD_COMPLETE)) {
7468 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
7469 ioc->name, __func__);
7470 goto out;
7471 }
7472
7473 if (ioc->scsih_cmds.status & MPT2_CMD_REPLY_VALID) {
7474 mpi_reply = ioc->scsih_cmds.reply;
7475
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307476 if (!ioc->hide_ir_msg)
7477 printk(MPT2SAS_INFO_FMT "IR shutdown (complete): "
7478 "ioc_status(0x%04x), loginfo(0x%08x)\n",
7479 ioc->name, le16_to_cpu(mpi_reply->IOCStatus),
7480 le32_to_cpu(mpi_reply->IOCLogInfo));
Kashyap, Desai744090d2009-10-05 15:56:56 +05307481 }
7482
7483 out:
7484 ioc->scsih_cmds.status = MPT2_CMD_NOT_USED;
7485 mutex_unlock(&ioc->scsih_cmds.mutex);
7486}
7487
7488/**
7489 * _scsih_shutdown - routine call during system shutdown
7490 * @pdev: PCI device struct
7491 *
7492 * Return nothing.
7493 */
7494static void
7495_scsih_shutdown(struct pci_dev *pdev)
7496{
7497 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7498 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307499 struct workqueue_struct *wq;
7500 unsigned long flags;
7501
7502 ioc->remove_host = 1;
7503 _scsih_fw_event_cleanup_queue(ioc);
7504
7505 spin_lock_irqsave(&ioc->fw_event_lock, flags);
7506 wq = ioc->firmware_event_thread;
7507 ioc->firmware_event_thread = NULL;
7508 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
7509 if (wq)
7510 destroy_workqueue(wq);
Kashyap, Desai744090d2009-10-05 15:56:56 +05307511
7512 _scsih_ir_shutdown(ioc);
7513 mpt2sas_base_detach(ioc);
7514}
7515
7516/**
Eric Moored5d135b2009-05-18 13:02:08 -06007517 * _scsih_remove - detach and remove add host
Eric Moore635374e2009-03-09 01:21:12 -06007518 * @pdev: PCI device struct
7519 *
Kashyap, Desai744090d2009-10-05 15:56:56 +05307520 * Routine called when unloading the driver.
Eric Moore635374e2009-03-09 01:21:12 -06007521 * Return nothing.
7522 */
7523static void __devexit
Eric Moored5d135b2009-05-18 13:02:08 -06007524_scsih_remove(struct pci_dev *pdev)
Eric Moore635374e2009-03-09 01:21:12 -06007525{
7526 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7527 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307528 struct _sas_port *mpt2sas_port, *next_port;
Kashyap, Desaid7384b22009-12-16 18:50:06 +05307529 struct _raid_device *raid_device, *next;
7530 struct MPT2SAS_TARGET *sas_target_priv_data;
Eric Moore635374e2009-03-09 01:21:12 -06007531 struct workqueue_struct *wq;
7532 unsigned long flags;
7533
7534 ioc->remove_host = 1;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307535 _scsih_fw_event_cleanup_queue(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06007536
7537 spin_lock_irqsave(&ioc->fw_event_lock, flags);
7538 wq = ioc->firmware_event_thread;
7539 ioc->firmware_event_thread = NULL;
7540 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
7541 if (wq)
7542 destroy_workqueue(wq);
7543
Kashyap, Desaid7384b22009-12-16 18:50:06 +05307544 /* release all the volumes */
Kashyap, Desai3a9c9132011-01-04 11:40:23 +05307545 _scsih_ir_shutdown(ioc);
Kashyap, Desaid7384b22009-12-16 18:50:06 +05307546 list_for_each_entry_safe(raid_device, next, &ioc->raid_device_list,
7547 list) {
7548 if (raid_device->starget) {
7549 sas_target_priv_data =
7550 raid_device->starget->hostdata;
7551 sas_target_priv_data->deleted = 1;
7552 scsi_remove_target(&raid_device->starget->dev);
7553 }
7554 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), wwid"
7555 "(0x%016llx)\n", ioc->name, raid_device->handle,
7556 (unsigned long long) raid_device->wwid);
7557 _scsih_raid_device_remove(ioc, raid_device);
7558 }
7559
Eric Moore635374e2009-03-09 01:21:12 -06007560 /* free ports attached to the sas_host */
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307561 list_for_each_entry_safe(mpt2sas_port, next_port,
Eric Moore635374e2009-03-09 01:21:12 -06007562 &ioc->sas_hba.sas_port_list, port_list) {
7563 if (mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307564 SAS_END_DEVICE)
7565 mpt2sas_device_remove(ioc,
Eric Moore635374e2009-03-09 01:21:12 -06007566 mpt2sas_port->remote_identify.sas_address);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307567 else if (mpt2sas_port->remote_identify.device_type ==
7568 SAS_EDGE_EXPANDER_DEVICE ||
7569 mpt2sas_port->remote_identify.device_type ==
7570 SAS_FANOUT_EXPANDER_DEVICE)
7571 mpt2sas_expander_remove(ioc,
7572 mpt2sas_port->remote_identify.sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06007573 }
7574
7575 /* free phys attached to the sas_host */
7576 if (ioc->sas_hba.num_phys) {
7577 kfree(ioc->sas_hba.phy);
7578 ioc->sas_hba.phy = NULL;
7579 ioc->sas_hba.num_phys = 0;
7580 }
7581
7582 sas_remove_host(shost);
kashyap.desai@lsi.com9ae89b02011-08-04 16:47:50 +05307583 mpt2sas_base_detach(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06007584 list_del(&ioc->list);
7585 scsi_remove_host(shost);
7586 scsi_host_put(shost);
7587}
7588
7589/**
7590 * _scsih_probe_boot_devices - reports 1st device
7591 * @ioc: per adapter object
7592 *
7593 * If specified in bios page 2, this routine reports the 1st
7594 * device scsi-ml or sas transport for persistent boot device
7595 * purposes. Please refer to function _scsih_determine_boot_device()
7596 */
7597static void
7598_scsih_probe_boot_devices(struct MPT2SAS_ADAPTER *ioc)
7599{
7600 u8 is_raid;
7601 void *device;
7602 struct _sas_device *sas_device;
7603 struct _raid_device *raid_device;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307604 u16 handle;
7605 u64 sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06007606 u64 sas_address;
7607 unsigned long flags;
7608 int rc;
7609
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307610 /* no Bios, return immediately */
7611 if (!ioc->bios_pg3.BiosVersion)
7612 return;
7613
Eric Moore635374e2009-03-09 01:21:12 -06007614 device = NULL;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307615 is_raid = 0;
Eric Moore635374e2009-03-09 01:21:12 -06007616 if (ioc->req_boot_device.device) {
7617 device = ioc->req_boot_device.device;
7618 is_raid = ioc->req_boot_device.is_raid;
7619 } else if (ioc->req_alt_boot_device.device) {
7620 device = ioc->req_alt_boot_device.device;
7621 is_raid = ioc->req_alt_boot_device.is_raid;
7622 } else if (ioc->current_boot_device.device) {
7623 device = ioc->current_boot_device.device;
7624 is_raid = ioc->current_boot_device.is_raid;
7625 }
7626
7627 if (!device)
7628 return;
7629
7630 if (is_raid) {
7631 raid_device = device;
7632 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
7633 raid_device->id, 0);
7634 if (rc)
7635 _scsih_raid_device_remove(ioc, raid_device);
7636 } else {
7637 sas_device = device;
7638 handle = sas_device->handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307639 sas_address_parent = sas_device->sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06007640 sas_address = sas_device->sas_address;
7641 spin_lock_irqsave(&ioc->sas_device_lock, flags);
7642 list_move_tail(&sas_device->list, &ioc->sas_device_list);
7643 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307644
7645 if (ioc->hide_drives)
7646 return;
Eric Moore635374e2009-03-09 01:21:12 -06007647 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307648 sas_device->sas_address_parent)) {
Eric Moore635374e2009-03-09 01:21:12 -06007649 _scsih_sas_device_remove(ioc, sas_device);
7650 } else if (!sas_device->starget) {
7651 mpt2sas_transport_port_remove(ioc, sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307652 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06007653 _scsih_sas_device_remove(ioc, sas_device);
7654 }
7655 }
7656}
7657
7658/**
7659 * _scsih_probe_raid - reporting raid volumes to scsi-ml
7660 * @ioc: per adapter object
7661 *
7662 * Called during initial loading of the driver.
7663 */
7664static void
7665_scsih_probe_raid(struct MPT2SAS_ADAPTER *ioc)
7666{
7667 struct _raid_device *raid_device, *raid_next;
7668 int rc;
7669
7670 list_for_each_entry_safe(raid_device, raid_next,
7671 &ioc->raid_device_list, list) {
7672 if (raid_device->starget)
7673 continue;
7674 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
7675 raid_device->id, 0);
7676 if (rc)
7677 _scsih_raid_device_remove(ioc, raid_device);
7678 }
7679}
7680
7681/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307682 * _scsih_probe_sas - reporting sas devices to sas transport
Eric Moore635374e2009-03-09 01:21:12 -06007683 * @ioc: per adapter object
7684 *
7685 * Called during initial loading of the driver.
7686 */
7687static void
7688_scsih_probe_sas(struct MPT2SAS_ADAPTER *ioc)
7689{
7690 struct _sas_device *sas_device, *next;
7691 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06007692
7693 /* SAS Device List */
7694 list_for_each_entry_safe(sas_device, next, &ioc->sas_device_init_list,
7695 list) {
Eric Moore635374e2009-03-09 01:21:12 -06007696
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307697 if (ioc->hide_drives)
7698 continue;
7699
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307700 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
7701 sas_device->sas_address_parent)) {
nagalakshmi.nandigama@lsi.com0167ac62011-10-21 10:06:33 +05307702 list_del(&sas_device->list);
7703 kfree(sas_device);
7704 continue;
Eric Moore635374e2009-03-09 01:21:12 -06007705 } else if (!sas_device->starget) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307706 mpt2sas_transport_port_remove(ioc,
7707 sas_device->sas_address,
7708 sas_device->sas_address_parent);
nagalakshmi.nandigama@lsi.com0167ac62011-10-21 10:06:33 +05307709 list_del(&sas_device->list);
7710 kfree(sas_device);
7711 continue;
7712
Eric Moore635374e2009-03-09 01:21:12 -06007713 }
nagalakshmi.nandigama@lsi.com0167ac62011-10-21 10:06:33 +05307714 spin_lock_irqsave(&ioc->sas_device_lock, flags);
7715 list_move_tail(&sas_device->list, &ioc->sas_device_list);
7716 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06007717 }
7718}
7719
7720/**
7721 * _scsih_probe_devices - probing for devices
7722 * @ioc: per adapter object
7723 *
7724 * Called during initial loading of the driver.
7725 */
7726static void
7727_scsih_probe_devices(struct MPT2SAS_ADAPTER *ioc)
7728{
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307729 u16 volume_mapping_flags;
Eric Moore635374e2009-03-09 01:21:12 -06007730
7731 if (!(ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR))
7732 return; /* return when IOC doesn't support initiator mode */
7733
7734 _scsih_probe_boot_devices(ioc);
7735
7736 if (ioc->ir_firmware) {
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307737 volume_mapping_flags =
7738 le16_to_cpu(ioc->ioc_pg8.IRVolumeMappingFlags) &
7739 MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE;
7740 if (volume_mapping_flags ==
7741 MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING) {
Eric Moore635374e2009-03-09 01:21:12 -06007742 _scsih_probe_raid(ioc);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307743 _scsih_probe_sas(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06007744 } else {
Eric Moore635374e2009-03-09 01:21:12 -06007745 _scsih_probe_sas(ioc);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307746 _scsih_probe_raid(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06007747 }
7748 } else
7749 _scsih_probe_sas(ioc);
7750}
7751
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307752
7753/**
7754 * _scsih_scan_start - scsi lld callback for .scan_start
7755 * @shost: SCSI host pointer
7756 *
7757 * The shost has the ability to discover targets on its own instead
7758 * of scanning the entire bus. In our implemention, we will kick off
7759 * firmware discovery.
7760 */
7761static void
7762_scsih_scan_start(struct Scsi_Host *shost)
7763{
7764 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
7765 int rc;
7766
7767 if (diag_buffer_enable != -1 && diag_buffer_enable != 0)
7768 mpt2sas_enable_diag_buffer(ioc, diag_buffer_enable);
7769
7770 ioc->start_scan = 1;
7771 rc = mpt2sas_port_enable(ioc);
7772
7773 if (rc != 0)
7774 printk(MPT2SAS_INFO_FMT "port enable: FAILED\n", ioc->name);
7775}
7776
7777/**
7778 * _scsih_scan_finished - scsi lld callback for .scan_finished
7779 * @shost: SCSI host pointer
7780 * @time: elapsed time of the scan in jiffies
7781 *
7782 * This function will be called periodically until it returns 1 with the
7783 * scsi_host and the elapsed time of the scan in jiffies. In our implemention,
7784 * we wait for firmware discovery to complete, then return 1.
7785 */
7786static int
7787_scsih_scan_finished(struct Scsi_Host *shost, unsigned long time)
7788{
7789 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
7790
7791 if (time >= (300 * HZ)) {
7792 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
7793 printk(MPT2SAS_INFO_FMT "port enable: FAILED with timeout "
7794 "(timeout=300s)\n", ioc->name);
7795 ioc->is_driver_loading = 0;
7796 return 1;
7797 }
7798
7799 if (ioc->start_scan)
7800 return 0;
7801
7802 if (ioc->start_scan_failed) {
7803 printk(MPT2SAS_INFO_FMT "port enable: FAILED with "
7804 "(ioc_status=0x%08x)\n", ioc->name, ioc->start_scan_failed);
7805 ioc->is_driver_loading = 0;
7806 ioc->wait_for_discovery_to_complete = 0;
7807 ioc->remove_host = 1;
7808 return 1;
7809 }
7810
7811 printk(MPT2SAS_INFO_FMT "port enable: SUCCESS\n", ioc->name);
7812 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
7813
7814 if (ioc->wait_for_discovery_to_complete) {
7815 ioc->wait_for_discovery_to_complete = 0;
7816 _scsih_probe_devices(ioc);
7817 }
7818 mpt2sas_base_start_watchdog(ioc);
7819 ioc->is_driver_loading = 0;
7820 return 1;
7821}
7822
7823
Eric Moore635374e2009-03-09 01:21:12 -06007824/**
Eric Moored5d135b2009-05-18 13:02:08 -06007825 * _scsih_probe - attach and add scsi host
Eric Moore635374e2009-03-09 01:21:12 -06007826 * @pdev: PCI device struct
7827 * @id: pci device id
7828 *
7829 * Returns 0 success, anything else error.
7830 */
7831static int
Eric Moored5d135b2009-05-18 13:02:08 -06007832_scsih_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Eric Moore635374e2009-03-09 01:21:12 -06007833{
7834 struct MPT2SAS_ADAPTER *ioc;
7835 struct Scsi_Host *shost;
7836
7837 shost = scsi_host_alloc(&scsih_driver_template,
7838 sizeof(struct MPT2SAS_ADAPTER));
7839 if (!shost)
7840 return -ENODEV;
7841
7842 /* init local params */
7843 ioc = shost_priv(shost);
7844 memset(ioc, 0, sizeof(struct MPT2SAS_ADAPTER));
7845 INIT_LIST_HEAD(&ioc->list);
Eric Mooreba33fad2009-03-15 21:37:18 -06007846 list_add_tail(&ioc->list, &mpt2sas_ioc_list);
Eric Moore635374e2009-03-09 01:21:12 -06007847 ioc->shost = shost;
7848 ioc->id = mpt_ids++;
7849 sprintf(ioc->name, "%s%d", MPT2SAS_DRIVER_NAME, ioc->id);
7850 ioc->pdev = pdev;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307851 if (id->device == MPI2_MFGPAGE_DEVID_SSS6200) {
7852 ioc->is_warpdrive = 1;
7853 ioc->hide_ir_msg = 1;
7854 } else
7855 ioc->mfg_pg10_hide_flag = MFG_PAGE10_EXPOSE_ALL_DISKS;
Eric Moore635374e2009-03-09 01:21:12 -06007856 ioc->scsi_io_cb_idx = scsi_io_cb_idx;
7857 ioc->tm_cb_idx = tm_cb_idx;
7858 ioc->ctl_cb_idx = ctl_cb_idx;
7859 ioc->base_cb_idx = base_cb_idx;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307860 ioc->port_enable_cb_idx = port_enable_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06007861 ioc->transport_cb_idx = transport_cb_idx;
Kashyap, Desai744090d2009-10-05 15:56:56 +05307862 ioc->scsih_cb_idx = scsih_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06007863 ioc->config_cb_idx = config_cb_idx;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307864 ioc->tm_tr_cb_idx = tm_tr_cb_idx;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05307865 ioc->tm_tr_volume_cb_idx = tm_tr_volume_cb_idx;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307866 ioc->tm_sas_control_cb_idx = tm_sas_control_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06007867 ioc->logging_level = logging_level;
7868 /* misc semaphores and spin locks */
Kashyap, Desaid2742132010-06-17 13:28:55 +05307869 mutex_init(&ioc->reset_in_progress_mutex);
Eric Moore635374e2009-03-09 01:21:12 -06007870 spin_lock_init(&ioc->ioc_reset_in_progress_lock);
7871 spin_lock_init(&ioc->scsi_lookup_lock);
7872 spin_lock_init(&ioc->sas_device_lock);
7873 spin_lock_init(&ioc->sas_node_lock);
7874 spin_lock_init(&ioc->fw_event_lock);
7875 spin_lock_init(&ioc->raid_device_lock);
7876
7877 INIT_LIST_HEAD(&ioc->sas_device_list);
7878 INIT_LIST_HEAD(&ioc->sas_device_init_list);
7879 INIT_LIST_HEAD(&ioc->sas_expander_list);
7880 INIT_LIST_HEAD(&ioc->fw_event_list);
7881 INIT_LIST_HEAD(&ioc->raid_device_list);
7882 INIT_LIST_HEAD(&ioc->sas_hba.sas_port_list);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307883 INIT_LIST_HEAD(&ioc->delayed_tr_list);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05307884 INIT_LIST_HEAD(&ioc->delayed_tr_volume_list);
Eric Moore635374e2009-03-09 01:21:12 -06007885
7886 /* init shost parameters */
Eric Moored334aa72010-04-22 10:47:40 -06007887 shost->max_cmd_len = 32;
Eric Moore635374e2009-03-09 01:21:12 -06007888 shost->max_lun = max_lun;
7889 shost->transportt = mpt2sas_transport_template;
7890 shost->unique_id = ioc->id;
7891
Kashyap, Desaia3e1e552011-06-14 10:56:12 +05307892 if (max_sectors != 0xFFFF) {
7893 if (max_sectors < 64) {
7894 shost->max_sectors = 64;
7895 printk(MPT2SAS_WARN_FMT "Invalid value %d passed "
7896 "for max_sectors, range is 64 to 8192. Assigning "
7897 "value of 64.\n", ioc->name, max_sectors);
7898 } else if (max_sectors > 8192) {
7899 shost->max_sectors = 8192;
7900 printk(MPT2SAS_WARN_FMT "Invalid value %d passed "
7901 "for max_sectors, range is 64 to 8192. Assigning "
7902 "default value of 8192.\n", ioc->name,
7903 max_sectors);
7904 } else {
7905 shost->max_sectors = max_sectors & 0xFFFE;
7906 printk(MPT2SAS_INFO_FMT "The max_sectors value is "
7907 "set to %d\n", ioc->name, shost->max_sectors);
7908 }
7909 }
7910
Eric Moore635374e2009-03-09 01:21:12 -06007911 if ((scsi_add_host(shost, &pdev->dev))) {
7912 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
7913 ioc->name, __FILE__, __LINE__, __func__);
7914 list_del(&ioc->list);
7915 goto out_add_shost_fail;
7916 }
7917
Eric Moore3c621b32009-05-18 12:59:41 -06007918 scsi_host_set_prot(shost, SHOST_DIF_TYPE1_PROTECTION
Eric Moored334aa72010-04-22 10:47:40 -06007919 | SHOST_DIF_TYPE2_PROTECTION | SHOST_DIF_TYPE3_PROTECTION);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307920 scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC);
Eric Moore3c621b32009-05-18 12:59:41 -06007921
Eric Moore635374e2009-03-09 01:21:12 -06007922 /* event thread */
7923 snprintf(ioc->firmware_event_name, sizeof(ioc->firmware_event_name),
7924 "fw_event%d", ioc->id);
7925 ioc->firmware_event_thread = create_singlethread_workqueue(
7926 ioc->firmware_event_name);
7927 if (!ioc->firmware_event_thread) {
7928 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
7929 ioc->name, __FILE__, __LINE__, __func__);
7930 goto out_thread_fail;
7931 }
7932
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307933 ioc->is_driver_loading = 1;
Eric Moore635374e2009-03-09 01:21:12 -06007934 if ((mpt2sas_base_attach(ioc))) {
7935 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
7936 ioc->name, __FILE__, __LINE__, __func__);
7937 goto out_attach_fail;
7938 }
7939
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307940 scsi_scan_host(shost);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307941 if (ioc->is_warpdrive) {
7942 if (ioc->mfg_pg10_hide_flag == MFG_PAGE10_EXPOSE_ALL_DISKS)
7943 ioc->hide_drives = 0;
7944 else if (ioc->mfg_pg10_hide_flag == MFG_PAGE10_HIDE_ALL_DISKS)
7945 ioc->hide_drives = 1;
7946 else {
7947 if (_scsih_get_num_volumes(ioc))
7948 ioc->hide_drives = 1;
7949 else
7950 ioc->hide_drives = 0;
7951 }
7952 } else
7953 ioc->hide_drives = 0;
7954
Eric Moore635374e2009-03-09 01:21:12 -06007955 _scsih_probe_devices(ioc);
7956 return 0;
7957
7958 out_attach_fail:
7959 destroy_workqueue(ioc->firmware_event_thread);
7960 out_thread_fail:
7961 list_del(&ioc->list);
7962 scsi_remove_host(shost);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307963 scsi_host_put(shost);
Eric Moore635374e2009-03-09 01:21:12 -06007964 out_add_shost_fail:
7965 return -ENODEV;
7966}
7967
7968#ifdef CONFIG_PM
7969/**
Eric Moored5d135b2009-05-18 13:02:08 -06007970 * _scsih_suspend - power management suspend main entry point
Eric Moore635374e2009-03-09 01:21:12 -06007971 * @pdev: PCI device struct
7972 * @state: PM state change to (usually PCI_D3)
7973 *
7974 * Returns 0 success, anything else error.
7975 */
7976static int
Eric Moored5d135b2009-05-18 13:02:08 -06007977_scsih_suspend(struct pci_dev *pdev, pm_message_t state)
Eric Moore635374e2009-03-09 01:21:12 -06007978{
7979 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7980 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desaic97951e2011-06-14 10:54:56 +05307981 pci_power_t device_state;
Eric Moore635374e2009-03-09 01:21:12 -06007982
Kashyap, Desaie4750c92009-08-07 19:37:59 +05307983 mpt2sas_base_stop_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06007984 scsi_block_requests(shost);
7985 device_state = pci_choose_state(pdev, state);
7986 printk(MPT2SAS_INFO_FMT "pdev=0x%p, slot=%s, entering "
7987 "operating state [D%d]\n", ioc->name, pdev,
7988 pci_name(pdev), device_state);
7989
7990 mpt2sas_base_free_resources(ioc);
7991 pci_save_state(pdev);
7992 pci_disable_device(pdev);
7993 pci_set_power_state(pdev, device_state);
7994 return 0;
7995}
7996
7997/**
Eric Moored5d135b2009-05-18 13:02:08 -06007998 * _scsih_resume - power management resume main entry point
Eric Moore635374e2009-03-09 01:21:12 -06007999 * @pdev: PCI device struct
8000 *
8001 * Returns 0 success, anything else error.
8002 */
8003static int
Eric Moored5d135b2009-05-18 13:02:08 -06008004_scsih_resume(struct pci_dev *pdev)
Eric Moore635374e2009-03-09 01:21:12 -06008005{
8006 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8007 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desaic97951e2011-06-14 10:54:56 +05308008 pci_power_t device_state = pdev->current_state;
Eric Moore635374e2009-03-09 01:21:12 -06008009 int r;
8010
8011 printk(MPT2SAS_INFO_FMT "pdev=0x%p, slot=%s, previous "
8012 "operating state [D%d]\n", ioc->name, pdev,
8013 pci_name(pdev), device_state);
8014
8015 pci_set_power_state(pdev, PCI_D0);
8016 pci_enable_wake(pdev, PCI_D0, 0);
8017 pci_restore_state(pdev);
8018 ioc->pdev = pdev;
8019 r = mpt2sas_base_map_resources(ioc);
8020 if (r)
8021 return r;
8022
8023 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP, SOFT_RESET);
8024 scsi_unblock_requests(shost);
Kashyap, Desaie4750c92009-08-07 19:37:59 +05308025 mpt2sas_base_start_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06008026 return 0;
8027}
8028#endif /* CONFIG_PM */
8029
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308030/**
8031 * _scsih_pci_error_detected - Called when a PCI error is detected.
8032 * @pdev: PCI device struct
8033 * @state: PCI channel state
8034 *
8035 * Description: Called when a PCI error is detected.
8036 *
8037 * Return value:
8038 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
8039 */
8040static pci_ers_result_t
8041_scsih_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
8042{
8043 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8044 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8045
8046 printk(MPT2SAS_INFO_FMT "PCI error: detected callback, state(%d)!!\n",
8047 ioc->name, state);
8048
8049 switch (state) {
8050 case pci_channel_io_normal:
8051 return PCI_ERS_RESULT_CAN_RECOVER;
8052 case pci_channel_io_frozen:
Eric Moore3cb54692010-07-08 14:44:34 -06008053 /* Fatal error, prepare for slot reset */
8054 ioc->pci_error_recovery = 1;
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308055 scsi_block_requests(ioc->shost);
8056 mpt2sas_base_stop_watchdog(ioc);
8057 mpt2sas_base_free_resources(ioc);
8058 return PCI_ERS_RESULT_NEED_RESET;
8059 case pci_channel_io_perm_failure:
Eric Moore3cb54692010-07-08 14:44:34 -06008060 /* Permanent error, prepare for device removal */
8061 ioc->pci_error_recovery = 1;
8062 mpt2sas_base_stop_watchdog(ioc);
8063 _scsih_flush_running_cmds(ioc);
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308064 return PCI_ERS_RESULT_DISCONNECT;
8065 }
8066 return PCI_ERS_RESULT_NEED_RESET;
8067}
8068
8069/**
8070 * _scsih_pci_slot_reset - Called when PCI slot has been reset.
8071 * @pdev: PCI device struct
8072 *
8073 * Description: This routine is called by the pci error recovery
8074 * code after the PCI slot has been reset, just before we
8075 * should resume normal operations.
8076 */
8077static pci_ers_result_t
8078_scsih_pci_slot_reset(struct pci_dev *pdev)
8079{
8080 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8081 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8082 int rc;
8083
8084 printk(MPT2SAS_INFO_FMT "PCI error: slot reset callback!!\n",
8085 ioc->name);
8086
Eric Moore3cb54692010-07-08 14:44:34 -06008087 ioc->pci_error_recovery = 0;
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308088 ioc->pdev = pdev;
Eric Moore3cb54692010-07-08 14:44:34 -06008089 pci_restore_state(pdev);
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308090 rc = mpt2sas_base_map_resources(ioc);
8091 if (rc)
8092 return PCI_ERS_RESULT_DISCONNECT;
8093
8094
8095 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
8096 FORCE_BIG_HAMMER);
8097
8098 printk(MPT2SAS_WARN_FMT "hard reset: %s\n", ioc->name,
8099 (rc == 0) ? "success" : "failed");
8100
8101 if (!rc)
8102 return PCI_ERS_RESULT_RECOVERED;
8103 else
8104 return PCI_ERS_RESULT_DISCONNECT;
8105}
8106
8107/**
8108 * _scsih_pci_resume() - resume normal ops after PCI reset
8109 * @pdev: pointer to PCI device
8110 *
8111 * Called when the error recovery driver tells us that its
8112 * OK to resume normal operation. Use completion to allow
8113 * halted scsi ops to resume.
8114 */
8115static void
8116_scsih_pci_resume(struct pci_dev *pdev)
8117{
8118 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8119 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8120
8121 printk(MPT2SAS_INFO_FMT "PCI error: resume callback!!\n", ioc->name);
8122
8123 pci_cleanup_aer_uncorrect_error_status(pdev);
8124 mpt2sas_base_start_watchdog(ioc);
8125 scsi_unblock_requests(ioc->shost);
8126}
8127
8128/**
8129 * _scsih_pci_mmio_enabled - Enable MMIO and dump debug registers
8130 * @pdev: pointer to PCI device
8131 */
8132static pci_ers_result_t
8133_scsih_pci_mmio_enabled(struct pci_dev *pdev)
8134{
8135 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8136 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8137
8138 printk(MPT2SAS_INFO_FMT "PCI error: mmio enabled callback!!\n",
8139 ioc->name);
8140
8141 /* TODO - dump whatever for debugging purposes */
8142
8143 /* Request a slot reset. */
8144 return PCI_ERS_RESULT_NEED_RESET;
8145}
8146
8147static struct pci_error_handlers _scsih_err_handler = {
8148 .error_detected = _scsih_pci_error_detected,
8149 .mmio_enabled = _scsih_pci_mmio_enabled,
8150 .slot_reset = _scsih_pci_slot_reset,
8151 .resume = _scsih_pci_resume,
8152};
Eric Moore635374e2009-03-09 01:21:12 -06008153
8154static struct pci_driver scsih_driver = {
8155 .name = MPT2SAS_DRIVER_NAME,
8156 .id_table = scsih_pci_table,
Eric Moored5d135b2009-05-18 13:02:08 -06008157 .probe = _scsih_probe,
8158 .remove = __devexit_p(_scsih_remove),
Kashyap, Desai744090d2009-10-05 15:56:56 +05308159 .shutdown = _scsih_shutdown,
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308160 .err_handler = &_scsih_err_handler,
Eric Moore635374e2009-03-09 01:21:12 -06008161#ifdef CONFIG_PM
Eric Moored5d135b2009-05-18 13:02:08 -06008162 .suspend = _scsih_suspend,
8163 .resume = _scsih_resume,
Eric Moore635374e2009-03-09 01:21:12 -06008164#endif
8165};
8166
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308167/* raid transport support */
8168static struct raid_function_template mpt2sas_raid_functions = {
8169 .cookie = &scsih_driver_template,
8170 .is_raid = _scsih_is_raid,
8171 .get_resync = _scsih_get_resync,
8172 .get_state = _scsih_get_state,
8173};
Eric Moore635374e2009-03-09 01:21:12 -06008174
8175/**
Eric Moored5d135b2009-05-18 13:02:08 -06008176 * _scsih_init - main entry point for this driver.
Eric Moore635374e2009-03-09 01:21:12 -06008177 *
8178 * Returns 0 success, anything else error.
8179 */
8180static int __init
Eric Moored5d135b2009-05-18 13:02:08 -06008181_scsih_init(void)
Eric Moore635374e2009-03-09 01:21:12 -06008182{
8183 int error;
8184
8185 mpt_ids = 0;
8186 printk(KERN_INFO "%s version %s loaded\n", MPT2SAS_DRIVER_NAME,
8187 MPT2SAS_DRIVER_VERSION);
8188
8189 mpt2sas_transport_template =
8190 sas_attach_transport(&mpt2sas_transport_functions);
8191 if (!mpt2sas_transport_template)
8192 return -ENODEV;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308193 /* raid transport support */
8194 mpt2sas_raid_template = raid_class_attach(&mpt2sas_raid_functions);
8195 if (!mpt2sas_raid_template) {
8196 sas_release_transport(mpt2sas_transport_template);
8197 return -ENODEV;
8198 }
Eric Moore635374e2009-03-09 01:21:12 -06008199
8200 mpt2sas_base_initialize_callback_handler();
8201
8202 /* queuecommand callback hander */
Eric Moored5d135b2009-05-18 13:02:08 -06008203 scsi_io_cb_idx = mpt2sas_base_register_callback_handler(_scsih_io_done);
Eric Moore635374e2009-03-09 01:21:12 -06008204
Uwe Kleine-König65155b32010-06-11 12:17:01 +02008205 /* task management callback handler */
Eric Moored5d135b2009-05-18 13:02:08 -06008206 tm_cb_idx = mpt2sas_base_register_callback_handler(_scsih_tm_done);
Eric Moore635374e2009-03-09 01:21:12 -06008207
8208 /* base internal commands callback handler */
8209 base_cb_idx = mpt2sas_base_register_callback_handler(mpt2sas_base_done);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308210 port_enable_cb_idx = mpt2sas_base_register_callback_handler(
8211 mpt2sas_port_enable_done);
Eric Moore635374e2009-03-09 01:21:12 -06008212
8213 /* transport internal commands callback handler */
8214 transport_cb_idx = mpt2sas_base_register_callback_handler(
8215 mpt2sas_transport_done);
8216
Kashyap, Desai744090d2009-10-05 15:56:56 +05308217 /* scsih internal commands callback handler */
8218 scsih_cb_idx = mpt2sas_base_register_callback_handler(_scsih_done);
8219
Eric Moore635374e2009-03-09 01:21:12 -06008220 /* configuration page API internal commands callback handler */
8221 config_cb_idx = mpt2sas_base_register_callback_handler(
8222 mpt2sas_config_done);
8223
8224 /* ctl module callback handler */
8225 ctl_cb_idx = mpt2sas_base_register_callback_handler(mpt2sas_ctl_done);
8226
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308227 tm_tr_cb_idx = mpt2sas_base_register_callback_handler(
8228 _scsih_tm_tr_complete);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05308229
8230 tm_tr_volume_cb_idx = mpt2sas_base_register_callback_handler(
8231 _scsih_tm_volume_tr_complete);
8232
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308233 tm_sas_control_cb_idx = mpt2sas_base_register_callback_handler(
8234 _scsih_sas_control_complete);
8235
Eric Moore635374e2009-03-09 01:21:12 -06008236 mpt2sas_ctl_init();
8237
8238 error = pci_register_driver(&scsih_driver);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308239 if (error) {
8240 /* raid transport support */
8241 raid_class_release(mpt2sas_raid_template);
Eric Moore635374e2009-03-09 01:21:12 -06008242 sas_release_transport(mpt2sas_transport_template);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308243 }
Eric Moore635374e2009-03-09 01:21:12 -06008244
8245 return error;
8246}
8247
8248/**
Eric Moored5d135b2009-05-18 13:02:08 -06008249 * _scsih_exit - exit point for this driver (when it is a module).
Eric Moore635374e2009-03-09 01:21:12 -06008250 *
8251 * Returns 0 success, anything else error.
8252 */
8253static void __exit
Eric Moored5d135b2009-05-18 13:02:08 -06008254_scsih_exit(void)
Eric Moore635374e2009-03-09 01:21:12 -06008255{
8256 printk(KERN_INFO "mpt2sas version %s unloading\n",
8257 MPT2SAS_DRIVER_VERSION);
8258
8259 pci_unregister_driver(&scsih_driver);
8260
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308261 mpt2sas_ctl_exit();
8262
Eric Moore635374e2009-03-09 01:21:12 -06008263 mpt2sas_base_release_callback_handler(scsi_io_cb_idx);
8264 mpt2sas_base_release_callback_handler(tm_cb_idx);
8265 mpt2sas_base_release_callback_handler(base_cb_idx);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308266 mpt2sas_base_release_callback_handler(port_enable_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06008267 mpt2sas_base_release_callback_handler(transport_cb_idx);
Kashyap, Desai744090d2009-10-05 15:56:56 +05308268 mpt2sas_base_release_callback_handler(scsih_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06008269 mpt2sas_base_release_callback_handler(config_cb_idx);
8270 mpt2sas_base_release_callback_handler(ctl_cb_idx);
8271
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308272 mpt2sas_base_release_callback_handler(tm_tr_cb_idx);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05308273 mpt2sas_base_release_callback_handler(tm_tr_volume_cb_idx);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308274 mpt2sas_base_release_callback_handler(tm_sas_control_cb_idx);
8275
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308276 /* raid transport support */
8277 raid_class_release(mpt2sas_raid_template);
8278 sas_release_transport(mpt2sas_transport_template);
8279
Eric Moore635374e2009-03-09 01:21:12 -06008280}
8281
Eric Moored5d135b2009-05-18 13:02:08 -06008282module_init(_scsih_init);
8283module_exit(_scsih_exit);