blob: 389d79290861602ea6da7de90c57901e6cb561ec [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
sreekanth.reddy@lsi.com433d7172012-07-17 15:56:03 +05305 * Copyright (C) 2007-2012 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);
nagalakshmi.nandigama@lsi.com9ac49d32011-12-01 07:52:08 +0530102MODULE_PARM_DESC(max_sectors, "max sectors, range 64 to 32767 default=32767");
Kashyap, Desaia3e1e552011-06-14 10:56:12 +0530103
Reddy, Sreekanthb0df96a02013-02-26 16:59:59 +0530104static int missing_delay[2] = {-1, -1};
105module_param_array(missing_delay, int, NULL, 0);
106MODULE_PARM_DESC(missing_delay, " device missing delay , io missing delay");
107
Eric Moore635374e2009-03-09 01:21:12 -0600108/* scsi-mid layer global parmeter is max_report_luns, which is 511 */
109#define MPT2SAS_MAX_LUN (16895)
110static int max_lun = MPT2SAS_MAX_LUN;
111module_param(max_lun, int, 0);
112MODULE_PARM_DESC(max_lun, " max lun, default=16895 ");
113
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530114/* diag_buffer_enable is bitwise
115 * bit 0 set = TRACE
116 * bit 1 set = SNAPSHOT
117 * bit 2 set = EXTENDED
118 *
119 * Either bit can be set, or both
120 */
121static int diag_buffer_enable = -1;
122module_param(diag_buffer_enable, int, 0);
123MODULE_PARM_DESC(diag_buffer_enable, " post diag buffers "
124 "(TRACE=1/SNAPSHOT=2/EXTENDED=4/default=0)");
125
sreekanth.reddy@lsi.com4b193172012-07-17 15:56:12 +0530126static int disable_discovery = -1;
127module_param(disable_discovery, int, 0);
128MODULE_PARM_DESC(disable_discovery, " disable discovery ");
129
Martin K. Petersen5e95e732012-08-28 14:29:37 -0400130/* permit overriding the host protection capabilities mask (EEDP/T10 PI) */
131static int prot_mask = 0;
132module_param(prot_mask, int, 0);
133MODULE_PARM_DESC(prot_mask, " host protection capabilities mask, def=7 ");
134
Eric Moore635374e2009-03-09 01:21:12 -0600135/**
136 * struct sense_info - common structure for obtaining sense keys
137 * @skey: sense key
138 * @asc: additional sense code
139 * @ascq: additional sense code qualifier
140 */
141struct sense_info {
142 u8 skey;
143 u8 asc;
144 u8 ascq;
145};
146
147
Kashyap, Desai3ace8e02011-05-04 16:35:58 +0530148#define MPT2SAS_TURN_ON_FAULT_LED (0xFFFC)
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530149#define MPT2SAS_PORT_ENABLE_COMPLETE (0xFFFD)
150#define MPT2SAS_REMOVE_UNRESPONDING_DEVICES (0xFFFF)
Eric Moore635374e2009-03-09 01:21:12 -0600151/**
152 * struct fw_event_work - firmware event struct
153 * @list: link list framework
154 * @work: work object (ioc->fault_reset_work_q)
Kashyap, Desaif1c35e62010-03-09 16:31:43 +0530155 * @cancel_pending_work: flag set during reset handling
Eric Moore635374e2009-03-09 01:21:12 -0600156 * @ioc: per adapter object
Kashyap, Desai3ace8e02011-05-04 16:35:58 +0530157 * @device_handle: device handle
Eric Moore635374e2009-03-09 01:21:12 -0600158 * @VF_ID: virtual function id
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530159 * @VP_ID: virtual port id
Eric Moore635374e2009-03-09 01:21:12 -0600160 * @ignore: flag meaning this event has been marked to ignore
161 * @event: firmware event MPI2_EVENT_XXX defined in mpt2_ioc.h
162 * @event_data: reply event data payload follows
163 *
164 * This object stored on ioc->fw_event_list.
165 */
166struct fw_event_work {
167 struct list_head list;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +0530168 u8 cancel_pending_work;
169 struct delayed_work delayed_work;
Eric Moore635374e2009-03-09 01:21:12 -0600170 struct MPT2SAS_ADAPTER *ioc;
Kashyap, Desai3ace8e02011-05-04 16:35:58 +0530171 u16 device_handle;
Eric Moore635374e2009-03-09 01:21:12 -0600172 u8 VF_ID;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530173 u8 VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -0600174 u8 ignore;
175 u16 event;
176 void *event_data;
177};
178
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +0530179/* raid transport support */
180static struct raid_template *mpt2sas_raid_template;
181
Eric Moore635374e2009-03-09 01:21:12 -0600182/**
183 * struct _scsi_io_transfer - scsi io transfer
184 * @handle: sas device handle (assigned by firmware)
185 * @is_raid: flag set for hidden raid components
186 * @dir: DMA_TO_DEVICE, DMA_FROM_DEVICE,
187 * @data_length: data transfer length
188 * @data_dma: dma pointer to data
189 * @sense: sense data
190 * @lun: lun number
191 * @cdb_length: cdb length
192 * @cdb: cdb contents
Eric Moore635374e2009-03-09 01:21:12 -0600193 * @timeout: timeout for this command
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530194 * @VF_ID: virtual function id
195 * @VP_ID: virtual port id
196 * @valid_reply: flag set for reply message
Eric Moore635374e2009-03-09 01:21:12 -0600197 * @sense_length: sense length
198 * @ioc_status: ioc status
199 * @scsi_state: scsi state
200 * @scsi_status: scsi staus
201 * @log_info: log information
202 * @transfer_length: data length transfer when there is a reply message
203 *
204 * Used for sending internal scsi commands to devices within this module.
205 * Refer to _scsi_send_scsi_io().
206 */
207struct _scsi_io_transfer {
208 u16 handle;
209 u8 is_raid;
210 enum dma_data_direction dir;
211 u32 data_length;
212 dma_addr_t data_dma;
213 u8 sense[SCSI_SENSE_BUFFERSIZE];
214 u32 lun;
215 u8 cdb_length;
216 u8 cdb[32];
217 u8 timeout;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530218 u8 VF_ID;
219 u8 VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -0600220 u8 valid_reply;
221 /* the following bits are only valid when 'valid_reply = 1' */
222 u32 sense_length;
223 u16 ioc_status;
224 u8 scsi_state;
225 u8 scsi_status;
226 u32 log_info;
227 u32 transfer_length;
228};
229
230/*
231 * The pci device ids are defined in mpi/mpi2_cnfg.h.
232 */
233static struct pci_device_id scsih_pci_table[] = {
234 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2004,
235 PCI_ANY_ID, PCI_ANY_ID },
236 /* Falcon ~ 2008*/
237 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2008,
238 PCI_ANY_ID, PCI_ANY_ID },
239 /* Liberator ~ 2108 */
240 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_1,
241 PCI_ANY_ID, PCI_ANY_ID },
242 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_2,
243 PCI_ANY_ID, PCI_ANY_ID },
244 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2108_3,
245 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desaidb271362009-09-23 17:24:27 +0530246 /* Meteor ~ 2116 */
Eric Moore635374e2009-03-09 01:21:12 -0600247 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2116_1,
248 PCI_ANY_ID, PCI_ANY_ID },
249 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2116_2,
250 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desaidb271362009-09-23 17:24:27 +0530251 /* Thunderbolt ~ 2208 */
252 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_1,
253 PCI_ANY_ID, PCI_ANY_ID },
254 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_2,
255 PCI_ANY_ID, PCI_ANY_ID },
256 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_3,
257 PCI_ANY_ID, PCI_ANY_ID },
258 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_4,
259 PCI_ANY_ID, PCI_ANY_ID },
260 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_5,
261 PCI_ANY_ID, PCI_ANY_ID },
262 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2208_6,
263 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desai203d65b2010-06-17 13:37:59 +0530264 /* Mustang ~ 2308 */
265 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2308_1,
Kashyap, Desaidb271362009-09-23 17:24:27 +0530266 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desai203d65b2010-06-17 13:37:59 +0530267 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2308_2,
268 PCI_ANY_ID, PCI_ANY_ID },
269 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SAS2308_3,
Kashyap, Desaidb271362009-09-23 17:24:27 +0530270 PCI_ANY_ID, PCI_ANY_ID },
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530271 /* SSS6200 */
272 { MPI2_MFGPAGE_VENDORID_LSI, MPI2_MFGPAGE_DEVID_SSS6200,
273 PCI_ANY_ID, PCI_ANY_ID },
Eric Moore635374e2009-03-09 01:21:12 -0600274 {0} /* Terminating entry */
275};
276MODULE_DEVICE_TABLE(pci, scsih_pci_table);
277
278/**
Eric Moored5d135b2009-05-18 13:02:08 -0600279 * _scsih_set_debug_level - global setting of ioc->logging_level.
Eric Moore635374e2009-03-09 01:21:12 -0600280 *
281 * Note: The logging levels are defined in mpt2sas_debug.h.
282 */
283static int
Eric Moored5d135b2009-05-18 13:02:08 -0600284_scsih_set_debug_level(const char *val, struct kernel_param *kp)
Eric Moore635374e2009-03-09 01:21:12 -0600285{
286 int ret = param_set_int(val, kp);
287 struct MPT2SAS_ADAPTER *ioc;
288
289 if (ret)
290 return ret;
291
292 printk(KERN_INFO "setting logging_level(0x%08x)\n", logging_level);
Eric Mooreba33fad2009-03-15 21:37:18 -0600293 list_for_each_entry(ioc, &mpt2sas_ioc_list, list)
Eric Moore635374e2009-03-09 01:21:12 -0600294 ioc->logging_level = logging_level;
295 return 0;
296}
Eric Moored5d135b2009-05-18 13:02:08 -0600297module_param_call(logging_level, _scsih_set_debug_level, param_get_int,
Eric Moore635374e2009-03-09 01:21:12 -0600298 &logging_level, 0644);
299
300/**
301 * _scsih_srch_boot_sas_address - search based on sas_address
302 * @sas_address: sas address
303 * @boot_device: boot device object from bios page 2
304 *
305 * Returns 1 when there's a match, 0 means no match.
306 */
307static inline int
308_scsih_srch_boot_sas_address(u64 sas_address,
309 Mpi2BootDeviceSasWwid_t *boot_device)
310{
311 return (sas_address == le64_to_cpu(boot_device->SASAddress)) ? 1 : 0;
312}
313
314/**
315 * _scsih_srch_boot_device_name - search based on device name
316 * @device_name: device name specified in INDENTIFY fram
317 * @boot_device: boot device object from bios page 2
318 *
319 * Returns 1 when there's a match, 0 means no match.
320 */
321static inline int
322_scsih_srch_boot_device_name(u64 device_name,
323 Mpi2BootDeviceDeviceName_t *boot_device)
324{
325 return (device_name == le64_to_cpu(boot_device->DeviceName)) ? 1 : 0;
326}
327
328/**
329 * _scsih_srch_boot_encl_slot - search based on enclosure_logical_id/slot
330 * @enclosure_logical_id: enclosure logical id
331 * @slot_number: slot number
332 * @boot_device: boot device object from bios page 2
333 *
334 * Returns 1 when there's a match, 0 means no match.
335 */
336static inline int
337_scsih_srch_boot_encl_slot(u64 enclosure_logical_id, u16 slot_number,
338 Mpi2BootDeviceEnclosureSlot_t *boot_device)
339{
340 return (enclosure_logical_id == le64_to_cpu(boot_device->
341 EnclosureLogicalID) && slot_number == le16_to_cpu(boot_device->
342 SlotNumber)) ? 1 : 0;
343}
344
345/**
346 * _scsih_is_boot_device - search for matching boot device.
347 * @sas_address: sas address
348 * @device_name: device name specified in INDENTIFY fram
349 * @enclosure_logical_id: enclosure logical id
350 * @slot_number: slot number
351 * @form: specifies boot device form
352 * @boot_device: boot device object from bios page 2
353 *
354 * Returns 1 when there's a match, 0 means no match.
355 */
356static int
357_scsih_is_boot_device(u64 sas_address, u64 device_name,
358 u64 enclosure_logical_id, u16 slot, u8 form,
359 Mpi2BiosPage2BootDevice_t *boot_device)
360{
361 int rc = 0;
362
363 switch (form) {
364 case MPI2_BIOSPAGE2_FORM_SAS_WWID:
365 if (!sas_address)
366 break;
367 rc = _scsih_srch_boot_sas_address(
368 sas_address, &boot_device->SasWwid);
369 break;
370 case MPI2_BIOSPAGE2_FORM_ENCLOSURE_SLOT:
371 if (!enclosure_logical_id)
372 break;
373 rc = _scsih_srch_boot_encl_slot(
374 enclosure_logical_id,
375 slot, &boot_device->EnclosureSlot);
376 break;
377 case MPI2_BIOSPAGE2_FORM_DEVICE_NAME:
378 if (!device_name)
379 break;
380 rc = _scsih_srch_boot_device_name(
381 device_name, &boot_device->DeviceName);
382 break;
383 case MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED:
384 break;
385 }
386
387 return rc;
388}
389
390/**
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530391 * _scsih_get_sas_address - set the sas_address for given device handle
392 * @handle: device handle
393 * @sas_address: sas address
394 *
395 * Returns 0 success, non-zero when failure
396 */
397static int
398_scsih_get_sas_address(struct MPT2SAS_ADAPTER *ioc, u16 handle,
399 u64 *sas_address)
400{
401 Mpi2SasDevicePage0_t sas_device_pg0;
402 Mpi2ConfigReply_t mpi_reply;
403 u32 ioc_status;
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530404 *sas_address = 0;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530405
406 if (handle <= ioc->sas_hba.num_phys) {
407 *sas_address = ioc->sas_hba.sas_address;
408 return 0;
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530409 }
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530410
411 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
412 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530413 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n", ioc->name,
414 __FILE__, __LINE__, __func__);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530415 return -ENXIO;
416 }
417
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530418 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
419 if (ioc_status == MPI2_IOCSTATUS_SUCCESS) {
420 *sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
421 return 0;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530422 }
423
nagalakshmi.nandigama@lsi.com24f09b52011-10-19 15:36:47 +0530424 /* we hit this becuase the given parent handle doesn't exist */
425 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
426 return -ENXIO;
427 /* else error case */
428 printk(MPT2SAS_ERR_FMT "handle(0x%04x), ioc_status(0x%04x), "
429 "failure at %s:%d/%s()!\n", ioc->name, handle, ioc_status,
430 __FILE__, __LINE__, __func__);
431 return -EIO;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530432}
433
434/**
Eric Moore635374e2009-03-09 01:21:12 -0600435 * _scsih_determine_boot_device - determine boot device.
436 * @ioc: per adapter object
437 * @device: either sas_device or raid_device object
438 * @is_raid: [flag] 1 = raid object, 0 = sas object
439 *
440 * Determines whether this device should be first reported device to
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300441 * to scsi-ml or sas transport, this purpose is for persistent boot device.
Eric Moore635374e2009-03-09 01:21:12 -0600442 * There are primary, alternate, and current entries in bios page 2. The order
443 * priority is primary, alternate, then current. This routine saves
444 * the corresponding device object and is_raid flag in the ioc object.
445 * The saved data to be used later in _scsih_probe_boot_devices().
446 */
447static void
448_scsih_determine_boot_device(struct MPT2SAS_ADAPTER *ioc,
449 void *device, u8 is_raid)
450{
451 struct _sas_device *sas_device;
452 struct _raid_device *raid_device;
453 u64 sas_address;
454 u64 device_name;
455 u64 enclosure_logical_id;
456 u16 slot;
457
458 /* only process this function when driver loads */
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530459 if (!ioc->is_driver_loading)
460 return;
461
462 /* no Bios, return immediately */
463 if (!ioc->bios_pg3.BiosVersion)
Eric Moore635374e2009-03-09 01:21:12 -0600464 return;
465
466 if (!is_raid) {
467 sas_device = device;
468 sas_address = sas_device->sas_address;
469 device_name = sas_device->device_name;
470 enclosure_logical_id = sas_device->enclosure_logical_id;
471 slot = sas_device->slot;
472 } else {
473 raid_device = device;
474 sas_address = raid_device->wwid;
475 device_name = 0;
476 enclosure_logical_id = 0;
477 slot = 0;
478 }
479
480 if (!ioc->req_boot_device.device) {
481 if (_scsih_is_boot_device(sas_address, device_name,
482 enclosure_logical_id, slot,
483 (ioc->bios_pg2.ReqBootDeviceForm &
484 MPI2_BIOSPAGE2_FORM_MASK),
485 &ioc->bios_pg2.RequestedBootDevice)) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530486 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -0600487 "%s: req_boot_device(0x%016llx)\n",
488 ioc->name, __func__,
489 (unsigned long long)sas_address));
490 ioc->req_boot_device.device = device;
491 ioc->req_boot_device.is_raid = is_raid;
492 }
493 }
494
495 if (!ioc->req_alt_boot_device.device) {
496 if (_scsih_is_boot_device(sas_address, device_name,
497 enclosure_logical_id, slot,
498 (ioc->bios_pg2.ReqAltBootDeviceForm &
499 MPI2_BIOSPAGE2_FORM_MASK),
500 &ioc->bios_pg2.RequestedAltBootDevice)) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530501 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -0600502 "%s: req_alt_boot_device(0x%016llx)\n",
503 ioc->name, __func__,
504 (unsigned long long)sas_address));
505 ioc->req_alt_boot_device.device = device;
506 ioc->req_alt_boot_device.is_raid = is_raid;
507 }
508 }
509
510 if (!ioc->current_boot_device.device) {
511 if (_scsih_is_boot_device(sas_address, device_name,
512 enclosure_logical_id, slot,
513 (ioc->bios_pg2.CurrentBootDeviceForm &
514 MPI2_BIOSPAGE2_FORM_MASK),
515 &ioc->bios_pg2.CurrentBootDevice)) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530516 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -0600517 "%s: current_boot_device(0x%016llx)\n",
518 ioc->name, __func__,
519 (unsigned long long)sas_address));
520 ioc->current_boot_device.device = device;
521 ioc->current_boot_device.is_raid = is_raid;
522 }
523 }
524}
525
526/**
527 * mpt2sas_scsih_sas_device_find_by_sas_address - sas device search
528 * @ioc: per adapter object
529 * @sas_address: sas address
530 * Context: Calling function should acquire ioc->sas_device_lock
531 *
532 * This searches for sas_device based on sas_address, then return sas_device
533 * object.
534 */
535struct _sas_device *
536mpt2sas_scsih_sas_device_find_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
537 u64 sas_address)
538{
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530539 struct _sas_device *sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600540
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530541 list_for_each_entry(sas_device, &ioc->sas_device_list, list)
542 if (sas_device->sas_address == sas_address)
543 return sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600544
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530545 list_for_each_entry(sas_device, &ioc->sas_device_init_list, list)
546 if (sas_device->sas_address == sas_address)
547 return sas_device;
548
549 return NULL;
Eric Moore635374e2009-03-09 01:21:12 -0600550}
551
552/**
553 * _scsih_sas_device_find_by_handle - sas device search
554 * @ioc: per adapter object
555 * @handle: sas device handle (assigned by firmware)
556 * Context: Calling function should acquire ioc->sas_device_lock
557 *
558 * This searches for sas_device based on sas_address, then return sas_device
559 * object.
560 */
561static struct _sas_device *
562_scsih_sas_device_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
563{
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530564 struct _sas_device *sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600565
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530566 list_for_each_entry(sas_device, &ioc->sas_device_list, list)
567 if (sas_device->handle == handle)
568 return sas_device;
Eric Moore635374e2009-03-09 01:21:12 -0600569
Kashyap, Desaicd9843f2010-03-09 16:32:17 +0530570 list_for_each_entry(sas_device, &ioc->sas_device_init_list, list)
571 if (sas_device->handle == handle)
572 return sas_device;
573
574 return NULL;
Eric Moore635374e2009-03-09 01:21:12 -0600575}
576
577/**
578 * _scsih_sas_device_remove - remove sas_device from list.
579 * @ioc: per adapter object
580 * @sas_device: the sas_device object
581 * Context: This function will acquire ioc->sas_device_lock.
582 *
583 * Removing object and freeing associated memory from the ioc->sas_device_list.
584 */
585static void
586_scsih_sas_device_remove(struct MPT2SAS_ADAPTER *ioc,
587 struct _sas_device *sas_device)
588{
589 unsigned long flags;
590
Kashyap, Desai980ead32010-04-08 17:55:22 +0530591 if (!sas_device)
592 return;
593
Eric Moore635374e2009-03-09 01:21:12 -0600594 spin_lock_irqsave(&ioc->sas_device_lock, flags);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +0530595 list_del(&sas_device->list);
596 kfree(sas_device);
Eric Moore635374e2009-03-09 01:21:12 -0600597 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
598}
599
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +0530600
Eric Moore635374e2009-03-09 01:21:12 -0600601/**
602 * _scsih_sas_device_add - insert sas_device to the list.
603 * @ioc: per adapter object
604 * @sas_device: the sas_device object
605 * Context: This function will acquire ioc->sas_device_lock.
606 *
607 * Adding new object to the ioc->sas_device_list.
608 */
609static void
610_scsih_sas_device_add(struct MPT2SAS_ADAPTER *ioc,
611 struct _sas_device *sas_device)
612{
613 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -0600614
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530615 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle"
Eric Moore635374e2009-03-09 01:21:12 -0600616 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
617 sas_device->handle, (unsigned long long)sas_device->sas_address));
618
619 spin_lock_irqsave(&ioc->sas_device_lock, flags);
620 list_add_tail(&sas_device->list, &ioc->sas_device_list);
621 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
622
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530623 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
nagalakshmi.nandigama@lsi.com35116db2011-10-21 10:08:07 +0530624 sas_device->sas_address_parent)) {
Eric Moore635374e2009-03-09 01:21:12 -0600625 _scsih_sas_device_remove(ioc, sas_device);
nagalakshmi.nandigama@lsi.com23edb6e2011-12-01 07:43:50 +0530626 } else if (!sas_device->starget) {
627 /* When asyn scanning is enabled, its not possible to remove
628 * devices while scanning is turned on due to an oops in
629 * scsi_sysfs_add_sdev()->add_device()->sysfs_addrm_start()
630 */
631 if (!ioc->is_driver_loading)
632 mpt2sas_transport_port_remove(ioc,
633 sas_device->sas_address,
634 sas_device->sas_address_parent);
635 _scsih_sas_device_remove(ioc, sas_device);
636 }
Eric Moore635374e2009-03-09 01:21:12 -0600637}
638
639/**
640 * _scsih_sas_device_init_add - insert sas_device to the list.
641 * @ioc: per adapter object
642 * @sas_device: the sas_device object
643 * Context: This function will acquire ioc->sas_device_lock.
644 *
645 * Adding new object at driver load time to the ioc->sas_device_init_list.
646 */
647static void
648_scsih_sas_device_init_add(struct MPT2SAS_ADAPTER *ioc,
649 struct _sas_device *sas_device)
650{
651 unsigned long flags;
652
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530653 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle"
Eric Moore635374e2009-03-09 01:21:12 -0600654 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
655 sas_device->handle, (unsigned long long)sas_device->sas_address));
656
657 spin_lock_irqsave(&ioc->sas_device_lock, flags);
658 list_add_tail(&sas_device->list, &ioc->sas_device_init_list);
Eric Moore635374e2009-03-09 01:21:12 -0600659 _scsih_determine_boot_device(ioc, sas_device, 0);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +0530660 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -0600661}
662
663/**
Eric Moore635374e2009-03-09 01:21:12 -0600664 * _scsih_raid_device_find_by_id - raid device search
665 * @ioc: per adapter object
666 * @id: sas device target id
667 * @channel: sas device channel
668 * Context: Calling function should acquire ioc->raid_device_lock
669 *
670 * This searches for raid_device based on target id, then return raid_device
671 * object.
672 */
673static struct _raid_device *
674_scsih_raid_device_find_by_id(struct MPT2SAS_ADAPTER *ioc, int id, int channel)
675{
676 struct _raid_device *raid_device, *r;
677
678 r = NULL;
679 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
680 if (raid_device->id == id && raid_device->channel == channel) {
681 r = raid_device;
682 goto out;
683 }
684 }
685
686 out:
687 return r;
688}
689
690/**
691 * _scsih_raid_device_find_by_handle - raid device search
692 * @ioc: per adapter object
693 * @handle: sas device handle (assigned by firmware)
694 * Context: Calling function should acquire ioc->raid_device_lock
695 *
696 * This searches for raid_device based on handle, then return raid_device
697 * object.
698 */
699static struct _raid_device *
700_scsih_raid_device_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
701{
702 struct _raid_device *raid_device, *r;
703
704 r = NULL;
705 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
706 if (raid_device->handle != handle)
707 continue;
708 r = raid_device;
709 goto out;
710 }
711
712 out:
713 return r;
714}
715
716/**
717 * _scsih_raid_device_find_by_wwid - raid device search
718 * @ioc: per adapter object
719 * @handle: sas device handle (assigned by firmware)
720 * Context: Calling function should acquire ioc->raid_device_lock
721 *
722 * This searches for raid_device based on wwid, then return raid_device
723 * object.
724 */
725static struct _raid_device *
726_scsih_raid_device_find_by_wwid(struct MPT2SAS_ADAPTER *ioc, u64 wwid)
727{
728 struct _raid_device *raid_device, *r;
729
730 r = NULL;
731 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
732 if (raid_device->wwid != wwid)
733 continue;
734 r = raid_device;
735 goto out;
736 }
737
738 out:
739 return r;
740}
741
742/**
743 * _scsih_raid_device_add - add raid_device object
744 * @ioc: per adapter object
745 * @raid_device: raid_device object
746 *
747 * This is added to the raid_device_list link list.
748 */
749static void
750_scsih_raid_device_add(struct MPT2SAS_ADAPTER *ioc,
751 struct _raid_device *raid_device)
752{
753 unsigned long flags;
754
Kashyap, Desaieabb08a2010-06-17 13:43:57 +0530755 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle"
Eric Moore635374e2009-03-09 01:21:12 -0600756 "(0x%04x), wwid(0x%016llx)\n", ioc->name, __func__,
757 raid_device->handle, (unsigned long long)raid_device->wwid));
758
759 spin_lock_irqsave(&ioc->raid_device_lock, flags);
760 list_add_tail(&raid_device->list, &ioc->raid_device_list);
761 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
762}
763
764/**
765 * _scsih_raid_device_remove - delete raid_device object
766 * @ioc: per adapter object
767 * @raid_device: raid_device object
768 *
Eric Moore635374e2009-03-09 01:21:12 -0600769 */
770static void
771_scsih_raid_device_remove(struct MPT2SAS_ADAPTER *ioc,
772 struct _raid_device *raid_device)
773{
774 unsigned long flags;
775
776 spin_lock_irqsave(&ioc->raid_device_lock, flags);
777 list_del(&raid_device->list);
Eric Moore635374e2009-03-09 01:21:12 -0600778 kfree(raid_device);
779 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
780}
781
782/**
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530783 * mpt2sas_scsih_expander_find_by_handle - expander device search
784 * @ioc: per adapter object
785 * @handle: expander handle (assigned by firmware)
786 * Context: Calling function should acquire ioc->sas_device_lock
787 *
788 * This searches for expander device based on handle, then returns the
789 * sas_node object.
790 */
791struct _sas_node *
792mpt2sas_scsih_expander_find_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
793{
794 struct _sas_node *sas_expander, *r;
795
796 r = NULL;
797 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
798 if (sas_expander->handle != handle)
799 continue;
800 r = sas_expander;
801 goto out;
802 }
803 out:
804 return r;
805}
806
807/**
Eric Moore635374e2009-03-09 01:21:12 -0600808 * mpt2sas_scsih_expander_find_by_sas_address - expander device search
809 * @ioc: per adapter object
810 * @sas_address: sas address
811 * Context: Calling function should acquire ioc->sas_node_lock.
812 *
813 * This searches for expander device based on sas_address, then returns the
814 * sas_node object.
815 */
816struct _sas_node *
817mpt2sas_scsih_expander_find_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
818 u64 sas_address)
819{
820 struct _sas_node *sas_expander, *r;
821
822 r = NULL;
823 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
824 if (sas_expander->sas_address != sas_address)
825 continue;
826 r = sas_expander;
827 goto out;
828 }
829 out:
830 return r;
831}
832
833/**
834 * _scsih_expander_node_add - insert expander device to the list.
835 * @ioc: per adapter object
836 * @sas_expander: the sas_device object
837 * Context: This function will acquire ioc->sas_node_lock.
838 *
839 * Adding new object to the ioc->sas_expander_list.
840 *
841 * Return nothing.
842 */
843static void
844_scsih_expander_node_add(struct MPT2SAS_ADAPTER *ioc,
845 struct _sas_node *sas_expander)
846{
847 unsigned long flags;
848
849 spin_lock_irqsave(&ioc->sas_node_lock, flags);
850 list_add_tail(&sas_expander->list, &ioc->sas_expander_list);
851 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
852}
853
854/**
855 * _scsih_is_end_device - determines if device is an end device
856 * @device_info: bitfield providing information about the device.
857 * Context: none
858 *
859 * Returns 1 if end device.
860 */
861static int
862_scsih_is_end_device(u32 device_info)
863{
864 if (device_info & MPI2_SAS_DEVICE_INFO_END_DEVICE &&
865 ((device_info & MPI2_SAS_DEVICE_INFO_SSP_TARGET) |
866 (device_info & MPI2_SAS_DEVICE_INFO_STP_TARGET) |
867 (device_info & MPI2_SAS_DEVICE_INFO_SATA_DEVICE)))
868 return 1;
869 else
870 return 0;
871}
872
873/**
Kashyap, Desaiec07a052011-01-05 17:54:32 +0530874 * _scsih_scsi_lookup_get - returns scmd entry
Eric Moore635374e2009-03-09 01:21:12 -0600875 * @ioc: per adapter object
876 * @smid: system request message index
Eric Moore635374e2009-03-09 01:21:12 -0600877 *
878 * Returns the smid stored scmd pointer.
879 */
880static struct scsi_cmnd *
881_scsih_scsi_lookup_get(struct MPT2SAS_ADAPTER *ioc, u16 smid)
882{
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530883 return ioc->scsi_lookup[smid - 1].scmd;
Eric Moore635374e2009-03-09 01:21:12 -0600884}
885
886/**
Kashyap, Desaiec07a052011-01-05 17:54:32 +0530887 * _scsih_scsi_lookup_get_clear - returns scmd entry
888 * @ioc: per adapter object
889 * @smid: system request message index
890 *
891 * Returns the smid stored scmd pointer.
892 * Then will derefrence the stored scmd pointer.
893 */
894static inline struct scsi_cmnd *
895_scsih_scsi_lookup_get_clear(struct MPT2SAS_ADAPTER *ioc, u16 smid)
896{
897 unsigned long flags;
898 struct scsi_cmnd *scmd;
899
900 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
901 scmd = ioc->scsi_lookup[smid - 1].scmd;
902 ioc->scsi_lookup[smid - 1].scmd = NULL;
903 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
904
905 return scmd;
906}
907
908/**
Eric Moore635374e2009-03-09 01:21:12 -0600909 * _scsih_scsi_lookup_find_by_scmd - scmd lookup
910 * @ioc: per adapter object
911 * @smid: system request message index
912 * @scmd: pointer to scsi command object
913 * Context: This function will acquire ioc->scsi_lookup_lock.
914 *
915 * This will search for a scmd pointer in the scsi_lookup array,
916 * returning the revelent smid. A returned value of zero means invalid.
917 */
918static u16
919_scsih_scsi_lookup_find_by_scmd(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd
920 *scmd)
921{
922 u16 smid;
923 unsigned long flags;
924 int i;
925
926 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
927 smid = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530928 for (i = 0; i < ioc->scsiio_depth; i++) {
Eric Moore635374e2009-03-09 01:21:12 -0600929 if (ioc->scsi_lookup[i].scmd == scmd) {
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530930 smid = ioc->scsi_lookup[i].smid;
Eric Moore635374e2009-03-09 01:21:12 -0600931 goto out;
932 }
933 }
934 out:
935 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
936 return smid;
937}
938
939/**
940 * _scsih_scsi_lookup_find_by_target - search for matching channel:id
941 * @ioc: per adapter object
942 * @id: target id
943 * @channel: channel
944 * Context: This function will acquire ioc->scsi_lookup_lock.
945 *
946 * This will search for a matching channel:id in the scsi_lookup array,
947 * returning 1 if found.
948 */
949static u8
950_scsih_scsi_lookup_find_by_target(struct MPT2SAS_ADAPTER *ioc, int id,
951 int channel)
952{
953 u8 found;
954 unsigned long flags;
955 int i;
956
957 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
958 found = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530959 for (i = 0 ; i < ioc->scsiio_depth; i++) {
Eric Moore635374e2009-03-09 01:21:12 -0600960 if (ioc->scsi_lookup[i].scmd &&
961 (ioc->scsi_lookup[i].scmd->device->id == id &&
962 ioc->scsi_lookup[i].scmd->device->channel == channel)) {
963 found = 1;
964 goto out;
965 }
966 }
967 out:
968 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
969 return found;
970}
971
972/**
Eric Moore993e0da2009-05-18 13:00:45 -0600973 * _scsih_scsi_lookup_find_by_lun - search for matching channel:id:lun
974 * @ioc: per adapter object
975 * @id: target id
976 * @lun: lun number
977 * @channel: channel
978 * Context: This function will acquire ioc->scsi_lookup_lock.
979 *
980 * This will search for a matching channel:id:lun in the scsi_lookup array,
981 * returning 1 if found.
982 */
983static u8
984_scsih_scsi_lookup_find_by_lun(struct MPT2SAS_ADAPTER *ioc, int id,
985 unsigned int lun, int channel)
986{
987 u8 found;
988 unsigned long flags;
989 int i;
990
991 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
992 found = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530993 for (i = 0 ; i < ioc->scsiio_depth; i++) {
Eric Moore993e0da2009-05-18 13:00:45 -0600994 if (ioc->scsi_lookup[i].scmd &&
995 (ioc->scsi_lookup[i].scmd->device->id == id &&
996 ioc->scsi_lookup[i].scmd->device->channel == channel &&
997 ioc->scsi_lookup[i].scmd->device->lun == lun)) {
998 found = 1;
999 goto out;
1000 }
1001 }
1002 out:
1003 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1004 return found;
1005}
1006
1007/**
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301008 * _scsih_get_chain_buffer_tracker - obtain chain tracker
Eric Moore635374e2009-03-09 01:21:12 -06001009 * @ioc: per adapter object
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301010 * @smid: smid associated to an IO request
Eric Moore635374e2009-03-09 01:21:12 -06001011 *
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301012 * Returns chain tracker(from ioc->free_chain_list)
Eric Moore635374e2009-03-09 01:21:12 -06001013 */
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301014static struct chain_tracker *
1015_scsih_get_chain_buffer_tracker(struct MPT2SAS_ADAPTER *ioc, u16 smid)
Eric Moore635374e2009-03-09 01:21:12 -06001016{
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301017 struct chain_tracker *chain_req;
1018 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06001019
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301020 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1021 if (list_empty(&ioc->free_chain_list)) {
1022 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
nagalakshmi.nandigama@lsi.comaff132d2011-12-01 07:53:08 +05301023 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT "chain buffers not "
1024 "available\n", ioc->name));
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301025 return NULL;
1026 }
1027 chain_req = list_entry(ioc->free_chain_list.next,
1028 struct chain_tracker, tracker_list);
1029 list_del_init(&chain_req->tracker_list);
1030 list_add_tail(&chain_req->tracker_list,
1031 &ioc->scsi_lookup[smid - 1].chain_list);
1032 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1033 return chain_req;
Eric Moore635374e2009-03-09 01:21:12 -06001034}
1035
1036/**
1037 * _scsih_build_scatter_gather - main sg creation routine
1038 * @ioc: per adapter object
1039 * @scmd: scsi command
1040 * @smid: system request message index
1041 * Context: none.
1042 *
1043 * The main routine that builds scatter gather table from a given
1044 * scsi request sent via the .queuecommand main handler.
1045 *
1046 * Returns 0 success, anything else error
1047 */
1048static int
1049_scsih_build_scatter_gather(struct MPT2SAS_ADAPTER *ioc,
1050 struct scsi_cmnd *scmd, u16 smid)
1051{
1052 Mpi2SCSIIORequest_t *mpi_request;
1053 dma_addr_t chain_dma;
1054 struct scatterlist *sg_scmd;
1055 void *sg_local, *chain;
1056 u32 chain_offset;
1057 u32 chain_length;
1058 u32 chain_flags;
FUJITA Tomonoribb789d02010-03-09 11:09:50 +09001059 int sges_left;
Eric Moore635374e2009-03-09 01:21:12 -06001060 u32 sges_in_segment;
1061 u32 sgl_flags;
1062 u32 sgl_flags_last_element;
1063 u32 sgl_flags_end_buffer;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301064 struct chain_tracker *chain_req;
Eric Moore635374e2009-03-09 01:21:12 -06001065
1066 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
1067
1068 /* init scatter gather flags */
1069 sgl_flags = MPI2_SGE_FLAGS_SIMPLE_ELEMENT;
1070 if (scmd->sc_data_direction == DMA_TO_DEVICE)
1071 sgl_flags |= MPI2_SGE_FLAGS_HOST_TO_IOC;
1072 sgl_flags_last_element = (sgl_flags | MPI2_SGE_FLAGS_LAST_ELEMENT)
1073 << MPI2_SGE_FLAGS_SHIFT;
1074 sgl_flags_end_buffer = (sgl_flags | MPI2_SGE_FLAGS_LAST_ELEMENT |
1075 MPI2_SGE_FLAGS_END_OF_BUFFER | MPI2_SGE_FLAGS_END_OF_LIST)
1076 << MPI2_SGE_FLAGS_SHIFT;
1077 sgl_flags = sgl_flags << MPI2_SGE_FLAGS_SHIFT;
1078
1079 sg_scmd = scsi_sglist(scmd);
1080 sges_left = scsi_dma_map(scmd);
FUJITA Tomonoribb789d02010-03-09 11:09:50 +09001081 if (sges_left < 0) {
Eric Moore635374e2009-03-09 01:21:12 -06001082 sdev_printk(KERN_ERR, scmd->device, "pci_map_sg"
1083 " failed: request for %d bytes!\n", scsi_bufflen(scmd));
1084 return -ENOMEM;
1085 }
1086
1087 sg_local = &mpi_request->SGL;
1088 sges_in_segment = ioc->max_sges_in_main_message;
1089 if (sges_left <= sges_in_segment)
1090 goto fill_in_last_segment;
1091
1092 mpi_request->ChainOffset = (offsetof(Mpi2SCSIIORequest_t, SGL) +
1093 (sges_in_segment * ioc->sge_size))/4;
1094
1095 /* fill in main message segment when there is a chain following */
1096 while (sges_in_segment) {
1097 if (sges_in_segment == 1)
1098 ioc->base_add_sg_single(sg_local,
1099 sgl_flags_last_element | sg_dma_len(sg_scmd),
1100 sg_dma_address(sg_scmd));
1101 else
1102 ioc->base_add_sg_single(sg_local, sgl_flags |
1103 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1104 sg_scmd = sg_next(sg_scmd);
1105 sg_local += ioc->sge_size;
1106 sges_left--;
1107 sges_in_segment--;
1108 }
1109
1110 /* initializing the chain flags and pointers */
1111 chain_flags = MPI2_SGE_FLAGS_CHAIN_ELEMENT << MPI2_SGE_FLAGS_SHIFT;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301112 chain_req = _scsih_get_chain_buffer_tracker(ioc, smid);
1113 if (!chain_req)
1114 return -1;
1115 chain = chain_req->chain_buffer;
1116 chain_dma = chain_req->chain_buffer_dma;
Eric Moore635374e2009-03-09 01:21:12 -06001117 do {
1118 sges_in_segment = (sges_left <=
1119 ioc->max_sges_in_chain_message) ? sges_left :
1120 ioc->max_sges_in_chain_message;
1121 chain_offset = (sges_left == sges_in_segment) ?
1122 0 : (sges_in_segment * ioc->sge_size)/4;
1123 chain_length = sges_in_segment * ioc->sge_size;
1124 if (chain_offset) {
1125 chain_offset = chain_offset <<
1126 MPI2_SGE_CHAIN_OFFSET_SHIFT;
1127 chain_length += ioc->sge_size;
1128 }
1129 ioc->base_add_sg_single(sg_local, chain_flags | chain_offset |
1130 chain_length, chain_dma);
1131 sg_local = chain;
1132 if (!chain_offset)
1133 goto fill_in_last_segment;
1134
1135 /* fill in chain segments */
1136 while (sges_in_segment) {
1137 if (sges_in_segment == 1)
1138 ioc->base_add_sg_single(sg_local,
1139 sgl_flags_last_element |
1140 sg_dma_len(sg_scmd),
1141 sg_dma_address(sg_scmd));
1142 else
1143 ioc->base_add_sg_single(sg_local, sgl_flags |
1144 sg_dma_len(sg_scmd),
1145 sg_dma_address(sg_scmd));
1146 sg_scmd = sg_next(sg_scmd);
1147 sg_local += ioc->sge_size;
1148 sges_left--;
1149 sges_in_segment--;
1150 }
1151
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301152 chain_req = _scsih_get_chain_buffer_tracker(ioc, smid);
1153 if (!chain_req)
1154 return -1;
1155 chain = chain_req->chain_buffer;
1156 chain_dma = chain_req->chain_buffer_dma;
Eric Moore635374e2009-03-09 01:21:12 -06001157 } while (1);
1158
1159
1160 fill_in_last_segment:
1161
1162 /* fill the last segment */
1163 while (sges_left) {
1164 if (sges_left == 1)
1165 ioc->base_add_sg_single(sg_local, sgl_flags_end_buffer |
1166 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1167 else
1168 ioc->base_add_sg_single(sg_local, sgl_flags |
1169 sg_dma_len(sg_scmd), sg_dma_address(sg_scmd));
1170 sg_scmd = sg_next(sg_scmd);
1171 sg_local += ioc->sge_size;
1172 sges_left--;
1173 }
1174
1175 return 0;
1176}
1177
1178/**
Kashyap, Desaia93c6b42010-11-13 04:39:11 +05301179 * _scsih_adjust_queue_depth - setting device queue depth
Eric Moore635374e2009-03-09 01:21:12 -06001180 * @sdev: scsi device struct
1181 * @qdepth: requested queue depth
1182 *
Kashyap, Desaia93c6b42010-11-13 04:39:11 +05301183 *
1184 * Returns nothing
Eric Moore635374e2009-03-09 01:21:12 -06001185 */
Kashyap, Desaia93c6b42010-11-13 04:39:11 +05301186static void
1187_scsih_adjust_queue_depth(struct scsi_device *sdev, int qdepth)
Eric Moore635374e2009-03-09 01:21:12 -06001188{
1189 struct Scsi_Host *shost = sdev->host;
1190 int max_depth;
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301191 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1192 struct MPT2SAS_DEVICE *sas_device_priv_data;
1193 struct MPT2SAS_TARGET *sas_target_priv_data;
1194 struct _sas_device *sas_device;
1195 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06001196
1197 max_depth = shost->can_queue;
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301198
1199 /* limit max device queue for SATA to 32 */
1200 sas_device_priv_data = sdev->hostdata;
1201 if (!sas_device_priv_data)
1202 goto not_sata;
1203 sas_target_priv_data = sas_device_priv_data->sas_target;
1204 if (!sas_target_priv_data)
1205 goto not_sata;
1206 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME))
1207 goto not_sata;
1208 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1209 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1210 sas_device_priv_data->sas_target->sas_address);
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301211 if (sas_device && sas_device->device_info &
1212 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
1213 max_depth = MPT2SAS_SATA_QUEUE_DEPTH;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301214 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desaie0077d62009-09-23 17:30:22 +05301215
1216 not_sata:
1217
Eric Moore635374e2009-03-09 01:21:12 -06001218 if (!sdev->tagged_supported)
1219 max_depth = 1;
1220 if (qdepth > max_depth)
1221 qdepth = max_depth;
Kashyap, Desaia93c6b42010-11-13 04:39:11 +05301222 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1223}
1224
1225/**
1226 * _scsih_change_queue_depth - setting device queue depth
1227 * @sdev: scsi device struct
1228 * @qdepth: requested queue depth
1229 * @reason: SCSI_QDEPTH_DEFAULT/SCSI_QDEPTH_QFULL/SCSI_QDEPTH_RAMP_UP
1230 * (see include/scsi/scsi_host.h for definition)
1231 *
1232 * Returns queue depth.
1233 */
1234static int
1235_scsih_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
1236{
1237 if (reason == SCSI_QDEPTH_DEFAULT || reason == SCSI_QDEPTH_RAMP_UP)
1238 _scsih_adjust_queue_depth(sdev, qdepth);
1239 else if (reason == SCSI_QDEPTH_QFULL)
1240 scsi_track_queue_full(sdev, qdepth);
1241 else
1242 return -EOPNOTSUPP;
Eric Moore635374e2009-03-09 01:21:12 -06001243
1244 if (sdev->inquiry_len > 7)
1245 sdev_printk(KERN_INFO, sdev, "qdepth(%d), tagged(%d), "
1246 "simple(%d), ordered(%d), scsi_level(%d), cmd_que(%d)\n",
1247 sdev->queue_depth, sdev->tagged_supported, sdev->simple_tags,
1248 sdev->ordered_tags, sdev->scsi_level,
1249 (sdev->inquiry[7] & 2) >> 1);
1250
1251 return sdev->queue_depth;
1252}
1253
1254/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301255 * _scsih_change_queue_type - changing device queue tag type
Eric Moore635374e2009-03-09 01:21:12 -06001256 * @sdev: scsi device struct
1257 * @tag_type: requested tag type
1258 *
1259 * Returns queue tag type.
1260 */
1261static int
Eric Moored5d135b2009-05-18 13:02:08 -06001262_scsih_change_queue_type(struct scsi_device *sdev, int tag_type)
Eric Moore635374e2009-03-09 01:21:12 -06001263{
1264 if (sdev->tagged_supported) {
1265 scsi_set_tag_type(sdev, tag_type);
1266 if (tag_type)
1267 scsi_activate_tcq(sdev, sdev->queue_depth);
1268 else
1269 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1270 } else
1271 tag_type = 0;
1272
1273 return tag_type;
1274}
1275
1276/**
Eric Moored5d135b2009-05-18 13:02:08 -06001277 * _scsih_target_alloc - target add routine
Eric Moore635374e2009-03-09 01:21:12 -06001278 * @starget: scsi target struct
1279 *
1280 * Returns 0 if ok. Any other return is assumed to be an error and
1281 * the device is ignored.
1282 */
1283static int
Eric Moored5d135b2009-05-18 13:02:08 -06001284_scsih_target_alloc(struct scsi_target *starget)
Eric Moore635374e2009-03-09 01:21:12 -06001285{
1286 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1287 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1288 struct MPT2SAS_TARGET *sas_target_priv_data;
1289 struct _sas_device *sas_device;
1290 struct _raid_device *raid_device;
1291 unsigned long flags;
1292 struct sas_rphy *rphy;
1293
1294 sas_target_priv_data = kzalloc(sizeof(struct scsi_target), GFP_KERNEL);
1295 if (!sas_target_priv_data)
1296 return -ENOMEM;
1297
1298 starget->hostdata = sas_target_priv_data;
1299 sas_target_priv_data->starget = starget;
1300 sas_target_priv_data->handle = MPT2SAS_INVALID_DEVICE_HANDLE;
1301
1302 /* RAID volumes */
1303 if (starget->channel == RAID_CHANNEL) {
1304 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1305 raid_device = _scsih_raid_device_find_by_id(ioc, starget->id,
1306 starget->channel);
1307 if (raid_device) {
1308 sas_target_priv_data->handle = raid_device->handle;
1309 sas_target_priv_data->sas_address = raid_device->wwid;
1310 sas_target_priv_data->flags |= MPT_TARGET_FLAGS_VOLUME;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301311 if (ioc->is_warpdrive)
1312 sas_target_priv_data->raid_device = raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06001313 raid_device->starget = starget;
1314 }
1315 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1316 return 0;
1317 }
1318
1319 /* sas/sata devices */
1320 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1321 rphy = dev_to_rphy(starget->dev.parent);
1322 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1323 rphy->identify.sas_address);
1324
1325 if (sas_device) {
1326 sas_target_priv_data->handle = sas_device->handle;
1327 sas_target_priv_data->sas_address = sas_device->sas_address;
1328 sas_device->starget = starget;
1329 sas_device->id = starget->id;
1330 sas_device->channel = starget->channel;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05301331 if (test_bit(sas_device->handle, ioc->pd_handles))
Eric Moore635374e2009-03-09 01:21:12 -06001332 sas_target_priv_data->flags |=
1333 MPT_TARGET_FLAGS_RAID_COMPONENT;
1334 }
1335 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1336
1337 return 0;
1338}
1339
1340/**
Eric Moored5d135b2009-05-18 13:02:08 -06001341 * _scsih_target_destroy - target destroy routine
Eric Moore635374e2009-03-09 01:21:12 -06001342 * @starget: scsi target struct
1343 *
1344 * Returns nothing.
1345 */
1346static void
Eric Moored5d135b2009-05-18 13:02:08 -06001347_scsih_target_destroy(struct scsi_target *starget)
Eric Moore635374e2009-03-09 01:21:12 -06001348{
1349 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1350 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1351 struct MPT2SAS_TARGET *sas_target_priv_data;
1352 struct _sas_device *sas_device;
1353 struct _raid_device *raid_device;
1354 unsigned long flags;
1355 struct sas_rphy *rphy;
1356
1357 sas_target_priv_data = starget->hostdata;
1358 if (!sas_target_priv_data)
1359 return;
1360
1361 if (starget->channel == RAID_CHANNEL) {
1362 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1363 raid_device = _scsih_raid_device_find_by_id(ioc, starget->id,
1364 starget->channel);
1365 if (raid_device) {
1366 raid_device->starget = NULL;
1367 raid_device->sdev = NULL;
1368 }
1369 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1370 goto out;
1371 }
1372
1373 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1374 rphy = dev_to_rphy(starget->dev.parent);
1375 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1376 rphy->identify.sas_address);
Eric Moore8901cbb2009-04-21 15:41:32 -06001377 if (sas_device && (sas_device->starget == starget) &&
1378 (sas_device->id == starget->id) &&
1379 (sas_device->channel == starget->channel))
Eric Moore635374e2009-03-09 01:21:12 -06001380 sas_device->starget = NULL;
1381
1382 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1383
1384 out:
1385 kfree(sas_target_priv_data);
1386 starget->hostdata = NULL;
1387}
1388
1389/**
Eric Moored5d135b2009-05-18 13:02:08 -06001390 * _scsih_slave_alloc - device add routine
Eric Moore635374e2009-03-09 01:21:12 -06001391 * @sdev: scsi device struct
1392 *
1393 * Returns 0 if ok. Any other return is assumed to be an error and
1394 * the device is ignored.
1395 */
1396static int
Eric Moored5d135b2009-05-18 13:02:08 -06001397_scsih_slave_alloc(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001398{
1399 struct Scsi_Host *shost;
1400 struct MPT2SAS_ADAPTER *ioc;
1401 struct MPT2SAS_TARGET *sas_target_priv_data;
1402 struct MPT2SAS_DEVICE *sas_device_priv_data;
1403 struct scsi_target *starget;
1404 struct _raid_device *raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06001405 unsigned long flags;
1406
1407 sas_device_priv_data = kzalloc(sizeof(struct scsi_device), GFP_KERNEL);
1408 if (!sas_device_priv_data)
1409 return -ENOMEM;
1410
1411 sas_device_priv_data->lun = sdev->lun;
1412 sas_device_priv_data->flags = MPT_DEVICE_FLAGS_INIT;
1413
1414 starget = scsi_target(sdev);
1415 sas_target_priv_data = starget->hostdata;
1416 sas_target_priv_data->num_luns++;
1417 sas_device_priv_data->sas_target = sas_target_priv_data;
1418 sdev->hostdata = sas_device_priv_data;
1419 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT))
1420 sdev->no_uld_attach = 1;
1421
1422 shost = dev_to_shost(&starget->dev);
1423 ioc = shost_priv(shost);
1424 if (starget->channel == RAID_CHANNEL) {
1425 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1426 raid_device = _scsih_raid_device_find_by_id(ioc,
1427 starget->id, starget->channel);
1428 if (raid_device)
1429 raid_device->sdev = sdev; /* raid is single lun */
1430 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06001431 }
1432
Eric Moore635374e2009-03-09 01:21:12 -06001433 return 0;
1434}
1435
1436/**
Eric Moored5d135b2009-05-18 13:02:08 -06001437 * _scsih_slave_destroy - device destroy routine
Eric Moore635374e2009-03-09 01:21:12 -06001438 * @sdev: scsi device struct
1439 *
1440 * Returns nothing.
1441 */
1442static void
Eric Moored5d135b2009-05-18 13:02:08 -06001443_scsih_slave_destroy(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001444{
1445 struct MPT2SAS_TARGET *sas_target_priv_data;
1446 struct scsi_target *starget;
nagalakshmi.nandigama@lsi.com35116db2011-10-21 10:08:07 +05301447 struct Scsi_Host *shost;
1448 struct MPT2SAS_ADAPTER *ioc;
1449 struct _sas_device *sas_device;
1450 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06001451
1452 if (!sdev->hostdata)
1453 return;
1454
1455 starget = scsi_target(sdev);
1456 sas_target_priv_data = starget->hostdata;
1457 sas_target_priv_data->num_luns--;
nagalakshmi.nandigama@lsi.com35116db2011-10-21 10:08:07 +05301458
1459 shost = dev_to_shost(&starget->dev);
1460 ioc = shost_priv(shost);
1461
1462 if (!(sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME)) {
1463 spin_lock_irqsave(&ioc->sas_device_lock, flags);
1464 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
1465 sas_target_priv_data->sas_address);
nagalakshmi.nandigama@lsi.com23edb6e2011-12-01 07:43:50 +05301466 if (sas_device && !sas_target_priv_data->num_luns)
nagalakshmi.nandigama@lsi.com35116db2011-10-21 10:08:07 +05301467 sas_device->starget = NULL;
1468 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
1469 }
1470
Eric Moore635374e2009-03-09 01:21:12 -06001471 kfree(sdev->hostdata);
1472 sdev->hostdata = NULL;
1473}
1474
1475/**
Eric Moored5d135b2009-05-18 13:02:08 -06001476 * _scsih_display_sata_capabilities - sata capabilities
Eric Moore635374e2009-03-09 01:21:12 -06001477 * @ioc: per adapter object
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301478 * @handle: device handle
Eric Moore635374e2009-03-09 01:21:12 -06001479 * @sdev: scsi device struct
1480 */
1481static void
Eric Moored5d135b2009-05-18 13:02:08 -06001482_scsih_display_sata_capabilities(struct MPT2SAS_ADAPTER *ioc,
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301483 u16 handle, struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001484{
1485 Mpi2ConfigReply_t mpi_reply;
1486 Mpi2SasDevicePage0_t sas_device_pg0;
1487 u32 ioc_status;
1488 u16 flags;
1489 u32 device_info;
1490
1491 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301492 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
Eric Moore635374e2009-03-09 01:21:12 -06001493 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1494 ioc->name, __FILE__, __LINE__, __func__);
1495 return;
1496 }
1497
1498 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1499 MPI2_IOCSTATUS_MASK;
1500 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
1501 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1502 ioc->name, __FILE__, __LINE__, __func__);
1503 return;
1504 }
1505
1506 flags = le16_to_cpu(sas_device_pg0.Flags);
Kashyap, Desaie94f6742010-03-17 16:24:52 +05301507 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
Eric Moore635374e2009-03-09 01:21:12 -06001508
1509 sdev_printk(KERN_INFO, sdev,
1510 "atapi(%s), ncq(%s), asyn_notify(%s), smart(%s), fua(%s), "
1511 "sw_preserve(%s)\n",
1512 (device_info & MPI2_SAS_DEVICE_INFO_ATAPI_DEVICE) ? "y" : "n",
1513 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_NCQ_SUPPORTED) ? "y" : "n",
1514 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_ASYNCHRONOUS_NOTIFY) ? "y" :
1515 "n",
1516 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_SMART_SUPPORTED) ? "y" : "n",
1517 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_FUA_SUPPORTED) ? "y" : "n",
1518 (flags & MPI2_SAS_DEVICE0_FLAGS_SATA_SW_PRESERVE) ? "y" : "n");
1519}
1520
1521/**
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301522 * _scsih_is_raid - return boolean indicating device is raid volume
1523 * @dev the device struct object
1524 */
1525static int
1526_scsih_is_raid(struct device *dev)
1527{
1528 struct scsi_device *sdev = to_scsi_device(dev);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301529 struct MPT2SAS_ADAPTER *ioc = shost_priv(sdev->host);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301530
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301531 if (ioc->is_warpdrive)
1532 return 0;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301533 return (sdev->channel == RAID_CHANNEL) ? 1 : 0;
1534}
1535
1536/**
1537 * _scsih_get_resync - get raid volume resync percent complete
1538 * @dev the device struct object
1539 */
1540static void
1541_scsih_get_resync(struct device *dev)
1542{
1543 struct scsi_device *sdev = to_scsi_device(dev);
1544 struct MPT2SAS_ADAPTER *ioc = shost_priv(sdev->host);
1545 static struct _raid_device *raid_device;
1546 unsigned long flags;
1547 Mpi2RaidVolPage0_t vol_pg0;
1548 Mpi2ConfigReply_t mpi_reply;
1549 u32 volume_status_flags;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301550 u8 percent_complete;
1551 u16 handle;
1552
1553 percent_complete = 0;
1554 handle = 0;
1555 if (ioc->is_warpdrive)
1556 goto out;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301557
1558 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1559 raid_device = _scsih_raid_device_find_by_id(ioc, sdev->id,
1560 sdev->channel);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301561 if (raid_device) {
1562 handle = raid_device->handle;
1563 percent_complete = raid_device->percent_complete;
1564 }
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301565 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1566
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301567 if (!handle)
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301568 goto out;
1569
1570 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, &vol_pg0,
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301571 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, handle,
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301572 sizeof(Mpi2RaidVolPage0_t))) {
1573 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1574 ioc->name, __FILE__, __LINE__, __func__);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301575 percent_complete = 0;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301576 goto out;
1577 }
1578
1579 volume_status_flags = le32_to_cpu(vol_pg0.VolumeStatusFlags);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301580 if (!(volume_status_flags &
1581 MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS))
1582 percent_complete = 0;
1583
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301584 out:
1585 raid_set_resync(mpt2sas_raid_template, dev, percent_complete);
1586}
1587
1588/**
1589 * _scsih_get_state - get raid volume level
1590 * @dev the device struct object
1591 */
1592static void
1593_scsih_get_state(struct device *dev)
1594{
1595 struct scsi_device *sdev = to_scsi_device(dev);
1596 struct MPT2SAS_ADAPTER *ioc = shost_priv(sdev->host);
1597 static struct _raid_device *raid_device;
1598 unsigned long flags;
1599 Mpi2RaidVolPage0_t vol_pg0;
1600 Mpi2ConfigReply_t mpi_reply;
1601 u32 volstate;
1602 enum raid_state state = RAID_STATE_UNKNOWN;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301603 u16 handle = 0;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301604
1605 spin_lock_irqsave(&ioc->raid_device_lock, flags);
1606 raid_device = _scsih_raid_device_find_by_id(ioc, sdev->id,
1607 sdev->channel);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301608 if (raid_device)
1609 handle = raid_device->handle;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301610 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
1611
1612 if (!raid_device)
1613 goto out;
1614
1615 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, &vol_pg0,
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301616 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, handle,
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301617 sizeof(Mpi2RaidVolPage0_t))) {
1618 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1619 ioc->name, __FILE__, __LINE__, __func__);
1620 goto out;
1621 }
1622
1623 volstate = le32_to_cpu(vol_pg0.VolumeStatusFlags);
1624 if (volstate & MPI2_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS) {
1625 state = RAID_STATE_RESYNCING;
1626 goto out;
1627 }
1628
1629 switch (vol_pg0.VolumeState) {
1630 case MPI2_RAID_VOL_STATE_OPTIMAL:
1631 case MPI2_RAID_VOL_STATE_ONLINE:
1632 state = RAID_STATE_ACTIVE;
1633 break;
1634 case MPI2_RAID_VOL_STATE_DEGRADED:
1635 state = RAID_STATE_DEGRADED;
1636 break;
1637 case MPI2_RAID_VOL_STATE_FAILED:
1638 case MPI2_RAID_VOL_STATE_MISSING:
1639 state = RAID_STATE_OFFLINE;
1640 break;
1641 }
1642 out:
1643 raid_set_state(mpt2sas_raid_template, dev, state);
1644}
1645
1646/**
1647 * _scsih_set_level - set raid level
1648 * @sdev: scsi device struct
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301649 * @volume_type: volume type
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301650 */
1651static void
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301652_scsih_set_level(struct scsi_device *sdev, u8 volume_type)
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301653{
1654 enum raid_level level = RAID_LEVEL_UNKNOWN;
1655
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301656 switch (volume_type) {
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05301657 case MPI2_RAID_VOL_TYPE_RAID0:
1658 level = RAID_LEVEL_0;
1659 break;
1660 case MPI2_RAID_VOL_TYPE_RAID10:
1661 level = RAID_LEVEL_10;
1662 break;
1663 case MPI2_RAID_VOL_TYPE_RAID1E:
1664 level = RAID_LEVEL_1E;
1665 break;
1666 case MPI2_RAID_VOL_TYPE_RAID1:
1667 level = RAID_LEVEL_1;
1668 break;
1669 }
1670
1671 raid_set_level(mpt2sas_raid_template, &sdev->sdev_gendev, level);
1672}
1673
1674/**
Eric Moore635374e2009-03-09 01:21:12 -06001675 * _scsih_get_volume_capabilities - volume capabilities
1676 * @ioc: per adapter object
1677 * @sas_device: the raid_device object
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05301678 *
1679 * Returns 0 for success, else 1
Eric Moore635374e2009-03-09 01:21:12 -06001680 */
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05301681static int
Eric Moore635374e2009-03-09 01:21:12 -06001682_scsih_get_volume_capabilities(struct MPT2SAS_ADAPTER *ioc,
1683 struct _raid_device *raid_device)
1684{
1685 Mpi2RaidVolPage0_t *vol_pg0;
1686 Mpi2RaidPhysDiskPage0_t pd_pg0;
1687 Mpi2SasDevicePage0_t sas_device_pg0;
1688 Mpi2ConfigReply_t mpi_reply;
1689 u16 sz;
1690 u8 num_pds;
1691
1692 if ((mpt2sas_config_get_number_pds(ioc, raid_device->handle,
1693 &num_pds)) || !num_pds) {
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05301694 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT
1695 "failure at %s:%d/%s()!\n", ioc->name, __FILE__, __LINE__,
1696 __func__));
1697 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001698 }
1699
1700 raid_device->num_pds = num_pds;
1701 sz = offsetof(Mpi2RaidVolPage0_t, PhysDisk) + (num_pds *
1702 sizeof(Mpi2RaidVol0PhysDisk_t));
1703 vol_pg0 = kzalloc(sz, GFP_KERNEL);
1704 if (!vol_pg0) {
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05301705 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT
1706 "failure at %s:%d/%s()!\n", ioc->name, __FILE__, __LINE__,
1707 __func__));
1708 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001709 }
1710
1711 if ((mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, vol_pg0,
1712 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle, sz))) {
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05301713 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT
1714 "failure at %s:%d/%s()!\n", ioc->name, __FILE__, __LINE__,
1715 __func__));
Eric Moore635374e2009-03-09 01:21:12 -06001716 kfree(vol_pg0);
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05301717 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06001718 }
1719
1720 raid_device->volume_type = vol_pg0->VolumeType;
1721
1722 /* figure out what the underlying devices are by
1723 * obtaining the device_info bits for the 1st device
1724 */
1725 if (!(mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
1726 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM,
1727 vol_pg0->PhysDisk[0].PhysDiskNum))) {
1728 if (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
1729 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
1730 le16_to_cpu(pd_pg0.DevHandle)))) {
1731 raid_device->device_info =
1732 le32_to_cpu(sas_device_pg0.DeviceInfo);
1733 }
1734 }
1735
1736 kfree(vol_pg0);
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05301737 return 0;
Eric Moore635374e2009-03-09 01:21:12 -06001738}
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301739/**
1740 * _scsih_disable_ddio - Disable direct I/O for all the volumes
1741 * @ioc: per adapter object
1742 */
1743static void
1744_scsih_disable_ddio(struct MPT2SAS_ADAPTER *ioc)
1745{
1746 Mpi2RaidVolPage1_t vol_pg1;
1747 Mpi2ConfigReply_t mpi_reply;
1748 struct _raid_device *raid_device;
1749 u16 handle;
1750 u16 ioc_status;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301751 unsigned long flags;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301752
1753 handle = 0xFFFF;
1754 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
1755 &vol_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
1756 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1757 MPI2_IOCSTATUS_MASK;
1758 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
1759 break;
1760 handle = le16_to_cpu(vol_pg1.DevHandle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301761 spin_lock_irqsave(&ioc->raid_device_lock, flags);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301762 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
1763 if (raid_device)
1764 raid_device->direct_io_enabled = 0;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05301765 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301766 }
1767 return;
1768}
1769
1770
1771/**
1772 * _scsih_get_num_volumes - Get number of volumes in the ioc
1773 * @ioc: per adapter object
1774 */
1775static u8
1776_scsih_get_num_volumes(struct MPT2SAS_ADAPTER *ioc)
1777{
1778 Mpi2RaidVolPage1_t vol_pg1;
1779 Mpi2ConfigReply_t mpi_reply;
1780 u16 handle;
1781 u8 vol_cnt = 0;
1782 u16 ioc_status;
1783
1784 handle = 0xFFFF;
1785 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
1786 &vol_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
1787 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1788 MPI2_IOCSTATUS_MASK;
1789 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
1790 break;
1791 vol_cnt++;
1792 handle = le16_to_cpu(vol_pg1.DevHandle);
1793 }
1794 return vol_cnt;
1795}
1796
1797
1798/**
1799 * _scsih_init_warpdrive_properties - Set properties for warpdrive direct I/O.
1800 * @ioc: per adapter object
1801 * @raid_device: the raid_device object
1802 */
1803static void
1804_scsih_init_warpdrive_properties(struct MPT2SAS_ADAPTER *ioc,
1805 struct _raid_device *raid_device)
1806{
1807 Mpi2RaidVolPage0_t *vol_pg0;
1808 Mpi2RaidPhysDiskPage0_t pd_pg0;
1809 Mpi2ConfigReply_t mpi_reply;
1810 u16 sz;
1811 u8 num_pds, count;
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301812 unsigned long stripe_sz, block_sz;
1813 u8 stripe_exp, block_exp;
1814 u64 dev_max_lba;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301815
1816 if (!ioc->is_warpdrive)
1817 return;
1818
1819 if (ioc->mfg_pg10_hide_flag == MFG_PAGE10_EXPOSE_ALL_DISKS) {
1820 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1821 "globally as drives are exposed\n", ioc->name);
1822 return;
1823 }
1824 if (_scsih_get_num_volumes(ioc) > 1) {
1825 _scsih_disable_ddio(ioc);
1826 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1827 "globally as number of drives > 1\n", ioc->name);
1828 return;
1829 }
1830 if ((mpt2sas_config_get_number_pds(ioc, raid_device->handle,
1831 &num_pds)) || !num_pds) {
1832 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1833 "Failure in computing number of drives\n", ioc->name);
1834 return;
1835 }
1836
1837 sz = offsetof(Mpi2RaidVolPage0_t, PhysDisk) + (num_pds *
1838 sizeof(Mpi2RaidVol0PhysDisk_t));
1839 vol_pg0 = kzalloc(sz, GFP_KERNEL);
1840 if (!vol_pg0) {
1841 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1842 "Memory allocation failure for RVPG0\n", ioc->name);
1843 return;
1844 }
1845
1846 if ((mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply, vol_pg0,
1847 MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, raid_device->handle, sz))) {
1848 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1849 "Failure in retrieving RVPG0\n", ioc->name);
1850 kfree(vol_pg0);
1851 return;
1852 }
1853
1854 /*
1855 * WARPDRIVE:If number of physical disks in a volume exceeds the max pds
1856 * assumed for WARPDRIVE, disable direct I/O
1857 */
1858 if (num_pds > MPT_MAX_WARPDRIVE_PDS) {
1859 printk(MPT2SAS_WARN_FMT "WarpDrive : Direct IO is disabled "
1860 "for the drive with handle(0x%04x): num_mem=%d, "
1861 "max_mem_allowed=%d\n", ioc->name, raid_device->handle,
1862 num_pds, MPT_MAX_WARPDRIVE_PDS);
1863 kfree(vol_pg0);
1864 return;
1865 }
1866 for (count = 0; count < num_pds; count++) {
1867 if (mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
1868 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_PHYSDISKNUM,
1869 vol_pg0->PhysDisk[count].PhysDiskNum) ||
nagalakshmi.nandigama@lsi.comd838c362012-03-20 12:07:48 +05301870 le16_to_cpu(pd_pg0.DevHandle) ==
1871 MPT2SAS_INVALID_DEVICE_HANDLE) {
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301872 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is "
1873 "disabled for the drive with handle(0x%04x) member"
1874 "handle retrieval failed for member number=%d\n",
1875 ioc->name, raid_device->handle,
1876 vol_pg0->PhysDisk[count].PhysDiskNum);
1877 goto out_error;
1878 }
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301879 /* Disable direct I/O if member drive lba exceeds 4 bytes */
1880 dev_max_lba = le64_to_cpu(pd_pg0.DeviceMaxLBA);
1881 if (dev_max_lba >> 32) {
1882 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is "
1883 "disabled for the drive with handle(0x%04x) member"
1884 "handle (0x%04x) unsupported max lba 0x%016llx\n",
1885 ioc->name, raid_device->handle,
1886 le16_to_cpu(pd_pg0.DevHandle),
1887 (unsigned long long)dev_max_lba);
1888 goto out_error;
1889 }
1890
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301891 raid_device->pd_handle[count] = le16_to_cpu(pd_pg0.DevHandle);
1892 }
1893
1894 /*
1895 * Assumption for WD: Direct I/O is not supported if the volume is
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301896 * not RAID0
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301897 */
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301898 if (raid_device->volume_type != MPI2_RAID_VOL_TYPE_RAID0) {
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301899 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1900 "for the drive with handle(0x%04x): type=%d, "
1901 "s_sz=%uK, blk_size=%u\n", ioc->name,
1902 raid_device->handle, raid_device->volume_type,
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301903 (le32_to_cpu(vol_pg0->StripeSize) *
1904 le16_to_cpu(vol_pg0->BlockSize)) / 1024,
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301905 le16_to_cpu(vol_pg0->BlockSize));
1906 goto out_error;
1907 }
1908
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301909 stripe_sz = le32_to_cpu(vol_pg0->StripeSize);
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301910 stripe_exp = find_first_bit(&stripe_sz, 32);
1911 if (stripe_exp == 32) {
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301912 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301913 "for the drive with handle(0x%04x) invalid stripe sz %uK\n",
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301914 ioc->name, raid_device->handle,
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301915 (le32_to_cpu(vol_pg0->StripeSize) *
1916 le16_to_cpu(vol_pg0->BlockSize)) / 1024);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301917 goto out_error;
1918 }
1919 raid_device->stripe_exponent = stripe_exp;
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05301920 block_sz = le16_to_cpu(vol_pg0->BlockSize);
1921 block_exp = find_first_bit(&block_sz, 16);
1922 if (block_exp == 16) {
1923 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is disabled "
1924 "for the drive with handle(0x%04x) invalid block sz %u\n",
1925 ioc->name, raid_device->handle,
1926 le16_to_cpu(vol_pg0->BlockSize));
1927 goto out_error;
1928 }
1929 raid_device->block_exponent = block_exp;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301930 raid_device->direct_io_enabled = 1;
1931
1932 printk(MPT2SAS_INFO_FMT "WarpDrive : Direct IO is Enabled for the drive"
1933 " with handle(0x%04x)\n", ioc->name, raid_device->handle);
1934 /*
1935 * WARPDRIVE: Though the following fields are not used for direct IO,
1936 * stored for future purpose:
1937 */
1938 raid_device->max_lba = le64_to_cpu(vol_pg0->MaxLBA);
1939 raid_device->stripe_sz = le32_to_cpu(vol_pg0->StripeSize);
1940 raid_device->block_sz = le16_to_cpu(vol_pg0->BlockSize);
1941
1942
1943 kfree(vol_pg0);
1944 return;
1945
1946out_error:
1947 raid_device->direct_io_enabled = 0;
1948 for (count = 0; count < num_pds; count++)
1949 raid_device->pd_handle[count] = 0;
1950 kfree(vol_pg0);
1951 return;
1952}
Eric Moore635374e2009-03-09 01:21:12 -06001953
1954/**
Kashyap, Desai84f0b042009-12-16 18:56:28 +05301955 * _scsih_enable_tlr - setting TLR flags
1956 * @ioc: per adapter object
1957 * @sdev: scsi device struct
1958 *
1959 * Enabling Transaction Layer Retries for tape devices when
1960 * vpd page 0x90 is present
1961 *
1962 */
1963static void
1964_scsih_enable_tlr(struct MPT2SAS_ADAPTER *ioc, struct scsi_device *sdev)
1965{
1966 /* only for TAPE */
1967 if (sdev->type != TYPE_TAPE)
1968 return;
1969
1970 if (!(ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_TLR))
1971 return;
1972
1973 sas_enable_tlr(sdev);
1974 sdev_printk(KERN_INFO, sdev, "TLR %s\n",
1975 sas_is_tlr_enabled(sdev) ? "Enabled" : "Disabled");
1976 return;
1977
1978}
1979
1980/**
Eric Moored5d135b2009-05-18 13:02:08 -06001981 * _scsih_slave_configure - device configure routine.
Eric Moore635374e2009-03-09 01:21:12 -06001982 * @sdev: scsi device struct
1983 *
1984 * Returns 0 if ok. Any other return is assumed to be an error and
1985 * the device is ignored.
1986 */
1987static int
Eric Moored5d135b2009-05-18 13:02:08 -06001988_scsih_slave_configure(struct scsi_device *sdev)
Eric Moore635374e2009-03-09 01:21:12 -06001989{
1990 struct Scsi_Host *shost = sdev->host;
1991 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
1992 struct MPT2SAS_DEVICE *sas_device_priv_data;
1993 struct MPT2SAS_TARGET *sas_target_priv_data;
1994 struct _sas_device *sas_device;
1995 struct _raid_device *raid_device;
1996 unsigned long flags;
1997 int qdepth;
1998 u8 ssp_target = 0;
1999 char *ds = "";
2000 char *r_level = "";
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05302001 u16 handle, volume_handle = 0;
2002 u64 volume_wwid = 0;
Eric Moore635374e2009-03-09 01:21:12 -06002003
2004 qdepth = 1;
2005 sas_device_priv_data = sdev->hostdata;
2006 sas_device_priv_data->configured_lun = 1;
2007 sas_device_priv_data->flags &= ~MPT_DEVICE_FLAGS_INIT;
2008 sas_target_priv_data = sas_device_priv_data->sas_target;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05302009 handle = sas_target_priv_data->handle;
Eric Moore635374e2009-03-09 01:21:12 -06002010
2011 /* raid volume handling */
2012 if (sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME) {
2013
2014 spin_lock_irqsave(&ioc->raid_device_lock, flags);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05302015 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
Eric Moore635374e2009-03-09 01:21:12 -06002016 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
2017 if (!raid_device) {
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05302018 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT
2019 "failure at %s:%d/%s()!\n", ioc->name, __FILE__,
2020 __LINE__, __func__));
2021 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06002022 }
2023
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05302024 if (_scsih_get_volume_capabilities(ioc, raid_device)) {
2025 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT
2026 "failure at %s:%d/%s()!\n", ioc->name, __FILE__,
2027 __LINE__, __func__));
2028 return 1;
2029 }
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302030 /*
2031 * WARPDRIVE: Initialize the required data for Direct IO
2032 */
2033 _scsih_init_warpdrive_properties(ioc, raid_device);
2034
Eric Moore635374e2009-03-09 01:21:12 -06002035 /* RAID Queue Depth Support
2036 * IS volume = underlying qdepth of drive type, either
2037 * MPT2SAS_SAS_QUEUE_DEPTH or MPT2SAS_SATA_QUEUE_DEPTH
2038 * IM/IME/R10 = 128 (MPT2SAS_RAID_QUEUE_DEPTH)
2039 */
2040 if (raid_device->device_info &
2041 MPI2_SAS_DEVICE_INFO_SSP_TARGET) {
2042 qdepth = MPT2SAS_SAS_QUEUE_DEPTH;
2043 ds = "SSP";
2044 } else {
2045 qdepth = MPT2SAS_SATA_QUEUE_DEPTH;
2046 if (raid_device->device_info &
2047 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
2048 ds = "SATA";
2049 else
2050 ds = "STP";
2051 }
2052
2053 switch (raid_device->volume_type) {
2054 case MPI2_RAID_VOL_TYPE_RAID0:
2055 r_level = "RAID0";
2056 break;
2057 case MPI2_RAID_VOL_TYPE_RAID1E:
2058 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
Kashyap, Desaied79f122009-08-20 13:23:49 +05302059 if (ioc->manu_pg10.OEMIdentifier &&
Kashyap, Desaic97951e2011-06-14 10:54:56 +05302060 (le32_to_cpu(ioc->manu_pg10.GenericFlags0) &
Kashyap, Desaied79f122009-08-20 13:23:49 +05302061 MFG10_GF0_R10_DISPLAY) &&
2062 !(raid_device->num_pds % 2))
2063 r_level = "RAID10";
2064 else
2065 r_level = "RAID1E";
Eric Moore635374e2009-03-09 01:21:12 -06002066 break;
2067 case MPI2_RAID_VOL_TYPE_RAID1:
2068 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
2069 r_level = "RAID1";
2070 break;
2071 case MPI2_RAID_VOL_TYPE_RAID10:
2072 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
2073 r_level = "RAID10";
2074 break;
2075 case MPI2_RAID_VOL_TYPE_UNKNOWN:
2076 default:
2077 qdepth = MPT2SAS_RAID_QUEUE_DEPTH;
2078 r_level = "RAIDX";
2079 break;
2080 }
2081
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302082 if (!ioc->hide_ir_msg)
2083 sdev_printk(KERN_INFO, sdev, "%s: handle(0x%04x), "
2084 "wwid(0x%016llx), pd_count(%d), type(%s)\n",
2085 r_level, raid_device->handle,
2086 (unsigned long long)raid_device->wwid,
2087 raid_device->num_pds, ds);
Mike Christiee881a172009-10-15 17:46:39 -07002088 _scsih_change_queue_depth(sdev, qdepth, SCSI_QDEPTH_DEFAULT);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05302089 /* raid transport support */
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302090 if (!ioc->is_warpdrive)
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05302091 _scsih_set_level(sdev, raid_device->volume_type);
Eric Moore635374e2009-03-09 01:21:12 -06002092 return 0;
2093 }
2094
2095 /* non-raid handling */
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05302096 if (sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT) {
2097 if (mpt2sas_config_get_volume_handle(ioc, handle,
2098 &volume_handle)) {
2099 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT
2100 "failure at %s:%d/%s()!\n", ioc->name,
2101 __FILE__, __LINE__, __func__));
2102 return 1;
2103 }
2104 if (volume_handle && mpt2sas_config_get_volume_wwid(ioc,
2105 volume_handle, &volume_wwid)) {
2106 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT
2107 "failure at %s:%d/%s()!\n", ioc->name,
2108 __FILE__, __LINE__, __func__));
2109 return 1;
2110 }
2111 }
2112
Eric Moore635374e2009-03-09 01:21:12 -06002113 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2114 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
2115 sas_device_priv_data->sas_target->sas_address);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05302116 if (!sas_device) {
2117 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05302118 dfailprintk(ioc, printk(MPT2SAS_WARN_FMT
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05302119 "failure at %s:%d/%s()!\n", ioc->name, __FILE__,
2120 __LINE__, __func__));
nagalakshmi.nandigama@lsi.com6faace22011-10-19 15:37:37 +05302121 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06002122 }
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05302123 sas_device->volume_handle = volume_handle;
2124 sas_device->volume_wwid = volume_wwid;
2125 if (sas_device->device_info & MPI2_SAS_DEVICE_INFO_SSP_TARGET) {
2126 qdepth = MPT2SAS_SAS_QUEUE_DEPTH;
2127 ssp_target = 1;
2128 ds = "SSP";
2129 } else {
2130 qdepth = MPT2SAS_SATA_QUEUE_DEPTH;
2131 if (sas_device->device_info & MPI2_SAS_DEVICE_INFO_STP_TARGET)
2132 ds = "STP";
2133 else if (sas_device->device_info &
2134 MPI2_SAS_DEVICE_INFO_SATA_DEVICE)
2135 ds = "SATA";
2136 }
2137 sdev_printk(KERN_INFO, sdev, "%s: handle(0x%04x), "
2138 "sas_addr(0x%016llx), phy(%d), device_name(0x%016llx)\n",
2139 ds, sas_device->handle,
2140 (unsigned long long)sas_device->sas_address,
2141 sas_device->phy,
2142 (unsigned long long)sas_device->device_name);
2143 sdev_printk(KERN_INFO, sdev, "%s: "
2144 "enclosure_logical_id(0x%016llx), slot(%d)\n", ds,
2145 (unsigned long long) sas_device->enclosure_logical_id,
2146 sas_device->slot);
2147
2148 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2149 if (!ssp_target)
2150 _scsih_display_sata_capabilities(ioc, handle, sdev);
2151
Eric Moore635374e2009-03-09 01:21:12 -06002152
Mike Christiee881a172009-10-15 17:46:39 -07002153 _scsih_change_queue_depth(sdev, qdepth, SCSI_QDEPTH_DEFAULT);
Eric Moore635374e2009-03-09 01:21:12 -06002154
Kashyap, Desai84f0b042009-12-16 18:56:28 +05302155 if (ssp_target) {
Eric Moore635374e2009-03-09 01:21:12 -06002156 sas_read_port_mode_page(sdev);
Kashyap, Desai84f0b042009-12-16 18:56:28 +05302157 _scsih_enable_tlr(ioc, sdev);
2158 }
Eric Moore635374e2009-03-09 01:21:12 -06002159 return 0;
2160}
2161
2162/**
Eric Moored5d135b2009-05-18 13:02:08 -06002163 * _scsih_bios_param - fetch head, sector, cylinder info for a disk
Eric Moore635374e2009-03-09 01:21:12 -06002164 * @sdev: scsi device struct
2165 * @bdev: pointer to block device context
2166 * @capacity: device size (in 512 byte sectors)
2167 * @params: three element array to place output:
2168 * params[0] number of heads (max 255)
2169 * params[1] number of sectors (max 63)
2170 * params[2] number of cylinders
2171 *
2172 * Return nothing.
2173 */
2174static int
Eric Moored5d135b2009-05-18 13:02:08 -06002175_scsih_bios_param(struct scsi_device *sdev, struct block_device *bdev,
Eric Moore635374e2009-03-09 01:21:12 -06002176 sector_t capacity, int params[])
2177{
2178 int heads;
2179 int sectors;
2180 sector_t cylinders;
2181 ulong dummy;
2182
2183 heads = 64;
2184 sectors = 32;
2185
2186 dummy = heads * sectors;
2187 cylinders = capacity;
2188 sector_div(cylinders, dummy);
2189
2190 /*
2191 * Handle extended translation size for logical drives
2192 * > 1Gb
2193 */
2194 if ((ulong)capacity >= 0x200000) {
2195 heads = 255;
2196 sectors = 63;
2197 dummy = heads * sectors;
2198 cylinders = capacity;
2199 sector_div(cylinders, dummy);
2200 }
2201
2202 /* return result */
2203 params[0] = heads;
2204 params[1] = sectors;
2205 params[2] = cylinders;
2206
2207 return 0;
2208}
2209
2210/**
2211 * _scsih_response_code - translation of device response code
2212 * @ioc: per adapter object
2213 * @response_code: response code returned by the device
2214 *
2215 * Return nothing.
2216 */
2217static void
2218_scsih_response_code(struct MPT2SAS_ADAPTER *ioc, u8 response_code)
2219{
2220 char *desc;
2221
2222 switch (response_code) {
2223 case MPI2_SCSITASKMGMT_RSP_TM_COMPLETE:
2224 desc = "task management request completed";
2225 break;
2226 case MPI2_SCSITASKMGMT_RSP_INVALID_FRAME:
2227 desc = "invalid frame";
2228 break;
2229 case MPI2_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED:
2230 desc = "task management request not supported";
2231 break;
2232 case MPI2_SCSITASKMGMT_RSP_TM_FAILED:
2233 desc = "task management request failed";
2234 break;
2235 case MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED:
2236 desc = "task management request succeeded";
2237 break;
2238 case MPI2_SCSITASKMGMT_RSP_TM_INVALID_LUN:
2239 desc = "invalid lun";
2240 break;
2241 case 0xA:
2242 desc = "overlapped tag attempted";
2243 break;
2244 case MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC:
2245 desc = "task queued, however not sent to target";
2246 break;
2247 default:
2248 desc = "unknown";
2249 break;
2250 }
2251 printk(MPT2SAS_WARN_FMT "response_code(0x%01x): %s\n",
2252 ioc->name, response_code, desc);
2253}
2254
2255/**
Eric Moored5d135b2009-05-18 13:02:08 -06002256 * _scsih_tm_done - tm completion routine
Eric Moore635374e2009-03-09 01:21:12 -06002257 * @ioc: per adapter object
2258 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302259 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06002260 * @reply: reply message frame(lower 32bit addr)
2261 * Context: none.
2262 *
2263 * The callback handler when using scsih_issue_tm.
2264 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302265 * Return 1 meaning mf should be freed from _base_interrupt
2266 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06002267 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302268static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302269_scsih_tm_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06002270{
2271 MPI2DefaultReply_t *mpi_reply;
2272
2273 if (ioc->tm_cmds.status == MPT2_CMD_NOT_USED)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302274 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06002275 if (ioc->tm_cmds.smid != smid)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302276 return 1;
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +05302277 mpt2sas_base_flush_reply_queues(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06002278 ioc->tm_cmds.status |= MPT2_CMD_COMPLETE;
2279 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
2280 if (mpi_reply) {
2281 memcpy(ioc->tm_cmds.reply, mpi_reply, mpi_reply->MsgLength*4);
2282 ioc->tm_cmds.status |= MPT2_CMD_REPLY_VALID;
2283 }
2284 ioc->tm_cmds.status &= ~MPT2_CMD_PENDING;
2285 complete(&ioc->tm_cmds.done);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05302286 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06002287}
2288
2289/**
2290 * mpt2sas_scsih_set_tm_flag - set per target tm_busy
2291 * @ioc: per adapter object
2292 * @handle: device handle
2293 *
2294 * During taskmangement request, we need to freeze the device queue.
2295 */
2296void
2297mpt2sas_scsih_set_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2298{
2299 struct MPT2SAS_DEVICE *sas_device_priv_data;
2300 struct scsi_device *sdev;
2301 u8 skip = 0;
2302
2303 shost_for_each_device(sdev, ioc->shost) {
2304 if (skip)
2305 continue;
2306 sas_device_priv_data = sdev->hostdata;
2307 if (!sas_device_priv_data)
2308 continue;
2309 if (sas_device_priv_data->sas_target->handle == handle) {
2310 sas_device_priv_data->sas_target->tm_busy = 1;
2311 skip = 1;
2312 ioc->ignore_loginfos = 1;
2313 }
2314 }
2315}
2316
2317/**
2318 * mpt2sas_scsih_clear_tm_flag - clear per target tm_busy
2319 * @ioc: per adapter object
2320 * @handle: device handle
2321 *
2322 * During taskmangement request, we need to freeze the device queue.
2323 */
2324void
2325mpt2sas_scsih_clear_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2326{
2327 struct MPT2SAS_DEVICE *sas_device_priv_data;
2328 struct scsi_device *sdev;
2329 u8 skip = 0;
2330
2331 shost_for_each_device(sdev, ioc->shost) {
2332 if (skip)
2333 continue;
2334 sas_device_priv_data = sdev->hostdata;
2335 if (!sas_device_priv_data)
2336 continue;
2337 if (sas_device_priv_data->sas_target->handle == handle) {
2338 sas_device_priv_data->sas_target->tm_busy = 0;
2339 skip = 1;
2340 ioc->ignore_loginfos = 0;
2341 }
2342 }
2343}
2344
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302345
Eric Moore635374e2009-03-09 01:21:12 -06002346/**
2347 * mpt2sas_scsih_issue_tm - main routine for sending tm requests
2348 * @ioc: per adapter struct
2349 * @device_handle: device handle
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302350 * @channel: the channel assigned by the OS
2351 * @id: the id assigned by the OS
Eric Moore635374e2009-03-09 01:21:12 -06002352 * @lun: lun number
2353 * @type: MPI2_SCSITASKMGMT_TASKTYPE__XXX (defined in mpi2_init.h)
2354 * @smid_task: smid assigned to the task
2355 * @timeout: timeout in seconds
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302356 * @serial_number: the serial_number from scmd
2357 * @m_type: TM_MUTEX_ON or TM_MUTEX_OFF
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302358 * Context: user
Eric Moore635374e2009-03-09 01:21:12 -06002359 *
2360 * A generic API for sending task management requests to firmware.
2361 *
Eric Moore635374e2009-03-09 01:21:12 -06002362 * The callback index is set inside `ioc->tm_cb_idx`.
2363 *
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302364 * Return SUCCESS or FAILED.
Eric Moore635374e2009-03-09 01:21:12 -06002365 */
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302366int
2367mpt2sas_scsih_issue_tm(struct MPT2SAS_ADAPTER *ioc, u16 handle, uint channel,
2368 uint id, uint lun, u8 type, u16 smid_task, ulong timeout,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302369 unsigned long serial_number, enum mutex_type m_type)
Eric Moore635374e2009-03-09 01:21:12 -06002370{
2371 Mpi2SCSITaskManagementRequest_t *mpi_request;
2372 Mpi2SCSITaskManagementReply_t *mpi_reply;
2373 u16 smid = 0;
2374 u32 ioc_state;
2375 unsigned long timeleft;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302376 struct scsiio_tracker *scsi_lookup = NULL;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302377 int rc;
Eric Moore635374e2009-03-09 01:21:12 -06002378
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302379 if (m_type == TM_MUTEX_ON)
2380 mutex_lock(&ioc->tm_cmds.mutex);
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05302381 if (ioc->tm_cmds.status != MPT2_CMD_NOT_USED) {
2382 printk(MPT2SAS_INFO_FMT "%s: tm_cmd busy!!!\n",
2383 __func__, ioc->name);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302384 rc = FAILED;
2385 goto err_out;
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05302386 }
2387
Eric Moore3cb54692010-07-08 14:44:34 -06002388 if (ioc->shost_recovery || ioc->remove_host ||
2389 ioc->pci_error_recovery) {
Eric Moore635374e2009-03-09 01:21:12 -06002390 printk(MPT2SAS_INFO_FMT "%s: host reset in progress!\n",
2391 __func__, ioc->name);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302392 rc = FAILED;
2393 goto err_out;
Eric Moore635374e2009-03-09 01:21:12 -06002394 }
Eric Moore635374e2009-03-09 01:21:12 -06002395
2396 ioc_state = mpt2sas_base_get_iocstate(ioc, 0);
2397 if (ioc_state & MPI2_DOORBELL_USED) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302398 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "unexpected doorbell "
Eric Moore635374e2009-03-09 01:21:12 -06002399 "active!\n", ioc->name));
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302400 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302401 FORCE_BIG_HAMMER);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302402 rc = (!rc) ? SUCCESS : FAILED;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302403 goto err_out;
Eric Moore635374e2009-03-09 01:21:12 -06002404 }
2405
2406 if ((ioc_state & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) {
2407 mpt2sas_base_fault_info(ioc, ioc_state &
2408 MPI2_DOORBELL_DATA_MASK);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302409 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302410 FORCE_BIG_HAMMER);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302411 rc = (!rc) ? SUCCESS : FAILED;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302412 goto err_out;
Eric Moore635374e2009-03-09 01:21:12 -06002413 }
2414
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302415 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06002416 if (!smid) {
2417 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
2418 ioc->name, __func__);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302419 rc = FAILED;
2420 goto err_out;
Eric Moore635374e2009-03-09 01:21:12 -06002421 }
2422
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302423 if (type == MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK)
2424 scsi_lookup = &ioc->scsi_lookup[smid_task - 1];
2425
Eric Moore635374e2009-03-09 01:21:12 -06002426 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "sending tm: handle(0x%04x),"
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302427 " task_type(0x%02x), smid(%d)\n", ioc->name, handle, type,
2428 smid_task));
Eric Moore635374e2009-03-09 01:21:12 -06002429 ioc->tm_cmds.status = MPT2_CMD_PENDING;
2430 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
2431 ioc->tm_cmds.smid = smid;
2432 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302433 memset(ioc->tm_cmds.reply, 0, sizeof(Mpi2SCSITaskManagementReply_t));
Eric Moore635374e2009-03-09 01:21:12 -06002434 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
2435 mpi_request->DevHandle = cpu_to_le16(handle);
2436 mpi_request->TaskType = type;
2437 mpi_request->TaskMID = cpu_to_le16(smid_task);
2438 int_to_scsilun(lun, (struct scsi_lun *)mpi_request->LUN);
2439 mpt2sas_scsih_set_tm_flag(ioc, handle);
Kashyap, Desai5b768582009-08-20 13:24:31 +05302440 init_completion(&ioc->tm_cmds.done);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302441 mpt2sas_base_put_smid_hi_priority(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06002442 timeleft = wait_for_completion_timeout(&ioc->tm_cmds.done, timeout*HZ);
Eric Moore635374e2009-03-09 01:21:12 -06002443 if (!(ioc->tm_cmds.status & MPT2_CMD_COMPLETE)) {
2444 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
2445 ioc->name, __func__);
2446 _debug_dump_mf(mpi_request,
2447 sizeof(Mpi2SCSITaskManagementRequest_t)/4);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302448 if (!(ioc->tm_cmds.status & MPT2_CMD_RESET)) {
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302449 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302450 FORCE_BIG_HAMMER);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302451 rc = (!rc) ? SUCCESS : FAILED;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302452 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
2453 mpt2sas_scsih_clear_tm_flag(ioc, handle);
2454 goto err_out;
2455 }
Eric Moore635374e2009-03-09 01:21:12 -06002456 }
2457
2458 if (ioc->tm_cmds.status & MPT2_CMD_REPLY_VALID) {
2459 mpi_reply = ioc->tm_cmds.reply;
2460 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "complete tm: "
2461 "ioc_status(0x%04x), loginfo(0x%08x), term_count(0x%08x)\n",
2462 ioc->name, le16_to_cpu(mpi_reply->IOCStatus),
2463 le32_to_cpu(mpi_reply->IOCLogInfo),
2464 le32_to_cpu(mpi_reply->TerminationCount)));
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302465 if (ioc->logging_level & MPT_DEBUG_TM) {
Eric Moore635374e2009-03-09 01:21:12 -06002466 _scsih_response_code(ioc, mpi_reply->ResponseCode);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302467 if (mpi_reply->IOCStatus)
2468 _debug_dump_mf(mpi_request,
2469 sizeof(Mpi2SCSITaskManagementRequest_t)/4);
2470 }
Eric Moore635374e2009-03-09 01:21:12 -06002471 }
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302472
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302473 switch (type) {
2474 case MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK:
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302475 rc = SUCCESS;
2476 if (scsi_lookup->scmd == NULL)
2477 break;
2478 rc = FAILED;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302479 break;
2480
2481 case MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET:
2482 if (_scsih_scsi_lookup_find_by_target(ioc, id, channel))
2483 rc = FAILED;
2484 else
2485 rc = SUCCESS;
2486 break;
2487
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302488 case MPI2_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET:
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302489 case MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET:
2490 if (_scsih_scsi_lookup_find_by_lun(ioc, id, lun, channel))
2491 rc = FAILED;
2492 else
2493 rc = SUCCESS;
2494 break;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302495 case MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK:
2496 rc = SUCCESS;
2497 break;
2498 default:
2499 rc = FAILED;
2500 break;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302501 }
2502
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302503 mpt2sas_scsih_clear_tm_flag(ioc, handle);
2504 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302505 if (m_type == TM_MUTEX_ON)
2506 mutex_unlock(&ioc->tm_cmds.mutex);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302507
2508 return rc;
2509
2510 err_out:
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302511 if (m_type == TM_MUTEX_ON)
2512 mutex_unlock(&ioc->tm_cmds.mutex);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302513 return rc;
Eric Moore635374e2009-03-09 01:21:12 -06002514}
2515
2516/**
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302517 * _scsih_tm_display_info - displays info about the device
2518 * @ioc: per adapter struct
2519 * @scmd: pointer to scsi command object
2520 *
2521 * Called by task management callback handlers.
2522 */
2523static void
2524_scsih_tm_display_info(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd *scmd)
2525{
2526 struct scsi_target *starget = scmd->device->sdev_target;
2527 struct MPT2SAS_TARGET *priv_target = starget->hostdata;
2528 struct _sas_device *sas_device = NULL;
2529 unsigned long flags;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302530 char *device_str = NULL;
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302531
2532 if (!priv_target)
2533 return;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302534 if (ioc->hide_ir_msg)
2535 device_str = "WarpDrive";
2536 else
2537 device_str = "volume";
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302538
2539 scsi_print_command(scmd);
2540 if (priv_target->flags & MPT_TARGET_FLAGS_VOLUME) {
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05302541 starget_printk(KERN_INFO, starget, "%s handle(0x%04x), "
2542 "%s wwid(0x%016llx)\n", device_str, priv_target->handle,
2543 device_str, (unsigned long long)priv_target->sas_address);
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302544 } else {
2545 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2546 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
2547 priv_target->sas_address);
2548 if (sas_device) {
2549 if (priv_target->flags &
2550 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2551 starget_printk(KERN_INFO, starget,
2552 "volume handle(0x%04x), "
2553 "volume wwid(0x%016llx)\n",
2554 sas_device->volume_handle,
2555 (unsigned long long)sas_device->volume_wwid);
2556 }
2557 starget_printk(KERN_INFO, starget,
2558 "handle(0x%04x), sas_address(0x%016llx), phy(%d)\n",
2559 sas_device->handle,
2560 (unsigned long long)sas_device->sas_address,
2561 sas_device->phy);
2562 starget_printk(KERN_INFO, starget,
2563 "enclosure_logical_id(0x%016llx), slot(%d)\n",
2564 (unsigned long long)sas_device->enclosure_logical_id,
2565 sas_device->slot);
2566 }
2567 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2568 }
2569}
2570
2571/**
Eric Moored5d135b2009-05-18 13:02:08 -06002572 * _scsih_abort - eh threads main abort routine
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302573 * @scmd: pointer to scsi command object
Eric Moore635374e2009-03-09 01:21:12 -06002574 *
2575 * Returns SUCCESS if command aborted else FAILED
2576 */
2577static int
Eric Moored5d135b2009-05-18 13:02:08 -06002578_scsih_abort(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002579{
2580 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2581 struct MPT2SAS_DEVICE *sas_device_priv_data;
2582 u16 smid;
2583 u16 handle;
2584 int r;
Eric Moore635374e2009-03-09 01:21:12 -06002585
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302586 sdev_printk(KERN_INFO, scmd->device, "attempting task abort! "
2587 "scmd(%p)\n", scmd);
2588 _scsih_tm_display_info(ioc, scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002589
2590 sas_device_priv_data = scmd->device->hostdata;
2591 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302592 sdev_printk(KERN_INFO, scmd->device, "device been deleted! "
2593 "scmd(%p)\n", scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002594 scmd->result = DID_NO_CONNECT << 16;
2595 scmd->scsi_done(scmd);
2596 r = SUCCESS;
2597 goto out;
2598 }
2599
2600 /* search for the command */
2601 smid = _scsih_scsi_lookup_find_by_scmd(ioc, scmd);
2602 if (!smid) {
2603 scmd->result = DID_RESET << 16;
2604 r = SUCCESS;
2605 goto out;
2606 }
2607
2608 /* for hidden raid components and volumes this is not supported */
2609 if (sas_device_priv_data->sas_target->flags &
2610 MPT_TARGET_FLAGS_RAID_COMPONENT ||
2611 sas_device_priv_data->sas_target->flags & MPT_TARGET_FLAGS_VOLUME) {
2612 scmd->result = DID_RESET << 16;
2613 r = FAILED;
2614 goto out;
2615 }
2616
Kashyap, Desaifa7f3162009-09-23 17:26:58 +05302617 mpt2sas_halt_firmware(ioc);
2618
Eric Moore635374e2009-03-09 01:21:12 -06002619 handle = sas_device_priv_data->sas_target->handle;
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302620 r = mpt2sas_scsih_issue_tm(ioc, handle, scmd->device->channel,
2621 scmd->device->id, scmd->device->lun,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302622 MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK, smid, 30,
2623 scmd->serial_number, TM_MUTEX_ON);
Eric Moore635374e2009-03-09 01:21:12 -06002624
2625 out:
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302626 sdev_printk(KERN_INFO, scmd->device, "task abort: %s scmd(%p)\n",
2627 ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002628 return r;
2629}
2630
Eric Moore635374e2009-03-09 01:21:12 -06002631/**
Eric Moored5d135b2009-05-18 13:02:08 -06002632 * _scsih_dev_reset - eh threads main device reset routine
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302633 * @scmd: pointer to scsi command object
Eric Moore635374e2009-03-09 01:21:12 -06002634 *
2635 * Returns SUCCESS if command aborted else FAILED
2636 */
2637static int
Eric Moored5d135b2009-05-18 13:02:08 -06002638_scsih_dev_reset(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002639{
2640 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2641 struct MPT2SAS_DEVICE *sas_device_priv_data;
2642 struct _sas_device *sas_device;
2643 unsigned long flags;
2644 u16 handle;
2645 int r;
2646
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302647 struct scsi_target *starget = scmd->device->sdev_target;
2648
Kashyap, Desai37aaa782010-11-13 04:41:32 +05302649 starget_printk(KERN_INFO, starget, "attempting device reset! "
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302650 "scmd(%p)\n", scmd);
2651 _scsih_tm_display_info(ioc, scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002652
2653 sas_device_priv_data = scmd->device->hostdata;
2654 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
Kashyap, Desai37aaa782010-11-13 04:41:32 +05302655 starget_printk(KERN_INFO, starget, "device been deleted! "
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302656 "scmd(%p)\n", scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002657 scmd->result = DID_NO_CONNECT << 16;
2658 scmd->scsi_done(scmd);
2659 r = SUCCESS;
2660 goto out;
2661 }
2662
2663 /* for hidden raid components obtain the volume_handle */
2664 handle = 0;
2665 if (sas_device_priv_data->sas_target->flags &
2666 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2667 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2668 sas_device = _scsih_sas_device_find_by_handle(ioc,
2669 sas_device_priv_data->sas_target->handle);
2670 if (sas_device)
2671 handle = sas_device->volume_handle;
2672 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2673 } else
2674 handle = sas_device_priv_data->sas_target->handle;
2675
2676 if (!handle) {
2677 scmd->result = DID_RESET << 16;
2678 r = FAILED;
2679 goto out;
2680 }
2681
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302682 r = mpt2sas_scsih_issue_tm(ioc, handle, scmd->device->channel,
2683 scmd->device->id, scmd->device->lun,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302684 MPI2_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET, 0, 30, 0,
2685 TM_MUTEX_ON);
Eric Moore993e0da2009-05-18 13:00:45 -06002686
2687 out:
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302688 sdev_printk(KERN_INFO, scmd->device, "device reset: %s scmd(%p)\n",
2689 ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
Eric Moore993e0da2009-05-18 13:00:45 -06002690 return r;
2691}
2692
2693/**
Eric Moored5d135b2009-05-18 13:02:08 -06002694 * _scsih_target_reset - eh threads main target reset routine
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302695 * @scmd: pointer to scsi command object
Eric Moore993e0da2009-05-18 13:00:45 -06002696 *
2697 * Returns SUCCESS if command aborted else FAILED
2698 */
2699static int
Eric Moored5d135b2009-05-18 13:02:08 -06002700_scsih_target_reset(struct scsi_cmnd *scmd)
Eric Moore993e0da2009-05-18 13:00:45 -06002701{
2702 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2703 struct MPT2SAS_DEVICE *sas_device_priv_data;
2704 struct _sas_device *sas_device;
2705 unsigned long flags;
2706 u16 handle;
2707 int r;
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302708 struct scsi_target *starget = scmd->device->sdev_target;
Eric Moore993e0da2009-05-18 13:00:45 -06002709
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302710 starget_printk(KERN_INFO, starget, "attempting target reset! "
2711 "scmd(%p)\n", scmd);
2712 _scsih_tm_display_info(ioc, scmd);
Eric Moore993e0da2009-05-18 13:00:45 -06002713
2714 sas_device_priv_data = scmd->device->hostdata;
2715 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302716 starget_printk(KERN_INFO, starget, "target been deleted! "
2717 "scmd(%p)\n", scmd);
Eric Moore993e0da2009-05-18 13:00:45 -06002718 scmd->result = DID_NO_CONNECT << 16;
2719 scmd->scsi_done(scmd);
2720 r = SUCCESS;
2721 goto out;
2722 }
2723
2724 /* for hidden raid components obtain the volume_handle */
2725 handle = 0;
2726 if (sas_device_priv_data->sas_target->flags &
2727 MPT_TARGET_FLAGS_RAID_COMPONENT) {
2728 spin_lock_irqsave(&ioc->sas_device_lock, flags);
2729 sas_device = _scsih_sas_device_find_by_handle(ioc,
2730 sas_device_priv_data->sas_target->handle);
2731 if (sas_device)
2732 handle = sas_device->volume_handle;
2733 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
2734 } else
2735 handle = sas_device_priv_data->sas_target->handle;
2736
2737 if (!handle) {
2738 scmd->result = DID_RESET << 16;
2739 r = FAILED;
2740 goto out;
2741 }
2742
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05302743 r = mpt2sas_scsih_issue_tm(ioc, handle, scmd->device->channel,
2744 scmd->device->id, 0, MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET, 0,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302745 30, 0, TM_MUTEX_ON);
Eric Moore635374e2009-03-09 01:21:12 -06002746
2747 out:
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302748 starget_printk(KERN_INFO, starget, "target reset: %s scmd(%p)\n",
2749 ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
Eric Moore635374e2009-03-09 01:21:12 -06002750 return r;
2751}
2752
2753/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302754 * _scsih_host_reset - eh threads main host reset routine
Kashyap, Desai8e864a82010-06-17 13:48:46 +05302755 * @scmd: pointer to scsi command object
Eric Moore635374e2009-03-09 01:21:12 -06002756 *
2757 * Returns SUCCESS if command aborted else FAILED
2758 */
2759static int
Eric Moored5d135b2009-05-18 13:02:08 -06002760_scsih_host_reset(struct scsi_cmnd *scmd)
Eric Moore635374e2009-03-09 01:21:12 -06002761{
2762 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
2763 int r, retval;
2764
2765 printk(MPT2SAS_INFO_FMT "attempting host reset! scmd(%p)\n",
2766 ioc->name, scmd);
2767 scsi_print_command(scmd);
2768
2769 retval = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
2770 FORCE_BIG_HAMMER);
2771 r = (retval < 0) ? FAILED : SUCCESS;
2772 printk(MPT2SAS_INFO_FMT "host reset: %s scmd(%p)\n",
2773 ioc->name, ((r == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
2774
2775 return r;
2776}
2777
2778/**
2779 * _scsih_fw_event_add - insert and queue up fw_event
2780 * @ioc: per adapter object
2781 * @fw_event: object describing the event
2782 * Context: This function will acquire ioc->fw_event_lock.
2783 *
2784 * This adds the firmware event object into link list, then queues it up to
2785 * be processed from user context.
2786 *
2787 * Return nothing.
2788 */
2789static void
2790_scsih_fw_event_add(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work *fw_event)
2791{
2792 unsigned long flags;
2793
2794 if (ioc->firmware_event_thread == NULL)
2795 return;
2796
2797 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2798 list_add_tail(&fw_event->list, &ioc->fw_event_list);
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302799 INIT_DELAYED_WORK(&fw_event->delayed_work, _firmware_event_work);
2800 queue_delayed_work(ioc->firmware_event_thread,
2801 &fw_event->delayed_work, 0);
Eric Moore635374e2009-03-09 01:21:12 -06002802 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2803}
2804
2805/**
2806 * _scsih_fw_event_free - delete fw_event
2807 * @ioc: per adapter object
2808 * @fw_event: object describing the event
2809 * Context: This function will acquire ioc->fw_event_lock.
2810 *
2811 * This removes firmware event object from link list, frees associated memory.
2812 *
2813 * Return nothing.
2814 */
2815static void
2816_scsih_fw_event_free(struct MPT2SAS_ADAPTER *ioc, struct fw_event_work
2817 *fw_event)
2818{
2819 unsigned long flags;
2820
2821 spin_lock_irqsave(&ioc->fw_event_lock, flags);
2822 list_del(&fw_event->list);
2823 kfree(fw_event->event_data);
2824 kfree(fw_event);
2825 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
2826}
2827
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302828
Eric Moore635374e2009-03-09 01:21:12 -06002829/**
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302830 * _scsih_error_recovery_delete_devices - remove devices not responding
Eric Moore635374e2009-03-09 01:21:12 -06002831 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06002832 *
2833 * Return nothing.
2834 */
2835static void
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302836_scsih_error_recovery_delete_devices(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06002837{
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302838 struct fw_event_work *fw_event;
2839
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302840 if (ioc->is_driver_loading)
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302841 return;
Dan Carpenter181a9d72011-11-04 21:25:01 +03002842
2843 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
2844 if (!fw_event)
2845 return;
2846
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302847 fw_event->event = MPT2SAS_REMOVE_UNRESPONDING_DEVICES;
2848 fw_event->ioc = ioc;
2849 _scsih_fw_event_add(ioc, fw_event);
2850}
2851
2852/**
2853 * mpt2sas_port_enable_complete - port enable completed (fake event)
2854 * @ioc: per adapter object
2855 *
2856 * Return nothing.
2857 */
2858void
2859mpt2sas_port_enable_complete(struct MPT2SAS_ADAPTER *ioc)
2860{
2861 struct fw_event_work *fw_event;
2862
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302863 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
2864 if (!fw_event)
2865 return;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05302866 fw_event->event = MPT2SAS_PORT_ENABLE_COMPLETE;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302867 fw_event->ioc = ioc;
2868 _scsih_fw_event_add(ioc, fw_event);
2869}
2870
2871/**
2872 * _scsih_fw_event_cleanup_queue - cleanup event queue
2873 * @ioc: per adapter object
2874 *
2875 * Walk the firmware event queue, either killing timers, or waiting
2876 * for outstanding events to complete
2877 *
2878 * Return nothing.
2879 */
2880static void
2881_scsih_fw_event_cleanup_queue(struct MPT2SAS_ADAPTER *ioc)
2882{
2883 struct fw_event_work *fw_event, *next;
2884
2885 if (list_empty(&ioc->fw_event_list) ||
2886 !ioc->firmware_event_thread || in_interrupt())
Eric Moore635374e2009-03-09 01:21:12 -06002887 return;
2888
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05302889 list_for_each_entry_safe(fw_event, next, &ioc->fw_event_list, list) {
2890 if (cancel_delayed_work(&fw_event->delayed_work)) {
2891 _scsih_fw_event_free(ioc, fw_event);
2892 continue;
2893 }
2894 fw_event->cancel_pending_work = 1;
2895 }
Eric Moore635374e2009-03-09 01:21:12 -06002896}
2897
Eric Moore635374e2009-03-09 01:21:12 -06002898/**
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302899 * _scsih_ublock_io_all_device - unblock every device
2900 * @ioc: per adapter object
2901 *
2902 * change the device state from block to running
2903 */
2904static void
2905_scsih_ublock_io_all_device(struct MPT2SAS_ADAPTER *ioc)
2906{
2907 struct MPT2SAS_DEVICE *sas_device_priv_data;
2908 struct scsi_device *sdev;
2909
2910 shost_for_each_device(sdev, ioc->shost) {
2911 sas_device_priv_data = sdev->hostdata;
2912 if (!sas_device_priv_data)
2913 continue;
2914 if (!sas_device_priv_data->block)
2915 continue;
2916 sas_device_priv_data->block = 0;
2917 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev, "device_running, "
2918 "handle(0x%04x)\n",
2919 sas_device_priv_data->sas_target->handle));
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002920 scsi_internal_device_unblock(sdev, SDEV_RUNNING);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302921 }
2922}
2923/**
Eric Moore635374e2009-03-09 01:21:12 -06002924 * _scsih_ublock_io_device - set the device state to SDEV_RUNNING
2925 * @ioc: per adapter object
2926 * @handle: device handle
2927 *
2928 * During device pull we need to appropiately set the sdev state.
2929 */
2930static void
nagalakshmi.nandigama@lsi.com39af7a92012-03-20 12:09:26 +05302931_scsih_ublock_io_device(struct MPT2SAS_ADAPTER *ioc, u64 sas_address)
Eric Moore635374e2009-03-09 01:21:12 -06002932{
2933 struct MPT2SAS_DEVICE *sas_device_priv_data;
2934 struct scsi_device *sdev;
2935
2936 shost_for_each_device(sdev, ioc->shost) {
2937 sas_device_priv_data = sdev->hostdata;
2938 if (!sas_device_priv_data)
2939 continue;
2940 if (!sas_device_priv_data->block)
2941 continue;
nagalakshmi.nandigama@lsi.com39af7a92012-03-20 12:09:26 +05302942 if (sas_device_priv_data->sas_target->sas_address ==
2943 sas_address) {
Eric Moore635374e2009-03-09 01:21:12 -06002944 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev,
2945 MPT2SAS_INFO_FMT "SDEV_RUNNING: "
nagalakshmi.nandigama@lsi.com39af7a92012-03-20 12:09:26 +05302946 "sas address(0x%016llx)\n", ioc->name,
2947 (unsigned long long)sas_address));
Eric Moore635374e2009-03-09 01:21:12 -06002948 sas_device_priv_data->block = 0;
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002949 scsi_internal_device_unblock(sdev, SDEV_RUNNING);
Eric Moore635374e2009-03-09 01:21:12 -06002950 }
2951 }
2952}
2953
2954/**
Kashyap, Desaif93213d2011-06-14 10:56:43 +05302955 * _scsih_block_io_all_device - set the device state to SDEV_BLOCK
2956 * @ioc: per adapter object
2957 * @handle: device handle
2958 *
2959 * During device pull we need to appropiately set the sdev state.
2960 */
2961static void
2962_scsih_block_io_all_device(struct MPT2SAS_ADAPTER *ioc)
2963{
2964 struct MPT2SAS_DEVICE *sas_device_priv_data;
2965 struct scsi_device *sdev;
2966
2967 shost_for_each_device(sdev, ioc->shost) {
2968 sas_device_priv_data = sdev->hostdata;
2969 if (!sas_device_priv_data)
2970 continue;
2971 if (sas_device_priv_data->block)
2972 continue;
2973 sas_device_priv_data->block = 1;
2974 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev, "device_blocked, "
2975 "handle(0x%04x)\n",
2976 sas_device_priv_data->sas_target->handle));
2977 scsi_internal_device_block(sdev);
2978 }
2979}
2980
2981
2982/**
Eric Moore635374e2009-03-09 01:21:12 -06002983 * _scsih_block_io_device - set the device state to SDEV_BLOCK
2984 * @ioc: per adapter object
2985 * @handle: device handle
2986 *
2987 * During device pull we need to appropiately set the sdev state.
2988 */
2989static void
2990_scsih_block_io_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
2991{
2992 struct MPT2SAS_DEVICE *sas_device_priv_data;
2993 struct scsi_device *sdev;
2994
2995 shost_for_each_device(sdev, ioc->shost) {
2996 sas_device_priv_data = sdev->hostdata;
2997 if (!sas_device_priv_data)
2998 continue;
2999 if (sas_device_priv_data->block)
3000 continue;
3001 if (sas_device_priv_data->sas_target->handle == handle) {
3002 dewtprintk(ioc, sdev_printk(KERN_INFO, sdev,
3003 MPT2SAS_INFO_FMT "SDEV_BLOCK: "
3004 "handle(0x%04x)\n", ioc->name, handle));
3005 sas_device_priv_data->block = 1;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05303006 scsi_internal_device_block(sdev);
Eric Moore635374e2009-03-09 01:21:12 -06003007 }
3008 }
3009}
3010
3011/**
3012 * _scsih_block_io_to_children_attached_to_ex
3013 * @ioc: per adapter object
3014 * @sas_expander: the sas_device object
3015 *
3016 * This routine set sdev state to SDEV_BLOCK for all devices
3017 * attached to this expander. This function called when expander is
3018 * pulled.
3019 */
3020static void
3021_scsih_block_io_to_children_attached_to_ex(struct MPT2SAS_ADAPTER *ioc,
3022 struct _sas_node *sas_expander)
3023{
3024 struct _sas_port *mpt2sas_port;
3025 struct _sas_device *sas_device;
3026 struct _sas_node *expander_sibling;
3027 unsigned long flags;
3028
3029 if (!sas_expander)
3030 return;
3031
3032 list_for_each_entry(mpt2sas_port,
3033 &sas_expander->sas_port_list, port_list) {
3034 if (mpt2sas_port->remote_identify.device_type ==
3035 SAS_END_DEVICE) {
3036 spin_lock_irqsave(&ioc->sas_device_lock, flags);
3037 sas_device =
3038 mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
3039 mpt2sas_port->remote_identify.sas_address);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05303040 if (sas_device)
3041 set_bit(sas_device->handle,
3042 ioc->blocking_handles);
Eric Moore635374e2009-03-09 01:21:12 -06003043 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06003044 }
3045 }
3046
3047 list_for_each_entry(mpt2sas_port,
3048 &sas_expander->sas_port_list, port_list) {
3049
3050 if (mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05303051 SAS_EDGE_EXPANDER_DEVICE ||
Eric Moore635374e2009-03-09 01:21:12 -06003052 mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05303053 SAS_FANOUT_EXPANDER_DEVICE) {
Eric Moore635374e2009-03-09 01:21:12 -06003054 expander_sibling =
3055 mpt2sas_scsih_expander_find_by_sas_address(
3056 ioc, mpt2sas_port->remote_identify.sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06003057 _scsih_block_io_to_children_attached_to_ex(ioc,
3058 expander_sibling);
3059 }
3060 }
3061}
3062
3063/**
3064 * _scsih_block_io_to_children_attached_directly
3065 * @ioc: per adapter object
3066 * @event_data: topology change event data
3067 *
3068 * This routine set sdev state to SDEV_BLOCK for all devices
3069 * direct attached during device pull.
3070 */
3071static void
3072_scsih_block_io_to_children_attached_directly(struct MPT2SAS_ADAPTER *ioc,
3073 Mpi2EventDataSasTopologyChangeList_t *event_data)
3074{
3075 int i;
3076 u16 handle;
3077 u16 reason_code;
3078 u8 phy_number;
3079
3080 for (i = 0; i < event_data->NumEntries; i++) {
3081 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
3082 if (!handle)
3083 continue;
3084 phy_number = event_data->StartPhyNum + i;
3085 reason_code = event_data->PHY[i].PhyStatus &
3086 MPI2_EVENT_SAS_TOPO_RC_MASK;
3087 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING)
3088 _scsih_block_io_device(ioc, handle);
3089 }
3090}
3091
3092/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303093 * _scsih_tm_tr_send - send task management request
3094 * @ioc: per adapter object
3095 * @handle: device handle
3096 * Context: interrupt time.
3097 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003098 * This code is to initiate the device removal handshake protocol
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303099 * with controller firmware. This function will issue target reset
3100 * using high priority request queue. It will send a sas iounit
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003101 * control request (MPI2_SAS_OP_REMOVE_DEVICE) from this completion.
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303102 *
3103 * This is designed to send muliple task management request at the same
3104 * time to the fifo. If the fifo is full, we will append the request,
3105 * and process it in a future completion.
3106 */
3107static void
3108_scsih_tm_tr_send(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3109{
3110 Mpi2SCSITaskManagementRequest_t *mpi_request;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303111 u16 smid;
3112 struct _sas_device *sas_device;
nagalakshmi.nandigama@lsi.comf3db0322011-10-19 15:37:14 +05303113 struct MPT2SAS_TARGET *sas_target_priv_data = NULL;
3114 u64 sas_address = 0;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303115 unsigned long flags;
3116 struct _tr_list *delayed_tr;
nagalakshmi.nandigama@lsi.comf881cea2011-10-19 15:37:00 +05303117 u32 ioc_state;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303118
nagalakshmi.nandigama@lsi.comf881cea2011-10-19 15:37:00 +05303119 if (ioc->remove_host) {
3120 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host has been "
3121 "removed: handle(0x%04x)\n", __func__, ioc->name, handle));
3122 return;
3123 } else if (ioc->pci_error_recovery) {
3124 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host in pci "
3125 "error recovery: handle(0x%04x)\n", __func__, ioc->name,
3126 handle));
3127 return;
3128 }
3129 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3130 if (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
3131 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host is not "
3132 "operational: handle(0x%04x)\n", __func__, ioc->name,
3133 handle));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303134 return;
3135 }
3136
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303137 /* if PD, then return */
3138 if (test_bit(handle, ioc->pd_handles))
3139 return;
3140
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303141 spin_lock_irqsave(&ioc->sas_device_lock, flags);
3142 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303143 if (sas_device && sas_device->starget &&
3144 sas_device->starget->hostdata) {
3145 sas_target_priv_data = sas_device->starget->hostdata;
3146 sas_target_priv_data->deleted = 1;
nagalakshmi.nandigama@lsi.comf3db0322011-10-19 15:37:14 +05303147 sas_address = sas_device->sas_address;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303148 }
3149 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303150
nagalakshmi.nandigama@lsi.comf3db0322011-10-19 15:37:14 +05303151 if (sas_target_priv_data) {
3152 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "setting delete flag: "
3153 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc->name, handle,
3154 (unsigned long long)sas_address));
nagalakshmi.nandigama@lsi.com39af7a92012-03-20 12:09:26 +05303155 _scsih_ublock_io_device(ioc, sas_address);
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05303156 sas_target_priv_data->handle = MPT2SAS_INVALID_DEVICE_HANDLE;
nagalakshmi.nandigama@lsi.comf3db0322011-10-19 15:37:14 +05303157 }
3158
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303159 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_tr_cb_idx);
3160 if (!smid) {
3161 delayed_tr = kzalloc(sizeof(*delayed_tr), GFP_ATOMIC);
3162 if (!delayed_tr)
3163 return;
3164 INIT_LIST_HEAD(&delayed_tr->list);
3165 delayed_tr->handle = handle;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303166 list_add_tail(&delayed_tr->list, &ioc->delayed_tr_list);
3167 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3168 "DELAYED:tr:handle(0x%04x), (open)\n",
3169 ioc->name, handle));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303170 return;
3171 }
3172
Kashyap, Desai1278b112010-03-09 17:34:13 +05303173 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "tr_send:handle(0x%04x), "
3174 "(open), smid(%d), cb(%d)\n", ioc->name, handle, smid,
3175 ioc->tm_tr_cb_idx));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303176 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3177 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
3178 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
3179 mpi_request->DevHandle = cpu_to_le16(handle);
3180 mpi_request->TaskType = MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303181 mpt2sas_base_put_smid_hi_priority(ioc, smid);
3182}
3183
3184
3185
3186/**
3187 * _scsih_sas_control_complete - completion routine
3188 * @ioc: per adapter object
3189 * @smid: system request message index
3190 * @msix_index: MSIX table index supplied by the OS
3191 * @reply: reply message frame(lower 32bit addr)
3192 * Context: interrupt time.
3193 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003194 * This is the sas iounit control completion routine.
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303195 * This code is part of the code to initiate the device removal
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003196 * handshake protocol with controller firmware.
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303197 *
3198 * Return 1 meaning mf should be freed from _base_interrupt
3199 * 0 means the mf is freed from this function.
3200 */
3201static u8
3202_scsih_sas_control_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid,
3203 u8 msix_index, u32 reply)
3204{
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303205 Mpi2SasIoUnitControlReply_t *mpi_reply =
3206 mpt2sas_base_get_reply_virt_addr(ioc, reply);
nagalakshmi.nandigama@lsi.com298c7942012-03-20 12:07:17 +05303207 if (likely(mpi_reply)) {
3208 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3209 "sc_complete:handle(0x%04x), (open) "
3210 "smid(%d), ioc_status(0x%04x), loginfo(0x%08x)\n",
3211 ioc->name, le16_to_cpu(mpi_reply->DevHandle), smid,
3212 le16_to_cpu(mpi_reply->IOCStatus),
3213 le32_to_cpu(mpi_reply->IOCLogInfo)));
3214 } else {
3215 printk(MPT2SAS_ERR_FMT "mpi_reply not valid at %s:%d/%s()!\n",
3216 ioc->name, __FILE__, __LINE__, __func__);
3217 }
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303218 return 1;
3219}
3220
3221/**
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303222 * _scsih_tm_tr_volume_send - send target reset request for volumes
3223 * @ioc: per adapter object
3224 * @handle: device handle
3225 * Context: interrupt time.
3226 *
3227 * This is designed to send muliple task management request at the same
3228 * time to the fifo. If the fifo is full, we will append the request,
3229 * and process it in a future completion.
3230 */
3231static void
3232_scsih_tm_tr_volume_send(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3233{
3234 Mpi2SCSITaskManagementRequest_t *mpi_request;
3235 u16 smid;
3236 struct _tr_list *delayed_tr;
3237
Eric Moore3cb54692010-07-08 14:44:34 -06003238 if (ioc->shost_recovery || ioc->remove_host ||
3239 ioc->pci_error_recovery) {
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303240 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host reset in "
3241 "progress!\n", __func__, ioc->name));
3242 return;
3243 }
3244
3245 smid = mpt2sas_base_get_smid_hpr(ioc, ioc->tm_tr_volume_cb_idx);
3246 if (!smid) {
3247 delayed_tr = kzalloc(sizeof(*delayed_tr), GFP_ATOMIC);
3248 if (!delayed_tr)
3249 return;
3250 INIT_LIST_HEAD(&delayed_tr->list);
3251 delayed_tr->handle = handle;
3252 list_add_tail(&delayed_tr->list, &ioc->delayed_tr_volume_list);
3253 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3254 "DELAYED:tr:handle(0x%04x), (open)\n",
3255 ioc->name, handle));
3256 return;
3257 }
3258
3259 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "tr_send:handle(0x%04x), "
3260 "(open), smid(%d), cb(%d)\n", ioc->name, handle, smid,
3261 ioc->tm_tr_volume_cb_idx));
3262 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3263 memset(mpi_request, 0, sizeof(Mpi2SCSITaskManagementRequest_t));
3264 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
3265 mpi_request->DevHandle = cpu_to_le16(handle);
3266 mpi_request->TaskType = MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET;
3267 mpt2sas_base_put_smid_hi_priority(ioc, smid);
3268}
3269
3270/**
3271 * _scsih_tm_volume_tr_complete - target reset completion
3272 * @ioc: per adapter object
3273 * @smid: system request message index
3274 * @msix_index: MSIX table index supplied by the OS
3275 * @reply: reply message frame(lower 32bit addr)
3276 * Context: interrupt time.
3277 *
3278 * Return 1 meaning mf should be freed from _base_interrupt
3279 * 0 means the mf is freed from this function.
3280 */
3281static u8
3282_scsih_tm_volume_tr_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid,
3283 u8 msix_index, u32 reply)
3284{
3285 u16 handle;
3286 Mpi2SCSITaskManagementRequest_t *mpi_request_tm;
3287 Mpi2SCSITaskManagementReply_t *mpi_reply =
3288 mpt2sas_base_get_reply_virt_addr(ioc, reply);
3289
Eric Moore3cb54692010-07-08 14:44:34 -06003290 if (ioc->shost_recovery || ioc->remove_host ||
3291 ioc->pci_error_recovery) {
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303292 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host reset in "
3293 "progress!\n", __func__, ioc->name));
3294 return 1;
3295 }
nagalakshmi.nandigama@lsi.com298c7942012-03-20 12:07:17 +05303296 if (unlikely(!mpi_reply)) {
3297 printk(MPT2SAS_ERR_FMT "mpi_reply not valid at %s:%d/%s()!\n",
3298 ioc->name, __FILE__, __LINE__, __func__);
3299 return 1;
3300 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303301 mpi_request_tm = mpt2sas_base_get_msg_frame(ioc, smid);
3302 handle = le16_to_cpu(mpi_request_tm->DevHandle);
3303 if (handle != le16_to_cpu(mpi_reply->DevHandle)) {
3304 dewtprintk(ioc, printk("spurious interrupt: "
3305 "handle(0x%04x:0x%04x), smid(%d)!!!\n", handle,
3306 le16_to_cpu(mpi_reply->DevHandle), smid));
3307 return 0;
3308 }
3309
3310 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3311 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
3312 "loginfo(0x%08x), completed(%d)\n", ioc->name,
3313 handle, smid, le16_to_cpu(mpi_reply->IOCStatus),
3314 le32_to_cpu(mpi_reply->IOCLogInfo),
3315 le32_to_cpu(mpi_reply->TerminationCount)));
3316
3317 return _scsih_check_for_pending_tm(ioc, smid);
3318}
3319
3320/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303321 * _scsih_tm_tr_complete -
3322 * @ioc: per adapter object
3323 * @smid: system request message index
3324 * @msix_index: MSIX table index supplied by the OS
3325 * @reply: reply message frame(lower 32bit addr)
3326 * Context: interrupt time.
3327 *
3328 * This is the target reset completion routine.
3329 * This code is part of the code to initiate the device removal
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003330 * handshake protocol with controller firmware.
3331 * It will send a sas iounit control request (MPI2_SAS_OP_REMOVE_DEVICE)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303332 *
3333 * Return 1 meaning mf should be freed from _base_interrupt
3334 * 0 means the mf is freed from this function.
3335 */
3336static u8
3337_scsih_tm_tr_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
3338 u32 reply)
3339{
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303340 u16 handle;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303341 Mpi2SCSITaskManagementRequest_t *mpi_request_tm;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303342 Mpi2SCSITaskManagementReply_t *mpi_reply =
3343 mpt2sas_base_get_reply_virt_addr(ioc, reply);
3344 Mpi2SasIoUnitControlRequest_t *mpi_request;
3345 u16 smid_sas_ctrl;
nagalakshmi.nandigama@lsi.comf881cea2011-10-19 15:37:00 +05303346 u32 ioc_state;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303347
nagalakshmi.nandigama@lsi.comf881cea2011-10-19 15:37:00 +05303348 if (ioc->remove_host) {
3349 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host has been "
3350 "removed\n", __func__, ioc->name));
3351 return 1;
3352 } else if (ioc->pci_error_recovery) {
3353 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host in pci "
3354 "error recovery\n", __func__, ioc->name));
3355 return 1;
3356 }
3357 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3358 if (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
3359 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: host is not "
3360 "operational\n", __func__, ioc->name));
Kashyap, Desai1278b112010-03-09 17:34:13 +05303361 return 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303362 }
nagalakshmi.nandigama@lsi.com298c7942012-03-20 12:07:17 +05303363 if (unlikely(!mpi_reply)) {
3364 printk(MPT2SAS_ERR_FMT "mpi_reply not valid at %s:%d/%s()!\n",
3365 ioc->name, __FILE__, __LINE__, __func__);
3366 return 1;
3367 }
Kashyap, Desai1278b112010-03-09 17:34:13 +05303368 mpi_request_tm = mpt2sas_base_get_msg_frame(ioc, smid);
3369 handle = le16_to_cpu(mpi_request_tm->DevHandle);
3370 if (handle != le16_to_cpu(mpi_reply->DevHandle)) {
3371 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "spurious interrupt: "
3372 "handle(0x%04x:0x%04x), smid(%d)!!!\n", ioc->name, handle,
3373 le16_to_cpu(mpi_reply->DevHandle), smid));
3374 return 0;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303375 }
3376
Kashyap, Desai1278b112010-03-09 17:34:13 +05303377 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3378 "tr_complete:handle(0x%04x), (open) smid(%d), ioc_status(0x%04x), "
3379 "loginfo(0x%08x), completed(%d)\n", ioc->name,
3380 handle, smid, le16_to_cpu(mpi_reply->IOCStatus),
3381 le32_to_cpu(mpi_reply->IOCLogInfo),
3382 le32_to_cpu(mpi_reply->TerminationCount)));
3383
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303384 smid_sas_ctrl = mpt2sas_base_get_smid(ioc, ioc->tm_sas_control_cb_idx);
3385 if (!smid_sas_ctrl) {
3386 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3387 ioc->name, __func__);
Kashyap, Desai1278b112010-03-09 17:34:13 +05303388 return 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303389 }
3390
Kashyap, Desai1278b112010-03-09 17:34:13 +05303391 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "sc_send:handle(0x%04x), "
3392 "(open), smid(%d), cb(%d)\n", ioc->name, handle, smid_sas_ctrl,
3393 ioc->tm_sas_control_cb_idx));
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303394 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid_sas_ctrl);
3395 memset(mpi_request, 0, sizeof(Mpi2SasIoUnitControlRequest_t));
3396 mpi_request->Function = MPI2_FUNCTION_SAS_IO_UNIT_CONTROL;
3397 mpi_request->Operation = MPI2_SAS_OP_REMOVE_DEVICE;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303398 mpi_request->DevHandle = mpi_request_tm->DevHandle;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303399 mpt2sas_base_put_smid_default(ioc, smid_sas_ctrl);
Kashyap, Desai1278b112010-03-09 17:34:13 +05303400
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303401 return _scsih_check_for_pending_tm(ioc, smid);
3402}
3403
3404/**
3405 * _scsih_check_for_pending_tm - check for pending task management
3406 * @ioc: per adapter object
3407 * @smid: system request message index
3408 *
3409 * This will check delayed target reset list, and feed the
3410 * next reqeust.
3411 *
3412 * Return 1 meaning mf should be freed from _base_interrupt
3413 * 0 means the mf is freed from this function.
3414 */
3415static u8
3416_scsih_check_for_pending_tm(struct MPT2SAS_ADAPTER *ioc, u16 smid)
3417{
3418 struct _tr_list *delayed_tr;
3419
3420 if (!list_empty(&ioc->delayed_tr_volume_list)) {
3421 delayed_tr = list_entry(ioc->delayed_tr_volume_list.next,
3422 struct _tr_list, list);
3423 mpt2sas_base_free_smid(ioc, smid);
3424 _scsih_tm_tr_volume_send(ioc, delayed_tr->handle);
3425 list_del(&delayed_tr->list);
3426 kfree(delayed_tr);
3427 return 0;
3428 }
3429
Kashyap, Desai1278b112010-03-09 17:34:13 +05303430 if (!list_empty(&ioc->delayed_tr_list)) {
3431 delayed_tr = list_entry(ioc->delayed_tr_list.next,
3432 struct _tr_list, list);
3433 mpt2sas_base_free_smid(ioc, smid);
3434 _scsih_tm_tr_send(ioc, delayed_tr->handle);
3435 list_del(&delayed_tr->list);
3436 kfree(delayed_tr);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303437 return 0;
Kashyap, Desai1278b112010-03-09 17:34:13 +05303438 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303439
Kashyap, Desai1278b112010-03-09 17:34:13 +05303440 return 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303441}
3442
3443/**
Eric Moore635374e2009-03-09 01:21:12 -06003444 * _scsih_check_topo_delete_events - sanity check on topo events
3445 * @ioc: per adapter object
3446 * @event_data: the event data payload
3447 *
3448 * This routine added to better handle cable breaker.
3449 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003450 * This handles the case where driver receives multiple expander
Eric Moore635374e2009-03-09 01:21:12 -06003451 * add and delete events in a single shot. When there is a delete event
3452 * the routine will void any pending add events waiting in the event queue.
3453 *
3454 * Return nothing.
3455 */
3456static void
3457_scsih_check_topo_delete_events(struct MPT2SAS_ADAPTER *ioc,
3458 Mpi2EventDataSasTopologyChangeList_t *event_data)
3459{
3460 struct fw_event_work *fw_event;
3461 Mpi2EventDataSasTopologyChangeList_t *local_event_data;
3462 u16 expander_handle;
3463 struct _sas_node *sas_expander;
3464 unsigned long flags;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303465 int i, reason_code;
3466 u16 handle;
3467
3468 for (i = 0 ; i < event_data->NumEntries; i++) {
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303469 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
3470 if (!handle)
3471 continue;
3472 reason_code = event_data->PHY[i].PhyStatus &
3473 MPI2_EVENT_SAS_TOPO_RC_MASK;
3474 if (reason_code == MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING)
3475 _scsih_tm_tr_send(ioc, handle);
3476 }
Eric Moore635374e2009-03-09 01:21:12 -06003477
3478 expander_handle = le16_to_cpu(event_data->ExpanderDevHandle);
3479 if (expander_handle < ioc->sas_hba.num_phys) {
3480 _scsih_block_io_to_children_attached_directly(ioc, event_data);
3481 return;
3482 }
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05303483 if (event_data->ExpStatus ==
3484 MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING) {
3485 /* put expander attached devices into blocking state */
Eric Moore635374e2009-03-09 01:21:12 -06003486 spin_lock_irqsave(&ioc->sas_node_lock, flags);
3487 sas_expander = mpt2sas_scsih_expander_find_by_handle(ioc,
3488 expander_handle);
Eric Moore635374e2009-03-09 01:21:12 -06003489 _scsih_block_io_to_children_attached_to_ex(ioc, sas_expander);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05303490 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
3491 do {
3492 handle = find_first_bit(ioc->blocking_handles,
3493 ioc->facts.MaxDevHandle);
3494 if (handle < ioc->facts.MaxDevHandle)
3495 _scsih_block_io_device(ioc, handle);
3496 } while (test_and_clear_bit(handle, ioc->blocking_handles));
Eric Moore635374e2009-03-09 01:21:12 -06003497 } else if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_RESPONDING)
3498 _scsih_block_io_to_children_attached_directly(ioc, event_data);
3499
3500 if (event_data->ExpStatus != MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING)
3501 return;
3502
3503 /* mark ignore flag for pending events */
3504 spin_lock_irqsave(&ioc->fw_event_lock, flags);
3505 list_for_each_entry(fw_event, &ioc->fw_event_list, list) {
3506 if (fw_event->event != MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST ||
3507 fw_event->ignore)
3508 continue;
3509 local_event_data = fw_event->event_data;
3510 if (local_event_data->ExpStatus ==
3511 MPI2_EVENT_SAS_TOPO_ES_ADDED ||
3512 local_event_data->ExpStatus ==
3513 MPI2_EVENT_SAS_TOPO_ES_RESPONDING) {
3514 if (le16_to_cpu(local_event_data->ExpanderDevHandle) ==
3515 expander_handle) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303516 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -06003517 "setting ignoring flag\n", ioc->name));
3518 fw_event->ignore = 1;
3519 }
3520 }
3521 }
3522 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
3523}
3524
3525/**
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303526 * _scsih_set_volume_delete_flag - setting volume delete flag
3527 * @ioc: per adapter object
3528 * @handle: device handle
3529 *
3530 * This
3531 * Return nothing.
3532 */
3533static void
3534_scsih_set_volume_delete_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle)
3535{
3536 struct _raid_device *raid_device;
3537 struct MPT2SAS_TARGET *sas_target_priv_data;
3538 unsigned long flags;
3539
3540 spin_lock_irqsave(&ioc->raid_device_lock, flags);
3541 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
3542 if (raid_device && raid_device->starget &&
3543 raid_device->starget->hostdata) {
3544 sas_target_priv_data =
3545 raid_device->starget->hostdata;
3546 sas_target_priv_data->deleted = 1;
3547 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3548 "setting delete flag: handle(0x%04x), "
3549 "wwid(0x%016llx)\n", ioc->name, handle,
3550 (unsigned long long) raid_device->wwid));
3551 }
3552 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
3553}
3554
3555/**
3556 * _scsih_set_volume_handle_for_tr - set handle for target reset to volume
3557 * @handle: input handle
3558 * @a: handle for volume a
3559 * @b: handle for volume b
3560 *
3561 * IR firmware only supports two raid volumes. The purpose of this
3562 * routine is to set the volume handle in either a or b. When the given
3563 * input handle is non-zero, or when a and b have not been set before.
3564 */
3565static void
3566_scsih_set_volume_handle_for_tr(u16 handle, u16 *a, u16 *b)
3567{
3568 if (!handle || handle == *a || handle == *b)
3569 return;
3570 if (!*a)
3571 *a = handle;
3572 else if (!*b)
3573 *b = handle;
3574}
3575
3576/**
3577 * _scsih_check_ir_config_unhide_events - check for UNHIDE events
3578 * @ioc: per adapter object
3579 * @event_data: the event data payload
3580 * Context: interrupt time.
3581 *
3582 * This routine will send target reset to volume, followed by target
3583 * resets to the PDs. This is called when a PD has been removed, or
3584 * volume has been deleted or removed. When the target reset is sent
3585 * to volume, the PD target resets need to be queued to start upon
3586 * completion of the volume target reset.
3587 *
3588 * Return nothing.
3589 */
3590static void
3591_scsih_check_ir_config_unhide_events(struct MPT2SAS_ADAPTER *ioc,
3592 Mpi2EventDataIrConfigChangeList_t *event_data)
3593{
3594 Mpi2EventIrConfigElement_t *element;
3595 int i;
3596 u16 handle, volume_handle, a, b;
3597 struct _tr_list *delayed_tr;
3598
3599 a = 0;
3600 b = 0;
3601
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303602 if (ioc->is_warpdrive)
3603 return;
3604
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303605 /* Volume Resets for Deleted or Removed */
3606 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
3607 for (i = 0; i < event_data->NumElements; i++, element++) {
3608 if (element->ReasonCode ==
3609 MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED ||
3610 element->ReasonCode ==
3611 MPI2_EVENT_IR_CHANGE_RC_REMOVED) {
3612 volume_handle = le16_to_cpu(element->VolDevHandle);
3613 _scsih_set_volume_delete_flag(ioc, volume_handle);
3614 _scsih_set_volume_handle_for_tr(volume_handle, &a, &b);
3615 }
3616 }
3617
3618 /* Volume Resets for UNHIDE events */
3619 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
3620 for (i = 0; i < event_data->NumElements; i++, element++) {
3621 if (le32_to_cpu(event_data->Flags) &
3622 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG)
3623 continue;
3624 if (element->ReasonCode == MPI2_EVENT_IR_CHANGE_RC_UNHIDE) {
3625 volume_handle = le16_to_cpu(element->VolDevHandle);
3626 _scsih_set_volume_handle_for_tr(volume_handle, &a, &b);
3627 }
3628 }
3629
3630 if (a)
3631 _scsih_tm_tr_volume_send(ioc, a);
3632 if (b)
3633 _scsih_tm_tr_volume_send(ioc, b);
3634
3635 /* PD target resets */
3636 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
3637 for (i = 0; i < event_data->NumElements; i++, element++) {
3638 if (element->ReasonCode != MPI2_EVENT_IR_CHANGE_RC_UNHIDE)
3639 continue;
3640 handle = le16_to_cpu(element->PhysDiskDevHandle);
3641 volume_handle = le16_to_cpu(element->VolDevHandle);
3642 clear_bit(handle, ioc->pd_handles);
3643 if (!volume_handle)
3644 _scsih_tm_tr_send(ioc, handle);
3645 else if (volume_handle == a || volume_handle == b) {
3646 delayed_tr = kzalloc(sizeof(*delayed_tr), GFP_ATOMIC);
3647 BUG_ON(!delayed_tr);
3648 INIT_LIST_HEAD(&delayed_tr->list);
3649 delayed_tr->handle = handle;
3650 list_add_tail(&delayed_tr->list, &ioc->delayed_tr_list);
3651 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
3652 "DELAYED:tr:handle(0x%04x), (open)\n", ioc->name,
3653 handle));
3654 } else
3655 _scsih_tm_tr_send(ioc, handle);
3656 }
3657}
3658
3659
3660/**
3661 * _scsih_check_volume_delete_events - set delete flag for volumes
3662 * @ioc: per adapter object
3663 * @event_data: the event data payload
3664 * Context: interrupt time.
3665 *
3666 * This will handle the case when the cable connected to entire volume is
3667 * pulled. We will take care of setting the deleted flag so normal IO will
3668 * not be sent.
3669 *
3670 * Return nothing.
3671 */
3672static void
3673_scsih_check_volume_delete_events(struct MPT2SAS_ADAPTER *ioc,
3674 Mpi2EventDataIrVolume_t *event_data)
3675{
3676 u32 state;
3677
3678 if (event_data->ReasonCode != MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED)
3679 return;
3680 state = le32_to_cpu(event_data->NewValue);
3681 if (state == MPI2_RAID_VOL_STATE_MISSING || state ==
3682 MPI2_RAID_VOL_STATE_FAILED)
3683 _scsih_set_volume_delete_flag(ioc,
3684 le16_to_cpu(event_data->VolDevHandle));
3685}
3686
3687/**
Eric Moore635374e2009-03-09 01:21:12 -06003688 * _scsih_flush_running_cmds - completing outstanding commands.
3689 * @ioc: per adapter object
3690 *
3691 * The flushing out of all pending scmd commands following host reset,
3692 * where all IO is dropped to the floor.
3693 *
3694 * Return nothing.
3695 */
3696static void
3697_scsih_flush_running_cmds(struct MPT2SAS_ADAPTER *ioc)
3698{
3699 struct scsi_cmnd *scmd;
3700 u16 smid;
3701 u16 count = 0;
3702
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303703 for (smid = 1; smid <= ioc->scsiio_depth; smid++) {
Kashyap, Desaiec07a052011-01-05 17:54:32 +05303704 scmd = _scsih_scsi_lookup_get_clear(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06003705 if (!scmd)
3706 continue;
3707 count++;
3708 mpt2sas_base_free_smid(ioc, smid);
3709 scsi_dma_unmap(scmd);
Eric Moore3cb54692010-07-08 14:44:34 -06003710 if (ioc->pci_error_recovery)
3711 scmd->result = DID_NO_CONNECT << 16;
3712 else
3713 scmd->result = DID_RESET << 16;
Eric Moore635374e2009-03-09 01:21:12 -06003714 scmd->scsi_done(scmd);
3715 }
3716 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "completing %d cmds\n",
3717 ioc->name, count));
3718}
3719
3720/**
Eric Moore3c621b32009-05-18 12:59:41 -06003721 * _scsih_setup_eedp - setup MPI request for EEDP transfer
3722 * @scmd: pointer to scsi command object
3723 * @mpi_request: pointer to the SCSI_IO reqest message frame
3724 *
3725 * Supporting protection 1 and 3.
3726 *
3727 * Returns nothing
3728 */
3729static void
3730_scsih_setup_eedp(struct scsi_cmnd *scmd, Mpi2SCSIIORequest_t *mpi_request)
3731{
3732 u16 eedp_flags;
3733 unsigned char prot_op = scsi_get_prot_op(scmd);
3734 unsigned char prot_type = scsi_get_prot_type(scmd);
3735
Eric Moored334aa72010-04-22 10:47:40 -06003736 if (prot_type == SCSI_PROT_DIF_TYPE0 || prot_op == SCSI_PROT_NORMAL)
Eric Moore3c621b32009-05-18 12:59:41 -06003737 return;
3738
3739 if (prot_op == SCSI_PROT_READ_STRIP)
3740 eedp_flags = MPI2_SCSIIO_EEDPFLAGS_CHECK_REMOVE_OP;
3741 else if (prot_op == SCSI_PROT_WRITE_INSERT)
3742 eedp_flags = MPI2_SCSIIO_EEDPFLAGS_INSERT_OP;
3743 else
3744 return;
3745
Eric Moore3c621b32009-05-18 12:59:41 -06003746 switch (prot_type) {
3747 case SCSI_PROT_DIF_TYPE1:
Martin K. Petersen756aca72011-05-18 00:45:22 -04003748 case SCSI_PROT_DIF_TYPE2:
Eric Moore3c621b32009-05-18 12:59:41 -06003749
3750 /*
3751 * enable ref/guard checking
3752 * auto increment ref tag
3753 */
Kashyap, Desai463217b2009-10-05 15:53:06 +05303754 eedp_flags |= MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG |
Eric Moore3c621b32009-05-18 12:59:41 -06003755 MPI2_SCSIIO_EEDPFLAGS_CHECK_REFTAG |
3756 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD;
3757 mpi_request->CDB.EEDP32.PrimaryReferenceTag =
3758 cpu_to_be32(scsi_get_lba(scmd));
Eric Moored334aa72010-04-22 10:47:40 -06003759 break;
Eric Moore3c621b32009-05-18 12:59:41 -06003760
Eric Moore3c621b32009-05-18 12:59:41 -06003761 case SCSI_PROT_DIF_TYPE3:
3762
3763 /*
3764 * enable guard checking
3765 */
Kashyap, Desai463217b2009-10-05 15:53:06 +05303766 eedp_flags |= MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD;
Eric Moore3c621b32009-05-18 12:59:41 -06003767 break;
3768 }
Kashyap, Desai463217b2009-10-05 15:53:06 +05303769 mpi_request->EEDPBlockSize = cpu_to_le32(scmd->device->sector_size);
3770 mpi_request->EEDPFlags = cpu_to_le16(eedp_flags);
Eric Moore3c621b32009-05-18 12:59:41 -06003771}
3772
3773/**
3774 * _scsih_eedp_error_handling - return sense code for EEDP errors
3775 * @scmd: pointer to scsi command object
3776 * @ioc_status: ioc status
3777 *
3778 * Returns nothing
3779 */
3780static void
3781_scsih_eedp_error_handling(struct scsi_cmnd *scmd, u16 ioc_status)
3782{
3783 u8 ascq;
Eric Moore3c621b32009-05-18 12:59:41 -06003784
3785 switch (ioc_status) {
3786 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
3787 ascq = 0x01;
3788 break;
3789 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
3790 ascq = 0x02;
3791 break;
3792 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
3793 ascq = 0x03;
3794 break;
3795 default:
3796 ascq = 0x00;
3797 break;
3798 }
3799
Martin K. Petersen9b5cd132012-08-28 14:29:36 -04003800 scsi_build_sense_buffer(0, scmd->sense_buffer, ILLEGAL_REQUEST, 0x10, ascq);
3801 scmd->result = DRIVER_SENSE << 24 | (DID_ABORT << 16) |
Eric Moore3c621b32009-05-18 12:59:41 -06003802 SAM_STAT_CHECK_CONDITION;
3803}
3804
3805/**
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303806 * _scsih_scsi_direct_io_get - returns direct io flag
3807 * @ioc: per adapter object
3808 * @smid: system request message index
3809 *
3810 * Returns the smid stored scmd pointer.
3811 */
3812static inline u8
3813_scsih_scsi_direct_io_get(struct MPT2SAS_ADAPTER *ioc, u16 smid)
3814{
3815 return ioc->scsi_lookup[smid - 1].direct_io;
3816}
3817
3818/**
3819 * _scsih_scsi_direct_io_set - sets direct io flag
3820 * @ioc: per adapter object
3821 * @smid: system request message index
3822 * @direct_io: Zero or non-zero value to set in the direct_io flag
3823 *
3824 * Returns Nothing.
3825 */
3826static inline void
3827_scsih_scsi_direct_io_set(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 direct_io)
3828{
3829 ioc->scsi_lookup[smid - 1].direct_io = direct_io;
3830}
3831
3832
3833/**
3834 * _scsih_setup_direct_io - setup MPI request for WARPDRIVE Direct I/O
3835 * @ioc: per adapter object
3836 * @scmd: pointer to scsi command object
3837 * @raid_device: pointer to raid device data structure
3838 * @mpi_request: pointer to the SCSI_IO reqest message frame
3839 * @smid: system request message index
3840 *
3841 * Returns nothing
3842 */
3843static void
3844_scsih_setup_direct_io(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd *scmd,
3845 struct _raid_device *raid_device, Mpi2SCSIIORequest_t *mpi_request,
3846 u16 smid)
3847{
3848 u32 v_lba, p_lba, stripe_off, stripe_unit, column, io_size;
3849 u32 stripe_sz, stripe_exp;
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05303850 u8 num_pds, *cdb_ptr, i;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303851 u8 cdb0 = scmd->cmnd[0];
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05303852 u64 v_llba;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303853
3854 /*
3855 * Try Direct I/O to RAID memeber disks
3856 */
3857 if (cdb0 == READ_16 || cdb0 == READ_10 ||
3858 cdb0 == WRITE_16 || cdb0 == WRITE_10) {
3859 cdb_ptr = mpi_request->CDB.CDB32;
3860
3861 if ((cdb0 < READ_16) || !(cdb_ptr[2] | cdb_ptr[3] | cdb_ptr[4]
3862 | cdb_ptr[5])) {
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05303863 io_size = scsi_bufflen(scmd) >>
3864 raid_device->block_exponent;
3865 i = (cdb0 < READ_16) ? 2 : 6;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303866 /* get virtual lba */
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05303867 v_lba = be32_to_cpu(*(__be32 *)(&cdb_ptr[i]));
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303868
3869 if (((u64)v_lba + (u64)io_size - 1) <=
3870 (u32)raid_device->max_lba) {
3871 stripe_sz = raid_device->stripe_sz;
3872 stripe_exp = raid_device->stripe_exponent;
3873 stripe_off = v_lba & (stripe_sz - 1);
3874
3875 /* Check whether IO falls within a stripe */
3876 if ((stripe_off + io_size) <= stripe_sz) {
3877 num_pds = raid_device->num_pds;
3878 p_lba = v_lba >> stripe_exp;
3879 stripe_unit = p_lba / num_pds;
3880 column = p_lba % num_pds;
3881 p_lba = (stripe_unit << stripe_exp) +
3882 stripe_off;
3883 mpi_request->DevHandle =
3884 cpu_to_le16(raid_device->
3885 pd_handle[column]);
nagalakshmi.nandigama@lsi.comba96bd02011-12-01 07:51:55 +05303886 (*(__be32 *)(&cdb_ptr[i])) =
3887 cpu_to_be32(p_lba);
3888 /*
3889 * WD: To indicate this I/O is directI/O
3890 */
3891 _scsih_scsi_direct_io_set(ioc, smid, 1);
3892 }
3893 }
3894 } else {
3895 io_size = scsi_bufflen(scmd) >>
3896 raid_device->block_exponent;
3897 /* get virtual lba */
3898 v_llba = be64_to_cpu(*(__be64 *)(&cdb_ptr[2]));
3899
3900 if ((v_llba + (u64)io_size - 1) <=
3901 raid_device->max_lba) {
3902 stripe_sz = raid_device->stripe_sz;
3903 stripe_exp = raid_device->stripe_exponent;
3904 stripe_off = (u32) (v_llba & (stripe_sz - 1));
3905
3906 /* Check whether IO falls within a stripe */
3907 if ((stripe_off + io_size) <= stripe_sz) {
3908 num_pds = raid_device->num_pds;
3909 p_lba = (u32)(v_llba >> stripe_exp);
3910 stripe_unit = p_lba / num_pds;
3911 column = p_lba % num_pds;
3912 p_lba = (stripe_unit << stripe_exp) +
3913 stripe_off;
3914 mpi_request->DevHandle =
3915 cpu_to_le16(raid_device->
3916 pd_handle[column]);
3917 (*(__be64 *)(&cdb_ptr[2])) =
3918 cpu_to_be64((u64)p_lba);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303919 /*
3920 * WD: To indicate this I/O is directI/O
3921 */
3922 _scsih_scsi_direct_io_set(ioc, smid, 1);
3923 }
3924 }
3925 }
3926 }
3927}
3928
3929/**
Eric Moored5d135b2009-05-18 13:02:08 -06003930 * _scsih_qcmd - main scsi request entry point
Eric Moore635374e2009-03-09 01:21:12 -06003931 * @scmd: pointer to scsi command object
3932 * @done: function pointer to be invoked on completion
3933 *
3934 * The callback index is set inside `ioc->scsi_io_cb_idx`.
3935 *
3936 * Returns 0 on success. If there's a failure, return either:
3937 * SCSI_MLQUEUE_DEVICE_BUSY if the device queue is full, or
3938 * SCSI_MLQUEUE_HOST_BUSY if the entire host queue is full
3939 */
3940static int
Jeff Garzikf2812332010-11-16 02:10:29 -05003941_scsih_qcmd_lck(struct scsi_cmnd *scmd, void (*done)(struct scsi_cmnd *))
Eric Moore635374e2009-03-09 01:21:12 -06003942{
3943 struct MPT2SAS_ADAPTER *ioc = shost_priv(scmd->device->host);
3944 struct MPT2SAS_DEVICE *sas_device_priv_data;
3945 struct MPT2SAS_TARGET *sas_target_priv_data;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303946 struct _raid_device *raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06003947 Mpi2SCSIIORequest_t *mpi_request;
3948 u32 mpi_control;
3949 u16 smid;
Eric Moore635374e2009-03-09 01:21:12 -06003950
3951 scmd->scsi_done = done;
3952 sas_device_priv_data = scmd->device->hostdata;
Kashyap, Desai130b9582010-04-08 17:54:32 +05303953 if (!sas_device_priv_data || !sas_device_priv_data->sas_target) {
Eric Moore635374e2009-03-09 01:21:12 -06003954 scmd->result = DID_NO_CONNECT << 16;
3955 scmd->scsi_done(scmd);
3956 return 0;
3957 }
3958
Kashyap, Desai78215782011-06-14 10:57:08 +05303959 if (ioc->pci_error_recovery || ioc->remove_host) {
Eric Moore3cb54692010-07-08 14:44:34 -06003960 scmd->result = DID_NO_CONNECT << 16;
3961 scmd->scsi_done(scmd);
3962 return 0;
3963 }
3964
Eric Moore635374e2009-03-09 01:21:12 -06003965 sas_target_priv_data = sas_device_priv_data->sas_target;
Kashyap, Desai130b9582010-04-08 17:54:32 +05303966 /* invalid device handle */
3967 if (sas_target_priv_data->handle == MPT2SAS_INVALID_DEVICE_HANDLE) {
Eric Moore635374e2009-03-09 01:21:12 -06003968 scmd->result = DID_NO_CONNECT << 16;
3969 scmd->scsi_done(scmd);
3970 return 0;
3971 }
3972
Kashyap, Desai130b9582010-04-08 17:54:32 +05303973 /* host recovery or link resets sent via IOCTLs */
3974 if (ioc->shost_recovery || ioc->ioc_link_reset_in_progress)
Eric Moore635374e2009-03-09 01:21:12 -06003975 return SCSI_MLQUEUE_HOST_BUSY;
Uwe Kleine-König65155b32010-06-11 12:17:01 +02003976 /* device busy with task management */
Kashyap, Desai130b9582010-04-08 17:54:32 +05303977 else if (sas_device_priv_data->block || sas_target_priv_data->tm_busy)
3978 return SCSI_MLQUEUE_DEVICE_BUSY;
3979 /* device has been deleted */
3980 else if (sas_target_priv_data->deleted) {
3981 scmd->result = DID_NO_CONNECT << 16;
3982 scmd->scsi_done(scmd);
3983 return 0;
3984 }
Eric Moore635374e2009-03-09 01:21:12 -06003985
3986 if (scmd->sc_data_direction == DMA_FROM_DEVICE)
3987 mpi_control = MPI2_SCSIIO_CONTROL_READ;
3988 else if (scmd->sc_data_direction == DMA_TO_DEVICE)
3989 mpi_control = MPI2_SCSIIO_CONTROL_WRITE;
3990 else
3991 mpi_control = MPI2_SCSIIO_CONTROL_NODATATRANSFER;
3992
3993 /* set tags */
3994 if (!(sas_device_priv_data->flags & MPT_DEVICE_FLAGS_INIT)) {
3995 if (scmd->device->tagged_supported) {
3996 if (scmd->device->ordered_tags)
3997 mpi_control |= MPI2_SCSIIO_CONTROL_ORDEREDQ;
3998 else
3999 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
4000 } else
Sreekanth Reddy48ba2ef2013-02-02 00:58:20 +05304001 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
Eric Moore635374e2009-03-09 01:21:12 -06004002 } else
4003 mpi_control |= MPI2_SCSIIO_CONTROL_SIMPLEQ;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304004 /* Make sure Device is not raid volume.
4005 * We do not expose raid functionality to upper layer for warpdrive.
4006 */
4007 if (!ioc->is_warpdrive && !_scsih_is_raid(&scmd->device->sdev_gendev) &&
Eric Moored334aa72010-04-22 10:47:40 -06004008 sas_is_tlr_enabled(scmd->device) && scmd->cmd_len != 32)
Eric Moore635374e2009-03-09 01:21:12 -06004009 mpi_control |= MPI2_SCSIIO_CONTROL_TLR_ON;
4010
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05304011 smid = mpt2sas_base_get_smid_scsiio(ioc, ioc->scsi_io_cb_idx, scmd);
Eric Moore635374e2009-03-09 01:21:12 -06004012 if (!smid) {
4013 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
4014 ioc->name, __func__);
4015 goto out;
4016 }
4017 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
4018 memset(mpi_request, 0, sizeof(Mpi2SCSIIORequest_t));
Eric Moore3c621b32009-05-18 12:59:41 -06004019 _scsih_setup_eedp(scmd, mpi_request);
Eric Moored334aa72010-04-22 10:47:40 -06004020 if (scmd->cmd_len == 32)
4021 mpi_control |= 4 << MPI2_SCSIIO_CONTROL_ADDCDBLEN_SHIFT;
Eric Moore635374e2009-03-09 01:21:12 -06004022 mpi_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
4023 if (sas_device_priv_data->sas_target->flags &
4024 MPT_TARGET_FLAGS_RAID_COMPONENT)
4025 mpi_request->Function = MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH;
4026 else
4027 mpi_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
4028 mpi_request->DevHandle =
4029 cpu_to_le16(sas_device_priv_data->sas_target->handle);
4030 mpi_request->DataLength = cpu_to_le32(scsi_bufflen(scmd));
4031 mpi_request->Control = cpu_to_le32(mpi_control);
4032 mpi_request->IoFlags = cpu_to_le16(scmd->cmd_len);
4033 mpi_request->MsgFlags = MPI2_SCSIIO_MSGFLAGS_SYSTEM_SENSE_ADDR;
4034 mpi_request->SenseBufferLength = SCSI_SENSE_BUFFERSIZE;
4035 mpi_request->SenseBufferLowAddress =
Kashyap, Desaiec9472c2009-09-23 17:34:13 +05304036 mpt2sas_base_get_sense_buffer_dma(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06004037 mpi_request->SGLOffset0 = offsetof(Mpi2SCSIIORequest_t, SGL) / 4;
4038 mpi_request->SGLFlags = cpu_to_le16(MPI2_SCSIIO_SGLFLAGS_TYPE_MPI +
4039 MPI2_SCSIIO_SGLFLAGS_SYSTEM_ADDR);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304040 mpi_request->VF_ID = 0; /* TODO */
4041 mpi_request->VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06004042 int_to_scsilun(sas_device_priv_data->lun, (struct scsi_lun *)
4043 mpi_request->LUN);
4044 memcpy(mpi_request->CDB.CDB32, scmd->cmnd, scmd->cmd_len);
4045
4046 if (!mpi_request->DataLength) {
4047 mpt2sas_base_build_zero_len_sge(ioc, &mpi_request->SGL);
4048 } else {
4049 if (_scsih_build_scatter_gather(ioc, scmd, smid)) {
4050 mpt2sas_base_free_smid(ioc, smid);
4051 goto out;
4052 }
4053 }
4054
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304055 raid_device = sas_target_priv_data->raid_device;
4056 if (raid_device && raid_device->direct_io_enabled)
4057 _scsih_setup_direct_io(ioc, scmd, raid_device, mpi_request,
4058 smid);
4059
Kashyap, Desai58287fd2010-03-17 16:27:25 +05304060 if (likely(mpi_request->Function == MPI2_FUNCTION_SCSI_IO_REQUEST))
4061 mpt2sas_base_put_smid_scsi_io(ioc, smid,
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304062 le16_to_cpu(mpi_request->DevHandle));
Kashyap, Desai58287fd2010-03-17 16:27:25 +05304063 else
4064 mpt2sas_base_put_smid_default(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06004065 return 0;
4066
4067 out:
4068 return SCSI_MLQUEUE_HOST_BUSY;
4069}
4070
Jeff Garzikf2812332010-11-16 02:10:29 -05004071static DEF_SCSI_QCMD(_scsih_qcmd)
4072
Eric Moore635374e2009-03-09 01:21:12 -06004073/**
4074 * _scsih_normalize_sense - normalize descriptor and fixed format sense data
4075 * @sense_buffer: sense data returned by target
4076 * @data: normalized skey/asc/ascq
4077 *
4078 * Return nothing.
4079 */
4080static void
4081_scsih_normalize_sense(char *sense_buffer, struct sense_info *data)
4082{
4083 if ((sense_buffer[0] & 0x7F) >= 0x72) {
4084 /* descriptor format */
4085 data->skey = sense_buffer[1] & 0x0F;
4086 data->asc = sense_buffer[2];
4087 data->ascq = sense_buffer[3];
4088 } else {
4089 /* fixed format */
4090 data->skey = sense_buffer[2] & 0x0F;
4091 data->asc = sense_buffer[12];
4092 data->ascq = sense_buffer[13];
4093 }
4094}
4095
4096#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4097/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004098 * _scsih_scsi_ioc_info - translated non-successful SCSI_IO request
Eric Moore635374e2009-03-09 01:21:12 -06004099 * @ioc: per adapter object
4100 * @scmd: pointer to scsi command object
4101 * @mpi_reply: reply mf payload returned from firmware
4102 *
4103 * scsi_status - SCSI Status code returned from target device
4104 * scsi_state - state info associated with SCSI_IO determined by ioc
4105 * ioc_status - ioc supplied status info
4106 *
4107 * Return nothing.
4108 */
4109static void
4110_scsih_scsi_ioc_info(struct MPT2SAS_ADAPTER *ioc, struct scsi_cmnd *scmd,
4111 Mpi2SCSIIOReply_t *mpi_reply, u16 smid)
4112{
4113 u32 response_info;
4114 u8 *response_bytes;
4115 u16 ioc_status = le16_to_cpu(mpi_reply->IOCStatus) &
4116 MPI2_IOCSTATUS_MASK;
4117 u8 scsi_state = mpi_reply->SCSIState;
4118 u8 scsi_status = mpi_reply->SCSIStatus;
4119 char *desc_ioc_state = NULL;
4120 char *desc_scsi_status = NULL;
4121 char *desc_scsi_state = ioc->tmp_string;
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +05304122 u32 log_info = le32_to_cpu(mpi_reply->IOCLogInfo);
Kashyap, Desai7fbae672010-06-17 13:45:17 +05304123 struct _sas_device *sas_device = NULL;
4124 unsigned long flags;
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304125 struct scsi_target *starget = scmd->device->sdev_target;
4126 struct MPT2SAS_TARGET *priv_target = starget->hostdata;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304127 char *device_str = NULL;
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304128
4129 if (!priv_target)
4130 return;
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +05304131
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304132 if (ioc->hide_ir_msg)
4133 device_str = "WarpDrive";
4134 else
4135 device_str = "volume";
4136
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +05304137 if (log_info == 0x31170000)
4138 return;
Eric Moore635374e2009-03-09 01:21:12 -06004139
4140 switch (ioc_status) {
4141 case MPI2_IOCSTATUS_SUCCESS:
4142 desc_ioc_state = "success";
4143 break;
4144 case MPI2_IOCSTATUS_INVALID_FUNCTION:
4145 desc_ioc_state = "invalid function";
4146 break;
4147 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
4148 desc_ioc_state = "scsi recovered error";
4149 break;
4150 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE:
4151 desc_ioc_state = "scsi invalid dev handle";
4152 break;
4153 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
4154 desc_ioc_state = "scsi device not there";
4155 break;
4156 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
4157 desc_ioc_state = "scsi data overrun";
4158 break;
4159 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
4160 desc_ioc_state = "scsi data underrun";
4161 break;
4162 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
4163 desc_ioc_state = "scsi io data error";
4164 break;
4165 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
4166 desc_ioc_state = "scsi protocol error";
4167 break;
4168 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
4169 desc_ioc_state = "scsi task terminated";
4170 break;
4171 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
4172 desc_ioc_state = "scsi residual mismatch";
4173 break;
4174 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
4175 desc_ioc_state = "scsi task mgmt failed";
4176 break;
4177 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
4178 desc_ioc_state = "scsi ioc terminated";
4179 break;
4180 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
4181 desc_ioc_state = "scsi ext terminated";
4182 break;
Eric Moore3c621b32009-05-18 12:59:41 -06004183 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
4184 desc_ioc_state = "eedp guard error";
4185 break;
4186 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
4187 desc_ioc_state = "eedp ref tag error";
4188 break;
4189 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
4190 desc_ioc_state = "eedp app tag error";
4191 break;
Eric Moore635374e2009-03-09 01:21:12 -06004192 default:
4193 desc_ioc_state = "unknown";
4194 break;
4195 }
4196
4197 switch (scsi_status) {
4198 case MPI2_SCSI_STATUS_GOOD:
4199 desc_scsi_status = "good";
4200 break;
4201 case MPI2_SCSI_STATUS_CHECK_CONDITION:
4202 desc_scsi_status = "check condition";
4203 break;
4204 case MPI2_SCSI_STATUS_CONDITION_MET:
4205 desc_scsi_status = "condition met";
4206 break;
4207 case MPI2_SCSI_STATUS_BUSY:
4208 desc_scsi_status = "busy";
4209 break;
4210 case MPI2_SCSI_STATUS_INTERMEDIATE:
4211 desc_scsi_status = "intermediate";
4212 break;
4213 case MPI2_SCSI_STATUS_INTERMEDIATE_CONDMET:
4214 desc_scsi_status = "intermediate condmet";
4215 break;
4216 case MPI2_SCSI_STATUS_RESERVATION_CONFLICT:
4217 desc_scsi_status = "reservation conflict";
4218 break;
4219 case MPI2_SCSI_STATUS_COMMAND_TERMINATED:
4220 desc_scsi_status = "command terminated";
4221 break;
4222 case MPI2_SCSI_STATUS_TASK_SET_FULL:
4223 desc_scsi_status = "task set full";
4224 break;
4225 case MPI2_SCSI_STATUS_ACA_ACTIVE:
4226 desc_scsi_status = "aca active";
4227 break;
4228 case MPI2_SCSI_STATUS_TASK_ABORTED:
4229 desc_scsi_status = "task aborted";
4230 break;
4231 default:
4232 desc_scsi_status = "unknown";
4233 break;
4234 }
4235
4236 desc_scsi_state[0] = '\0';
4237 if (!scsi_state)
4238 desc_scsi_state = " ";
4239 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID)
4240 strcat(desc_scsi_state, "response info ");
4241 if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
4242 strcat(desc_scsi_state, "state terminated ");
4243 if (scsi_state & MPI2_SCSI_STATE_NO_SCSI_STATUS)
4244 strcat(desc_scsi_state, "no status ");
4245 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_FAILED)
4246 strcat(desc_scsi_state, "autosense failed ");
4247 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID)
4248 strcat(desc_scsi_state, "autosense valid ");
4249
4250 scsi_print_command(scmd);
Kashyap, Desai7fbae672010-06-17 13:45:17 +05304251
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304252 if (priv_target->flags & MPT_TARGET_FLAGS_VOLUME) {
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304253 printk(MPT2SAS_WARN_FMT "\t%s wwid(0x%016llx)\n", ioc->name,
4254 device_str, (unsigned long long)priv_target->sas_address);
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304255 } else {
4256 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4257 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
4258 priv_target->sas_address);
4259 if (sas_device) {
4260 printk(MPT2SAS_WARN_FMT "\tsas_address(0x%016llx), "
4261 "phy(%d)\n", ioc->name, sas_device->sas_address,
4262 sas_device->phy);
4263 printk(MPT2SAS_WARN_FMT
4264 "\tenclosure_logical_id(0x%016llx), slot(%d)\n",
4265 ioc->name, sas_device->enclosure_logical_id,
4266 sas_device->slot);
4267 }
4268 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai7fbae672010-06-17 13:45:17 +05304269 }
Kashyap, Desai7fbae672010-06-17 13:45:17 +05304270
Kashyap, Desai8e864a82010-06-17 13:48:46 +05304271 printk(MPT2SAS_WARN_FMT "\thandle(0x%04x), ioc_status(%s)(0x%04x), "
4272 "smid(%d)\n", ioc->name, le16_to_cpu(mpi_reply->DevHandle),
4273 desc_ioc_state, ioc_status, smid);
Eric Moore635374e2009-03-09 01:21:12 -06004274 printk(MPT2SAS_WARN_FMT "\trequest_len(%d), underflow(%d), "
4275 "resid(%d)\n", ioc->name, scsi_bufflen(scmd), scmd->underflow,
4276 scsi_get_resid(scmd));
4277 printk(MPT2SAS_WARN_FMT "\ttag(%d), transfer_count(%d), "
4278 "sc->result(0x%08x)\n", ioc->name, le16_to_cpu(mpi_reply->TaskTag),
4279 le32_to_cpu(mpi_reply->TransferCount), scmd->result);
4280 printk(MPT2SAS_WARN_FMT "\tscsi_status(%s)(0x%02x), "
4281 "scsi_state(%s)(0x%02x)\n", ioc->name, desc_scsi_status,
4282 scsi_status, desc_scsi_state, scsi_state);
4283
4284 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID) {
4285 struct sense_info data;
4286 _scsih_normalize_sense(scmd->sense_buffer, &data);
4287 printk(MPT2SAS_WARN_FMT "\t[sense_key,asc,ascq]: "
Kashyap, Desaie94f6742010-03-17 16:24:52 +05304288 "[0x%02x,0x%02x,0x%02x], count(%d)\n", ioc->name, data.skey,
4289 data.asc, data.ascq, le32_to_cpu(mpi_reply->SenseCount));
Eric Moore635374e2009-03-09 01:21:12 -06004290 }
4291
4292 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID) {
4293 response_info = le32_to_cpu(mpi_reply->ResponseInfo);
4294 response_bytes = (u8 *)&response_info;
Kashyap, Desai9982f592009-09-23 17:23:07 +05304295 _scsih_response_code(ioc, response_bytes[0]);
Eric Moore635374e2009-03-09 01:21:12 -06004296 }
4297}
4298#endif
4299
4300/**
Kashyap, Desai3ace8e02011-05-04 16:35:58 +05304301 * _scsih_turn_on_fault_led - illuminate Fault LED
Eric Moore635374e2009-03-09 01:21:12 -06004302 * @ioc: per adapter object
4303 * @handle: device handle
Kashyap, Desai3ace8e02011-05-04 16:35:58 +05304304 * Context: process
4305 *
4306 * Return nothing.
4307 */
4308static void
4309_scsih_turn_on_fault_led(struct MPT2SAS_ADAPTER *ioc, u16 handle)
4310{
4311 Mpi2SepReply_t mpi_reply;
4312 Mpi2SepRequest_t mpi_request;
4313
4314 memset(&mpi_request, 0, sizeof(Mpi2SepRequest_t));
4315 mpi_request.Function = MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR;
4316 mpi_request.Action = MPI2_SEP_REQ_ACTION_WRITE_STATUS;
4317 mpi_request.SlotStatus =
4318 cpu_to_le32(MPI2_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT);
4319 mpi_request.DevHandle = cpu_to_le16(handle);
4320 mpi_request.Flags = MPI2_SEP_REQ_FLAGS_DEVHANDLE_ADDRESS;
4321 if ((mpt2sas_base_scsi_enclosure_processor(ioc, &mpi_reply,
4322 &mpi_request)) != 0) {
4323 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n", ioc->name,
4324 __FILE__, __LINE__, __func__);
4325 return;
4326 }
4327
4328 if (mpi_reply.IOCStatus || mpi_reply.IOCLogInfo) {
4329 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "enclosure_processor: "
4330 "ioc_status (0x%04x), loginfo(0x%08x)\n", ioc->name,
4331 le16_to_cpu(mpi_reply.IOCStatus),
4332 le32_to_cpu(mpi_reply.IOCLogInfo)));
4333 return;
4334 }
4335}
4336
4337/**
4338 * _scsih_send_event_to_turn_on_fault_led - fire delayed event
4339 * @ioc: per adapter object
4340 * @handle: device handle
4341 * Context: interrupt.
4342 *
4343 * Return nothing.
4344 */
4345static void
4346_scsih_send_event_to_turn_on_fault_led(struct MPT2SAS_ADAPTER *ioc, u16 handle)
4347{
4348 struct fw_event_work *fw_event;
4349
4350 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
4351 if (!fw_event)
4352 return;
4353 fw_event->event = MPT2SAS_TURN_ON_FAULT_LED;
4354 fw_event->device_handle = handle;
4355 fw_event->ioc = ioc;
4356 _scsih_fw_event_add(ioc, fw_event);
4357}
4358
4359/**
4360 * _scsih_smart_predicted_fault - process smart errors
4361 * @ioc: per adapter object
4362 * @handle: device handle
4363 * Context: interrupt.
Eric Moore635374e2009-03-09 01:21:12 -06004364 *
4365 * Return nothing.
4366 */
4367static void
4368_scsih_smart_predicted_fault(struct MPT2SAS_ADAPTER *ioc, u16 handle)
4369{
Eric Moore635374e2009-03-09 01:21:12 -06004370 struct scsi_target *starget;
4371 struct MPT2SAS_TARGET *sas_target_priv_data;
4372 Mpi2EventNotificationReply_t *event_reply;
4373 Mpi2EventDataSasDeviceStatusChange_t *event_data;
4374 struct _sas_device *sas_device;
4375 ssize_t sz;
4376 unsigned long flags;
4377
4378 /* only handle non-raid devices */
4379 spin_lock_irqsave(&ioc->sas_device_lock, flags);
4380 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
4381 if (!sas_device) {
4382 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4383 return;
4384 }
4385 starget = sas_device->starget;
4386 sas_target_priv_data = starget->hostdata;
4387
4388 if ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_RAID_COMPONENT) ||
4389 ((sas_target_priv_data->flags & MPT_TARGET_FLAGS_VOLUME))) {
4390 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4391 return;
4392 }
4393 starget_printk(KERN_WARNING, starget, "predicted fault\n");
4394 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
4395
Kashyap, Desai3ace8e02011-05-04 16:35:58 +05304396 if (ioc->pdev->subsystem_vendor == PCI_VENDOR_ID_IBM)
4397 _scsih_send_event_to_turn_on_fault_led(ioc, handle);
Eric Moore635374e2009-03-09 01:21:12 -06004398
4399 /* insert into event log */
4400 sz = offsetof(Mpi2EventNotificationReply_t, EventData) +
4401 sizeof(Mpi2EventDataSasDeviceStatusChange_t);
Anton Blanchardf6a290b42011-11-07 22:05:21 +11004402 event_reply = kzalloc(sz, GFP_ATOMIC);
Eric Moore635374e2009-03-09 01:21:12 -06004403 if (!event_reply) {
4404 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4405 ioc->name, __FILE__, __LINE__, __func__);
4406 return;
4407 }
4408
4409 event_reply->Function = MPI2_FUNCTION_EVENT_NOTIFICATION;
4410 event_reply->Event =
4411 cpu_to_le16(MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE);
4412 event_reply->MsgLength = sz/4;
4413 event_reply->EventDataLength =
4414 cpu_to_le16(sizeof(Mpi2EventDataSasDeviceStatusChange_t)/4);
4415 event_data = (Mpi2EventDataSasDeviceStatusChange_t *)
4416 event_reply->EventData;
4417 event_data->ReasonCode = MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA;
4418 event_data->ASC = 0x5D;
4419 event_data->DevHandle = cpu_to_le16(handle);
4420 event_data->SASAddress = cpu_to_le64(sas_target_priv_data->sas_address);
4421 mpt2sas_ctl_add_to_event_log(ioc, event_reply);
4422 kfree(event_reply);
4423}
4424
4425/**
Eric Moored5d135b2009-05-18 13:02:08 -06004426 * _scsih_io_done - scsi request callback
Eric Moore635374e2009-03-09 01:21:12 -06004427 * @ioc: per adapter object
4428 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304429 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06004430 * @reply: reply message frame(lower 32bit addr)
4431 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304432 * Callback handler when using _scsih_qcmd.
Eric Moore635374e2009-03-09 01:21:12 -06004433 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304434 * Return 1 meaning mf should be freed from _base_interrupt
4435 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06004436 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304437static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304438_scsih_io_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06004439{
4440 Mpi2SCSIIORequest_t *mpi_request;
4441 Mpi2SCSIIOReply_t *mpi_reply;
4442 struct scsi_cmnd *scmd;
4443 u16 ioc_status;
4444 u32 xfer_cnt;
4445 u8 scsi_state;
4446 u8 scsi_status;
4447 u32 log_info;
4448 struct MPT2SAS_DEVICE *sas_device_priv_data;
Kashyap, Desai9982f592009-09-23 17:23:07 +05304449 u32 response_code = 0;
Kashyap, Desai82a45252011-07-05 12:40:23 +05304450 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06004451
4452 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
Kashyap, Desaiec07a052011-01-05 17:54:32 +05304453 scmd = _scsih_scsi_lookup_get_clear(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -06004454 if (scmd == NULL)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304455 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06004456
4457 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
4458
4459 if (mpi_reply == NULL) {
4460 scmd->result = DID_OK << 16;
4461 goto out;
4462 }
4463
4464 sas_device_priv_data = scmd->device->hostdata;
4465 if (!sas_device_priv_data || !sas_device_priv_data->sas_target ||
4466 sas_device_priv_data->sas_target->deleted) {
4467 scmd->result = DID_NO_CONNECT << 16;
4468 goto out;
4469 }
nagalakshmi.nandigama@lsi.com4da7af92011-12-01 07:53:02 +05304470 ioc_status = le16_to_cpu(mpi_reply->IOCStatus);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304471 /*
4472 * WARPDRIVE: If direct_io is set then it is directIO,
4473 * the failed direct I/O should be redirected to volume
4474 */
nagalakshmi.nandigama@lsi.com4da7af92011-12-01 07:53:02 +05304475 if (_scsih_scsi_direct_io_get(ioc, smid) &&
4476 ((ioc_status & MPI2_IOCSTATUS_MASK)
4477 != MPI2_IOCSTATUS_SCSI_TASK_TERMINATED)) {
Kashyap, Desai82a45252011-07-05 12:40:23 +05304478 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
4479 ioc->scsi_lookup[smid - 1].scmd = scmd;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304480 _scsih_scsi_direct_io_set(ioc, smid, 0);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05304481 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304482 memcpy(mpi_request->CDB.CDB32, scmd->cmnd, scmd->cmd_len);
4483 mpi_request->DevHandle =
4484 cpu_to_le16(sas_device_priv_data->sas_target->handle);
4485 mpt2sas_base_put_smid_scsi_io(ioc, smid,
4486 sas_device_priv_data->sas_target->handle);
4487 return 0;
4488 }
4489
Eric Moore635374e2009-03-09 01:21:12 -06004490
4491 /* turning off TLR */
Kashyap, Desai9982f592009-09-23 17:23:07 +05304492 scsi_state = mpi_reply->SCSIState;
4493 if (scsi_state & MPI2_SCSI_STATE_RESPONSE_INFO_VALID)
4494 response_code =
4495 le32_to_cpu(mpi_reply->ResponseInfo) & 0xFF;
Eric Moore635374e2009-03-09 01:21:12 -06004496 if (!sas_device_priv_data->tlr_snoop_check) {
4497 sas_device_priv_data->tlr_snoop_check++;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05304498 /* Make sure Device is not raid volume.
4499 * We do not expose raid functionality to upper layer for warpdrive.
4500 */
4501 if (!ioc->is_warpdrive && !_scsih_is_raid(&scmd->device->sdev_gendev) &&
Kashyap, Desai3ed21522010-02-17 16:08:36 +05304502 sas_is_tlr_enabled(scmd->device) &&
Kashyap, Desai84f0b042009-12-16 18:56:28 +05304503 response_code == MPI2_SCSITASKMGMT_RSP_INVALID_FRAME) {
4504 sas_disable_tlr(scmd->device);
4505 sdev_printk(KERN_INFO, scmd->device, "TLR disabled\n");
4506 }
Eric Moore635374e2009-03-09 01:21:12 -06004507 }
4508
4509 xfer_cnt = le32_to_cpu(mpi_reply->TransferCount);
4510 scsi_set_resid(scmd, scsi_bufflen(scmd) - xfer_cnt);
Eric Moore635374e2009-03-09 01:21:12 -06004511 if (ioc_status & MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE)
4512 log_info = le32_to_cpu(mpi_reply->IOCLogInfo);
4513 else
4514 log_info = 0;
4515 ioc_status &= MPI2_IOCSTATUS_MASK;
Eric Moore635374e2009-03-09 01:21:12 -06004516 scsi_status = mpi_reply->SCSIStatus;
4517
4518 if (ioc_status == MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN && xfer_cnt == 0 &&
4519 (scsi_status == MPI2_SCSI_STATUS_BUSY ||
4520 scsi_status == MPI2_SCSI_STATUS_RESERVATION_CONFLICT ||
4521 scsi_status == MPI2_SCSI_STATUS_TASK_SET_FULL)) {
4522 ioc_status = MPI2_IOCSTATUS_SUCCESS;
4523 }
4524
4525 if (scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID) {
4526 struct sense_info data;
4527 const void *sense_data = mpt2sas_base_get_sense_buffer(ioc,
4528 smid);
Eric Moore0d04df92009-04-21 15:38:43 -06004529 u32 sz = min_t(u32, SCSI_SENSE_BUFFERSIZE,
Eric Moore635374e2009-03-09 01:21:12 -06004530 le32_to_cpu(mpi_reply->SenseCount));
Eric Moore0d04df92009-04-21 15:38:43 -06004531 memcpy(scmd->sense_buffer, sense_data, sz);
Eric Moore635374e2009-03-09 01:21:12 -06004532 _scsih_normalize_sense(scmd->sense_buffer, &data);
4533 /* failure prediction threshold exceeded */
4534 if (data.asc == 0x5D)
4535 _scsih_smart_predicted_fault(ioc,
4536 le16_to_cpu(mpi_reply->DevHandle));
4537 }
4538
4539 switch (ioc_status) {
4540 case MPI2_IOCSTATUS_BUSY:
4541 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES:
4542 scmd->result = SAM_STAT_BUSY;
4543 break;
4544
4545 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
4546 scmd->result = DID_NO_CONNECT << 16;
4547 break;
4548
4549 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
4550 if (sas_device_priv_data->block) {
Kashyap, Desaie4e7c7e2009-09-23 17:33:14 +05304551 scmd->result = DID_TRANSPORT_DISRUPTED << 16;
4552 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06004553 }
nagalakshmi.nandigama@lsi.com3ade1ca2011-12-01 07:42:40 +05304554 scmd->result = DID_SOFT_ERROR << 16;
4555 break;
Eric Moore635374e2009-03-09 01:21:12 -06004556 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
4557 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
4558 scmd->result = DID_RESET << 16;
4559 break;
4560
4561 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
4562 if ((xfer_cnt == 0) || (scmd->underflow > xfer_cnt))
4563 scmd->result = DID_SOFT_ERROR << 16;
4564 else
4565 scmd->result = (DID_OK << 16) | scsi_status;
4566 break;
4567
4568 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
4569 scmd->result = (DID_OK << 16) | scsi_status;
4570
4571 if ((scsi_state & MPI2_SCSI_STATE_AUTOSENSE_VALID))
4572 break;
4573
4574 if (xfer_cnt < scmd->underflow) {
4575 if (scsi_status == SAM_STAT_BUSY)
4576 scmd->result = SAM_STAT_BUSY;
4577 else
4578 scmd->result = DID_SOFT_ERROR << 16;
4579 } else if (scsi_state & (MPI2_SCSI_STATE_AUTOSENSE_FAILED |
4580 MPI2_SCSI_STATE_NO_SCSI_STATUS))
4581 scmd->result = DID_SOFT_ERROR << 16;
4582 else if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
4583 scmd->result = DID_RESET << 16;
4584 else if (!xfer_cnt && scmd->cmnd[0] == REPORT_LUNS) {
4585 mpi_reply->SCSIState = MPI2_SCSI_STATE_AUTOSENSE_VALID;
4586 mpi_reply->SCSIStatus = SAM_STAT_CHECK_CONDITION;
4587 scmd->result = (DRIVER_SENSE << 24) |
4588 SAM_STAT_CHECK_CONDITION;
4589 scmd->sense_buffer[0] = 0x70;
4590 scmd->sense_buffer[2] = ILLEGAL_REQUEST;
4591 scmd->sense_buffer[12] = 0x20;
4592 scmd->sense_buffer[13] = 0;
4593 }
4594 break;
4595
4596 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
4597 scsi_set_resid(scmd, 0);
4598 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
4599 case MPI2_IOCSTATUS_SUCCESS:
4600 scmd->result = (DID_OK << 16) | scsi_status;
Kashyap, Desai9982f592009-09-23 17:23:07 +05304601 if (response_code ==
4602 MPI2_SCSITASKMGMT_RSP_INVALID_FRAME ||
4603 (scsi_state & (MPI2_SCSI_STATE_AUTOSENSE_FAILED |
4604 MPI2_SCSI_STATE_NO_SCSI_STATUS)))
Eric Moore635374e2009-03-09 01:21:12 -06004605 scmd->result = DID_SOFT_ERROR << 16;
4606 else if (scsi_state & MPI2_SCSI_STATE_TERMINATED)
4607 scmd->result = DID_RESET << 16;
4608 break;
4609
Eric Moore3c621b32009-05-18 12:59:41 -06004610 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
4611 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
4612 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
4613 _scsih_eedp_error_handling(scmd, ioc_status);
4614 break;
Eric Moore635374e2009-03-09 01:21:12 -06004615 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
4616 case MPI2_IOCSTATUS_INVALID_FUNCTION:
4617 case MPI2_IOCSTATUS_INVALID_SGL:
4618 case MPI2_IOCSTATUS_INTERNAL_ERROR:
4619 case MPI2_IOCSTATUS_INVALID_FIELD:
4620 case MPI2_IOCSTATUS_INVALID_STATE:
4621 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
4622 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
4623 default:
4624 scmd->result = DID_SOFT_ERROR << 16;
4625 break;
4626
4627 }
4628
4629#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
4630 if (scmd->result && (ioc->logging_level & MPT_DEBUG_REPLY))
4631 _scsih_scsi_ioc_info(ioc , scmd, mpi_reply, smid);
4632#endif
4633
4634 out:
4635 scsi_dma_unmap(scmd);
4636 scmd->scsi_done(scmd);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05304637 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06004638}
4639
4640/**
Eric Moore635374e2009-03-09 01:21:12 -06004641 * _scsih_sas_host_refresh - refreshing sas host object contents
4642 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06004643 * Context: user
4644 *
4645 * During port enable, fw will send topology events for every device. Its
4646 * possible that the handles may change from the previous setting, so this
4647 * code keeping handles updating if changed.
4648 *
4649 * Return nothing.
4650 */
4651static void
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304652_scsih_sas_host_refresh(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06004653{
4654 u16 sz;
4655 u16 ioc_status;
4656 int i;
4657 Mpi2ConfigReply_t mpi_reply;
4658 Mpi2SasIOUnitPage0_t *sas_iounit_pg0 = NULL;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304659 u16 attached_handle;
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304660 u8 link_rate;
Eric Moore635374e2009-03-09 01:21:12 -06004661
4662 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT
4663 "updating handles for sas_host(0x%016llx)\n",
4664 ioc->name, (unsigned long long)ioc->sas_hba.sas_address));
4665
4666 sz = offsetof(Mpi2SasIOUnitPage0_t, PhyData) + (ioc->sas_hba.num_phys
4667 * sizeof(Mpi2SasIOUnit0PhyData_t));
4668 sas_iounit_pg0 = kzalloc(sz, GFP_KERNEL);
4669 if (!sas_iounit_pg0) {
4670 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4671 ioc->name, __FILE__, __LINE__, __func__);
4672 return;
4673 }
Eric Moore635374e2009-03-09 01:21:12 -06004674
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304675 if ((mpt2sas_config_get_sas_iounit_pg0(ioc, &mpi_reply,
4676 sas_iounit_pg0, sz)) != 0)
4677 goto out;
4678 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
4679 if (ioc_status != MPI2_IOCSTATUS_SUCCESS)
4680 goto out;
4681 for (i = 0; i < ioc->sas_hba.num_phys ; i++) {
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304682 link_rate = sas_iounit_pg0->PhyData[i].NegotiatedLinkRate >> 4;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304683 if (i == 0)
4684 ioc->sas_hba.handle = le16_to_cpu(sas_iounit_pg0->
4685 PhyData[0].ControllerDevHandle);
4686 ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle;
4687 attached_handle = le16_to_cpu(sas_iounit_pg0->PhyData[i].
4688 AttachedDevHandle);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304689 if (attached_handle && link_rate < MPI2_SAS_NEG_LINK_RATE_1_5)
4690 link_rate = MPI2_SAS_NEG_LINK_RATE_1_5;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304691 mpt2sas_transport_update_links(ioc, ioc->sas_hba.sas_address,
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05304692 attached_handle, i, link_rate);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304693 }
Eric Moore635374e2009-03-09 01:21:12 -06004694 out:
4695 kfree(sas_iounit_pg0);
4696}
4697
4698/**
4699 * _scsih_sas_host_add - create sas host object
4700 * @ioc: per adapter object
4701 *
4702 * Creating host side data object, stored in ioc->sas_hba
4703 *
4704 * Return nothing.
4705 */
4706static void
4707_scsih_sas_host_add(struct MPT2SAS_ADAPTER *ioc)
4708{
4709 int i;
4710 Mpi2ConfigReply_t mpi_reply;
4711 Mpi2SasIOUnitPage0_t *sas_iounit_pg0 = NULL;
4712 Mpi2SasIOUnitPage1_t *sas_iounit_pg1 = NULL;
4713 Mpi2SasPhyPage0_t phy_pg0;
4714 Mpi2SasDevicePage0_t sas_device_pg0;
4715 Mpi2SasEnclosurePage0_t enclosure_pg0;
4716 u16 ioc_status;
4717 u16 sz;
4718 u16 device_missing_delay;
4719
4720 mpt2sas_config_get_number_hba_phys(ioc, &ioc->sas_hba.num_phys);
4721 if (!ioc->sas_hba.num_phys) {
4722 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4723 ioc->name, __FILE__, __LINE__, __func__);
4724 return;
4725 }
4726
4727 /* sas_iounit page 0 */
4728 sz = offsetof(Mpi2SasIOUnitPage0_t, PhyData) + (ioc->sas_hba.num_phys *
4729 sizeof(Mpi2SasIOUnit0PhyData_t));
4730 sas_iounit_pg0 = kzalloc(sz, GFP_KERNEL);
4731 if (!sas_iounit_pg0) {
4732 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4733 ioc->name, __FILE__, __LINE__, __func__);
4734 return;
4735 }
4736 if ((mpt2sas_config_get_sas_iounit_pg0(ioc, &mpi_reply,
4737 sas_iounit_pg0, sz))) {
4738 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4739 ioc->name, __FILE__, __LINE__, __func__);
4740 goto out;
4741 }
4742 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4743 MPI2_IOCSTATUS_MASK;
4744 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4745 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4746 ioc->name, __FILE__, __LINE__, __func__);
4747 goto out;
4748 }
4749
4750 /* sas_iounit page 1 */
4751 sz = offsetof(Mpi2SasIOUnitPage1_t, PhyData) + (ioc->sas_hba.num_phys *
4752 sizeof(Mpi2SasIOUnit1PhyData_t));
4753 sas_iounit_pg1 = kzalloc(sz, GFP_KERNEL);
4754 if (!sas_iounit_pg1) {
4755 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4756 ioc->name, __FILE__, __LINE__, __func__);
4757 goto out;
4758 }
4759 if ((mpt2sas_config_get_sas_iounit_pg1(ioc, &mpi_reply,
4760 sas_iounit_pg1, sz))) {
4761 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4762 ioc->name, __FILE__, __LINE__, __func__);
4763 goto out;
4764 }
4765 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4766 MPI2_IOCSTATUS_MASK;
4767 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4768 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4769 ioc->name, __FILE__, __LINE__, __func__);
4770 goto out;
4771 }
4772
4773 ioc->io_missing_delay =
4774 le16_to_cpu(sas_iounit_pg1->IODeviceMissingDelay);
4775 device_missing_delay =
4776 le16_to_cpu(sas_iounit_pg1->ReportDeviceMissingDelay);
4777 if (device_missing_delay & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
4778 ioc->device_missing_delay = (device_missing_delay &
4779 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
4780 else
4781 ioc->device_missing_delay = device_missing_delay &
4782 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
4783
4784 ioc->sas_hba.parent_dev = &ioc->shost->shost_gendev;
4785 ioc->sas_hba.phy = kcalloc(ioc->sas_hba.num_phys,
4786 sizeof(struct _sas_phy), GFP_KERNEL);
4787 if (!ioc->sas_hba.phy) {
4788 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4789 ioc->name, __FILE__, __LINE__, __func__);
4790 goto out;
4791 }
4792 for (i = 0; i < ioc->sas_hba.num_phys ; i++) {
4793 if ((mpt2sas_config_get_phy_pg0(ioc, &mpi_reply, &phy_pg0,
4794 i))) {
4795 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4796 ioc->name, __FILE__, __LINE__, __func__);
4797 goto out;
4798 }
4799 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4800 MPI2_IOCSTATUS_MASK;
4801 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4802 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4803 ioc->name, __FILE__, __LINE__, __func__);
4804 goto out;
4805 }
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304806
4807 if (i == 0)
4808 ioc->sas_hba.handle = le16_to_cpu(sas_iounit_pg0->
4809 PhyData[0].ControllerDevHandle);
4810 ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle;
Eric Moore635374e2009-03-09 01:21:12 -06004811 ioc->sas_hba.phy[i].phy_id = i;
4812 mpt2sas_transport_add_host_phy(ioc, &ioc->sas_hba.phy[i],
4813 phy_pg0, ioc->sas_hba.parent_dev);
4814 }
4815 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304816 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, ioc->sas_hba.handle))) {
Eric Moore635374e2009-03-09 01:21:12 -06004817 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4818 ioc->name, __FILE__, __LINE__, __func__);
4819 goto out;
4820 }
Eric Moore635374e2009-03-09 01:21:12 -06004821 ioc->sas_hba.enclosure_handle =
4822 le16_to_cpu(sas_device_pg0.EnclosureHandle);
4823 ioc->sas_hba.sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
4824 printk(MPT2SAS_INFO_FMT "host_add: handle(0x%04x), "
4825 "sas_addr(0x%016llx), phys(%d)\n", ioc->name, ioc->sas_hba.handle,
4826 (unsigned long long) ioc->sas_hba.sas_address,
4827 ioc->sas_hba.num_phys) ;
4828
4829 if (ioc->sas_hba.enclosure_handle) {
4830 if (!(mpt2sas_config_get_enclosure_pg0(ioc, &mpi_reply,
4831 &enclosure_pg0,
4832 MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
4833 ioc->sas_hba.enclosure_handle))) {
4834 ioc->sas_hba.enclosure_logical_id =
4835 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
4836 }
4837 }
4838
4839 out:
4840 kfree(sas_iounit_pg1);
4841 kfree(sas_iounit_pg0);
4842}
4843
4844/**
4845 * _scsih_expander_add - creating expander object
4846 * @ioc: per adapter object
4847 * @handle: expander handle
4848 *
4849 * Creating expander object, stored in ioc->sas_expander_list.
4850 *
4851 * Return 0 for success, else error.
4852 */
4853static int
4854_scsih_expander_add(struct MPT2SAS_ADAPTER *ioc, u16 handle)
4855{
4856 struct _sas_node *sas_expander;
4857 Mpi2ConfigReply_t mpi_reply;
4858 Mpi2ExpanderPage0_t expander_pg0;
4859 Mpi2ExpanderPage1_t expander_pg1;
4860 Mpi2SasEnclosurePage0_t enclosure_pg0;
4861 u32 ioc_status;
4862 u16 parent_handle;
Kashyap, Desaic97951e2011-06-14 10:54:56 +05304863 u64 sas_address, sas_address_parent = 0;
Eric Moore635374e2009-03-09 01:21:12 -06004864 int i;
4865 unsigned long flags;
Kashyap, Desai20f58952009-08-07 19:34:26 +05304866 struct _sas_port *mpt2sas_port = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06004867 int rc = 0;
4868
4869 if (!handle)
4870 return -1;
4871
Eric Moore3cb54692010-07-08 14:44:34 -06004872 if (ioc->shost_recovery || ioc->pci_error_recovery)
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05304873 return -1;
4874
Eric Moore635374e2009-03-09 01:21:12 -06004875 if ((mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
4876 MPI2_SAS_EXPAND_PGAD_FORM_HNDL, handle))) {
4877 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4878 ioc->name, __FILE__, __LINE__, __func__);
4879 return -1;
4880 }
4881
4882 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
4883 MPI2_IOCSTATUS_MASK;
4884 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
4885 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4886 ioc->name, __FILE__, __LINE__, __func__);
4887 return -1;
4888 }
4889
4890 /* handle out of order topology events */
4891 parent_handle = le16_to_cpu(expander_pg0.ParentDevHandle);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304892 if (_scsih_get_sas_address(ioc, parent_handle, &sas_address_parent)
4893 != 0) {
4894 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4895 ioc->name, __FILE__, __LINE__, __func__);
4896 return -1;
4897 }
4898 if (sas_address_parent != ioc->sas_hba.sas_address) {
Eric Moore635374e2009-03-09 01:21:12 -06004899 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304900 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
4901 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06004902 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
4903 if (!sas_expander) {
4904 rc = _scsih_expander_add(ioc, parent_handle);
4905 if (rc != 0)
4906 return rc;
4907 }
4908 }
4909
Eric Moore635374e2009-03-09 01:21:12 -06004910 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05304911 sas_address = le64_to_cpu(expander_pg0.SASAddress);
Eric Moore635374e2009-03-09 01:21:12 -06004912 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
4913 sas_address);
4914 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
4915
4916 if (sas_expander)
4917 return 0;
4918
4919 sas_expander = kzalloc(sizeof(struct _sas_node),
4920 GFP_KERNEL);
4921 if (!sas_expander) {
4922 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4923 ioc->name, __FILE__, __LINE__, __func__);
4924 return -1;
4925 }
4926
4927 sas_expander->handle = handle;
4928 sas_expander->num_phys = expander_pg0.NumPhys;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304929 sas_expander->sas_address_parent = sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06004930 sas_expander->sas_address = sas_address;
4931
4932 printk(MPT2SAS_INFO_FMT "expander_add: handle(0x%04x),"
4933 " parent(0x%04x), sas_addr(0x%016llx), phys(%d)\n", ioc->name,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304934 handle, parent_handle, (unsigned long long)
Eric Moore635374e2009-03-09 01:21:12 -06004935 sas_expander->sas_address, sas_expander->num_phys);
4936
4937 if (!sas_expander->num_phys)
4938 goto out_fail;
4939 sas_expander->phy = kcalloc(sas_expander->num_phys,
4940 sizeof(struct _sas_phy), GFP_KERNEL);
4941 if (!sas_expander->phy) {
4942 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4943 ioc->name, __FILE__, __LINE__, __func__);
4944 rc = -1;
4945 goto out_fail;
4946 }
4947
4948 INIT_LIST_HEAD(&sas_expander->sas_port_list);
4949 mpt2sas_port = mpt2sas_transport_port_add(ioc, handle,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304950 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06004951 if (!mpt2sas_port) {
4952 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4953 ioc->name, __FILE__, __LINE__, __func__);
4954 rc = -1;
4955 goto out_fail;
4956 }
4957 sas_expander->parent_dev = &mpt2sas_port->rphy->dev;
4958
4959 for (i = 0 ; i < sas_expander->num_phys ; i++) {
4960 if ((mpt2sas_config_get_expander_pg1(ioc, &mpi_reply,
4961 &expander_pg1, i, handle))) {
4962 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4963 ioc->name, __FILE__, __LINE__, __func__);
Kashyap, Desai20f58952009-08-07 19:34:26 +05304964 rc = -1;
4965 goto out_fail;
Eric Moore635374e2009-03-09 01:21:12 -06004966 }
4967 sas_expander->phy[i].handle = handle;
4968 sas_expander->phy[i].phy_id = i;
Kashyap, Desai20f58952009-08-07 19:34:26 +05304969
4970 if ((mpt2sas_transport_add_expander_phy(ioc,
4971 &sas_expander->phy[i], expander_pg1,
4972 sas_expander->parent_dev))) {
4973 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
4974 ioc->name, __FILE__, __LINE__, __func__);
4975 rc = -1;
4976 goto out_fail;
4977 }
Eric Moore635374e2009-03-09 01:21:12 -06004978 }
4979
4980 if (sas_expander->enclosure_handle) {
4981 if (!(mpt2sas_config_get_enclosure_pg0(ioc, &mpi_reply,
4982 &enclosure_pg0, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
4983 sas_expander->enclosure_handle))) {
4984 sas_expander->enclosure_logical_id =
4985 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
4986 }
4987 }
4988
4989 _scsih_expander_node_add(ioc, sas_expander);
4990 return 0;
4991
4992 out_fail:
4993
Kashyap, Desai20f58952009-08-07 19:34:26 +05304994 if (mpt2sas_port)
4995 mpt2sas_transport_port_remove(ioc, sas_expander->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05304996 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06004997 kfree(sas_expander);
4998 return rc;
4999}
5000
5001/**
Kashyap, Desai744090d2009-10-05 15:56:56 +05305002 * _scsih_done - scsih callback handler.
5003 * @ioc: per adapter object
5004 * @smid: system request message index
5005 * @msix_index: MSIX table index supplied by the OS
5006 * @reply: reply message frame(lower 32bit addr)
5007 *
5008 * Callback handler when sending internal generated message frames.
5009 * The callback index passed is `ioc->scsih_cb_idx`
5010 *
5011 * Return 1 meaning mf should be freed from _base_interrupt
5012 * 0 means the mf is freed from this function.
5013 */
5014static u8
5015_scsih_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
5016{
5017 MPI2DefaultReply_t *mpi_reply;
5018
5019 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
5020 if (ioc->scsih_cmds.status == MPT2_CMD_NOT_USED)
5021 return 1;
5022 if (ioc->scsih_cmds.smid != smid)
5023 return 1;
5024 ioc->scsih_cmds.status |= MPT2_CMD_COMPLETE;
5025 if (mpi_reply) {
5026 memcpy(ioc->scsih_cmds.reply, mpi_reply,
5027 mpi_reply->MsgLength*4);
5028 ioc->scsih_cmds.status |= MPT2_CMD_REPLY_VALID;
5029 }
5030 ioc->scsih_cmds.status &= ~MPT2_CMD_PENDING;
5031 complete(&ioc->scsih_cmds.done);
5032 return 1;
5033}
5034
5035/**
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305036 * mpt2sas_expander_remove - removing expander object
Eric Moore635374e2009-03-09 01:21:12 -06005037 * @ioc: per adapter object
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305038 * @sas_address: expander sas_address
Eric Moore635374e2009-03-09 01:21:12 -06005039 *
5040 * Return nothing.
5041 */
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305042void
5043mpt2sas_expander_remove(struct MPT2SAS_ADAPTER *ioc, u64 sas_address)
Eric Moore635374e2009-03-09 01:21:12 -06005044{
5045 struct _sas_node *sas_expander;
5046 unsigned long flags;
5047
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05305048 if (ioc->shost_recovery)
5049 return;
5050
Eric Moore635374e2009-03-09 01:21:12 -06005051 spin_lock_irqsave(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305052 sas_expander = mpt2sas_scsih_expander_find_by_sas_address(ioc,
5053 sas_address);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305054 if (sas_expander)
5055 list_del(&sas_expander->list);
Eric Moore635374e2009-03-09 01:21:12 -06005056 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305057 if (sas_expander)
5058 _scsih_expander_node_remove(ioc, sas_expander);
Eric Moore635374e2009-03-09 01:21:12 -06005059}
5060
5061/**
Kashyap, Desaib4344272010-03-17 16:24:14 +05305062 * _scsih_check_access_status - check access flags
5063 * @ioc: per adapter object
5064 * @sas_address: sas address
5065 * @handle: sas device handle
5066 * @access_flags: errors returned during discovery of the device
5067 *
5068 * Return 0 for success, else failure
5069 */
5070static u8
5071_scsih_check_access_status(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
5072 u16 handle, u8 access_status)
5073{
5074 u8 rc = 1;
5075 char *desc = NULL;
5076
5077 switch (access_status) {
5078 case MPI2_SAS_DEVICE0_ASTATUS_NO_ERRORS:
5079 case MPI2_SAS_DEVICE0_ASTATUS_SATA_NEEDS_INITIALIZATION:
5080 rc = 0;
5081 break;
5082 case MPI2_SAS_DEVICE0_ASTATUS_SATA_CAPABILITY_FAILED:
5083 desc = "sata capability failed";
5084 break;
5085 case MPI2_SAS_DEVICE0_ASTATUS_SATA_AFFILIATION_CONFLICT:
5086 desc = "sata affiliation conflict";
5087 break;
5088 case MPI2_SAS_DEVICE0_ASTATUS_ROUTE_NOT_ADDRESSABLE:
5089 desc = "route not addressable";
5090 break;
5091 case MPI2_SAS_DEVICE0_ASTATUS_SMP_ERROR_NOT_ADDRESSABLE:
5092 desc = "smp error not addressable";
5093 break;
5094 case MPI2_SAS_DEVICE0_ASTATUS_DEVICE_BLOCKED:
5095 desc = "device blocked";
5096 break;
5097 case MPI2_SAS_DEVICE0_ASTATUS_SATA_INIT_FAILED:
5098 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UNKNOWN:
5099 case MPI2_SAS_DEVICE0_ASTATUS_SIF_AFFILIATION_CONFLICT:
5100 case MPI2_SAS_DEVICE0_ASTATUS_SIF_DIAG:
5101 case MPI2_SAS_DEVICE0_ASTATUS_SIF_IDENTIFICATION:
5102 case MPI2_SAS_DEVICE0_ASTATUS_SIF_CHECK_POWER:
5103 case MPI2_SAS_DEVICE0_ASTATUS_SIF_PIO_SN:
5104 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MDMA_SN:
5105 case MPI2_SAS_DEVICE0_ASTATUS_SIF_UDMA_SN:
5106 case MPI2_SAS_DEVICE0_ASTATUS_SIF_ZONING_VIOLATION:
5107 case MPI2_SAS_DEVICE0_ASTATUS_SIF_NOT_ADDRESSABLE:
5108 case MPI2_SAS_DEVICE0_ASTATUS_SIF_MAX:
5109 desc = "sata initialization failed";
5110 break;
5111 default:
5112 desc = "unknown";
5113 break;
5114 }
5115
5116 if (!rc)
5117 return 0;
5118
5119 printk(MPT2SAS_ERR_FMT "discovery errors(%s): sas_address(0x%016llx), "
5120 "handle(0x%04x)\n", ioc->name, desc,
5121 (unsigned long long)sas_address, handle);
5122 return rc;
5123}
5124
5125static void
5126_scsih_check_device(struct MPT2SAS_ADAPTER *ioc, u16 handle)
5127{
5128 Mpi2ConfigReply_t mpi_reply;
5129 Mpi2SasDevicePage0_t sas_device_pg0;
5130 struct _sas_device *sas_device;
5131 u32 ioc_status;
5132 unsigned long flags;
5133 u64 sas_address;
5134 struct scsi_target *starget;
5135 struct MPT2SAS_TARGET *sas_target_priv_data;
5136 u32 device_info;
5137
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305138
Kashyap, Desaib4344272010-03-17 16:24:14 +05305139 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
5140 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle)))
5141 return;
5142
5143 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
5144 if (ioc_status != MPI2_IOCSTATUS_SUCCESS)
5145 return;
5146
5147 /* check if this is end device */
5148 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
5149 if (!(_scsih_is_end_device(device_info)))
5150 return;
5151
5152 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5153 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
5154 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5155 sas_address);
5156
5157 if (!sas_device) {
5158 printk(MPT2SAS_ERR_FMT "device is not present "
5159 "handle(0x%04x), no sas_device!!!\n", ioc->name, handle);
5160 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5161 return;
5162 }
5163
5164 if (unlikely(sas_device->handle != handle)) {
5165 starget = sas_device->starget;
5166 sas_target_priv_data = starget->hostdata;
5167 starget_printk(KERN_INFO, starget, "handle changed from(0x%04x)"
5168 " to (0x%04x)!!!\n", sas_device->handle, handle);
5169 sas_target_priv_data->handle = handle;
5170 sas_device->handle = handle;
5171 }
Kashyap, Desaib4344272010-03-17 16:24:14 +05305172
5173 /* check if device is present */
5174 if (!(le16_to_cpu(sas_device_pg0.Flags) &
5175 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT)) {
5176 printk(MPT2SAS_ERR_FMT "device is not present "
5177 "handle(0x%04x), flags!!!\n", ioc->name, handle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305178 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desaib4344272010-03-17 16:24:14 +05305179 return;
5180 }
5181
5182 /* check if there were any issues with discovery */
5183 if (_scsih_check_access_status(ioc, sas_address, handle,
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305184 sas_device_pg0.AccessStatus)) {
5185 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desaib4344272010-03-17 16:24:14 +05305186 return;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305187 }
5188 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
nagalakshmi.nandigama@lsi.com39af7a92012-03-20 12:09:26 +05305189 _scsih_ublock_io_device(ioc, sas_address);
Kashyap, Desaib4344272010-03-17 16:24:14 +05305190
5191}
5192
5193/**
Eric Moore635374e2009-03-09 01:21:12 -06005194 * _scsih_add_device - creating sas device object
5195 * @ioc: per adapter object
5196 * @handle: sas device handle
5197 * @phy_num: phy number end device attached to
5198 * @is_pd: is this hidden raid component
5199 *
5200 * Creating end device object, stored in ioc->sas_device_list.
5201 *
5202 * Returns 0 for success, non-zero for failure.
5203 */
5204static int
5205_scsih_add_device(struct MPT2SAS_ADAPTER *ioc, u16 handle, u8 phy_num, u8 is_pd)
5206{
5207 Mpi2ConfigReply_t mpi_reply;
5208 Mpi2SasDevicePage0_t sas_device_pg0;
5209 Mpi2SasEnclosurePage0_t enclosure_pg0;
5210 struct _sas_device *sas_device;
5211 u32 ioc_status;
5212 __le64 sas_address;
5213 u32 device_info;
5214 unsigned long flags;
5215
5216 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
5217 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
5218 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5219 ioc->name, __FILE__, __LINE__, __func__);
5220 return -1;
5221 }
5222
5223 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
5224 MPI2_IOCSTATUS_MASK;
5225 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
5226 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5227 ioc->name, __FILE__, __LINE__, __func__);
5228 return -1;
5229 }
5230
Kashyap, Desaib4344272010-03-17 16:24:14 +05305231 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
5232
Eric Moore635374e2009-03-09 01:21:12 -06005233 /* check if device is present */
5234 if (!(le16_to_cpu(sas_device_pg0.Flags) &
5235 MPI2_SAS_DEVICE0_FLAGS_DEVICE_PRESENT)) {
5236 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5237 ioc->name, __FILE__, __LINE__, __func__);
5238 printk(MPT2SAS_ERR_FMT "Flags = 0x%04x\n",
5239 ioc->name, le16_to_cpu(sas_device_pg0.Flags));
5240 return -1;
5241 }
5242
Kashyap, Desaib4344272010-03-17 16:24:14 +05305243 /* check if there were any issues with discovery */
5244 if (_scsih_check_access_status(ioc, sas_address, handle,
5245 sas_device_pg0.AccessStatus))
Eric Moore635374e2009-03-09 01:21:12 -06005246 return -1;
Eric Moore635374e2009-03-09 01:21:12 -06005247
5248 /* check if this is end device */
5249 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
5250 if (!(_scsih_is_end_device(device_info))) {
5251 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5252 ioc->name, __FILE__, __LINE__, __func__);
5253 return -1;
5254 }
5255
Eric Moore635374e2009-03-09 01:21:12 -06005256
5257 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5258 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5259 sas_address);
5260 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5261
Kashyap, Desaib4344272010-03-17 16:24:14 +05305262 if (sas_device)
Eric Moore635374e2009-03-09 01:21:12 -06005263 return 0;
Eric Moore635374e2009-03-09 01:21:12 -06005264
5265 sas_device = kzalloc(sizeof(struct _sas_device),
5266 GFP_KERNEL);
5267 if (!sas_device) {
5268 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5269 ioc->name, __FILE__, __LINE__, __func__);
5270 return -1;
5271 }
5272
5273 sas_device->handle = handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305274 if (_scsih_get_sas_address(ioc, le16_to_cpu
5275 (sas_device_pg0.ParentDevHandle),
5276 &sas_device->sas_address_parent) != 0)
5277 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
5278 ioc->name, __FILE__, __LINE__, __func__);
Eric Moore635374e2009-03-09 01:21:12 -06005279 sas_device->enclosure_handle =
5280 le16_to_cpu(sas_device_pg0.EnclosureHandle);
5281 sas_device->slot =
5282 le16_to_cpu(sas_device_pg0.Slot);
5283 sas_device->device_info = device_info;
5284 sas_device->sas_address = sas_address;
Kashyap, Desai7fbae672010-06-17 13:45:17 +05305285 sas_device->phy = sas_device_pg0.PhyNum;
Eric Moore635374e2009-03-09 01:21:12 -06005286
5287 /* get enclosure_logical_id */
Kashyap, Desai15052c92009-08-07 19:33:17 +05305288 if (sas_device->enclosure_handle && !(mpt2sas_config_get_enclosure_pg0(
5289 ioc, &mpi_reply, &enclosure_pg0, MPI2_SAS_ENCLOS_PGAD_FORM_HANDLE,
5290 sas_device->enclosure_handle)))
Eric Moore635374e2009-03-09 01:21:12 -06005291 sas_device->enclosure_logical_id =
5292 le64_to_cpu(enclosure_pg0.EnclosureLogicalID);
Eric Moore635374e2009-03-09 01:21:12 -06005293
5294 /* get device name */
5295 sas_device->device_name = le64_to_cpu(sas_device_pg0.DeviceName);
5296
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305297 if (ioc->wait_for_discovery_to_complete)
Eric Moore635374e2009-03-09 01:21:12 -06005298 _scsih_sas_device_init_add(ioc, sas_device);
5299 else
5300 _scsih_sas_device_add(ioc, sas_device);
5301
5302 return 0;
5303}
5304
5305/**
Kashyap, Desai1278b112010-03-09 17:34:13 +05305306 * _scsih_remove_device - removing sas device object
5307 * @ioc: per adapter object
5308 * @sas_device_delete: the sas_device object
5309 *
5310 * Return nothing.
5311 */
5312static void
5313_scsih_remove_device(struct MPT2SAS_ADAPTER *ioc,
5314 struct _sas_device *sas_device)
5315{
Kashyap, Desai1278b112010-03-09 17:34:13 +05305316 struct MPT2SAS_TARGET *sas_target_priv_data;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05305317
Kashyap, Desai1278b112010-03-09 17:34:13 +05305318 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: enter: "
5319 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305320 sas_device->handle, (unsigned long long)
5321 sas_device->sas_address));
Kashyap, Desai1278b112010-03-09 17:34:13 +05305322
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305323 if (sas_device->starget && sas_device->starget->hostdata) {
5324 sas_target_priv_data = sas_device->starget->hostdata;
Kashyap, Desai1278b112010-03-09 17:34:13 +05305325 sas_target_priv_data->deleted = 1;
nagalakshmi.nandigama@lsi.com39af7a92012-03-20 12:09:26 +05305326 _scsih_ublock_io_device(ioc, sas_device->sas_address);
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05305327 sas_target_priv_data->handle =
5328 MPT2SAS_INVALID_DEVICE_HANDLE;
Kashyap, Desai1278b112010-03-09 17:34:13 +05305329 }
5330
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05305331 if (!ioc->hide_drives)
5332 mpt2sas_transport_port_remove(ioc,
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305333 sas_device->sas_address,
5334 sas_device->sas_address_parent);
Kashyap, Desai1278b112010-03-09 17:34:13 +05305335
5336 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), sas_addr"
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305337 "(0x%016llx)\n", ioc->name, sas_device->handle,
5338 (unsigned long long) sas_device->sas_address);
Kashyap, Desai1278b112010-03-09 17:34:13 +05305339
5340 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit: "
5341 "handle(0x%04x), sas_addr(0x%016llx)\n", ioc->name, __func__,
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305342 sas_device->handle, (unsigned long long)
5343 sas_device->sas_address));
5344 kfree(sas_device);
5345}
5346/**
5347 * _scsih_device_remove_by_handle - removing device object by handle
5348 * @ioc: per adapter object
5349 * @handle: device handle
5350 *
5351 * Return nothing.
5352 */
5353static void
5354_scsih_device_remove_by_handle(struct MPT2SAS_ADAPTER *ioc, u16 handle)
5355{
5356 struct _sas_device *sas_device;
5357 unsigned long flags;
5358
5359 if (ioc->shost_recovery)
5360 return;
5361
5362 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5363 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
5364 if (sas_device)
5365 list_del(&sas_device->list);
5366 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
5367 if (sas_device)
5368 _scsih_remove_device(ioc, sas_device);
Eric Moore635374e2009-03-09 01:21:12 -06005369}
5370
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305371/**
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305372 * mpt2sas_device_remove_by_sas_address - removing device object by sas address
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305373 * @ioc: per adapter object
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305374 * @sas_address: device sas_address
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305375 *
5376 * Return nothing.
5377 */
5378void
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305379mpt2sas_device_remove_by_sas_address(struct MPT2SAS_ADAPTER *ioc,
5380 u64 sas_address)
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305381{
5382 struct _sas_device *sas_device;
5383 unsigned long flags;
5384
5385 if (ioc->shost_recovery)
5386 return;
5387
5388 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5389 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5390 sas_address);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305391 if (sas_device)
5392 list_del(&sas_device->list);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305393 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305394 if (sas_device)
5395 _scsih_remove_device(ioc, sas_device);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305396}
Eric Moore635374e2009-03-09 01:21:12 -06005397#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5398/**
5399 * _scsih_sas_topology_change_event_debug - debug for topology event
5400 * @ioc: per adapter object
5401 * @event_data: event data payload
5402 * Context: user.
5403 */
5404static void
5405_scsih_sas_topology_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
5406 Mpi2EventDataSasTopologyChangeList_t *event_data)
5407{
5408 int i;
5409 u16 handle;
5410 u16 reason_code;
5411 u8 phy_number;
5412 char *status_str = NULL;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305413 u8 link_rate, prev_link_rate;
Eric Moore635374e2009-03-09 01:21:12 -06005414
5415 switch (event_data->ExpStatus) {
5416 case MPI2_EVENT_SAS_TOPO_ES_ADDED:
5417 status_str = "add";
5418 break;
5419 case MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING:
5420 status_str = "remove";
5421 break;
5422 case MPI2_EVENT_SAS_TOPO_ES_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305423 case 0:
Eric Moore635374e2009-03-09 01:21:12 -06005424 status_str = "responding";
5425 break;
5426 case MPI2_EVENT_SAS_TOPO_ES_DELAY_NOT_RESPONDING:
5427 status_str = "remove delay";
5428 break;
5429 default:
5430 status_str = "unknown status";
5431 break;
5432 }
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305433 printk(MPT2SAS_INFO_FMT "sas topology change: (%s)\n",
Eric Moore635374e2009-03-09 01:21:12 -06005434 ioc->name, status_str);
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305435 printk(KERN_INFO "\thandle(0x%04x), enclosure_handle(0x%04x) "
Eric Moore635374e2009-03-09 01:21:12 -06005436 "start_phy(%02d), count(%d)\n",
5437 le16_to_cpu(event_data->ExpanderDevHandle),
5438 le16_to_cpu(event_data->EnclosureHandle),
5439 event_data->StartPhyNum, event_data->NumEntries);
5440 for (i = 0; i < event_data->NumEntries; i++) {
5441 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
5442 if (!handle)
5443 continue;
5444 phy_number = event_data->StartPhyNum + i;
5445 reason_code = event_data->PHY[i].PhyStatus &
5446 MPI2_EVENT_SAS_TOPO_RC_MASK;
5447 switch (reason_code) {
5448 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305449 status_str = "target add";
Eric Moore635374e2009-03-09 01:21:12 -06005450 break;
5451 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305452 status_str = "target remove";
Eric Moore635374e2009-03-09 01:21:12 -06005453 break;
5454 case MPI2_EVENT_SAS_TOPO_RC_DELAY_NOT_RESPONDING:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305455 status_str = "delay target remove";
Eric Moore635374e2009-03-09 01:21:12 -06005456 break;
5457 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305458 status_str = "link rate change";
Eric Moore635374e2009-03-09 01:21:12 -06005459 break;
5460 case MPI2_EVENT_SAS_TOPO_RC_NO_CHANGE:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305461 status_str = "target responding";
Eric Moore635374e2009-03-09 01:21:12 -06005462 break;
5463 default:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305464 status_str = "unknown";
Eric Moore635374e2009-03-09 01:21:12 -06005465 break;
5466 }
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305467 link_rate = event_data->PHY[i].LinkRate >> 4;
5468 prev_link_rate = event_data->PHY[i].LinkRate & 0xF;
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305469 printk(KERN_INFO "\tphy(%02d), attached_handle(0x%04x): %s:"
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305470 " link rate: new(0x%02x), old(0x%02x)\n", phy_number,
5471 handle, status_str, link_rate, prev_link_rate);
5472
Eric Moore635374e2009-03-09 01:21:12 -06005473 }
5474}
5475#endif
5476
5477/**
5478 * _scsih_sas_topology_change_event - handle topology changes
5479 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305480 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005481 * Context: user.
5482 *
5483 */
5484static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305485_scsih_sas_topology_change_event(struct MPT2SAS_ADAPTER *ioc,
Eric Moore635374e2009-03-09 01:21:12 -06005486 struct fw_event_work *fw_event)
5487{
5488 int i;
5489 u16 parent_handle, handle;
5490 u16 reason_code;
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305491 u8 phy_number, max_phys;
Eric Moore635374e2009-03-09 01:21:12 -06005492 struct _sas_node *sas_expander;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305493 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06005494 unsigned long flags;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305495 u8 link_rate, prev_link_rate;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305496 Mpi2EventDataSasTopologyChangeList_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06005497
5498#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5499 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
5500 _scsih_sas_topology_change_event_debug(ioc, event_data);
5501#endif
5502
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05305503 if (ioc->remove_host || ioc->pci_error_recovery)
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305504 return;
5505
Eric Moore635374e2009-03-09 01:21:12 -06005506 if (!ioc->sas_hba.num_phys)
5507 _scsih_sas_host_add(ioc);
5508 else
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305509 _scsih_sas_host_refresh(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06005510
5511 if (fw_event->ignore) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305512 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "ignoring expander "
Eric Moore635374e2009-03-09 01:21:12 -06005513 "event\n", ioc->name));
5514 return;
5515 }
5516
5517 parent_handle = le16_to_cpu(event_data->ExpanderDevHandle);
5518
5519 /* handle expander add */
5520 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_ADDED)
5521 if (_scsih_expander_add(ioc, parent_handle) != 0)
5522 return;
5523
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305524 spin_lock_irqsave(&ioc->sas_node_lock, flags);
5525 sas_expander = mpt2sas_scsih_expander_find_by_handle(ioc,
5526 parent_handle);
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305527 if (sas_expander) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305528 sas_address = sas_expander->sas_address;
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305529 max_phys = sas_expander->num_phys;
5530 } else if (parent_handle < ioc->sas_hba.num_phys) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305531 sas_address = ioc->sas_hba.sas_address;
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305532 max_phys = ioc->sas_hba.num_phys;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305533 } else {
5534 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305535 return;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305536 }
5537 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305538
Eric Moore635374e2009-03-09 01:21:12 -06005539 /* handle siblings events */
5540 for (i = 0; i < event_data->NumEntries; i++) {
5541 if (fw_event->ignore) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305542 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "ignoring "
Eric Moore635374e2009-03-09 01:21:12 -06005543 "expander event\n", ioc->name));
5544 return;
5545 }
Eric Moore3cb54692010-07-08 14:44:34 -06005546 if (ioc->shost_recovery || ioc->remove_host ||
5547 ioc->pci_error_recovery)
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05305548 return;
Kashyap, Desai308609c2009-09-14 11:07:23 +05305549 phy_number = event_data->StartPhyNum + i;
Kashyap, Desaib41c09d2010-11-13 04:40:51 +05305550 if (phy_number >= max_phys)
5551 continue;
Kashyap, Desai308609c2009-09-14 11:07:23 +05305552 reason_code = event_data->PHY[i].PhyStatus &
5553 MPI2_EVENT_SAS_TOPO_RC_MASK;
5554 if ((event_data->PHY[i].PhyStatus &
5555 MPI2_EVENT_SAS_TOPO_PHYSTATUS_VACANT) && (reason_code !=
5556 MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING))
Eric Moore635374e2009-03-09 01:21:12 -06005557 continue;
5558 handle = le16_to_cpu(event_data->PHY[i].AttachedDevHandle);
5559 if (!handle)
5560 continue;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305561 link_rate = event_data->PHY[i].LinkRate >> 4;
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305562 prev_link_rate = event_data->PHY[i].LinkRate & 0xF;
Eric Moore635374e2009-03-09 01:21:12 -06005563 switch (reason_code) {
5564 case MPI2_EVENT_SAS_TOPO_RC_PHY_CHANGED:
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305565
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05305566 if (ioc->shost_recovery)
5567 break;
5568
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305569 if (link_rate == prev_link_rate)
5570 break;
5571
5572 mpt2sas_transport_update_links(ioc, sas_address,
5573 handle, phy_number, link_rate);
5574
Kashyap, Desaib4344272010-03-17 16:24:14 +05305575 if (link_rate < MPI2_SAS_NEG_LINK_RATE_1_5)
5576 break;
5577
5578 _scsih_check_device(ioc, handle);
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305579 break;
Eric Moore635374e2009-03-09 01:21:12 -06005580 case MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED:
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305581
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05305582 if (ioc->shost_recovery)
5583 break;
5584
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305585 mpt2sas_transport_update_links(ioc, sas_address,
5586 handle, phy_number, link_rate);
5587
Kashyap, Desaie7d59c12009-09-23 17:36:52 +05305588 _scsih_add_device(ioc, handle, phy_number, 0);
Eric Moore635374e2009-03-09 01:21:12 -06005589 break;
5590 case MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING:
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305591
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305592 _scsih_device_remove_by_handle(ioc, handle);
Eric Moore635374e2009-03-09 01:21:12 -06005593 break;
5594 }
5595 }
5596
5597 /* handle expander removal */
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05305598 if (event_data->ExpStatus == MPI2_EVENT_SAS_TOPO_ES_NOT_RESPONDING &&
5599 sas_expander)
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05305600 mpt2sas_expander_remove(ioc, sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06005601
5602}
5603
5604#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5605/**
5606 * _scsih_sas_device_status_change_event_debug - debug for device event
5607 * @event_data: event data payload
5608 * Context: user.
5609 *
5610 * Return nothing.
5611 */
5612static void
5613_scsih_sas_device_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
5614 Mpi2EventDataSasDeviceStatusChange_t *event_data)
5615{
5616 char *reason_str = NULL;
5617
5618 switch (event_data->ReasonCode) {
5619 case MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA:
5620 reason_str = "smart data";
5621 break;
5622 case MPI2_EVENT_SAS_DEV_STAT_RC_UNSUPPORTED:
5623 reason_str = "unsupported device discovered";
5624 break;
5625 case MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET:
5626 reason_str = "internal device reset";
5627 break;
5628 case MPI2_EVENT_SAS_DEV_STAT_RC_TASK_ABORT_INTERNAL:
5629 reason_str = "internal task abort";
5630 break;
5631 case MPI2_EVENT_SAS_DEV_STAT_RC_ABORT_TASK_SET_INTERNAL:
5632 reason_str = "internal task abort set";
5633 break;
5634 case MPI2_EVENT_SAS_DEV_STAT_RC_CLEAR_TASK_SET_INTERNAL:
5635 reason_str = "internal clear task set";
5636 break;
5637 case MPI2_EVENT_SAS_DEV_STAT_RC_QUERY_TASK_INTERNAL:
5638 reason_str = "internal query task";
5639 break;
5640 case MPI2_EVENT_SAS_DEV_STAT_RC_SATA_INIT_FAILURE:
5641 reason_str = "sata init failure";
5642 break;
5643 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET:
5644 reason_str = "internal device reset complete";
5645 break;
5646 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_TASK_ABORT_INTERNAL:
5647 reason_str = "internal task abort complete";
5648 break;
5649 case MPI2_EVENT_SAS_DEV_STAT_RC_ASYNC_NOTIFICATION:
5650 reason_str = "internal async notification";
5651 break;
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05305652 case MPI2_EVENT_SAS_DEV_STAT_RC_EXPANDER_REDUCED_FUNCTIONALITY:
5653 reason_str = "expander reduced functionality";
5654 break;
5655 case MPI2_EVENT_SAS_DEV_STAT_RC_CMP_EXPANDER_REDUCED_FUNCTIONALITY:
5656 reason_str = "expander reduced functionality complete";
5657 break;
Eric Moore635374e2009-03-09 01:21:12 -06005658 default:
5659 reason_str = "unknown reason";
5660 break;
5661 }
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305662 printk(MPT2SAS_INFO_FMT "device status change: (%s)\n"
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305663 "\thandle(0x%04x), sas address(0x%016llx), tag(%d)",
5664 ioc->name, reason_str, le16_to_cpu(event_data->DevHandle),
5665 (unsigned long long)le64_to_cpu(event_data->SASAddress),
5666 le16_to_cpu(event_data->TaskTag));
Eric Moore635374e2009-03-09 01:21:12 -06005667 if (event_data->ReasonCode == MPI2_EVENT_SAS_DEV_STAT_RC_SMART_DATA)
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305668 printk(MPT2SAS_INFO_FMT ", ASC(0x%x), ASCQ(0x%x)\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06005669 event_data->ASC, event_data->ASCQ);
5670 printk(KERN_INFO "\n");
5671}
5672#endif
5673
5674/**
5675 * _scsih_sas_device_status_change_event - handle device status change
5676 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305677 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005678 * Context: user.
5679 *
5680 * Return nothing.
5681 */
5682static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305683_scsih_sas_device_status_change_event(struct MPT2SAS_ADAPTER *ioc,
5684 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005685{
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305686 struct MPT2SAS_TARGET *target_priv_data;
5687 struct _sas_device *sas_device;
Kashyap, Desaic97951e2011-06-14 10:54:56 +05305688 u64 sas_address;
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305689 unsigned long flags;
5690 Mpi2EventDataSasDeviceStatusChange_t *event_data =
5691 fw_event->event_data;
5692
Eric Moore635374e2009-03-09 01:21:12 -06005693#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5694 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305695 _scsih_sas_device_status_change_event_debug(ioc,
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305696 event_data);
Eric Moore635374e2009-03-09 01:21:12 -06005697#endif
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305698
Kashyap, Desaiefe82a12011-01-04 11:34:17 +05305699 /* In MPI Revision K (0xC), the internal device reset complete was
5700 * implemented, so avoid setting tm_busy flag for older firmware.
5701 */
5702 if ((ioc->facts.HeaderVersion >> 8) < 0xC)
5703 return;
5704
Kashyap, Desaif891dcf2010-03-17 16:22:21 +05305705 if (event_data->ReasonCode !=
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305706 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET &&
Kashyap, Desaif891dcf2010-03-17 16:22:21 +05305707 event_data->ReasonCode !=
5708 MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET)
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305709 return;
5710
5711 spin_lock_irqsave(&ioc->sas_device_lock, flags);
5712 sas_address = le64_to_cpu(event_data->SASAddress);
5713 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
5714 sas_address);
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305715
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305716 if (!sas_device || !sas_device->starget) {
5717 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305718 return;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305719 }
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305720
5721 target_priv_data = sas_device->starget->hostdata;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305722 if (!target_priv_data) {
5723 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305724 return;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305725 }
Kashyap, Desai8ffc4572009-09-23 17:35:41 +05305726
5727 if (event_data->ReasonCode ==
5728 MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET)
5729 target_priv_data->tm_busy = 1;
5730 else
5731 target_priv_data->tm_busy = 0;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05305732 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06005733}
5734
5735#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5736/**
5737 * _scsih_sas_enclosure_dev_status_change_event_debug - debug for enclosure event
5738 * @ioc: per adapter object
5739 * @event_data: event data payload
5740 * Context: user.
5741 *
5742 * Return nothing.
5743 */
5744static void
5745_scsih_sas_enclosure_dev_status_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
5746 Mpi2EventDataSasEnclDevStatusChange_t *event_data)
5747{
5748 char *reason_str = NULL;
5749
5750 switch (event_data->ReasonCode) {
5751 case MPI2_EVENT_SAS_ENCL_RC_ADDED:
5752 reason_str = "enclosure add";
5753 break;
5754 case MPI2_EVENT_SAS_ENCL_RC_NOT_RESPONDING:
5755 reason_str = "enclosure remove";
5756 break;
5757 default:
5758 reason_str = "unknown reason";
5759 break;
5760 }
5761
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305762 printk(MPT2SAS_INFO_FMT "enclosure status change: (%s)\n"
Eric Moore635374e2009-03-09 01:21:12 -06005763 "\thandle(0x%04x), enclosure logical id(0x%016llx)"
5764 " number slots(%d)\n", ioc->name, reason_str,
5765 le16_to_cpu(event_data->EnclosureHandle),
5766 (unsigned long long)le64_to_cpu(event_data->EnclosureLogicalID),
5767 le16_to_cpu(event_data->StartSlot));
5768}
5769#endif
5770
5771/**
5772 * _scsih_sas_enclosure_dev_status_change_event - handle enclosure events
5773 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305774 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005775 * Context: user.
5776 *
5777 * Return nothing.
5778 */
5779static void
5780_scsih_sas_enclosure_dev_status_change_event(struct MPT2SAS_ADAPTER *ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305781 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005782{
5783#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5784 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
5785 _scsih_sas_enclosure_dev_status_change_event_debug(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305786 fw_event->event_data);
Eric Moore635374e2009-03-09 01:21:12 -06005787#endif
5788}
5789
5790/**
Andrew Mortona78e21d2012-02-08 12:52:22 -08005791 * _scsih_sas_broadcast_primitive_event - handle broadcast events
Eric Moore635374e2009-03-09 01:21:12 -06005792 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305793 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005794 * Context: user.
5795 *
5796 * Return nothing.
5797 */
5798static void
Andrew Mortona78e21d2012-02-08 12:52:22 -08005799_scsih_sas_broadcast_primitive_event(struct MPT2SAS_ADAPTER *ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305800 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005801{
5802 struct scsi_cmnd *scmd;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305803 struct scsi_device *sdev;
Eric Moore635374e2009-03-09 01:21:12 -06005804 u16 smid, handle;
5805 u32 lun;
5806 struct MPT2SAS_DEVICE *sas_device_priv_data;
5807 u32 termination_count;
5808 u32 query_count;
5809 Mpi2SCSITaskManagementReply_t *mpi_reply;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305810 Mpi2EventDataSasBroadcastPrimitive_t *event_data = fw_event->event_data;
Kashyap, Desai463217b2009-10-05 15:53:06 +05305811 u16 ioc_status;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305812 unsigned long flags;
5813 int r;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305814 u8 max_retries = 0;
5815 u8 task_abort_retries;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305816
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305817 mutex_lock(&ioc->tm_cmds.mutex);
Reddy, Sreekanthc3a634b2013-02-26 17:36:12 +05305818 pr_info(MPT2SAS_FMT
5819 "%s: enter: phy number(%d), width(%d)\n",
5820 ioc->name, __func__, event_data->PhyNum,
5821 event_data->PortWidth);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305822
5823 _scsih_block_io_all_device(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06005824
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305825 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305826 mpi_reply = ioc->tm_cmds.reply;
5827broadcast_aen_retry:
5828
5829 /* sanity checks for retrying this loop */
5830 if (max_retries++ == 5) {
5831 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: giving up\n",
5832 ioc->name, __func__));
5833 goto out;
5834 } else if (max_retries > 1)
5835 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: %d retry\n",
5836 ioc->name, __func__, max_retries - 1));
5837
Eric Moore635374e2009-03-09 01:21:12 -06005838 termination_count = 0;
5839 query_count = 0;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05305840 for (smid = 1; smid <= ioc->scsiio_depth; smid++) {
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305841 if (ioc->shost_recovery)
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305842 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06005843 scmd = _scsih_scsi_lookup_get(ioc, smid);
5844 if (!scmd)
5845 continue;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305846 sdev = scmd->device;
5847 sas_device_priv_data = sdev->hostdata;
Eric Moore635374e2009-03-09 01:21:12 -06005848 if (!sas_device_priv_data || !sas_device_priv_data->sas_target)
5849 continue;
5850 /* skip hidden raid components */
5851 if (sas_device_priv_data->sas_target->flags &
5852 MPT_TARGET_FLAGS_RAID_COMPONENT)
5853 continue;
5854 /* skip volumes */
5855 if (sas_device_priv_data->sas_target->flags &
5856 MPT_TARGET_FLAGS_VOLUME)
5857 continue;
5858
5859 handle = sas_device_priv_data->sas_target->handle;
5860 lun = sas_device_priv_data->lun;
5861 query_count++;
5862
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305863 if (ioc->shost_recovery)
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305864 goto out;
5865
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305866 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305867 r = mpt2sas_scsih_issue_tm(ioc, handle, 0, 0, lun,
5868 MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK, smid, 30, 0,
5869 TM_MUTEX_OFF);
5870 if (r == FAILED) {
5871 sdev_printk(KERN_WARNING, sdev,
5872 "mpt2sas_scsih_issue_tm: FAILED when sending "
5873 "QUERY_TASK: scmd(%p)\n", scmd);
5874 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
5875 goto broadcast_aen_retry;
5876 }
Kashyap, Desai463217b2009-10-05 15:53:06 +05305877 ioc_status = le16_to_cpu(mpi_reply->IOCStatus)
5878 & MPI2_IOCSTATUS_MASK;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305879 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
5880 sdev_printk(KERN_WARNING, sdev, "query task: FAILED "
5881 "with IOCSTATUS(0x%04x), scmd(%p)\n", ioc_status,
5882 scmd);
5883 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
5884 goto broadcast_aen_retry;
5885 }
5886
5887 /* see if IO is still owned by IOC and target */
5888 if (mpi_reply->ResponseCode ==
Eric Moore635374e2009-03-09 01:21:12 -06005889 MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED ||
5890 mpi_reply->ResponseCode ==
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305891 MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC) {
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305892 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06005893 continue;
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305894 }
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305895 task_abort_retries = 0;
5896 tm_retry:
5897 if (task_abort_retries++ == 60) {
5898 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
5899 "%s: ABORT_TASK: giving up\n", ioc->name,
5900 __func__));
5901 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
5902 goto broadcast_aen_retry;
5903 }
5904
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305905 if (ioc->shost_recovery)
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305906 goto out_no_lock;
5907
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305908 r = mpt2sas_scsih_issue_tm(ioc, handle, sdev->channel, sdev->id,
5909 sdev->lun, MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK, smid, 30,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305910 scmd->serial_number, TM_MUTEX_OFF);
5911 if (r == FAILED) {
5912 sdev_printk(KERN_WARNING, sdev,
5913 "mpt2sas_scsih_issue_tm: ABORT_TASK: FAILED : "
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305914 "scmd(%p)\n", scmd);
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305915 goto tm_retry;
5916 }
5917
5918 if (task_abort_retries > 1)
5919 sdev_printk(KERN_WARNING, sdev,
5920 "mpt2sas_scsih_issue_tm: ABORT_TASK: RETRIES (%d):"
5921 " scmd(%p)\n",
5922 task_abort_retries - 1, scmd);
5923
Eric Moore635374e2009-03-09 01:21:12 -06005924 termination_count += le32_to_cpu(mpi_reply->TerminationCount);
Kashyap, Desaiec07a052011-01-05 17:54:32 +05305925 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06005926 }
Eric Moore635374e2009-03-09 01:21:12 -06005927
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305928 if (ioc->broadcast_aen_pending) {
5929 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: loop back due to"
5930 " pending AEN\n", ioc->name, __func__));
5931 ioc->broadcast_aen_pending = 0;
5932 goto broadcast_aen_retry;
5933 }
5934
5935 out:
5936 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
5937 out_no_lock:
5938
5939 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -06005940 "%s - exit, query_count = %d termination_count = %d\n",
5941 ioc->name, __func__, query_count, termination_count));
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305942
5943 ioc->broadcast_aen_busy = 0;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05305944 if (!ioc->shost_recovery)
Kashyap, Desaif93213d2011-06-14 10:56:43 +05305945 _scsih_ublock_io_all_device(ioc);
5946 mutex_unlock(&ioc->tm_cmds.mutex);
Eric Moore635374e2009-03-09 01:21:12 -06005947}
5948
5949/**
5950 * _scsih_sas_discovery_event - handle discovery events
5951 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305952 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06005953 * Context: user.
5954 *
5955 * Return nothing.
5956 */
5957static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305958_scsih_sas_discovery_event(struct MPT2SAS_ADAPTER *ioc,
5959 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06005960{
Kashyap, Desai7b936b02009-09-25 11:44:41 +05305961 Mpi2EventDataSasDiscovery_t *event_data = fw_event->event_data;
5962
Eric Moore635374e2009-03-09 01:21:12 -06005963#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
5964 if (ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05305965 printk(MPT2SAS_INFO_FMT "discovery event: (%s)", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06005966 (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED) ?
5967 "start" : "stop");
5968 if (event_data->DiscoveryStatus)
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05305969 printk("discovery_status(0x%08x)",
5970 le32_to_cpu(event_data->DiscoveryStatus));
Eric Moore635374e2009-03-09 01:21:12 -06005971 printk("\n");
5972 }
5973#endif
5974
5975 if (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED &&
sreekanth.reddy@lsi.com4b193172012-07-17 15:56:12 +05305976 !ioc->sas_hba.num_phys) {
5977 if (disable_discovery > 0 && ioc->shost_recovery) {
5978 /* Wait for the reset to complete */
5979 while (ioc->shost_recovery)
5980 ssleep(1);
5981 }
Eric Moore635374e2009-03-09 01:21:12 -06005982 _scsih_sas_host_add(ioc);
sreekanth.reddy@lsi.com4b193172012-07-17 15:56:12 +05305983 }
Eric Moore635374e2009-03-09 01:21:12 -06005984}
5985
5986/**
5987 * _scsih_reprobe_lun - reprobing lun
5988 * @sdev: scsi device struct
5989 * @no_uld_attach: sdev->no_uld_attach flag setting
5990 *
5991 **/
5992static void
5993_scsih_reprobe_lun(struct scsi_device *sdev, void *no_uld_attach)
5994{
5995 int rc;
5996
5997 sdev->no_uld_attach = no_uld_attach ? 1 : 0;
5998 sdev_printk(KERN_INFO, sdev, "%s raid component\n",
5999 sdev->no_uld_attach ? "hidding" : "exposing");
6000 rc = scsi_device_reprobe(sdev);
6001}
6002
6003/**
Eric Moore635374e2009-03-09 01:21:12 -06006004 * _scsih_sas_volume_add - add new volume
6005 * @ioc: per adapter object
6006 * @element: IR config element data
6007 * Context: user.
6008 *
6009 * Return nothing.
6010 */
6011static void
6012_scsih_sas_volume_add(struct MPT2SAS_ADAPTER *ioc,
6013 Mpi2EventIrConfigElement_t *element)
6014{
6015 struct _raid_device *raid_device;
6016 unsigned long flags;
6017 u64 wwid;
6018 u16 handle = le16_to_cpu(element->VolDevHandle);
6019 int rc;
6020
Eric Moore635374e2009-03-09 01:21:12 -06006021 mpt2sas_config_get_volume_wwid(ioc, handle, &wwid);
6022 if (!wwid) {
6023 printk(MPT2SAS_ERR_FMT
6024 "failure at %s:%d/%s()!\n", ioc->name,
6025 __FILE__, __LINE__, __func__);
6026 return;
6027 }
6028
6029 spin_lock_irqsave(&ioc->raid_device_lock, flags);
6030 raid_device = _scsih_raid_device_find_by_wwid(ioc, wwid);
6031 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
6032
6033 if (raid_device)
6034 return;
6035
6036 raid_device = kzalloc(sizeof(struct _raid_device), GFP_KERNEL);
6037 if (!raid_device) {
6038 printk(MPT2SAS_ERR_FMT
6039 "failure at %s:%d/%s()!\n", ioc->name,
6040 __FILE__, __LINE__, __func__);
6041 return;
6042 }
6043
6044 raid_device->id = ioc->sas_id++;
6045 raid_device->channel = RAID_CHANNEL;
6046 raid_device->handle = handle;
6047 raid_device->wwid = wwid;
6048 _scsih_raid_device_add(ioc, raid_device);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306049 if (!ioc->wait_for_discovery_to_complete) {
Eric Moore635374e2009-03-09 01:21:12 -06006050 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
6051 raid_device->id, 0);
6052 if (rc)
6053 _scsih_raid_device_remove(ioc, raid_device);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306054 } else {
6055 spin_lock_irqsave(&ioc->raid_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06006056 _scsih_determine_boot_device(ioc, raid_device, 1);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306057 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
6058 }
Eric Moore635374e2009-03-09 01:21:12 -06006059}
6060
6061/**
6062 * _scsih_sas_volume_delete - delete volume
6063 * @ioc: per adapter object
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306064 * @handle: volume device handle
Eric Moore635374e2009-03-09 01:21:12 -06006065 * Context: user.
6066 *
6067 * Return nothing.
6068 */
6069static void
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306070_scsih_sas_volume_delete(struct MPT2SAS_ADAPTER *ioc, u16 handle)
Eric Moore635374e2009-03-09 01:21:12 -06006071{
6072 struct _raid_device *raid_device;
Eric Moore635374e2009-03-09 01:21:12 -06006073 unsigned long flags;
6074 struct MPT2SAS_TARGET *sas_target_priv_data;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306075 struct scsi_target *starget = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06006076
Eric Moore635374e2009-03-09 01:21:12 -06006077 spin_lock_irqsave(&ioc->raid_device_lock, flags);
6078 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306079 if (raid_device) {
6080 if (raid_device->starget) {
6081 starget = raid_device->starget;
6082 sas_target_priv_data = starget->hostdata;
6083 sas_target_priv_data->deleted = 1;
6084 }
6085 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), wwid"
6086 "(0x%016llx)\n", ioc->name, raid_device->handle,
6087 (unsigned long long) raid_device->wwid);
6088 list_del(&raid_device->list);
6089 kfree(raid_device);
Eric Moore635374e2009-03-09 01:21:12 -06006090 }
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306091 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
6092 if (starget)
6093 scsi_remove_target(&starget->dev);
Eric Moore635374e2009-03-09 01:21:12 -06006094}
6095
6096/**
6097 * _scsih_sas_pd_expose - expose pd component to /dev/sdX
6098 * @ioc: per adapter object
6099 * @element: IR config element data
6100 * Context: user.
6101 *
6102 * Return nothing.
6103 */
6104static void
6105_scsih_sas_pd_expose(struct MPT2SAS_ADAPTER *ioc,
6106 Mpi2EventIrConfigElement_t *element)
6107{
6108 struct _sas_device *sas_device;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306109 struct scsi_target *starget = NULL;
6110 struct MPT2SAS_TARGET *sas_target_priv_data;
Eric Moore635374e2009-03-09 01:21:12 -06006111 unsigned long flags;
6112 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
6113
6114 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6115 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306116 if (sas_device) {
6117 sas_device->volume_handle = 0;
6118 sas_device->volume_wwid = 0;
6119 clear_bit(handle, ioc->pd_handles);
6120 if (sas_device->starget && sas_device->starget->hostdata) {
6121 starget = sas_device->starget;
6122 sas_target_priv_data = starget->hostdata;
6123 sas_target_priv_data->flags &=
6124 ~MPT_TARGET_FLAGS_RAID_COMPONENT;
6125 }
6126 }
Eric Moore635374e2009-03-09 01:21:12 -06006127 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6128 if (!sas_device)
6129 return;
6130
6131 /* exposing raid component */
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306132 if (starget)
6133 starget_for_each_device(starget, NULL, _scsih_reprobe_lun);
Eric Moore635374e2009-03-09 01:21:12 -06006134}
6135
6136/**
6137 * _scsih_sas_pd_hide - hide pd component from /dev/sdX
6138 * @ioc: per adapter object
6139 * @element: IR config element data
6140 * Context: user.
6141 *
6142 * Return nothing.
6143 */
6144static void
6145_scsih_sas_pd_hide(struct MPT2SAS_ADAPTER *ioc,
6146 Mpi2EventIrConfigElement_t *element)
6147{
6148 struct _sas_device *sas_device;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306149 struct scsi_target *starget = NULL;
6150 struct MPT2SAS_TARGET *sas_target_priv_data;
Eric Moore635374e2009-03-09 01:21:12 -06006151 unsigned long flags;
6152 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306153 u16 volume_handle = 0;
6154 u64 volume_wwid = 0;
6155
6156 mpt2sas_config_get_volume_handle(ioc, handle, &volume_handle);
6157 if (volume_handle)
6158 mpt2sas_config_get_volume_wwid(ioc, volume_handle,
6159 &volume_wwid);
Eric Moore635374e2009-03-09 01:21:12 -06006160
6161 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6162 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306163 if (sas_device) {
6164 set_bit(handle, ioc->pd_handles);
6165 if (sas_device->starget && sas_device->starget->hostdata) {
6166 starget = sas_device->starget;
6167 sas_target_priv_data = starget->hostdata;
6168 sas_target_priv_data->flags |=
6169 MPT_TARGET_FLAGS_RAID_COMPONENT;
6170 sas_device->volume_handle = volume_handle;
6171 sas_device->volume_wwid = volume_wwid;
6172 }
6173 }
Eric Moore635374e2009-03-09 01:21:12 -06006174 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6175 if (!sas_device)
6176 return;
6177
6178 /* hiding raid component */
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306179 if (starget)
6180 starget_for_each_device(starget, (void *)1, _scsih_reprobe_lun);
Eric Moore635374e2009-03-09 01:21:12 -06006181}
6182
6183/**
6184 * _scsih_sas_pd_delete - delete pd component
6185 * @ioc: per adapter object
6186 * @element: IR config element data
6187 * Context: user.
6188 *
6189 * Return nothing.
6190 */
6191static void
6192_scsih_sas_pd_delete(struct MPT2SAS_ADAPTER *ioc,
6193 Mpi2EventIrConfigElement_t *element)
6194{
Eric Moore635374e2009-03-09 01:21:12 -06006195 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
6196
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306197 _scsih_device_remove_by_handle(ioc, handle);
Eric Moore635374e2009-03-09 01:21:12 -06006198}
6199
6200/**
6201 * _scsih_sas_pd_add - remove pd component
6202 * @ioc: per adapter object
6203 * @element: IR config element data
6204 * Context: user.
6205 *
6206 * Return nothing.
6207 */
6208static void
6209_scsih_sas_pd_add(struct MPT2SAS_ADAPTER *ioc,
6210 Mpi2EventIrConfigElement_t *element)
6211{
6212 struct _sas_device *sas_device;
6213 unsigned long flags;
6214 u16 handle = le16_to_cpu(element->PhysDiskDevHandle);
Kashyap, Desai62727a72009-08-07 19:35:18 +05306215 Mpi2ConfigReply_t mpi_reply;
6216 Mpi2SasDevicePage0_t sas_device_pg0;
6217 u32 ioc_status;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306218 u64 sas_address;
6219 u16 parent_handle;
Eric Moore635374e2009-03-09 01:21:12 -06006220
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306221 set_bit(handle, ioc->pd_handles);
6222
Eric Moore635374e2009-03-09 01:21:12 -06006223 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6224 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
6225 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306226 if (sas_device)
Kashyap, Desai62727a72009-08-07 19:35:18 +05306227 return;
Kashyap, Desai62727a72009-08-07 19:35:18 +05306228
6229 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply, &sas_device_pg0,
6230 MPI2_SAS_DEVICE_PGAD_FORM_HANDLE, handle))) {
6231 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6232 ioc->name, __FILE__, __LINE__, __func__);
6233 return;
6234 }
6235
6236 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6237 MPI2_IOCSTATUS_MASK;
6238 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
6239 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6240 ioc->name, __FILE__, __LINE__, __func__);
6241 return;
6242 }
6243
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306244 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
6245 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address))
6246 mpt2sas_transport_update_links(ioc, sas_address, handle,
6247 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Kashyap, Desai62727a72009-08-07 19:35:18 +05306248
6249 _scsih_add_device(ioc, handle, 0, 1);
Eric Moore635374e2009-03-09 01:21:12 -06006250}
6251
6252#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
6253/**
6254 * _scsih_sas_ir_config_change_event_debug - debug for IR Config Change events
6255 * @ioc: per adapter object
6256 * @event_data: event data payload
6257 * Context: user.
6258 *
6259 * Return nothing.
6260 */
6261static void
6262_scsih_sas_ir_config_change_event_debug(struct MPT2SAS_ADAPTER *ioc,
6263 Mpi2EventDataIrConfigChangeList_t *event_data)
6264{
6265 Mpi2EventIrConfigElement_t *element;
6266 u8 element_type;
6267 int i;
6268 char *reason_str = NULL, *element_str = NULL;
6269
6270 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
6271
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05306272 printk(MPT2SAS_INFO_FMT "raid config change: (%s), elements(%d)\n",
Eric Moore635374e2009-03-09 01:21:12 -06006273 ioc->name, (le32_to_cpu(event_data->Flags) &
6274 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ?
6275 "foreign" : "native", event_data->NumElements);
6276 for (i = 0; i < event_data->NumElements; i++, element++) {
6277 switch (element->ReasonCode) {
6278 case MPI2_EVENT_IR_CHANGE_RC_ADDED:
6279 reason_str = "add";
6280 break;
6281 case MPI2_EVENT_IR_CHANGE_RC_REMOVED:
6282 reason_str = "remove";
6283 break;
6284 case MPI2_EVENT_IR_CHANGE_RC_NO_CHANGE:
6285 reason_str = "no change";
6286 break;
6287 case MPI2_EVENT_IR_CHANGE_RC_HIDE:
6288 reason_str = "hide";
6289 break;
6290 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE:
6291 reason_str = "unhide";
6292 break;
6293 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED:
6294 reason_str = "volume_created";
6295 break;
6296 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED:
6297 reason_str = "volume_deleted";
6298 break;
6299 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED:
6300 reason_str = "pd_created";
6301 break;
6302 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED:
6303 reason_str = "pd_deleted";
6304 break;
6305 default:
6306 reason_str = "unknown reason";
6307 break;
6308 }
6309 element_type = le16_to_cpu(element->ElementFlags) &
6310 MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK;
6311 switch (element_type) {
6312 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLUME_ELEMENT:
6313 element_str = "volume";
6314 break;
6315 case MPI2_EVENT_IR_CHANGE_EFLAGS_VOLPHYSDISK_ELEMENT:
6316 element_str = "phys disk";
6317 break;
6318 case MPI2_EVENT_IR_CHANGE_EFLAGS_HOTSPARE_ELEMENT:
6319 element_str = "hot spare";
6320 break;
6321 default:
6322 element_str = "unknown element";
6323 break;
6324 }
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05306325 printk(KERN_INFO "\t(%s:%s), vol handle(0x%04x), "
Eric Moore635374e2009-03-09 01:21:12 -06006326 "pd handle(0x%04x), pd num(0x%02x)\n", element_str,
6327 reason_str, le16_to_cpu(element->VolDevHandle),
6328 le16_to_cpu(element->PhysDiskDevHandle),
6329 element->PhysDiskNum);
6330 }
6331}
6332#endif
6333
6334/**
6335 * _scsih_sas_ir_config_change_event - handle ir configuration change events
6336 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306337 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06006338 * Context: user.
6339 *
6340 * Return nothing.
6341 */
6342static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306343_scsih_sas_ir_config_change_event(struct MPT2SAS_ADAPTER *ioc,
6344 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06006345{
6346 Mpi2EventIrConfigElement_t *element;
6347 int i;
Kashyap, Desai62727a72009-08-07 19:35:18 +05306348 u8 foreign_config;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306349 Mpi2EventDataIrConfigChangeList_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06006350
6351#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306352 if ((ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
6353 && !ioc->hide_ir_msg)
Eric Moore635374e2009-03-09 01:21:12 -06006354 _scsih_sas_ir_config_change_event_debug(ioc, event_data);
6355
6356#endif
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306357
6358 if (ioc->shost_recovery)
6359 return;
6360
Kashyap, Desai62727a72009-08-07 19:35:18 +05306361 foreign_config = (le32_to_cpu(event_data->Flags) &
6362 MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG) ? 1 : 0;
Eric Moore635374e2009-03-09 01:21:12 -06006363
6364 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
6365 for (i = 0; i < event_data->NumElements; i++, element++) {
6366
6367 switch (element->ReasonCode) {
6368 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED:
6369 case MPI2_EVENT_IR_CHANGE_RC_ADDED:
Kashyap, Desai62727a72009-08-07 19:35:18 +05306370 if (!foreign_config)
6371 _scsih_sas_volume_add(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006372 break;
6373 case MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED:
6374 case MPI2_EVENT_IR_CHANGE_RC_REMOVED:
Kashyap, Desai62727a72009-08-07 19:35:18 +05306375 if (!foreign_config)
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306376 _scsih_sas_volume_delete(ioc,
6377 le16_to_cpu(element->VolDevHandle));
Eric Moore635374e2009-03-09 01:21:12 -06006378 break;
6379 case MPI2_EVENT_IR_CHANGE_RC_PD_CREATED:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306380 if (!ioc->is_warpdrive)
6381 _scsih_sas_pd_hide(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006382 break;
6383 case MPI2_EVENT_IR_CHANGE_RC_PD_DELETED:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306384 if (!ioc->is_warpdrive)
6385 _scsih_sas_pd_expose(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006386 break;
6387 case MPI2_EVENT_IR_CHANGE_RC_HIDE:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306388 if (!ioc->is_warpdrive)
6389 _scsih_sas_pd_add(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006390 break;
6391 case MPI2_EVENT_IR_CHANGE_RC_UNHIDE:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306392 if (!ioc->is_warpdrive)
6393 _scsih_sas_pd_delete(ioc, element);
Eric Moore635374e2009-03-09 01:21:12 -06006394 break;
6395 }
6396 }
6397}
6398
6399/**
6400 * _scsih_sas_ir_volume_event - IR volume event
6401 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306402 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06006403 * Context: user.
6404 *
6405 * Return nothing.
6406 */
6407static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306408_scsih_sas_ir_volume_event(struct MPT2SAS_ADAPTER *ioc,
6409 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06006410{
6411 u64 wwid;
6412 unsigned long flags;
6413 struct _raid_device *raid_device;
6414 u16 handle;
6415 u32 state;
6416 int rc;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306417 Mpi2EventDataIrVolume_t *event_data = fw_event->event_data;
Eric Moore635374e2009-03-09 01:21:12 -06006418
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306419 if (ioc->shost_recovery)
6420 return;
6421
Eric Moore635374e2009-03-09 01:21:12 -06006422 if (event_data->ReasonCode != MPI2_EVENT_IR_VOLUME_RC_STATE_CHANGED)
6423 return;
6424
6425 handle = le16_to_cpu(event_data->VolDevHandle);
6426 state = le32_to_cpu(event_data->NewValue);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306427 if (!ioc->hide_ir_msg)
6428 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle(0x%04x), "
6429 "old(0x%08x), new(0x%08x)\n", ioc->name, __func__, handle,
6430 le32_to_cpu(event_data->PreviousValue), state));
Eric Moore635374e2009-03-09 01:21:12 -06006431
Eric Moore635374e2009-03-09 01:21:12 -06006432 switch (state) {
6433 case MPI2_RAID_VOL_STATE_MISSING:
6434 case MPI2_RAID_VOL_STATE_FAILED:
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306435 _scsih_sas_volume_delete(ioc, handle);
Eric Moore635374e2009-03-09 01:21:12 -06006436 break;
6437
6438 case MPI2_RAID_VOL_STATE_ONLINE:
6439 case MPI2_RAID_VOL_STATE_DEGRADED:
6440 case MPI2_RAID_VOL_STATE_OPTIMAL:
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306441
6442 spin_lock_irqsave(&ioc->raid_device_lock, flags);
6443 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
6444 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
6445
Eric Moore635374e2009-03-09 01:21:12 -06006446 if (raid_device)
6447 break;
6448
6449 mpt2sas_config_get_volume_wwid(ioc, handle, &wwid);
6450 if (!wwid) {
6451 printk(MPT2SAS_ERR_FMT
6452 "failure at %s:%d/%s()!\n", ioc->name,
6453 __FILE__, __LINE__, __func__);
6454 break;
6455 }
6456
6457 raid_device = kzalloc(sizeof(struct _raid_device), GFP_KERNEL);
6458 if (!raid_device) {
6459 printk(MPT2SAS_ERR_FMT
6460 "failure at %s:%d/%s()!\n", ioc->name,
6461 __FILE__, __LINE__, __func__);
6462 break;
6463 }
6464
6465 raid_device->id = ioc->sas_id++;
6466 raid_device->channel = RAID_CHANNEL;
6467 raid_device->handle = handle;
6468 raid_device->wwid = wwid;
6469 _scsih_raid_device_add(ioc, raid_device);
6470 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
6471 raid_device->id, 0);
6472 if (rc)
6473 _scsih_raid_device_remove(ioc, raid_device);
6474 break;
6475
6476 case MPI2_RAID_VOL_STATE_INITIALIZING:
6477 default:
6478 break;
6479 }
6480}
6481
6482/**
6483 * _scsih_sas_ir_physical_disk_event - PD event
6484 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306485 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06006486 * Context: user.
6487 *
6488 * Return nothing.
6489 */
6490static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306491_scsih_sas_ir_physical_disk_event(struct MPT2SAS_ADAPTER *ioc,
6492 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06006493{
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306494 u16 handle, parent_handle;
Eric Moore635374e2009-03-09 01:21:12 -06006495 u32 state;
6496 struct _sas_device *sas_device;
6497 unsigned long flags;
Kashyap, Desai62727a72009-08-07 19:35:18 +05306498 Mpi2ConfigReply_t mpi_reply;
6499 Mpi2SasDevicePage0_t sas_device_pg0;
6500 u32 ioc_status;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306501 Mpi2EventDataIrPhysicalDisk_t *event_data = fw_event->event_data;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306502 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06006503
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306504 if (ioc->shost_recovery)
6505 return;
6506
Eric Moore635374e2009-03-09 01:21:12 -06006507 if (event_data->ReasonCode != MPI2_EVENT_IR_PHYSDISK_RC_STATE_CHANGED)
6508 return;
6509
6510 handle = le16_to_cpu(event_data->PhysDiskDevHandle);
6511 state = le32_to_cpu(event_data->NewValue);
6512
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306513 if (!ioc->hide_ir_msg)
6514 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: handle(0x%04x), "
6515 "old(0x%08x), new(0x%08x)\n", ioc->name, __func__, handle,
6516 le32_to_cpu(event_data->PreviousValue), state));
Eric Moore635374e2009-03-09 01:21:12 -06006517
Eric Moore635374e2009-03-09 01:21:12 -06006518 switch (state) {
Eric Moore635374e2009-03-09 01:21:12 -06006519 case MPI2_RAID_PD_STATE_ONLINE:
6520 case MPI2_RAID_PD_STATE_DEGRADED:
6521 case MPI2_RAID_PD_STATE_REBUILDING:
6522 case MPI2_RAID_PD_STATE_OPTIMAL:
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306523 case MPI2_RAID_PD_STATE_HOT_SPARE:
6524
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306525 if (!ioc->is_warpdrive)
6526 set_bit(handle, ioc->pd_handles);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306527
6528 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6529 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
6530 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6531
6532 if (sas_device)
Kashyap, Desai62727a72009-08-07 19:35:18 +05306533 return;
Kashyap, Desai62727a72009-08-07 19:35:18 +05306534
6535 if ((mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
6536 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
6537 handle))) {
6538 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6539 ioc->name, __FILE__, __LINE__, __func__);
6540 return;
6541 }
6542
6543 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6544 MPI2_IOCSTATUS_MASK;
6545 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
6546 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
6547 ioc->name, __FILE__, __LINE__, __func__);
6548 return;
6549 }
6550
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306551 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
6552 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address))
6553 mpt2sas_transport_update_links(ioc, sas_address, handle,
6554 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Kashyap, Desai62727a72009-08-07 19:35:18 +05306555
6556 _scsih_add_device(ioc, handle, 0, 1);
6557
Eric Moore635374e2009-03-09 01:21:12 -06006558 break;
6559
Kashyap, Desai62727a72009-08-07 19:35:18 +05306560 case MPI2_RAID_PD_STATE_OFFLINE:
Eric Moore635374e2009-03-09 01:21:12 -06006561 case MPI2_RAID_PD_STATE_NOT_CONFIGURED:
6562 case MPI2_RAID_PD_STATE_NOT_COMPATIBLE:
Eric Moore635374e2009-03-09 01:21:12 -06006563 default:
6564 break;
6565 }
6566}
6567
6568#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
6569/**
6570 * _scsih_sas_ir_operation_status_event_debug - debug for IR op event
6571 * @ioc: per adapter object
6572 * @event_data: event data payload
6573 * Context: user.
6574 *
6575 * Return nothing.
6576 */
6577static void
6578_scsih_sas_ir_operation_status_event_debug(struct MPT2SAS_ADAPTER *ioc,
6579 Mpi2EventDataIrOperationStatus_t *event_data)
6580{
6581 char *reason_str = NULL;
6582
6583 switch (event_data->RAIDOperation) {
6584 case MPI2_EVENT_IR_RAIDOP_RESYNC:
6585 reason_str = "resync";
6586 break;
6587 case MPI2_EVENT_IR_RAIDOP_ONLINE_CAP_EXPANSION:
6588 reason_str = "online capacity expansion";
6589 break;
6590 case MPI2_EVENT_IR_RAIDOP_CONSISTENCY_CHECK:
6591 reason_str = "consistency check";
6592 break;
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05306593 case MPI2_EVENT_IR_RAIDOP_BACKGROUND_INIT:
6594 reason_str = "background init";
6595 break;
6596 case MPI2_EVENT_IR_RAIDOP_MAKE_DATA_CONSISTENT:
6597 reason_str = "make data consistent";
Eric Moore635374e2009-03-09 01:21:12 -06006598 break;
6599 }
6600
Kashyap, Desaiec6c2b42009-09-23 17:31:01 +05306601 if (!reason_str)
6602 return;
6603
Eric Moore635374e2009-03-09 01:21:12 -06006604 printk(MPT2SAS_INFO_FMT "raid operational status: (%s)"
6605 "\thandle(0x%04x), percent complete(%d)\n",
6606 ioc->name, reason_str,
6607 le16_to_cpu(event_data->VolDevHandle),
6608 event_data->PercentComplete);
6609}
6610#endif
6611
6612/**
6613 * _scsih_sas_ir_operation_status_event - handle RAID operation events
6614 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306615 * @fw_event: The fw_event_work object
Eric Moore635374e2009-03-09 01:21:12 -06006616 * Context: user.
6617 *
6618 * Return nothing.
6619 */
6620static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306621_scsih_sas_ir_operation_status_event(struct MPT2SAS_ADAPTER *ioc,
6622 struct fw_event_work *fw_event)
Eric Moore635374e2009-03-09 01:21:12 -06006623{
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306624 Mpi2EventDataIrOperationStatus_t *event_data = fw_event->event_data;
6625 static struct _raid_device *raid_device;
6626 unsigned long flags;
6627 u16 handle;
6628
Eric Moore635374e2009-03-09 01:21:12 -06006629#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306630 if ((ioc->logging_level & MPT_DEBUG_EVENT_WORK_TASK)
6631 && !ioc->hide_ir_msg)
Kashyap, Desai7b936b02009-09-25 11:44:41 +05306632 _scsih_sas_ir_operation_status_event_debug(ioc,
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306633 event_data);
Eric Moore635374e2009-03-09 01:21:12 -06006634#endif
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306635
6636 /* code added for raid transport support */
6637 if (event_data->RAIDOperation == MPI2_EVENT_IR_RAIDOP_RESYNC) {
6638
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306639 spin_lock_irqsave(&ioc->raid_device_lock, flags);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306640 handle = le16_to_cpu(event_data->VolDevHandle);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306641 raid_device = _scsih_raid_device_find_by_handle(ioc, handle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306642 if (raid_device)
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306643 raid_device->percent_complete =
6644 event_data->PercentComplete;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306645 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05306646 }
Eric Moore635374e2009-03-09 01:21:12 -06006647}
6648
6649/**
Kashyap, Desai14695852010-03-30 10:52:44 +05306650 * _scsih_prep_device_scan - initialize parameters prior to device scan
6651 * @ioc: per adapter object
6652 *
6653 * Set the deleted flag prior to device scan. If the device is found during
6654 * the scan, then we clear the deleted flag.
6655 */
6656static void
6657_scsih_prep_device_scan(struct MPT2SAS_ADAPTER *ioc)
6658{
6659 struct MPT2SAS_DEVICE *sas_device_priv_data;
6660 struct scsi_device *sdev;
6661
6662 shost_for_each_device(sdev, ioc->shost) {
6663 sas_device_priv_data = sdev->hostdata;
6664 if (sas_device_priv_data && sas_device_priv_data->sas_target)
6665 sas_device_priv_data->sas_target->deleted = 1;
6666 }
6667}
6668
6669/**
Eric Moore635374e2009-03-09 01:21:12 -06006670 * _scsih_mark_responding_sas_device - mark a sas_devices as responding
6671 * @ioc: per adapter object
6672 * @sas_address: sas address
6673 * @slot: enclosure slot id
6674 * @handle: device handle
6675 *
6676 * After host reset, find out whether devices are still responding.
6677 * Used in _scsi_remove_unresponsive_sas_devices.
6678 *
6679 * Return nothing.
6680 */
6681static void
6682_scsih_mark_responding_sas_device(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
6683 u16 slot, u16 handle)
6684{
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306685 struct MPT2SAS_TARGET *sas_target_priv_data = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06006686 struct scsi_target *starget;
6687 struct _sas_device *sas_device;
6688 unsigned long flags;
6689
6690 spin_lock_irqsave(&ioc->sas_device_lock, flags);
6691 list_for_each_entry(sas_device, &ioc->sas_device_list, list) {
6692 if (sas_device->sas_address == sas_address &&
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306693 sas_device->slot == slot) {
Eric Moore635374e2009-03-09 01:21:12 -06006694 sas_device->responding = 1;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05306695 starget = sas_device->starget;
Kashyap, Desai14695852010-03-30 10:52:44 +05306696 if (starget && starget->hostdata) {
6697 sas_target_priv_data = starget->hostdata;
6698 sas_target_priv_data->tm_busy = 0;
6699 sas_target_priv_data->deleted = 0;
6700 } else
6701 sas_target_priv_data = NULL;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306702 if (starget)
6703 starget_printk(KERN_INFO, starget,
6704 "handle(0x%04x), sas_addr(0x%016llx), "
6705 "enclosure logical id(0x%016llx), "
6706 "slot(%d)\n", handle,
6707 (unsigned long long)sas_device->sas_address,
6708 (unsigned long long)
6709 sas_device->enclosure_logical_id,
6710 sas_device->slot);
Eric Moore635374e2009-03-09 01:21:12 -06006711 if (sas_device->handle == handle)
6712 goto out;
6713 printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n",
6714 sas_device->handle);
6715 sas_device->handle = handle;
Kashyap, Desai14695852010-03-30 10:52:44 +05306716 if (sas_target_priv_data)
6717 sas_target_priv_data->handle = handle;
Eric Moore635374e2009-03-09 01:21:12 -06006718 goto out;
6719 }
6720 }
6721 out:
6722 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
6723}
6724
6725/**
6726 * _scsih_search_responding_sas_devices -
6727 * @ioc: per adapter object
6728 *
6729 * After host reset, find out whether devices are still responding.
6730 * If not remove.
6731 *
6732 * Return nothing.
6733 */
6734static void
6735_scsih_search_responding_sas_devices(struct MPT2SAS_ADAPTER *ioc)
6736{
6737 Mpi2SasDevicePage0_t sas_device_pg0;
6738 Mpi2ConfigReply_t mpi_reply;
6739 u16 ioc_status;
6740 __le64 sas_address;
6741 u16 handle;
6742 u32 device_info;
6743 u16 slot;
6744
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306745 printk(MPT2SAS_INFO_FMT "search for end-devices: start\n", ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006746
6747 if (list_empty(&ioc->sas_device_list))
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306748 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06006749
6750 handle = 0xFFFF;
6751 while (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
6752 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE,
6753 handle))) {
6754 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6755 MPI2_IOCSTATUS_MASK;
6756 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6757 break;
6758 handle = le16_to_cpu(sas_device_pg0.DevHandle);
6759 device_info = le32_to_cpu(sas_device_pg0.DeviceInfo);
6760 if (!(_scsih_is_end_device(device_info)))
6761 continue;
6762 sas_address = le64_to_cpu(sas_device_pg0.SASAddress);
6763 slot = le16_to_cpu(sas_device_pg0.Slot);
6764 _scsih_mark_responding_sas_device(ioc, sas_address, slot,
6765 handle);
6766 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306767out:
6768 printk(MPT2SAS_INFO_FMT "search for end-devices: complete\n",
6769 ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006770}
6771
6772/**
6773 * _scsih_mark_responding_raid_device - mark a raid_device as responding
6774 * @ioc: per adapter object
6775 * @wwid: world wide identifier for raid volume
6776 * @handle: device handle
6777 *
6778 * After host reset, find out whether devices are still responding.
6779 * Used in _scsi_remove_unresponsive_raid_devices.
6780 *
6781 * Return nothing.
6782 */
6783static void
6784_scsih_mark_responding_raid_device(struct MPT2SAS_ADAPTER *ioc, u64 wwid,
6785 u16 handle)
6786{
6787 struct MPT2SAS_TARGET *sas_target_priv_data;
6788 struct scsi_target *starget;
6789 struct _raid_device *raid_device;
6790 unsigned long flags;
6791
6792 spin_lock_irqsave(&ioc->raid_device_lock, flags);
6793 list_for_each_entry(raid_device, &ioc->raid_device_list, list) {
6794 if (raid_device->wwid == wwid && raid_device->starget) {
Kashyap, Desai14695852010-03-30 10:52:44 +05306795 starget = raid_device->starget;
6796 if (starget && starget->hostdata) {
6797 sas_target_priv_data = starget->hostdata;
6798 sas_target_priv_data->deleted = 0;
6799 } else
6800 sas_target_priv_data = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06006801 raid_device->responding = 1;
nagalakshmi.nandigama@lsi.com30c43282011-12-01 07:52:56 +05306802 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06006803 starget_printk(KERN_INFO, raid_device->starget,
6804 "handle(0x%04x), wwid(0x%016llx)\n", handle,
6805 (unsigned long long)raid_device->wwid);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306806 /*
6807 * WARPDRIVE: The handles of the PDs might have changed
6808 * across the host reset so re-initialize the
6809 * required data for Direct IO
6810 */
6811 _scsih_init_warpdrive_properties(ioc, raid_device);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306812 spin_lock_irqsave(&ioc->raid_device_lock, flags);
6813 if (raid_device->handle == handle) {
6814 spin_unlock_irqrestore(&ioc->raid_device_lock,
6815 flags);
nagalakshmi.nandigama@lsi.com30c43282011-12-01 07:52:56 +05306816 return;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306817 }
Eric Moore635374e2009-03-09 01:21:12 -06006818 printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n",
6819 raid_device->handle);
6820 raid_device->handle = handle;
Kashyap, Desai14695852010-03-30 10:52:44 +05306821 if (sas_target_priv_data)
6822 sas_target_priv_data->handle = handle;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306823 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
nagalakshmi.nandigama@lsi.com30c43282011-12-01 07:52:56 +05306824 return;
Eric Moore635374e2009-03-09 01:21:12 -06006825 }
6826 }
nagalakshmi.nandigama@lsi.com30c43282011-12-01 07:52:56 +05306827
Eric Moore635374e2009-03-09 01:21:12 -06006828 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
6829}
6830
6831/**
6832 * _scsih_search_responding_raid_devices -
6833 * @ioc: per adapter object
6834 *
6835 * After host reset, find out whether devices are still responding.
6836 * If not remove.
6837 *
6838 * Return nothing.
6839 */
6840static void
6841_scsih_search_responding_raid_devices(struct MPT2SAS_ADAPTER *ioc)
6842{
6843 Mpi2RaidVolPage1_t volume_pg1;
Kashyap, Desaid417d1c2010-06-17 13:48:10 +05306844 Mpi2RaidVolPage0_t volume_pg0;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306845 Mpi2RaidPhysDiskPage0_t pd_pg0;
Eric Moore635374e2009-03-09 01:21:12 -06006846 Mpi2ConfigReply_t mpi_reply;
6847 u16 ioc_status;
6848 u16 handle;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306849 u8 phys_disk_num;
Eric Moore635374e2009-03-09 01:21:12 -06006850
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306851 if (!ioc->ir_firmware)
6852 return;
6853
6854 printk(MPT2SAS_INFO_FMT "search for raid volumes: start\n",
6855 ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006856
6857 if (list_empty(&ioc->raid_device_list))
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306858 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06006859
6860 handle = 0xFFFF;
6861 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
6862 &volume_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
6863 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6864 MPI2_IOCSTATUS_MASK;
6865 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6866 break;
6867 handle = le16_to_cpu(volume_pg1.DevHandle);
Kashyap, Desaid417d1c2010-06-17 13:48:10 +05306868
6869 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply,
6870 &volume_pg0, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, handle,
6871 sizeof(Mpi2RaidVolPage0_t)))
6872 continue;
6873
6874 if (volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_OPTIMAL ||
6875 volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_ONLINE ||
6876 volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_DEGRADED)
6877 _scsih_mark_responding_raid_device(ioc,
6878 le64_to_cpu(volume_pg1.WWID), handle);
Eric Moore635374e2009-03-09 01:21:12 -06006879 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306880
6881 /* refresh the pd_handles */
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05306882 if (!ioc->is_warpdrive) {
6883 phys_disk_num = 0xFF;
6884 memset(ioc->pd_handles, 0, ioc->pd_handles_sz);
6885 while (!(mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
6886 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM,
6887 phys_disk_num))) {
6888 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6889 MPI2_IOCSTATUS_MASK;
6890 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6891 break;
6892 phys_disk_num = pd_pg0.PhysDiskNum;
6893 handle = le16_to_cpu(pd_pg0.DevHandle);
6894 set_bit(handle, ioc->pd_handles);
6895 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05306896 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306897out:
6898 printk(MPT2SAS_INFO_FMT "search for responding raid volumes: "
6899 "complete\n", ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006900}
6901
6902/**
6903 * _scsih_mark_responding_expander - mark a expander as responding
6904 * @ioc: per adapter object
6905 * @sas_address: sas address
6906 * @handle:
6907 *
6908 * After host reset, find out whether devices are still responding.
6909 * Used in _scsi_remove_unresponsive_expanders.
6910 *
6911 * Return nothing.
6912 */
6913static void
6914_scsih_mark_responding_expander(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
6915 u16 handle)
6916{
6917 struct _sas_node *sas_expander;
6918 unsigned long flags;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306919 int i;
Eric Moore635374e2009-03-09 01:21:12 -06006920
6921 spin_lock_irqsave(&ioc->sas_node_lock, flags);
6922 list_for_each_entry(sas_expander, &ioc->sas_expander_list, list) {
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306923 if (sas_expander->sas_address != sas_address)
6924 continue;
6925 sas_expander->responding = 1;
6926 if (sas_expander->handle == handle)
Eric Moore635374e2009-03-09 01:21:12 -06006927 goto out;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05306928 printk(KERN_INFO "\texpander(0x%016llx): handle changed"
6929 " from(0x%04x) to (0x%04x)!!!\n",
6930 (unsigned long long)sas_expander->sas_address,
6931 sas_expander->handle, handle);
6932 sas_expander->handle = handle;
6933 for (i = 0 ; i < sas_expander->num_phys ; i++)
6934 sas_expander->phy[i].handle = handle;
6935 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06006936 }
6937 out:
6938 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
6939}
6940
6941/**
6942 * _scsih_search_responding_expanders -
6943 * @ioc: per adapter object
6944 *
6945 * After host reset, find out whether devices are still responding.
6946 * If not remove.
6947 *
6948 * Return nothing.
6949 */
6950static void
6951_scsih_search_responding_expanders(struct MPT2SAS_ADAPTER *ioc)
6952{
6953 Mpi2ExpanderPage0_t expander_pg0;
6954 Mpi2ConfigReply_t mpi_reply;
6955 u16 ioc_status;
Kashyap, Desaic97951e2011-06-14 10:54:56 +05306956 u64 sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06006957 u16 handle;
6958
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306959 printk(MPT2SAS_INFO_FMT "search for expanders: start\n", ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006960
6961 if (list_empty(&ioc->sas_expander_list))
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306962 goto out;
Eric Moore635374e2009-03-09 01:21:12 -06006963
6964 handle = 0xFFFF;
6965 while (!(mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
6966 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL, handle))) {
6967
6968 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
6969 MPI2_IOCSTATUS_MASK;
6970 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
6971 break;
6972
6973 handle = le16_to_cpu(expander_pg0.DevHandle);
6974 sas_address = le64_to_cpu(expander_pg0.SASAddress);
6975 printk(KERN_INFO "\texpander present: handle(0x%04x), "
6976 "sas_addr(0x%016llx)\n", handle,
6977 (unsigned long long)sas_address);
6978 _scsih_mark_responding_expander(ioc, sas_address, handle);
6979 }
6980
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05306981 out:
6982 printk(MPT2SAS_INFO_FMT "search for expanders: complete\n", ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06006983}
6984
6985/**
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05306986 * _scsih_remove_unresponding_sas_devices - removing unresponding devices
Eric Moore635374e2009-03-09 01:21:12 -06006987 * @ioc: per adapter object
6988 *
6989 * Return nothing.
6990 */
6991static void
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05306992_scsih_remove_unresponding_sas_devices(struct MPT2SAS_ADAPTER *ioc)
Eric Moore635374e2009-03-09 01:21:12 -06006993{
6994 struct _sas_device *sas_device, *sas_device_next;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306995 struct _sas_node *sas_expander, *sas_expander_next;
Eric Moore635374e2009-03-09 01:21:12 -06006996 struct _raid_device *raid_device, *raid_device_next;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05306997 struct list_head tmp_list;
6998 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06006999
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307000 printk(MPT2SAS_INFO_FMT "removing unresponding devices: start\n",
7001 ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06007002
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307003 /* removing unresponding end devices */
7004 printk(MPT2SAS_INFO_FMT "removing unresponding devices: end-devices\n",
7005 ioc->name);
Eric Moore635374e2009-03-09 01:21:12 -06007006 list_for_each_entry_safe(sas_device, sas_device_next,
7007 &ioc->sas_device_list, list) {
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307008 if (!sas_device->responding)
nagalakshmi.nandigama@lsi.com39af7a92012-03-20 12:09:26 +05307009 mpt2sas_device_remove_by_sas_address(ioc,
7010 sas_device->sas_address);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307011 else
Eric Moore635374e2009-03-09 01:21:12 -06007012 sas_device->responding = 0;
Eric Moore635374e2009-03-09 01:21:12 -06007013 }
7014
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307015 /* removing unresponding volumes */
7016 if (ioc->ir_firmware) {
7017 printk(MPT2SAS_INFO_FMT "removing unresponding devices: "
7018 "volumes\n", ioc->name);
7019 list_for_each_entry_safe(raid_device, raid_device_next,
7020 &ioc->raid_device_list, list) {
7021 if (!raid_device->responding)
7022 _scsih_sas_volume_delete(ioc,
7023 raid_device->handle);
7024 else
7025 raid_device->responding = 0;
Eric Moore635374e2009-03-09 01:21:12 -06007026 }
Eric Moore635374e2009-03-09 01:21:12 -06007027 }
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307028 /* removing unresponding expanders */
7029 printk(MPT2SAS_INFO_FMT "removing unresponding devices: expanders\n",
7030 ioc->name);
7031 spin_lock_irqsave(&ioc->sas_node_lock, flags);
7032 INIT_LIST_HEAD(&tmp_list);
7033 list_for_each_entry_safe(sas_expander, sas_expander_next,
7034 &ioc->sas_expander_list, list) {
7035 if (!sas_expander->responding)
7036 list_move_tail(&sas_expander->list, &tmp_list);
7037 else
Eric Moore635374e2009-03-09 01:21:12 -06007038 sas_expander->responding = 0;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307039 }
7040 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
7041 list_for_each_entry_safe(sas_expander, sas_expander_next, &tmp_list,
7042 list) {
7043 list_del(&sas_expander->list);
7044 _scsih_expander_node_remove(ioc, sas_expander);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307045 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307046 printk(MPT2SAS_INFO_FMT "removing unresponding devices: complete\n",
7047 ioc->name);
7048 /* unblock devices */
7049 _scsih_ublock_io_all_device(ioc);
7050}
7051
7052static void
7053_scsih_refresh_expander_links(struct MPT2SAS_ADAPTER *ioc,
7054 struct _sas_node *sas_expander, u16 handle)
7055{
7056 Mpi2ExpanderPage1_t expander_pg1;
7057 Mpi2ConfigReply_t mpi_reply;
7058 int i;
7059
7060 for (i = 0 ; i < sas_expander->num_phys ; i++) {
7061 if ((mpt2sas_config_get_expander_pg1(ioc, &mpi_reply,
7062 &expander_pg1, i, handle))) {
7063 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
7064 ioc->name, __FILE__, __LINE__, __func__);
7065 return;
7066 }
7067
7068 mpt2sas_transport_update_links(ioc, sas_expander->sas_address,
7069 le16_to_cpu(expander_pg1.AttachedDevHandle), i,
7070 expander_pg1.NegotiatedLinkRate >> 4);
7071 }
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307072}
7073
7074/**
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307075 * _scsih_scan_for_devices_after_reset - scan for devices after host reset
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307076 * @ioc: per adapter object
7077 *
7078 * Return nothing.
7079 */
7080static void
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307081_scsih_scan_for_devices_after_reset(struct MPT2SAS_ADAPTER *ioc)
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307082{
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307083 Mpi2ExpanderPage0_t expander_pg0;
7084 Mpi2SasDevicePage0_t sas_device_pg0;
7085 Mpi2RaidVolPage1_t volume_pg1;
7086 Mpi2RaidVolPage0_t volume_pg0;
7087 Mpi2RaidPhysDiskPage0_t pd_pg0;
7088 Mpi2EventIrConfigElement_t element;
7089 Mpi2ConfigReply_t mpi_reply;
7090 u8 phys_disk_num;
7091 u16 ioc_status;
7092 u16 handle, parent_handle;
7093 u64 sas_address;
7094 struct _sas_device *sas_device;
7095 struct _sas_node *expander_device;
7096 static struct _raid_device *raid_device;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307097 u8 retry_count;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307098 unsigned long flags;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307099
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307100 printk(MPT2SAS_INFO_FMT "scan devices: start\n", ioc->name);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307101
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307102 _scsih_sas_host_refresh(ioc);
7103
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307104 printk(MPT2SAS_INFO_FMT "\tscan devices: expanders start\n",
7105 ioc->name);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307106 /* expanders */
7107 handle = 0xFFFF;
7108 while (!(mpt2sas_config_get_expander_pg0(ioc, &mpi_reply, &expander_pg0,
7109 MPI2_SAS_EXPAND_PGAD_FORM_GET_NEXT_HNDL, handle))) {
7110 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
7111 MPI2_IOCSTATUS_MASK;
7112 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
7113 break;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307114 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
7115 printk(MPT2SAS_INFO_FMT "\tbreak from expander scan: "
7116 "ioc_status(0x%04x), loginfo(0x%08x)\n",
7117 ioc->name, ioc_status,
7118 le32_to_cpu(mpi_reply.IOCLogInfo));
7119 break;
7120 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307121 handle = le16_to_cpu(expander_pg0.DevHandle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307122 spin_lock_irqsave(&ioc->sas_node_lock, flags);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307123 expander_device = mpt2sas_scsih_expander_find_by_sas_address(
7124 ioc, le64_to_cpu(expander_pg0.SASAddress));
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307125 spin_unlock_irqrestore(&ioc->sas_node_lock, flags);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307126 if (expander_device)
7127 _scsih_refresh_expander_links(ioc, expander_device,
7128 handle);
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307129 else {
7130 printk(MPT2SAS_INFO_FMT "\tBEFORE adding expander: "
7131 "handle (0x%04x), sas_addr(0x%016llx)\n",
7132 ioc->name, handle, (unsigned long long)
7133 le64_to_cpu(expander_pg0.SASAddress));
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307134 _scsih_expander_add(ioc, handle);
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307135 printk(MPT2SAS_INFO_FMT "\tAFTER adding expander: "
7136 "handle (0x%04x), sas_addr(0x%016llx)\n",
7137 ioc->name, handle, (unsigned long long)
7138 le64_to_cpu(expander_pg0.SASAddress));
7139 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307140 }
7141
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307142 printk(MPT2SAS_INFO_FMT "\tscan devices: expanders complete\n",
7143 ioc->name);
7144
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307145 if (!ioc->ir_firmware)
7146 goto skip_to_sas;
7147
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307148 printk(MPT2SAS_INFO_FMT "\tscan devices phys disk start\n", ioc->name);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307149 /* phys disk */
7150 phys_disk_num = 0xFF;
7151 while (!(mpt2sas_config_get_phys_disk_pg0(ioc, &mpi_reply,
7152 &pd_pg0, MPI2_PHYSDISK_PGAD_FORM_GET_NEXT_PHYSDISKNUM,
7153 phys_disk_num))) {
7154 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
7155 MPI2_IOCSTATUS_MASK;
7156 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
7157 break;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307158 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
7159 printk(MPT2SAS_INFO_FMT "\tbreak from phys disk scan:"
7160 "ioc_status(0x%04x), loginfo(0x%08x)\n",
7161 ioc->name, ioc_status,
7162 le32_to_cpu(mpi_reply.IOCLogInfo));
7163 break;
7164 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307165 phys_disk_num = pd_pg0.PhysDiskNum;
7166 handle = le16_to_cpu(pd_pg0.DevHandle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307167 spin_lock_irqsave(&ioc->sas_device_lock, flags);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307168 sas_device = _scsih_sas_device_find_by_handle(ioc, handle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307169 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307170 if (sas_device)
7171 continue;
7172 if (mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
7173 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
7174 handle) != 0)
7175 continue;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307176 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
7177 MPI2_IOCSTATUS_MASK;
7178 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
7179 printk(MPT2SAS_INFO_FMT "\tbreak from phys disk scan "
7180 "ioc_status(0x%04x), loginfo(0x%08x)\n",
7181 ioc->name, ioc_status,
7182 le32_to_cpu(mpi_reply.IOCLogInfo));
7183 break;
7184 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307185 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
7186 if (!_scsih_get_sas_address(ioc, parent_handle,
7187 &sas_address)) {
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307188 printk(MPT2SAS_INFO_FMT "\tBEFORE adding phys disk: "
7189 " handle (0x%04x), sas_addr(0x%016llx)\n",
7190 ioc->name, handle, (unsigned long long)
7191 le64_to_cpu(sas_device_pg0.SASAddress));
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307192 mpt2sas_transport_update_links(ioc, sas_address,
7193 handle, sas_device_pg0.PhyNum,
7194 MPI2_SAS_NEG_LINK_RATE_1_5);
7195 set_bit(handle, ioc->pd_handles);
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307196 retry_count = 0;
7197 /* This will retry adding the end device.
7198 * _scsih_add_device() will decide on retries and
7199 * return "1" when it should be retried
7200 */
7201 while (_scsih_add_device(ioc, handle, retry_count++,
7202 1)) {
7203 ssleep(1);
7204 }
7205 printk(MPT2SAS_INFO_FMT "\tAFTER adding phys disk: "
7206 " handle (0x%04x), sas_addr(0x%016llx)\n",
7207 ioc->name, handle, (unsigned long long)
7208 le64_to_cpu(sas_device_pg0.SASAddress));
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307209 }
7210 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307211
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307212 printk(MPT2SAS_INFO_FMT "\tscan devices: phys disk complete\n",
7213 ioc->name);
7214
7215 printk(MPT2SAS_INFO_FMT "\tscan devices: volumes start\n", ioc->name);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307216 /* volumes */
7217 handle = 0xFFFF;
7218 while (!(mpt2sas_config_get_raid_volume_pg1(ioc, &mpi_reply,
7219 &volume_pg1, MPI2_RAID_VOLUME_PGAD_FORM_GET_NEXT_HANDLE, handle))) {
7220 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
7221 MPI2_IOCSTATUS_MASK;
7222 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
7223 break;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307224 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
7225 printk(MPT2SAS_INFO_FMT "\tbreak from volume scan: "
7226 "ioc_status(0x%04x), loginfo(0x%08x)\n",
7227 ioc->name, ioc_status,
7228 le32_to_cpu(mpi_reply.IOCLogInfo));
7229 break;
7230 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307231 handle = le16_to_cpu(volume_pg1.DevHandle);
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307232 spin_lock_irqsave(&ioc->raid_device_lock, flags);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307233 raid_device = _scsih_raid_device_find_by_wwid(ioc,
7234 le64_to_cpu(volume_pg1.WWID));
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307235 spin_unlock_irqrestore(&ioc->raid_device_lock, flags);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307236 if (raid_device)
7237 continue;
7238 if (mpt2sas_config_get_raid_volume_pg0(ioc, &mpi_reply,
7239 &volume_pg0, MPI2_RAID_VOLUME_PGAD_FORM_HANDLE, handle,
7240 sizeof(Mpi2RaidVolPage0_t)))
7241 continue;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307242 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
7243 MPI2_IOCSTATUS_MASK;
7244 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
7245 printk(MPT2SAS_INFO_FMT "\tbreak from volume scan: "
7246 "ioc_status(0x%04x), loginfo(0x%08x)\n",
7247 ioc->name, ioc_status,
7248 le32_to_cpu(mpi_reply.IOCLogInfo));
7249 break;
7250 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307251 if (volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_OPTIMAL ||
7252 volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_ONLINE ||
7253 volume_pg0.VolumeState == MPI2_RAID_VOL_STATE_DEGRADED) {
7254 memset(&element, 0, sizeof(Mpi2EventIrConfigElement_t));
7255 element.ReasonCode = MPI2_EVENT_IR_CHANGE_RC_ADDED;
7256 element.VolDevHandle = volume_pg1.DevHandle;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307257 printk(MPT2SAS_INFO_FMT "\tBEFORE adding volume: "
7258 " handle (0x%04x)\n", ioc->name,
7259 volume_pg1.DevHandle);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307260 _scsih_sas_volume_add(ioc, &element);
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307261 printk(MPT2SAS_INFO_FMT "\tAFTER adding volume: "
7262 " handle (0x%04x)\n", ioc->name,
7263 volume_pg1.DevHandle);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307264 }
7265 }
7266
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307267 printk(MPT2SAS_INFO_FMT "\tscan devices: volumes complete\n",
7268 ioc->name);
7269
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307270 skip_to_sas:
7271
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307272 printk(MPT2SAS_INFO_FMT "\tscan devices: end devices start\n",
7273 ioc->name);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307274 /* sas devices */
7275 handle = 0xFFFF;
7276 while (!(mpt2sas_config_get_sas_device_pg0(ioc, &mpi_reply,
7277 &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_GET_NEXT_HANDLE,
7278 handle))) {
7279 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
7280 MPI2_IOCSTATUS_MASK;
7281 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
7282 break;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307283 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
7284 printk(MPT2SAS_INFO_FMT "\tbreak from end device scan:"
7285 " ioc_status(0x%04x), loginfo(0x%08x)\n",
7286 ioc->name, ioc_status,
7287 le32_to_cpu(mpi_reply.IOCLogInfo));
7288 break;
7289 }
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307290 handle = le16_to_cpu(sas_device_pg0.DevHandle);
7291 if (!(_scsih_is_end_device(
7292 le32_to_cpu(sas_device_pg0.DeviceInfo))))
7293 continue;
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307294 spin_lock_irqsave(&ioc->sas_device_lock, flags);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307295 sas_device = mpt2sas_scsih_sas_device_find_by_sas_address(ioc,
7296 le64_to_cpu(sas_device_pg0.SASAddress));
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307297 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307298 if (sas_device)
7299 continue;
7300 parent_handle = le16_to_cpu(sas_device_pg0.ParentDevHandle);
7301 if (!_scsih_get_sas_address(ioc, parent_handle, &sas_address)) {
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307302 printk(MPT2SAS_INFO_FMT "\tBEFORE adding end device: "
7303 "handle (0x%04x), sas_addr(0x%016llx)\n",
7304 ioc->name, handle, (unsigned long long)
7305 le64_to_cpu(sas_device_pg0.SASAddress));
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307306 mpt2sas_transport_update_links(ioc, sas_address, handle,
7307 sas_device_pg0.PhyNum, MPI2_SAS_NEG_LINK_RATE_1_5);
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307308 retry_count = 0;
7309 /* This will retry adding the end device.
7310 * _scsih_add_device() will decide on retries and
7311 * return "1" when it should be retried
7312 */
7313 while (_scsih_add_device(ioc, handle, retry_count++,
7314 0)) {
7315 ssleep(1);
7316 }
7317 printk(MPT2SAS_INFO_FMT "\tAFTER adding end device: "
7318 "handle (0x%04x), sas_addr(0x%016llx)\n",
7319 ioc->name, handle, (unsigned long long)
7320 le64_to_cpu(sas_device_pg0.SASAddress));
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307321 }
7322 }
7323
Sreekanth Reddy6241f222013-02-02 00:56:18 +05307324 printk(MPT2SAS_INFO_FMT "\tscan devices: end devices complete\n",
7325 ioc->name);
7326
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307327 printk(MPT2SAS_INFO_FMT "scan devices: complete\n", ioc->name);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307328}
7329
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307330
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307331/**
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307332 * mpt2sas_scsih_reset_handler - reset callback handler (for scsih)
7333 * @ioc: per adapter object
7334 * @reset_phase: phase
7335 *
7336 * The handler for doing any required cleanup or initialization.
7337 *
7338 * The reset phase can be MPT2_IOC_PRE_RESET, MPT2_IOC_AFTER_RESET,
7339 * MPT2_IOC_DONE_RESET
7340 *
7341 * Return nothing.
7342 */
7343void
7344mpt2sas_scsih_reset_handler(struct MPT2SAS_ADAPTER *ioc, int reset_phase)
7345{
7346 switch (reset_phase) {
7347 case MPT2_IOC_PRE_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05307348 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307349 "MPT2_IOC_PRE_RESET\n", ioc->name, __func__));
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307350 break;
7351 case MPT2_IOC_AFTER_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05307352 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307353 "MPT2_IOC_AFTER_RESET\n", ioc->name, __func__));
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307354 if (ioc->scsih_cmds.status & MPT2_CMD_PENDING) {
7355 ioc->scsih_cmds.status |= MPT2_CMD_RESET;
7356 mpt2sas_base_free_smid(ioc, ioc->scsih_cmds.smid);
7357 complete(&ioc->scsih_cmds.done);
7358 }
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307359 if (ioc->tm_cmds.status & MPT2_CMD_PENDING) {
7360 ioc->tm_cmds.status |= MPT2_CMD_RESET;
7361 mpt2sas_base_free_smid(ioc, ioc->tm_cmds.smid);
7362 complete(&ioc->tm_cmds.done);
7363 }
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307364 _scsih_fw_event_cleanup_queue(ioc);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307365 _scsih_flush_running_cmds(ioc);
7366 break;
7367 case MPT2_IOC_DONE_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05307368 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307369 "MPT2_IOC_DONE_RESET\n", ioc->name, __func__));
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307370 _scsih_sas_host_refresh(ioc);
Kashyap, Desai14695852010-03-30 10:52:44 +05307371 _scsih_prep_device_scan(ioc);
7372 _scsih_search_responding_sas_devices(ioc);
7373 _scsih_search_responding_raid_devices(ioc);
7374 _scsih_search_responding_expanders(ioc);
sreekanth.reddy@lsi.com14aa7f72012-07-17 15:56:13 +05307375 if ((!ioc->is_driver_loading) && !(disable_discovery > 0 &&
7376 !ioc->sas_hba.num_phys)) {
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05307377 _scsih_prep_device_scan(ioc);
7378 _scsih_search_responding_sas_devices(ioc);
7379 _scsih_search_responding_raid_devices(ioc);
7380 _scsih_search_responding_expanders(ioc);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307381 _scsih_error_recovery_delete_devices(ioc);
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05307382 }
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05307383 break;
Eric Moore635374e2009-03-09 01:21:12 -06007384 }
7385}
7386
7387/**
7388 * _firmware_event_work - delayed task for processing firmware events
7389 * @ioc: per adapter object
7390 * @work: equal to the fw_event_work object
7391 * Context: user.
7392 *
7393 * Return nothing.
7394 */
7395static void
7396_firmware_event_work(struct work_struct *work)
7397{
7398 struct fw_event_work *fw_event = container_of(work,
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307399 struct fw_event_work, delayed_work.work);
Eric Moore635374e2009-03-09 01:21:12 -06007400 struct MPT2SAS_ADAPTER *ioc = fw_event->ioc;
7401
Eric Moore635374e2009-03-09 01:21:12 -06007402 /* the queue is being flushed so ignore this event */
Eric Moore3cb54692010-07-08 14:44:34 -06007403 if (ioc->remove_host || fw_event->cancel_pending_work ||
7404 ioc->pci_error_recovery) {
Eric Moore635374e2009-03-09 01:21:12 -06007405 _scsih_fw_event_free(ioc, fw_event);
7406 return;
7407 }
Eric Moore635374e2009-03-09 01:21:12 -06007408
Eric Moore635374e2009-03-09 01:21:12 -06007409 switch (fw_event->event) {
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307410 case MPT2SAS_REMOVE_UNRESPONDING_DEVICES:
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307411 while (scsi_host_in_recovery(ioc->shost) || ioc->shost_recovery)
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307412 ssleep(1);
7413 _scsih_remove_unresponding_sas_devices(ioc);
7414 _scsih_scan_for_devices_after_reset(ioc);
7415 break;
7416 case MPT2SAS_PORT_ENABLE_COMPLETE:
nagalakshmi.nandigama@lsi.com918134e2011-10-19 15:37:24 +05307417 ioc->start_scan = 0;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307418
Reddy, Sreekanthb0df96a02013-02-26 16:59:59 +05307419 if (missing_delay[0] != -1 && missing_delay[1] != -1)
7420 mpt2sas_base_update_missing_delay(ioc, missing_delay[0],
7421 missing_delay[1]);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307422
7423 dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "port enable: complete "
7424 "from worker thread\n", ioc->name));
7425 break;
Kashyap, Desai3ace8e02011-05-04 16:35:58 +05307426 case MPT2SAS_TURN_ON_FAULT_LED:
7427 _scsih_turn_on_fault_led(ioc, fw_event->device_handle);
7428 break;
Eric Moore635374e2009-03-09 01:21:12 -06007429 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307430 _scsih_sas_topology_change_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007431 break;
7432 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307433 _scsih_sas_device_status_change_event(ioc,
7434 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007435 break;
7436 case MPI2_EVENT_SAS_DISCOVERY:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307437 _scsih_sas_discovery_event(ioc,
7438 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007439 break;
7440 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
Andrew Mortona78e21d2012-02-08 12:52:22 -08007441 _scsih_sas_broadcast_primitive_event(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307442 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007443 break;
7444 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
7445 _scsih_sas_enclosure_dev_status_change_event(ioc,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307446 fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007447 break;
7448 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307449 _scsih_sas_ir_config_change_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007450 break;
7451 case MPI2_EVENT_IR_VOLUME:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307452 _scsih_sas_ir_volume_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007453 break;
7454 case MPI2_EVENT_IR_PHYSICAL_DISK:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307455 _scsih_sas_ir_physical_disk_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007456 break;
7457 case MPI2_EVENT_IR_OPERATION_STATUS:
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307458 _scsih_sas_ir_operation_status_event(ioc, fw_event);
Eric Moore635374e2009-03-09 01:21:12 -06007459 break;
Eric Moore635374e2009-03-09 01:21:12 -06007460 }
7461 _scsih_fw_event_free(ioc, fw_event);
7462}
7463
7464/**
7465 * mpt2sas_scsih_event_callback - firmware event handler (called at ISR time)
7466 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307467 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -06007468 * @reply: reply message frame(lower 32bit addr)
7469 * Context: interrupt.
7470 *
7471 * This function merely adds a new work task into ioc->firmware_event_thread.
7472 * The tasks are worked from _firmware_event_work in user context.
7473 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307474 * Return 1 meaning mf should be freed from _base_interrupt
7475 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -06007476 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307477u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307478mpt2sas_scsih_event_callback(struct MPT2SAS_ADAPTER *ioc, u8 msix_index,
7479 u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -06007480{
7481 struct fw_event_work *fw_event;
7482 Mpi2EventNotificationReply_t *mpi_reply;
Eric Moore635374e2009-03-09 01:21:12 -06007483 u16 event;
Kashyap, Desaie94f6742010-03-17 16:24:52 +05307484 u16 sz;
Eric Moore635374e2009-03-09 01:21:12 -06007485
7486 /* events turned off due to host reset or driver unloading */
Eric Moore3cb54692010-07-08 14:44:34 -06007487 if (ioc->remove_host || ioc->pci_error_recovery)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307488 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007489
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307490 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
nagalakshmi.nandigama@lsi.com298c7942012-03-20 12:07:17 +05307491
7492 if (unlikely(!mpi_reply)) {
7493 printk(MPT2SAS_ERR_FMT "mpi_reply not valid at %s:%d/%s()!\n",
7494 ioc->name, __FILE__, __LINE__, __func__);
7495 return 1;
7496 }
7497
Eric Moore635374e2009-03-09 01:21:12 -06007498 event = le16_to_cpu(mpi_reply->Event);
7499
7500 switch (event) {
7501 /* handle these */
7502 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
7503 {
7504 Mpi2EventDataSasBroadcastPrimitive_t *baen_data =
7505 (Mpi2EventDataSasBroadcastPrimitive_t *)
7506 mpi_reply->EventData;
7507
7508 if (baen_data->Primitive !=
Kashyap, Desaif93213d2011-06-14 10:56:43 +05307509 MPI2_EVENT_PRIMITIVE_ASYNCHRONOUS_EVENT)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307510 return 1;
Kashyap, Desaif93213d2011-06-14 10:56:43 +05307511
7512 if (ioc->broadcast_aen_busy) {
7513 ioc->broadcast_aen_pending++;
7514 return 1;
7515 } else
7516 ioc->broadcast_aen_busy = 1;
Eric Moore635374e2009-03-09 01:21:12 -06007517 break;
7518 }
7519
7520 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
7521 _scsih_check_topo_delete_events(ioc,
7522 (Mpi2EventDataSasTopologyChangeList_t *)
7523 mpi_reply->EventData);
7524 break;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05307525 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
7526 _scsih_check_ir_config_unhide_events(ioc,
7527 (Mpi2EventDataIrConfigChangeList_t *)
7528 mpi_reply->EventData);
7529 break;
7530 case MPI2_EVENT_IR_VOLUME:
7531 _scsih_check_volume_delete_events(ioc,
7532 (Mpi2EventDataIrVolume_t *)
7533 mpi_reply->EventData);
7534 break;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307535 case MPI2_EVENT_LOG_ENTRY_ADDED:
7536 {
7537 Mpi2EventDataLogEntryAdded_t *log_entry;
nagalakshmi.nandigama@lsi.comd838c362012-03-20 12:07:48 +05307538 __le32 *log_code;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307539
7540 if (!ioc->is_warpdrive)
7541 break;
7542
7543 log_entry = (Mpi2EventDataLogEntryAdded_t *)
7544 mpi_reply->EventData;
nagalakshmi.nandigama@lsi.comd838c362012-03-20 12:07:48 +05307545 log_code = (__le32 *)log_entry->LogData;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307546
7547 if (le16_to_cpu(log_entry->LogEntryQualifier)
7548 != MPT2_WARPDRIVE_LOGENTRY)
7549 break;
7550
7551 switch (le32_to_cpu(*log_code)) {
7552 case MPT2_WARPDRIVE_LC_SSDT:
7553 printk(MPT2SAS_WARN_FMT "WarpDrive Warning: "
7554 "IO Throttling has occurred in the WarpDrive "
7555 "subsystem. Check WarpDrive documentation for "
7556 "additional details.\n", ioc->name);
7557 break;
7558 case MPT2_WARPDRIVE_LC_SSDLW:
7559 printk(MPT2SAS_WARN_FMT "WarpDrive Warning: "
7560 "Program/Erase Cycles for the WarpDrive subsystem "
7561 "in degraded range. Check WarpDrive documentation "
7562 "for additional details.\n", ioc->name);
7563 break;
7564 case MPT2_WARPDRIVE_LC_SSDLF:
7565 printk(MPT2SAS_ERR_FMT "WarpDrive Fatal Error: "
7566 "There are no Program/Erase Cycles for the "
7567 "WarpDrive subsystem. The storage device will be "
7568 "in read-only mode. Check WarpDrive documentation "
7569 "for additional details.\n", ioc->name);
7570 break;
7571 case MPT2_WARPDRIVE_LC_BRMF:
7572 printk(MPT2SAS_ERR_FMT "WarpDrive Fatal Error: "
7573 "The Backup Rail Monitor has failed on the "
7574 "WarpDrive subsystem. Check WarpDrive "
7575 "documentation for additional details.\n",
7576 ioc->name);
7577 break;
7578 }
7579
7580 break;
7581 }
Eric Moore635374e2009-03-09 01:21:12 -06007582 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
7583 case MPI2_EVENT_IR_OPERATION_STATUS:
7584 case MPI2_EVENT_SAS_DISCOVERY:
7585 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
Eric Moore635374e2009-03-09 01:21:12 -06007586 case MPI2_EVENT_IR_PHYSICAL_DISK:
Eric Moore635374e2009-03-09 01:21:12 -06007587 break;
7588
7589 default: /* ignore the rest */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307590 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007591 }
7592
7593 fw_event = kzalloc(sizeof(struct fw_event_work), GFP_ATOMIC);
7594 if (!fw_event) {
7595 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
7596 ioc->name, __FILE__, __LINE__, __func__);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307597 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007598 }
Kashyap, Desaie94f6742010-03-17 16:24:52 +05307599 sz = le16_to_cpu(mpi_reply->EventDataLength) * 4;
7600 fw_event->event_data = kzalloc(sz, GFP_ATOMIC);
Eric Moore635374e2009-03-09 01:21:12 -06007601 if (!fw_event->event_data) {
7602 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
7603 ioc->name, __FILE__, __LINE__, __func__);
7604 kfree(fw_event);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307605 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007606 }
7607
7608 memcpy(fw_event->event_data, mpi_reply->EventData,
Kashyap, Desaie94f6742010-03-17 16:24:52 +05307609 sz);
Eric Moore635374e2009-03-09 01:21:12 -06007610 fw_event->ioc = ioc;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05307611 fw_event->VF_ID = mpi_reply->VF_ID;
7612 fw_event->VP_ID = mpi_reply->VP_ID;
Eric Moore635374e2009-03-09 01:21:12 -06007613 fw_event->event = event;
7614 _scsih_fw_event_add(ioc, fw_event);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307615 return 1;
Eric Moore635374e2009-03-09 01:21:12 -06007616}
7617
7618/* shost template */
7619static struct scsi_host_template scsih_driver_template = {
7620 .module = THIS_MODULE,
7621 .name = "Fusion MPT SAS Host",
7622 .proc_name = MPT2SAS_DRIVER_NAME,
Eric Moored5d135b2009-05-18 13:02:08 -06007623 .queuecommand = _scsih_qcmd,
7624 .target_alloc = _scsih_target_alloc,
7625 .slave_alloc = _scsih_slave_alloc,
7626 .slave_configure = _scsih_slave_configure,
7627 .target_destroy = _scsih_target_destroy,
7628 .slave_destroy = _scsih_slave_destroy,
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307629 .scan_finished = _scsih_scan_finished,
7630 .scan_start = _scsih_scan_start,
Eric Moored5d135b2009-05-18 13:02:08 -06007631 .change_queue_depth = _scsih_change_queue_depth,
7632 .change_queue_type = _scsih_change_queue_type,
7633 .eh_abort_handler = _scsih_abort,
7634 .eh_device_reset_handler = _scsih_dev_reset,
7635 .eh_target_reset_handler = _scsih_target_reset,
7636 .eh_host_reset_handler = _scsih_host_reset,
7637 .bios_param = _scsih_bios_param,
Eric Moore635374e2009-03-09 01:21:12 -06007638 .can_queue = 1,
7639 .this_id = -1,
7640 .sg_tablesize = MPT2SAS_SG_DEPTH,
nagalakshmi.nandigama@lsi.com9ac49d32011-12-01 07:52:08 +05307641 .max_sectors = 32767,
Eric Moore635374e2009-03-09 01:21:12 -06007642 .cmd_per_lun = 7,
7643 .use_clustering = ENABLE_CLUSTERING,
7644 .shost_attrs = mpt2sas_host_attrs,
7645 .sdev_attrs = mpt2sas_dev_attrs,
7646};
7647
7648/**
7649 * _scsih_expander_node_remove - removing expander device from list.
7650 * @ioc: per adapter object
7651 * @sas_expander: the sas_device object
7652 * Context: Calling function should acquire ioc->sas_node_lock.
7653 *
7654 * Removing object and freeing associated memory from the
7655 * ioc->sas_expander_list.
7656 *
7657 * Return nothing.
7658 */
7659static void
7660_scsih_expander_node_remove(struct MPT2SAS_ADAPTER *ioc,
7661 struct _sas_node *sas_expander)
7662{
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307663 struct _sas_port *mpt2sas_port, *next;
Eric Moore635374e2009-03-09 01:21:12 -06007664
7665 /* remove sibling ports attached to this expander */
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307666 list_for_each_entry_safe(mpt2sas_port, next,
Eric Moore635374e2009-03-09 01:21:12 -06007667 &sas_expander->sas_port_list, port_list) {
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307668 if (ioc->shost_recovery)
7669 return;
Eric Moore635374e2009-03-09 01:21:12 -06007670 if (mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307671 SAS_END_DEVICE)
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307672 mpt2sas_device_remove_by_sas_address(ioc,
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307673 mpt2sas_port->remote_identify.sas_address);
7674 else if (mpt2sas_port->remote_identify.device_type ==
7675 SAS_EDGE_EXPANDER_DEVICE ||
Eric Moore635374e2009-03-09 01:21:12 -06007676 mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307677 SAS_FANOUT_EXPANDER_DEVICE)
7678 mpt2sas_expander_remove(ioc,
7679 mpt2sas_port->remote_identify.sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06007680 }
7681
7682 mpt2sas_transport_port_remove(ioc, sas_expander->sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307683 sas_expander->sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06007684
7685 printk(MPT2SAS_INFO_FMT "expander_remove: handle"
7686 "(0x%04x), sas_addr(0x%016llx)\n", ioc->name,
7687 sas_expander->handle, (unsigned long long)
7688 sas_expander->sas_address);
7689
Eric Moore635374e2009-03-09 01:21:12 -06007690 kfree(sas_expander->phy);
7691 kfree(sas_expander);
7692}
7693
7694/**
Kashyap, Desai744090d2009-10-05 15:56:56 +05307695 * _scsih_ir_shutdown - IR shutdown notification
7696 * @ioc: per adapter object
7697 *
7698 * Sending RAID Action to alert the Integrated RAID subsystem of the IOC that
7699 * the host system is shutting down.
7700 *
7701 * Return nothing.
7702 */
7703static void
7704_scsih_ir_shutdown(struct MPT2SAS_ADAPTER *ioc)
7705{
7706 Mpi2RaidActionRequest_t *mpi_request;
7707 Mpi2RaidActionReply_t *mpi_reply;
7708 u16 smid;
7709
7710 /* is IR firmware build loaded ? */
7711 if (!ioc->ir_firmware)
7712 return;
7713
7714 /* are there any volumes ? */
7715 if (list_empty(&ioc->raid_device_list))
7716 return;
7717
7718 mutex_lock(&ioc->scsih_cmds.mutex);
7719
7720 if (ioc->scsih_cmds.status != MPT2_CMD_NOT_USED) {
7721 printk(MPT2SAS_ERR_FMT "%s: scsih_cmd in use\n",
7722 ioc->name, __func__);
7723 goto out;
7724 }
7725 ioc->scsih_cmds.status = MPT2_CMD_PENDING;
7726
7727 smid = mpt2sas_base_get_smid(ioc, ioc->scsih_cb_idx);
7728 if (!smid) {
7729 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
7730 ioc->name, __func__);
7731 ioc->scsih_cmds.status = MPT2_CMD_NOT_USED;
7732 goto out;
7733 }
7734
7735 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
7736 ioc->scsih_cmds.smid = smid;
7737 memset(mpi_request, 0, sizeof(Mpi2RaidActionRequest_t));
7738
7739 mpi_request->Function = MPI2_FUNCTION_RAID_ACTION;
7740 mpi_request->Action = MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED;
7741
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307742 if (!ioc->hide_ir_msg)
7743 printk(MPT2SAS_INFO_FMT "IR shutdown (sending)\n", ioc->name);
Kashyap, Desai744090d2009-10-05 15:56:56 +05307744 init_completion(&ioc->scsih_cmds.done);
7745 mpt2sas_base_put_smid_default(ioc, smid);
7746 wait_for_completion_timeout(&ioc->scsih_cmds.done, 10*HZ);
7747
7748 if (!(ioc->scsih_cmds.status & MPT2_CMD_COMPLETE)) {
7749 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
7750 ioc->name, __func__);
7751 goto out;
7752 }
7753
7754 if (ioc->scsih_cmds.status & MPT2_CMD_REPLY_VALID) {
7755 mpi_reply = ioc->scsih_cmds.reply;
7756
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307757 if (!ioc->hide_ir_msg)
7758 printk(MPT2SAS_INFO_FMT "IR shutdown (complete): "
7759 "ioc_status(0x%04x), loginfo(0x%08x)\n",
7760 ioc->name, le16_to_cpu(mpi_reply->IOCStatus),
7761 le32_to_cpu(mpi_reply->IOCLogInfo));
Kashyap, Desai744090d2009-10-05 15:56:56 +05307762 }
7763
7764 out:
7765 ioc->scsih_cmds.status = MPT2_CMD_NOT_USED;
7766 mutex_unlock(&ioc->scsih_cmds.mutex);
7767}
7768
7769/**
7770 * _scsih_shutdown - routine call during system shutdown
7771 * @pdev: PCI device struct
7772 *
7773 * Return nothing.
7774 */
7775static void
7776_scsih_shutdown(struct pci_dev *pdev)
7777{
7778 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7779 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307780 struct workqueue_struct *wq;
7781 unsigned long flags;
7782
7783 ioc->remove_host = 1;
7784 _scsih_fw_event_cleanup_queue(ioc);
7785
7786 spin_lock_irqsave(&ioc->fw_event_lock, flags);
7787 wq = ioc->firmware_event_thread;
7788 ioc->firmware_event_thread = NULL;
7789 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
7790 if (wq)
7791 destroy_workqueue(wq);
Kashyap, Desai744090d2009-10-05 15:56:56 +05307792
7793 _scsih_ir_shutdown(ioc);
7794 mpt2sas_base_detach(ioc);
7795}
7796
7797/**
Eric Moored5d135b2009-05-18 13:02:08 -06007798 * _scsih_remove - detach and remove add host
Eric Moore635374e2009-03-09 01:21:12 -06007799 * @pdev: PCI device struct
7800 *
Kashyap, Desai744090d2009-10-05 15:56:56 +05307801 * Routine called when unloading the driver.
Eric Moore635374e2009-03-09 01:21:12 -06007802 * Return nothing.
7803 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007804static void
Eric Moored5d135b2009-05-18 13:02:08 -06007805_scsih_remove(struct pci_dev *pdev)
Eric Moore635374e2009-03-09 01:21:12 -06007806{
7807 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7808 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307809 struct _sas_port *mpt2sas_port, *next_port;
Kashyap, Desaid7384b22009-12-16 18:50:06 +05307810 struct _raid_device *raid_device, *next;
7811 struct MPT2SAS_TARGET *sas_target_priv_data;
Eric Moore635374e2009-03-09 01:21:12 -06007812 struct workqueue_struct *wq;
7813 unsigned long flags;
7814
7815 ioc->remove_host = 1;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05307816 _scsih_fw_event_cleanup_queue(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06007817
7818 spin_lock_irqsave(&ioc->fw_event_lock, flags);
7819 wq = ioc->firmware_event_thread;
7820 ioc->firmware_event_thread = NULL;
7821 spin_unlock_irqrestore(&ioc->fw_event_lock, flags);
7822 if (wq)
7823 destroy_workqueue(wq);
7824
Kashyap, Desaid7384b22009-12-16 18:50:06 +05307825 /* release all the volumes */
Kashyap, Desai3a9c9132011-01-04 11:40:23 +05307826 _scsih_ir_shutdown(ioc);
Kashyap, Desaid7384b22009-12-16 18:50:06 +05307827 list_for_each_entry_safe(raid_device, next, &ioc->raid_device_list,
7828 list) {
7829 if (raid_device->starget) {
7830 sas_target_priv_data =
7831 raid_device->starget->hostdata;
7832 sas_target_priv_data->deleted = 1;
7833 scsi_remove_target(&raid_device->starget->dev);
7834 }
7835 printk(MPT2SAS_INFO_FMT "removing handle(0x%04x), wwid"
7836 "(0x%016llx)\n", ioc->name, raid_device->handle,
7837 (unsigned long long) raid_device->wwid);
7838 _scsih_raid_device_remove(ioc, raid_device);
7839 }
7840
Eric Moore635374e2009-03-09 01:21:12 -06007841 /* free ports attached to the sas_host */
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307842 list_for_each_entry_safe(mpt2sas_port, next_port,
Eric Moore635374e2009-03-09 01:21:12 -06007843 &ioc->sas_hba.sas_port_list, port_list) {
7844 if (mpt2sas_port->remote_identify.device_type ==
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307845 SAS_END_DEVICE)
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307846 mpt2sas_device_remove_by_sas_address(ioc,
Eric Moore635374e2009-03-09 01:21:12 -06007847 mpt2sas_port->remote_identify.sas_address);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05307848 else if (mpt2sas_port->remote_identify.device_type ==
7849 SAS_EDGE_EXPANDER_DEVICE ||
7850 mpt2sas_port->remote_identify.device_type ==
7851 SAS_FANOUT_EXPANDER_DEVICE)
7852 mpt2sas_expander_remove(ioc,
7853 mpt2sas_port->remote_identify.sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06007854 }
7855
7856 /* free phys attached to the sas_host */
7857 if (ioc->sas_hba.num_phys) {
7858 kfree(ioc->sas_hba.phy);
7859 ioc->sas_hba.phy = NULL;
7860 ioc->sas_hba.num_phys = 0;
7861 }
7862
7863 sas_remove_host(shost);
kashyap.desai@lsi.com9ae89b02011-08-04 16:47:50 +05307864 mpt2sas_base_detach(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06007865 list_del(&ioc->list);
7866 scsi_remove_host(shost);
7867 scsi_host_put(shost);
7868}
7869
7870/**
7871 * _scsih_probe_boot_devices - reports 1st device
7872 * @ioc: per adapter object
7873 *
7874 * If specified in bios page 2, this routine reports the 1st
7875 * device scsi-ml or sas transport for persistent boot device
7876 * purposes. Please refer to function _scsih_determine_boot_device()
7877 */
7878static void
7879_scsih_probe_boot_devices(struct MPT2SAS_ADAPTER *ioc)
7880{
7881 u8 is_raid;
7882 void *device;
7883 struct _sas_device *sas_device;
7884 struct _raid_device *raid_device;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307885 u16 handle;
7886 u64 sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06007887 u64 sas_address;
7888 unsigned long flags;
7889 int rc;
7890
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307891 /* no Bios, return immediately */
7892 if (!ioc->bios_pg3.BiosVersion)
7893 return;
7894
Eric Moore635374e2009-03-09 01:21:12 -06007895 device = NULL;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05307896 is_raid = 0;
Eric Moore635374e2009-03-09 01:21:12 -06007897 if (ioc->req_boot_device.device) {
7898 device = ioc->req_boot_device.device;
7899 is_raid = ioc->req_boot_device.is_raid;
7900 } else if (ioc->req_alt_boot_device.device) {
7901 device = ioc->req_alt_boot_device.device;
7902 is_raid = ioc->req_alt_boot_device.is_raid;
7903 } else if (ioc->current_boot_device.device) {
7904 device = ioc->current_boot_device.device;
7905 is_raid = ioc->current_boot_device.is_raid;
7906 }
7907
7908 if (!device)
7909 return;
7910
7911 if (is_raid) {
7912 raid_device = device;
7913 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
7914 raid_device->id, 0);
7915 if (rc)
7916 _scsih_raid_device_remove(ioc, raid_device);
7917 } else {
nagalakshmi.nandigama@lsi.com09da0b32012-03-20 12:06:50 +05307918 spin_lock_irqsave(&ioc->sas_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06007919 sas_device = device;
7920 handle = sas_device->handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307921 sas_address_parent = sas_device->sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -06007922 sas_address = sas_device->sas_address;
Eric Moore635374e2009-03-09 01:21:12 -06007923 list_move_tail(&sas_device->list, &ioc->sas_device_list);
7924 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307925
7926 if (ioc->hide_drives)
7927 return;
Eric Moore635374e2009-03-09 01:21:12 -06007928 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307929 sas_device->sas_address_parent)) {
Eric Moore635374e2009-03-09 01:21:12 -06007930 _scsih_sas_device_remove(ioc, sas_device);
7931 } else if (!sas_device->starget) {
nagalakshmi.nandigama@lsi.com35116db2011-10-21 10:08:07 +05307932 if (!ioc->is_driver_loading)
7933 mpt2sas_transport_port_remove(ioc, sas_address,
7934 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06007935 _scsih_sas_device_remove(ioc, sas_device);
7936 }
7937 }
7938}
7939
7940/**
7941 * _scsih_probe_raid - reporting raid volumes to scsi-ml
7942 * @ioc: per adapter object
7943 *
7944 * Called during initial loading of the driver.
7945 */
7946static void
7947_scsih_probe_raid(struct MPT2SAS_ADAPTER *ioc)
7948{
7949 struct _raid_device *raid_device, *raid_next;
7950 int rc;
7951
7952 list_for_each_entry_safe(raid_device, raid_next,
7953 &ioc->raid_device_list, list) {
7954 if (raid_device->starget)
7955 continue;
7956 rc = scsi_add_device(ioc->shost, RAID_CHANNEL,
7957 raid_device->id, 0);
7958 if (rc)
7959 _scsih_raid_device_remove(ioc, raid_device);
7960 }
7961}
7962
7963/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05307964 * _scsih_probe_sas - reporting sas devices to sas transport
Eric Moore635374e2009-03-09 01:21:12 -06007965 * @ioc: per adapter object
7966 *
7967 * Called during initial loading of the driver.
7968 */
7969static void
7970_scsih_probe_sas(struct MPT2SAS_ADAPTER *ioc)
7971{
7972 struct _sas_device *sas_device, *next;
7973 unsigned long flags;
Eric Moore635374e2009-03-09 01:21:12 -06007974
7975 /* SAS Device List */
7976 list_for_each_entry_safe(sas_device, next, &ioc->sas_device_init_list,
7977 list) {
Eric Moore635374e2009-03-09 01:21:12 -06007978
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05307979 if (ioc->hide_drives)
7980 continue;
7981
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05307982 if (!mpt2sas_transport_port_add(ioc, sas_device->handle,
7983 sas_device->sas_address_parent)) {
nagalakshmi.nandigama@lsi.com0167ac62011-10-21 10:06:33 +05307984 list_del(&sas_device->list);
7985 kfree(sas_device);
7986 continue;
Eric Moore635374e2009-03-09 01:21:12 -06007987 } else if (!sas_device->starget) {
nagalakshmi.nandigama@lsi.com35116db2011-10-21 10:08:07 +05307988 if (!ioc->is_driver_loading)
7989 mpt2sas_transport_port_remove(ioc,
7990 sas_device->sas_address,
7991 sas_device->sas_address_parent);
nagalakshmi.nandigama@lsi.com0167ac62011-10-21 10:06:33 +05307992 list_del(&sas_device->list);
7993 kfree(sas_device);
7994 continue;
7995
Eric Moore635374e2009-03-09 01:21:12 -06007996 }
nagalakshmi.nandigama@lsi.com0167ac62011-10-21 10:06:33 +05307997 spin_lock_irqsave(&ioc->sas_device_lock, flags);
7998 list_move_tail(&sas_device->list, &ioc->sas_device_list);
7999 spin_unlock_irqrestore(&ioc->sas_device_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06008000 }
8001}
8002
8003/**
8004 * _scsih_probe_devices - probing for devices
8005 * @ioc: per adapter object
8006 *
8007 * Called during initial loading of the driver.
8008 */
8009static void
8010_scsih_probe_devices(struct MPT2SAS_ADAPTER *ioc)
8011{
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308012 u16 volume_mapping_flags;
Eric Moore635374e2009-03-09 01:21:12 -06008013
8014 if (!(ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR))
8015 return; /* return when IOC doesn't support initiator mode */
8016
8017 _scsih_probe_boot_devices(ioc);
8018
8019 if (ioc->ir_firmware) {
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308020 volume_mapping_flags =
8021 le16_to_cpu(ioc->ioc_pg8.IRVolumeMappingFlags) &
8022 MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE;
8023 if (volume_mapping_flags ==
8024 MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING) {
Eric Moore635374e2009-03-09 01:21:12 -06008025 _scsih_probe_raid(ioc);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308026 _scsih_probe_sas(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06008027 } else {
Eric Moore635374e2009-03-09 01:21:12 -06008028 _scsih_probe_sas(ioc);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308029 _scsih_probe_raid(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06008030 }
8031 } else
8032 _scsih_probe_sas(ioc);
8033}
8034
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308035
8036/**
8037 * _scsih_scan_start - scsi lld callback for .scan_start
8038 * @shost: SCSI host pointer
8039 *
8040 * The shost has the ability to discover targets on its own instead
8041 * of scanning the entire bus. In our implemention, we will kick off
8042 * firmware discovery.
8043 */
8044static void
8045_scsih_scan_start(struct Scsi_Host *shost)
8046{
8047 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8048 int rc;
8049
8050 if (diag_buffer_enable != -1 && diag_buffer_enable != 0)
8051 mpt2sas_enable_diag_buffer(ioc, diag_buffer_enable);
8052
sreekanth.reddy@lsi.com4b193172012-07-17 15:56:12 +05308053 if (disable_discovery > 0)
8054 return;
8055
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308056 ioc->start_scan = 1;
8057 rc = mpt2sas_port_enable(ioc);
8058
8059 if (rc != 0)
8060 printk(MPT2SAS_INFO_FMT "port enable: FAILED\n", ioc->name);
8061}
8062
8063/**
8064 * _scsih_scan_finished - scsi lld callback for .scan_finished
8065 * @shost: SCSI host pointer
8066 * @time: elapsed time of the scan in jiffies
8067 *
8068 * This function will be called periodically until it returns 1 with the
8069 * scsi_host and the elapsed time of the scan in jiffies. In our implemention,
8070 * we wait for firmware discovery to complete, then return 1.
8071 */
8072static int
8073_scsih_scan_finished(struct Scsi_Host *shost, unsigned long time)
8074{
8075 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8076
sreekanth.reddy@lsi.com4b193172012-07-17 15:56:12 +05308077 if (disable_discovery > 0) {
8078 ioc->is_driver_loading = 0;
8079 ioc->wait_for_discovery_to_complete = 0;
8080 return 1;
8081 }
8082
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308083 if (time >= (300 * HZ)) {
8084 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
8085 printk(MPT2SAS_INFO_FMT "port enable: FAILED with timeout "
8086 "(timeout=300s)\n", ioc->name);
8087 ioc->is_driver_loading = 0;
8088 return 1;
8089 }
8090
8091 if (ioc->start_scan)
8092 return 0;
8093
8094 if (ioc->start_scan_failed) {
8095 printk(MPT2SAS_INFO_FMT "port enable: FAILED with "
8096 "(ioc_status=0x%08x)\n", ioc->name, ioc->start_scan_failed);
8097 ioc->is_driver_loading = 0;
8098 ioc->wait_for_discovery_to_complete = 0;
8099 ioc->remove_host = 1;
8100 return 1;
8101 }
8102
8103 printk(MPT2SAS_INFO_FMT "port enable: SUCCESS\n", ioc->name);
8104 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
8105
8106 if (ioc->wait_for_discovery_to_complete) {
8107 ioc->wait_for_discovery_to_complete = 0;
8108 _scsih_probe_devices(ioc);
8109 }
8110 mpt2sas_base_start_watchdog(ioc);
8111 ioc->is_driver_loading = 0;
8112 return 1;
8113}
8114
8115
Eric Moore635374e2009-03-09 01:21:12 -06008116/**
Eric Moored5d135b2009-05-18 13:02:08 -06008117 * _scsih_probe - attach and add scsi host
Eric Moore635374e2009-03-09 01:21:12 -06008118 * @pdev: PCI device struct
8119 * @id: pci device id
8120 *
8121 * Returns 0 success, anything else error.
8122 */
8123static int
Eric Moored5d135b2009-05-18 13:02:08 -06008124_scsih_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Eric Moore635374e2009-03-09 01:21:12 -06008125{
8126 struct MPT2SAS_ADAPTER *ioc;
8127 struct Scsi_Host *shost;
8128
8129 shost = scsi_host_alloc(&scsih_driver_template,
8130 sizeof(struct MPT2SAS_ADAPTER));
8131 if (!shost)
8132 return -ENODEV;
8133
8134 /* init local params */
8135 ioc = shost_priv(shost);
8136 memset(ioc, 0, sizeof(struct MPT2SAS_ADAPTER));
8137 INIT_LIST_HEAD(&ioc->list);
Eric Mooreba33fad2009-03-15 21:37:18 -06008138 list_add_tail(&ioc->list, &mpt2sas_ioc_list);
Eric Moore635374e2009-03-09 01:21:12 -06008139 ioc->shost = shost;
8140 ioc->id = mpt_ids++;
8141 sprintf(ioc->name, "%s%d", MPT2SAS_DRIVER_NAME, ioc->id);
8142 ioc->pdev = pdev;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05308143 if (id->device == MPI2_MFGPAGE_DEVID_SSS6200) {
8144 ioc->is_warpdrive = 1;
8145 ioc->hide_ir_msg = 1;
8146 } else
8147 ioc->mfg_pg10_hide_flag = MFG_PAGE10_EXPOSE_ALL_DISKS;
Eric Moore635374e2009-03-09 01:21:12 -06008148 ioc->scsi_io_cb_idx = scsi_io_cb_idx;
8149 ioc->tm_cb_idx = tm_cb_idx;
8150 ioc->ctl_cb_idx = ctl_cb_idx;
8151 ioc->base_cb_idx = base_cb_idx;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308152 ioc->port_enable_cb_idx = port_enable_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06008153 ioc->transport_cb_idx = transport_cb_idx;
Kashyap, Desai744090d2009-10-05 15:56:56 +05308154 ioc->scsih_cb_idx = scsih_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06008155 ioc->config_cb_idx = config_cb_idx;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308156 ioc->tm_tr_cb_idx = tm_tr_cb_idx;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05308157 ioc->tm_tr_volume_cb_idx = tm_tr_volume_cb_idx;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308158 ioc->tm_sas_control_cb_idx = tm_sas_control_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -06008159 ioc->logging_level = logging_level;
nagalakshmi.nandigama@lsi.com845a0e42011-12-01 07:42:04 +05308160 ioc->schedule_dead_ioc_flush_running_cmds = &_scsih_flush_running_cmds;
Eric Moore635374e2009-03-09 01:21:12 -06008161 /* misc semaphores and spin locks */
Kashyap, Desaid2742132010-06-17 13:28:55 +05308162 mutex_init(&ioc->reset_in_progress_mutex);
Eric Moore635374e2009-03-09 01:21:12 -06008163 spin_lock_init(&ioc->ioc_reset_in_progress_lock);
8164 spin_lock_init(&ioc->scsi_lookup_lock);
8165 spin_lock_init(&ioc->sas_device_lock);
8166 spin_lock_init(&ioc->sas_node_lock);
8167 spin_lock_init(&ioc->fw_event_lock);
8168 spin_lock_init(&ioc->raid_device_lock);
8169
8170 INIT_LIST_HEAD(&ioc->sas_device_list);
8171 INIT_LIST_HEAD(&ioc->sas_device_init_list);
8172 INIT_LIST_HEAD(&ioc->sas_expander_list);
8173 INIT_LIST_HEAD(&ioc->fw_event_list);
8174 INIT_LIST_HEAD(&ioc->raid_device_list);
8175 INIT_LIST_HEAD(&ioc->sas_hba.sas_port_list);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308176 INIT_LIST_HEAD(&ioc->delayed_tr_list);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05308177 INIT_LIST_HEAD(&ioc->delayed_tr_volume_list);
Joe Lawrence3b3e6f82013-08-08 16:45:38 -04008178 INIT_LIST_HEAD(&ioc->reply_queue_list);
Eric Moore635374e2009-03-09 01:21:12 -06008179
8180 /* init shost parameters */
Eric Moored334aa72010-04-22 10:47:40 -06008181 shost->max_cmd_len = 32;
Eric Moore635374e2009-03-09 01:21:12 -06008182 shost->max_lun = max_lun;
8183 shost->transportt = mpt2sas_transport_template;
8184 shost->unique_id = ioc->id;
8185
Kashyap, Desaia3e1e552011-06-14 10:56:12 +05308186 if (max_sectors != 0xFFFF) {
8187 if (max_sectors < 64) {
8188 shost->max_sectors = 64;
Sreekanth Reddy6241f222013-02-02 00:56:18 +05308189 printk(MPT2SAS_WARN_FMT "Invalid value %d passed "
8190 "for max_sectors, range is 64 to 32767. Assigning "
Kashyap, Desaia3e1e552011-06-14 10:56:12 +05308191 "value of 64.\n", ioc->name, max_sectors);
nagalakshmi.nandigama@lsi.com9ac49d32011-12-01 07:52:08 +05308192 } else if (max_sectors > 32767) {
8193 shost->max_sectors = 32767;
Kashyap, Desaia3e1e552011-06-14 10:56:12 +05308194 printk(MPT2SAS_WARN_FMT "Invalid value %d passed "
8195 "for max_sectors, range is 64 to 8192. Assigning "
nagalakshmi.nandigama@lsi.com9ac49d32011-12-01 07:52:08 +05308196 "default value of 32767.\n", ioc->name,
Kashyap, Desaia3e1e552011-06-14 10:56:12 +05308197 max_sectors);
8198 } else {
8199 shost->max_sectors = max_sectors & 0xFFFE;
8200 printk(MPT2SAS_INFO_FMT "The max_sectors value is "
8201 "set to %d\n", ioc->name, shost->max_sectors);
8202 }
8203 }
8204
Eric Moore635374e2009-03-09 01:21:12 -06008205 if ((scsi_add_host(shost, &pdev->dev))) {
8206 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
8207 ioc->name, __FILE__, __LINE__, __func__);
8208 list_del(&ioc->list);
8209 goto out_add_shost_fail;
8210 }
8211
Martin K. Petersen5e95e732012-08-28 14:29:37 -04008212 /* register EEDP capabilities with SCSI layer */
8213 if (prot_mask)
8214 scsi_host_set_prot(shost, prot_mask);
8215 else
8216 scsi_host_set_prot(shost, SHOST_DIF_TYPE1_PROTECTION
8217 | SHOST_DIF_TYPE2_PROTECTION
8218 | SHOST_DIF_TYPE3_PROTECTION);
8219
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308220 scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC);
Eric Moore3c621b32009-05-18 12:59:41 -06008221
Eric Moore635374e2009-03-09 01:21:12 -06008222 /* event thread */
8223 snprintf(ioc->firmware_event_name, sizeof(ioc->firmware_event_name),
8224 "fw_event%d", ioc->id);
8225 ioc->firmware_event_thread = create_singlethread_workqueue(
8226 ioc->firmware_event_name);
8227 if (!ioc->firmware_event_thread) {
8228 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
8229 ioc->name, __FILE__, __LINE__, __func__);
8230 goto out_thread_fail;
8231 }
8232
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308233 ioc->is_driver_loading = 1;
Eric Moore635374e2009-03-09 01:21:12 -06008234 if ((mpt2sas_base_attach(ioc))) {
8235 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
8236 ioc->name, __FILE__, __LINE__, __func__);
8237 goto out_attach_fail;
8238 }
8239
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05308240 if (ioc->is_warpdrive) {
8241 if (ioc->mfg_pg10_hide_flag == MFG_PAGE10_EXPOSE_ALL_DISKS)
8242 ioc->hide_drives = 0;
8243 else if (ioc->mfg_pg10_hide_flag == MFG_PAGE10_HIDE_ALL_DISKS)
8244 ioc->hide_drives = 1;
8245 else {
8246 if (_scsih_get_num_volumes(ioc))
8247 ioc->hide_drives = 1;
8248 else
8249 ioc->hide_drives = 0;
8250 }
8251 } else
8252 ioc->hide_drives = 0;
nagalakshmi.nandigama@lsi.com2cb6fc82011-12-13 09:29:15 +05308253 scsi_scan_host(shost);
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05308254
Eric Moore635374e2009-03-09 01:21:12 -06008255 return 0;
8256
8257 out_attach_fail:
8258 destroy_workqueue(ioc->firmware_event_thread);
8259 out_thread_fail:
8260 list_del(&ioc->list);
8261 scsi_remove_host(shost);
8262 out_add_shost_fail:
Tomas Henzlf555e052012-04-17 15:24:48 +02008263 scsi_host_put(shost);
Eric Moore635374e2009-03-09 01:21:12 -06008264 return -ENODEV;
8265}
8266
8267#ifdef CONFIG_PM
8268/**
Eric Moored5d135b2009-05-18 13:02:08 -06008269 * _scsih_suspend - power management suspend main entry point
Eric Moore635374e2009-03-09 01:21:12 -06008270 * @pdev: PCI device struct
8271 * @state: PM state change to (usually PCI_D3)
8272 *
8273 * Returns 0 success, anything else error.
8274 */
8275static int
Eric Moored5d135b2009-05-18 13:02:08 -06008276_scsih_suspend(struct pci_dev *pdev, pm_message_t state)
Eric Moore635374e2009-03-09 01:21:12 -06008277{
8278 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8279 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desaic97951e2011-06-14 10:54:56 +05308280 pci_power_t device_state;
Eric Moore635374e2009-03-09 01:21:12 -06008281
Kashyap, Desaie4750c92009-08-07 19:37:59 +05308282 mpt2sas_base_stop_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06008283 scsi_block_requests(shost);
8284 device_state = pci_choose_state(pdev, state);
8285 printk(MPT2SAS_INFO_FMT "pdev=0x%p, slot=%s, entering "
8286 "operating state [D%d]\n", ioc->name, pdev,
8287 pci_name(pdev), device_state);
8288
8289 mpt2sas_base_free_resources(ioc);
8290 pci_save_state(pdev);
8291 pci_disable_device(pdev);
8292 pci_set_power_state(pdev, device_state);
8293 return 0;
8294}
8295
8296/**
Eric Moored5d135b2009-05-18 13:02:08 -06008297 * _scsih_resume - power management resume main entry point
Eric Moore635374e2009-03-09 01:21:12 -06008298 * @pdev: PCI device struct
8299 *
8300 * Returns 0 success, anything else error.
8301 */
8302static int
Eric Moored5d135b2009-05-18 13:02:08 -06008303_scsih_resume(struct pci_dev *pdev)
Eric Moore635374e2009-03-09 01:21:12 -06008304{
8305 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8306 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
Kashyap, Desaic97951e2011-06-14 10:54:56 +05308307 pci_power_t device_state = pdev->current_state;
Eric Moore635374e2009-03-09 01:21:12 -06008308 int r;
8309
8310 printk(MPT2SAS_INFO_FMT "pdev=0x%p, slot=%s, previous "
8311 "operating state [D%d]\n", ioc->name, pdev,
8312 pci_name(pdev), device_state);
8313
8314 pci_set_power_state(pdev, PCI_D0);
8315 pci_enable_wake(pdev, PCI_D0, 0);
8316 pci_restore_state(pdev);
8317 ioc->pdev = pdev;
8318 r = mpt2sas_base_map_resources(ioc);
8319 if (r)
8320 return r;
8321
8322 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP, SOFT_RESET);
8323 scsi_unblock_requests(shost);
Kashyap, Desaie4750c92009-08-07 19:37:59 +05308324 mpt2sas_base_start_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06008325 return 0;
8326}
8327#endif /* CONFIG_PM */
8328
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308329/**
8330 * _scsih_pci_error_detected - Called when a PCI error is detected.
8331 * @pdev: PCI device struct
8332 * @state: PCI channel state
8333 *
8334 * Description: Called when a PCI error is detected.
8335 *
8336 * Return value:
8337 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
8338 */
8339static pci_ers_result_t
8340_scsih_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
8341{
8342 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8343 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8344
8345 printk(MPT2SAS_INFO_FMT "PCI error: detected callback, state(%d)!!\n",
8346 ioc->name, state);
8347
8348 switch (state) {
8349 case pci_channel_io_normal:
8350 return PCI_ERS_RESULT_CAN_RECOVER;
8351 case pci_channel_io_frozen:
Eric Moore3cb54692010-07-08 14:44:34 -06008352 /* Fatal error, prepare for slot reset */
8353 ioc->pci_error_recovery = 1;
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308354 scsi_block_requests(ioc->shost);
8355 mpt2sas_base_stop_watchdog(ioc);
8356 mpt2sas_base_free_resources(ioc);
8357 return PCI_ERS_RESULT_NEED_RESET;
8358 case pci_channel_io_perm_failure:
Eric Moore3cb54692010-07-08 14:44:34 -06008359 /* Permanent error, prepare for device removal */
8360 ioc->pci_error_recovery = 1;
8361 mpt2sas_base_stop_watchdog(ioc);
8362 _scsih_flush_running_cmds(ioc);
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308363 return PCI_ERS_RESULT_DISCONNECT;
8364 }
8365 return PCI_ERS_RESULT_NEED_RESET;
8366}
8367
8368/**
8369 * _scsih_pci_slot_reset - Called when PCI slot has been reset.
8370 * @pdev: PCI device struct
8371 *
8372 * Description: This routine is called by the pci error recovery
8373 * code after the PCI slot has been reset, just before we
8374 * should resume normal operations.
8375 */
8376static pci_ers_result_t
8377_scsih_pci_slot_reset(struct pci_dev *pdev)
8378{
8379 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8380 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8381 int rc;
8382
8383 printk(MPT2SAS_INFO_FMT "PCI error: slot reset callback!!\n",
8384 ioc->name);
8385
Eric Moore3cb54692010-07-08 14:44:34 -06008386 ioc->pci_error_recovery = 0;
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308387 ioc->pdev = pdev;
Eric Moore3cb54692010-07-08 14:44:34 -06008388 pci_restore_state(pdev);
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308389 rc = mpt2sas_base_map_resources(ioc);
8390 if (rc)
8391 return PCI_ERS_RESULT_DISCONNECT;
8392
8393
8394 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
8395 FORCE_BIG_HAMMER);
8396
8397 printk(MPT2SAS_WARN_FMT "hard reset: %s\n", ioc->name,
8398 (rc == 0) ? "success" : "failed");
8399
8400 if (!rc)
8401 return PCI_ERS_RESULT_RECOVERED;
8402 else
8403 return PCI_ERS_RESULT_DISCONNECT;
8404}
8405
8406/**
8407 * _scsih_pci_resume() - resume normal ops after PCI reset
8408 * @pdev: pointer to PCI device
8409 *
8410 * Called when the error recovery driver tells us that its
8411 * OK to resume normal operation. Use completion to allow
8412 * halted scsi ops to resume.
8413 */
8414static void
8415_scsih_pci_resume(struct pci_dev *pdev)
8416{
8417 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8418 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8419
8420 printk(MPT2SAS_INFO_FMT "PCI error: resume callback!!\n", ioc->name);
8421
8422 pci_cleanup_aer_uncorrect_error_status(pdev);
8423 mpt2sas_base_start_watchdog(ioc);
8424 scsi_unblock_requests(ioc->shost);
8425}
8426
8427/**
8428 * _scsih_pci_mmio_enabled - Enable MMIO and dump debug registers
8429 * @pdev: pointer to PCI device
8430 */
8431static pci_ers_result_t
8432_scsih_pci_mmio_enabled(struct pci_dev *pdev)
8433{
8434 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8435 struct MPT2SAS_ADAPTER *ioc = shost_priv(shost);
8436
8437 printk(MPT2SAS_INFO_FMT "PCI error: mmio enabled callback!!\n",
8438 ioc->name);
8439
8440 /* TODO - dump whatever for debugging purposes */
8441
8442 /* Request a slot reset. */
8443 return PCI_ERS_RESULT_NEED_RESET;
8444}
8445
Stephen Hemmingera55b2d22012-09-07 09:33:16 -07008446static const struct pci_error_handlers _scsih_err_handler = {
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308447 .error_detected = _scsih_pci_error_detected,
8448 .mmio_enabled = _scsih_pci_mmio_enabled,
8449 .slot_reset = _scsih_pci_slot_reset,
8450 .resume = _scsih_pci_resume,
8451};
Eric Moore635374e2009-03-09 01:21:12 -06008452
8453static struct pci_driver scsih_driver = {
8454 .name = MPT2SAS_DRIVER_NAME,
8455 .id_table = scsih_pci_table,
Eric Moored5d135b2009-05-18 13:02:08 -06008456 .probe = _scsih_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008457 .remove = _scsih_remove,
Kashyap, Desai744090d2009-10-05 15:56:56 +05308458 .shutdown = _scsih_shutdown,
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05308459 .err_handler = &_scsih_err_handler,
Eric Moore635374e2009-03-09 01:21:12 -06008460#ifdef CONFIG_PM
Eric Moored5d135b2009-05-18 13:02:08 -06008461 .suspend = _scsih_suspend,
8462 .resume = _scsih_resume,
Eric Moore635374e2009-03-09 01:21:12 -06008463#endif
8464};
8465
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308466/* raid transport support */
8467static struct raid_function_template mpt2sas_raid_functions = {
8468 .cookie = &scsih_driver_template,
8469 .is_raid = _scsih_is_raid,
8470 .get_resync = _scsih_get_resync,
8471 .get_state = _scsih_get_state,
8472};
Eric Moore635374e2009-03-09 01:21:12 -06008473
8474/**
Eric Moored5d135b2009-05-18 13:02:08 -06008475 * _scsih_init - main entry point for this driver.
Eric Moore635374e2009-03-09 01:21:12 -06008476 *
8477 * Returns 0 success, anything else error.
8478 */
8479static int __init
Eric Moored5d135b2009-05-18 13:02:08 -06008480_scsih_init(void)
Eric Moore635374e2009-03-09 01:21:12 -06008481{
8482 int error;
8483
8484 mpt_ids = 0;
8485 printk(KERN_INFO "%s version %s loaded\n", MPT2SAS_DRIVER_NAME,
8486 MPT2SAS_DRIVER_VERSION);
8487
8488 mpt2sas_transport_template =
8489 sas_attach_transport(&mpt2sas_transport_functions);
8490 if (!mpt2sas_transport_template)
8491 return -ENODEV;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308492 /* raid transport support */
8493 mpt2sas_raid_template = raid_class_attach(&mpt2sas_raid_functions);
8494 if (!mpt2sas_raid_template) {
8495 sas_release_transport(mpt2sas_transport_template);
8496 return -ENODEV;
8497 }
Eric Moore635374e2009-03-09 01:21:12 -06008498
8499 mpt2sas_base_initialize_callback_handler();
8500
8501 /* queuecommand callback hander */
Eric Moored5d135b2009-05-18 13:02:08 -06008502 scsi_io_cb_idx = mpt2sas_base_register_callback_handler(_scsih_io_done);
Eric Moore635374e2009-03-09 01:21:12 -06008503
Uwe Kleine-König65155b32010-06-11 12:17:01 +02008504 /* task management callback handler */
Eric Moored5d135b2009-05-18 13:02:08 -06008505 tm_cb_idx = mpt2sas_base_register_callback_handler(_scsih_tm_done);
Eric Moore635374e2009-03-09 01:21:12 -06008506
8507 /* base internal commands callback handler */
8508 base_cb_idx = mpt2sas_base_register_callback_handler(mpt2sas_base_done);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308509 port_enable_cb_idx = mpt2sas_base_register_callback_handler(
8510 mpt2sas_port_enable_done);
Eric Moore635374e2009-03-09 01:21:12 -06008511
8512 /* transport internal commands callback handler */
8513 transport_cb_idx = mpt2sas_base_register_callback_handler(
8514 mpt2sas_transport_done);
8515
Kashyap, Desai744090d2009-10-05 15:56:56 +05308516 /* scsih internal commands callback handler */
8517 scsih_cb_idx = mpt2sas_base_register_callback_handler(_scsih_done);
8518
Eric Moore635374e2009-03-09 01:21:12 -06008519 /* configuration page API internal commands callback handler */
8520 config_cb_idx = mpt2sas_base_register_callback_handler(
8521 mpt2sas_config_done);
8522
8523 /* ctl module callback handler */
8524 ctl_cb_idx = mpt2sas_base_register_callback_handler(mpt2sas_ctl_done);
8525
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308526 tm_tr_cb_idx = mpt2sas_base_register_callback_handler(
8527 _scsih_tm_tr_complete);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05308528
8529 tm_tr_volume_cb_idx = mpt2sas_base_register_callback_handler(
8530 _scsih_tm_volume_tr_complete);
8531
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308532 tm_sas_control_cb_idx = mpt2sas_base_register_callback_handler(
8533 _scsih_sas_control_complete);
8534
Eric Moore635374e2009-03-09 01:21:12 -06008535 mpt2sas_ctl_init();
8536
8537 error = pci_register_driver(&scsih_driver);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308538 if (error) {
8539 /* raid transport support */
8540 raid_class_release(mpt2sas_raid_template);
Eric Moore635374e2009-03-09 01:21:12 -06008541 sas_release_transport(mpt2sas_transport_template);
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308542 }
Eric Moore635374e2009-03-09 01:21:12 -06008543
8544 return error;
8545}
8546
8547/**
Eric Moored5d135b2009-05-18 13:02:08 -06008548 * _scsih_exit - exit point for this driver (when it is a module).
Eric Moore635374e2009-03-09 01:21:12 -06008549 *
8550 * Returns 0 success, anything else error.
8551 */
8552static void __exit
Eric Moored5d135b2009-05-18 13:02:08 -06008553_scsih_exit(void)
Eric Moore635374e2009-03-09 01:21:12 -06008554{
8555 printk(KERN_INFO "mpt2sas version %s unloading\n",
8556 MPT2SAS_DRIVER_VERSION);
8557
8558 pci_unregister_driver(&scsih_driver);
8559
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308560 mpt2sas_ctl_exit();
8561
Eric Moore635374e2009-03-09 01:21:12 -06008562 mpt2sas_base_release_callback_handler(scsi_io_cb_idx);
8563 mpt2sas_base_release_callback_handler(tm_cb_idx);
8564 mpt2sas_base_release_callback_handler(base_cb_idx);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05308565 mpt2sas_base_release_callback_handler(port_enable_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06008566 mpt2sas_base_release_callback_handler(transport_cb_idx);
Kashyap, Desai744090d2009-10-05 15:56:56 +05308567 mpt2sas_base_release_callback_handler(scsih_cb_idx);
Eric Moore635374e2009-03-09 01:21:12 -06008568 mpt2sas_base_release_callback_handler(config_cb_idx);
8569 mpt2sas_base_release_callback_handler(ctl_cb_idx);
8570
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308571 mpt2sas_base_release_callback_handler(tm_tr_cb_idx);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05308572 mpt2sas_base_release_callback_handler(tm_tr_volume_cb_idx);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05308573 mpt2sas_base_release_callback_handler(tm_sas_control_cb_idx);
8574
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +05308575 /* raid transport support */
8576 raid_class_release(mpt2sas_raid_template);
8577 sas_release_transport(mpt2sas_transport_template);
8578
Eric Moore635374e2009-03-09 01:21:12 -06008579}
8580
Eric Moored5d135b2009-05-18 13:02:08 -06008581module_init(_scsih_init);
8582module_exit(_scsih_exit);