2 * This is the Fusion MPT base driver providing common API layer interface
3 * for access to MPT (Message Passing Technology) firmware.
5 * This code is based on drivers/scsi/mpt2sas/mpt2_base.c
6 * Copyright (C) 2007-2010 LSI Corporation
7 * (mailto:DL-MPTFusionLinux@lsi.com)
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
21 * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
22 * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
23 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
24 * solely responsible for determining the appropriateness of using and
25 * distributing the Program and assumes all risks associated with its
26 * exercise of rights under this Agreement, including but not limited to
27 * the risks and costs of program errors, damage to or loss of data,
28 * programs or equipment, and unavailability or interruption of operations.
30 * DISCLAIMER OF LIABILITY
31 * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
32 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
34 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
35 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
36 * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
37 * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
45 #include <linux/version.h>
46 #include <linux/kernel.h>
47 #include <linux/module.h>
48 #include <linux/errno.h>
49 #include <linux/init.h>
50 #include <linux/slab.h>
51 #include <linux/types.h>
52 #include <linux/pci.h>
53 #include <linux/kdev_t.h>
54 #include <linux/blkdev.h>
55 #include <linux/delay.h>
56 #include <linux/interrupt.h>
57 #include <linux/dma-mapping.h>
58 #include <linux/sort.h>
60 #include <linux/time.h>
61 #include <linux/aer.h>
63 #include "mpt2sas_base.h"
65 static MPT_CALLBACK mpt_callbacks
[MPT_MAX_CALLBACKS
];
67 #define FAULT_POLLING_INTERVAL 1000 /* in milliseconds */
69 static int max_queue_depth
= -1;
70 module_param(max_queue_depth
, int, 0);
71 MODULE_PARM_DESC(max_queue_depth
, " max controller queue depth ");
73 static int max_sgl_entries
= -1;
74 module_param(max_sgl_entries
, int, 0);
75 MODULE_PARM_DESC(max_sgl_entries
, " max sg entries ");
77 static int msix_disable
= -1;
78 module_param(msix_disable
, int, 0);
79 MODULE_PARM_DESC(msix_disable
, " disable msix routed interrupts (default=0)");
81 static int missing_delay
[2] = {-1, -1};
82 module_param_array(missing_delay
, int, NULL
, 0);
83 MODULE_PARM_DESC(missing_delay
, " device missing delay , io missing delay");
85 /* diag_buffer_enable is bitwise
87 * bit 1 set = SNAPSHOT
88 * bit 2 set = EXTENDED
90 * Either bit can be set, or both
92 static int diag_buffer_enable
;
93 module_param(diag_buffer_enable
, int, 0);
94 MODULE_PARM_DESC(diag_buffer_enable
, " post diag buffers "
95 "(TRACE=1/SNAPSHOT=2/EXTENDED=4/default=0)");
97 int mpt2sas_fwfault_debug
;
98 MODULE_PARM_DESC(mpt2sas_fwfault_debug
, " enable detection of firmware fault "
99 "and halt firmware - (default=0)");
101 static int disable_discovery
= -1;
102 module_param(disable_discovery
, int, 0);
103 MODULE_PARM_DESC(disable_discovery
, " disable discovery ");
106 * _scsih_set_fwfault_debug - global setting of ioc->fwfault_debug.
110 _scsih_set_fwfault_debug(const char *val
, struct kernel_param
*kp
)
112 int ret
= param_set_int(val
, kp
);
113 struct MPT2SAS_ADAPTER
*ioc
;
118 printk(KERN_INFO
"setting fwfault_debug(%d)\n", mpt2sas_fwfault_debug
);
119 list_for_each_entry(ioc
, &mpt2sas_ioc_list
, list
)
120 ioc
->fwfault_debug
= mpt2sas_fwfault_debug
;
123 module_param_call(mpt2sas_fwfault_debug
, _scsih_set_fwfault_debug
,
124 param_get_int
, &mpt2sas_fwfault_debug
, 0644);
127 * _base_fault_reset_work - workq handling ioc fault conditions
128 * @work: input argument, used to derive ioc
134 _base_fault_reset_work(struct work_struct
*work
)
136 struct MPT2SAS_ADAPTER
*ioc
=
137 container_of(work
, struct MPT2SAS_ADAPTER
, fault_reset_work
.work
);
142 spin_lock_irqsave(&ioc
->ioc_reset_in_progress_lock
, flags
);
143 if (ioc
->shost_recovery
)
145 spin_unlock_irqrestore(&ioc
->ioc_reset_in_progress_lock
, flags
);
147 doorbell
= mpt2sas_base_get_iocstate(ioc
, 0);
148 if ((doorbell
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_FAULT
) {
149 rc
= mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
151 printk(MPT2SAS_WARN_FMT
"%s: hard reset: %s\n", ioc
->name
,
152 __func__
, (rc
== 0) ? "success" : "failed");
153 doorbell
= mpt2sas_base_get_iocstate(ioc
, 0);
154 if ((doorbell
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_FAULT
)
155 mpt2sas_base_fault_info(ioc
, doorbell
&
156 MPI2_DOORBELL_DATA_MASK
);
159 spin_lock_irqsave(&ioc
->ioc_reset_in_progress_lock
, flags
);
161 if (ioc
->fault_reset_work_q
)
162 queue_delayed_work(ioc
->fault_reset_work_q
,
163 &ioc
->fault_reset_work
,
164 msecs_to_jiffies(FAULT_POLLING_INTERVAL
));
165 spin_unlock_irqrestore(&ioc
->ioc_reset_in_progress_lock
, flags
);
169 * mpt2sas_base_start_watchdog - start the fault_reset_work_q
170 * @ioc: per adapter object
176 mpt2sas_base_start_watchdog(struct MPT2SAS_ADAPTER
*ioc
)
180 if (ioc
->fault_reset_work_q
)
183 /* initialize fault polling */
184 INIT_DELAYED_WORK(&ioc
->fault_reset_work
, _base_fault_reset_work
);
185 snprintf(ioc
->fault_reset_work_q_name
,
186 sizeof(ioc
->fault_reset_work_q_name
), "poll_%d_status", ioc
->id
);
187 ioc
->fault_reset_work_q
=
188 create_singlethread_workqueue(ioc
->fault_reset_work_q_name
);
189 if (!ioc
->fault_reset_work_q
) {
190 printk(MPT2SAS_ERR_FMT
"%s: failed (line=%d)\n",
191 ioc
->name
, __func__
, __LINE__
);
194 spin_lock_irqsave(&ioc
->ioc_reset_in_progress_lock
, flags
);
195 if (ioc
->fault_reset_work_q
)
196 queue_delayed_work(ioc
->fault_reset_work_q
,
197 &ioc
->fault_reset_work
,
198 msecs_to_jiffies(FAULT_POLLING_INTERVAL
));
199 spin_unlock_irqrestore(&ioc
->ioc_reset_in_progress_lock
, flags
);
203 * mpt2sas_base_stop_watchdog - stop the fault_reset_work_q
204 * @ioc: per adapter object
210 mpt2sas_base_stop_watchdog(struct MPT2SAS_ADAPTER
*ioc
)
213 struct workqueue_struct
*wq
;
215 spin_lock_irqsave(&ioc
->ioc_reset_in_progress_lock
, flags
);
216 wq
= ioc
->fault_reset_work_q
;
217 ioc
->fault_reset_work_q
= NULL
;
218 spin_unlock_irqrestore(&ioc
->ioc_reset_in_progress_lock
, flags
);
220 if (!cancel_delayed_work(&ioc
->fault_reset_work
))
222 destroy_workqueue(wq
);
227 * mpt2sas_base_fault_info - verbose translation of firmware FAULT code
228 * @ioc: per adapter object
229 * @fault_code: fault code
234 mpt2sas_base_fault_info(struct MPT2SAS_ADAPTER
*ioc
, u16 fault_code
)
236 printk(MPT2SAS_ERR_FMT
"fault_state(0x%04x)!\n",
237 ioc
->name
, fault_code
);
241 * mpt2sas_halt_firmware - halt's mpt controller firmware
242 * @ioc: per adapter object
244 * For debugging timeout related issues. Writing 0xCOFFEE00
245 * to the doorbell register will halt controller firmware. With
246 * the purpose to stop both driver and firmware, the enduser can
247 * obtain a ring buffer from controller UART.
250 mpt2sas_halt_firmware(struct MPT2SAS_ADAPTER
*ioc
)
254 if (!ioc
->fwfault_debug
)
259 doorbell
= readl(&ioc
->chip
->Doorbell
);
260 if ((doorbell
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_FAULT
)
261 mpt2sas_base_fault_info(ioc
, doorbell
);
263 writel(0xC0FFEE00, &ioc
->chip
->Doorbell
);
264 printk(MPT2SAS_ERR_FMT
"Firmware is halted due to command "
265 "timeout\n", ioc
->name
);
268 panic("panic in %s\n", __func__
);
271 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
273 * _base_sas_ioc_info - verbose translation of the ioc status
274 * @ioc: per adapter object
275 * @mpi_reply: reply mf payload returned from firmware
276 * @request_hdr: request mf
281 _base_sas_ioc_info(struct MPT2SAS_ADAPTER
*ioc
, MPI2DefaultReply_t
*mpi_reply
,
282 MPI2RequestHeader_t
*request_hdr
)
284 u16 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
) &
288 char *func_str
= NULL
;
290 /* SCSI_IO, RAID_PASS are handled from _scsih_scsi_ioc_info */
291 if (request_hdr
->Function
== MPI2_FUNCTION_SCSI_IO_REQUEST
||
292 request_hdr
->Function
== MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH
||
293 request_hdr
->Function
== MPI2_FUNCTION_EVENT_NOTIFICATION
)
296 if (ioc_status
== MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
)
299 switch (ioc_status
) {
301 /****************************************************************************
302 * Common IOCStatus values for all replies
303 ****************************************************************************/
305 case MPI2_IOCSTATUS_INVALID_FUNCTION
:
306 desc
= "invalid function";
308 case MPI2_IOCSTATUS_BUSY
:
311 case MPI2_IOCSTATUS_INVALID_SGL
:
312 desc
= "invalid sgl";
314 case MPI2_IOCSTATUS_INTERNAL_ERROR
:
315 desc
= "internal error";
317 case MPI2_IOCSTATUS_INVALID_VPID
:
318 desc
= "invalid vpid";
320 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES
:
321 desc
= "insufficient resources";
323 case MPI2_IOCSTATUS_INVALID_FIELD
:
324 desc
= "invalid field";
326 case MPI2_IOCSTATUS_INVALID_STATE
:
327 desc
= "invalid state";
329 case MPI2_IOCSTATUS_OP_STATE_NOT_SUPPORTED
:
330 desc
= "op state not supported";
333 /****************************************************************************
334 * Config IOCStatus values
335 ****************************************************************************/
337 case MPI2_IOCSTATUS_CONFIG_INVALID_ACTION
:
338 desc
= "config invalid action";
340 case MPI2_IOCSTATUS_CONFIG_INVALID_TYPE
:
341 desc
= "config invalid type";
343 case MPI2_IOCSTATUS_CONFIG_INVALID_PAGE
:
344 desc
= "config invalid page";
346 case MPI2_IOCSTATUS_CONFIG_INVALID_DATA
:
347 desc
= "config invalid data";
349 case MPI2_IOCSTATUS_CONFIG_NO_DEFAULTS
:
350 desc
= "config no defaults";
352 case MPI2_IOCSTATUS_CONFIG_CANT_COMMIT
:
353 desc
= "config cant commit";
356 /****************************************************************************
358 ****************************************************************************/
360 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR
:
361 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE
:
362 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE
:
363 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN
:
364 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN
:
365 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR
:
366 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR
:
367 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED
:
368 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH
:
369 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED
:
370 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED
:
371 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED
:
374 /****************************************************************************
375 * For use by SCSI Initiator and SCSI Target end-to-end data protection
376 ****************************************************************************/
378 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR
:
379 desc
= "eedp guard error";
381 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR
:
382 desc
= "eedp ref tag error";
384 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR
:
385 desc
= "eedp app tag error";
388 /****************************************************************************
390 ****************************************************************************/
392 case MPI2_IOCSTATUS_TARGET_INVALID_IO_INDEX
:
393 desc
= "target invalid io index";
395 case MPI2_IOCSTATUS_TARGET_ABORTED
:
396 desc
= "target aborted";
398 case MPI2_IOCSTATUS_TARGET_NO_CONN_RETRYABLE
:
399 desc
= "target no conn retryable";
401 case MPI2_IOCSTATUS_TARGET_NO_CONNECTION
:
402 desc
= "target no connection";
404 case MPI2_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH
:
405 desc
= "target xfer count mismatch";
407 case MPI2_IOCSTATUS_TARGET_DATA_OFFSET_ERROR
:
408 desc
= "target data offset error";
410 case MPI2_IOCSTATUS_TARGET_TOO_MUCH_WRITE_DATA
:
411 desc
= "target too much write data";
413 case MPI2_IOCSTATUS_TARGET_IU_TOO_SHORT
:
414 desc
= "target iu too short";
416 case MPI2_IOCSTATUS_TARGET_ACK_NAK_TIMEOUT
:
417 desc
= "target ack nak timeout";
419 case MPI2_IOCSTATUS_TARGET_NAK_RECEIVED
:
420 desc
= "target nak received";
423 /****************************************************************************
424 * Serial Attached SCSI values
425 ****************************************************************************/
427 case MPI2_IOCSTATUS_SAS_SMP_REQUEST_FAILED
:
428 desc
= "smp request failed";
430 case MPI2_IOCSTATUS_SAS_SMP_DATA_OVERRUN
:
431 desc
= "smp data overrun";
434 /****************************************************************************
435 * Diagnostic Buffer Post / Diagnostic Release values
436 ****************************************************************************/
438 case MPI2_IOCSTATUS_DIAGNOSTIC_RELEASED
:
439 desc
= "diagnostic released";
448 switch (request_hdr
->Function
) {
449 case MPI2_FUNCTION_CONFIG
:
450 frame_sz
= sizeof(Mpi2ConfigRequest_t
) + ioc
->sge_size
;
451 func_str
= "config_page";
453 case MPI2_FUNCTION_SCSI_TASK_MGMT
:
454 frame_sz
= sizeof(Mpi2SCSITaskManagementRequest_t
);
455 func_str
= "task_mgmt";
457 case MPI2_FUNCTION_SAS_IO_UNIT_CONTROL
:
458 frame_sz
= sizeof(Mpi2SasIoUnitControlRequest_t
);
459 func_str
= "sas_iounit_ctl";
461 case MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR
:
462 frame_sz
= sizeof(Mpi2SepRequest_t
);
463 func_str
= "enclosure";
465 case MPI2_FUNCTION_IOC_INIT
:
466 frame_sz
= sizeof(Mpi2IOCInitRequest_t
);
467 func_str
= "ioc_init";
469 case MPI2_FUNCTION_PORT_ENABLE
:
470 frame_sz
= sizeof(Mpi2PortEnableRequest_t
);
471 func_str
= "port_enable";
473 case MPI2_FUNCTION_SMP_PASSTHROUGH
:
474 frame_sz
= sizeof(Mpi2SmpPassthroughRequest_t
) + ioc
->sge_size
;
475 func_str
= "smp_passthru";
479 func_str
= "unknown";
483 printk(MPT2SAS_WARN_FMT
"ioc_status: %s(0x%04x), request(0x%p),"
484 " (%s)\n", ioc
->name
, desc
, ioc_status
, request_hdr
, func_str
);
486 _debug_dump_mf(request_hdr
, frame_sz
/4);
490 * _base_display_event_data - verbose translation of firmware asyn events
491 * @ioc: per adapter object
492 * @mpi_reply: reply mf payload returned from firmware
497 _base_display_event_data(struct MPT2SAS_ADAPTER
*ioc
,
498 Mpi2EventNotificationReply_t
*mpi_reply
)
503 if (!(ioc
->logging_level
& MPT_DEBUG_EVENTS
))
506 event
= le16_to_cpu(mpi_reply
->Event
);
509 case MPI2_EVENT_LOG_DATA
:
512 case MPI2_EVENT_STATE_CHANGE
:
513 desc
= "Status Change";
515 case MPI2_EVENT_HARD_RESET_RECEIVED
:
516 desc
= "Hard Reset Received";
518 case MPI2_EVENT_EVENT_CHANGE
:
519 desc
= "Event Change";
521 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
:
522 desc
= "Device Status Change";
524 case MPI2_EVENT_IR_OPERATION_STATUS
:
525 if (!ioc
->hide_ir_msg
)
526 desc
= "IR Operation Status";
528 case MPI2_EVENT_SAS_DISCOVERY
:
530 Mpi2EventDataSasDiscovery_t
*event_data
=
531 (Mpi2EventDataSasDiscovery_t
*)mpi_reply
->EventData
;
532 printk(MPT2SAS_INFO_FMT
"Discovery: (%s)", ioc
->name
,
533 (event_data
->ReasonCode
== MPI2_EVENT_SAS_DISC_RC_STARTED
) ?
535 if (event_data
->DiscoveryStatus
)
536 printk("discovery_status(0x%08x)",
537 le32_to_cpu(event_data
->DiscoveryStatus
));
541 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE
:
542 desc
= "SAS Broadcast Primitive";
544 case MPI2_EVENT_SAS_INIT_DEVICE_STATUS_CHANGE
:
545 desc
= "SAS Init Device Status Change";
547 case MPI2_EVENT_SAS_INIT_TABLE_OVERFLOW
:
548 desc
= "SAS Init Table Overflow";
550 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
:
551 desc
= "SAS Topology Change List";
553 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE
:
554 desc
= "SAS Enclosure Device Status Change";
556 case MPI2_EVENT_IR_VOLUME
:
557 if (!ioc
->hide_ir_msg
)
560 case MPI2_EVENT_IR_PHYSICAL_DISK
:
561 if (!ioc
->hide_ir_msg
)
562 desc
= "IR Physical Disk";
564 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST
:
565 if (!ioc
->hide_ir_msg
)
566 desc
= "IR Configuration Change List";
568 case MPI2_EVENT_LOG_ENTRY_ADDED
:
569 if (!ioc
->hide_ir_msg
)
570 desc
= "Log Entry Added";
577 printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
, desc
);
582 * _base_sas_log_info - verbose translation of firmware log info
583 * @ioc: per adapter object
584 * @log_info: log info
589 _base_sas_log_info(struct MPT2SAS_ADAPTER
*ioc
, u32 log_info
)
600 union loginfo_type sas_loginfo
;
601 char *originator_str
= NULL
;
603 sas_loginfo
.loginfo
= log_info
;
604 if (sas_loginfo
.dw
.bus_type
!= 3 /*SAS*/)
607 /* each nexus loss loginfo */
608 if (log_info
== 0x31170000)
611 /* eat the loginfos associated with task aborts */
612 if (ioc
->ignore_loginfos
&& (log_info
== 30050000 || log_info
==
613 0x31140000 || log_info
== 0x31130000))
616 switch (sas_loginfo
.dw
.originator
) {
618 originator_str
= "IOP";
621 originator_str
= "PL";
624 if (!ioc
->hide_ir_msg
)
625 originator_str
= "IR";
627 originator_str
= "WarpDrive";
631 printk(MPT2SAS_WARN_FMT
"log_info(0x%08x): originator(%s), "
632 "code(0x%02x), sub_code(0x%04x)\n", ioc
->name
, log_info
,
633 originator_str
, sas_loginfo
.dw
.code
,
634 sas_loginfo
.dw
.subcode
);
638 * _base_display_reply_info -
639 * @ioc: per adapter object
640 * @smid: system request message index
641 * @msix_index: MSIX table index supplied by the OS
642 * @reply: reply message frame(lower 32bit addr)
647 _base_display_reply_info(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
,
650 MPI2DefaultReply_t
*mpi_reply
;
653 mpi_reply
= mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
654 ioc_status
= le16_to_cpu(mpi_reply
->IOCStatus
);
655 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
656 if ((ioc_status
& MPI2_IOCSTATUS_MASK
) &&
657 (ioc
->logging_level
& MPT_DEBUG_REPLY
)) {
658 _base_sas_ioc_info(ioc
, mpi_reply
,
659 mpt2sas_base_get_msg_frame(ioc
, smid
));
662 if (ioc_status
& MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE
)
663 _base_sas_log_info(ioc
, le32_to_cpu(mpi_reply
->IOCLogInfo
));
667 * mpt2sas_base_done - base internal command completion routine
668 * @ioc: per adapter object
669 * @smid: system request message index
670 * @msix_index: MSIX table index supplied by the OS
671 * @reply: reply message frame(lower 32bit addr)
673 * Return 1 meaning mf should be freed from _base_interrupt
674 * 0 means the mf is freed from this function.
677 mpt2sas_base_done(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
, u8 msix_index
,
680 MPI2DefaultReply_t
*mpi_reply
;
682 mpi_reply
= mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
683 if (mpi_reply
&& mpi_reply
->Function
== MPI2_FUNCTION_EVENT_ACK
)
686 if (ioc
->base_cmds
.status
== MPT2_CMD_NOT_USED
)
689 ioc
->base_cmds
.status
|= MPT2_CMD_COMPLETE
;
691 ioc
->base_cmds
.status
|= MPT2_CMD_REPLY_VALID
;
692 memcpy(ioc
->base_cmds
.reply
, mpi_reply
, mpi_reply
->MsgLength
*4);
694 ioc
->base_cmds
.status
&= ~MPT2_CMD_PENDING
;
695 complete(&ioc
->base_cmds
.done
);
700 * _base_async_event - main callback handler for firmware asyn events
701 * @ioc: per adapter object
702 * @msix_index: MSIX table index supplied by the OS
703 * @reply: reply message frame(lower 32bit addr)
705 * Return 1 meaning mf should be freed from _base_interrupt
706 * 0 means the mf is freed from this function.
709 _base_async_event(struct MPT2SAS_ADAPTER
*ioc
, u8 msix_index
, u32 reply
)
711 Mpi2EventNotificationReply_t
*mpi_reply
;
712 Mpi2EventAckRequest_t
*ack_request
;
715 mpi_reply
= mpt2sas_base_get_reply_virt_addr(ioc
, reply
);
718 if (mpi_reply
->Function
!= MPI2_FUNCTION_EVENT_NOTIFICATION
)
720 #ifdef CONFIG_SCSI_MPT2SAS_LOGGING
721 _base_display_event_data(ioc
, mpi_reply
);
723 if (!(mpi_reply
->AckRequired
& MPI2_EVENT_NOTIFICATION_ACK_REQUIRED
))
725 smid
= mpt2sas_base_get_smid(ioc
, ioc
->base_cb_idx
);
727 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
728 ioc
->name
, __func__
);
732 ack_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
733 memset(ack_request
, 0, sizeof(Mpi2EventAckRequest_t
));
734 ack_request
->Function
= MPI2_FUNCTION_EVENT_ACK
;
735 ack_request
->Event
= mpi_reply
->Event
;
736 ack_request
->EventContext
= mpi_reply
->EventContext
;
737 ack_request
->VF_ID
= 0; /* TODO */
738 ack_request
->VP_ID
= 0;
739 mpt2sas_base_put_smid_default(ioc
, smid
);
743 /* scsih callback handler */
744 mpt2sas_scsih_event_callback(ioc
, msix_index
, reply
);
746 /* ctl callback handler */
747 mpt2sas_ctl_event_callback(ioc
, msix_index
, reply
);
753 * _base_get_cb_idx - obtain the callback index
754 * @ioc: per adapter object
755 * @smid: system request message index
757 * Return callback index.
760 _base_get_cb_idx(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
765 if (smid
< ioc
->hi_priority_smid
) {
767 cb_idx
= ioc
->scsi_lookup
[i
].cb_idx
;
768 } else if (smid
< ioc
->internal_smid
) {
769 i
= smid
- ioc
->hi_priority_smid
;
770 cb_idx
= ioc
->hpr_lookup
[i
].cb_idx
;
771 } else if (smid
<= ioc
->hba_queue_depth
) {
772 i
= smid
- ioc
->internal_smid
;
773 cb_idx
= ioc
->internal_lookup
[i
].cb_idx
;
780 * _base_mask_interrupts - disable interrupts
781 * @ioc: per adapter object
783 * Disabling ResetIRQ, Reply and Doorbell Interrupts
788 _base_mask_interrupts(struct MPT2SAS_ADAPTER
*ioc
)
792 ioc
->mask_interrupts
= 1;
793 him_register
= readl(&ioc
->chip
->HostInterruptMask
);
794 him_register
|= MPI2_HIM_DIM
+ MPI2_HIM_RIM
+ MPI2_HIM_RESET_IRQ_MASK
;
795 writel(him_register
, &ioc
->chip
->HostInterruptMask
);
796 readl(&ioc
->chip
->HostInterruptMask
);
800 * _base_unmask_interrupts - enable interrupts
801 * @ioc: per adapter object
803 * Enabling only Reply Interrupts
808 _base_unmask_interrupts(struct MPT2SAS_ADAPTER
*ioc
)
812 him_register
= readl(&ioc
->chip
->HostInterruptMask
);
813 him_register
&= ~MPI2_HIM_RIM
;
814 writel(him_register
, &ioc
->chip
->HostInterruptMask
);
815 ioc
->mask_interrupts
= 0;
818 union reply_descriptor
{
827 * _base_interrupt - MPT adapter (IOC) specific interrupt handler.
828 * @irq: irq number (not used)
829 * @bus_id: bus identifier cookie == pointer to MPT_ADAPTER structure
830 * @r: pt_regs pointer (not used)
832 * Return IRQ_HANDLE if processed, else IRQ_NONE.
835 _base_interrupt(int irq
, void *bus_id
)
837 union reply_descriptor rd
;
839 u8 request_desript_type
;
844 struct MPT2SAS_ADAPTER
*ioc
= bus_id
;
845 Mpi2ReplyDescriptorsUnion_t
*rpf
;
848 if (ioc
->mask_interrupts
)
851 rpf
= &ioc
->reply_post_free
[ioc
->reply_post_host_index
];
852 request_desript_type
= rpf
->Default
.ReplyFlags
853 & MPI2_RPY_DESCRIPT_FLAGS_TYPE_MASK
;
854 if (request_desript_type
== MPI2_RPY_DESCRIPT_FLAGS_UNUSED
)
860 rd
.word
= rpf
->Words
;
861 if (rd
.u
.low
== UINT_MAX
|| rd
.u
.high
== UINT_MAX
)
865 smid
= le16_to_cpu(rpf
->Default
.DescriptorTypeDependent1
);
866 msix_index
= rpf
->Default
.MSIxIndex
;
867 if (request_desript_type
==
868 MPI2_RPY_DESCRIPT_FLAGS_ADDRESS_REPLY
) {
870 (rpf
->AddressReply
.ReplyFrameAddress
);
871 if (reply
> ioc
->reply_dma_max_address
||
872 reply
< ioc
->reply_dma_min_address
)
874 } else if (request_desript_type
==
875 MPI2_RPY_DESCRIPT_FLAGS_TARGET_COMMAND_BUFFER
)
877 else if (request_desript_type
==
878 MPI2_RPY_DESCRIPT_FLAGS_TARGETASSIST_SUCCESS
)
881 cb_idx
= _base_get_cb_idx(ioc
, smid
);
882 if (smid
&& cb_idx
!= 0xFF) {
883 rc
= mpt_callbacks
[cb_idx
](ioc
, smid
, msix_index
,
886 _base_display_reply_info(ioc
, smid
, msix_index
,
889 mpt2sas_base_free_smid(ioc
, smid
);
892 _base_async_event(ioc
, msix_index
, reply
);
894 /* reply free queue handling */
896 ioc
->reply_free_host_index
=
897 (ioc
->reply_free_host_index
==
898 (ioc
->reply_free_queue_depth
- 1)) ?
899 0 : ioc
->reply_free_host_index
+ 1;
900 ioc
->reply_free
[ioc
->reply_free_host_index
] =
903 writel(ioc
->reply_free_host_index
,
904 &ioc
->chip
->ReplyFreeHostIndex
);
909 rpf
->Words
= ULLONG_MAX
;
910 ioc
->reply_post_host_index
= (ioc
->reply_post_host_index
==
911 (ioc
->reply_post_queue_depth
- 1)) ? 0 :
912 ioc
->reply_post_host_index
+ 1;
913 request_desript_type
=
914 ioc
->reply_post_free
[ioc
->reply_post_host_index
].Default
.
915 ReplyFlags
& MPI2_RPY_DESCRIPT_FLAGS_TYPE_MASK
;
917 if (request_desript_type
== MPI2_RPY_DESCRIPT_FLAGS_UNUSED
)
919 if (!ioc
->reply_post_host_index
)
920 rpf
= ioc
->reply_post_free
;
931 writel(ioc
->reply_post_host_index
, &ioc
->chip
->ReplyPostHostIndex
);
936 * mpt2sas_base_release_callback_handler - clear interrupt callback handler
937 * @cb_idx: callback index
942 mpt2sas_base_release_callback_handler(u8 cb_idx
)
944 mpt_callbacks
[cb_idx
] = NULL
;
948 * mpt2sas_base_register_callback_handler - obtain index for the interrupt callback handler
949 * @cb_func: callback function
954 mpt2sas_base_register_callback_handler(MPT_CALLBACK cb_func
)
958 for (cb_idx
= MPT_MAX_CALLBACKS
-1; cb_idx
; cb_idx
--)
959 if (mpt_callbacks
[cb_idx
] == NULL
)
962 mpt_callbacks
[cb_idx
] = cb_func
;
967 * mpt2sas_base_initialize_callback_handler - initialize the interrupt callback handler
972 mpt2sas_base_initialize_callback_handler(void)
976 for (cb_idx
= 0; cb_idx
< MPT_MAX_CALLBACKS
; cb_idx
++)
977 mpt2sas_base_release_callback_handler(cb_idx
);
981 * mpt2sas_base_build_zero_len_sge - build zero length sg entry
982 * @ioc: per adapter object
983 * @paddr: virtual address for SGE
985 * Create a zero length scatter gather entry to insure the IOCs hardware has
986 * something to use if the target device goes brain dead and tries
987 * to send data even when none is asked for.
992 mpt2sas_base_build_zero_len_sge(struct MPT2SAS_ADAPTER
*ioc
, void *paddr
)
994 u32 flags_length
= (u32
)((MPI2_SGE_FLAGS_LAST_ELEMENT
|
995 MPI2_SGE_FLAGS_END_OF_BUFFER
| MPI2_SGE_FLAGS_END_OF_LIST
|
996 MPI2_SGE_FLAGS_SIMPLE_ELEMENT
) <<
997 MPI2_SGE_FLAGS_SHIFT
);
998 ioc
->base_add_sg_single(paddr
, flags_length
, -1);
1002 * _base_add_sg_single_32 - Place a simple 32 bit SGE at address pAddr.
1003 * @paddr: virtual address for SGE
1004 * @flags_length: SGE flags and data transfer length
1005 * @dma_addr: Physical address
1010 _base_add_sg_single_32(void *paddr
, u32 flags_length
, dma_addr_t dma_addr
)
1012 Mpi2SGESimple32_t
*sgel
= paddr
;
1014 flags_length
|= (MPI2_SGE_FLAGS_32_BIT_ADDRESSING
|
1015 MPI2_SGE_FLAGS_SYSTEM_ADDRESS
) << MPI2_SGE_FLAGS_SHIFT
;
1016 sgel
->FlagsLength
= cpu_to_le32(flags_length
);
1017 sgel
->Address
= cpu_to_le32(dma_addr
);
1022 * _base_add_sg_single_64 - Place a simple 64 bit SGE at address pAddr.
1023 * @paddr: virtual address for SGE
1024 * @flags_length: SGE flags and data transfer length
1025 * @dma_addr: Physical address
1030 _base_add_sg_single_64(void *paddr
, u32 flags_length
, dma_addr_t dma_addr
)
1032 Mpi2SGESimple64_t
*sgel
= paddr
;
1034 flags_length
|= (MPI2_SGE_FLAGS_64_BIT_ADDRESSING
|
1035 MPI2_SGE_FLAGS_SYSTEM_ADDRESS
) << MPI2_SGE_FLAGS_SHIFT
;
1036 sgel
->FlagsLength
= cpu_to_le32(flags_length
);
1037 sgel
->Address
= cpu_to_le64(dma_addr
);
1040 #define convert_to_kb(x) ((x) << (PAGE_SHIFT - 10))
1043 * _base_config_dma_addressing - set dma addressing
1044 * @ioc: per adapter object
1045 * @pdev: PCI device struct
1047 * Returns 0 for success, non-zero for failure.
1050 _base_config_dma_addressing(struct MPT2SAS_ADAPTER
*ioc
, struct pci_dev
*pdev
)
1055 if (sizeof(dma_addr_t
) > 4) {
1056 const uint64_t required_mask
=
1057 dma_get_required_mask(&pdev
->dev
);
1058 if ((required_mask
> DMA_BIT_MASK(32)) && !pci_set_dma_mask(pdev
,
1059 DMA_BIT_MASK(64)) && !pci_set_consistent_dma_mask(pdev
,
1060 DMA_BIT_MASK(64))) {
1061 ioc
->base_add_sg_single
= &_base_add_sg_single_64
;
1062 ioc
->sge_size
= sizeof(Mpi2SGESimple64_t
);
1068 if (!pci_set_dma_mask(pdev
, DMA_BIT_MASK(32))
1069 && !pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32))) {
1070 ioc
->base_add_sg_single
= &_base_add_sg_single_32
;
1071 ioc
->sge_size
= sizeof(Mpi2SGESimple32_t
);
1078 printk(MPT2SAS_INFO_FMT
"%s BIT PCI BUS DMA ADDRESSING SUPPORTED, "
1079 "total mem (%ld kB)\n", ioc
->name
, desc
, convert_to_kb(s
.totalram
));
1085 * _base_save_msix_table - backup msix vector table
1086 * @ioc: per adapter object
1088 * This address an errata where diag reset clears out the table
1091 _base_save_msix_table(struct MPT2SAS_ADAPTER
*ioc
)
1095 if (!ioc
->msix_enable
|| ioc
->msix_table_backup
== NULL
)
1098 for (i
= 0; i
< ioc
->msix_vector_count
; i
++)
1099 ioc
->msix_table_backup
[i
] = ioc
->msix_table
[i
];
1103 * _base_restore_msix_table - this restores the msix vector table
1104 * @ioc: per adapter object
1108 _base_restore_msix_table(struct MPT2SAS_ADAPTER
*ioc
)
1112 if (!ioc
->msix_enable
|| ioc
->msix_table_backup
== NULL
)
1115 for (i
= 0; i
< ioc
->msix_vector_count
; i
++)
1116 ioc
->msix_table
[i
] = ioc
->msix_table_backup
[i
];
1120 * _base_check_enable_msix - checks MSIX capabable.
1121 * @ioc: per adapter object
1123 * Check to see if card is capable of MSIX, and set number
1124 * of available msix vectors
1127 _base_check_enable_msix(struct MPT2SAS_ADAPTER
*ioc
)
1130 u16 message_control
;
1131 u32 msix_table_offset
;
1133 base
= pci_find_capability(ioc
->pdev
, PCI_CAP_ID_MSIX
);
1135 dfailprintk(ioc
, printk(MPT2SAS_INFO_FMT
"msix not "
1136 "supported\n", ioc
->name
));
1140 /* get msix vector count */
1141 pci_read_config_word(ioc
->pdev
, base
+ 2, &message_control
);
1142 ioc
->msix_vector_count
= (message_control
& 0x3FF) + 1;
1144 /* get msix table */
1145 pci_read_config_dword(ioc
->pdev
, base
+ 4, &msix_table_offset
);
1146 msix_table_offset
&= 0xFFFFFFF8;
1147 ioc
->msix_table
= (u32
*)((void *)ioc
->chip
+ msix_table_offset
);
1149 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"msix is supported, "
1150 "vector_count(%d), table_offset(0x%08x), table(%p)\n", ioc
->name
,
1151 ioc
->msix_vector_count
, msix_table_offset
, ioc
->msix_table
));
1156 * _base_disable_msix - disables msix
1157 * @ioc: per adapter object
1161 _base_disable_msix(struct MPT2SAS_ADAPTER
*ioc
)
1163 if (ioc
->msix_enable
) {
1164 pci_disable_msix(ioc
->pdev
);
1165 kfree(ioc
->msix_table_backup
);
1166 ioc
->msix_table_backup
= NULL
;
1167 ioc
->msix_enable
= 0;
1172 * _base_enable_msix - enables msix, failback to io_apic
1173 * @ioc: per adapter object
1177 _base_enable_msix(struct MPT2SAS_ADAPTER
*ioc
)
1179 struct msix_entry entries
;
1183 if (msix_disable
== -1 || msix_disable
== 0)
1189 if (_base_check_enable_msix(ioc
) != 0)
1192 ioc
->msix_table_backup
= kcalloc(ioc
->msix_vector_count
,
1193 sizeof(u32
), GFP_KERNEL
);
1194 if (!ioc
->msix_table_backup
) {
1195 dfailprintk(ioc
, printk(MPT2SAS_INFO_FMT
"allocation for "
1196 "msix_table_backup failed!!!\n", ioc
->name
));
1200 memset(&entries
, 0, sizeof(struct msix_entry
));
1201 r
= pci_enable_msix(ioc
->pdev
, &entries
, 1);
1203 dfailprintk(ioc
, printk(MPT2SAS_INFO_FMT
"pci_enable_msix "
1204 "failed (r=%d) !!!\n", ioc
->name
, r
));
1208 r
= request_irq(entries
.vector
, _base_interrupt
, IRQF_SHARED
,
1211 dfailprintk(ioc
, printk(MPT2SAS_INFO_FMT
"unable to allocate "
1212 "interrupt %d !!!\n", ioc
->name
, entries
.vector
));
1213 pci_disable_msix(ioc
->pdev
);
1217 ioc
->pci_irq
= entries
.vector
;
1218 ioc
->msix_enable
= 1;
1221 /* failback to io_apic interrupt routing */
1224 r
= request_irq(ioc
->pdev
->irq
, _base_interrupt
, IRQF_SHARED
,
1227 printk(MPT2SAS_ERR_FMT
"unable to allocate interrupt %d!\n",
1228 ioc
->name
, ioc
->pdev
->irq
);
1233 ioc
->pci_irq
= ioc
->pdev
->irq
;
1241 * mpt2sas_base_map_resources - map in controller resources (io/irq/memap)
1242 * @ioc: per adapter object
1244 * Returns 0 for success, non-zero for failure.
1247 mpt2sas_base_map_resources(struct MPT2SAS_ADAPTER
*ioc
)
1249 struct pci_dev
*pdev
= ioc
->pdev
;
1256 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n",
1257 ioc
->name
, __func__
));
1259 ioc
->bars
= pci_select_bars(pdev
, IORESOURCE_MEM
);
1260 if (pci_enable_device_mem(pdev
)) {
1261 printk(MPT2SAS_WARN_FMT
"pci_enable_device_mem: "
1262 "failed\n", ioc
->name
);
1267 if (pci_request_selected_regions(pdev
, ioc
->bars
,
1268 MPT2SAS_DRIVER_NAME
)) {
1269 printk(MPT2SAS_WARN_FMT
"pci_request_selected_regions: "
1270 "failed\n", ioc
->name
);
1275 /* AER (Advanced Error Reporting) hooks */
1276 pci_enable_pcie_error_reporting(pdev
);
1278 pci_set_master(pdev
);
1280 if (_base_config_dma_addressing(ioc
, pdev
) != 0) {
1281 printk(MPT2SAS_WARN_FMT
"no suitable DMA mask for %s\n",
1282 ioc
->name
, pci_name(pdev
));
1287 for (i
= 0, memap_sz
= 0, pio_sz
= 0 ; i
< DEVICE_COUNT_RESOURCE
; i
++) {
1288 if (pci_resource_flags(pdev
, i
) & IORESOURCE_IO
) {
1291 pio_chip
= (u64
)pci_resource_start(pdev
, i
);
1292 pio_sz
= pci_resource_len(pdev
, i
);
1296 /* verify memory resource is valid before using */
1297 if (pci_resource_flags(pdev
, i
) & IORESOURCE_MEM
) {
1298 ioc
->chip_phys
= pci_resource_start(pdev
, i
);
1299 chip_phys
= (u64
)ioc
->chip_phys
;
1300 memap_sz
= pci_resource_len(pdev
, i
);
1301 ioc
->chip
= ioremap(ioc
->chip_phys
, memap_sz
);
1302 if (ioc
->chip
== NULL
) {
1303 printk(MPT2SAS_ERR_FMT
"unable to map "
1304 "adapter memory!\n", ioc
->name
);
1312 _base_mask_interrupts(ioc
);
1313 r
= _base_enable_msix(ioc
);
1317 printk(MPT2SAS_INFO_FMT
"%s: IRQ %d\n",
1318 ioc
->name
, ((ioc
->msix_enable
) ? "PCI-MSI-X enabled" :
1319 "IO-APIC enabled"), ioc
->pci_irq
);
1320 printk(MPT2SAS_INFO_FMT
"iomem(0x%016llx), mapped(0x%p), size(%d)\n",
1321 ioc
->name
, (unsigned long long)chip_phys
, ioc
->chip
, memap_sz
);
1322 printk(MPT2SAS_INFO_FMT
"ioport(0x%016llx), size(%d)\n",
1323 ioc
->name
, (unsigned long long)pio_chip
, pio_sz
);
1325 /* Save PCI configuration state for recovery from PCI AER/EEH errors */
1326 pci_save_state(pdev
);
1335 pci_release_selected_regions(ioc
->pdev
, ioc
->bars
);
1336 pci_disable_pcie_error_reporting(pdev
);
1337 pci_disable_device(pdev
);
1342 * mpt2sas_base_get_msg_frame - obtain request mf pointer
1343 * @ioc: per adapter object
1344 * @smid: system request message index(smid zero is invalid)
1346 * Returns virt pointer to message frame.
1349 mpt2sas_base_get_msg_frame(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
1351 return (void *)(ioc
->request
+ (smid
* ioc
->request_sz
));
1355 * mpt2sas_base_get_sense_buffer - obtain a sense buffer assigned to a mf request
1356 * @ioc: per adapter object
1357 * @smid: system request message index
1359 * Returns virt pointer to sense buffer.
1362 mpt2sas_base_get_sense_buffer(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
1364 return (void *)(ioc
->sense
+ ((smid
- 1) * SCSI_SENSE_BUFFERSIZE
));
1368 * mpt2sas_base_get_sense_buffer_dma - obtain a sense buffer assigned to a mf request
1369 * @ioc: per adapter object
1370 * @smid: system request message index
1372 * Returns phys pointer to the low 32bit address of the sense buffer.
1375 mpt2sas_base_get_sense_buffer_dma(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
1377 return cpu_to_le32(ioc
->sense_dma
+
1378 ((smid
- 1) * SCSI_SENSE_BUFFERSIZE
));
1382 * mpt2sas_base_get_reply_virt_addr - obtain reply frames virt address
1383 * @ioc: per adapter object
1384 * @phys_addr: lower 32 physical addr of the reply
1386 * Converts 32bit lower physical addr into a virt address.
1389 mpt2sas_base_get_reply_virt_addr(struct MPT2SAS_ADAPTER
*ioc
, u32 phys_addr
)
1393 return ioc
->reply
+ (phys_addr
- (u32
)ioc
->reply_dma
);
1397 * mpt2sas_base_get_smid - obtain a free smid from internal queue
1398 * @ioc: per adapter object
1399 * @cb_idx: callback index
1401 * Returns smid (zero is invalid)
1404 mpt2sas_base_get_smid(struct MPT2SAS_ADAPTER
*ioc
, u8 cb_idx
)
1406 unsigned long flags
;
1407 struct request_tracker
*request
;
1410 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
1411 if (list_empty(&ioc
->internal_free_list
)) {
1412 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1413 printk(MPT2SAS_ERR_FMT
"%s: smid not available\n",
1414 ioc
->name
, __func__
);
1418 request
= list_entry(ioc
->internal_free_list
.next
,
1419 struct request_tracker
, tracker_list
);
1420 request
->cb_idx
= cb_idx
;
1421 smid
= request
->smid
;
1422 list_del(&request
->tracker_list
);
1423 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1428 * mpt2sas_base_get_smid_scsiio - obtain a free smid from scsiio queue
1429 * @ioc: per adapter object
1430 * @cb_idx: callback index
1431 * @scmd: pointer to scsi command object
1433 * Returns smid (zero is invalid)
1436 mpt2sas_base_get_smid_scsiio(struct MPT2SAS_ADAPTER
*ioc
, u8 cb_idx
,
1437 struct scsi_cmnd
*scmd
)
1439 unsigned long flags
;
1440 struct scsiio_tracker
*request
;
1443 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
1444 if (list_empty(&ioc
->free_list
)) {
1445 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1446 printk(MPT2SAS_ERR_FMT
"%s: smid not available\n",
1447 ioc
->name
, __func__
);
1451 request
= list_entry(ioc
->free_list
.next
,
1452 struct scsiio_tracker
, tracker_list
);
1453 request
->scmd
= scmd
;
1454 request
->cb_idx
= cb_idx
;
1455 smid
= request
->smid
;
1456 list_del(&request
->tracker_list
);
1457 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1462 * mpt2sas_base_get_smid_hpr - obtain a free smid from hi-priority queue
1463 * @ioc: per adapter object
1464 * @cb_idx: callback index
1466 * Returns smid (zero is invalid)
1469 mpt2sas_base_get_smid_hpr(struct MPT2SAS_ADAPTER
*ioc
, u8 cb_idx
)
1471 unsigned long flags
;
1472 struct request_tracker
*request
;
1475 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
1476 if (list_empty(&ioc
->hpr_free_list
)) {
1477 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1481 request
= list_entry(ioc
->hpr_free_list
.next
,
1482 struct request_tracker
, tracker_list
);
1483 request
->cb_idx
= cb_idx
;
1484 smid
= request
->smid
;
1485 list_del(&request
->tracker_list
);
1486 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1492 * mpt2sas_base_free_smid - put smid back on free_list
1493 * @ioc: per adapter object
1494 * @smid: system request message index
1499 mpt2sas_base_free_smid(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
1501 unsigned long flags
;
1503 struct chain_tracker
*chain_req
, *next
;
1505 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
1506 if (smid
< ioc
->hi_priority_smid
) {
1509 if (!list_empty(&ioc
->scsi_lookup
[i
].chain_list
)) {
1510 list_for_each_entry_safe(chain_req
, next
,
1511 &ioc
->scsi_lookup
[i
].chain_list
, tracker_list
) {
1512 list_del_init(&chain_req
->tracker_list
);
1513 list_add_tail(&chain_req
->tracker_list
,
1514 &ioc
->free_chain_list
);
1517 ioc
->scsi_lookup
[i
].cb_idx
= 0xFF;
1518 ioc
->scsi_lookup
[i
].scmd
= NULL
;
1519 ioc
->scsi_lookup
[i
].direct_io
= 0;
1520 list_add_tail(&ioc
->scsi_lookup
[i
].tracker_list
,
1522 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1525 * See _wait_for_commands_to_complete() call with regards
1528 if (ioc
->shost_recovery
&& ioc
->pending_io_count
) {
1529 if (ioc
->pending_io_count
== 1)
1530 wake_up(&ioc
->reset_wq
);
1531 ioc
->pending_io_count
--;
1534 } else if (smid
< ioc
->internal_smid
) {
1536 i
= smid
- ioc
->hi_priority_smid
;
1537 ioc
->hpr_lookup
[i
].cb_idx
= 0xFF;
1538 list_add_tail(&ioc
->hpr_lookup
[i
].tracker_list
,
1539 &ioc
->hpr_free_list
);
1540 } else if (smid
<= ioc
->hba_queue_depth
) {
1541 /* internal queue */
1542 i
= smid
- ioc
->internal_smid
;
1543 ioc
->internal_lookup
[i
].cb_idx
= 0xFF;
1544 list_add_tail(&ioc
->internal_lookup
[i
].tracker_list
,
1545 &ioc
->internal_free_list
);
1547 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
1551 * _base_writeq - 64 bit write to MMIO
1552 * @ioc: per adapter object
1554 * @addr: address in MMIO space
1555 * @writeq_lock: spin lock
1557 * Glue for handling an atomic 64 bit word to MMIO. This special handling takes
1558 * care of 32 bit environment where its not quarenteed to send the entire word
1562 static inline void _base_writeq(__u64 b
, volatile void __iomem
*addr
,
1563 spinlock_t
*writeq_lock
)
1565 unsigned long flags
;
1566 __u64 data_out
= cpu_to_le64(b
);
1568 spin_lock_irqsave(writeq_lock
, flags
);
1569 writel((u32
)(data_out
), addr
);
1570 writel((u32
)(data_out
>> 32), (addr
+ 4));
1571 spin_unlock_irqrestore(writeq_lock
, flags
);
1574 static inline void _base_writeq(__u64 b
, volatile void __iomem
*addr
,
1575 spinlock_t
*writeq_lock
)
1577 writeq(cpu_to_le64(b
), addr
);
1582 * mpt2sas_base_put_smid_scsi_io - send SCSI_IO request to firmware
1583 * @ioc: per adapter object
1584 * @smid: system request message index
1585 * @handle: device handle
1590 mpt2sas_base_put_smid_scsi_io(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
, u16 handle
)
1592 Mpi2RequestDescriptorUnion_t descriptor
;
1593 u64
*request
= (u64
*)&descriptor
;
1596 descriptor
.SCSIIO
.RequestFlags
= MPI2_REQ_DESCRIPT_FLAGS_SCSI_IO
;
1597 descriptor
.SCSIIO
.MSIxIndex
= 0; /* TODO */
1598 descriptor
.SCSIIO
.SMID
= cpu_to_le16(smid
);
1599 descriptor
.SCSIIO
.DevHandle
= cpu_to_le16(handle
);
1600 descriptor
.SCSIIO
.LMID
= 0;
1601 _base_writeq(*request
, &ioc
->chip
->RequestDescriptorPostLow
,
1602 &ioc
->scsi_lookup_lock
);
1607 * mpt2sas_base_put_smid_hi_priority - send Task Management request to firmware
1608 * @ioc: per adapter object
1609 * @smid: system request message index
1614 mpt2sas_base_put_smid_hi_priority(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
1616 Mpi2RequestDescriptorUnion_t descriptor
;
1617 u64
*request
= (u64
*)&descriptor
;
1619 descriptor
.HighPriority
.RequestFlags
=
1620 MPI2_REQ_DESCRIPT_FLAGS_HIGH_PRIORITY
;
1621 descriptor
.HighPriority
.MSIxIndex
= 0; /* TODO */
1622 descriptor
.HighPriority
.SMID
= cpu_to_le16(smid
);
1623 descriptor
.HighPriority
.LMID
= 0;
1624 descriptor
.HighPriority
.Reserved1
= 0;
1625 _base_writeq(*request
, &ioc
->chip
->RequestDescriptorPostLow
,
1626 &ioc
->scsi_lookup_lock
);
1630 * mpt2sas_base_put_smid_default - Default, primarily used for config pages
1631 * @ioc: per adapter object
1632 * @smid: system request message index
1637 mpt2sas_base_put_smid_default(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
)
1639 Mpi2RequestDescriptorUnion_t descriptor
;
1640 u64
*request
= (u64
*)&descriptor
;
1642 descriptor
.Default
.RequestFlags
= MPI2_REQ_DESCRIPT_FLAGS_DEFAULT_TYPE
;
1643 descriptor
.Default
.MSIxIndex
= 0; /* TODO */
1644 descriptor
.Default
.SMID
= cpu_to_le16(smid
);
1645 descriptor
.Default
.LMID
= 0;
1646 descriptor
.Default
.DescriptorTypeDependent
= 0;
1647 _base_writeq(*request
, &ioc
->chip
->RequestDescriptorPostLow
,
1648 &ioc
->scsi_lookup_lock
);
1652 * mpt2sas_base_put_smid_target_assist - send Target Assist/Status to firmware
1653 * @ioc: per adapter object
1654 * @smid: system request message index
1655 * @io_index: value used to track the IO
1660 mpt2sas_base_put_smid_target_assist(struct MPT2SAS_ADAPTER
*ioc
, u16 smid
,
1663 Mpi2RequestDescriptorUnion_t descriptor
;
1664 u64
*request
= (u64
*)&descriptor
;
1666 descriptor
.SCSITarget
.RequestFlags
=
1667 MPI2_REQ_DESCRIPT_FLAGS_SCSI_TARGET
;
1668 descriptor
.SCSITarget
.MSIxIndex
= 0; /* TODO */
1669 descriptor
.SCSITarget
.SMID
= cpu_to_le16(smid
);
1670 descriptor
.SCSITarget
.LMID
= 0;
1671 descriptor
.SCSITarget
.IoIndex
= cpu_to_le16(io_index
);
1672 _base_writeq(*request
, &ioc
->chip
->RequestDescriptorPostLow
,
1673 &ioc
->scsi_lookup_lock
);
1677 * _base_display_dell_branding - Disply branding string
1678 * @ioc: per adapter object
1683 _base_display_dell_branding(struct MPT2SAS_ADAPTER
*ioc
)
1685 char dell_branding
[MPT2SAS_DELL_BRANDING_SIZE
];
1687 if (ioc
->pdev
->subsystem_vendor
!= PCI_VENDOR_ID_DELL
)
1690 memset(dell_branding
, 0, MPT2SAS_DELL_BRANDING_SIZE
);
1691 switch (ioc
->pdev
->subsystem_device
) {
1692 case MPT2SAS_DELL_6GBPS_SAS_HBA_SSDID
:
1693 strncpy(dell_branding
, MPT2SAS_DELL_6GBPS_SAS_HBA_BRANDING
,
1694 MPT2SAS_DELL_BRANDING_SIZE
- 1);
1696 case MPT2SAS_DELL_PERC_H200_ADAPTER_SSDID
:
1697 strncpy(dell_branding
, MPT2SAS_DELL_PERC_H200_ADAPTER_BRANDING
,
1698 MPT2SAS_DELL_BRANDING_SIZE
- 1);
1700 case MPT2SAS_DELL_PERC_H200_INTEGRATED_SSDID
:
1701 strncpy(dell_branding
,
1702 MPT2SAS_DELL_PERC_H200_INTEGRATED_BRANDING
,
1703 MPT2SAS_DELL_BRANDING_SIZE
- 1);
1705 case MPT2SAS_DELL_PERC_H200_MODULAR_SSDID
:
1706 strncpy(dell_branding
,
1707 MPT2SAS_DELL_PERC_H200_MODULAR_BRANDING
,
1708 MPT2SAS_DELL_BRANDING_SIZE
- 1);
1710 case MPT2SAS_DELL_PERC_H200_EMBEDDED_SSDID
:
1711 strncpy(dell_branding
,
1712 MPT2SAS_DELL_PERC_H200_EMBEDDED_BRANDING
,
1713 MPT2SAS_DELL_BRANDING_SIZE
- 1);
1715 case MPT2SAS_DELL_PERC_H200_SSDID
:
1716 strncpy(dell_branding
, MPT2SAS_DELL_PERC_H200_BRANDING
,
1717 MPT2SAS_DELL_BRANDING_SIZE
- 1);
1719 case MPT2SAS_DELL_6GBPS_SAS_SSDID
:
1720 strncpy(dell_branding
, MPT2SAS_DELL_6GBPS_SAS_BRANDING
,
1721 MPT2SAS_DELL_BRANDING_SIZE
- 1);
1724 sprintf(dell_branding
, "0x%4X", ioc
->pdev
->subsystem_device
);
1728 printk(MPT2SAS_INFO_FMT
"%s: Vendor(0x%04X), Device(0x%04X),"
1729 " SSVID(0x%04X), SSDID(0x%04X)\n", ioc
->name
, dell_branding
,
1730 ioc
->pdev
->vendor
, ioc
->pdev
->device
, ioc
->pdev
->subsystem_vendor
,
1731 ioc
->pdev
->subsystem_device
);
1735 * _base_display_intel_branding - Display branding string
1736 * @ioc: per adapter object
1741 _base_display_intel_branding(struct MPT2SAS_ADAPTER
*ioc
)
1743 if (ioc
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_INTEL
&&
1744 ioc
->pdev
->device
== MPI2_MFGPAGE_DEVID_SAS2008
) {
1746 switch (ioc
->pdev
->subsystem_device
) {
1747 case MPT2SAS_INTEL_RMS2LL080_SSDID
:
1748 printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
1749 MPT2SAS_INTEL_RMS2LL080_BRANDING
);
1751 case MPT2SAS_INTEL_RMS2LL040_SSDID
:
1752 printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
1753 MPT2SAS_INTEL_RMS2LL040_BRANDING
);
1760 * _base_display_hp_branding - Display branding string
1761 * @ioc: per adapter object
1766 _base_display_hp_branding(struct MPT2SAS_ADAPTER
*ioc
)
1768 if (ioc
->pdev
->subsystem_vendor
!= MPT2SAS_HP_3PAR_SSVID
)
1771 switch (ioc
->pdev
->device
) {
1772 case MPI2_MFGPAGE_DEVID_SAS2004
:
1773 switch (ioc
->pdev
->subsystem_device
) {
1774 case MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_SSDID
:
1775 printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
1776 MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_BRANDING
);
1781 case MPI2_MFGPAGE_DEVID_SAS2308_2
:
1782 switch (ioc
->pdev
->subsystem_device
) {
1783 case MPT2SAS_HP_2_4_INTERNAL_SSDID
:
1784 printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
1785 MPT2SAS_HP_2_4_INTERNAL_BRANDING
);
1787 case MPT2SAS_HP_2_4_EXTERNAL_SSDID
:
1788 printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
1789 MPT2SAS_HP_2_4_EXTERNAL_BRANDING
);
1791 case MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_SSDID
:
1792 printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
1793 MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_BRANDING
);
1795 case MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_SSDID
:
1796 printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
1797 MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_BRANDING
);
1808 * _base_display_ioc_capabilities - Disply IOC's capabilities.
1809 * @ioc: per adapter object
1814 _base_display_ioc_capabilities(struct MPT2SAS_ADAPTER
*ioc
)
1819 u32 iounit_pg1_flags
;
1821 pci_read_config_byte(ioc
->pdev
, PCI_CLASS_REVISION
, &revision
);
1822 strncpy(desc
, ioc
->manu_pg0
.ChipName
, 16);
1823 printk(MPT2SAS_INFO_FMT
"%s: FWVersion(%02d.%02d.%02d.%02d), "
1824 "ChipRevision(0x%02x), BiosVersion(%02d.%02d.%02d.%02d)\n",
1826 (ioc
->facts
.FWVersion
.Word
& 0xFF000000) >> 24,
1827 (ioc
->facts
.FWVersion
.Word
& 0x00FF0000) >> 16,
1828 (ioc
->facts
.FWVersion
.Word
& 0x0000FF00) >> 8,
1829 ioc
->facts
.FWVersion
.Word
& 0x000000FF,
1831 (ioc
->bios_pg3
.BiosVersion
& 0xFF000000) >> 24,
1832 (ioc
->bios_pg3
.BiosVersion
& 0x00FF0000) >> 16,
1833 (ioc
->bios_pg3
.BiosVersion
& 0x0000FF00) >> 8,
1834 ioc
->bios_pg3
.BiosVersion
& 0x000000FF);
1836 _base_display_dell_branding(ioc
);
1837 _base_display_intel_branding(ioc
);
1838 _base_display_hp_branding(ioc
);
1840 printk(MPT2SAS_INFO_FMT
"Protocol=(", ioc
->name
);
1842 if (ioc
->facts
.ProtocolFlags
& MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR
) {
1843 printk("Initiator");
1847 if (ioc
->facts
.ProtocolFlags
& MPI2_IOCFACTS_PROTOCOL_SCSI_TARGET
) {
1848 printk("%sTarget", i
? "," : "");
1854 printk("Capabilities=(");
1856 if (!ioc
->hide_ir_msg
) {
1857 if (ioc
->facts
.IOCCapabilities
&
1858 MPI2_IOCFACTS_CAPABILITY_INTEGRATED_RAID
) {
1864 if (ioc
->facts
.IOCCapabilities
& MPI2_IOCFACTS_CAPABILITY_TLR
) {
1865 printk("%sTLR", i
? "," : "");
1869 if (ioc
->facts
.IOCCapabilities
& MPI2_IOCFACTS_CAPABILITY_MULTICAST
) {
1870 printk("%sMulticast", i
? "," : "");
1874 if (ioc
->facts
.IOCCapabilities
&
1875 MPI2_IOCFACTS_CAPABILITY_BIDIRECTIONAL_TARGET
) {
1876 printk("%sBIDI Target", i
? "," : "");
1880 if (ioc
->facts
.IOCCapabilities
& MPI2_IOCFACTS_CAPABILITY_EEDP
) {
1881 printk("%sEEDP", i
? "," : "");
1885 if (ioc
->facts
.IOCCapabilities
&
1886 MPI2_IOCFACTS_CAPABILITY_SNAPSHOT_BUFFER
) {
1887 printk("%sSnapshot Buffer", i
? "," : "");
1891 if (ioc
->facts
.IOCCapabilities
&
1892 MPI2_IOCFACTS_CAPABILITY_DIAG_TRACE_BUFFER
) {
1893 printk("%sDiag Trace Buffer", i
? "," : "");
1897 if (ioc
->facts
.IOCCapabilities
&
1898 MPI2_IOCFACTS_CAPABILITY_EXTENDED_BUFFER
) {
1899 printk(KERN_INFO
"%sDiag Extended Buffer", i
? "," : "");
1903 if (ioc
->facts
.IOCCapabilities
&
1904 MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING
) {
1905 printk("%sTask Set Full", i
? "," : "");
1909 iounit_pg1_flags
= le32_to_cpu(ioc
->iounit_pg1
.Flags
);
1910 if (!(iounit_pg1_flags
& MPI2_IOUNITPAGE1_NATIVE_COMMAND_Q_DISABLE
)) {
1911 printk("%sNCQ", i
? "," : "");
1919 * _base_update_missing_delay - change the missing delay timers
1920 * @ioc: per adapter object
1921 * @device_missing_delay: amount of time till device is reported missing
1922 * @io_missing_delay: interval IO is returned when there is a missing device
1926 * Passed on the command line, this function will modify the device missing
1927 * delay, as well as the io missing delay. This should be called at driver
1931 _base_update_missing_delay(struct MPT2SAS_ADAPTER
*ioc
,
1932 u16 device_missing_delay
, u8 io_missing_delay
)
1934 u16 dmd
, dmd_new
, dmd_orignal
;
1935 u8 io_missing_delay_original
;
1937 Mpi2SasIOUnitPage1_t
*sas_iounit_pg1
= NULL
;
1938 Mpi2ConfigReply_t mpi_reply
;
1942 mpt2sas_config_get_number_hba_phys(ioc
, &num_phys
);
1946 sz
= offsetof(Mpi2SasIOUnitPage1_t
, PhyData
) + (num_phys
*
1947 sizeof(Mpi2SasIOUnit1PhyData_t
));
1948 sas_iounit_pg1
= kzalloc(sz
, GFP_KERNEL
);
1949 if (!sas_iounit_pg1
) {
1950 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
1951 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1954 if ((mpt2sas_config_get_sas_iounit_pg1(ioc
, &mpi_reply
,
1955 sas_iounit_pg1
, sz
))) {
1956 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
1957 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1960 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) &
1961 MPI2_IOCSTATUS_MASK
;
1962 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
) {
1963 printk(MPT2SAS_ERR_FMT
"failure at %s:%d/%s()!\n",
1964 ioc
->name
, __FILE__
, __LINE__
, __func__
);
1968 /* device missing delay */
1969 dmd
= sas_iounit_pg1
->ReportDeviceMissingDelay
;
1970 if (dmd
& MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16
)
1971 dmd
= (dmd
& MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
) * 16;
1973 dmd
= dmd
& MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
;
1975 if (device_missing_delay
> 0x7F) {
1976 dmd
= (device_missing_delay
> 0x7F0) ? 0x7F0 :
1977 device_missing_delay
;
1979 dmd
|= MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16
;
1981 dmd
= device_missing_delay
;
1982 sas_iounit_pg1
->ReportDeviceMissingDelay
= dmd
;
1984 /* io missing delay */
1985 io_missing_delay_original
= sas_iounit_pg1
->IODeviceMissingDelay
;
1986 sas_iounit_pg1
->IODeviceMissingDelay
= io_missing_delay
;
1988 if (!mpt2sas_config_set_sas_iounit_pg1(ioc
, &mpi_reply
, sas_iounit_pg1
,
1990 if (dmd
& MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16
)
1992 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
) * 16;
1995 dmd
& MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK
;
1996 printk(MPT2SAS_INFO_FMT
"device_missing_delay: old(%d), "
1997 "new(%d)\n", ioc
->name
, dmd_orignal
, dmd_new
);
1998 printk(MPT2SAS_INFO_FMT
"ioc_missing_delay: old(%d), "
1999 "new(%d)\n", ioc
->name
, io_missing_delay_original
,
2001 ioc
->device_missing_delay
= dmd_new
;
2002 ioc
->io_missing_delay
= io_missing_delay
;
2006 kfree(sas_iounit_pg1
);
2010 * _base_static_config_pages - static start of day config pages
2011 * @ioc: per adapter object
2016 _base_static_config_pages(struct MPT2SAS_ADAPTER
*ioc
)
2018 Mpi2ConfigReply_t mpi_reply
;
2019 u32 iounit_pg1_flags
;
2021 mpt2sas_config_get_manufacturing_pg0(ioc
, &mpi_reply
, &ioc
->manu_pg0
);
2022 if (ioc
->ir_firmware
)
2023 mpt2sas_config_get_manufacturing_pg10(ioc
, &mpi_reply
,
2025 mpt2sas_config_get_bios_pg2(ioc
, &mpi_reply
, &ioc
->bios_pg2
);
2026 mpt2sas_config_get_bios_pg3(ioc
, &mpi_reply
, &ioc
->bios_pg3
);
2027 mpt2sas_config_get_ioc_pg8(ioc
, &mpi_reply
, &ioc
->ioc_pg8
);
2028 mpt2sas_config_get_iounit_pg0(ioc
, &mpi_reply
, &ioc
->iounit_pg0
);
2029 mpt2sas_config_get_iounit_pg1(ioc
, &mpi_reply
, &ioc
->iounit_pg1
);
2030 _base_display_ioc_capabilities(ioc
);
2033 * Enable task_set_full handling in iounit_pg1 when the
2034 * facts capabilities indicate that its supported.
2036 iounit_pg1_flags
= le32_to_cpu(ioc
->iounit_pg1
.Flags
);
2037 if ((ioc
->facts
.IOCCapabilities
&
2038 MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING
))
2040 ~MPI2_IOUNITPAGE1_DISABLE_TASK_SET_FULL_HANDLING
;
2043 MPI2_IOUNITPAGE1_DISABLE_TASK_SET_FULL_HANDLING
;
2044 ioc
->iounit_pg1
.Flags
= cpu_to_le32(iounit_pg1_flags
);
2045 mpt2sas_config_set_iounit_pg1(ioc
, &mpi_reply
, &ioc
->iounit_pg1
);
2050 * _base_release_memory_pools - release memory
2051 * @ioc: per adapter object
2053 * Free memory allocated from _base_allocate_memory_pools.
2058 _base_release_memory_pools(struct MPT2SAS_ADAPTER
*ioc
)
2062 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
2066 pci_free_consistent(ioc
->pdev
, ioc
->request_dma_sz
,
2067 ioc
->request
, ioc
->request_dma
);
2068 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"request_pool(0x%p)"
2069 ": free\n", ioc
->name
, ioc
->request
));
2070 ioc
->request
= NULL
;
2074 pci_pool_free(ioc
->sense_dma_pool
, ioc
->sense
, ioc
->sense_dma
);
2075 if (ioc
->sense_dma_pool
)
2076 pci_pool_destroy(ioc
->sense_dma_pool
);
2077 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"sense_pool(0x%p)"
2078 ": free\n", ioc
->name
, ioc
->sense
));
2083 pci_pool_free(ioc
->reply_dma_pool
, ioc
->reply
, ioc
->reply_dma
);
2084 if (ioc
->reply_dma_pool
)
2085 pci_pool_destroy(ioc
->reply_dma_pool
);
2086 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"reply_pool(0x%p)"
2087 ": free\n", ioc
->name
, ioc
->reply
));
2091 if (ioc
->reply_free
) {
2092 pci_pool_free(ioc
->reply_free_dma_pool
, ioc
->reply_free
,
2093 ioc
->reply_free_dma
);
2094 if (ioc
->reply_free_dma_pool
)
2095 pci_pool_destroy(ioc
->reply_free_dma_pool
);
2096 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"reply_free_pool"
2097 "(0x%p): free\n", ioc
->name
, ioc
->reply_free
));
2098 ioc
->reply_free
= NULL
;
2101 if (ioc
->reply_post_free
) {
2102 pci_pool_free(ioc
->reply_post_free_dma_pool
,
2103 ioc
->reply_post_free
, ioc
->reply_post_free_dma
);
2104 if (ioc
->reply_post_free_dma_pool
)
2105 pci_pool_destroy(ioc
->reply_post_free_dma_pool
);
2106 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
2107 "reply_post_free_pool(0x%p): free\n", ioc
->name
,
2108 ioc
->reply_post_free
));
2109 ioc
->reply_post_free
= NULL
;
2112 if (ioc
->config_page
) {
2113 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
2114 "config_page(0x%p): free\n", ioc
->name
,
2116 pci_free_consistent(ioc
->pdev
, ioc
->config_page_sz
,
2117 ioc
->config_page
, ioc
->config_page_dma
);
2120 if (ioc
->scsi_lookup
) {
2121 free_pages((ulong
)ioc
->scsi_lookup
, ioc
->scsi_lookup_pages
);
2122 ioc
->scsi_lookup
= NULL
;
2124 kfree(ioc
->hpr_lookup
);
2125 kfree(ioc
->internal_lookup
);
2126 if (ioc
->chain_lookup
) {
2127 for (i
= 0; i
< ioc
->chain_depth
; i
++) {
2128 if (ioc
->chain_lookup
[i
].chain_buffer
)
2129 pci_pool_free(ioc
->chain_dma_pool
,
2130 ioc
->chain_lookup
[i
].chain_buffer
,
2131 ioc
->chain_lookup
[i
].chain_buffer_dma
);
2133 if (ioc
->chain_dma_pool
)
2134 pci_pool_destroy(ioc
->chain_dma_pool
);
2136 if (ioc
->chain_lookup
) {
2137 free_pages((ulong
)ioc
->chain_lookup
, ioc
->chain_pages
);
2138 ioc
->chain_lookup
= NULL
;
2144 * _base_allocate_memory_pools - allocate start of day memory pools
2145 * @ioc: per adapter object
2146 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2148 * Returns 0 success, anything else error
2151 _base_allocate_memory_pools(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
)
2153 Mpi2IOCFactsReply_t
*facts
;
2154 u32 queue_size
, queue_diff
;
2155 u16 max_sge_elements
;
2156 u16 num_of_reply_frames
;
2157 u16 chains_needed_per_io
;
2160 u16 max_request_credit
;
2163 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
2167 facts
= &ioc
->facts
;
2169 /* command line tunables for max sgl entries */
2170 if (max_sgl_entries
!= -1) {
2171 ioc
->shost
->sg_tablesize
= (max_sgl_entries
<
2172 MPT2SAS_SG_DEPTH
) ? max_sgl_entries
:
2175 ioc
->shost
->sg_tablesize
= MPT2SAS_SG_DEPTH
;
2178 /* command line tunables for max controller queue depth */
2179 if (max_queue_depth
!= -1)
2180 max_request_credit
= (max_queue_depth
< facts
->RequestCredit
)
2181 ? max_queue_depth
: facts
->RequestCredit
;
2183 max_request_credit
= facts
->RequestCredit
;
2185 ioc
->hba_queue_depth
= max_request_credit
;
2186 ioc
->hi_priority_depth
= facts
->HighPriorityCredit
;
2187 ioc
->internal_depth
= ioc
->hi_priority_depth
+ 5;
2189 /* request frame size */
2190 ioc
->request_sz
= facts
->IOCRequestFrameSize
* 4;
2192 /* reply frame size */
2193 ioc
->reply_sz
= facts
->ReplyFrameSize
* 4;
2197 /* calculate number of sg elements left over in the 1st frame */
2198 max_sge_elements
= ioc
->request_sz
- ((sizeof(Mpi2SCSIIORequest_t
) -
2199 sizeof(Mpi2SGEIOUnion_t
)) + ioc
->sge_size
);
2200 ioc
->max_sges_in_main_message
= max_sge_elements
/ioc
->sge_size
;
2202 /* now do the same for a chain buffer */
2203 max_sge_elements
= ioc
->request_sz
- ioc
->sge_size
;
2204 ioc
->max_sges_in_chain_message
= max_sge_elements
/ioc
->sge_size
;
2206 ioc
->chain_offset_value_for_main_message
=
2207 ((sizeof(Mpi2SCSIIORequest_t
) - sizeof(Mpi2SGEIOUnion_t
)) +
2208 (ioc
->max_sges_in_chain_message
* ioc
->sge_size
)) / 4;
2211 * MPT2SAS_SG_DEPTH = CONFIG_FUSION_MAX_SGE
2213 chains_needed_per_io
= ((ioc
->shost
->sg_tablesize
-
2214 ioc
->max_sges_in_main_message
)/ioc
->max_sges_in_chain_message
)
2216 if (chains_needed_per_io
> facts
->MaxChainDepth
) {
2217 chains_needed_per_io
= facts
->MaxChainDepth
;
2218 ioc
->shost
->sg_tablesize
= min_t(u16
,
2219 ioc
->max_sges_in_main_message
+ (ioc
->max_sges_in_chain_message
2220 * chains_needed_per_io
), ioc
->shost
->sg_tablesize
);
2222 ioc
->chains_needed_per_io
= chains_needed_per_io
;
2224 /* reply free queue sizing - taking into account for events */
2225 num_of_reply_frames
= ioc
->hba_queue_depth
+ 32;
2227 /* number of replies frames can't be a multiple of 16 */
2228 /* decrease number of reply frames by 1 */
2229 if (!(num_of_reply_frames
% 16))
2230 num_of_reply_frames
--;
2232 /* calculate number of reply free queue entries
2233 * (must be multiple of 16)
2236 /* (we know reply_free_queue_depth is not a multiple of 16) */
2237 queue_size
= num_of_reply_frames
;
2238 queue_size
+= 16 - (queue_size
% 16);
2239 ioc
->reply_free_queue_depth
= queue_size
;
2241 /* reply descriptor post queue sizing */
2242 /* this size should be the number of request frames + number of reply
2246 queue_size
= ioc
->hba_queue_depth
+ num_of_reply_frames
+ 1;
2247 /* round up to 16 byte boundary */
2248 if (queue_size
% 16)
2249 queue_size
+= 16 - (queue_size
% 16);
2251 /* check against IOC maximum reply post queue depth */
2252 if (queue_size
> facts
->MaxReplyDescriptorPostQueueDepth
) {
2253 queue_diff
= queue_size
-
2254 facts
->MaxReplyDescriptorPostQueueDepth
;
2256 /* round queue_diff up to multiple of 16 */
2257 if (queue_diff
% 16)
2258 queue_diff
+= 16 - (queue_diff
% 16);
2260 /* adjust hba_queue_depth, reply_free_queue_depth,
2263 ioc
->hba_queue_depth
-= (queue_diff
/ 2);
2264 ioc
->reply_free_queue_depth
-= (queue_diff
/ 2);
2265 queue_size
= facts
->MaxReplyDescriptorPostQueueDepth
;
2267 ioc
->reply_post_queue_depth
= queue_size
;
2269 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"scatter gather: "
2270 "sge_in_main_msg(%d), sge_per_chain(%d), sge_per_io(%d), "
2271 "chains_per_io(%d)\n", ioc
->name
, ioc
->max_sges_in_main_message
,
2272 ioc
->max_sges_in_chain_message
, ioc
->shost
->sg_tablesize
,
2273 ioc
->chains_needed_per_io
));
2275 ioc
->scsiio_depth
= ioc
->hba_queue_depth
-
2276 ioc
->hi_priority_depth
- ioc
->internal_depth
;
2278 /* set the scsi host can_queue depth
2279 * with some internal commands that could be outstanding
2281 ioc
->shost
->can_queue
= ioc
->scsiio_depth
- (2);
2282 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"scsi host: "
2283 "can_queue depth (%d)\n", ioc
->name
, ioc
->shost
->can_queue
));
2285 /* contiguous pool for request and chains, 16 byte align, one extra "
2288 ioc
->chain_depth
= ioc
->chains_needed_per_io
* ioc
->scsiio_depth
;
2289 sz
= ((ioc
->scsiio_depth
+ 1) * ioc
->request_sz
);
2291 /* hi-priority queue */
2292 sz
+= (ioc
->hi_priority_depth
* ioc
->request_sz
);
2294 /* internal queue */
2295 sz
+= (ioc
->internal_depth
* ioc
->request_sz
);
2297 ioc
->request_dma_sz
= sz
;
2298 ioc
->request
= pci_alloc_consistent(ioc
->pdev
, sz
, &ioc
->request_dma
);
2299 if (!ioc
->request
) {
2300 printk(MPT2SAS_ERR_FMT
"request pool: pci_alloc_consistent "
2301 "failed: hba_depth(%d), chains_per_io(%d), frame_sz(%d), "
2302 "total(%d kB)\n", ioc
->name
, ioc
->hba_queue_depth
,
2303 ioc
->chains_needed_per_io
, ioc
->request_sz
, sz
/1024);
2304 if (ioc
->scsiio_depth
< MPT2SAS_SAS_QUEUE_DEPTH
)
2307 ioc
->hba_queue_depth
= max_request_credit
- retry_sz
;
2308 goto retry_allocation
;
2312 printk(MPT2SAS_ERR_FMT
"request pool: pci_alloc_consistent "
2313 "succeed: hba_depth(%d), chains_per_io(%d), frame_sz(%d), "
2314 "total(%d kb)\n", ioc
->name
, ioc
->hba_queue_depth
,
2315 ioc
->chains_needed_per_io
, ioc
->request_sz
, sz
/1024);
2318 /* hi-priority queue */
2319 ioc
->hi_priority
= ioc
->request
+ ((ioc
->scsiio_depth
+ 1) *
2321 ioc
->hi_priority_dma
= ioc
->request_dma
+ ((ioc
->scsiio_depth
+ 1) *
2324 /* internal queue */
2325 ioc
->internal
= ioc
->hi_priority
+ (ioc
->hi_priority_depth
*
2327 ioc
->internal_dma
= ioc
->hi_priority_dma
+ (ioc
->hi_priority_depth
*
2331 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"request pool(0x%p): "
2332 "depth(%d), frame_size(%d), pool_size(%d kB)\n", ioc
->name
,
2333 ioc
->request
, ioc
->hba_queue_depth
, ioc
->request_sz
,
2334 (ioc
->hba_queue_depth
* ioc
->request_sz
)/1024));
2335 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"request pool: dma(0x%llx)\n",
2336 ioc
->name
, (unsigned long long) ioc
->request_dma
));
2339 sz
= ioc
->scsiio_depth
* sizeof(struct scsiio_tracker
);
2340 ioc
->scsi_lookup_pages
= get_order(sz
);
2341 ioc
->scsi_lookup
= (struct scsiio_tracker
*)__get_free_pages(
2342 GFP_KERNEL
, ioc
->scsi_lookup_pages
);
2343 if (!ioc
->scsi_lookup
) {
2344 printk(MPT2SAS_ERR_FMT
"scsi_lookup: get_free_pages failed, "
2345 "sz(%d)\n", ioc
->name
, (int)sz
);
2349 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"scsiio(0x%p): "
2350 "depth(%d)\n", ioc
->name
, ioc
->request
,
2351 ioc
->scsiio_depth
));
2353 /* loop till the allocation succeeds */
2355 sz
= ioc
->chain_depth
* sizeof(struct chain_tracker
);
2356 ioc
->chain_pages
= get_order(sz
);
2357 ioc
->chain_lookup
= (struct chain_tracker
*)__get_free_pages(
2358 GFP_KERNEL
, ioc
->chain_pages
);
2359 if (ioc
->chain_lookup
== NULL
)
2360 ioc
->chain_depth
-= 100;
2361 } while (ioc
->chain_lookup
== NULL
);
2362 ioc
->chain_dma_pool
= pci_pool_create("chain pool", ioc
->pdev
,
2363 ioc
->request_sz
, 16, 0);
2364 if (!ioc
->chain_dma_pool
) {
2365 printk(MPT2SAS_ERR_FMT
"chain_dma_pool: pci_pool_create "
2366 "failed\n", ioc
->name
);
2369 for (i
= 0; i
< ioc
->chain_depth
; i
++) {
2370 ioc
->chain_lookup
[i
].chain_buffer
= pci_pool_alloc(
2371 ioc
->chain_dma_pool
, GFP_KERNEL
,
2372 &ioc
->chain_lookup
[i
].chain_buffer_dma
);
2373 if (!ioc
->chain_lookup
[i
].chain_buffer
) {
2374 ioc
->chain_depth
= i
;
2377 total_sz
+= ioc
->request_sz
;
2380 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"chain pool depth"
2381 "(%d), frame_size(%d), pool_size(%d kB)\n", ioc
->name
,
2382 ioc
->chain_depth
, ioc
->request_sz
, ((ioc
->chain_depth
*
2383 ioc
->request_sz
))/1024));
2385 /* initialize hi-priority queue smid's */
2386 ioc
->hpr_lookup
= kcalloc(ioc
->hi_priority_depth
,
2387 sizeof(struct request_tracker
), GFP_KERNEL
);
2388 if (!ioc
->hpr_lookup
) {
2389 printk(MPT2SAS_ERR_FMT
"hpr_lookup: kcalloc failed\n",
2393 ioc
->hi_priority_smid
= ioc
->scsiio_depth
+ 1;
2394 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"hi_priority(0x%p): "
2395 "depth(%d), start smid(%d)\n", ioc
->name
, ioc
->hi_priority
,
2396 ioc
->hi_priority_depth
, ioc
->hi_priority_smid
));
2398 /* initialize internal queue smid's */
2399 ioc
->internal_lookup
= kcalloc(ioc
->internal_depth
,
2400 sizeof(struct request_tracker
), GFP_KERNEL
);
2401 if (!ioc
->internal_lookup
) {
2402 printk(MPT2SAS_ERR_FMT
"internal_lookup: kcalloc failed\n",
2406 ioc
->internal_smid
= ioc
->hi_priority_smid
+ ioc
->hi_priority_depth
;
2407 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"internal(0x%p): "
2408 "depth(%d), start smid(%d)\n", ioc
->name
, ioc
->internal
,
2409 ioc
->internal_depth
, ioc
->internal_smid
));
2411 /* sense buffers, 4 byte align */
2412 sz
= ioc
->scsiio_depth
* SCSI_SENSE_BUFFERSIZE
;
2413 ioc
->sense_dma_pool
= pci_pool_create("sense pool", ioc
->pdev
, sz
, 4,
2415 if (!ioc
->sense_dma_pool
) {
2416 printk(MPT2SAS_ERR_FMT
"sense pool: pci_pool_create failed\n",
2420 ioc
->sense
= pci_pool_alloc(ioc
->sense_dma_pool
, GFP_KERNEL
,
2423 printk(MPT2SAS_ERR_FMT
"sense pool: pci_pool_alloc failed\n",
2427 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
2428 "sense pool(0x%p): depth(%d), element_size(%d), pool_size"
2429 "(%d kB)\n", ioc
->name
, ioc
->sense
, ioc
->scsiio_depth
,
2430 SCSI_SENSE_BUFFERSIZE
, sz
/1024));
2431 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"sense_dma(0x%llx)\n",
2432 ioc
->name
, (unsigned long long)ioc
->sense_dma
));
2435 /* reply pool, 4 byte align */
2436 sz
= ioc
->reply_free_queue_depth
* ioc
->reply_sz
;
2437 ioc
->reply_dma_pool
= pci_pool_create("reply pool", ioc
->pdev
, sz
, 4,
2439 if (!ioc
->reply_dma_pool
) {
2440 printk(MPT2SAS_ERR_FMT
"reply pool: pci_pool_create failed\n",
2444 ioc
->reply
= pci_pool_alloc(ioc
->reply_dma_pool
, GFP_KERNEL
,
2447 printk(MPT2SAS_ERR_FMT
"reply pool: pci_pool_alloc failed\n",
2451 ioc
->reply_dma_min_address
= (u32
)(ioc
->reply_dma
);
2452 ioc
->reply_dma_max_address
= (u32
)(ioc
->reply_dma
) + sz
;
2453 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"reply pool(0x%p): depth"
2454 "(%d), frame_size(%d), pool_size(%d kB)\n", ioc
->name
, ioc
->reply
,
2455 ioc
->reply_free_queue_depth
, ioc
->reply_sz
, sz
/1024));
2456 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"reply_dma(0x%llx)\n",
2457 ioc
->name
, (unsigned long long)ioc
->reply_dma
));
2460 /* reply free queue, 16 byte align */
2461 sz
= ioc
->reply_free_queue_depth
* 4;
2462 ioc
->reply_free_dma_pool
= pci_pool_create("reply_free pool",
2463 ioc
->pdev
, sz
, 16, 0);
2464 if (!ioc
->reply_free_dma_pool
) {
2465 printk(MPT2SAS_ERR_FMT
"reply_free pool: pci_pool_create "
2466 "failed\n", ioc
->name
);
2469 ioc
->reply_free
= pci_pool_alloc(ioc
->reply_free_dma_pool
, GFP_KERNEL
,
2470 &ioc
->reply_free_dma
);
2471 if (!ioc
->reply_free
) {
2472 printk(MPT2SAS_ERR_FMT
"reply_free pool: pci_pool_alloc "
2473 "failed\n", ioc
->name
);
2476 memset(ioc
->reply_free
, 0, sz
);
2477 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"reply_free pool(0x%p): "
2478 "depth(%d), element_size(%d), pool_size(%d kB)\n", ioc
->name
,
2479 ioc
->reply_free
, ioc
->reply_free_queue_depth
, 4, sz
/1024));
2480 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"reply_free_dma"
2481 "(0x%llx)\n", ioc
->name
, (unsigned long long)ioc
->reply_free_dma
));
2484 /* reply post queue, 16 byte align */
2485 sz
= ioc
->reply_post_queue_depth
* sizeof(Mpi2DefaultReplyDescriptor_t
);
2486 ioc
->reply_post_free_dma_pool
= pci_pool_create("reply_post_free pool",
2487 ioc
->pdev
, sz
, 16, 0);
2488 if (!ioc
->reply_post_free_dma_pool
) {
2489 printk(MPT2SAS_ERR_FMT
"reply_post_free pool: pci_pool_create "
2490 "failed\n", ioc
->name
);
2493 ioc
->reply_post_free
= pci_pool_alloc(ioc
->reply_post_free_dma_pool
,
2494 GFP_KERNEL
, &ioc
->reply_post_free_dma
);
2495 if (!ioc
->reply_post_free
) {
2496 printk(MPT2SAS_ERR_FMT
"reply_post_free pool: pci_pool_alloc "
2497 "failed\n", ioc
->name
);
2500 memset(ioc
->reply_post_free
, 0, sz
);
2501 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"reply post free pool"
2502 "(0x%p): depth(%d), element_size(%d), pool_size(%d kB)\n",
2503 ioc
->name
, ioc
->reply_post_free
, ioc
->reply_post_queue_depth
, 8,
2505 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"reply_post_free_dma = "
2506 "(0x%llx)\n", ioc
->name
, (unsigned long long)
2507 ioc
->reply_post_free_dma
));
2510 ioc
->config_page_sz
= 512;
2511 ioc
->config_page
= pci_alloc_consistent(ioc
->pdev
,
2512 ioc
->config_page_sz
, &ioc
->config_page_dma
);
2513 if (!ioc
->config_page
) {
2514 printk(MPT2SAS_ERR_FMT
"config page: pci_pool_alloc "
2515 "failed\n", ioc
->name
);
2518 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"config page(0x%p): size"
2519 "(%d)\n", ioc
->name
, ioc
->config_page
, ioc
->config_page_sz
));
2520 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"config_page_dma"
2521 "(0x%llx)\n", ioc
->name
, (unsigned long long)ioc
->config_page_dma
));
2522 total_sz
+= ioc
->config_page_sz
;
2524 printk(MPT2SAS_INFO_FMT
"Allocated physical memory: size(%d kB)\n",
2525 ioc
->name
, total_sz
/1024);
2526 printk(MPT2SAS_INFO_FMT
"Current Controller Queue Depth(%d), "
2527 "Max Controller Queue Depth(%d)\n",
2528 ioc
->name
, ioc
->shost
->can_queue
, facts
->RequestCredit
);
2529 printk(MPT2SAS_INFO_FMT
"Scatter Gather Elements per IO(%d)\n",
2530 ioc
->name
, ioc
->shost
->sg_tablesize
);
2539 * mpt2sas_base_get_iocstate - Get the current state of a MPT adapter.
2540 * @ioc: Pointer to MPT_ADAPTER structure
2541 * @cooked: Request raw or cooked IOC state
2543 * Returns all IOC Doorbell register bits if cooked==0, else just the
2544 * Doorbell bits in MPI_IOC_STATE_MASK.
2547 mpt2sas_base_get_iocstate(struct MPT2SAS_ADAPTER
*ioc
, int cooked
)
2551 s
= readl(&ioc
->chip
->Doorbell
);
2552 sc
= s
& MPI2_IOC_STATE_MASK
;
2553 return cooked
? sc
: s
;
2557 * _base_wait_on_iocstate - waiting on a particular ioc state
2558 * @ioc_state: controller state { READY, OPERATIONAL, or RESET }
2559 * @timeout: timeout in second
2560 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2562 * Returns 0 for success, non-zero for failure.
2565 _base_wait_on_iocstate(struct MPT2SAS_ADAPTER
*ioc
, u32 ioc_state
, int timeout
,
2572 cntdn
= (sleep_flag
== CAN_SLEEP
) ? 1000*timeout
: 2000*timeout
;
2574 current_state
= mpt2sas_base_get_iocstate(ioc
, 1);
2575 if (current_state
== ioc_state
)
2577 if (count
&& current_state
== MPI2_IOC_STATE_FAULT
)
2579 if (sleep_flag
== CAN_SLEEP
)
2586 return current_state
;
2590 * _base_wait_for_doorbell_int - waiting for controller interrupt(generated by
2591 * a write to the doorbell)
2592 * @ioc: per adapter object
2593 * @timeout: timeout in second
2594 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2596 * Returns 0 for success, non-zero for failure.
2598 * Notes: MPI2_HIS_IOC2SYS_DB_STATUS - set to one when IOC writes to doorbell.
2601 _base_wait_for_doorbell_int(struct MPT2SAS_ADAPTER
*ioc
, int timeout
,
2608 cntdn
= (sleep_flag
== CAN_SLEEP
) ? 1000*timeout
: 2000*timeout
;
2610 int_status
= readl(&ioc
->chip
->HostInterruptStatus
);
2611 if (int_status
& MPI2_HIS_IOC2SYS_DB_STATUS
) {
2612 dhsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
2613 "successful count(%d), timeout(%d)\n", ioc
->name
,
2614 __func__
, count
, timeout
));
2617 if (sleep_flag
== CAN_SLEEP
)
2624 printk(MPT2SAS_ERR_FMT
"%s: failed due to timeout count(%d), "
2625 "int_status(%x)!\n", ioc
->name
, __func__
, count
, int_status
);
2630 * _base_wait_for_doorbell_ack - waiting for controller to read the doorbell.
2631 * @ioc: per adapter object
2632 * @timeout: timeout in second
2633 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2635 * Returns 0 for success, non-zero for failure.
2637 * Notes: MPI2_HIS_SYS2IOC_DB_STATUS - set to one when host writes to
2641 _base_wait_for_doorbell_ack(struct MPT2SAS_ADAPTER
*ioc
, int timeout
,
2649 cntdn
= (sleep_flag
== CAN_SLEEP
) ? 1000*timeout
: 2000*timeout
;
2651 int_status
= readl(&ioc
->chip
->HostInterruptStatus
);
2652 if (!(int_status
& MPI2_HIS_SYS2IOC_DB_STATUS
)) {
2653 dhsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
2654 "successful count(%d), timeout(%d)\n", ioc
->name
,
2655 __func__
, count
, timeout
));
2657 } else if (int_status
& MPI2_HIS_IOC2SYS_DB_STATUS
) {
2658 doorbell
= readl(&ioc
->chip
->Doorbell
);
2659 if ((doorbell
& MPI2_IOC_STATE_MASK
) ==
2660 MPI2_IOC_STATE_FAULT
) {
2661 mpt2sas_base_fault_info(ioc
, doorbell
);
2664 } else if (int_status
== 0xFFFFFFFF)
2667 if (sleep_flag
== CAN_SLEEP
)
2675 printk(MPT2SAS_ERR_FMT
"%s: failed due to timeout count(%d), "
2676 "int_status(%x)!\n", ioc
->name
, __func__
, count
, int_status
);
2681 * _base_wait_for_doorbell_not_used - waiting for doorbell to not be in use
2682 * @ioc: per adapter object
2683 * @timeout: timeout in second
2684 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2686 * Returns 0 for success, non-zero for failure.
2690 _base_wait_for_doorbell_not_used(struct MPT2SAS_ADAPTER
*ioc
, int timeout
,
2697 cntdn
= (sleep_flag
== CAN_SLEEP
) ? 1000*timeout
: 2000*timeout
;
2699 doorbell_reg
= readl(&ioc
->chip
->Doorbell
);
2700 if (!(doorbell_reg
& MPI2_DOORBELL_USED
)) {
2701 dhsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
2702 "successful count(%d), timeout(%d)\n", ioc
->name
,
2703 __func__
, count
, timeout
));
2706 if (sleep_flag
== CAN_SLEEP
)
2713 printk(MPT2SAS_ERR_FMT
"%s: failed due to timeout count(%d), "
2714 "doorbell_reg(%x)!\n", ioc
->name
, __func__
, count
, doorbell_reg
);
2719 * _base_send_ioc_reset - send doorbell reset
2720 * @ioc: per adapter object
2721 * @reset_type: currently only supports: MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET
2722 * @timeout: timeout in second
2723 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2725 * Returns 0 for success, non-zero for failure.
2728 _base_send_ioc_reset(struct MPT2SAS_ADAPTER
*ioc
, u8 reset_type
, int timeout
,
2734 if (reset_type
!= MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET
) {
2735 printk(MPT2SAS_ERR_FMT
"%s: unknown reset_type\n",
2736 ioc
->name
, __func__
);
2740 if (!(ioc
->facts
.IOCCapabilities
&
2741 MPI2_IOCFACTS_CAPABILITY_EVENT_REPLAY
))
2744 printk(MPT2SAS_INFO_FMT
"sending message unit reset !!\n", ioc
->name
);
2746 writel(reset_type
<< MPI2_DOORBELL_FUNCTION_SHIFT
,
2747 &ioc
->chip
->Doorbell
);
2748 if ((_base_wait_for_doorbell_ack(ioc
, 15, sleep_flag
))) {
2752 ioc_state
= _base_wait_on_iocstate(ioc
, MPI2_IOC_STATE_READY
,
2753 timeout
, sleep_flag
);
2755 printk(MPT2SAS_ERR_FMT
"%s: failed going to ready state "
2756 " (ioc_state=0x%x)\n", ioc
->name
, __func__
, ioc_state
);
2761 printk(MPT2SAS_INFO_FMT
"message unit reset: %s\n",
2762 ioc
->name
, ((r
== 0) ? "SUCCESS" : "FAILED"));
2767 * _base_handshake_req_reply_wait - send request thru doorbell interface
2768 * @ioc: per adapter object
2769 * @request_bytes: request length
2770 * @request: pointer having request payload
2771 * @reply_bytes: reply length
2772 * @reply: pointer to reply payload
2773 * @timeout: timeout in second
2774 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2776 * Returns 0 for success, non-zero for failure.
2779 _base_handshake_req_reply_wait(struct MPT2SAS_ADAPTER
*ioc
, int request_bytes
,
2780 u32
*request
, int reply_bytes
, u16
*reply
, int timeout
, int sleep_flag
)
2782 MPI2DefaultReply_t
*default_reply
= (MPI2DefaultReply_t
*)reply
;
2788 /* make sure doorbell is not in use */
2789 if ((readl(&ioc
->chip
->Doorbell
) & MPI2_DOORBELL_USED
)) {
2790 printk(MPT2SAS_ERR_FMT
"doorbell is in use "
2791 " (line=%d)\n", ioc
->name
, __LINE__
);
2795 /* clear pending doorbell interrupts from previous state changes */
2796 if (readl(&ioc
->chip
->HostInterruptStatus
) &
2797 MPI2_HIS_IOC2SYS_DB_STATUS
)
2798 writel(0, &ioc
->chip
->HostInterruptStatus
);
2800 /* send message to ioc */
2801 writel(((MPI2_FUNCTION_HANDSHAKE
<<MPI2_DOORBELL_FUNCTION_SHIFT
) |
2802 ((request_bytes
/4)<<MPI2_DOORBELL_ADD_DWORDS_SHIFT
)),
2803 &ioc
->chip
->Doorbell
);
2805 if ((_base_wait_for_doorbell_int(ioc
, 5, NO_SLEEP
))) {
2806 printk(MPT2SAS_ERR_FMT
"doorbell handshake "
2807 "int failed (line=%d)\n", ioc
->name
, __LINE__
);
2810 writel(0, &ioc
->chip
->HostInterruptStatus
);
2812 if ((_base_wait_for_doorbell_ack(ioc
, 5, sleep_flag
))) {
2813 printk(MPT2SAS_ERR_FMT
"doorbell handshake "
2814 "ack failed (line=%d)\n", ioc
->name
, __LINE__
);
2818 /* send message 32-bits at a time */
2819 for (i
= 0, failed
= 0; i
< request_bytes
/4 && !failed
; i
++) {
2820 writel(cpu_to_le32(request
[i
]), &ioc
->chip
->Doorbell
);
2821 if ((_base_wait_for_doorbell_ack(ioc
, 5, sleep_flag
)))
2826 printk(MPT2SAS_ERR_FMT
"doorbell handshake "
2827 "sending request failed (line=%d)\n", ioc
->name
, __LINE__
);
2831 /* now wait for the reply */
2832 if ((_base_wait_for_doorbell_int(ioc
, timeout
, sleep_flag
))) {
2833 printk(MPT2SAS_ERR_FMT
"doorbell handshake "
2834 "int failed (line=%d)\n", ioc
->name
, __LINE__
);
2838 /* read the first two 16-bits, it gives the total length of the reply */
2839 reply
[0] = le16_to_cpu(readl(&ioc
->chip
->Doorbell
)
2840 & MPI2_DOORBELL_DATA_MASK
);
2841 writel(0, &ioc
->chip
->HostInterruptStatus
);
2842 if ((_base_wait_for_doorbell_int(ioc
, 5, sleep_flag
))) {
2843 printk(MPT2SAS_ERR_FMT
"doorbell handshake "
2844 "int failed (line=%d)\n", ioc
->name
, __LINE__
);
2847 reply
[1] = le16_to_cpu(readl(&ioc
->chip
->Doorbell
)
2848 & MPI2_DOORBELL_DATA_MASK
);
2849 writel(0, &ioc
->chip
->HostInterruptStatus
);
2851 for (i
= 2; i
< default_reply
->MsgLength
* 2; i
++) {
2852 if ((_base_wait_for_doorbell_int(ioc
, 5, sleep_flag
))) {
2853 printk(MPT2SAS_ERR_FMT
"doorbell "
2854 "handshake int failed (line=%d)\n", ioc
->name
,
2858 if (i
>= reply_bytes
/2) /* overflow case */
2859 dummy
= readl(&ioc
->chip
->Doorbell
);
2861 reply
[i
] = le16_to_cpu(readl(&ioc
->chip
->Doorbell
)
2862 & MPI2_DOORBELL_DATA_MASK
);
2863 writel(0, &ioc
->chip
->HostInterruptStatus
);
2866 _base_wait_for_doorbell_int(ioc
, 5, sleep_flag
);
2867 if (_base_wait_for_doorbell_not_used(ioc
, 5, sleep_flag
) != 0) {
2868 dhsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"doorbell is in use "
2869 " (line=%d)\n", ioc
->name
, __LINE__
));
2871 writel(0, &ioc
->chip
->HostInterruptStatus
);
2873 if (ioc
->logging_level
& MPT_DEBUG_INIT
) {
2875 printk(KERN_INFO
"\toffset:data\n");
2876 for (i
= 0; i
< reply_bytes
/4; i
++)
2877 printk(KERN_INFO
"\t[0x%02x]:%08x\n", i
*4,
2878 le32_to_cpu(mfp
[i
]));
2884 * mpt2sas_base_sas_iounit_control - send sas iounit control to FW
2885 * @ioc: per adapter object
2886 * @mpi_reply: the reply payload from FW
2887 * @mpi_request: the request payload sent to FW
2889 * The SAS IO Unit Control Request message allows the host to perform low-level
2890 * operations, such as resets on the PHYs of the IO Unit, also allows the host
2891 * to obtain the IOC assigned device handles for a device if it has other
2892 * identifying information about the device, in addition allows the host to
2893 * remove IOC resources associated with the device.
2895 * Returns 0 for success, non-zero for failure.
2898 mpt2sas_base_sas_iounit_control(struct MPT2SAS_ADAPTER
*ioc
,
2899 Mpi2SasIoUnitControlReply_t
*mpi_reply
,
2900 Mpi2SasIoUnitControlRequest_t
*mpi_request
)
2904 unsigned long timeleft
;
2908 u16 wait_state_count
;
2910 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
2913 mutex_lock(&ioc
->base_cmds
.mutex
);
2915 if (ioc
->base_cmds
.status
!= MPT2_CMD_NOT_USED
) {
2916 printk(MPT2SAS_ERR_FMT
"%s: base_cmd in use\n",
2917 ioc
->name
, __func__
);
2922 wait_state_count
= 0;
2923 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 1);
2924 while (ioc_state
!= MPI2_IOC_STATE_OPERATIONAL
) {
2925 if (wait_state_count
++ == 10) {
2926 printk(MPT2SAS_ERR_FMT
2927 "%s: failed due to ioc not operational\n",
2928 ioc
->name
, __func__
);
2933 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 1);
2934 printk(MPT2SAS_INFO_FMT
"%s: waiting for "
2935 "operational state(count=%d)\n", ioc
->name
,
2936 __func__
, wait_state_count
);
2939 smid
= mpt2sas_base_get_smid(ioc
, ioc
->base_cb_idx
);
2941 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
2942 ioc
->name
, __func__
);
2948 ioc
->base_cmds
.status
= MPT2_CMD_PENDING
;
2949 request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
2950 ioc
->base_cmds
.smid
= smid
;
2951 memcpy(request
, mpi_request
, sizeof(Mpi2SasIoUnitControlRequest_t
));
2952 if (mpi_request
->Operation
== MPI2_SAS_OP_PHY_HARD_RESET
||
2953 mpi_request
->Operation
== MPI2_SAS_OP_PHY_LINK_RESET
)
2954 ioc
->ioc_link_reset_in_progress
= 1;
2955 mpt2sas_base_put_smid_default(ioc
, smid
);
2956 init_completion(&ioc
->base_cmds
.done
);
2957 timeleft
= wait_for_completion_timeout(&ioc
->base_cmds
.done
,
2958 msecs_to_jiffies(10000));
2959 if ((mpi_request
->Operation
== MPI2_SAS_OP_PHY_HARD_RESET
||
2960 mpi_request
->Operation
== MPI2_SAS_OP_PHY_LINK_RESET
) &&
2961 ioc
->ioc_link_reset_in_progress
)
2962 ioc
->ioc_link_reset_in_progress
= 0;
2963 if (!(ioc
->base_cmds
.status
& MPT2_CMD_COMPLETE
)) {
2964 printk(MPT2SAS_ERR_FMT
"%s: timeout\n",
2965 ioc
->name
, __func__
);
2966 _debug_dump_mf(mpi_request
,
2967 sizeof(Mpi2SasIoUnitControlRequest_t
)/4);
2968 if (!(ioc
->base_cmds
.status
& MPT2_CMD_RESET
))
2970 goto issue_host_reset
;
2972 if (ioc
->base_cmds
.status
& MPT2_CMD_REPLY_VALID
)
2973 memcpy(mpi_reply
, ioc
->base_cmds
.reply
,
2974 sizeof(Mpi2SasIoUnitControlReply_t
));
2976 memset(mpi_reply
, 0, sizeof(Mpi2SasIoUnitControlReply_t
));
2977 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
2982 mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
2984 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
2987 mutex_unlock(&ioc
->base_cmds
.mutex
);
2993 * mpt2sas_base_scsi_enclosure_processor - sending request to sep device
2994 * @ioc: per adapter object
2995 * @mpi_reply: the reply payload from FW
2996 * @mpi_request: the request payload sent to FW
2998 * The SCSI Enclosure Processor request message causes the IOC to
2999 * communicate with SES devices to control LED status signals.
3001 * Returns 0 for success, non-zero for failure.
3004 mpt2sas_base_scsi_enclosure_processor(struct MPT2SAS_ADAPTER
*ioc
,
3005 Mpi2SepReply_t
*mpi_reply
, Mpi2SepRequest_t
*mpi_request
)
3009 unsigned long timeleft
;
3013 u16 wait_state_count
;
3015 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3018 mutex_lock(&ioc
->base_cmds
.mutex
);
3020 if (ioc
->base_cmds
.status
!= MPT2_CMD_NOT_USED
) {
3021 printk(MPT2SAS_ERR_FMT
"%s: base_cmd in use\n",
3022 ioc
->name
, __func__
);
3027 wait_state_count
= 0;
3028 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 1);
3029 while (ioc_state
!= MPI2_IOC_STATE_OPERATIONAL
) {
3030 if (wait_state_count
++ == 10) {
3031 printk(MPT2SAS_ERR_FMT
3032 "%s: failed due to ioc not operational\n",
3033 ioc
->name
, __func__
);
3038 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 1);
3039 printk(MPT2SAS_INFO_FMT
"%s: waiting for "
3040 "operational state(count=%d)\n", ioc
->name
,
3041 __func__
, wait_state_count
);
3044 smid
= mpt2sas_base_get_smid(ioc
, ioc
->base_cb_idx
);
3046 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
3047 ioc
->name
, __func__
);
3053 ioc
->base_cmds
.status
= MPT2_CMD_PENDING
;
3054 request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
3055 ioc
->base_cmds
.smid
= smid
;
3056 memcpy(request
, mpi_request
, sizeof(Mpi2SepReply_t
));
3057 mpt2sas_base_put_smid_default(ioc
, smid
);
3058 init_completion(&ioc
->base_cmds
.done
);
3059 timeleft
= wait_for_completion_timeout(&ioc
->base_cmds
.done
,
3060 msecs_to_jiffies(10000));
3061 if (!(ioc
->base_cmds
.status
& MPT2_CMD_COMPLETE
)) {
3062 printk(MPT2SAS_ERR_FMT
"%s: timeout\n",
3063 ioc
->name
, __func__
);
3064 _debug_dump_mf(mpi_request
,
3065 sizeof(Mpi2SepRequest_t
)/4);
3066 if (!(ioc
->base_cmds
.status
& MPT2_CMD_RESET
))
3068 goto issue_host_reset
;
3070 if (ioc
->base_cmds
.status
& MPT2_CMD_REPLY_VALID
)
3071 memcpy(mpi_reply
, ioc
->base_cmds
.reply
,
3072 sizeof(Mpi2SepReply_t
));
3074 memset(mpi_reply
, 0, sizeof(Mpi2SepReply_t
));
3075 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
3080 mpt2sas_base_hard_reset_handler(ioc
, CAN_SLEEP
,
3082 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
3085 mutex_unlock(&ioc
->base_cmds
.mutex
);
3090 * _base_get_port_facts - obtain port facts reply and save in ioc
3091 * @ioc: per adapter object
3092 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3094 * Returns 0 for success, non-zero for failure.
3097 _base_get_port_facts(struct MPT2SAS_ADAPTER
*ioc
, int port
, int sleep_flag
)
3099 Mpi2PortFactsRequest_t mpi_request
;
3100 Mpi2PortFactsReply_t mpi_reply
, *pfacts
;
3101 int mpi_reply_sz
, mpi_request_sz
, r
;
3103 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3106 mpi_reply_sz
= sizeof(Mpi2PortFactsReply_t
);
3107 mpi_request_sz
= sizeof(Mpi2PortFactsRequest_t
);
3108 memset(&mpi_request
, 0, mpi_request_sz
);
3109 mpi_request
.Function
= MPI2_FUNCTION_PORT_FACTS
;
3110 mpi_request
.PortNumber
= port
;
3111 r
= _base_handshake_req_reply_wait(ioc
, mpi_request_sz
,
3112 (u32
*)&mpi_request
, mpi_reply_sz
, (u16
*)&mpi_reply
, 5, CAN_SLEEP
);
3115 printk(MPT2SAS_ERR_FMT
"%s: handshake failed (r=%d)\n",
3116 ioc
->name
, __func__
, r
);
3120 pfacts
= &ioc
->pfacts
[port
];
3121 memset(pfacts
, 0, sizeof(Mpi2PortFactsReply_t
));
3122 pfacts
->PortNumber
= mpi_reply
.PortNumber
;
3123 pfacts
->VP_ID
= mpi_reply
.VP_ID
;
3124 pfacts
->VF_ID
= mpi_reply
.VF_ID
;
3125 pfacts
->MaxPostedCmdBuffers
=
3126 le16_to_cpu(mpi_reply
.MaxPostedCmdBuffers
);
3132 * _base_get_ioc_facts - obtain ioc facts reply and save in ioc
3133 * @ioc: per adapter object
3134 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3136 * Returns 0 for success, non-zero for failure.
3139 _base_get_ioc_facts(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
)
3141 Mpi2IOCFactsRequest_t mpi_request
;
3142 Mpi2IOCFactsReply_t mpi_reply
, *facts
;
3143 int mpi_reply_sz
, mpi_request_sz
, r
;
3145 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3148 mpi_reply_sz
= sizeof(Mpi2IOCFactsReply_t
);
3149 mpi_request_sz
= sizeof(Mpi2IOCFactsRequest_t
);
3150 memset(&mpi_request
, 0, mpi_request_sz
);
3151 mpi_request
.Function
= MPI2_FUNCTION_IOC_FACTS
;
3152 r
= _base_handshake_req_reply_wait(ioc
, mpi_request_sz
,
3153 (u32
*)&mpi_request
, mpi_reply_sz
, (u16
*)&mpi_reply
, 5, CAN_SLEEP
);
3156 printk(MPT2SAS_ERR_FMT
"%s: handshake failed (r=%d)\n",
3157 ioc
->name
, __func__
, r
);
3161 facts
= &ioc
->facts
;
3162 memset(facts
, 0, sizeof(Mpi2IOCFactsReply_t
));
3163 facts
->MsgVersion
= le16_to_cpu(mpi_reply
.MsgVersion
);
3164 facts
->HeaderVersion
= le16_to_cpu(mpi_reply
.HeaderVersion
);
3165 facts
->VP_ID
= mpi_reply
.VP_ID
;
3166 facts
->VF_ID
= mpi_reply
.VF_ID
;
3167 facts
->IOCExceptions
= le16_to_cpu(mpi_reply
.IOCExceptions
);
3168 facts
->MaxChainDepth
= mpi_reply
.MaxChainDepth
;
3169 facts
->WhoInit
= mpi_reply
.WhoInit
;
3170 facts
->NumberOfPorts
= mpi_reply
.NumberOfPorts
;
3171 facts
->RequestCredit
= le16_to_cpu(mpi_reply
.RequestCredit
);
3172 facts
->MaxReplyDescriptorPostQueueDepth
=
3173 le16_to_cpu(mpi_reply
.MaxReplyDescriptorPostQueueDepth
);
3174 facts
->ProductID
= le16_to_cpu(mpi_reply
.ProductID
);
3175 facts
->IOCCapabilities
= le32_to_cpu(mpi_reply
.IOCCapabilities
);
3176 if ((facts
->IOCCapabilities
& MPI2_IOCFACTS_CAPABILITY_INTEGRATED_RAID
))
3177 ioc
->ir_firmware
= 1;
3178 facts
->FWVersion
.Word
= le32_to_cpu(mpi_reply
.FWVersion
.Word
);
3179 facts
->IOCRequestFrameSize
=
3180 le16_to_cpu(mpi_reply
.IOCRequestFrameSize
);
3181 facts
->MaxInitiators
= le16_to_cpu(mpi_reply
.MaxInitiators
);
3182 facts
->MaxTargets
= le16_to_cpu(mpi_reply
.MaxTargets
);
3183 ioc
->shost
->max_id
= -1;
3184 facts
->MaxSasExpanders
= le16_to_cpu(mpi_reply
.MaxSasExpanders
);
3185 facts
->MaxEnclosures
= le16_to_cpu(mpi_reply
.MaxEnclosures
);
3186 facts
->ProtocolFlags
= le16_to_cpu(mpi_reply
.ProtocolFlags
);
3187 facts
->HighPriorityCredit
=
3188 le16_to_cpu(mpi_reply
.HighPriorityCredit
);
3189 facts
->ReplyFrameSize
= mpi_reply
.ReplyFrameSize
;
3190 facts
->MaxDevHandle
= le16_to_cpu(mpi_reply
.MaxDevHandle
);
3192 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"hba queue depth(%d), "
3193 "max chains per io(%d)\n", ioc
->name
, facts
->RequestCredit
,
3194 facts
->MaxChainDepth
));
3195 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"request frame size(%d), "
3196 "reply frame size(%d)\n", ioc
->name
,
3197 facts
->IOCRequestFrameSize
* 4, facts
->ReplyFrameSize
* 4));
3202 * _base_send_ioc_init - send ioc_init to firmware
3203 * @ioc: per adapter object
3204 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3206 * Returns 0 for success, non-zero for failure.
3209 _base_send_ioc_init(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
)
3211 Mpi2IOCInitRequest_t mpi_request
;
3212 Mpi2IOCInitReply_t mpi_reply
;
3214 struct timeval current_time
;
3217 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3220 memset(&mpi_request
, 0, sizeof(Mpi2IOCInitRequest_t
));
3221 mpi_request
.Function
= MPI2_FUNCTION_IOC_INIT
;
3222 mpi_request
.WhoInit
= MPI2_WHOINIT_HOST_DRIVER
;
3223 mpi_request
.VF_ID
= 0; /* TODO */
3224 mpi_request
.VP_ID
= 0;
3225 mpi_request
.MsgVersion
= cpu_to_le16(MPI2_VERSION
);
3226 mpi_request
.HeaderVersion
= cpu_to_le16(MPI2_HEADER_VERSION
);
3228 /* In MPI Revision I (0xA), the SystemReplyFrameSize(offset 0x18) was
3229 * removed and made reserved. For those with older firmware will need
3230 * this fix. It was decided that the Reply and Request frame sizes are
3233 if ((ioc
->facts
.HeaderVersion
>> 8) < 0xA) {
3234 mpi_request
.Reserved7
= cpu_to_le16(ioc
->reply_sz
);
3235 /* mpi_request.SystemReplyFrameSize =
3236 * cpu_to_le16(ioc->reply_sz);
3240 mpi_request
.SystemRequestFrameSize
= cpu_to_le16(ioc
->request_sz
/4);
3241 mpi_request
.ReplyDescriptorPostQueueDepth
=
3242 cpu_to_le16(ioc
->reply_post_queue_depth
);
3243 mpi_request
.ReplyFreeQueueDepth
=
3244 cpu_to_le16(ioc
->reply_free_queue_depth
);
3246 #if BITS_PER_LONG > 32
3247 mpi_request
.SenseBufferAddressHigh
=
3248 cpu_to_le32(ioc
->sense_dma
>> 32);
3249 mpi_request
.SystemReplyAddressHigh
=
3250 cpu_to_le32(ioc
->reply_dma
>> 32);
3251 mpi_request
.SystemRequestFrameBaseAddress
=
3252 cpu_to_le64(ioc
->request_dma
);
3253 mpi_request
.ReplyFreeQueueAddress
=
3254 cpu_to_le64(ioc
->reply_free_dma
);
3255 mpi_request
.ReplyDescriptorPostQueueAddress
=
3256 cpu_to_le64(ioc
->reply_post_free_dma
);
3258 mpi_request
.SystemRequestFrameBaseAddress
=
3259 cpu_to_le32(ioc
->request_dma
);
3260 mpi_request
.ReplyFreeQueueAddress
=
3261 cpu_to_le32(ioc
->reply_free_dma
);
3262 mpi_request
.ReplyDescriptorPostQueueAddress
=
3263 cpu_to_le32(ioc
->reply_post_free_dma
);
3266 /* This time stamp specifies number of milliseconds
3267 * since epoch ~ midnight January 1, 1970.
3269 do_gettimeofday(¤t_time
);
3270 mpi_request
.TimeStamp
= cpu_to_le64((u64
)current_time
.tv_sec
* 1000 +
3271 (current_time
.tv_usec
/ 1000));
3273 if (ioc
->logging_level
& MPT_DEBUG_INIT
) {
3277 mfp
= (u32
*)&mpi_request
;
3278 printk(KERN_INFO
"\toffset:data\n");
3279 for (i
= 0; i
< sizeof(Mpi2IOCInitRequest_t
)/4; i
++)
3280 printk(KERN_INFO
"\t[0x%02x]:%08x\n", i
*4,
3281 le32_to_cpu(mfp
[i
]));
3284 r
= _base_handshake_req_reply_wait(ioc
,
3285 sizeof(Mpi2IOCInitRequest_t
), (u32
*)&mpi_request
,
3286 sizeof(Mpi2IOCInitReply_t
), (u16
*)&mpi_reply
, 10,
3290 printk(MPT2SAS_ERR_FMT
"%s: handshake failed (r=%d)\n",
3291 ioc
->name
, __func__
, r
);
3295 ioc_status
= le16_to_cpu(mpi_reply
.IOCStatus
) & MPI2_IOCSTATUS_MASK
;
3296 if (ioc_status
!= MPI2_IOCSTATUS_SUCCESS
||
3297 mpi_reply
.IOCLogInfo
) {
3298 printk(MPT2SAS_ERR_FMT
"%s: failed\n", ioc
->name
, __func__
);
3306 * _base_send_port_enable - send port_enable(discovery stuff) to firmware
3307 * @ioc: per adapter object
3308 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3310 * Returns 0 for success, non-zero for failure.
3313 _base_send_port_enable(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
)
3315 Mpi2PortEnableRequest_t
*mpi_request
;
3317 unsigned long timeleft
;
3321 printk(MPT2SAS_INFO_FMT
"sending port enable !!\n", ioc
->name
);
3323 if (ioc
->base_cmds
.status
& MPT2_CMD_PENDING
) {
3324 printk(MPT2SAS_ERR_FMT
"%s: internal command already in use\n",
3325 ioc
->name
, __func__
);
3329 smid
= mpt2sas_base_get_smid(ioc
, ioc
->base_cb_idx
);
3331 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
3332 ioc
->name
, __func__
);
3336 ioc
->base_cmds
.status
= MPT2_CMD_PENDING
;
3337 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
3338 ioc
->base_cmds
.smid
= smid
;
3339 memset(mpi_request
, 0, sizeof(Mpi2PortEnableRequest_t
));
3340 mpi_request
->Function
= MPI2_FUNCTION_PORT_ENABLE
;
3341 mpi_request
->VF_ID
= 0; /* TODO */
3342 mpi_request
->VP_ID
= 0;
3344 mpt2sas_base_put_smid_default(ioc
, smid
);
3345 init_completion(&ioc
->base_cmds
.done
);
3346 timeleft
= wait_for_completion_timeout(&ioc
->base_cmds
.done
,
3348 if (!(ioc
->base_cmds
.status
& MPT2_CMD_COMPLETE
)) {
3349 printk(MPT2SAS_ERR_FMT
"%s: timeout\n",
3350 ioc
->name
, __func__
);
3351 _debug_dump_mf(mpi_request
,
3352 sizeof(Mpi2PortEnableRequest_t
)/4);
3353 if (ioc
->base_cmds
.status
& MPT2_CMD_RESET
)
3359 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: complete\n",
3360 ioc
->name
, __func__
));
3362 ioc_state
= _base_wait_on_iocstate(ioc
, MPI2_IOC_STATE_OPERATIONAL
,
3365 printk(MPT2SAS_ERR_FMT
"%s: failed going to operational state "
3366 " (ioc_state=0x%x)\n", ioc
->name
, __func__
, ioc_state
);
3370 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
3371 printk(MPT2SAS_INFO_FMT
"port enable: %s\n",
3372 ioc
->name
, ((r
== 0) ? "SUCCESS" : "FAILED"));
3377 * _base_unmask_events - turn on notification for this event
3378 * @ioc: per adapter object
3379 * @event: firmware event
3381 * The mask is stored in ioc->event_masks.
3384 _base_unmask_events(struct MPT2SAS_ADAPTER
*ioc
, u16 event
)
3391 desired_event
= (1 << (event
% 32));
3394 ioc
->event_masks
[0] &= ~desired_event
;
3395 else if (event
< 64)
3396 ioc
->event_masks
[1] &= ~desired_event
;
3397 else if (event
< 96)
3398 ioc
->event_masks
[2] &= ~desired_event
;
3399 else if (event
< 128)
3400 ioc
->event_masks
[3] &= ~desired_event
;
3404 * _base_event_notification - send event notification
3405 * @ioc: per adapter object
3406 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3408 * Returns 0 for success, non-zero for failure.
3411 _base_event_notification(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
)
3413 Mpi2EventNotificationRequest_t
*mpi_request
;
3414 unsigned long timeleft
;
3419 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3422 if (ioc
->base_cmds
.status
& MPT2_CMD_PENDING
) {
3423 printk(MPT2SAS_ERR_FMT
"%s: internal command already in use\n",
3424 ioc
->name
, __func__
);
3428 smid
= mpt2sas_base_get_smid(ioc
, ioc
->base_cb_idx
);
3430 printk(MPT2SAS_ERR_FMT
"%s: failed obtaining a smid\n",
3431 ioc
->name
, __func__
);
3434 ioc
->base_cmds
.status
= MPT2_CMD_PENDING
;
3435 mpi_request
= mpt2sas_base_get_msg_frame(ioc
, smid
);
3436 ioc
->base_cmds
.smid
= smid
;
3437 memset(mpi_request
, 0, sizeof(Mpi2EventNotificationRequest_t
));
3438 mpi_request
->Function
= MPI2_FUNCTION_EVENT_NOTIFICATION
;
3439 mpi_request
->VF_ID
= 0; /* TODO */
3440 mpi_request
->VP_ID
= 0;
3441 for (i
= 0; i
< MPI2_EVENT_NOTIFY_EVENTMASK_WORDS
; i
++)
3442 mpi_request
->EventMasks
[i
] =
3443 cpu_to_le32(ioc
->event_masks
[i
]);
3444 mpt2sas_base_put_smid_default(ioc
, smid
);
3445 init_completion(&ioc
->base_cmds
.done
);
3446 timeleft
= wait_for_completion_timeout(&ioc
->base_cmds
.done
, 30*HZ
);
3447 if (!(ioc
->base_cmds
.status
& MPT2_CMD_COMPLETE
)) {
3448 printk(MPT2SAS_ERR_FMT
"%s: timeout\n",
3449 ioc
->name
, __func__
);
3450 _debug_dump_mf(mpi_request
,
3451 sizeof(Mpi2EventNotificationRequest_t
)/4);
3452 if (ioc
->base_cmds
.status
& MPT2_CMD_RESET
)
3457 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: complete\n",
3458 ioc
->name
, __func__
));
3459 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
3464 * mpt2sas_base_validate_event_type - validating event types
3465 * @ioc: per adapter object
3466 * @event: firmware event
3468 * This will turn on firmware event notification when application
3469 * ask for that event. We don't mask events that are already enabled.
3472 mpt2sas_base_validate_event_type(struct MPT2SAS_ADAPTER
*ioc
, u32
*event_type
)
3475 u32 event_mask
, desired_event
;
3476 u8 send_update_to_fw
;
3478 for (i
= 0, send_update_to_fw
= 0; i
<
3479 MPI2_EVENT_NOTIFY_EVENTMASK_WORDS
; i
++) {
3480 event_mask
= ~event_type
[i
];
3482 for (j
= 0; j
< 32; j
++) {
3483 if (!(event_mask
& desired_event
) &&
3484 (ioc
->event_masks
[i
] & desired_event
)) {
3485 ioc
->event_masks
[i
] &= ~desired_event
;
3486 send_update_to_fw
= 1;
3488 desired_event
= (desired_event
<< 1);
3492 if (!send_update_to_fw
)
3495 mutex_lock(&ioc
->base_cmds
.mutex
);
3496 _base_event_notification(ioc
, CAN_SLEEP
);
3497 mutex_unlock(&ioc
->base_cmds
.mutex
);
3501 * _base_diag_reset - the "big hammer" start of day reset
3502 * @ioc: per adapter object
3503 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3505 * Returns 0 for success, non-zero for failure.
3508 _base_diag_reset(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
)
3510 u32 host_diagnostic
;
3515 printk(MPT2SAS_INFO_FMT
"sending diag reset !!\n", ioc
->name
);
3517 _base_save_msix_table(ioc
);
3519 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"clear interrupts\n",
3524 /* Write magic sequence to WriteSequence register
3525 * Loop until in diagnostic mode
3527 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"write magic "
3528 "sequence\n", ioc
->name
));
3529 writel(MPI2_WRSEQ_FLUSH_KEY_VALUE
, &ioc
->chip
->WriteSequence
);
3530 writel(MPI2_WRSEQ_1ST_KEY_VALUE
, &ioc
->chip
->WriteSequence
);
3531 writel(MPI2_WRSEQ_2ND_KEY_VALUE
, &ioc
->chip
->WriteSequence
);
3532 writel(MPI2_WRSEQ_3RD_KEY_VALUE
, &ioc
->chip
->WriteSequence
);
3533 writel(MPI2_WRSEQ_4TH_KEY_VALUE
, &ioc
->chip
->WriteSequence
);
3534 writel(MPI2_WRSEQ_5TH_KEY_VALUE
, &ioc
->chip
->WriteSequence
);
3535 writel(MPI2_WRSEQ_6TH_KEY_VALUE
, &ioc
->chip
->WriteSequence
);
3538 if (sleep_flag
== CAN_SLEEP
)
3546 host_diagnostic
= readl(&ioc
->chip
->HostDiagnostic
);
3547 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"wrote magic "
3548 "sequence: count(%d), host_diagnostic(0x%08x)\n",
3549 ioc
->name
, count
, host_diagnostic
));
3551 } while ((host_diagnostic
& MPI2_DIAG_DIAG_WRITE_ENABLE
) == 0);
3553 hcb_size
= readl(&ioc
->chip
->HCBSize
);
3555 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"diag reset: issued\n",
3557 writel(host_diagnostic
| MPI2_DIAG_RESET_ADAPTER
,
3558 &ioc
->chip
->HostDiagnostic
);
3560 /* don't access any registers for 50 milliseconds */
3563 /* 300 second max wait */
3564 for (count
= 0; count
< 3000000 ; count
++) {
3566 host_diagnostic
= readl(&ioc
->chip
->HostDiagnostic
);
3568 if (host_diagnostic
== 0xFFFFFFFF)
3570 if (!(host_diagnostic
& MPI2_DIAG_RESET_ADAPTER
))
3574 if (sleep_flag
== CAN_SLEEP
)
3580 if (host_diagnostic
& MPI2_DIAG_HCB_MODE
) {
3582 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"restart the adapter "
3583 "assuming the HCB Address points to good F/W\n",
3585 host_diagnostic
&= ~MPI2_DIAG_BOOT_DEVICE_SELECT_MASK
;
3586 host_diagnostic
|= MPI2_DIAG_BOOT_DEVICE_SELECT_HCDW
;
3587 writel(host_diagnostic
, &ioc
->chip
->HostDiagnostic
);
3589 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
3590 "re-enable the HCDW\n", ioc
->name
));
3591 writel(hcb_size
| MPI2_HCB_SIZE_HCB_ENABLE
,
3592 &ioc
->chip
->HCBSize
);
3595 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"restart the adapter\n",
3597 writel(host_diagnostic
& ~MPI2_DIAG_HOLD_IOC_RESET
,
3598 &ioc
->chip
->HostDiagnostic
);
3600 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"disable writes to the "
3601 "diagnostic register\n", ioc
->name
));
3602 writel(MPI2_WRSEQ_FLUSH_KEY_VALUE
, &ioc
->chip
->WriteSequence
);
3604 drsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"Wait for FW to go to the "
3605 "READY state\n", ioc
->name
));
3606 ioc_state
= _base_wait_on_iocstate(ioc
, MPI2_IOC_STATE_READY
, 20,
3609 printk(MPT2SAS_ERR_FMT
"%s: failed going to ready state "
3610 " (ioc_state=0x%x)\n", ioc
->name
, __func__
, ioc_state
);
3614 _base_restore_msix_table(ioc
);
3615 printk(MPT2SAS_INFO_FMT
"diag reset: SUCCESS\n", ioc
->name
);
3619 printk(MPT2SAS_ERR_FMT
"diag reset: FAILED\n", ioc
->name
);
3624 * _base_make_ioc_ready - put controller in READY state
3625 * @ioc: per adapter object
3626 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3627 * @type: FORCE_BIG_HAMMER or SOFT_RESET
3629 * Returns 0 for success, non-zero for failure.
3632 _base_make_ioc_ready(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
,
3633 enum reset_type type
)
3638 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3641 if (ioc
->pci_error_recovery
)
3644 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 0);
3645 dhsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: ioc_state(0x%08x)\n",
3646 ioc
->name
, __func__
, ioc_state
));
3648 if ((ioc_state
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_READY
)
3651 if (ioc_state
& MPI2_DOORBELL_USED
) {
3652 dhsprintk(ioc
, printk(MPT2SAS_INFO_FMT
"unexpected doorbell "
3653 "active!\n", ioc
->name
));
3654 goto issue_diag_reset
;
3657 if ((ioc_state
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_FAULT
) {
3658 mpt2sas_base_fault_info(ioc
, ioc_state
&
3659 MPI2_DOORBELL_DATA_MASK
);
3660 goto issue_diag_reset
;
3663 if (type
== FORCE_BIG_HAMMER
)
3664 goto issue_diag_reset
;
3666 if ((ioc_state
& MPI2_IOC_STATE_MASK
) == MPI2_IOC_STATE_OPERATIONAL
)
3667 if (!(_base_send_ioc_reset(ioc
,
3668 MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET
, 15, CAN_SLEEP
))) {
3669 ioc
->ioc_reset_count
++;
3674 rc
= _base_diag_reset(ioc
, CAN_SLEEP
);
3675 ioc
->ioc_reset_count
++;
3680 * _base_make_ioc_operational - put controller in OPERATIONAL state
3681 * @ioc: per adapter object
3682 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3684 * Returns 0 for success, non-zero for failure.
3687 _base_make_ioc_operational(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
)
3690 unsigned long flags
;
3693 struct _tr_list
*delayed_tr
, *delayed_tr_next
;
3696 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3699 /* clean the delayed target reset list */
3700 list_for_each_entry_safe(delayed_tr
, delayed_tr_next
,
3701 &ioc
->delayed_tr_list
, list
) {
3702 list_del(&delayed_tr
->list
);
3706 list_for_each_entry_safe(delayed_tr
, delayed_tr_next
,
3707 &ioc
->delayed_tr_volume_list
, list
) {
3708 list_del(&delayed_tr
->list
);
3712 /* initialize the scsi lookup free list */
3713 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
3714 INIT_LIST_HEAD(&ioc
->free_list
);
3716 for (i
= 0; i
< ioc
->scsiio_depth
; i
++, smid
++) {
3717 INIT_LIST_HEAD(&ioc
->scsi_lookup
[i
].chain_list
);
3718 ioc
->scsi_lookup
[i
].cb_idx
= 0xFF;
3719 ioc
->scsi_lookup
[i
].smid
= smid
;
3720 ioc
->scsi_lookup
[i
].scmd
= NULL
;
3721 ioc
->scsi_lookup
[i
].direct_io
= 0;
3722 list_add_tail(&ioc
->scsi_lookup
[i
].tracker_list
,
3726 /* hi-priority queue */
3727 INIT_LIST_HEAD(&ioc
->hpr_free_list
);
3728 smid
= ioc
->hi_priority_smid
;
3729 for (i
= 0; i
< ioc
->hi_priority_depth
; i
++, smid
++) {
3730 ioc
->hpr_lookup
[i
].cb_idx
= 0xFF;
3731 ioc
->hpr_lookup
[i
].smid
= smid
;
3732 list_add_tail(&ioc
->hpr_lookup
[i
].tracker_list
,
3733 &ioc
->hpr_free_list
);
3736 /* internal queue */
3737 INIT_LIST_HEAD(&ioc
->internal_free_list
);
3738 smid
= ioc
->internal_smid
;
3739 for (i
= 0; i
< ioc
->internal_depth
; i
++, smid
++) {
3740 ioc
->internal_lookup
[i
].cb_idx
= 0xFF;
3741 ioc
->internal_lookup
[i
].smid
= smid
;
3742 list_add_tail(&ioc
->internal_lookup
[i
].tracker_list
,
3743 &ioc
->internal_free_list
);
3747 INIT_LIST_HEAD(&ioc
->free_chain_list
);
3748 for (i
= 0; i
< ioc
->chain_depth
; i
++)
3749 list_add_tail(&ioc
->chain_lookup
[i
].tracker_list
,
3750 &ioc
->free_chain_list
);
3752 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
3754 /* initialize Reply Free Queue */
3755 for (i
= 0, reply_address
= (u32
)ioc
->reply_dma
;
3756 i
< ioc
->reply_free_queue_depth
; i
++, reply_address
+=
3758 ioc
->reply_free
[i
] = cpu_to_le32(reply_address
);
3760 /* initialize Reply Post Free Queue */
3761 for (i
= 0; i
< ioc
->reply_post_queue_depth
; i
++)
3762 ioc
->reply_post_free
[i
].Words
= ULLONG_MAX
;
3764 r
= _base_send_ioc_init(ioc
, sleep_flag
);
3768 /* initialize the index's */
3769 ioc
->reply_free_host_index
= ioc
->reply_free_queue_depth
- 1;
3770 ioc
->reply_post_host_index
= 0;
3771 writel(ioc
->reply_free_host_index
, &ioc
->chip
->ReplyFreeHostIndex
);
3772 writel(0, &ioc
->chip
->ReplyPostHostIndex
);
3774 _base_unmask_interrupts(ioc
);
3775 r
= _base_event_notification(ioc
, sleep_flag
);
3779 if (sleep_flag
== CAN_SLEEP
)
3780 _base_static_config_pages(ioc
);
3782 if (ioc
->wait_for_port_enable_to_complete
&& ioc
->is_warpdrive
) {
3783 if (ioc
->manu_pg10
.OEMIdentifier
== 0x80) {
3784 hide_flag
= (u8
) (ioc
->manu_pg10
.OEMSpecificFlags0
&
3785 MFG_PAGE10_HIDE_SSDS_MASK
);
3786 if (hide_flag
!= MFG_PAGE10_HIDE_SSDS_MASK
)
3787 ioc
->mfg_pg10_hide_flag
= hide_flag
;
3791 if (ioc
->wait_for_port_enable_to_complete
) {
3792 if (diag_buffer_enable
!= 0)
3793 mpt2sas_enable_diag_buffer(ioc
, diag_buffer_enable
);
3794 if (disable_discovery
> 0)
3798 r
= _base_send_port_enable(ioc
, sleep_flag
);
3806 * mpt2sas_base_free_resources - free resources controller resources (io/irq/memap)
3807 * @ioc: per adapter object
3812 mpt2sas_base_free_resources(struct MPT2SAS_ADAPTER
*ioc
)
3814 struct pci_dev
*pdev
= ioc
->pdev
;
3816 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3819 _base_mask_interrupts(ioc
);
3820 ioc
->shost_recovery
= 1;
3821 _base_make_ioc_ready(ioc
, CAN_SLEEP
, SOFT_RESET
);
3822 ioc
->shost_recovery
= 0;
3824 synchronize_irq(pdev
->irq
);
3825 free_irq(ioc
->pci_irq
, ioc
);
3827 _base_disable_msix(ioc
);
3832 pci_release_selected_regions(ioc
->pdev
, ioc
->bars
);
3833 pci_disable_pcie_error_reporting(pdev
);
3834 pci_disable_device(pdev
);
3839 * mpt2sas_base_attach - attach controller instance
3840 * @ioc: per adapter object
3842 * Returns 0 for success, non-zero for failure.
3845 mpt2sas_base_attach(struct MPT2SAS_ADAPTER
*ioc
)
3849 dinitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
3852 r
= mpt2sas_base_map_resources(ioc
);
3856 pci_set_drvdata(ioc
->pdev
, ioc
->shost
);
3857 r
= _base_get_ioc_facts(ioc
, CAN_SLEEP
);
3859 goto out_free_resources
;
3861 r
= _base_make_ioc_ready(ioc
, CAN_SLEEP
, SOFT_RESET
);
3863 goto out_free_resources
;
3865 ioc
->pfacts
= kcalloc(ioc
->facts
.NumberOfPorts
,
3866 sizeof(Mpi2PortFactsReply_t
), GFP_KERNEL
);
3869 goto out_free_resources
;
3872 for (i
= 0 ; i
< ioc
->facts
.NumberOfPorts
; i
++) {
3873 r
= _base_get_port_facts(ioc
, i
, CAN_SLEEP
);
3875 goto out_free_resources
;
3878 r
= _base_allocate_memory_pools(ioc
, CAN_SLEEP
);
3880 goto out_free_resources
;
3882 init_waitqueue_head(&ioc
->reset_wq
);
3884 /* allocate memory pd handle bitmask list */
3885 ioc
->pd_handles_sz
= (ioc
->facts
.MaxDevHandle
/ 8);
3886 if (ioc
->facts
.MaxDevHandle
% 8)
3887 ioc
->pd_handles_sz
++;
3888 ioc
->pd_handles
= kzalloc(ioc
->pd_handles_sz
,
3890 if (!ioc
->pd_handles
) {
3892 goto out_free_resources
;
3895 ioc
->fwfault_debug
= mpt2sas_fwfault_debug
;
3897 /* base internal command bits */
3898 mutex_init(&ioc
->base_cmds
.mutex
);
3899 ioc
->base_cmds
.reply
= kzalloc(ioc
->reply_sz
, GFP_KERNEL
);
3900 ioc
->base_cmds
.status
= MPT2_CMD_NOT_USED
;
3902 /* transport internal command bits */
3903 ioc
->transport_cmds
.reply
= kzalloc(ioc
->reply_sz
, GFP_KERNEL
);
3904 ioc
->transport_cmds
.status
= MPT2_CMD_NOT_USED
;
3905 mutex_init(&ioc
->transport_cmds
.mutex
);
3907 /* scsih internal command bits */
3908 ioc
->scsih_cmds
.reply
= kzalloc(ioc
->reply_sz
, GFP_KERNEL
);
3909 ioc
->scsih_cmds
.status
= MPT2_CMD_NOT_USED
;
3910 mutex_init(&ioc
->scsih_cmds
.mutex
);
3912 /* task management internal command bits */
3913 ioc
->tm_cmds
.reply
= kzalloc(ioc
->reply_sz
, GFP_KERNEL
);
3914 ioc
->tm_cmds
.status
= MPT2_CMD_NOT_USED
;
3915 mutex_init(&ioc
->tm_cmds
.mutex
);
3917 /* config page internal command bits */
3918 ioc
->config_cmds
.reply
= kzalloc(ioc
->reply_sz
, GFP_KERNEL
);
3919 ioc
->config_cmds
.status
= MPT2_CMD_NOT_USED
;
3920 mutex_init(&ioc
->config_cmds
.mutex
);
3922 /* ctl module internal command bits */
3923 ioc
->ctl_cmds
.reply
= kzalloc(ioc
->reply_sz
, GFP_KERNEL
);
3924 ioc
->ctl_cmds
.sense
= kzalloc(SCSI_SENSE_BUFFERSIZE
, GFP_KERNEL
);
3925 ioc
->ctl_cmds
.status
= MPT2_CMD_NOT_USED
;
3926 mutex_init(&ioc
->ctl_cmds
.mutex
);
3928 if (!ioc
->base_cmds
.reply
|| !ioc
->transport_cmds
.reply
||
3929 !ioc
->scsih_cmds
.reply
|| !ioc
->tm_cmds
.reply
||
3930 !ioc
->config_cmds
.reply
|| !ioc
->ctl_cmds
.reply
||
3931 !ioc
->ctl_cmds
.sense
) {
3933 goto out_free_resources
;
3936 if (!ioc
->base_cmds
.reply
|| !ioc
->transport_cmds
.reply
||
3937 !ioc
->scsih_cmds
.reply
|| !ioc
->tm_cmds
.reply
||
3938 !ioc
->config_cmds
.reply
|| !ioc
->ctl_cmds
.reply
) {
3940 goto out_free_resources
;
3943 init_completion(&ioc
->shost_recovery_done
);
3945 for (i
= 0; i
< MPI2_EVENT_NOTIFY_EVENTMASK_WORDS
; i
++)
3946 ioc
->event_masks
[i
] = -1;
3948 /* here we enable the events we care about */
3949 _base_unmask_events(ioc
, MPI2_EVENT_SAS_DISCOVERY
);
3950 _base_unmask_events(ioc
, MPI2_EVENT_SAS_BROADCAST_PRIMITIVE
);
3951 _base_unmask_events(ioc
, MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST
);
3952 _base_unmask_events(ioc
, MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE
);
3953 _base_unmask_events(ioc
, MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE
);
3954 _base_unmask_events(ioc
, MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST
);
3955 _base_unmask_events(ioc
, MPI2_EVENT_IR_VOLUME
);
3956 _base_unmask_events(ioc
, MPI2_EVENT_IR_PHYSICAL_DISK
);
3957 _base_unmask_events(ioc
, MPI2_EVENT_IR_OPERATION_STATUS
);
3958 _base_unmask_events(ioc
, MPI2_EVENT_LOG_ENTRY_ADDED
);
3959 r
= _base_make_ioc_operational(ioc
, CAN_SLEEP
);
3961 goto out_free_resources
;
3963 if (missing_delay
[0] != -1 && missing_delay
[1] != -1)
3964 _base_update_missing_delay(ioc
, missing_delay
[0],
3967 mpt2sas_base_start_watchdog(ioc
);
3972 ioc
->remove_host
= 1;
3973 mpt2sas_base_free_resources(ioc
);
3974 _base_release_memory_pools(ioc
);
3975 pci_set_drvdata(ioc
->pdev
, NULL
);
3976 kfree(ioc
->pd_handles
);
3977 kfree(ioc
->tm_cmds
.reply
);
3978 kfree(ioc
->transport_cmds
.reply
);
3979 kfree(ioc
->scsih_cmds
.reply
);
3980 kfree(ioc
->config_cmds
.reply
);
3981 kfree(ioc
->base_cmds
.reply
);
3982 kfree(ioc
->ctl_cmds
.reply
);
3983 kfree(ioc
->ctl_cmds
.sense
);
3985 ioc
->ctl_cmds
.reply
= NULL
;
3986 ioc
->base_cmds
.reply
= NULL
;
3987 ioc
->tm_cmds
.reply
= NULL
;
3988 ioc
->scsih_cmds
.reply
= NULL
;
3989 ioc
->transport_cmds
.reply
= NULL
;
3990 ioc
->config_cmds
.reply
= NULL
;
3997 * mpt2sas_base_detach - remove controller instance
3998 * @ioc: per adapter object
4003 mpt2sas_base_detach(struct MPT2SAS_ADAPTER
*ioc
)
4006 dexitprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s\n", ioc
->name
,
4009 mpt2sas_base_stop_watchdog(ioc
);
4010 mpt2sas_base_free_resources(ioc
);
4011 _base_release_memory_pools(ioc
);
4012 pci_set_drvdata(ioc
->pdev
, NULL
);
4013 kfree(ioc
->pd_handles
);
4015 kfree(ioc
->ctl_cmds
.reply
);
4016 kfree(ioc
->ctl_cmds
.sense
);
4017 kfree(ioc
->base_cmds
.reply
);
4018 kfree(ioc
->tm_cmds
.reply
);
4019 kfree(ioc
->transport_cmds
.reply
);
4020 kfree(ioc
->scsih_cmds
.reply
);
4021 kfree(ioc
->config_cmds
.reply
);
4025 * _base_reset_handler - reset callback handler (for base)
4026 * @ioc: per adapter object
4027 * @reset_phase: phase
4029 * The handler for doing any required cleanup or initialization.
4031 * The reset phase can be MPT2_IOC_PRE_RESET, MPT2_IOC_AFTER_RESET,
4032 * MPT2_IOC_DONE_RESET
4037 _base_reset_handler(struct MPT2SAS_ADAPTER
*ioc
, int reset_phase
)
4039 mpt2sas_scsih_reset_handler(ioc
, reset_phase
);
4040 mpt2sas_ctl_reset_handler(ioc
, reset_phase
);
4041 switch (reset_phase
) {
4042 case MPT2_IOC_PRE_RESET
:
4043 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
4044 "MPT2_IOC_PRE_RESET\n", ioc
->name
, __func__
));
4046 case MPT2_IOC_AFTER_RESET
:
4047 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
4048 "MPT2_IOC_AFTER_RESET\n", ioc
->name
, __func__
));
4049 if (ioc
->transport_cmds
.status
& MPT2_CMD_PENDING
) {
4050 ioc
->transport_cmds
.status
|= MPT2_CMD_RESET
;
4051 mpt2sas_base_free_smid(ioc
, ioc
->transport_cmds
.smid
);
4052 complete(&ioc
->transport_cmds
.done
);
4054 if (ioc
->base_cmds
.status
& MPT2_CMD_PENDING
) {
4055 ioc
->base_cmds
.status
|= MPT2_CMD_RESET
;
4056 mpt2sas_base_free_smid(ioc
, ioc
->base_cmds
.smid
);
4057 complete(&ioc
->base_cmds
.done
);
4059 if (ioc
->config_cmds
.status
& MPT2_CMD_PENDING
) {
4060 ioc
->config_cmds
.status
|= MPT2_CMD_RESET
;
4061 mpt2sas_base_free_smid(ioc
, ioc
->config_cmds
.smid
);
4062 ioc
->config_cmds
.smid
= USHRT_MAX
;
4063 complete(&ioc
->config_cmds
.done
);
4066 case MPT2_IOC_DONE_RESET
:
4067 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: "
4068 "MPT2_IOC_DONE_RESET\n", ioc
->name
, __func__
));
4074 * _wait_for_commands_to_complete - reset controller
4075 * @ioc: Pointer to MPT_ADAPTER structure
4076 * @sleep_flag: CAN_SLEEP or NO_SLEEP
4078 * This function waiting(3s) for all pending commands to complete
4079 * prior to putting controller in reset.
4082 _wait_for_commands_to_complete(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
)
4085 unsigned long flags
;
4088 ioc
->pending_io_count
= 0;
4089 if (sleep_flag
!= CAN_SLEEP
)
4092 ioc_state
= mpt2sas_base_get_iocstate(ioc
, 0);
4093 if ((ioc_state
& MPI2_IOC_STATE_MASK
) != MPI2_IOC_STATE_OPERATIONAL
)
4096 /* pending command count */
4097 spin_lock_irqsave(&ioc
->scsi_lookup_lock
, flags
);
4098 for (i
= 0; i
< ioc
->scsiio_depth
; i
++)
4099 if (ioc
->scsi_lookup
[i
].cb_idx
!= 0xFF)
4100 ioc
->pending_io_count
++;
4101 spin_unlock_irqrestore(&ioc
->scsi_lookup_lock
, flags
);
4103 if (!ioc
->pending_io_count
)
4106 /* wait for pending commands to complete */
4107 wait_event_timeout(ioc
->reset_wq
, ioc
->pending_io_count
== 0, 10 * HZ
);
4111 * mpt2sas_base_hard_reset_handler - reset controller
4112 * @ioc: Pointer to MPT_ADAPTER structure
4113 * @sleep_flag: CAN_SLEEP or NO_SLEEP
4114 * @type: FORCE_BIG_HAMMER or SOFT_RESET
4116 * Returns 0 for success, non-zero for failure.
4119 mpt2sas_base_hard_reset_handler(struct MPT2SAS_ADAPTER
*ioc
, int sleep_flag
,
4120 enum reset_type type
)
4123 unsigned long flags
;
4124 u8 pe_complete
= ioc
->wait_for_port_enable_to_complete
;
4126 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: enter\n", ioc
->name
,
4129 if (ioc
->pci_error_recovery
) {
4130 printk(MPT2SAS_ERR_FMT
"%s: pci error recovery reset\n",
4131 ioc
->name
, __func__
);
4136 if (mpt2sas_fwfault_debug
)
4137 mpt2sas_halt_firmware(ioc
);
4139 /* TODO - What we really should be doing is pulling
4140 * out all the code associated with NO_SLEEP; its never used.
4141 * That is legacy code from mpt fusion driver, ported over.
4142 * I will leave this BUG_ON here for now till its been resolved.
4144 BUG_ON(sleep_flag
== NO_SLEEP
);
4146 /* wait for an active reset in progress to complete */
4147 if (!mutex_trylock(&ioc
->reset_in_progress_mutex
)) {
4150 } while (ioc
->shost_recovery
== 1);
4151 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: exit\n", ioc
->name
,
4153 return ioc
->ioc_reset_in_progress_status
;
4156 spin_lock_irqsave(&ioc
->ioc_reset_in_progress_lock
, flags
);
4157 ioc
->shost_recovery
= 1;
4158 spin_unlock_irqrestore(&ioc
->ioc_reset_in_progress_lock
, flags
);
4160 _base_reset_handler(ioc
, MPT2_IOC_PRE_RESET
);
4161 _wait_for_commands_to_complete(ioc
, sleep_flag
);
4162 _base_mask_interrupts(ioc
);
4163 r
= _base_make_ioc_ready(ioc
, sleep_flag
, type
);
4166 _base_reset_handler(ioc
, MPT2_IOC_AFTER_RESET
);
4168 /* If this hard reset is called while port enable is active, then
4169 * there is no reason to call make_ioc_operational
4175 r
= _base_make_ioc_operational(ioc
, sleep_flag
);
4177 _base_reset_handler(ioc
, MPT2_IOC_DONE_RESET
);
4179 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: %s\n",
4180 ioc
->name
, __func__
, ((r
== 0) ? "SUCCESS" : "FAILED")));
4182 spin_lock_irqsave(&ioc
->ioc_reset_in_progress_lock
, flags
);
4183 ioc
->ioc_reset_in_progress_status
= r
;
4184 ioc
->shost_recovery
= 0;
4185 complete(&ioc
->shost_recovery_done
);
4186 spin_unlock_irqrestore(&ioc
->ioc_reset_in_progress_lock
, flags
);
4187 mutex_unlock(&ioc
->reset_in_progress_mutex
);
4189 dtmprintk(ioc
, printk(MPT2SAS_INFO_FMT
"%s: exit\n", ioc
->name
,